From dfd277f2e5d2ea9e729ec810ce84f426798ee95a Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Sat, 8 Apr 2023 19:59:17 +0330 Subject: [PATCH 1/9] Network: clients don't report their addrs Apparently, clients don't have to report their IP addresses. --- NOnion/Network/TorGuard.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NOnion/Network/TorGuard.fs b/NOnion/Network/TorGuard.fs index d32e9584..6651bd31 100644 --- a/NOnion/Network/TorGuard.fs +++ b/NOnion/Network/TorGuard.fs @@ -383,7 +383,7 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = CellNetInfo.Time = DateTimeUtils.ToUnixTimestamp DateTime.UtcNow OtherAddress = otherAddress - MyAddresses = List.singleton netInfo.OtherAddress + MyAddresses = List.empty } TorLogger.Log "TorGuard: finished handshake process" From f5d939607f51a659e22a3b714735697f956e1085 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Sun, 9 Apr 2023 14:46:32 +0330 Subject: [PATCH 2/9] Network: verify router's ip address According to spec: Initiators SHOULD use "this OR's address" to make sure that they have connected to another OR at its canonical address. --- NOnion/Network/TorGuard.fs | 50 +++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/NOnion/Network/TorGuard.fs b/NOnion/Network/TorGuard.fs index 6651bd31..a8c66bd7 100644 --- a/NOnion/Network/TorGuard.fs +++ b/NOnion/Network/TorGuard.fs @@ -158,7 +158,7 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = |> TorLogger.Log let guard = new TorGuard(tcpClient, sslStream) - do! guard.Handshake() + do! guard.Handshake ipEndpoint ipEndpoint.ToString() |> sprintf "TorGuard: connection with %s established" @@ -349,7 +349,7 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = Async.Start(readFromStream(), shutdownToken.Token) - member private self.Handshake() = + member private self.Handshake(expectedIPEndPoint: IPEndPoint) = async { TorLogger.Log "TorGuard: started handshake process" @@ -366,25 +366,35 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = //TODO: Client authentication isn't implemented yet! do! self.ReceiveExpected() |> Async.Ignore let! netInfo = self.ReceiveExpected() - let maybeOtherAddress = netInfo.MyAddresses |> Seq.tryHead - match maybeOtherAddress with - | None -> - return - raise - <| GuardConnectionFailedException( - "TorGuard.Handshake: problem in initializing the handshake process" - ) - | Some otherAddress -> - do! - self.Send - Constants.DefaultCircuitId - { - CellNetInfo.Time = - DateTimeUtils.ToUnixTimestamp DateTime.UtcNow - OtherAddress = otherAddress - MyAddresses = List.empty - } + let expectedRouterAddress = + let ipAddress = expectedIPEndPoint.Address + + { + RouterAddress.Type = + match ipAddress.AddressFamily with + | AddressFamily.InterNetwork -> 04uy //IPv4 + | AddressFamily.InterNetworkV6 -> 06uy //IPv6 + | _ -> + failwith + "Should not happen: router's IPAddress is not either v4 or v6" + Value = ipAddress.GetAddressBytes() + } + + if netInfo.MyAddresses |> Seq.contains expectedRouterAddress |> not then + raise + <| GuardConnectionFailedException + "Expected router address is not listed in NETINFO" + + do! + self.Send + Constants.DefaultCircuitId + { + CellNetInfo.Time = + DateTimeUtils.ToUnixTimestamp DateTime.UtcNow + OtherAddress = expectedRouterAddress + MyAddresses = List.empty + } TorLogger.Log "TorGuard: finished handshake process" //TODO: do security checks on handshake data From 0a095cf774f6c10e3c4afc6c552498002ddb1f34 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Sun, 9 Apr 2023 14:48:02 +0330 Subject: [PATCH 3/9] Network: respect spec wrt generating NETINFO According to spec: Clients SHOULD send "0" as their timestamp, to avoid fingerprinting. --- NOnion/Network/TorGuard.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NOnion/Network/TorGuard.fs b/NOnion/Network/TorGuard.fs index a8c66bd7..145dfe53 100644 --- a/NOnion/Network/TorGuard.fs +++ b/NOnion/Network/TorGuard.fs @@ -390,8 +390,8 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = self.Send Constants.DefaultCircuitId { - CellNetInfo.Time = - DateTimeUtils.ToUnixTimestamp DateTime.UtcNow + //Clients SHOULD send "0" as their timestamp, to avoid fingerprinting. + CellNetInfo.Time = 0u OtherAddress = expectedRouterAddress MyAddresses = List.empty } From fe050f0df0a6ff5c30ff6083a814a6404013f768 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Sun, 9 Apr 2023 17:37:30 +0330 Subject: [PATCH 4/9] Network: verify guard certs with rsa fingerprint According to spec: ``` To authenticate the responder as having a given RSA identity only, the initiator MUST check the following: * The CERTS cell contains exactly one CertType 1 "Link" certificate. * The CERTS cell contains exactly one CertType 2 "ID" certificate. * Both certificates have validAfter and validUntil dates that are not expired. * The certified key in the Link certificate matches the link key that was used to negotiate the TLS connection. * The certified key in the ID certificate is a 1024-bit RSA key. * The certified key in the ID certificate was used to sign both certificates. * The link certificate is correctly signed with the key in the ID certificate * The ID certificate is correctly self-signed. In both cases above, checking these conditions is sufficient to authenticate that the initiator is talking to the Tor node with the expected identity, as certified in the ID certificate(s). ``` --- NOnion/Constants.fs | 4 + NOnion/Network/TorCircuit.fs | 5 + NOnion/Network/TorGuard.fs | 142 +++++++++++++++++++++++++++- NOnion/Services/TorServiceClient.fs | 11 ++- NOnion/Services/TorServiceHost.fs | 17 +++- 5 files changed, 170 insertions(+), 9 deletions(-) diff --git a/NOnion/Constants.fs b/NOnion/Constants.fs index 767b32e6..fa532c68 100644 --- a/NOnion/Constants.fs +++ b/NOnion/Constants.fs @@ -199,3 +199,7 @@ module Constants = let internal CertificateCertifiedKeyLength = 32 let internal CertificateSignatureLength = 64 + + module CertTypes = + let Link = 1uy + let ID = 2uy diff --git a/NOnion/Network/TorCircuit.fs b/NOnion/Network/TorCircuit.fs index 57c9f691..39edec50 100644 --- a/NOnion/Network/TorCircuit.fs +++ b/NOnion/Network/TorCircuit.fs @@ -28,6 +28,11 @@ type CircuitNodeDetail = NTorOnionKey: array * IdentityKey: array + member self.GetIdentityKey() = + match self with + | Create(_endpoint, _onionKey, identityKey) -> identityKey + | FastCreate -> failwith "GetIdentityKey was called on FastCreate" + type private CircuitIdTaskResult = OperationResult> type private RequestSendIntroduceResult = diff --git a/NOnion/Network/TorGuard.fs b/NOnion/Network/TorGuard.fs index 145dfe53..3739aa71 100644 --- a/NOnion/Network/TorGuard.fs +++ b/NOnion/Network/TorGuard.fs @@ -9,6 +9,9 @@ open System.Security.Authentication open System.Security.Cryptography open System.Threading +open Org.BouncyCastle.Security +open Org.BouncyCastle.X509 + open NOnion open NOnion.Cells open NOnion.Utility @@ -41,7 +44,13 @@ module ExceptionUtil = | None -> return raise <| FSharpUtil.ReRaise exn } -type TorGuard private (client: TcpClient, sslStream: SslStream) = +type TorGuard + private + ( + client: TcpClient, + sslStream: SslStream, + fingerprintOpt: Option> + ) = let shutdownToken = new CancellationTokenSource() let mutable circuitsMap: Map = Map.empty @@ -105,7 +114,10 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = let sendMailBox = MailboxProcessor.Start(SendMailBoxProcessor, shutdownToken.Token) - static member NewClient(ipEndpoint: IPEndPoint) = + static member private InnerNewClient + (ipEndpoint: IPEndPoint) + (fingerprintOpt: Option>) + = async { let tcpClient = new TcpClient() @@ -157,7 +169,7 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = |> sprintf "TorGuard: ssl connection to %s guard node authenticated" |> TorLogger.Log - let guard = new TorGuard(tcpClient, sslStream) + let guard = new TorGuard(tcpClient, sslStream, fingerprintOpt) do! guard.Handshake ipEndpoint ipEndpoint.ToString() @@ -169,6 +181,16 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = return guard } + static member NewClientWithIdentity ipEndpoint fingerprintOpt = + TorGuard.InnerNewClient ipEndpoint fingerprintOpt + + static member NewClientWithIdentityAsync ipEndpoint fingerprintOpt = + TorGuard.NewClientWithIdentity ipEndpoint fingerprintOpt + |> Async.StartAsTask + + static member NewClient ipEndpoint = + TorGuard.InnerNewClient ipEndpoint None + static member NewClientAsync ipEndpoint = TorGuard.NewClient ipEndpoint |> Async.StartAsTask @@ -349,6 +371,117 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = Async.Start(readFromStream(), shutdownToken.Token) + //TODO: verify ed25519 certs + member private self.VerifyCertificates(certs: CellCerts) = + let getExactlyOneCert(certType: byte) = + let certOpt = + certs.Certs + |> Seq.filter(fun cert -> cert.Type = certType) + |> Seq.tryExactlyOne + + match certOpt with + | Some cert -> cert + | None -> + raise + <| GuardConnectionFailedException( + "Cert not found or there were too many with the same type" + ) + + let validateX509Expiry(certificateBytes: array) = + let certParser = X509CertificateParser() + let certificate = certParser.ReadCertificate certificateBytes + + if not certificate.IsValidNow then + raise + <| GuardConnectionFailedException( + "Router's X509 certificate is expied" + ) + + let validateIsSignedBy + (certBytes: array) + (signingCertBytes: array) + = + let certParser = X509CertificateParser() + let cert = certParser.ReadCertificate certBytes + let signingCert = certParser.ReadCertificate signingCertBytes + + try + cert.Verify(signingCert.GetPublicKey()) + true + with + | :? InvalidKeyException -> false + + let keyMatches (certBytes: array) (otherCertBytes: array) = + let certParser = X509CertificateParser() + let cert = certParser.ReadCertificate certBytes + let otherCert = certParser.ReadCertificate otherCertBytes + cert.GetPublicKey() = otherCert.GetPublicKey() + + let isRSA1024(certBytes: array) = + use cert = + new System.Security.Cryptography.X509Certificates.X509Certificate2( + certBytes + ) + + cert.PublicKey.Key.KeySize = 1024 + + let getPublicKeyBytes(certBytes: array) = + use cert = + new System.Security.Cryptography.X509Certificates.X509Certificate2( + certBytes + ) + + cert.GetPublicKey() + + let linkCertificate = + (getExactlyOneCert Constants.CertTypes.Link) + .Certificate + + let idCertificate = + (getExactlyOneCert Constants.CertTypes.ID) + .Certificate + + let tlsCertificate = sslStream.RemoteCertificate.GetRawCertData() + + validateX509Expiry linkCertificate + validateX509Expiry idCertificate + + if keyMatches tlsCertificate linkCertificate |> not then + raise + <| GuardConnectionFailedException( + "The certified key in the Link certificate does not match the link key that was used to negotiate the TLS connection" + ) + + if isRSA1024 idCertificate |> not then + raise + <| GuardConnectionFailedException( + "The certified key in the ID certificate is not a 1024-bit RSA key" + ) + + if validateIsSignedBy linkCertificate idCertificate |> not then + raise + <| GuardConnectionFailedException( + "Link certificate is not signed with identity key" + ) + + if validateIsSignedBy idCertificate idCertificate |> not then + raise + <| GuardConnectionFailedException( + "ID certificate is not signed with identity key" + ) + + match fingerprintOpt with + | Some fingerprint -> + let sha1 = SHA1.Create() + let hash = sha1.ComputeHash(getPublicKeyBytes idCertificate) + + if hash <> fingerprint then + raise + <| GuardConnectionFailedException("RSA Identity was invalid") + | None -> () + + () + member private self.Handshake(expectedIPEndPoint: IPEndPoint) = async { TorLogger.Log "TorGuard: started handshake process" @@ -362,7 +495,8 @@ type TorGuard private (client: TcpClient, sslStream: SslStream) = } let! _version = self.ReceiveExpected() - let! _certs = self.ReceiveExpected() + let! certs = self.ReceiveExpected() + self.VerifyCertificates certs //TODO: Client authentication isn't implemented yet! do! self.ReceiveExpected() |> Async.Ignore let! netInfo = self.ReceiveExpected() diff --git a/NOnion/Services/TorServiceClient.fs b/NOnion/Services/TorServiceClient.fs index 7846ffe4..0627f858 100644 --- a/NOnion/Services/TorServiceClient.fs +++ b/NOnion/Services/TorServiceClient.fs @@ -75,7 +75,10 @@ type TorServiceClient = hsDirectory use! guardNode = - TorGuard.NewClient guardEndPoint + TorGuard.NewClientWithIdentity + guardEndPoint + (randomGuardNode.GetIdentityKey() + |> Some) let circuit = TorCircuit guardNode @@ -394,7 +397,11 @@ type TorServiceClient = let! endpoint, guardnode = directory.GetRouter RouterType.Guard let! _, rendezvousNode = directory.GetRouter RouterType.Normal - let! rendezvousGuard = TorGuard.NewClient endpoint + let! rendezvousGuard = + TorGuard.NewClientWithIdentity + endpoint + (guardnode.GetIdentityKey() |> Some) + let rendezvousCircuit = TorCircuit rendezvousGuard do! rendezvousCircuit.Create guardnode |> Async.Ignore diff --git a/NOnion/Services/TorServiceHost.fs b/NOnion/Services/TorServiceHost.fs index a0b97d88..e190013f 100644 --- a/NOnion/Services/TorServiceHost.fs +++ b/NOnion/Services/TorServiceHost.fs @@ -128,7 +128,10 @@ type TorServiceHost let! endPoint, randomNodeDetails = directory.GetRouter RouterType.Guard - let! guard = TorGuard.NewClient endPoint + let! guard = + TorGuard.NewClientWithIdentity + endPoint + (randomNodeDetails.GetIdentityKey() |> Some) let rendezvousCircuit = TorCircuit(guard, self.IncomingServiceStreamCallback) @@ -273,7 +276,11 @@ type TorServiceHost failwith "Unreachable, directory always returns non-fast connection info" | Create(address, onionKey, fingerprint) -> - let! guard = TorGuard.NewClient guardEndPoint + let! guard = + TorGuard.NewClientWithIdentity + guardEndPoint + (guardNodeDetail.GetIdentityKey() |> Some) + let circuit = TorCircuit guard let encKeyPair, authKeyPair = @@ -378,7 +385,11 @@ type TorServiceHost let! _, randomMiddleNode = directory.GetRouter RouterType.Normal - use! guardNode = TorGuard.NewClient guardEndPoint + use! guardNode = + TorGuard.NewClientWithIdentity + guardEndPoint + (randomGuardNode.GetIdentityKey() |> Some) + let circuit = TorCircuit guardNode do! circuit.Create randomGuardNode |> Async.Ignore do! circuit.Extend randomMiddleNode |> Async.Ignore From cf83ff1e52f688ea9fcac8430b07c120004baec1 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Sun, 9 Apr 2023 22:45:32 +0330 Subject: [PATCH 5/9] Directory: fix broken directory-signature parsing --- .../Directory-Samples/NetworkStatus.json | 2 +- NOnion/Directory/NetworkStatusDocument.fs | 29 ++++++++++++++----- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/NOnion.Tests/Directory-Samples/NetworkStatus.json b/NOnion.Tests/Directory-Samples/NetworkStatus.json index 301d89fe..ecdfb51a 100644 --- a/NOnion.Tests/Directory-Samples/NetworkStatus.json +++ b/NOnion.Tests/Directory-Samples/NetworkStatus.json @@ -1 +1 @@ -{"Version":{"Case":"Some","Fields":[3]},"VoteStatus":{"Case":"Some","Fields":["consensus"]},"ConsensusMethod":{"Case":"Some","Fields":[32]},"ValidAfter":{"Case":"Some","Fields":["2022-09-20T17:00:00"]},"FreshUntil":{"Case":"Some","Fields":["2022-09-20T18:00:00"]},"ValidUntil":{"Case":"Some","Fields":["2022-09-20T20:00:00"]},"VotingDelay":{"Case":"Some","Fields":["300 300"]},"ClientVersions":{"Case":"Some","Fields":["0.4.5.1-alpha,0.4.5.2-alpha,0.4.5.3-rc,0.4.5.4-rc,0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10"]},"ServerVersions":{"Case":"Some","Fields":["0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10"]},"KnownFlags":{"Case":"Some","Fields":["Authority BadExit Exit Fast Guard HSDir NoEdConsensus Running Stable StaleDesc Sybil V2Dir Valid"]},"RecommendedClientProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 Microdesc=2 Relay=2"]},"RecommendedRelayProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2"]},"RequiredClientProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 Link=4 Microdesc=2 Relay=2"]},"RequiredRelayProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2"]},"SharedRandomPreviousValue":{"Case":"Some","Fields":["jaj43bDL+z6z8nV6JOrHRMd488DD+/t6fHZp9bOMib4="]},"SharedRandomCurrentValue":{"Case":"Some","Fields":["cvXb9GWk4MPwCyUXylg6IIb3AlnGAv4VL0QuMPUCwOw="]},"BandwithWeights":{"Case":"Some","Fields":["Wbd=0 Wbe=0 Wbg=2771 Wbm=10000 Wdb=10000 Web=10000 Wed=10000 Wee=10000 Weg=10000 Wem=10000 Wgb=10000 Wgd=0 Wgg=7229 Wgm=7229 Wmb=10000 Wmd=0 Wme=0 Wmg=2771 Wmm=10000"]},"Params":{"CircuitPriorityHalflifeMsec":"30000","DoSCircuitCreationBurst":"60","DoSCircuitCreationEnabled":"1","DoSCircuitCreationMinConnections":"2","DoSCircuitCreationRate":"2","DoSConnectionEnabled":"1","DoSConnectionMaxConcurrentCount":"50","DoSRefuseSingleHopClientRendezvous":"1","ExtendByEd25519ID":"1","KISTSchedRunInterval":"2","NumNTorsPerTAP":"100","UseOptimisticData":"1","bwauthpid":"1","bwscanner_cc":"1","cbttestfreq":"10","cc_alg":"2","cc_sscap_exit":"400","cc_sscap_onion":"500","circ_max_cell_queue_size":"2000","guard-n-primary-dir-guards-to-use":"3","guard-n-primary-guards-to-use":"2","hs_service_max_rdv_failures":"1","hsdir_spread_store":"4","overload_onionskin_ntor_period_secs":"10800","overload_onionskin_ntor_scale_percent":"500","sendme_emit_min_version":"1"},"Packages":[],"Routers":[{"NickName":{"Case":"Some","Fields":["nestor00patof"]},"Identity":{"Case":"Some","Fields":["//v7UKg6QUzCG0zak6lnSwBHBeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R42nQguGr0wFhJiYkT96zjPk35BTNKB5xN6vi9X4IAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:44"]},"IP":{"Case":"Some","Fields":["24.203.134.20"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheWalk"]},"Identity":{"Case":"Some","Fields":["//qR8YZj+Mzo5yWiST+Fs5C40zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6wQBNtJmg5AJipzhS/YOeudZgC05SFRoqFLQFqaf+BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:43"]},"IP":{"Case":"Some","Fields":["81.169.159.28"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:423d:b500:d308:6847:718e:e2a6]:29001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddetor2"]},"Identity":{"Case":"Some","Fields":["//eMRLpua291JQlbvhTvfL64l0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYWdfEdZXcFugP3a34dtEVP7qaX3TIqx2qqwxJ2RsNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:19"]},"IP":{"Case":"Some","Fields":["144.76.75.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:191:9388::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DoctorWho"]},"Identity":{"Case":"Some","Fields":["//WZlUw4IaKGIOlcCMvcYkXp3ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LY2BL9w1aKHumdXtgU7JoEmbpnxKYKcfgXjmW7wJM50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:07"]},"IP":{"Case":"Some","Fields":["195.154.200.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarkfireCrypt"]},"Identity":{"Case":"Some","Fields":["//MDHROq1Y7oSa1Lc4BR3h5R59g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l+PlXOkaTlX5b1EBXRz1PCKFXv/vCOvgN4WAT1Lm9as"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:54"]},"IP":{"Case":"Some","Fields":["31.7.175.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitCz"]},"Identity":{"Case":"Some","Fields":["/+o3ttp2xFjT41R23X0f0KmK5zE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WB9UBWKnwEz3aPhfr391VobxRJy9ITmJBZHOyfGat8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:02"]},"IP":{"Case":"Some","Fields":["195.123.247.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9403::215]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bionictor"]},"Identity":{"Case":"Some","Fields":["/9SzRqffegCrcshWPyacNSj+Qe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FemBEjuzXjIyeigGk8veC1cMoItsUBblUipJP8vHNs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["68.193.108.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["euler"]},"Identity":{"Case":"Some","Fields":["/8P0vk1cOSJG3Ho3slamFYw9hWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["shXlPx01EWdJgX2HZLhxMgDUo3L8WYrPSESZ4E/ZHB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:27"]},"IP":{"Case":"Some","Fields":["176.10.119.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SSnetNode"]},"Identity":{"Case":"Some","Fields":["/75MdAYtkHe4vJuzPSAHJ1b8t9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3I/O1VDxTG0UinXm++1U0mK1KXyGqadfONkjy9iK8AY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:46"]},"IP":{"Case":"Some","Fields":["72.235.37.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9leia"]},"Identity":{"Case":"Some","Fields":["/7xpRns31qxmWYu9KV+bDXQRmtw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["df8Cnl8+RKbCOZhcSQkyh8ptB0IH+VKN/TWXECWYsE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:44"]},"IP":{"Case":"Some","Fields":["213.239.217.68"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlazingMonolith"]},"Identity":{"Case":"Some","Fields":["/7u6fxxzsHqA9a91mirvSB8UOJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/mXRyCH+mcxg8/cpLmQlI5JMTwAay1IPTtZcEmDFvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:21"]},"IP":{"Case":"Some","Fields":["65.108.42.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:4e17::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/7YFyG1gaZGt7XhCJp+iWgO0pNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["12J9YSEhPd59K8irmFSRS+mBYwYh9FQD9fbOphtdVvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:38"]},"IP":{"Case":"Some","Fields":["165.227.174.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lule"]},"Identity":{"Case":"Some","Fields":["/6cr1oO8L8+Yg1bmvsHkkPMT+wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YWu5KMogOQae+3kqNZFt5htX34pVyHn3ovdcnuZL3fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:42"]},"IP":{"Case":"Some","Fields":["193.11.164.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:7:125::243]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay3L"]},"Identity":{"Case":"Some","Fields":["/5/G0TD6Jq466LI2iGkdxBnw8i4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bdp5pHxi3OIHNo9Q7WimOYctqcv5QzH56sHyiwaVbQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:40"]},"IP":{"Case":"Some","Fields":["89.163.164.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:12a1::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1jcbcaulbxid"]},"Identity":{"Case":"Some","Fields":["/5KaAftYuJiOmtenXejEFEhqgus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SagkyOdAD8Bz/eOQ0b2fzGeOAMbQxeZFWB9PhIdXD14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:33"]},"IP":{"Case":"Some","Fields":["141.136.0.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["einNettesRelay"]},"Identity":{"Case":"Some","Fields":["/4t8rV9QiXJQnXn5M/sk0vUkq3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmfzjIb3vu93yEdVYgZB090ObhZVIZqvhhjiZzA/Qsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:10"]},"IP":{"Case":"Some","Fields":["89.58.3.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:b8f:1478:68ff:fec4:27c7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MehlTor1"]},"Identity":{"Case":"Some","Fields":["/4fknvMweLBKXeJqrhcN34uuE58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6WD9MCRkRlioZdQxylaHZl2DCKj7sLFSZYqGypsSBgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:35"]},"IP":{"Case":"Some","Fields":["188.68.36.209"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:33::1]:59001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RicsiTORRelay"]},"Identity":{"Case":"Some","Fields":["/4alnjWiz38nRNp2jfvpCGCGhnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4nfV0RBlqPcqYaPn4enSp04GU74ylRrCTwc3J6P6Ymw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:08"]},"IP":{"Case":"Some","Fields":["45.142.176.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:c5f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssrv"]},"Identity":{"Case":"Some","Fields":["/4MwDUYWqQNbN1KyWVS7f4fFRJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRvJERoidoC67EWzjQOp9zYDr7tQzmALWitP4bZodM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:46"]},"IP":{"Case":"Some","Fields":["83.43.228.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra1"]},"Identity":{"Case":"Some","Fields":["/3wmBO/ui1iY/eEUWkyjXI5eVgc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qzB5Gz9HA7FMH4cFgQsC1XDoOOhOXiabUuH0hS4H1HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:09"]},"IP":{"Case":"Some","Fields":["193.218.118.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::62]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay01V6Rocks"]},"Identity":{"Case":"Some","Fields":["/3JI/sUFm8U+cP/+3cyMSYMb26E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXEO0pcaeMmauiRGfJKqYIBmDyOSJHCNyGyNHPNmFtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:18"]},"IP":{"Case":"Some","Fields":["185.207.107.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:778::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["/11Ti3LayFTUyP46Y3wkL1tUZJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJUysR6rk1w1s46Fs3lKME0YSv+LCSQSE3C2G70Vif8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:50"]},"IP":{"Case":"Some","Fields":["185.220.101.38"]},"OnionRouterPort":{"Case":"Some","Fields":[10038]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::38]:10038"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["/10wUF7pRUpTyLiEU42O+YZjLJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKRVi6r3l77OflYQTFg4VoHGU4Rlz+JGDtIkh1fO+OE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:26"]},"IP":{"Case":"Some","Fields":["46.38.254.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:2:44cc:3dff:fe89:3297]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0170"]},"Identity":{"Case":"Some","Fields":["/0UPaDt75JRwO5CCfbLb0FtiRHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4ReKHGrM3/V77jwVWAYfyEW/6CLxY6ZRF7aeYwlLH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:38"]},"IP":{"Case":"Some","Fields":["185.220.101.170"]},"OnionRouterPort":{"Case":"Some","Fields":[10170]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::170]:10170"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexnl1exit"]},"Identity":{"Case":"Some","Fields":["/zdZL5qn65OAxe+BfdGlSDqV2Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9MDNL+PhRejm+hDA3uyDyJyF5ZFzTD0P9pAloYT2K2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["185.130.47.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e03:2a::bcde]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer75"]},"Identity":{"Case":"Some","Fields":["/zXvDrRVBDytCRSWQd8CpjlDwdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jR5euqSuES0zUoR9WcWDQh64dHgzWyCZu7oM1W4MMVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:20"]},"IP":{"Case":"Some","Fields":["95.214.52.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8175]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuego"]},"Identity":{"Case":"Some","Fields":["/zU/XQEeaezaEKV7RtBrx7P+sZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UiiQgLGbUkKIim8GYVQ6Dm4XbP6DUC0G48cZGsx4o34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:49"]},"IP":{"Case":"Some","Fields":["148.251.90.115"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:7071::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay"]},"Identity":{"Case":"Some","Fields":["/zBZ535dIvHDsgzL4SVpGtJ1iN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eKqltXPvvinr6P/Z0uwXjOugM3pq568k1HgmxSKuCfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:44"]},"IP":{"Case":"Some","Fields":["185.163.45.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsjeufh24h6"]},"Identity":{"Case":"Some","Fields":["/wbnoGihymbOWT3OheJHeAfEgwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xcakia/TtBOzqMUXoQlM/actwfp4GMDSp/0Ueb02T+Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:38"]},"IP":{"Case":"Some","Fields":["51.15.37.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:e50::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DareDevil"]},"Identity":{"Case":"Some","Fields":["/wO+To+efkHix9loLOTWSW/uBiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8OkwazxUL/280M02cfXYmafA1fpBqXns7BZHznqkek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:26"]},"IP":{"Case":"Some","Fields":["216.73.159.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tgtor01"]},"Identity":{"Case":"Some","Fields":["/vT2sJAO1JLd1YYoamasGU36kBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWA/V35ZAp9TGPUo055vCgdiXy2x/vaSPVjfB9pxJvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:40"]},"IP":{"Case":"Some","Fields":["192.95.52.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eierschwammerl"]},"Identity":{"Case":"Some","Fields":["/t9JmJUadQ1deXTfJDA1SZ6EiC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UBEHrbSt7uTTLfs6utaHe9yI6qeKw0xug1TLlQ+iOyg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:58"]},"IP":{"Case":"Some","Fields":["37.252.185.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNinja"]},"Identity":{"Case":"Some","Fields":["/t1DqbmvmsuyZOWE7jVsVdg0UCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKM90BTY6furnqziZkpt3kjpRhtKkb4lUaubvd6A/l8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:59"]},"IP":{"Case":"Some","Fields":["85.119.82.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba8:1f1:f05d::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/tzapN38uYpbdAnw3XuWmZTBX10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTjQiH3e9j6WmBZ7nzRiSC7hdIaHRZ+hwxbKhUNOqxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:12"]},"IP":{"Case":"Some","Fields":["54.38.183.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::165]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeroCalcare"]},"Identity":{"Case":"Some","Fields":["/tL12BzKBmmOVApCA4yz1q73R8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eElcC01wnJLuNolSAMspUMN3ba3gh+5o9KCRV7jWCwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:13"]},"IP":{"Case":"Some","Fields":["5.2.70.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ADKP"]},"Identity":{"Case":"Some","Fields":["/qrpusi2dHu8OhTZ6aw5JKD946c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqzAhkEx033rz7OfAgUnTg0lZSJ9WqXBaAyhwGFkn0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:52"]},"IP":{"Case":"Some","Fields":["185.41.154.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.2-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra92"]},"Identity":{"Case":"Some","Fields":["/qp8gC29Z3jVMcXLzfsuW+hLoss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FvMO8NKYm8mRxJ3C6cdPg6OhNxSK+2937oK3d3m0kYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:08"]},"IP":{"Case":"Some","Fields":["45.141.215.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chito"]},"Identity":{"Case":"Some","Fields":["/qMh2PStdzIg/A1KKuefikpZ20I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RdLBk0/7yMT8bQKdEghNX6r1s8ajGvEp70rxTKajydQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:43"]},"IP":{"Case":"Some","Fields":["80.78.27.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:8078:27:0:504e:1b79:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["volodymir"]},"Identity":{"Case":"Some","Fields":["/oV8MENBL9VFTtX+9VxMVy5bcM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZNBRh5VUgGiMo3556MwdeEDNYBgJL1LxhzFVkNf10fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:15"]},"IP":{"Case":"Some","Fields":["46.229.55.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Voomoo0o"]},"Identity":{"Case":"Some","Fields":["/oAy3rpVOlz+jKjSS1ND3G9vIc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["piJ+DLSC1mFGKa43awYqJ2n6mol+D7ZHX2NPUE518Sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:41"]},"IP":{"Case":"Some","Fields":["185.101.105.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/n+cJVYsoWpX/xdgccHSJP9SUOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AJd05IULN0IB7D7wQUmIHwuIKqJdEImdC6hisMQ9Fuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:38"]},"IP":{"Case":"Some","Fields":["64.20.57.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rangiferine"]},"Identity":{"Case":"Some","Fields":["/nWlY9cIttFFmIQDZj/Ki/2I7BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i1cinrRXoyPCL4ii3B85RHK4YaYnjdccZYwQ97TfpvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:10"]},"IP":{"Case":"Some","Fields":["158.247.210.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:1c01:76f:5400:3ff:fed4:c583]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W0nuIKVExitTor"]},"Identity":{"Case":"Some","Fields":["/mvIToSYnSBYGDnwpy8Y0Edtekg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eRirzHH/Y6X0TAGoGlmFP/2E871At1mvkZ07MLOvEEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:02"]},"IP":{"Case":"Some","Fields":["212.71.238.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fe03:94e4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["juliansTorNode"]},"Identity":{"Case":"Some","Fields":["/mI9pOsrpyeR2aoRr3ySmQX3SDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uyg131tbHfSfY+Ot4HRho+aD7KLc3fSQo8N7UesbuZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:56"]},"IP":{"Case":"Some","Fields":["91.2.206.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HandStanderd"]},"Identity":{"Case":"Some","Fields":["/lvkRqLJSuyoLLtDY2fugP1hXKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUVmqHof/BoXprmfJcO27TRtuo8Oza3uQUfn5vUGK2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:33"]},"IP":{"Case":"Some","Fields":["46.20.35.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/ljsed1M0BxSSzd9Gnvb66ic9tU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NYVcfeu9bsgn4ERFzpvypFdezao0Aks/PihgMRVRDtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:47:22"]},"IP":{"Case":"Some","Fields":["195.142.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["turing"]},"Identity":{"Case":"Some","Fields":["/lbp5T6PaQtrSLSnYhO+ZPK3sa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wy677pqlelOzpZZeFuS1UORgUxKuy5nZRQMh8aokdUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:55"]},"IP":{"Case":"Some","Fields":["85.183.60.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc09"]},"Identity":{"Case":"Some","Fields":["/kaYoDPlRCxsHRuXlh+hg7+8e5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qgBrYUcLiiEU9ypsYn07PeMo2tQcHutjLUmDZNNx8Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:06"]},"IP":{"Case":"Some","Fields":["185.100.87.139"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/js+yuOYH1rZ5bRSyH9Albt/za0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8xCEChSXjimnNZCyILDahDaAjkFTreBadhQAM+oSHpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:18"]},"IP":{"Case":"Some","Fields":["23.128.248.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::73]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["x2lans"]},"Identity":{"Case":"Some","Fields":["/jn3wXwe7XzRDYT5mGpFjhgMDxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uO2PA0Fgg223pPtm3f4sfBd/Gb6WRjzEaVRIK4PI5iQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:31"]},"IP":{"Case":"Some","Fields":["45.131.138.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay09V6Rocks"]},"Identity":{"Case":"Some","Fields":["/jTjhT3vr0gvplji5D7jPziWLv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bC8DSHqmLdXpwJol7OtyPPQOPa4akVEIeRp8mOYrDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:12"]},"IP":{"Case":"Some","Fields":["5.45.104.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["/ixBqkfDAuFNkxhqt2BDSSuUDxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wxw+6wyQ9qnt0g2Z5U0xwlM7UuS6WXG65CVtmX4BYHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:07"]},"IP":{"Case":"Some","Fields":["80.64.218.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::f1a:87b2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PyotrTorpotkinOne"]},"Identity":{"Case":"Some","Fields":["/ilhgAGIM68DqOrNWJSmFGI9P3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OgZPJYxGCr6fLNlrnLWNaJyKcrvDIqIzeuhMYlxDNpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:17"]},"IP":{"Case":"Some","Fields":["149.56.45.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::17d3]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed"]},"Identity":{"Case":"Some","Fields":["/ht0x87gSTYTkpqS+aHYkOWNxkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zMxF9zXkbgnJA29+TLET1ijuis+1sK8CE6OsYHO245A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:19"]},"IP":{"Case":"Some","Fields":["195.154.237.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI25"]},"Identity":{"Case":"Some","Fields":["/hNkWc3n9ELw4QCb3jyKRoVrUqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZhuYQmENW3r8Q2BL34VZYkLFqZ9r+mCEU6bdMnNjgs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:44"]},"IP":{"Case":"Some","Fields":["171.25.193.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::235]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueStar"]},"Identity":{"Case":"Some","Fields":["/g+4e4Ig+BpfHTrgqjWQL+n4qtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["On9KK31X6SgXqWn018IGZaaw5WZ3yc8ESA7RK1bEO9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:42"]},"IP":{"Case":"Some","Fields":["94.130.24.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1e:c88e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COCAINE"]},"Identity":{"Case":"Some","Fields":["/gjb36tttUzsp/JdJZ7fHVl90ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HoQVeeSTGh/Q+NYHmBIvYGrWD6zzNnkdsL9tF0WIIZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:46"]},"IP":{"Case":"Some","Fields":["178.175.148.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:189::3582]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex42"]},"Identity":{"Case":"Some","Fields":["/gCjqDVoDmf7vIlack4mV7slPpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i+wxsXtwhtC0vDsocNYKFz1fej+zzIBrfljRnqONBtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:17"]},"IP":{"Case":"Some","Fields":["199.249.230.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e641]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebigowo1"]},"Identity":{"Case":"Some","Fields":["/fUD5cacmf0W6Bv3hfXC1pQdlxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MgWc3xbKwvIRWmcY+K1sVyZjEf5yZWQ5ZnZE1bXU6bE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:46"]},"IP":{"Case":"Some","Fields":["213.171.209.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:10::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marmotte"]},"Identity":{"Case":"Some","Fields":["/eGl99EojxD7PpXOWmffLVYN/FQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uGxdlp/3Fd11S0+JVIyCpDYE646Wg35eJD/IYGcZGX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:52"]},"IP":{"Case":"Some","Fields":["31.133.0.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4571:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI17"]},"Identity":{"Case":"Some","Fields":["/eEnMFzEECZeZrqC+1o+gBv9GE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jt6D7q20ou3Ey2ClyhFKtxFXWAwe9U+A4ZXns0vsOyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:20"]},"IP":{"Case":"Some","Fields":["171.25.193.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG5"]},"Identity":{"Case":"Some","Fields":["/dnNdAZYLgtWxKJ9RBJq6EPq9t0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p44PT3PnBc+6S78mIF3lbT3gc20eAgMcdDdytEXi3N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:58"]},"IP":{"Case":"Some","Fields":["193.189.100.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::198]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN24"]},"Identity":{"Case":"Some","Fields":["/dcAx5HMa7CsHCCZqCy8NnrUt2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q5Od2YKnlbv/L8DmBxMH9bnE8BzIqBWposcyo+snpyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:11"]},"IP":{"Case":"Some","Fields":["199.249.230.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64d]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip4a"]},"Identity":{"Case":"Some","Fields":["/c/qGMxkRhRV3l6j/DGDTGtC/sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/AC4x62fb/X4QYE7oNj1V92nW4idz9JF6shK1j73MPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:27"]},"IP":{"Case":"Some","Fields":["185.220.102.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::251]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE76"]},"Identity":{"Case":"Some","Fields":["/cRWtAq/BO0BxNLfYuPjQCX7jdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jqgZud+uGA3HeKVTvMHDp055yKN235SxHVCDkjbGbdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:58"]},"IP":{"Case":"Some","Fields":["37.221.67.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:106]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["/bqPtICZdTUK+DZZiKNzANCRA/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTg5aXrGeOfB/BN8GKr5XQqHQLydp23dco4mUccsPo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:20"]},"IP":{"Case":"Some","Fields":["185.241.208.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dorrisdeebrown"]},"Identity":{"Case":"Some","Fields":["/a7RXJjP56QW5WdvYUJU94QGEFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EBgE8jUVtsHeG4oZhLeORMbCtT7abqt+abZKiC/bets"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:10"]},"IP":{"Case":"Some","Fields":["185.220.102.4"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vicarious"]},"Identity":{"Case":"Some","Fields":["/a3VnJtavFc87SIkTrHub+66ClM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UcPyOmaJf3FB2nYUhEA6qsuNn2DFoLSXMjevXbfylno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:18"]},"IP":{"Case":"Some","Fields":["87.98.171.152"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["camilla"]},"Identity":{"Case":"Some","Fields":["/as3IqTqaobjXZrIQiLz4R8vbW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["usj9YGCTFPobAeP3UU+gUYW7VM3x98IzRJ6G3D6+xxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:53"]},"IP":{"Case":"Some","Fields":["130.61.51.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8000:6a00:2::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob03"]},"Identity":{"Case":"Some","Fields":["/Z140TLXamNoqYOxlH85unobC+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S0BvbPG/8ro17B+H8r5P1V3f0X912owd3csyUQc/wY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:27"]},"IP":{"Case":"Some","Fields":["188.68.56.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f847:745e:86ff:feb5:b3c8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FQ63HLEW"]},"Identity":{"Case":"Some","Fields":["/Y8RyTFaeZgZiC0OMEv3nyva5rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/o4t+zdX3Yn2gPV3vjSRvtsrxKfkIVLey8sSn32z+Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:49"]},"IP":{"Case":"Some","Fields":["62.210.85.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dezember"]},"Identity":{"Case":"Some","Fields":["/Xm3+SMIWLSOdfOJZhhAxwJREHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BljxfjyxUKRGbdTnDhD5Jf6V1TSOLGjkhgGmrAkUmdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:19"]},"IP":{"Case":"Some","Fields":["194.55.13.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:31:141::1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drymm"]},"Identity":{"Case":"Some","Fields":["/XmMVIPD7YP8o5BQxWn/6bemSYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["itNGZRbwBus3bBQCd7rlRQ4MSaoNDYp2MULHZ3tw7vA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:57"]},"IP":{"Case":"Some","Fields":["80.146.119.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lw"]},"Identity":{"Case":"Some","Fields":["/USRJ9MNj10SRlPZ73Nu30oStNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["stOfyicx8ML987WQA37llEU44+OWWVZ1k+WZ5rQmA/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:26"]},"IP":{"Case":"Some","Fields":["77.174.62.158"]},"OnionRouterPort":{"Case":"Some","Fields":[43261]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a468:8d92:1::baf]:43261"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Desson"]},"Identity":{"Case":"Some","Fields":["/THsKZiB4pN38Kh+4HmvPapV+tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ied6931/DbVca5Qpew/eLpPJFoTK+LG+SVx9DstULtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:14"]},"IP":{"Case":"Some","Fields":["216.98.209.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nova"]},"Identity":{"Case":"Some","Fields":["/S+biBrGQBAMQo30fcmoY9wvJTY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qPBzm+RS0gXNn1Hh+GEHf5+PGukF7v4qEA83ZpyD+ig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:34"]},"IP":{"Case":"Some","Fields":["37.187.17.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SummerTIMEBlues"]},"Identity":{"Case":"Some","Fields":["/RlSsi71PUkeDX487LhcPO9jyrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MsEylJFvJJdae0FB1nujPsIJlvLe0ILDP3WWJAdeCxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:13"]},"IP":{"Case":"Some","Fields":["37.201.108.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["velarde"]},"Identity":{"Case":"Some","Fields":["/RJ9EBTtPTav5QVYqIvV6Ns0pkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjxoaXpAcu9KBh11r/qUYn6nOq+PA7cGP3sUGORlCMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:58"]},"IP":{"Case":"Some","Fields":["179.43.134.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inthedark"]},"Identity":{"Case":"Some","Fields":["/OX/v6Uo3kvYZ0rPqlruGd2eC68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5M0076FHsU9aAflE6E29lcaFUGzHhewth08hCs/qbgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:16"]},"IP":{"Case":"Some","Fields":["162.251.116.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluppflupp42"]},"Identity":{"Case":"Some","Fields":["/ODAX34tC4JfoP0qN7pbrjw9bhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["op5NmVXPp7DEPppUdqKJ/fmWdANRXkRHLT0Ya31MBLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:30"]},"IP":{"Case":"Some","Fields":["148.251.68.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:31d6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["voltorb"]},"Identity":{"Case":"Some","Fields":["/NV5Qud+qDWQDR/UR7wftaMlqS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hw+FRdYJ6U8hSOpB+sr7TSYdnX1BHQC7pjN/x7qjke4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:46"]},"IP":{"Case":"Some","Fields":["112.213.37.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:9400:2:0:216:3eff:fee1:b8ac]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["shrimpmaster"]},"Identity":{"Case":"Some","Fields":["/Mzs3EQnPGf7N0IAE4Rk843fOaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2XYGh4jEtUP/go3yHUv0dUXN+Q+yaRwYFRANWqrLXmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:37"]},"IP":{"Case":"Some","Fields":["145.239.76.95"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:302:2200::390e]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChelseaManning"]},"Identity":{"Case":"Some","Fields":["/McNP1AMLqYgBBN7ATcgGpOitX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s2XtNrekr8sKOVz1/shiPKR4vDQshNiB+xw5buHCcCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:56"]},"IP":{"Case":"Some","Fields":["104.219.250.148"]},"OnionRouterPort":{"Case":"Some","Fields":[26918]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktj8rmhy53b16bwqg"]},"Identity":{"Case":"Some","Fields":["/MOS/CClwcW16Vq24kc15JPjrrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BU1Xuzh/PhbF2BtMfUfhXmI+WG/GvQ5Yi7dncyFehOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:18"]},"IP":{"Case":"Some","Fields":["85.131.16.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:14ba:1400::8857:e4fa:d28f]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["urkle"]},"Identity":{"Case":"Some","Fields":["/KUqKR3t/Octa35TilqRvpA+Ff8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LQpVYA3oiO51Rey2Y62tqwlW9+D/tP4V4t+jJZwf3Lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:49"]},"IP":{"Case":"Some","Fields":["45.35.33.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saga"]},"Identity":{"Case":"Some","Fields":["/IL+o+ioZ4WyAvTBRR+JxeEqigA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ttpgnuGgb0AP2nLB0Z73/v75zn2iO9H1nKBgb/3LgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:05"]},"IP":{"Case":"Some","Fields":["209.141.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:183::8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SSGserv"]},"Identity":{"Case":"Some","Fields":["/Hmq07A9P4A3uXkJ7ZgrjTnF+cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1n/ZhQIkpyFG203qdx9EgZX4fx6MiG12uqs53BaauDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:13"]},"IP":{"Case":"Some","Fields":["54.39.130.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Donatello"]},"Identity":{"Case":"Some","Fields":["/HLZmDx0pnviGrGlOG37yyqgwG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1Z/7A5hddzUvhFzStgfUW5JKsZnfzuF2ltKdGDO1aQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:26"]},"IP":{"Case":"Some","Fields":["190.10.8.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["/HKPMpyS1npDXvuh00tZM9qmD2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2I7/cxXQoVPTucemdWz+90wAEpDqNnAI69o61JkRzW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10139]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::39]:10139"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/GqEoSUYFbyqRHvugvaT6EfTJac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmMs6/U217WUp3Qnw1i7SQplFZYIbPe1VriUJ/ZJag4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:30"]},"IP":{"Case":"Some","Fields":["23.128.248.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::37]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GhostNetKennel"]},"Identity":{"Case":"Some","Fields":["/FtPkNGpu2tYhcprT07EfReDlS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2vWMhqWQFL4s5Tyd6p3yiovybdQ+4NXDDju7DuJCVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:50"]},"IP":{"Case":"Some","Fields":["217.155.3.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8010:67ae:5:4f4e:c47d:1783:952d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Valsec"]},"Identity":{"Case":"Some","Fields":["/E0DQD7NkEYxmLny+B4LN+16/h0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BXkcZkLlQ3f/JQbQCSpzajS4CAgRg8ACDEJiVRYGDLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:24"]},"IP":{"Case":"Some","Fields":["88.90.177.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bernhard"]},"Identity":{"Case":"Some","Fields":["/Eot/279jAZSsjMQwmTlObNkJGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+vvfaoeM+wBDbr9Ho1vTFWz+rKBjxArF0V1QASZD2rk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:43"]},"IP":{"Case":"Some","Fields":["212.227.211.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:83ee::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nanotier"]},"Identity":{"Case":"Some","Fields":["/EDMxhkfk9RRSt40elQvviY9oMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8NURqbFt2GV7N7rXJQQT/rpTaXRTq0faJb2QRQ6afk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:16"]},"IP":{"Case":"Some","Fields":["209.141.38.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RobRaspOnion"]},"Identity":{"Case":"Some","Fields":["/DFDl9kBLumFeXgm+CsjiEQium0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K3Nh6IFNRSqGaL1a8mk2N62P4NJPzmNuAi6fDwNt9K4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:13"]},"IP":{"Case":"Some","Fields":["49.245.93.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/CzVMOhcDlb9+/2+2rkX2dir6wU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEMMoXktT9TenrwSPwvRoaNzgt4PwHjLbAAXuea/E8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:29"]},"IP":{"Case":"Some","Fields":["23.128.248.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::48]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay12345"]},"Identity":{"Case":"Some","Fields":["/Cm64t1pQYV37f7m5mPHcieCKrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kH6tJ96WIn7uD9T4/YEA+nvU/6Iy9MKGIqINrf0NwRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:32"]},"IP":{"Case":"Some","Fields":["107.189.8.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f9d0:8d45:cd51:c1aa:271f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeusVult"]},"Identity":{"Case":"Some","Fields":["/CgjJv9IDCOBHvIkiqoAkhtKf+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BFkiwMTgUwfsJyV+HFYMyLCbRylh+HV4YkY6iwdwnq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:28"]},"IP":{"Case":"Some","Fields":["144.202.40.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:9002:255c:459f:9c0:1b9d:2e1b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torcatgirlcloud"]},"Identity":{"Case":"Some","Fields":["/B5EHgl7o2kwqi9hXvsyWvdtJZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9p79rB1fqoFp0KaBK+9EfP7gvHmXQYpIlHBy2O1hsIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:50"]},"IP":{"Case":"Some","Fields":["148.251.41.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kaisa"]},"Identity":{"Case":"Some","Fields":["/Ar4taO5UwDCoeCsGsnQCZsxATw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EpPyrmJaH+r/+DPaTVR38tD426xoh0OLHFMks6u4UIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:15"]},"IP":{"Case":"Some","Fields":["185.225.69.98"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev9"]},"Identity":{"Case":"Some","Fields":["/Ad8JbjbsxMtOX198DySv8FMnXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAXio2hVoHwTjkpfsi+t7Mrw9WOIIjmHFTfblmmUjdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:46"]},"IP":{"Case":"Some","Fields":["94.16.121.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:8a8:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HyNETRelay"]},"Identity":{"Case":"Some","Fields":["/AScE6D9RdPX5FS35ypXzuFa/2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0CBOQAQuIygUE23etcyKDxhXEW57rQGbymUzWDyCfNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:22"]},"IP":{"Case":"Some","Fields":["193.148.249.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2fc0::bad:f00d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo245"]},"Identity":{"Case":"Some","Fields":["++6ExJwDukqkIyhETnzDoOiLvew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nn2MoKXgHPo6h3IfP0HkZ70T11SpvkHQsnZCeqdrO7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:03"]},"IP":{"Case":"Some","Fields":["179.43.182.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NochnoiDozor"]},"Identity":{"Case":"Some","Fields":["++Va+726BGVD+FEXg3YN9B27IG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imo3CSzxd8lsxijLArjg0M7IOIVzYQhE+3jUf3vVL1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:08"]},"IP":{"Case":"Some","Fields":["79.204.15.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nononicetry"]},"Identity":{"Case":"Some","Fields":["+9QJN8bhUjynFwNvxP1ezIMqk7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qs9h6Fk+8+JE2hhvdxAKgBYYKux8sPVLzuy+ubsZMK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:50"]},"IP":{"Case":"Some","Fields":["188.68.58.105"]},"OnionRouterPort":{"Case":"Some","Fields":[4825]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f808:948b:b5ff:fe41:2238]:4825"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeliosReaper"]},"Identity":{"Case":"Some","Fields":["+9IDh/ZNZ+1TrFvS4DAtRLLaNgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["un7X2BshSw60vWq+y+PooyLH2WIORNwMBn/g8WeWEL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:20"]},"IP":{"Case":"Some","Fields":["51.161.35.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:205:200::1f8d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PPSStudios"]},"Identity":{"Case":"Some","Fields":["+81dhCjDQrAtlBVvUjWLArPy5Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NZTUJ15imuiYxJXNeocYeCc2Ad9QMGI1ViAt2bXrcIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:11"]},"IP":{"Case":"Some","Fields":["73.203.30.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+8XUwLGCb6alurdQCOKSNJ0rzBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BtkScH/TNsPa8sx/jNrYFNCPs5HO3QL2HPMWZxw7pfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:43"]},"IP":{"Case":"Some","Fields":["93.95.228.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveGiza"]},"Identity":{"Case":"Some","Fields":["+8KFakhwXz7RflBPj8iexkM+0l0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qmHBeFTRzeWbJI6Zpobw58B5MzGgiKMlKXiocVLpCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:48"]},"IP":{"Case":"Some","Fields":["65.49.20.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pnamstor001"]},"Identity":{"Case":"Some","Fields":["+7cl64wvCZMXkz+MVGmysiSfNsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mlMtK09xjIz6/KMwyb6s7pCeuda/0sBpXJNdbR9KuTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:56"]},"IP":{"Case":"Some","Fields":["134.209.85.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::fa0:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorion2"]},"Identity":{"Case":"Some","Fields":["+7ML+QLOakYrX7jDdutencavWnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7aFEc+6RnBLc48qILF9uE+hvVqOb2FNQplP9OvR944"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:33"]},"IP":{"Case":"Some","Fields":["94.16.120.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:a28:48a9:2ff:fe5f:5356]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yanush"]},"Identity":{"Case":"Some","Fields":["+6g68BwYKWb4xUoAJaatS72LTBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0+1WVuIMACjde7kutUnhLbU/yLzwzOdNSKPfVGLVgxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:19"]},"IP":{"Case":"Some","Fields":["146.59.34.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangolin"]},"Identity":{"Case":"Some","Fields":["+6DdEkr7AyGWRSYjIkc89cWd91w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yHXIyoIvY1kz1bXnLJG8hXCfAc1d8GReU4ckO6CFPy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:05"]},"IP":{"Case":"Some","Fields":["104.244.72.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Sandefjord"]},"Identity":{"Case":"Some","Fields":["+5qsOi3kDgbcmC01jaq6sA10VUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VuCw+/86UmnQDtTSNkF5C1098kRrD0ShpNOnLyn0rQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:04"]},"IP":{"Case":"Some","Fields":["51.174.128.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:79c:ceba:1b0:0:100:2851:ec96]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Small"]},"Identity":{"Case":"Some","Fields":["+42upKoLhF1RhCN1PG4SUWe6rGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9eSzwW0ald/DxCNQPvYePAVBC0qYetkNr0dA/DfkRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:08"]},"IP":{"Case":"Some","Fields":["63.250.63.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra72"]},"Identity":{"Case":"Some","Fields":["+3myvnB/Jy+/4VhPRKP6UVb38c8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qrDZi1yL2k41CgkD/gK1O6nkM35qsxTaD3/q7jBN3Tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:13"]},"IP":{"Case":"Some","Fields":["51.38.127.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ROOK"]},"Identity":{"Case":"Some","Fields":["+2koGtNcmb1kMu+NTtkAXo321OQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H3RofIFGz0XG0oSdjSozSmh/x4L3ceJzbymr9t0DD2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:21"]},"IP":{"Case":"Some","Fields":["146.185.248.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:5f5::19a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jjc"]},"Identity":{"Case":"Some","Fields":["+2RtkV3X4VMXZKQqsUlBbn4O9Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LelKHgY5tiIFsh7pd+gMA2g00zC3Oa/bh6zgCFscSlY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:59"]},"IP":{"Case":"Some","Fields":["185.132.133.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeepingben"]},"Identity":{"Case":"Some","Fields":["+0sLCmMlraKqOFLSi2gNMlns5E8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QPeK3eGbI9OFloKeZQ+W746vOxHNl7qhsQ4kw1UPU64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:24"]},"IP":{"Case":"Some","Fields":["208.105.141.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber02"]},"Identity":{"Case":"Some","Fields":["+0oOT0cLNueokVmoVpUwpHwpK6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CUh1LhCxul1hSu8oqynYPSTM5MMgjvI7QSkVgj5uljM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:11"]},"IP":{"Case":"Some","Fields":["185.220.101.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PankyBG1"]},"Identity":{"Case":"Some","Fields":["+0UxgX23MWiwQQrUv+qv4gbxp2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lppvX9cCSSJ8xmWgghePHC9Rf1F8dN871mqMxZIcbAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:42"]},"IP":{"Case":"Some","Fields":["213.183.63.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jcmediator01"]},"Identity":{"Case":"Some","Fields":["+zqP6f7KeTWztwfrmZDaoujWCcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EeGFRYMX+yonGpUVcGbnzvsigctngdoiUcAH/bonhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:17"]},"IP":{"Case":"Some","Fields":["50.230.202.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:1b5:91::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KrazyG"]},"Identity":{"Case":"Some","Fields":["+x4XRUVJVIvm0z/55phzXDHu6lA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/rQ/BF8fSBhi2IkjCHOwflUoLR3svTSiucrBOJvQ9nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:31"]},"IP":{"Case":"Some","Fields":["174.94.89.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratap"]},"Identity":{"Case":"Some","Fields":["+w3f6RXLk9lInT5kTvRrj05Rlns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bGTYFQfVvEyOEfM6MM205LCaToloPG307aUtU2bxeFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:00"]},"IP":{"Case":"Some","Fields":["51.81.155.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Najdorf"]},"Identity":{"Case":"Some","Fields":["+vCogp45BjZp+mCbkE4PuNXh8j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6Uv8r7ZyU0XYatqgswfCAoIF8rv/lwyBnXKvMdl+wU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:13"]},"IP":{"Case":"Some","Fields":["49.12.57.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:fff0:4f:266:37ff:fee5:cc35]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BadGateway"]},"Identity":{"Case":"Some","Fields":["+tjLTHz784434mFkxHsTYkQXs9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34nj/Iub3WA/41NDj3/vuwaBaPADEhEw7rlK5/BtRmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:25"]},"IP":{"Case":"Some","Fields":["162.55.163.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:86ae::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MoneroToBigHold"]},"Identity":{"Case":"Some","Fields":["+scwf+kFQh3EzMDKBNNq+MQ7Emc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eQLR1HUKIcHaMiJAXjxbYtZWRaO036IfcXLcSwE+1M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:29"]},"IP":{"Case":"Some","Fields":["185.236.231.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["aster1skRelay"]},"Identity":{"Case":"Some","Fields":["+r4+a+bzFiYAFp+GKtxXJ0SPdxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GTVZkM0wzXWrZ6IHxp4mbsFswYAMryWDGzCtVq/n/7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:12"]},"IP":{"Case":"Some","Fields":["121.173.56.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex96"]},"Identity":{"Case":"Some","Fields":["+rluAGlZbKytzx/LokB/zlBe0G0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b28hBC38xlEJHieF/+Qg1QmihfHgOw8pq/SCGQLVLYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:55"]},"IP":{"Case":"Some","Fields":["199.249.230.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::185]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Overbite3513"]},"Identity":{"Case":"Some","Fields":["+qQtzzZ8ljdosUHKSrqtoU2Ao/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sR8SG3qqVL/ZywD/cg+kWUJVesGp/g1pmea8jxFxrRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:28"]},"IP":{"Case":"Some","Fields":["107.138.131.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c983:1000::ea0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire64"]},"Identity":{"Case":"Some","Fields":["+oX+gQk/5dU93OotuihujMycbd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dM8QGhV5WsPgmNN8gbfOMX+E/KcBrw+PL2W4Ke7rPN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["91.143.85.52"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efe]:465"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["namedrelay"]},"Identity":{"Case":"Some","Fields":["+nxrT9vc925H8s8yNZgAs7o5Amc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J8ycC6/266PEtRxTGqLAfg7Dv5TXz7HwEecE0olDxuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:17"]},"IP":{"Case":"Some","Fields":["167.86.110.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2035:4794::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Morgoth"]},"Identity":{"Case":"Some","Fields":["+nqoCUlJTc4sHiZeHvoe5lknCjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2TUlMv8v1p/nwgdMK8ZiShYZNEDrHQjfzVPFmmIMrq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:15"]},"IP":{"Case":"Some","Fields":["178.254.12.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:38d::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman5"]},"Identity":{"Case":"Some","Fields":["+nJHyzt3r5v2JDDCNOt2I/AlKdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z71S1O8bKBksZhpPsXTRTRE7asAl0vW+AY+kD3lGn/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:25"]},"IP":{"Case":"Some","Fields":["85.204.116.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:3dc:f2:43cb:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KyleDewbrow"]},"Identity":{"Case":"Some","Fields":["+mn3xRBn2ahBaJYsRqykgKkM01Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WDH/TVwVxuKWbsjcS5aBbUN0Dxze0VMiO6lGATDNX/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:39"]},"IP":{"Case":"Some","Fields":["202.165.228.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metaverse01"]},"Identity":{"Case":"Some","Fields":["+l8as0aPgIsvsF8hVcBIGjUyx4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A2A9HLS0YfsTnRKMmmzrND4yghMCb1ETOPDEzwup9uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:19"]},"IP":{"Case":"Some","Fields":["185.97.32.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:66c0:1:1::34]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["53c70r"]},"Identity":{"Case":"Some","Fields":["+lYeU03d5jgw+gsKSEI17SO7J6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pRXHB60EL+qLcrjI05mfgRABzoXeEwpnSXjCpKPpffU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:31"]},"IP":{"Case":"Some","Fields":["89.58.32.236"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:d04::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kllen"]},"Identity":{"Case":"Some","Fields":["+lW0/86rvTu32WfnkHKuDoIs3ZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JOEOQZbWd3weLpFo6AX3lU8OoWawMUoI2uIcsTL0WEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:35"]},"IP":{"Case":"Some","Fields":["23.82.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["+lS9v2BUs/UigemTscAeu/nFmHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m1y96fjX8ntcwOXN8SLUPh/2nCdOW9Snu6XvtzVAd58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:02"]},"IP":{"Case":"Some","Fields":["185.220.101.195"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::195]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charon"]},"Identity":{"Case":"Some","Fields":["+k4VhUXoAyRKs3WGs65bjCWhL/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XzYzEpiXYQ4RCVlmpEwi2uRrz5MelxdQtemBlunzVSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:03"]},"IP":{"Case":"Some","Fields":["45.136.30.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:687:24bc:e7ff:fe86:785e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p8miz7ttgr5"]},"Identity":{"Case":"Some","Fields":["+k0C9x5bWdpD65i8lpSHUVT69v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9/D4ZlCS3vUNuWh5f9zz0B9MWG+qc8xO9oUv+ZeYJSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:50"]},"IP":{"Case":"Some","Fields":["37.120.168.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:500c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+kyWbAS4Cyo5rVoBde4YJO9mE3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4i6+m6/wQZfQ9mar2yjdbl82AZuMsBW1jrSK9CFpy00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:19"]},"IP":{"Case":"Some","Fields":["185.207.105.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erklig"]},"Identity":{"Case":"Some","Fields":["+jsuPfNHmqFTOpJdxXAlOlfUuBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3HQoi6Jx3CjAyu6RW5Cv3HLBF/HDjL96I13K29tR7ME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:51"]},"IP":{"Case":"Some","Fields":["63.170.122.227"]},"OnionRouterPort":{"Case":"Some","Fields":[28231]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["barnabe"]},"Identity":{"Case":"Some","Fields":["+jPCyAaWM9Qd5QP5p7xBYfnWop8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L0VZxlAz86fxG3ysR+YFwWQeGfjmC6G8IGPHSJD7P5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:00"]},"IP":{"Case":"Some","Fields":["176.78.197.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hohoho"]},"Identity":{"Case":"Some","Fields":["+hkPvlK3WXUd0SsOLuSnBmepv0Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hgtlaYMYEw8J3E3sXa5TZFRAahKSWlECQ0wlPmsBw9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:47"]},"IP":{"Case":"Some","Fields":["146.59.233.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::c48e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie2"]},"Identity":{"Case":"Some","Fields":["+hhFwxO4jvSei+HyOwLNCscCtjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2Bj27qZGcF065Sdyl40vH9tO1okSAvttFTTTvbH5qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:20"]},"IP":{"Case":"Some","Fields":["65.108.136.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishWingedHussars"]},"Identity":{"Case":"Some","Fields":["+g6y7RkA0s3h/FV+T0k6tWj45dM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkQsXVw5L/dRd1r1qxbZcJ82ZGpckBeVxiJ/FCXZUbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:42"]},"IP":{"Case":"Some","Fields":["85.89.172.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zw1ebelSuppe"]},"Identity":{"Case":"Some","Fields":["+gmvUZiTJ3RHLKMnBN1jP1+VmjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FmUE3N+VaQNskKZoadYzMHN8hAs8vQv22+jzDUqjjpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:05"]},"IP":{"Case":"Some","Fields":["80.133.251.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lucatona"]},"Identity":{"Case":"Some","Fields":["+er2ipy1VF3g6sk7SjGm0gadNtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tT6N/rs29WFFNDxzm9MauzSS6mj1dc+qRpdQRbRhP/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["5.161.51.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:1256::1]:9991"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenTwilight"]},"Identity":{"Case":"Some","Fields":["+eMtQFj3816bxPHYw7LaoMRGZmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+D7i7VjXOMBYA4SOW092QNCvpSF0Z7GHwnl/XUr8gm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:43"]},"IP":{"Case":"Some","Fields":["51.158.148.230"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:2000::a]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+d1bRe10pDnx8O5mNkULulyL8jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYsQPMdRMr5ODfWEOAAU0QRkZNTFdrcKe6b44smyPQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:13"]},"IP":{"Case":"Some","Fields":["104.244.72.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noeditconfig2"]},"Identity":{"Case":"Some","Fields":["+dlC1qMgd3lAoFHIpLPvPA8orTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NH+a2MD6fa5o1fm8VucpDxSeWHhGB/KK4LHxUq5q62k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:50"]},"IP":{"Case":"Some","Fields":["149.56.157.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindzero9"]},"Identity":{"Case":"Some","Fields":["+dDDOMTjwL93fWaBoJBJAnF7qjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s0ay8DdtT3J+aKwVJxMIZmHLmnZyNH24mTd5VxPocw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:40"]},"IP":{"Case":"Some","Fields":["193.38.255.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+cs/1MeATwMQWq8b97bH0tp91SI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XFiJWJ59j5aNvwPGk2LTmZoWJHFoSqZIlGJUBxPYuIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:03"]},"IP":{"Case":"Some","Fields":["51.254.45.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SyrxEditedTheConfig"]},"Identity":{"Case":"Some","Fields":["+cX5q0oYu6giarEPR7MLPEJ5zn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9tJzs3ZFKQ1IbE/FIYoohRSzN8ak0Cw9E8s0aq8Lb3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:57"]},"IP":{"Case":"Some","Fields":["192.9.247.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MasterOfDisaster"]},"Identity":{"Case":"Some","Fields":["+akZDGwOnkyOHzjMAzGxYyZStRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7A2jYBhWzej+IoOYkUi1Fs+iH0kxjcdHpJrvLXSRBE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:29"]},"IP":{"Case":"Some","Fields":["167.86.94.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode3"]},"Identity":{"Case":"Some","Fields":["+aKKtx1+TkRjCGQaVW6lO6Vfy1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Djc6wljgS87xlQCQD1HxlTRABqvLg4ls7aAljTtBSaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:08"]},"IP":{"Case":"Some","Fields":["209.141.45.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recodex"]},"Identity":{"Case":"Some","Fields":["+ZEM4qPp1Gf83Z1SKGlboYJ7AQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSG0EuGDSF7tBhgl04CGo4b0WeaY9EkfJriFNKc0vMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:30"]},"IP":{"Case":"Some","Fields":["138.201.132.34"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:2f66::2]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarinAsagi"]},"Identity":{"Case":"Some","Fields":["+Ypw5UJ7/xEWQAEfeuMeU37PHdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMjqW0FRMfbdL8q3tCi9s+Nc/SpMiJVpUY7mTcmmgeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:21"]},"IP":{"Case":"Some","Fields":["23.239.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBigShow"]},"Identity":{"Case":"Some","Fields":["+YYN7c62K3SnKLUO43QpOsSDhto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDwH1wXGXa2qgDhuO33v9l26g14gm6MxMRG81YPDJdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:33"]},"IP":{"Case":"Some","Fields":["74.123.98.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay35at5443"]},"Identity":{"Case":"Some","Fields":["+Xz3bZEhrChyfCKQJoGptTmrrpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["72qOVlxj6P0iQW+ivNWYJ4s2BiLa+qIGpb2xFDZnwek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:05"]},"IP":{"Case":"Some","Fields":["140.78.100.35"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torlux"]},"Identity":{"Case":"Some","Fields":["+XlxSCQN6sRt6+VRMdUZH5JjSRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AtrxN6QaBkAgVxZZ+uZSz0s8IJvNLTiUE6t4o/BIhr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:52"]},"IP":{"Case":"Some","Fields":["158.140.230.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["+XcqyLVxAMDSu6j02llWw/GTmA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rpaWiHl01QgrerxNY6PqxC3FJy0It1Ub5qU0U9X7mWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:48"]},"IP":{"Case":"Some","Fields":["185.220.101.60"]},"OnionRouterPort":{"Case":"Some","Fields":[10060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::60]:10060"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididreadtheconfig"]},"Identity":{"Case":"Some","Fields":["+Wy/xcB52DngGQKAKnAClIbSrYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ZWSdIlHp0TiRr3Jazth0flm3570zBUn09etb+EnUIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:12"]},"IP":{"Case":"Some","Fields":["209.182.232.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aloha"]},"Identity":{"Case":"Some","Fields":["+WdPRaJcqpd+e4coB+CgcMEh9fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GLVJoDRZAY0MYD+7IroRXSFx8x51yIs44y77KitcnGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:30"]},"IP":{"Case":"Some","Fields":["95.211.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yihwa"]},"Identity":{"Case":"Some","Fields":["+VY2CqXx5hBk4mcf4jHFBk0q/q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywkwx2dzR+ByuXXEphBYm3YZ/clUPHDZrBHNBiUK6Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:40"]},"IP":{"Case":"Some","Fields":["187.94.253.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0137"]},"Identity":{"Case":"Some","Fields":["+UCMFEs214pHursLtT3/Zx0jvlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zrld9WgsjDEDSdEEYuXnd554nTxaDRt7b/gw6dssdDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:33"]},"IP":{"Case":"Some","Fields":["185.220.101.137"]},"OnionRouterPort":{"Case":"Some","Fields":[10137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::137]:10137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+TivoqXo7ZROK1Bt4smcz1V4Lo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NPIkPfu0Pdc8Y6dOaGbNo1bssWcLeCYRyf4l7N6fxH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:29"]},"IP":{"Case":"Some","Fields":["77.8.1.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt98345"]},"Identity":{"Case":"Some","Fields":["+TbHS1yu86PnLqZrjyLeTeBot3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TP406XIGiXkUOuv7Fu6RSZzaOWftsIa4EKm58nL9bOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:07"]},"IP":{"Case":"Some","Fields":["185.245.60.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird31"]},"Identity":{"Case":"Some","Fields":["+SRt7ytlOAcjbaE08q6rED1Yq/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UrtXQ5qcWRMXbOKnl+iTAkRVxqh2oepJB5f50kfecyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:30"]},"IP":{"Case":"Some","Fields":["91.143.88.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::3d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+SLCP/aKqtvSyaOERxtjaUqHm6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y6YlFvFihfKegrgtH5lDtR+x5FUIlOy/nuedvu9Pzmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:13"]},"IP":{"Case":"Some","Fields":["5.45.104.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1750:680e:2aff:fe12:6258]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim02"]},"Identity":{"Case":"Some","Fields":["+RkxwlNDwbBzZBtcRtK92/4EufE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Xm5MN27zTepNSAYqQM+W3pj1tOTZq5vX+G5tU6Aqqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:26"]},"IP":{"Case":"Some","Fields":["24.134.234.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer80"]},"Identity":{"Case":"Some","Fields":["+PbanW3XnJ6jxov59iazabc5j20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4aWdMcILhqTYfMsNCykf13FC/uP4f9DISNOlHgIrAtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:23"]},"IP":{"Case":"Some","Fields":["95.214.52.156"]},"OnionRouterPort":{"Case":"Some","Fields":[8280]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluxe3"]},"Identity":{"Case":"Some","Fields":["+NJ7FjuSR7Iyou7mjdi2mGlcKN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esAts+ZacxdR34/juYl945/HWtwEg9Zf21NZGBfo9I8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:51"]},"IP":{"Case":"Some","Fields":["78.47.18.110"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:4023::110]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanguardarchie"]},"Identity":{"Case":"Some","Fields":["+LYtOjZ/cmzQEeyakxtU9Lndm7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYyZNeOUXjjCryfucjDN0+VdQis6etFagJdms0xvKGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:00"]},"IP":{"Case":"Some","Fields":["104.128.48.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay17L"]},"Identity":{"Case":"Some","Fields":["+KqNjMugxfKDbeYxXN+m5KMaCJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["54Eowte4mnUUPeE1wMYTaWRTUUlCvkQWK1xOALVi5z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:25"]},"IP":{"Case":"Some","Fields":["5.34.183.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+JV9YeKaYmQAApoDpjSEAOdQJgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3IBvWofooH5dfiqjmcoYE3sgg4bhxjXUKVqSk+6RCks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:37"]},"IP":{"Case":"Some","Fields":["108.161.139.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bwanzie"]},"Identity":{"Case":"Some","Fields":["+IchsNGENhrSSxTP1WgygkoOefI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K4P3L6G+7kmxUATclMrL50m860bWtvTkpxMwa5HIqxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:12"]},"IP":{"Case":"Some","Fields":["68.183.163.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::23c6:2001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse06"]},"Identity":{"Case":"Some","Fields":["+IZDajRJe7Cj3iNbLsO1NY6Hw7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTzUjN+N6V9wp4GW0fP1p8TWvhktUdz5Cd7cpX3bZCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:40:18"]},"IP":{"Case":"Some","Fields":["82.223.70.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8105::1]:9666"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["screwTheNSA"]},"Identity":{"Case":"Some","Fields":["+ILkpLc0R8VhYXAFyOaSsKcICAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T6kEeo7fN4W5Rw7I4VdDxlk1ghmBkV8kfwICWrbWGAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:24"]},"IP":{"Case":"Some","Fields":["152.70.197.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay17at5443"]},"Identity":{"Case":"Some","Fields":["+HisoppkT/Nh2Ziwckhj78B3rhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wMlC8OkEBCdELiM7ktg3UYMzPA5HeLWKiVQzpDcNqh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:11"]},"IP":{"Case":"Some","Fields":["140.78.100.17"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bullseyerelay"]},"Identity":{"Case":"Some","Fields":["+HOiOCbvm4I1+2Nd7ENoQhFGWXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esjfv322rs/7uWoqTmWDM42FAViXfmzm4oKeWrcDv7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:43"]},"IP":{"Case":"Some","Fields":["84.165.122.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torushopyard"]},"Identity":{"Case":"Some","Fields":["+GS962bIoR4glFaEZJnC+ZVDV5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XN1dfVzqgzPwzvU3GEdkX80Mg5HMDD4Osdb+MZ4/nVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:28"]},"IP":{"Case":"Some","Fields":["94.139.3.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["+FJ5719X5socuHGGLDqhglQkrbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1AGGFvUpv3TtLqMby8efA6WHrQZbWwawXppH9cB8L8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:17"]},"IP":{"Case":"Some","Fields":["86.59.119.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:86:59:119:83]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["+Edp7i2XtTgHkq0g592DjdW6/0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ALZhB9XqdSeUt0Br7/c2tpADpga1RNgLo0aTmvcSdJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:52"]},"IP":{"Case":"Some","Fields":["23.128.248.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::226]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeeEmmCee"]},"Identity":{"Case":"Some","Fields":["+EXf2w0uyr6/hbN9CSQOaZagjXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4SHMzeywn5n+eNuu2QZpiBahEBpuaYuCLtHqK1vYKjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:28"]},"IP":{"Case":"Some","Fields":["185.107.195.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["udeu6Piengui7yoothe"]},"Identity":{"Case":"Some","Fields":["+D/VLU8Uzzl0zrzxE0tWoBU7yDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Th2QLQedDnt+0guVMvN52+Yijuo7s7TP5lBjueTJZK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:45"]},"IP":{"Case":"Some","Fields":["45.62.246.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2607:8880::1846:d8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay01"]},"Identity":{"Case":"Some","Fields":["+DxpnyX1m4Jy8UXOpxy75lqlkdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWFvDO08sEtsVcw9LzrmAkEoWxnoO6JYMQtZnUdAUpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:25"]},"IP":{"Case":"Some","Fields":["89.150.132.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyberbits"]},"Identity":{"Case":"Some","Fields":["+DZEZmPx64FvE3CJVfEF0LL1yOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gjTt/7rshqQg+G2udoM/CLQIppL7Wy/sOpXu1TKO5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:06"]},"IP":{"Case":"Some","Fields":["212.129.32.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber22"]},"Identity":{"Case":"Some","Fields":["+C4iIRIet3ot4+aUECcmUCfqI3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FcMxXKNDXJldtz7Rk8lF0l/dvg1VuSP9kb6+Z12QjQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:52"]},"IP":{"Case":"Some","Fields":["185.220.101.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::11]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaellaTeam"]},"Identity":{"Case":"Some","Fields":["+BZ/TmhM6oOMyCmZI3MpbTsdxHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9v4oDojTRyP9BEmVFq2NbMHrD+QFdDXlV3Jis6nXu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:41"]},"IP":{"Case":"Some","Fields":["178.156.41.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8a84:2040::232]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARS"]},"Identity":{"Case":"Some","Fields":["+A/eJ+/LP2p7TizFFxM9v/p4ui0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iNerMydMXefxRIKoGD1F7hQqbheoNOWapzQXNzOhPOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:39"]},"IP":{"Case":"Some","Fields":["213.183.48.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:f900:1:100::53a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elbasan"]},"Identity":{"Case":"Some","Fields":["+AJ0q7kxN4LEdPcbwX6ltL9cB+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofKhXjiktqXx4feeMaUeoO4jQNGRlBZR47BkqBAcbn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:06"]},"IP":{"Case":"Some","Fields":["31.171.154.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uncloaked"]},"Identity":{"Case":"Some","Fields":["9/misorEfzKN/sqmbFknGfzOHo4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["109G5a+AdjYEwS9LqQ8+jYix5BtSzebNcyhYEjO/zW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:41"]},"IP":{"Case":"Some","Fields":["91.121.103.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1:9c6f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl0tjdevde"]},"Identity":{"Case":"Some","Fields":["9/bHuh3/pNSnKO2u0RxE10Zqowc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yWyRoMGT4+ZuXl80Vk1qCNmXJ5fyw3WUTqsZ+7ojvkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:12"]},"IP":{"Case":"Some","Fields":["84.252.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra23"]},"Identity":{"Case":"Some","Fields":["9+1BWLcRRhfo9zfGXb6H7muDRFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J+KpxhSH6AYW63n1WYlIGEZzbGnZxEBje7XXbQDxzTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:48"]},"IP":{"Case":"Some","Fields":["51.195.42.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["landsend88"]},"Identity":{"Case":"Some","Fields":["9+XNz/uHVJUyRzGUOT5hOFcYVPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nng4jBMcrdsplSm+2j7n4Faoisc8JjEQT0/m/rg8zQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:23"]},"IP":{"Case":"Some","Fields":["129.126.111.54"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mstirner"]},"Identity":{"Case":"Some","Fields":["99rv0IXSQDkr8eA2nKgRm/Ikec0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uCTzhqBQbPRIeN+9qMdOE69bPwtBa+wQ97oUtyh22a0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:10"]},"IP":{"Case":"Some","Fields":["185.125.171.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lupin"]},"Identity":{"Case":"Some","Fields":["99C3jjQ1HB3+A+LIh0b9mZsE1F0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t9iCk8GEqt6o08pp8+Ri0TiRKdX2/JIws93xXyku3lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:44"]},"IP":{"Case":"Some","Fields":["84.211.247.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pooclown"]},"Identity":{"Case":"Some","Fields":["97sDvHfOtu9mR4xYo0MCiVjrdpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rt9Wzma6rpA60/AgPoDKyQvfeqtwqz3vlzULPc+aoVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:50"]},"IP":{"Case":"Some","Fields":["23.227.173.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay0vpsfree0cz"]},"Identity":{"Case":"Some","Fields":["97Ak2wLGARhcIC4m3/0q1SXBajY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C09cCbKKm26qa7L7cAM8yxszRFJp8NA7b7q1s5nW2cM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:56"]},"IP":{"Case":"Some","Fields":["37.205.8.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorB"]},"Identity":{"Case":"Some","Fields":["968M1MRsF20cj42h02lU4jcGmFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7c0D1zp6V3AIlSWbFoDgOeTtefxP1Y3xwwpqJ9HQBlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:16"]},"IP":{"Case":"Some","Fields":["85.195.232.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:ad8b:50::b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockstars1"]},"Identity":{"Case":"Some","Fields":["96BS1O6i9LyULfsFSvLcVKKjfl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rSO8gfk2xXoEKHGqE1Z5yYN7GW4F+q0zEatSRjxdUXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:24"]},"IP":{"Case":"Some","Fields":["174.128.250.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de4"]},"Identity":{"Case":"Some","Fields":["95NwukatwDzBCGaSTuSjxHC6/pM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5YOqam90+vU6dqPbib315dZF9T2hVI85ZicQGSxjAlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:45"]},"IP":{"Case":"Some","Fields":["45.142.176.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KRSPYCHICKEN"]},"Identity":{"Case":"Some","Fields":["943eGCDInjqQjqZ2DSiHTP4EBm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["35ozNJaPc/hsBZ9NqEeMuE/AIaeg8aVxlIGi9wEzXv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:07"]},"IP":{"Case":"Some","Fields":["174.0.21.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trolling3"]},"Identity":{"Case":"Some","Fields":["93EG7j82athclbBplsynq8ZuySI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R8hOhopd1acwBu29QfMVs1FA7J1KflMy/ovEeG4LM2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:58"]},"IP":{"Case":"Some","Fields":["77.68.83.86"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zeus"]},"Identity":{"Case":"Some","Fields":["922OqGQ2i60Y4kFSmWQn0TF/Vg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kKhmTHtj0DtlHb2KduCh5u2bdDtXg9cPdxDiK5d5Q3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:11"]},"IP":{"Case":"Some","Fields":["104.149.155.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:6600:0:135:ec4:7aff:fe0e:757c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["92vrikrEG/g2QeOYgC/hrabSUxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9SKS9RqcqtAz6SwjE0X0P3xYX9SfjLf/TT0SUGzEJxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:11"]},"IP":{"Case":"Some","Fields":["23.128.248.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torchon"]},"Identity":{"Case":"Some","Fields":["92gkkKgwH+56u6xkuBiCalOboag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aY/wgtGto6I2vhDFAb9dIKahM+BZEnPF1LPBTzfKLNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:07"]},"IP":{"Case":"Some","Fields":["82.65.188.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:240:6790:b9f9:2aed:f31a:b612]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorCHI1"]},"Identity":{"Case":"Some","Fields":["90+qJjyQfw/dfRP6YJLYi63gn9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Y8/G7OtAxstAgplk/Aq3Up43N506bgCPKQ1mxobJ94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:37"]},"IP":{"Case":"Some","Fields":["172.245.134.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["90qb3Qyi7+B5B9cKoYtD2SPj50U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XP7mBBNQe8eNj8VNkIrfEPROY5955zI8vpA70egi25k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:16"]},"IP":{"Case":"Some","Fields":["37.120.185.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN1"]},"Identity":{"Case":"Some","Fields":["90R+metcvU1euRPuDjWsZCtcHvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FZXFOALG500QzlOS8BrzAMv/7aj9qs4GR7NclFD9p28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:11"]},"IP":{"Case":"Some","Fields":["199.249.230.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::120]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor06"]},"Identity":{"Case":"Some","Fields":["90HlEkyxJwDalGt4ybLdF11s0qE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7vGcUb/u6SJGn4LLNqJNcbmpDxrzDB/pZJJtEuriyVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:25"]},"IP":{"Case":"Some","Fields":["163.172.154.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:60c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IAMWATCHINGYOU"]},"Identity":{"Case":"Some","Fields":["9zcfVx3rKDiRAIoXXt1TO3SnQyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x+nIXzm5yDGVLKhzIznrPJqA7t5XPTB0URE8JoHxl34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:22"]},"IP":{"Case":"Some","Fields":["185.225.68.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTOR"]},"Identity":{"Case":"Some","Fields":["9zIwPa4BpO+a8oEnQllQtJTFmSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5sbGjpQ8Kpu0bgtu0drPjXwLPLTiIPoANWcwaC/LYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:52"]},"IP":{"Case":"Some","Fields":["5.255.97.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTor"]},"Identity":{"Case":"Some","Fields":["9zIbKu1mrs8HyxGIDMlFPrN7OCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["If81Ksf3z4HrQC/5kBKubsIOYsbFKyU+hjc27/rBwbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:53"]},"IP":{"Case":"Some","Fields":["185.146.232.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NonPersonallyID"]},"Identity":{"Case":"Some","Fields":["9yVcI2FQCb7C+K8boZ5qsuU0Xnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FQYw7SnrVdzHWqGs/egB3lELVV+u/XmByZcKaq2YNA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:54"]},"IP":{"Case":"Some","Fields":["70.95.141.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["knowledgeforrussia"]},"Identity":{"Case":"Some","Fields":["9xT8ioa3bNv0W1ZzeiXmAdebXI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+glgijYR20GTsTaNMUKDrGK3mJ0vxGSK+2BqBKwvfkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:37"]},"IP":{"Case":"Some","Fields":["134.209.242.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["phoebe"]},"Identity":{"Case":"Some","Fields":["9xBpPD8IaBD+GZEgjRLBNK0T0kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xD+6q/C0EBjcXCYk2MRgzrGYzFZKEsaxo0j4S7FQay4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:31"]},"IP":{"Case":"Some","Fields":["83.79.15.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wedostor"]},"Identity":{"Case":"Some","Fields":["9wt8XNctdMf58tyE+p0g1RuhNhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0RvF+5LOxGGEwORF3rBvgyj5zAuOs0X+/EF9lmDfLAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:37"]},"IP":{"Case":"Some","Fields":["46.28.109.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:1::4205:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragomir"]},"Identity":{"Case":"Some","Fields":["9wJiRoI8YyKSHzq4dTfrsCCrAeU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esldu8uXfahoSP3PDFJU9hhL51xwZo7y/3yQveEDjD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:14"]},"IP":{"Case":"Some","Fields":["45.249.90.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["9wGVPsu2km8pkSaYB4hY7jwqMUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8YOB4uY5ZYm+sJYGWdD8CDO4UEZ+HBMxZEQ0Sg9RWxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:41"]},"IP":{"Case":"Some","Fields":["185.241.208.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["9vwFml0coFzbuCToVEaMP6sebwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gMEVgZQubp9PvA5UB2eZb6wVuXRSnul0TesxmboE8zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:27:48"]},"IP":{"Case":"Some","Fields":["23.128.248.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::212]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt35265"]},"Identity":{"Case":"Some","Fields":["9vn5QpEndgZvRNi9rOycXNo2hvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nOr1xwO8zr3+lJHhe/emUxBAsAYbviRNEP+FFdWZcS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:21"]},"IP":{"Case":"Some","Fields":["185.245.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv124"]},"Identity":{"Case":"Some","Fields":["9vWbZLJJTymJnoByvLDms+BwqRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpqb1llubfuHkG4V3Zx4etXqQrGEMVGR5ujwWGp40g8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:53"]},"IP":{"Case":"Some","Fields":["192.42.116.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5524]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tondro2"]},"Identity":{"Case":"Some","Fields":["9vTI2Yp0MP6pW+wel4b241KA+hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oVw2srT+SF/5miYDvEi1lMpfHFAP1U9NDuXnECK8YiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:28"]},"IP":{"Case":"Some","Fields":["84.16.229.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay22at8443"]},"Identity":{"Case":"Some","Fields":["9uz9MaRvUXTCVmDhbDxi55l0+d0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pd2zXN7QGpNm4lLkT9AQOpSNb/d3zXyxiN7x4Pqtjhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:44"]},"IP":{"Case":"Some","Fields":["140.78.100.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JPsi2"]},"Identity":{"Case":"Some","Fields":["9uxGkzzo1PrVzNqoscWjd2hfxSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEBCiKg+ooOy2zMZjTbBZEPBRtY/TINTl8mR9kkQDlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:02"]},"IP":{"Case":"Some","Fields":["37.200.99.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::1ba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["9uW/yL6lqfMy7wmzitaDKv8T900"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["itJ5aex0SUWs2SnxI9Ij0yc4ufb486v0v4meQnqiR70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:43"]},"IP":{"Case":"Some","Fields":["208.67.104.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dhitechnical"]},"Identity":{"Case":"Some","Fields":["9uJP2w0gjUApLtknT+t/r6UprCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zTsmxmQXBMSTMZ/v0gF+bG5m8iBuFQ0L/DW3jV0wsfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:17"]},"IP":{"Case":"Some","Fields":["50.250.2.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["interfesse1"]},"Identity":{"Case":"Some","Fields":["9tYAzxOzu+KpGgZT8eydAOfLOms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HS7BMalNGA+Ju4hgXYew2ohhkqNnkJJ+ycmDJC1pI9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:15"]},"IP":{"Case":"Some","Fields":["85.195.208.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:c603:b01::42]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["9tNKop/FUaXhcG0WS0SAnW3AkkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BO1vZmS5/guNaVvooj6RtnvgtyI80IHKZK7YLPR7Oy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:38"]},"IP":{"Case":"Some","Fields":["151.115.60.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tRooo"]},"Identity":{"Case":"Some","Fields":["9tMLWt4T+Pa9yQ6/FAdBAqeWKg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ltlGpvrn5nEatw1FHZbryfQRsuFXtQKz6KS8qb6mU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:13:23"]},"IP":{"Case":"Some","Fields":["87.121.52.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imfrank"]},"Identity":{"Case":"Some","Fields":["9s/rfjbdF39JfSTa0ev84nD+rhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gERyqYgDRCXkVaYSYyf/ScWSXrf5SopQDkb5sLWd4fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:44"]},"IP":{"Case":"Some","Fields":["69.207.41.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["9sqSXNzRsS9pOktux56pFNzcmAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4hEU9j0JsDg75WzPzqpWFeS2TRe9gBEH8UTzXmuC/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:38"]},"IP":{"Case":"Some","Fields":["185.220.101.45"]},"OnionRouterPort":{"Case":"Some","Fields":[10045]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::45]:10045"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartleby"]},"Identity":{"Case":"Some","Fields":["9qyJGSkzs3uJ9t8sTJvHb5iu45c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WcBE0FLksGGNvch1opJWwBlKWVWnF1kasVrIVHEKcvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:16"]},"IP":{"Case":"Some","Fields":["79.116.34.118"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prawksi"]},"Identity":{"Case":"Some","Fields":["9qNY3TZ7MoLW71gkydReGhnH6BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tnGAQLaNUONUj0wOlag6pulzsFnonw7c6VZH4l1HB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:55"]},"IP":{"Case":"Some","Fields":["192.160.102.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::8]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9pkFB4jYVIl5CEh+CLRKP8vXX9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WqqvrRzhNXHqmjLXVS3q0cQ8cAozg1fQUDcyt0rJFpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:53"]},"IP":{"Case":"Some","Fields":["195.133.192.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhShitARelay"]},"Identity":{"Case":"Some","Fields":["9pMfRlos8eXsROgrpS5IDvM4JM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EZuuL/2BBJXEuGQmhBFWweZg5ll2xCaccUJ6pUfAjBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:39"]},"IP":{"Case":"Some","Fields":["24.28.101.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pretzel"]},"Identity":{"Case":"Some","Fields":["9pELZRb6rHdj/2uKUF2cNj7I21Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDGnVEOuv+iRSs1NPG0gKcGTW8hY0WrHljs54/znVus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:56"]},"IP":{"Case":"Some","Fields":["93.174.93.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infiltrator"]},"Identity":{"Case":"Some","Fields":["9pDgKE16uqIjF7yHFwxnw2rpUKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MRAgTFxclu3jy8Mf4Wg/jfwsCxupnOKscS5VmzqZvfE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:22"]},"IP":{"Case":"Some","Fields":["82.165.206.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute16"]},"Identity":{"Case":"Some","Fields":["9op2Ui01b4m+woaImjgiJQVnvi4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/QdaOqUMShmtf/7HptZ8cw1mAELNoaFHxUPaxOUvF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:15"]},"IP":{"Case":"Some","Fields":["185.220.103.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poiuty"]},"Identity":{"Case":"Some","Fields":["9nQN6r/V9iYS+gJaUHnqcoRrH2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["khSaVQqZ26mzJ4aCLb9CqglGHtZs1GHe3wTODsMv2G0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:48"]},"IP":{"Case":"Some","Fields":["65.108.204.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:a093::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maikastorrelay"]},"Identity":{"Case":"Some","Fields":["9nIOSRpK/MrRrYpvkCK5AlPFcA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlL69RRd3wdDudsky3vI4kBU4kcaFIo8LUOFzWwRRVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:18"]},"IP":{"Case":"Some","Fields":["134.255.219.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9m26Kr2UHMuCphQ6+NHNPu8WIvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KeMnRzCsvEG/iQV6mOw0L7l3s1TSpk3is0lWTR7Vdj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:04"]},"IP":{"Case":"Some","Fields":["37.120.187.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anotherRelay"]},"Identity":{"Case":"Some","Fields":["9mkePrfKs8h2qqiF5oAbY9yZjDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0cGX/KRVHfkX7/iywRPoMyrjDAl8Fkedwqte3ChHQ9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:30"]},"IP":{"Case":"Some","Fields":["144.217.4.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ebTorRelay"]},"Identity":{"Case":"Some","Fields":["9meYt1f/zAKEHik3+PWabfsz7TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NoMjmdUR96C3XSkXc/lKyW8YL5Gz0oiTzGIieYGxw8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:53"]},"IP":{"Case":"Some","Fields":["178.238.236.41"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2034:1631::1]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex79"]},"Identity":{"Case":"Some","Fields":["9mTl5QtNIW5ZQNp+nPZT9fncVhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJ9aFyRAXSqKuyHOySG2v5DGlNOISxaKC+K1SwqpWog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:58"]},"IP":{"Case":"Some","Fields":["199.249.230.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::168]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saltedcrimson2o7"]},"Identity":{"Case":"Some","Fields":["9mETHDA+KlkxiZ27CSugNCMIHB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WoBikxg9n/6MSTtSvUDupb/oYcrMlhobGaqcCqEYzv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:52:18"]},"IP":{"Case":"Some","Fields":["124.170.17.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9l3M1dDn6UpIScN8pcF3zpwb7Vs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/WqHVBhKB0Of2dlplDrpiXAV94V+4IEQISRwTvB+QE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:59"]},"IP":{"Case":"Some","Fields":["163.43.195.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BuyXMR"]},"Identity":{"Case":"Some","Fields":["9lBQLpCRZyqZBUuzR27nM3aN0/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNuNliGwzw2l/GXS9iXls3HvFMiyhyGwQLfXxFzNnis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:13"]},"IP":{"Case":"Some","Fields":["70.187.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE72"]},"Identity":{"Case":"Some","Fields":["9iR+TORSMaC0Q3f63IVJ6C5P314"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sCALJvVDxFunMbZFQN/JSSv9HeC6Z4dXorW7iAxoIGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:18"]},"IP":{"Case":"Some","Fields":["37.221.67.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:102]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giganonNL"]},"Identity":{"Case":"Some","Fields":["9iGr24+4b7es0nretwf5Oo4yAlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4SkzeF8wTC2lacP2QmKurFaKxA/MxSwbMGPjKVqatxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:41"]},"IP":{"Case":"Some","Fields":["77.166.80.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lena"]},"Identity":{"Case":"Some","Fields":["9hyLFEw9dp/YDjnrWJyn+OYeCMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yOur439IGGsrxCNIm0wssRliWrd5UzaF8Rb9xJXL8Fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:50"]},"IP":{"Case":"Some","Fields":["185.163.46.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2db8:13::91]:9054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oromis"]},"Identity":{"Case":"Some","Fields":["9gQTHcxDA+UduHagF6PcloT9Yms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/X0mt/WsXFe6llN32eyDsVWGABCVX6JR/lbleFWeBOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:44"]},"IP":{"Case":"Some","Fields":["217.112.131.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis72"]},"Identity":{"Case":"Some","Fields":["9f1+9DB/jFw5gUeHfzKp+fceIJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q3TAaIvO/6w0zerMM6Vq6JmKBsL1vCs7NZ/OqrSYL7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:06"]},"IP":{"Case":"Some","Fields":["37.221.65.168"]},"OnionRouterPort":{"Case":"Some","Fields":[8360]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::3aed:101]:8360"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nap"]},"Identity":{"Case":"Some","Fields":["9fhJeznBAivKeGASOQ4f2lWrc+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Suann9WX/IWsD83vJTv5fo1/DKrdD2mon7rschYpT9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:39"]},"IP":{"Case":"Some","Fields":["212.227.73.217"]},"OnionRouterPort":{"Case":"Some","Fields":[11143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6bc::1]:11143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trustn00ne"]},"Identity":{"Case":"Some","Fields":["9eG5a/5wD/i/Cd5aAhgeu0jiGPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9Q2L6py2FNaskvRzDKGqMMA7nedv4QmFzpDvG2wE3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:22"]},"IP":{"Case":"Some","Fields":["84.234.250.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summ"]},"Identity":{"Case":"Some","Fields":["9cdHsdd3tP0zQgOCADOCWZLGTGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2N08rKjOXpf3z5J9XZVh7BUnbTJgC08koPVV672cDiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:43"]},"IP":{"Case":"Some","Fields":["103.77.4.182"]},"OnionRouterPort":{"Case":"Some","Fields":[27015]},"DirectoryPort":{"Case":"Some","Fields":[27960]},"Address":{"Case":"Some","Fields":["[2a06:1280:101b::2]:27015"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ansarelay"]},"Identity":{"Case":"Some","Fields":["9cLrV4uYQgad5WDwD4CLa9NVTio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0zox7/MVNTdb5I9hcTinmY8N7/fYsDKUM9kRJQwQb4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:20"]},"IP":{"Case":"Some","Fields":["62.78.187.78"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golTorNode1"]},"Identity":{"Case":"Some","Fields":["9b8sg16G3ykdx9ht0eFUL0iH46c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V0jBi+Dw3gMXCMM6IruZ3Al8wtMJFNxrewI+n731gkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:29"]},"IP":{"Case":"Some","Fields":["188.190.109.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myContribution"]},"Identity":{"Case":"Some","Fields":["9bmVKmcq8qK2dm2Ap7vSmZAAl1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fe7xCtMi5pTDiZNh8WQ2p89TGcbuwY6bE6UF1AP4Hbw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:04"]},"IP":{"Case":"Some","Fields":["141.144.249.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bistrv1"]},"Identity":{"Case":"Some","Fields":["9bWP7kRXPDv9fRdtkYultAV1Gdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4pGvwusucZE1ahhOIHdshKzcrkidtYs1oyuiqPutgMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:39"]},"IP":{"Case":"Some","Fields":["212.47.227.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a4:933::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marinsThighs"]},"Identity":{"Case":"Some","Fields":["9adl1ZHcBSAeyqLBjAlbHRcIU8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZFKQu+HE3l2aNOa1vZ37fHvHEdy1TGfbTi6cPhVmvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:51"]},"IP":{"Case":"Some","Fields":["24.4.166.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torbuntu"]},"Identity":{"Case":"Some","Fields":["9aHQPAGfntTpdqC6x6R21+r3tT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uv4KEPTUWrkQXwawE4ML8uchZt0IkAkjhhhkBelT+0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:17"]},"IP":{"Case":"Some","Fields":["98.63.230.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:246:c200:22d2::8a7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WireCatLLC225"]},"Identity":{"Case":"Some","Fields":["9Zao+RSv4vB3Oq977iyoJmN7RwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eB3s6dCHeSnplAfsaCuqEbET9UHj44DDQbt0UDyGZm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:20"]},"IP":{"Case":"Some","Fields":["45.45.225.1"]},"OnionRouterPort":{"Case":"Some","Fields":[45555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc52:30f::1]:45555"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9ZWaHxFUgH0+Uah7zcpuCWNTV50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VK1B0IBadv1V9s7eceQ4PLwnnRAf45NGojAwSfCxBqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:03"]},"IP":{"Case":"Some","Fields":["5.2.54.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[9480]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddgserut"]},"Identity":{"Case":"Some","Fields":["9ZHbDtj63aY43rWZ2LCTCi4SL3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smiaE4zeIRprnslFA3iYaeYGfWk5V9bjUZwvpDGccf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:01"]},"IP":{"Case":"Some","Fields":["89.36.218.127"]},"OnionRouterPort":{"Case":"Some","Fields":[18364]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:a140:10:e7f::1]:28196"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["9WEqdUVYANzUJ8j9kZ71zOHVGVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V7lSXlsnAAYjsOjr13KimQElNizFcefA8sH05KfDEe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:57"]},"IP":{"Case":"Some","Fields":["51.81.93.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MeowRelay2718l2137"]},"Identity":{"Case":"Some","Fields":["9VoP/Zfxcq/niEaZ2hvwjA6UNU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i4dztJd54Unpzc263NxNWozZMgP5GrTs+HjgH6dh7fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["146.59.3.106"]},"OnionRouterPort":{"Case":"Some","Fields":[2718]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::51ae]:2718"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9VR3JBgobBPxnAuKT23Ao4XqC8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHvt0sFuyOWaRw+kox2VAZV+SJe5ymrQFf8XoPLTGWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:10"]},"IP":{"Case":"Some","Fields":["5.45.98.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:45:457:d2ff:fec3:e823]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot2"]},"Identity":{"Case":"Some","Fields":["9TGwuRvBWmjBtk6tj/eu4RHgYiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXMpgWYSsE6ywVig9C9hII+BBgNFhC6/lhZAg52gHJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:43"]},"IP":{"Case":"Some","Fields":["139.99.134.168"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1blu2DEicebeer74"]},"Identity":{"Case":"Some","Fields":["9TFplZIj9d9zpwX+cmHxKdumZUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtdJB4oYR1yFVhtM63qB5Lxn4hoJ6vKFmboGgfplelA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:27"]},"IP":{"Case":"Some","Fields":["178.254.44.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elhackernet"]},"Identity":{"Case":"Some","Fields":["9SYR2n4e4UNMi0U2jQhyxDegKVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M6GmfMUOEWI9fkTOCu5b+vTI5OKOYSkvMfoI2IrfOqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:20"]},"IP":{"Case":"Some","Fields":["91.126.217.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM10"]},"Identity":{"Case":"Some","Fields":["9SBNmKs4lLgHoMJBImf0tpukkcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2KD2I1Fo4nM2kmNpwiDrawu5SJ9JJVa6Juz+1JJLkwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:35"]},"IP":{"Case":"Some","Fields":["185.239.222.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["9Re6nyQTYTxEds4rgsOgPGW2tnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IvbCcfGlMA/AvrEPX/K9Jw8e1x/gpA7mLS/DwUtFEcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:29"]},"IP":{"Case":"Some","Fields":["23.128.248.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9RZc8mllonyQtisBYUHGDj5t2fU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xJbCamiKRLY0Z9V3dNUtEtepOi1MA24wp+cxgC0th8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:38"]},"IP":{"Case":"Some","Fields":["79.246.108.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["momo"]},"Identity":{"Case":"Some","Fields":["9RK0oEOFnXvt4ojY7iEWPXYJdPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVsQNZXlfLwokiJIEBI8X8SjNokT6mmJ51DIZ70pvek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:16"]},"IP":{"Case":"Some","Fields":["94.130.189.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob02"]},"Identity":{"Case":"Some","Fields":["9QzwKg5qnZsl9+siD8Jve9G3SZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MC1COBv9OyGFsCLBoHc3awUrp5Ck7JjQLO6EY7G9rRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:35"]},"IP":{"Case":"Some","Fields":["46.38.242.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:7:64d:547b:27ff:fe79:b9e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumpChugsDick"]},"Identity":{"Case":"Some","Fields":["9QqPFsVVrf8+WCew3QNc6G9xoOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/e+7X+4pXoL1uJXpVB3nMGMlw7TRCRhftt11cxhDCSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:05"]},"IP":{"Case":"Some","Fields":["65.108.46.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:521d::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypervistor"]},"Identity":{"Case":"Some","Fields":["9QdV1QGMI/bNEV8jyVzLLci2CLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["spZpvC19J3MJH628GzqCKrQniFxxv7otxAfw2sH0Dsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:50"]},"IP":{"Case":"Some","Fields":["95.216.19.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:134f::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KingJasperTheGreat"]},"Identity":{"Case":"Some","Fields":["9QB0jIUvo6hTn8f4ZVIaL1rS+C0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ApaBTsLUaCxx50rSWGbIEJNiFaxuT0LVEZjY7vcwPVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:00"]},"IP":{"Case":"Some","Fields":["84.159.57.70"]},"OnionRouterPort":{"Case":"Some","Fields":[61461]},"DirectoryPort":{"Case":"Some","Fields":[61462]},"Address":{"Case":"Some","Fields":["[2003:c0:bf1d:c500:b2c6:8ee0:75f1:24f1]:61461"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DidItWork"]},"Identity":{"Case":"Some","Fields":["9Pw2fsxbpfAXelU63eESAUhKHaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SA4ciakIduqEWoD3xfxpnuhl5hqqFxNli54t0m/YsK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:48"]},"IP":{"Case":"Some","Fields":["129.151.198.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9PuagDCK5xyoBX9BWN1rPI7jdfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtqmJDAIfPnDnaep3GIvfYBMRbNPh72AD7G6MKbexPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:09"]},"IP":{"Case":"Some","Fields":["199.15.250.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:7:b74::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["puertasecreta"]},"Identity":{"Case":"Some","Fields":["9PYFqiHEYzzLW427wc7uXFkMbc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V4nBgyFAoOZ52r3ceiheSw7bKtJXNsiqvshWfjcr1AM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:50"]},"IP":{"Case":"Some","Fields":["46.231.93.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rodebardwaterski"]},"Identity":{"Case":"Some","Fields":["9O1Vp6FLZI+1TJAhZfgB5JN7Vpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lF3Sw8V+IdlcOkPdvTUL5bIbIVJIfr+mi1Y7Xpz5gZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:00"]},"IP":{"Case":"Some","Fields":["143.110.156.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::fa:1000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IQOnion"]},"Identity":{"Case":"Some","Fields":["9Nbpir4GWA+KNTRwZSA33YZFtHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CSTDydSYe/QO3hNGWBLEt0+vPBAKCf2kLytBkzxlCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:18"]},"IP":{"Case":"Some","Fields":["71.42.125.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XtorX"]},"Identity":{"Case":"Some","Fields":["9KTXjxbpoDU61bvvRjLHAi4g+yA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Smrftut0gGwqGQfviAcudLijIh8k/ni7QflE0OUqHg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:24"]},"IP":{"Case":"Some","Fields":["51.75.171.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::678]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leafspring"]},"Identity":{"Case":"Some","Fields":["9KS5adJuZHXSqph5BPuFYbzc988"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FENY/XZIdTWNQnYwunIZ53JxPTj8Pnk/HZ/dY0+CobU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:19"]},"IP":{"Case":"Some","Fields":["136.38.0.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9528]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Islay"]},"Identity":{"Case":"Some","Fields":["9Ic7PsMyW4HcNsfjitOl7RKy8zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRfrIUnKZh8XhJZ2YhID09Olyz9OJT9TtdfrOMfffoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:56"]},"IP":{"Case":"Some","Fields":["37.187.23.232"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:17e8::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elenagb"]},"Identity":{"Case":"Some","Fields":["9HsTv85O9Ize9sTXx6mSCOu5crU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrNb8ZWaRqWBIGg/Vt+muSa5Typqs/d0iS4DevfnT0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:59"]},"IP":{"Case":"Some","Fields":["185.233.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9HZ181Lng8TQ3BUFbrkdyk9DwL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eaV7Seaw5ifzJlh/ZNkNCB86pxuWucwNPerUeq4iaq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:06"]},"IP":{"Case":"Some","Fields":["185.244.195.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:747:4804:22ff:fe7a:e606]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x1ea7deadbeef"]},"Identity":{"Case":"Some","Fields":["9HXlmH5EorexQ6K+4/gSju/X5aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/1v1dYOMpVu6Hhk4Mq6Kd8+Fxz1zHstaRIgIW5HP5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:32"]},"IP":{"Case":"Some","Fields":["188.68.45.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:47a:de1:ea7:dead:beef]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacymiddle"]},"Identity":{"Case":"Some","Fields":["9HHLAAB5ctwtx0jdV4XABaTqrXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8KyOa7A4rWdMLhtHwlzhh22sctnrelpxHADu7/aQis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:30"]},"IP":{"Case":"Some","Fields":["89.58.12.249"]},"OnionRouterPort":{"Case":"Some","Fields":[500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:60:cb7:3450:e2ff:fe8c:ae3f]:500"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["origan"]},"Identity":{"Case":"Some","Fields":["9GhU7azNFoKP6q/Gxu3cB93wRBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsAZwZYxknRL/ku5a1QR65s9w2GDY35z+CtFqoExOvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:28"]},"IP":{"Case":"Some","Fields":["178.32.222.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e17f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OpenWeb4All"]},"Identity":{"Case":"Some","Fields":["9EUYUx1n9+yXZFqT1bXhF7WHxuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8F21R2UoxGlQO/+Fqsz/HdoA+b6bvu9E0eMW8OQwYRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:04"]},"IP":{"Case":"Some","Fields":["107.189.6.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed17::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheCheapBigfoot"]},"Identity":{"Case":"Some","Fields":["9EP+12Wx8+/0twnCxQns/c/1oo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hlwCHr8uO+daSLUMVwL7FvktZbzFxuGQxrpzxqQN8ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:36"]},"IP":{"Case":"Some","Fields":["178.128.255.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EvilMoe"]},"Identity":{"Case":"Some","Fields":["9CYydc9UpoNu571SexMog2pvBuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CHe4Aszy+Gosz24quh2XrAz0VtMAnUBeBnbSl27i/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:20"]},"IP":{"Case":"Some","Fields":["37.187.102.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:266c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TaurNuFuin"]},"Identity":{"Case":"Some","Fields":["9CKTdDsLxKM8gKVCpFHubGSyfek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oEEQIlOZKH11sg3kn4XUf7IafGGdrVuOBA8QIz2L0es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:50"]},"IP":{"Case":"Some","Fields":["178.26.174.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubaura"]},"Identity":{"Case":"Some","Fields":["9Bz/GJ2oxMACmsyuWjmTBlIYyOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ZiKHsCDfo0Cwb/SfJKqN7VVbuuK/UINQgM0qasjv/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:35"]},"IP":{"Case":"Some","Fields":["23.81.44.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt85328"]},"Identity":{"Case":"Some","Fields":["9AAWxaLXRg2lzL+KI0YTXWu8PdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bNbopgugc4CC+sbJ+feboUz44ofX/YckTteWrXFiHQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:15"]},"IP":{"Case":"Some","Fields":["185.245.60.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PubliusAnonymous"]},"Identity":{"Case":"Some","Fields":["8/nMlV98WZOPJEWR22uymct0Vac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nUCbUZAYvul2nhMyCRTyakNazA2M+EvIQfbrO1eiayg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:29"]},"IP":{"Case":"Some","Fields":["77.74.96.43"]},"OnionRouterPort":{"Case":"Some","Fields":[1917]},"DirectoryPort":{"Case":"Some","Fields":[1953]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.12"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Merlin"]},"Identity":{"Case":"Some","Fields":["8/P0kAuHz0prSn+UAlAvxFe3sfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sXasAnaavShLN1UX/kwl+BiUt9vwKRfuck34Uq4NmT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:51"]},"IP":{"Case":"Some","Fields":["92.35.4.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ganymede"]},"Identity":{"Case":"Some","Fields":["8/D3F1cZ4D7QX2oEDx5pF2CanhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xgFVheVeD5vT28ZVzyzKr2PtA6aEQYAqDzTONFBr56M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:29"]},"IP":{"Case":"Some","Fields":["93.208.141.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pkj2"]},"Identity":{"Case":"Some","Fields":["8+1WjMWvfJELo79gl12EQEEMep0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C6Fnyk8mFDxQU2ckhdX4TZN+MOnAASbplk5f3fcT2Lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:18"]},"IP":{"Case":"Some","Fields":["185.82.127.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["teutates"]},"Identity":{"Case":"Some","Fields":["8+seH/RaPN5OAvvU6AXU/DekrVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w/7O+Eq2L5MvALelqDrgTyvaB5suceESAGVJQCL2F7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:12"]},"IP":{"Case":"Some","Fields":["37.120.190.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["8+bwFnHAh60xi7pH/NCLZdGkRg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YgAHLh21Tk+R7uC8ogb025Srz+pz0tk0i/9thGsZMrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:25"]},"IP":{"Case":"Some","Fields":["185.241.208.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay4"]},"Identity":{"Case":"Some","Fields":["89er9Qz1EvyTMjcWlT9cnsXbK5U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nm51Y23b66NPwR7e1leT3nxvo5iOMtjfTSmE6GOsUXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:48"]},"IP":{"Case":"Some","Fields":["89.58.5.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:dc0:94bb:2eff:fe23:c95b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams07"]},"Identity":{"Case":"Some","Fields":["89UTNtWowVSJyQNdKyKTKD0FF1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfK46u3u+o3aK2C3lWLqXZan1WB5ZZgTWvozd6/Xpyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:28"]},"IP":{"Case":"Some","Fields":["45.151.167.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::d]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchieSoftbrow"]},"Identity":{"Case":"Some","Fields":["88awEEU5JFmZv9GUlZvxMbPkFM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXFR/rRYXBKwkRhFRKkgxwAlQQC/0dnXBacbOJib/MY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:55"]},"IP":{"Case":"Some","Fields":["188.166.31.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev4b"]},"Identity":{"Case":"Some","Fields":["87LMjCqzMRUOCW3R24gQ5KQ/OZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1FBh9rBR6fvFMhYrxiBCZEsaLSO/dst/a27Ff2RCjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:23"]},"IP":{"Case":"Some","Fields":["87.118.116.103"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:4134:101:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deponia"]},"Identity":{"Case":"Some","Fields":["86t6xnQEjNVq8ydap4WZZ7sQ4AE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bo6NLDr2Wl/52WIGGdZarXpJiSU4NXm02WjkQa/0KI8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:58"]},"IP":{"Case":"Some","Fields":["185.248.85.30"]},"OnionRouterPort":{"Case":"Some","Fields":[57523]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast2"]},"Identity":{"Case":"Some","Fields":["86lYj7RfdtpN5bNQxCXBMPb/qYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBpP9skO1THV4qzTN8MxRN5xO7FjJZsvHUYigbI0nuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:38"]},"IP":{"Case":"Some","Fields":["89.147.108.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fumed"]},"Identity":{"Case":"Some","Fields":["86ZMMsHjs/1sQezOEQxh5Gy3RiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N1bcvSGg3A3vNdAsK8pV8BvHJVqz4dcYpbRru/ugXkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:44"]},"IP":{"Case":"Some","Fields":["124.109.1.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["53labsfmt"]},"Identity":{"Case":"Some","Fields":["86QlD2PyU7ZW942uccdd1gBjjpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9eTxZ3STDecaoUgAHIIOUsSxU1+ZSVeUnSwzKR8Q7ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:25"]},"IP":{"Case":"Some","Fields":["103.196.37.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1:dea::111]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finite9"]},"Identity":{"Case":"Some","Fields":["86ExAvHbplKFpkyfo0ZvcqWqBT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6I5E88/RBxiFkOKWnnLSvs/XiM5GivLh+NfC9Cj8YU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:45"]},"IP":{"Case":"Some","Fields":["83.233.125.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccvpn8"]},"Identity":{"Case":"Some","Fields":["859XL9b3t7July8unHuC6puq1Vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bX+a9dBb12cpMHDag7GWeZBbyWC7HuWA+mMd+sy+eJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["107.152.32.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:0:35::8a9a:9dc5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Dingle"]},"Identity":{"Case":"Some","Fields":["85sr4PC53P09Q6qhLWvhaxSxOnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RnUMEBbQFik6foDXcbOuL7+CyJHrMVse2NvWF/8Nuyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:08"]},"IP":{"Case":"Some","Fields":["23.111.179.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LostArkLux1"]},"Identity":{"Case":"Some","Fields":["85Nvl8FO/P0YFU30RDuR/t0HH0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTPYePG0DyITmmQDs9dJWkBtNDTmxykPvfPpLpeuAKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:40"]},"IP":{"Case":"Some","Fields":["92.38.163.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::1c4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot64"]},"Identity":{"Case":"Some","Fields":["84+1WozKagDN0CSl6iz+yzikjhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F2QhMyf0zdgkGcEWDJVJjNhSiAjGadbew6KEk8va9pQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:03"]},"IP":{"Case":"Some","Fields":["193.108.118.225"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:d00f]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashEagle"]},"Identity":{"Case":"Some","Fields":["84ieLGimc4SMqQlPb0o2U9dpIQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7WlLvK7UFYkzZeJ8qBeUA6enaeXRozt6sac8JInjRpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:28:18"]},"IP":{"Case":"Some","Fields":["46.29.163.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700::5:22]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt81678"]},"Identity":{"Case":"Some","Fields":["84bSP8WMzuaEbnBDg8hv/oRPRNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NY3q3io5CGnJned9XYTfoDMnxh88XtFUcSjKheZ3Hpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:15"]},"IP":{"Case":"Some","Fields":["185.245.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bishop"]},"Identity":{"Case":"Some","Fields":["83mCaQs1i0+DPWl5F+CcO+ekrU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b7S/aZvPGtXd6cFGy/hs2EFY95jmeqLGq00bDN3jSNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:13"]},"IP":{"Case":"Some","Fields":["107.204.177.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["electrickavenue"]},"Identity":{"Case":"Some","Fields":["83BvJnD9IV2GPmh6qJAN2m8scLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0mo+iqXcmdJNkXW9dpCS0Ptf4Mx5DVyj9SYoRm20aiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:31"]},"IP":{"Case":"Some","Fields":["94.100.6.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gweicz1"]},"Identity":{"Case":"Some","Fields":["8258h0ZkkHfaJUOX9yGFGrvUtSg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5UNm5zCowJ4qrB+HWT72cBXrIAv4nnRsQR8R0xwPxNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:37"]},"IP":{"Case":"Some","Fields":["146.70.129.124"]},"OnionRouterPort":{"Case":"Some","Fields":[56905]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iter"]},"Identity":{"Case":"Some","Fields":["82iUSDCbRqm3pmEsVMIFuvCXHjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jBu6j/hrgD2JlvWnduFPgRrYlrtgPsEoIEMRgWi6NY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:41"]},"IP":{"Case":"Some","Fields":["66.150.130.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:806:3::94d8:87bd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedSnowden"]},"Identity":{"Case":"Some","Fields":["807mcxIlGIc+cXwSjjWjibcseDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DMSGhsAK3eIwOGitcScBTbBJdXxgY9nptQSqm4wjUSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:54"]},"IP":{"Case":"Some","Fields":["23.154.177.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kaeferbohne"]},"Identity":{"Case":"Some","Fields":["805oGvgibevJE1pI9h3vn2iWa6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKi7z4ly8rDmxMnCW+GXY4fsl/MlQkgGReWn9AzDuwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:44"]},"IP":{"Case":"Some","Fields":["109.70.100.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GreatCamas"]},"Identity":{"Case":"Some","Fields":["80sSV9sWjUBrV/9x+KOHauAZDRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["84soY44LsCiKNYaL0A2/ICOFgzz8truJqIsctIggpy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:54"]},"IP":{"Case":"Some","Fields":["51.81.236.225"]},"OnionRouterPort":{"Case":"Some","Fields":[56395]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SemiPvt"]},"Identity":{"Case":"Some","Fields":["80guBGteYR/fJ5r1m3CoioBNFHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DsL9hOHrD/W7DO92M9HjUt5cqrl9+5BNMpiwfwkueN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:14"]},"IP":{"Case":"Some","Fields":["51.77.39.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["8z16cvB0kKjYyYhBMMXuzNie76g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5R/pAzg2Je1PWxBe7WjacB9WYuK2xoNqietIc7kXhh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:28"]},"IP":{"Case":"Some","Fields":["185.177.206.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::142]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman11"]},"Identity":{"Case":"Some","Fields":["8zcCGrqfB/x9r4WcB9dvovf0ye4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xCxmmvKJsHUL1DEOqx8DjcSbeAsa5maZz2Yk5DqoKTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:20"]},"IP":{"Case":"Some","Fields":["172.88.196.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9004]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["8xRYDqIss9yxNdZOkhCL+4/SCa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1a0qFfO8+TRPPqYEo8N03pyme2EeqnGN0NQ8F5S8bBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:31"]},"IP":{"Case":"Some","Fields":["199.195.253.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:1362::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelayByBT"]},"Identity":{"Case":"Some","Fields":["8waQuiFfOd9up3Qk3xy2tbsP23A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tBpgywv1GidY735fLTXgzoHzSIuLP8HOKhkHdJHxhjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:51"]},"IP":{"Case":"Some","Fields":["125.229.28.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber52"]},"Identity":{"Case":"Some","Fields":["8wRPsqjOc3nS+6m/1iTv4YD0HCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W9ljOieHbb5AOgbgSwI63HgauhFMlQCkTQOPjg/876o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:08"]},"IP":{"Case":"Some","Fields":["185.220.101.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::26]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashDeer"]},"Identity":{"Case":"Some","Fields":["8wMX6f0MOlYFiSjWRUBnK1mQLR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NxLvgcIOy0MJHLr7WfedyS50rqVebtA7CZti5zTT7x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:20"]},"IP":{"Case":"Some","Fields":["193.25.100.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:12a0:3:24a9:8838:3642:9244]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["runninglizard"]},"Identity":{"Case":"Some","Fields":["8u1QMrUgIee627uC5llPGocv/Qk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYMdXKfz9JonZCno+0v3YXLyM4Oqeeeog/HVSDwBq18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:44"]},"IP":{"Case":"Some","Fields":["89.191.217.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krombianschniedschn"]},"Identity":{"Case":"Some","Fields":["8uYN4POb6oJrUOthmgFK3Olhk1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdO1WyridoqV5ctxEakkM7amPMymaXWEVP0LmwpnDjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:39"]},"IP":{"Case":"Some","Fields":["116.203.117.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:d8fc::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra64"]},"Identity":{"Case":"Some","Fields":["8tyt+yhdutchjg76BZhxXbqowY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ImfbmqLSuyUDmv4cbrhVQpD9m3/T3g9DQyBlW1ukuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:23"]},"IP":{"Case":"Some","Fields":["104.244.72.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JamMasterJay"]},"Identity":{"Case":"Some","Fields":["8tevVhu84yKhZC8MI998DLIr/Gw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z7FZLd5Z6tKW0VNFmDJh549mQpZ4dPp76zLD3nJwBTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:02"]},"IP":{"Case":"Some","Fields":["185.107.195.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DoubleX"]},"Identity":{"Case":"Some","Fields":["8rA+W8gatOGLrYYmZ2xtEp+lwxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uqJ+44JRSUUeywRuZQRSccF+taPgJx6jJjbuLKL4W9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:43"]},"IP":{"Case":"Some","Fields":["103.97.125.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inconnu4"]},"Identity":{"Case":"Some","Fields":["8qsOYu9tYyukerG6czbeJAA/bg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NNTIMUMFXtwtqjc2307Q9e9vLUcgoRdgMF1ztgxueZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:42"]},"IP":{"Case":"Some","Fields":["192.9.235.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor3"]},"Identity":{"Case":"Some","Fields":["8psPGpG1XMt/bNyiodGMY1cfdms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xWaxRYF2hj5XEbFAkolYrY4N+dDZx48frlHuPK5kq7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:25"]},"IP":{"Case":"Some","Fields":["51.15.44.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:1324::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8pVle7e7dPuIafqOeQNGG1DJi50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WaJH6E4Dhod4a85XAD2uOJ0KLIf6nEd5x1Dxtl6s6yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:35"]},"IP":{"Case":"Some","Fields":["185.207.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gork"]},"Identity":{"Case":"Some","Fields":["8omZgeOmAaey3cfd4CwkgGlwTZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LyQaoMr5AlEE7fh5tgjvOksQNLAHPrSQY+N01bsllHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:34"]},"IP":{"Case":"Some","Fields":["82.118.242.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra84"]},"Identity":{"Case":"Some","Fields":["8mV/ahe+YI/ZT1ZbxFZIMT1he2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gri5bhFPeH6A4QY7yVyTcrChTX8nrPFdaGETOBVHGo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:40"]},"IP":{"Case":"Some","Fields":["194.32.107.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["meatyRelay"]},"Identity":{"Case":"Some","Fields":["8mCZNhazGJeskLWPkxYrhetu6Cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h0ZU3Wpr2ZFePw+OUuSi8Y082xmQdCz5wVzxx98Ek6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:54"]},"IP":{"Case":"Some","Fields":["162.19.164.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["8lxhXCL79YQCWHtSWbWmgerjoUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FEXgWTtLo8jFN29Y/1EH4xriW7cS473GTM6ZTf1vvuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:42"]},"IP":{"Case":"Some","Fields":["198.244.207.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:b29:116e::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["staysafeandgoodluck"]},"Identity":{"Case":"Some","Fields":["8laaETmqsie7boMTonEjh/XmzSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EOfh2j5WdPGSZPDfh2qrskVkYARAKLcD8TqSew6twJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:08"]},"IP":{"Case":"Some","Fields":["185.181.61.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:181:61:0:23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktor2"]},"Identity":{"Case":"Some","Fields":["8lJORglPCM1GMayw+V1DT0P+JzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YOVaSvVlmetN4/2b9HQ6XHi4YAzwZgaHbLAj324jXZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:58"]},"IP":{"Case":"Some","Fields":["5.161.84.59"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:333b::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueOctopus000"]},"Identity":{"Case":"Some","Fields":["8kEzDxava9kCJsyRMNqOILWKrDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZ4yZ6tC5ONlEoERuaHVbYWm80+7C9dGwN1BrjAte7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:23"]},"IP":{"Case":"Some","Fields":["68.183.184.174"]},"OnionRouterPort":{"Case":"Some","Fields":[60000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::633:e002]:60000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stNet"]},"Identity":{"Case":"Some","Fields":["8j8C8oHXrEqFQH+iL4CDk4fNe9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92SfuZf30lRLHt57RDe4SR0CKUDrU1eoNBDz01YrhQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:39"]},"IP":{"Case":"Some","Fields":["194.104.148.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1c4:dada:bad::704]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeeJin"]},"Identity":{"Case":"Some","Fields":["8h5KctqPLxu3dxVUOVpqbQsbdM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6IO2fDc3ZVQSWSPIuhZsI4BuDpKCBuunEPTSPxowEls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:26"]},"IP":{"Case":"Some","Fields":["146.56.154.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN23"]},"Identity":{"Case":"Some","Fields":["8h3px94xYB2XFngeF+JDgIh4g9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qEBG3G7w1o9CVhYdVYMq5oYwNOcP6fHN0OiluCgxxC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:27"]},"IP":{"Case":"Some","Fields":["199.249.230.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64c]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ReleRapido"]},"Identity":{"Case":"Some","Fields":["8hfOg2vOPgbkcxVnIQ749hAdkpw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["giL7yWEezrMNbknFmb/N2VscZi8fu7x2C+W+hXyLuW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:09"]},"IP":{"Case":"Some","Fields":["5.255.99.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:d11a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondemogorgon"]},"Identity":{"Case":"Some","Fields":["8hdg5j/iu0Vim7FPzbD9Z3SF2vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V0uv1mPFkLcFMWzwE3cQ4mO9WJZmveIYuZXcNGLFVrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:53"]},"IP":{"Case":"Some","Fields":["185.220.100.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:10::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0140"]},"Identity":{"Case":"Some","Fields":["8hGnAxoU+w2hPUZ/bBuY/cPypVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xz9SNFOWQbORey8eu8OUWhDBfWl6xKIaaAJnLZzEq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:27"]},"IP":{"Case":"Some","Fields":["185.220.101.140"]},"OnionRouterPort":{"Case":"Some","Fields":[10140]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::140]:10140"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Komodotto"]},"Identity":{"Case":"Some","Fields":["8gw0ZxF0SmOa62nmrslB+HbIHbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gSHpgd98uQKaf/Vuo3X+DrnusxhaN4uaBe1x9fo+WAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:23"]},"IP":{"Case":"Some","Fields":["185.248.101.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gabelmoo"]},"Identity":{"Case":"Some","Fields":["8gREE9rC4C49a89HNaGbyh3pcoE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rsIPl2l4PWADCEzsbkURv65jp4s6ZZyZRyJGbFc1oL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:13"]},"IP":{"Case":"Some","Fields":["131.188.40.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:638:a000:4140::ffff:189]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heytea"]},"Identity":{"Case":"Some","Fields":["8f5xk6seQq6WVfPgNsJll0NSETk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iN+JeSSTD4h7e1Z5AtBb/pToq99aIdSYRv6q0oPRAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:32"]},"IP":{"Case":"Some","Fields":["45.77.67.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themis"]},"Identity":{"Case":"Some","Fields":["8eZnagVRtNiCYlNvqrSIuGGqyho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46eEWQqjwcP9spXZMWOnF35s3JZEnDftQiiopNixqQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:38"]},"IP":{"Case":"Some","Fields":["46.38.253.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1:47e::443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["8dSWZYZFTfRGT9biLyrsLcbioN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xW/JJPd9Mvq1g51OYdp7AgaTMWDvDBx3Dj+xQcOwVBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:22"]},"IP":{"Case":"Some","Fields":["178.79.163.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe62:716a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["csUniHB"]},"Identity":{"Case":"Some","Fields":["8c2HDXqPo2TkWaunCxc31AsLS7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gOG463P+pWGQ6apAHiOf934ORZ0IMCFViDk3WoOezUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:36"]},"IP":{"Case":"Some","Fields":["134.102.200.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:638:708:30c8::65]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortoke"]},"Identity":{"Case":"Some","Fields":["8ciQGlafZ2OHSNe+l5aVQbPsxZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glBk77ojj4333xiKZ0BcpXLb9bU3eBSsb82rHWu0ZHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:28"]},"IP":{"Case":"Some","Fields":["188.40.41.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoBoDy"]},"Identity":{"Case":"Some","Fields":["8cOwsHqsmYT+LsAY2eIVWXhZrGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7vqJxtHYc7Dzrj9ieUXJDCdse0x1Tc9RmDNTLwCHyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:54"]},"IP":{"Case":"Some","Fields":["87.251.64.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["8btvOOdo7CNqFr1nfAEgHiGCFs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m9+0CEoTJqYomEwK6nVaSkuyJvr/lLx3IwrFn1RbE2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:25"]},"IP":{"Case":"Some","Fields":["179.126.26.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bbkfry"]},"Identity":{"Case":"Some","Fields":["8agAdlZkyn2YOJfRM8gllFwoh0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34JnY008xmVZjYgmaDXEIIFqHSOS6/VCdsAq6D9cUGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:42"]},"IP":{"Case":"Some","Fields":["159.69.156.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:67f3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheAncients"]},"Identity":{"Case":"Some","Fields":["8aFY4C6QMP/QFvyvQtKE3pwx06M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlYqQH29UAVHnc8Q2fKcBtJBS7anVnWpEL5TUiBgumY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:32"]},"IP":{"Case":"Some","Fields":["54.36.173.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:602:caf::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["8Z2YQZyH42oLMHuFVZI43EbFYxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gl37flE8g3enuPXykibfe6DNZrdqcu8FlCpaKV8u9l8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:17"]},"IP":{"Case":"Some","Fields":["23.128.248.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["usNjBobVps4806"]},"Identity":{"Case":"Some","Fields":["8ZK9Ue8snKVTZG8oZo0op68cqw0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aVJE4+hsfoDNrkuDQFbGqeMBHxVoSAvFz7klrCEzXUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:08"]},"IP":{"Case":"Some","Fields":["149.28.58.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["PogboxRelay"]},"Identity":{"Case":"Some","Fields":["8XFlfPX3Jgc9Ot1UT1OPa6GyMQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqBsLVbMCvDouTQAKi1sK9oKRuD9o2K38uo3HjfxJUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:56"]},"IP":{"Case":"Some","Fields":["130.61.158.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WitchNode"]},"Identity":{"Case":"Some","Fields":["8VoqCL+RAX3PtgQhcWNWYeE6glY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NEUrU/n8Sk/wmLns91jU/wO2NygtQxy+T+du2ae6dvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:19"]},"IP":{"Case":"Some","Fields":["144.91.125.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2033:4966::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BriarFTW"]},"Identity":{"Case":"Some","Fields":["8Ubdcd7rtrs9emOM/9w71Dp1ZA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["spxgtjY5QAX/OI4uTyJnRJN5bRgnXd9leiftsRS7DWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:09"]},"IP":{"Case":"Some","Fields":["89.14.208.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["outstarede"]},"Identity":{"Case":"Some","Fields":["8TZhZ2a+4PBE9P3+TiNj3I/O4ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EvVBGQ4x91XoQRegQNKKabjcXyvIM+CtPfYQx9Vqrps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:37"]},"IP":{"Case":"Some","Fields":["85.235.67.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:32:7d3:18f1:1dff:fe25:dc29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract01"]},"Identity":{"Case":"Some","Fields":["8S+N/d4ZadTllAeB49qzJtKMEiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbLnfljZ50mrXc3CUi/HSJNivXz9EBFtlZkcpZHT+PQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:45"]},"IP":{"Case":"Some","Fields":["84.238.10.142"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LightSteelBlue"]},"Identity":{"Case":"Some","Fields":["8S0X8pbHko5TTTzvQr6PqWlh1VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fNu2khONFMzyHL411SeEtOrNoy4l8Vw9+qVLRXvM/b8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:59"]},"IP":{"Case":"Some","Fields":["95.116.21.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORneedsFreeBSD"]},"Identity":{"Case":"Some","Fields":["8Ruhf/YlUzkUmHrzzaxlJnlc0a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JYmXoyDVS1PmmLgBSvqttBuR2MEsU97hUQu4K0hrNko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:51"]},"IP":{"Case":"Some","Fields":["193.233.203.72"]},"OnionRouterPort":{"Case":"Some","Fields":[42564]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gusntwrk"]},"Identity":{"Case":"Some","Fields":["8RK6Z5XYY/IeUjoGYaE0oE9EkQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xRE+PDq3p99/02ykAHG3Expm+afkpKDZoXHAF+VQlC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:22:06"]},"IP":{"Case":"Some","Fields":["199.195.250.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParkBenchInd001"]},"Identity":{"Case":"Some","Fields":["8QveJ5rnFRXdzMxh3Bmsh2X4o8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXVoLeGLdmtLddteqZIf5UEqI84YBBc3yGv5rICjOyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:54"]},"IP":{"Case":"Some","Fields":["193.70.112.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["8QdDTXjy3+Tzgq+DbMaO4rP8724"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5lzaYyCMxyaG6LYoI48Ti4UK/HMEH74E/kvPHQQnYZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:41"]},"IP":{"Case":"Some","Fields":["23.128.248.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::54]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk7c"]},"Identity":{"Case":"Some","Fields":["8PUHSm2t09wi4fqhj9bYnLxSdxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32rpBn9kqEtXWejClMhIbDMMfs1jHeHkBKOIOUXLH9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:13"]},"IP":{"Case":"Some","Fields":["51.15.89.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:e00::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pinball"]},"Identity":{"Case":"Some","Fields":["8OQNLNaLzuFvprdo/kgGKu8JOx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AFxyjSNUL2InuZLJtbGo4H9rlmcoPB1C7aA3qUHHKkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:35"]},"IP":{"Case":"Some","Fields":["202.65.91.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8N9xIuW415YeYa+uLUE9riUnvyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["llss1QlkrSfJ3D71m/WTLolVbWZQkIsRCpJtImevnRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:06"]},"IP":{"Case":"Some","Fields":["213.54.108.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8NAesf3FCCeas0Eq8/yVC7HaKtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x4KfHpfrdMuASBtgs/GimTMNQ615HHoWRQzlHxIigUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:33"]},"IP":{"Case":"Some","Fields":["185.228.136.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8M0UXPM3UzjvXPOF5ICnxIiVku8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVsIE7sJga1hzn4aZGNJOtVspkbWgQNvDoPgU7KwJtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:36"]},"IP":{"Case":"Some","Fields":["46.38.236.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TTIGermany2"]},"Identity":{"Case":"Some","Fields":["8MnAfRt8b8hUf1LKwQFbSnnirBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U0CIAcZualzCY67IULLc1pOE9YuqEKry1o0M8DPpQ0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:36"]},"IP":{"Case":"Some","Fields":["217.160.9.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:5b8::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrindItIn"]},"Identity":{"Case":"Some","Fields":["8MG0DsLP3nAt0+u1Ehaw2o1lTv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gc5xV+CyiLus3eo7DnQZlbLeRsb/Vbg9fvASwP1KYlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:41"]},"IP":{"Case":"Some","Fields":["85.239.34.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex87"]},"Identity":{"Case":"Some","Fields":["8LYNJcLoPqcHwohs+lnN/gJqDVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfxTJzGa+0M3H/KK/3//EAZUO1/evB3v5J0ql8Fu1iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:08"]},"IP":{"Case":"Some","Fields":["199.249.230.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::176]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vm242tornode"]},"Identity":{"Case":"Some","Fields":["8LWAeYuzA7o27RJoVo4q2TW2xIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIvoUDoQYtO7WpHxyvH9soLs/whdxnrn24sjGkRo0pY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:22"]},"IP":{"Case":"Some","Fields":["46.4.34.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Deteros"]},"Identity":{"Case":"Some","Fields":["8K6SK001jzr2t2IiolJrBHDn2RM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Byf7zpm/nAQ0A7FFHqDhcGRfE8Vu+Js/6IWKebXmcN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:49"]},"IP":{"Case":"Some","Fields":["167.86.66.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8Kgq19WPSeupcfdQSuIjtKhktQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GlhT2Bxx8XorKYlS+J84pBCmUAIANAHl6Y8ZrK1kPzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:11"]},"IP":{"Case":"Some","Fields":["136.55.42.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bambam"]},"Identity":{"Case":"Some","Fields":["8JqbMinC4z1OpxgejqsKsCmE9V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UqtStWa0i2+e8Ko4sRalMWg54eCLwTES2slHKFLxZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:14"]},"IP":{"Case":"Some","Fields":["176.198.219.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheyGlowInTheDark"]},"Identity":{"Case":"Some","Fields":["8JUBN7UHb9HGlc6DmMu12y8r2oQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jrp7kGoaRdUGp1S2kDynwJhBOsPfnePudDMf5EzaW0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:31"]},"IP":{"Case":"Some","Fields":["85.220.70.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontknowmeAT"]},"Identity":{"Case":"Some","Fields":["8JDQbdkIyRSH8KZd/9+x5M1mQog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3aNiS7ku3S+c466ndj7g3alv0L4MbaGMx/baPxoW0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:43"]},"IP":{"Case":"Some","Fields":["86.59.115.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:6:1500::666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8IpSWsqWXPalXwWHv0tzc9mLlU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WtZFEa5j5/KbEjx4aiJTagbY1saAAZ3VgDMXUy85xN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:44"]},"IP":{"Case":"Some","Fields":["37.191.194.248"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fec3:62f4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["winR"]},"Identity":{"Case":"Some","Fields":["8Io3RMplaO0oVFwrfBvn2Lony94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h086jHzlRIKECBDkNO/rRxoftQhooCrCSx4E4LaSV5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:35"]},"IP":{"Case":"Some","Fields":["95.217.248.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:f230::10:4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pffffffttttttt"]},"Identity":{"Case":"Some","Fields":["8IezkSLBgaTJdnK0YLKEsyNQ31M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3wR4LBbgWAs1j9OEftuhvKCf3sCLvB1Jtyj11jmG3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:40"]},"IP":{"Case":"Some","Fields":["178.62.202.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GutterTor"]},"Identity":{"Case":"Some","Fields":["8IdR4nxrybNZC1qeIXc1jSzxksI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["emvQWq1nw4Jl+Qc0XUy1L/p8JWIj0JgdEq92LCSGIzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:38"]},"IP":{"Case":"Some","Fields":["65.24.251.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["8Hj+HXvam8rhMTM5a1ZMc+oo/6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dc92N8Ko8mIDHFRqb9GV0ksYCeV4xsw2ugyEqazGBQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:41"]},"IP":{"Case":"Some","Fields":["128.0.64.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickodee01"]},"Identity":{"Case":"Some","Fields":["8HYCvEN5YPHjk3AImpzJVqktKt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["greB2dFN6nCvFVFfpE+3KY9xnNjkeYS+LaWSGS7Il+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:25"]},"IP":{"Case":"Some","Fields":["195.230.23.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0175"]},"Identity":{"Case":"Some","Fields":["8DJn54Rh4ZjHqNPoJRRolbGb/Ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsMq1KKVD5ph8kQl1h2914YLrI+D8r0g1XkEBlF0fw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:23"]},"IP":{"Case":"Some","Fields":["185.220.101.175"]},"OnionRouterPort":{"Case":"Some","Fields":[10175]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::175]:10175"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ValveCover"]},"Identity":{"Case":"Some","Fields":["8CSOirMt9iSxHC85s1tlRLxjhf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["idOlBhm6/JTYd86EqGnQ8EUmx1iGvweXbUiTyR39TjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:26"]},"IP":{"Case":"Some","Fields":["135.148.52.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode1"]},"Identity":{"Case":"Some","Fields":["8B44LaUkpX8r+zxP8nCiPVzTMR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OEDdPFKX0ZA+xycsdph2s+0UiZVX9zm8Y6aI0dKH+CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:53"]},"IP":{"Case":"Some","Fields":["209.141.54.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PancakeWhore"]},"Identity":{"Case":"Some","Fields":["8A7C4KLKeaV/56CRigh5h3R9dy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iipMQ30Gp2MMtmMPaNQSq/QdCHfY7HyfpD5+Was7baw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:12"]},"IP":{"Case":"Some","Fields":["94.154.159.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f300:406::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JennyRelay"]},"Identity":{"Case":"Some","Fields":["8AyLdYn+5SvoQ4fNtCLB8ThpecA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6P0FtY5BRLIwXG9iUa7lOvoUb4GGT/S6EIkG6NKUjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:13"]},"IP":{"Case":"Some","Fields":["79.118.20.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudyDC"]},"Identity":{"Case":"Some","Fields":["8AuAu1gOH3i8Hje69bb97Wfk3Do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1sZ5gb8szenvid1MupoF67qHThSS7z/SPDmo9l4pqo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:16"]},"IP":{"Case":"Some","Fields":["158.140.234.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orca"]},"Identity":{"Case":"Some","Fields":["7/lFD2iRh3b4cLvFVPjjp9bhyVM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yoGyl21iRizZEeamNqo+TVH5OgbuFN3Hhz8sIWV2yZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:28"]},"IP":{"Case":"Some","Fields":["109.70.100.76"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::76]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeevestor"]},"Identity":{"Case":"Some","Fields":["7/MuCyuhAiUfP3F8s5iIlu6zqK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vXVwjxgD5CXIS+X6Pd5/LHF74TR2d1C8z9+WP5ABYig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:00"]},"IP":{"Case":"Some","Fields":["46.59.28.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marina"]},"Identity":{"Case":"Some","Fields":["7+3DEV7+S/oR/Fm55o+Gxl4h9dU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JTbkp7yIAlNQ99IT7yM/C8TXN3BrKgoLrP/ygjtR6Pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:47"]},"IP":{"Case":"Some","Fields":["46.4.115.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Slavyanka"]},"Identity":{"Case":"Some","Fields":["7+iez07hFhOhkkh3fruihxm/X/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AoOTA7OOzNuUJE+vzNoahQssE1i75ue1zhZUEbFZKzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:57"]},"IP":{"Case":"Some","Fields":["194.182.179.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:c47:e00:7cdf:4b9:a0ff:fe00:2f0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra41"]},"Identity":{"Case":"Some","Fields":["7+iEnRBRmrF1Dhr0dBAFlSKADTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwlbyOfs7ZpiT1FwBAg/eiPtmnSt09eD7jrOgI6FGO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:35"]},"IP":{"Case":"Some","Fields":["104.244.72.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dashcloud0010nor"]},"Identity":{"Case":"Some","Fields":["78Mg2Fu/X0G3v8FdzluwRLoY9Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8Da42UJMxoPYe3XO6+BQzVKZDu/GWZTi6HJlkxYerk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:53"]},"IP":{"Case":"Some","Fields":["185.243.216.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:93]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marcuse1"]},"Identity":{"Case":"Some","Fields":["765EcoJkmCIkRF6WIUwV+Qdd7h0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tOTuCcfYKrxOgn9+VYFCsr3yfnth/RlR/dR0a6FS19g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:55"]},"IP":{"Case":"Some","Fields":["178.20.55.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1b88:4::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay23L"]},"Identity":{"Case":"Some","Fields":["76LnsHOqTOLa9xYPI8kNuAWUj0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LmBQJhwQf5u90vX1QS0NpMUOwWULxX0nR71tOzIUuik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:34"]},"IP":{"Case":"Some","Fields":["85.214.128.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4307:8800:e806:8131:ddd4:af0b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PLUTEX"]},"Identity":{"Case":"Some","Fields":["75xGEfqnwhFVqLoqch3cPSeBYDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cKyqabppJL+h6LKU68D+8el1VCkUSJ786tnF4GQOF/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:44"]},"IP":{"Case":"Some","Fields":["109.69.67.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:16d0:0:5::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["madonion2"]},"Identity":{"Case":"Some","Fields":["75LJSP24OJbdvfdZb4J9d/iT428"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rr+yOVm/VEpslf4Tsp9XsCzDJ9PInHVTdK5BMlj2XJ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:00"]},"IP":{"Case":"Some","Fields":["45.140.180.71"]},"OnionRouterPort":{"Case":"Some","Fields":[1430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:c5c0:0:303::2]:1430"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["74gnJJCaapHViMkIHsW1EH84deQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkB8ll28J8LABIMlzvP5LP/cDqLOYtnkQhm+uTwdMJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:52"]},"IP":{"Case":"Some","Fields":["185.243.216.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:92]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flodder"]},"Identity":{"Case":"Some","Fields":["72YEuVqULxx62AffEPk7ngDEems"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qw/LL/X0g9aVrwDihMrpTIzlzvw5gXBjzBW5OY+Lwlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:25"]},"IP":{"Case":"Some","Fields":["91.207.60.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["71pCEV27MXhbGPbnPGQYlyQozFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3nTqj5XxmavadqOQcHrhfKfDF2YIrj6nR5SdWkkm/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:14"]},"IP":{"Case":"Some","Fields":["71.131.94.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["0x42FF"]},"Identity":{"Case":"Some","Fields":["71cg7b9I4a0EMA7eCQaXXm80kmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlsprPm8oRHzFBKovumhbfx2hiJNNOXjynznCTNpUWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:25"]},"IP":{"Case":"Some","Fields":["188.40.166.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["70zR82noCA37WkYYfPqXaNeFcII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sUcoFLCJ6zP8RL14yA0c+qgTSZsDyKcHMAJKiZ9Jp0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:48"]},"IP":{"Case":"Some","Fields":["185.194.142.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["70bE1miHLqIeihln6ZAtE7fpUmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wfGHwS8WsxUADwfI4r1GlgryyjqCuh04c/3+pIjG1NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:40"]},"IP":{"Case":"Some","Fields":["5.45.106.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justiceforall"]},"Identity":{"Case":"Some","Fields":["70CTOt4pnnz89LnF/PwzksC4cSg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hcOnS9aM6wBdMk52RbkXfbhtfqPv9VtXrD0X01LBkjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:17"]},"IP":{"Case":"Some","Fields":["46.101.192.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::e43:5001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ahplA"]},"Identity":{"Case":"Some","Fields":["7zz00oI6bJlcvb9B1cVahlz4QdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ax6KteHRPP1lypuSTnBlrDuBqBDnkTbFDWN2Rr6nNJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:31"]},"IP":{"Case":"Some","Fields":["178.17.170.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:cafe::39c:8624]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["dodson"]},"Identity":{"Case":"Some","Fields":["7y8m3Z0k3OsAqkwuoUbqo6bHuhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hcnx6Ke1tLOhsRNiyxkvS24I7djmgvYKisnI07P8Iu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:02"]},"IP":{"Case":"Some","Fields":["73.42.194.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:603:217f:8ab0:a8a1:59ff:fe05:d01b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["0x90"]},"Identity":{"Case":"Some","Fields":["7yXB+b74xKPyhZSTx8jFFIcltOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YoXXCvqU+VYrEB9/hGyptQ9HSikXRyk+O9p/g7+XrR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:45"]},"IP":{"Case":"Some","Fields":["176.9.98.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7xlAhrGFF44b9Umo+V3owD4t6/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WfUm5Y1jIDqeDi8TyJD0YFsGqUykaO2nNatX4lATC9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:02"]},"IP":{"Case":"Some","Fields":["107.189.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["v205"]},"Identity":{"Case":"Some","Fields":["7wkWPsPwPC9jqGW7vxzlZCxllaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1eF1eMu7zzday1jJa9eHJe/5R1OCOMz97cr390qbHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:21"]},"IP":{"Case":"Some","Fields":["78.46.192.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:821::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r3"]},"Identity":{"Case":"Some","Fields":["7wfSkN6b0RPWIkDklkEwDNgZ1hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N05nqCOUlI52pyaOZ41665qaVI2zll+AwTZF+Bk10N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:00"]},"IP":{"Case":"Some","Fields":["198.71.60.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JetiTorRelay"]},"Identity":{"Case":"Some","Fields":["7wTCvpz1ZtvMu2g/fQYPxIWlA5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3O6cF0u3EEsGA5jD9qDWIdapz/qJx1w1L0pnhJdPrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:31"]},"IP":{"Case":"Some","Fields":["79.215.21.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ozigbo"]},"Identity":{"Case":"Some","Fields":["7wHn5tXBSPp1HUKwEewZ4ht3Gn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kzpgo3ZnIbUatKR6vkd3nx8FywNJ8TA8Q7oawonjZt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:27"]},"IP":{"Case":"Some","Fields":["202.165.228.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stateiscriminalorg"]},"Identity":{"Case":"Some","Fields":["7v/A1TKrY7s+nK6tqCKXH2066NY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q09IVlcu8ovlrjcckxJ/v/uHtYwG5tUIwkFoEryzT1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:03"]},"IP":{"Case":"Some","Fields":["95.217.180.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:84f4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["g0bbles"]},"Identity":{"Case":"Some","Fields":["7v9MvaQWPJ179InYMQZwqNN4+X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d3GykP54v3y/4k/XxPlryYeRPeb8aElDdLJpP6xKzv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:08"]},"IP":{"Case":"Some","Fields":["5.255.101.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:106:1d53::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7vQLTN2qj2dGhUkeRek5kXmqGDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AgIH8/j2E3ngyYU6yneDnJOxnFkAD5qC6XR7EbpjbYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:57"]},"IP":{"Case":"Some","Fields":["185.244.192.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["st"]},"Identity":{"Case":"Some","Fields":["7vILoAeagQp7zgjn7KvT6cyf7U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jlCCy4iw12mDCBu72VTR8alAu3mH4nGm0+C+Ly4LmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:46"]},"IP":{"Case":"Some","Fields":["185.237.13.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adamsoftwinds"]},"Identity":{"Case":"Some","Fields":["7u+aL8g3vg4OWFJKBRj5jf/tKSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bXu+fo3gfMB9ULUETxhVQREKxSU1W99I6IkSCxmDpW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:38"]},"IP":{"Case":"Some","Fields":["185.140.250.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash1"]},"Identity":{"Case":"Some","Fields":["7tuf78kWX5tBtRWigvlaV0qAf7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dvCoxWPI4CQQoOprXQU7QI8smmX2uTBoe2AlsiA2aLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:23"]},"IP":{"Case":"Some","Fields":["51.81.56.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yourmomsbigass"]},"Identity":{"Case":"Some","Fields":["7s3KSNniEQlRuulKhX8Fm/TrfXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frSRVrYADe4ejJtBlFiIXMk/3NHXMjgh5m3i7ndzMAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:28"]},"IP":{"Case":"Some","Fields":["107.189.8.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tghb"]},"Identity":{"Case":"Some","Fields":["7syKBsTerxmR29ASdFl8sRQ7NYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gCO1JJR+9wNxXIOuiHfIiAReI1wAS0U4ks2LqHy/1GU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:09"]},"IP":{"Case":"Some","Fields":["79.201.178.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809n0n0n0"]},"Identity":{"Case":"Some","Fields":["7qhVZ81+vrHLxwrul8ReABm9vfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LlZdYZ6n9tizUQboVtUNGhwMR+Phf84K8/QMe6tPlck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:47"]},"IP":{"Case":"Some","Fields":["194.32.107.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LisaM"]},"Identity":{"Case":"Some","Fields":["7qUAohbaqD54FfLEZ4ZlKTX9c1E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LIDwxSe7eF/mrUR65g+wW/9n+n3QowwUH3NlUCm9ncc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:23"]},"IP":{"Case":"Some","Fields":["13.48.17.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandbox"]},"Identity":{"Case":"Some","Fields":["7pQDDQKvWniMYupW1INUDDhGDhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v6Sh4PRIdwjl7iZrpqZ9d/1ykXCxuse5LQRnS8JH6hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:32"]},"IP":{"Case":"Some","Fields":["176.107.176.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:1741:0:12::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7pCy7YJI6sIadmHgySUJFNDTVTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOZXpcnxHDGK1hbaRxec9AGwuNVC7UkI9/OGJLKGfO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:05"]},"IP":{"Case":"Some","Fields":["80.85.154.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cb1tor"]},"Identity":{"Case":"Some","Fields":["7nL4VEvEb2/820fM25VOWsZCdWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1y52YkeIuhcU68WrNQz9MRm1XG0dBRH5hwAcbgEvl1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:22"]},"IP":{"Case":"Some","Fields":["5.255.99.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cassini"]},"Identity":{"Case":"Some","Fields":["7lSzViTRdcbIV3kT+GF6IXoIhPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T9LdUjY65xJcNyIBmJUAyGGGYoBVyeQ+PO5xDDx/EkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:20"]},"IP":{"Case":"Some","Fields":["209.58.160.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer01"]},"Identity":{"Case":"Some","Fields":["7kskV3bYEbQ+Yg+K4+PP31OiB9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EZQxEIH16jNkDcF9kKZWUUWfvNwDFeMw2HZCaBX9ahY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:25"]},"IP":{"Case":"Some","Fields":["95.214.52.187"]},"OnionRouterPort":{"Case":"Some","Fields":[5118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay7L"]},"Identity":{"Case":"Some","Fields":["7kr2MgWPBzTBQmsa1on0dEXKIFY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XIZMfBu7AViZK+diFOPpL5iBNx9avLMTEe6A8h1z4Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:31"]},"IP":{"Case":"Some","Fields":["37.252.187.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:c:111::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anonymous"]},"Identity":{"Case":"Some","Fields":["7kghFrKkmitkU2Um6t2N6TL2kc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["De0RLi7SRqqJymfLoBJtrs2aLC2YYZUmyuSD6XDknt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:43"]},"IP":{"Case":"Some","Fields":["155.4.110.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenVonMecklenburg"]},"Identity":{"Case":"Some","Fields":["7j8UEMTh1km93kVkRveML9DMmMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O4dbbv8gJA/RZh7ZYoaApWRL6uz986S0q+7rh+7Qsdc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:30"]},"IP":{"Case":"Some","Fields":["84.131.92.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATP"]},"Identity":{"Case":"Some","Fields":["7jFdvSmxOExHBxybanLNZIHLoIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ETl+cSgEBG+p5akA7XVH5kFjzFPqy3/jvlPCqayhHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:29"]},"IP":{"Case":"Some","Fields":["45.154.28.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:848:240::240]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antonov"]},"Identity":{"Case":"Some","Fields":["7jE01te3A6Oe75wMWzf8hCss1yw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1aJPhdByNIy+XwYh86+zifAcW+WKdymP2y2gr4ETILY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:00"]},"IP":{"Case":"Some","Fields":["185.189.157.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myzwiebel03"]},"Identity":{"Case":"Some","Fields":["7iqRCKntv8tcRPKZMmdXMYgXaqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hkPk4GTAn1bTMtsi2q11Rgn3ciKG7Er0rGS8efpB5Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:10"]},"IP":{"Case":"Some","Fields":["49.12.225.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7ipiEEKZSylFLBL/O29i2elXdYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwGkn3qBW0Xwdof3c44pqwNe2KYweY9KV7L2+hTpF+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:47"]},"IP":{"Case":"Some","Fields":["145.239.41.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer84"]},"Identity":{"Case":"Some","Fields":["7h0ykjT95eILJgK5CnUl6sTteLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2erBWd44rWuxSvQ+l+FguOzAxITrfDOh6qVi42VRVFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:20"]},"IP":{"Case":"Some","Fields":["95.214.54.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8184]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n1c3r3l4y"]},"Identity":{"Case":"Some","Fields":["7hjokc0Qjip4Q43R2rxblEyDBds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hi3BUOZ67KrJi6aCxxdkHPW5t7W+aCKHQAkURW0NWb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:54"]},"IP":{"Case":"Some","Fields":["94.16.112.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:5bf:84a1:a2ff:feaf:4fc3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBigSleep"]},"Identity":{"Case":"Some","Fields":["7hRmMOFVun0P/b6TFCnygPR5eEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mdd5uVuLlOaF9mBiijq+/NJ1PA81x8I9YgObKrMn78A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:07"]},"IP":{"Case":"Some","Fields":["71.207.38.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kryptonit00"]},"Identity":{"Case":"Some","Fields":["7g4ywe4CscA8bUPa+mZO/SwV4gI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ZBvWJ4vWdqa4fIlEdc0UaxuX5jPK9PdNQWggAF2Mbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:06"]},"IP":{"Case":"Some","Fields":["37.75.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoleeShitSnaxx"]},"Identity":{"Case":"Some","Fields":["7f1f/p2XrcC6/jCjvYRU82/972k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oeE6ICN/JlVFAUjtznR6dV3k6bllGnOx2bOl8H5ONWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:42"]},"IP":{"Case":"Some","Fields":["207.154.192.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charity"]},"Identity":{"Case":"Some","Fields":["7fNX34pr0jxts3EFANwN9JjzexQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znZov7TZHagKH2iHGS3kPZs/6+MktKrvxIztiN+YkK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:58"]},"IP":{"Case":"Some","Fields":["51.81.209.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute18"]},"Identity":{"Case":"Some","Fields":["7e24eXhz00Ayi1/tvXdEp9HfFR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uhf5G4xmSDCkmSh6tXS7D5CILbUo+07Y47gJC71s5M8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["185.220.103.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StandForFreedom"]},"Identity":{"Case":"Some","Fields":["7eoZFy7IsUY73RnjoYd4xXVnEKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+HM6pg2YyyTwD2D2Lq79Q8/zLlhsmzCuPVECBclvMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:14"]},"IP":{"Case":"Some","Fields":["45.33.114.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex74"]},"Identity":{"Case":"Some","Fields":["7c30JHXNYKjr36fP5ktQBqufp4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIadaGdY1McXUlzrJVU1ZksNq0sK2nH2iDchXaHQv7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:54"]},"IP":{"Case":"Some","Fields":["199.249.230.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::163]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digineo4"]},"Identity":{"Case":"Some","Fields":["7cswZU0FdASjqk71WvbbUFGTutg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+F7jJhMbW6WTPZEom6kpYUlZYA3KZFeIjGvqjyZWtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:51"]},"IP":{"Case":"Some","Fields":["185.117.215.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:8781::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maybetomorrow"]},"Identity":{"Case":"Some","Fields":["7cgDNXxdeLmXA2tBfYFWJebZmfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["88BjEqByuTKXFpaRJfVlqCMQ7v+/hVhCyVIPUi7fVRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:18"]},"IP":{"Case":"Some","Fields":["182.55.245.23"]},"OnionRouterPort":{"Case":"Some","Fields":[2323]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jasiuwarsaw"]},"Identity":{"Case":"Some","Fields":["7b5Ewy5Z5L5Gy7pm1QwtOtkAGUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5YHgZPECKHwIfyGHrBrYLSVVWgR6cj3QJK+coHcB5k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:22"]},"IP":{"Case":"Some","Fields":["95.51.200.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangea07"]},"Identity":{"Case":"Some","Fields":["7bzSlR0JfNpuqiqE2/446O5jSrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KnurCNv2LrId3bVY8UT4HT1Rr4z+/GZyKvB9S3FwuwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:10"]},"IP":{"Case":"Some","Fields":["81.16.33.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poya"]},"Identity":{"Case":"Some","Fields":["7bfzWtuag8SDQsxWnfc3PE9I4LE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FkZ7JR0sGdaBEIclsFrWZO1i8m7K1yLLNc43oLCBUao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:22"]},"IP":{"Case":"Some","Fields":["152.67.73.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["7bTjb9kVDV99qbV5wluTyHYcKAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EafL/70emKVCuuf11elK63N5ou02mbHrVyEnIqRiT7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:31"]},"IP":{"Case":"Some","Fields":["139.59.102.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Karlstad1"]},"Identity":{"Case":"Some","Fields":["7a8wxY1szzWeoGLGaMcYChcHZEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzVlo7NQ88U+Mu3Lj0beaF1LJrP4cSkks7ONcKBhu+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:10"]},"IP":{"Case":"Some","Fields":["193.11.166.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7Zy1TAcU0BjqXkxjBEenCpAadxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xES/Q0uKlH+zU5+uCeKdeZQ7MEAlYbSxt7JiibohrJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:57"]},"IP":{"Case":"Some","Fields":["5.255.102.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:dd2a::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StayStrongRelay01"]},"Identity":{"Case":"Some","Fields":["7ZpzE3NFb6BxwSo+Y+LIvvCm5yE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pK4gLa4CN3NjE/VyDqUOJWGItGJL+XAHIruheUUM+tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:11"]},"IP":{"Case":"Some","Fields":["162.55.91.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gnarzkorf"]},"Identity":{"Case":"Some","Fields":["7ZToKpTNfl1xuxRSLo0hOHVjJFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PwrgRGIbvdmIn4oZi7EEIdzy2H+iYCtFkW0r9jn+8+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:37"]},"IP":{"Case":"Some","Fields":["77.191.168.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7ZQ9XTKzk1hikWob4z53gNtR28Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hA/0j8S9F7J1hi6b6+vR67XU+Rz5QXlcC/bc4D5VmZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:37"]},"IP":{"Case":"Some","Fields":["84.133.69.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["testalpha"]},"Identity":{"Case":"Some","Fields":["7Y/wwaugc/bmsPVwlA4USBxow9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2iQJKeQk9R4GaGZMF5SUPAtvVXbqPea+xUhEdIZlWd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:22"]},"IP":{"Case":"Some","Fields":["122.161.176.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pXXXq"]},"Identity":{"Case":"Some","Fields":["7Y2kqFOxnLxohVeSFyAnJXPLVLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qHHV8LdmdS7eNqYQhLt+BLpOHxzXQ9jAo3VVpZZflH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:07"]},"IP":{"Case":"Some","Fields":["217.23.15.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WallStreetDarling"]},"Identity":{"Case":"Some","Fields":["7YVF9e+TmEpuqliU8dI6rXz/Z+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5XoqCYbOsVlVu5TiYxevUJ7fSzvuoQcxowmNfLPG/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:15"]},"IP":{"Case":"Some","Fields":["140.238.157.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:1:1f69:43e2:46d4:a7d5:c42b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7YH1nYgech7ckoCGE8f918zjjx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpIVs+7eC6OW5avz73Zeur+3n5Tvb3SHzQ0N1OLtKgk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:15"]},"IP":{"Case":"Some","Fields":["188.68.54.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e028:242a:33ff:fe87:a24]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire63"]},"Identity":{"Case":"Some","Fields":["7X8r5dKsf8+CGpCeJIb/+5XWUnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eUGLl2zbnqTE90DtyED9N11P22b4yFmsmZa4NvZ/+5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:47"]},"IP":{"Case":"Some","Fields":["91.143.88.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Enkidu"]},"Identity":{"Case":"Some","Fields":["7X1qPOw8QKytupGILNBP924cD0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8CXvD9FFhlBLHqDPjawVt6xRrnMHPV4wvAfJQID6o8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:52"]},"IP":{"Case":"Some","Fields":["46.105.154.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:4251::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunshine"]},"Identity":{"Case":"Some","Fields":["7XxlBnl/7BKAmK8KmTT6uxKdek0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V3bmUlpi/Nkc+hEjkyhdSqGnZK4oL8+wlgnGWMySDLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:03"]},"IP":{"Case":"Some","Fields":["5.255.103.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:60aa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["7W7kiCt3HoTVMwu2KACr7zFCN+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vJ65jXNkRO+OXeBzWD5Jjm6x8r5b29wmHL7UzhNeKGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:06"]},"IP":{"Case":"Some","Fields":["198.140.141.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:52]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Naname2"]},"Identity":{"Case":"Some","Fields":["7VzNLpDla3Ys9U4Ri5nMGDX/wsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LPevqe6TqE4fH5OovaFbitRvgVGMGH/1u/QtP2lzrLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:35"]},"IP":{"Case":"Some","Fields":["182.21.27.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk7d"]},"Identity":{"Case":"Some","Fields":["7VtgFNTFyRQIawYVIHoYbu9EWaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GGvrwY5WH1qfEraqGOW8zacKiPLzOM4TBHzG8nxxQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:49"]},"IP":{"Case":"Some","Fields":["51.15.89.218"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:e00::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LondoxzriaRelay"]},"Identity":{"Case":"Some","Fields":["7Uj1sr5/ZoTmGwNBKzjEvZ5e7bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tzK6n/mohHji9Q7WaIIAQ0JaOx4b24z3/Fbr1EjT5g4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:23"]},"IP":{"Case":"Some","Fields":["45.77.224.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7400:84ea:5400:4ff:fe23:183c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7TYSRRX3Hi4kAdcNnvw8rrCNYRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["di4DZ960MIqpqJYLSQ57ZdHLFg7LBKE9nLgFvjo3jgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:49"]},"IP":{"Case":"Some","Fields":["37.191.195.63"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fedc:ac35]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SEC6xFreeBSD64"]},"Identity":{"Case":"Some","Fields":["7SM4ysJxGz4zE5Lh7SgxIZt5QCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pe+cra20qe9b7IEHZMBwmq99W897YJxP6Sny3uOsHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:43"]},"IP":{"Case":"Some","Fields":["192.87.28.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:3028:192:87:28:28]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrushevsky"]},"Identity":{"Case":"Some","Fields":["7Rq5UpqNlp3LCIAkgAWNk0gfGiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BDV/79pS4mLprM9NBQFOPHsPU9QHesnEniyH1kVSjH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:11"]},"IP":{"Case":"Some","Fields":["185.246.188.67"]},"OnionRouterPort":{"Case":"Some","Fields":[36371]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sepi0l2"]},"Identity":{"Case":"Some","Fields":["7RqJBTsMMxAQi5G5TvyVPF+b08E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jt+jNB1Jo+LKlgicaZvFe8jPLvBKOHmHdl+wYE+HUiI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:34"]},"IP":{"Case":"Some","Fields":["74.208.239.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FileDitchExit0"]},"Identity":{"Case":"Some","Fields":["7ROQfjvSkB1t+yA2gFZA6joz2Xo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FJCHj6YBADfm9yDVgMmUSKdmeDQ5wGAMd/kswHQwEKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:45:41"]},"IP":{"Case":"Some","Fields":["193.142.146.213"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra78"]},"Identity":{"Case":"Some","Fields":["7Qw5cowEEKGmFz/g+MHJZn3ffWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZFBxgPopv9XRNv4RjDq59c6LrzvqSEerokglbpRNFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:04"]},"IP":{"Case":"Some","Fields":["185.247.226.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7P5Pdmhtb03rtFO2KWJwIrzr2pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ACytftrVK2ODmrs+LPiqdjfpcUOdmJ9MVLVZf6nFL8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:20"]},"IP":{"Case":"Some","Fields":["23.128.248.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::803a:d9ff:fe7f:d540]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["romero"]},"Identity":{"Case":"Some","Fields":["7P3qSMip9FpyQa7aPDhvTYL4lok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uUtuNTpqje9/CbOKFwatllY9oNl9xMijGaQrBzvh9O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:59"]},"IP":{"Case":"Some","Fields":["185.72.244.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vigilance"]},"Identity":{"Case":"Some","Fields":["7P283/JM0KLUzs6TzFHrdKWha70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AQTMzVD1u0MHugl96HPKQzA7xCev7QpOW98v3OtA/iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:06"]},"IP":{"Case":"Some","Fields":["87.236.197.123"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ambient8exit"]},"Identity":{"Case":"Some","Fields":["7OgxU0QmJ54y5TDNySedNuKmrGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ob803xYqdPCaSDUMS/PJnaWrP+S2HyMoM686P1cC5YI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:18"]},"IP":{"Case":"Some","Fields":["5.255.97.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:46e0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7OEHPKnyLjCwJPw768kBs5pFUqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p6DJvJeN2s38qSntiuxPil+tRRGkdCUWH3Pl41brmEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:26"]},"IP":{"Case":"Some","Fields":["106.185.159.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[240b:10:b1e0:a600:80d2:5dff:fef8:d3b8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["somerelay"]},"Identity":{"Case":"Some","Fields":["7NxAXkkYOy6vV5rNQrRDrqLPNyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf99EmtoTm5YRWvhbfLQYPNnHfnWSeXNsp510ORsq0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:23"]},"IP":{"Case":"Some","Fields":["185.81.109.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7NBu8NetM20spPN9t19sr6O6/fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kw6RQYeU5WdvXTN4jAZr02/bId0Go/0MQ2RPCRfPE60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:05"]},"IP":{"Case":"Some","Fields":["79.192.202.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kelvium"]},"Identity":{"Case":"Some","Fields":["7MUl8nn/MahE5VsdK6DQenjER0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/R2dQPPu4RGscxLHk4GtKkYIyKayLlewtc2EjdMh3HE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:33"]},"IP":{"Case":"Some","Fields":["138.3.250.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8007:3b4d:6275:c3b3:ae2c:d51a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx1"]},"Identity":{"Case":"Some","Fields":["7LJKMm04L4S3vWMM/b4aDNzgJFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cwf3lpPrz5OxcE9uRM8emzUfcENAaly8e+LmvTv24Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:18"]},"IP":{"Case":"Some","Fields":["147.135.78.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tenthcircle"]},"Identity":{"Case":"Some","Fields":["7K0UhjoNIXrlctxq3eGCeww5paY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Y26k8tAK4W6iDFlLD+44E90hNx3vS5za1wtidxvlfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:59"]},"IP":{"Case":"Some","Fields":["37.19.210.21"]},"OnionRouterPort":{"Case":"Some","Fields":[56921]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["definitelyNotLE"]},"Identity":{"Case":"Some","Fields":["7KoJcyQmK2A5T+bzzURqZqMxlW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["19m8anOUUtkpWpOoYHv+cMt1fqVoCQYqbSkrsg19mqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:28"]},"IP":{"Case":"Some","Fields":["207.180.221.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:1408::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinho"]},"Identity":{"Case":"Some","Fields":["7JYhQz3yyZbeVacGO6r7K3HDwBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6PneAgwk5pWyCc07EyHEjcT4R/9qU10pz/ekvXbbpzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:19"]},"IP":{"Case":"Some","Fields":["15.204.141.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LePotator"]},"Identity":{"Case":"Some","Fields":["7JTzBTLH29so2/1hWUPhNNjU/Hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OxjOSV6yZGJYnJ2sgZ50pv6v5sxZVlDAJZDDZRl8zh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:58"]},"IP":{"Case":"Some","Fields":["86.127.234.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AESOP"]},"Identity":{"Case":"Some","Fields":["7IL6mJm+/G3uaOJpa53jZNF/rlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2BKieE6IAfA0eMsziMGQkaD2iHAfiscxXvOnlq+HUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:37"]},"IP":{"Case":"Some","Fields":["85.214.174.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42cc:9e00:b1f6:528c:4e17:6793]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract"]},"Identity":{"Case":"Some","Fields":["7H6ppuvKDp7W8SlSIxMevVWuvic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SpGrVDhIAPPyBH67U5OOLkfrzkppoy7XV99c/vhbNFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:41"]},"IP":{"Case":"Some","Fields":["216.71.206.21"]},"OnionRouterPort":{"Case":"Some","Fields":[7213]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["torwar"]},"Identity":{"Case":"Some","Fields":["7HNz5r7DcEuwYKFPyVlB1CEiMAY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nL1hrWMOLtaAY/cYMwGGL8XfCKQByKi7uyVu2Y2ScFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:14"]},"IP":{"Case":"Some","Fields":["70.34.247.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:f480:2400:12ac:5400:4ff:fe1c:7b70]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["demoncore"]},"Identity":{"Case":"Some","Fields":["7HKIGhEo6xsoPuU/VJB0dxGab+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iRowpX16aDNULSd2Xp11JebGs6EsWd9cqj7mM69nnA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:07"]},"IP":{"Case":"Some","Fields":["185.15.92.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b08:0:2::17]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oknp"]},"Identity":{"Case":"Some","Fields":["7G8jUff9WCw57jEPqjSQqI/kYtU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O36jJB3yQWzaOOrh+WaPalEFoU+L1+kENLlzqkAvvoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:15"]},"IP":{"Case":"Some","Fields":["180.214.72.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SerpentRangers"]},"Identity":{"Case":"Some","Fields":["7FH9OK1ESteoRjv9oDUoJ1W17sE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLPns+cHBUflnXm66ffmumAygdMO5H7PDrPAR/F9xe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:05"]},"IP":{"Case":"Some","Fields":["119.161.100.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bektarRackett"]},"Identity":{"Case":"Some","Fields":["7EaU0xN7om07yuGiWyTYhkaMYQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PIMM1kWw6/IOgaYrfO61nf3srv0ynkBPeix+Bh0yqOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:29"]},"IP":{"Case":"Some","Fields":["151.177.105.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["7EaSibbosKrYpgeFVRAo7EuzYjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vILLi9In/mKxKskSoVWB5vjiVZzTrOlodaByXZD0InM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["217.150.233.39"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:b102:170:50::30]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwellkneww"]},"Identity":{"Case":"Some","Fields":["7EKZhgeWmFlLTSKgoGDWZx4EA+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6t82lWxCMnSIyzbmYUhE7J/UQcszORqPRkEXH+UQpMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:10"]},"IP":{"Case":"Some","Fields":["109.250.44.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeilsOfTheOnion"]},"Identity":{"Case":"Some","Fields":["7D7C4mycV7Rmhunv5+6r1LVw1tM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCRy4tAcMXPxVMPuscRPN8W8vBVNgzZojecjzjrvzRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:47"]},"IP":{"Case":"Some","Fields":["51.210.178.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::baba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["katharina"]},"Identity":{"Case":"Some","Fields":["7BbysdE/ZYNv0reFaZWCjRjzLMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MepqVgNece7S9UxA+iVUX1HuUVRpDPhq0Tgf2U8EceY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:53"]},"IP":{"Case":"Some","Fields":["45.125.65.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["7BZ7jJo4oPX3nUoBR5A1dg4NPWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oEtW0dIeS4cMinPc2XZQa0XguzZBPAGZPm0z6O+AZZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:21"]},"IP":{"Case":"Some","Fields":["88.208.224.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:2b1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN3"]},"Identity":{"Case":"Some","Fields":["7BXbYtkQFIHzZN5S64MTyDi93Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sBqwOGzFtPKBPRbXFv40GLY4W8QVUGfKvrnPcSsLygc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:48"]},"IP":{"Case":"Some","Fields":["199.249.230.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::119]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortimerAtx"]},"Identity":{"Case":"Some","Fields":["7Aq6gR5Osz2ti8i3A32GK/Tzqig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BW7VdaIBxtc6MUqYwAsQnTE3mItFxHzWByuM6CItL+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:45"]},"IP":{"Case":"Some","Fields":["136.49.32.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallycoolthing"]},"Identity":{"Case":"Some","Fields":["7An1GPZKN4wxMw3EcWlP1t36MBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["apXSFuQQGY/TbjNIOYW7lACySjiBZudkXGCBvmit/wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:54"]},"IP":{"Case":"Some","Fields":["188.210.4.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redDragon"]},"Identity":{"Case":"Some","Fields":["7AHqZ0nJ/0TspPGtCKaqKtELss8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HIaiQRPEmqcGWuShGgvLo7zEd85PHmjKTSH+XTfnCLI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:07"]},"IP":{"Case":"Some","Fields":["37.235.49.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:354:37:235:49:138:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackpearl"]},"Identity":{"Case":"Some","Fields":["6/mFOZs969rIgJf4FCR10w00CLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sku5nVJkR8D/gb/Wp/2yvfabAUb2dyenh6dx9c5P8S0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:31"]},"IP":{"Case":"Some","Fields":["185.112.157.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6080::1:5453:e5f9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["6/ZI4c8/o6xGqicoV7yvzNcNSfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EARoxCX29r7qm45Fy0JUpB8BjOzIlVkUV4WRfIQT6UA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:52"]},"IP":{"Case":"Some","Fields":["185.220.101.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBestBridge"]},"Identity":{"Case":"Some","Fields":["6+yTvdFn9RUtv6tfAW5XgL8ylOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NjotzhGM8pRksIMcgcCxHAIWGK5BdQYA0PpjJSLA4rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:49"]},"IP":{"Case":"Some","Fields":["3.143.217.21"]},"OnionRouterPort":{"Case":"Some","Fields":[12000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluxe4"]},"Identity":{"Case":"Some","Fields":["6+cY4aSe4ikHFwKWT42x8xgHX/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npvVpyyUFOTtYccTnM39Y4H40QJHggNOqfQGlUEHHmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:47"]},"IP":{"Case":"Some","Fields":["131.188.40.188"]},"OnionRouterPort":{"Case":"Some","Fields":[11180]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:638:a000:4140::ffff:188]:11180"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5d82520d2de79c"]},"Identity":{"Case":"Some","Fields":["6+C+xcs043vxFkv8cgZP8ro97GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yyaRLnXLrA2mGw2D583tucZUfD9mPxT5VQwICwIV7VU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:52"]},"IP":{"Case":"Some","Fields":["95.216.185.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1742::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiger"]},"Identity":{"Case":"Some","Fields":["69LL/h0RAeW4sTiCPMIUEfOVNUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EMRUOYjKRYgOw7EV0fRtw/ghmpVYmLNFGnp7Wx0d5sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:50"]},"IP":{"Case":"Some","Fields":["109.70.100.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amazing"]},"Identity":{"Case":"Some","Fields":["68zCIeoEagII+cGr+M1omFDjonY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9p1OQ3fZPR/fFzrrdajJOXyvn1q9KmmM1Md+nA1tgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:56"]},"IP":{"Case":"Some","Fields":["135.148.53.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipha"]},"Identity":{"Case":"Some","Fields":["68VTkTH+6gBMQZhsC9A7XIW769U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzVrMvEUlDFS5kN2i+kKY0LoP/zsxvUyngAdQX1YlJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:19"]},"IP":{"Case":"Some","Fields":["185.220.102.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["67jmc4tiTS9hIJS1fda8ddMpHeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oMffQAG8bDaOJp2Cu4XaI0CS5DT6BrciRG/HpZieAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:54"]},"IP":{"Case":"Some","Fields":["80.78.25.36"]},"OnionRouterPort":{"Case":"Some","Fields":[30973]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:8078:25:0:504e:1924:1337]:30973"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OperationUrbanWolf"]},"Identity":{"Case":"Some","Fields":["67eZ+t1hXpPKl75Vg+Xrl90h4Q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbFWcJnZTKBn6nZZfYnQPjB27CVbU/z3zEuA8kiV/Bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:23"]},"IP":{"Case":"Some","Fields":["173.73.135.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jdvnsjfnHBDkScf"]},"Identity":{"Case":"Some","Fields":["67dtCW/1eHowOyyB4hv/mBbG+g0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HrYmYnSdBvvSdwVGwNatXC71eIpZlMQo8w/UC8xkpTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:03"]},"IP":{"Case":"Some","Fields":["94.140.120.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1201::b5e4:ac7c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei09"]},"Identity":{"Case":"Some","Fields":["66PPsSgVAvg1mkl+T2ce8ED1OLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nOUdM1Fq+zsyTyT7tuQ29iqteYRlI+3E+q39Ctq61mY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:21"]},"IP":{"Case":"Some","Fields":["188.68.43.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:689:5493:bff:fe57:5c27]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["66F6U6dzz7QKDV2fMKPQYd3pLAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOeVjZbyiGIlOkisDlyvotboMF3PRgKCO/EwsBsgIPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:07"]},"IP":{"Case":"Some","Fields":["209.141.59.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber10"]},"Identity":{"Case":"Some","Fields":["66D/pXmam515o74tvWAeMBrPsIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLAxN2D3Rwvh2jPy432c3uoOt+Ug7HCgaHntff+/Hns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:09"]},"IP":{"Case":"Some","Fields":["185.220.101.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::5]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["653YDmTdgppffHrKXV/q3+v92Ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3eYdHbg1ilzkLCZAlbDgpi2M0bB33kBhBddJpU+XLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:01"]},"IP":{"Case":"Some","Fields":["185.220.101.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedRelayA"]},"Identity":{"Case":"Some","Fields":["65lkAKHjNTka0N/P4vshAONloOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nylXeQxjgDLvexVehbTDDGxJdd78OHKJnDQKG6UtCF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:10"]},"IP":{"Case":"Some","Fields":["147.210.117.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coveredinwhite"]},"Identity":{"Case":"Some","Fields":["63SXxDq0AR4ovZ5VmpEi8SD1K0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAQENZe5zds48YDLRWLZ5g7Ej+1eAGfC5uoNjkfAIgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:21"]},"IP":{"Case":"Some","Fields":["18.135.138.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pegasus08"]},"Identity":{"Case":"Some","Fields":["63Nk1M7hOxQEx9z7PMNILyJt/Sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy/pbchIK5ISSHRTftbg6XLqypEo7+DNz3mmAc6Wio4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:48"]},"IP":{"Case":"Some","Fields":["194.180.174.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:e::50]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay05V6Rocks"]},"Identity":{"Case":"Some","Fields":["63G92paGEIxIwh+aSEA7Kw95MjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yiwMA9bpcScGn1LwkCv87M0poXw+uYhoKc2WHI2zFts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:38"]},"IP":{"Case":"Some","Fields":["188.68.51.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d519::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyTorRelay"]},"Identity":{"Case":"Some","Fields":["62mFW0G7WrfkNaiimj7fSECgESI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0VJf2aHAVd5/i9i82xrgr5blmCscjrzhdJxE5kQevvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:00"]},"IP":{"Case":"Some","Fields":["85.214.118.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["athanaisland"]},"Identity":{"Case":"Some","Fields":["62aPCnVaAP/YyyqaCS8uaZKxWZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f0pA3aLiKvqmCR6zn41rapiVm3MX2gPTSYN9Z12e6F0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:36"]},"IP":{"Case":"Some","Fields":["47.242.107.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wrogregpx2"]},"Identity":{"Case":"Some","Fields":["613wEkpewoHoLwA4svRfp+x8fHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pof41CWKQPHk2RZXOxxMf3t91uCsgYUXyRe0Tmhpxgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:00"]},"IP":{"Case":"Some","Fields":["176.121.81.51"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Jupiter"]},"Identity":{"Case":"Some","Fields":["611mx69TkT4J+kdKF72AKrZotbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["upNZYw+6RDXmRLpCfJMzR0mElgeQE6EXuEg3wzk2AIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:44:23"]},"IP":{"Case":"Some","Fields":["103.214.5.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8302::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrinityDDh39"]},"Identity":{"Case":"Some","Fields":["60pJ9KXd7qLOmx/Azfl/0CH0SeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dRJqPtBrQewJQ7uwFVXDakBJFCs7nvBBrO32HTMpUpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:42"]},"IP":{"Case":"Some","Fields":["79.254.19.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9056]},"DirectoryPort":{"Case":"Some","Fields":[9067]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6z2pO2//ppnB8nFMnnP6gTu4+CI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fV6xc9UPw0QyIijOvrwPxX1++dj2gnJSadKoW38UD/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:44"]},"IP":{"Case":"Some","Fields":["188.68.50.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dukdukduke"]},"Identity":{"Case":"Some","Fields":["6ysmq9E7L58Hp3xKxviyzFh1KI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CVbJ0BO+StUrUZVkGsrHEM5qEfcDwI+yN45d2GPbncM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:53"]},"IP":{"Case":"Some","Fields":["158.58.173.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NavierStokes"]},"Identity":{"Case":"Some","Fields":["6yHCVgf54PW/ENlKPdSmXOdMhOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOXQucPACJqA3DK6Rw6cL/20nnClEU/RarKCTtAEBFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:27"]},"IP":{"Case":"Some","Fields":["45.86.228.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6v6HZVoFbydimM4XoNj6vuOyD0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYkcodDA0G7n7//dwCGRLMio1YQXT2RCWni8chx3N7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:59"]},"IP":{"Case":"Some","Fields":["188.68.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EncipheredEnigma"]},"Identity":{"Case":"Some","Fields":["6vgOBewRajAyPQZf8P+HUd7vzI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvJVX1c2U/oHSJB7halQAPIP3Gi53OHBeYeVZXJPuak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:47"]},"IP":{"Case":"Some","Fields":["194.180.174.227"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:e::13f]:7443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crazymodding"]},"Identity":{"Case":"Some","Fields":["6u/AD9+W0k91/AB6ViO9ajpzdCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TYLrcZx2xDRMf//RmIjam9o5zheV9QJMsDTXJpB6f1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:42"]},"IP":{"Case":"Some","Fields":["24.134.118.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisLupus"]},"Identity":{"Case":"Some","Fields":["6sNeKQgt49O3ZBJS6Yw7BcgAXyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ErIR1LVGn9yqbLVakUhXh+acTpSo4VF+c1pF60yIMAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["135.148.100.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv01"]},"Identity":{"Case":"Some","Fields":["6r4CbdQC6JGE5nVRIEK0Cd2ZyV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oOAp7Nh5v60AKf9uf2lCkTJkRYZGkiuAlexE0UWosHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:45"]},"IP":{"Case":"Some","Fields":["162.248.163.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6rzlGSZ1OvDtfqGLQh3SbPCHwco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9dU7mtkjpQdhoXekfr+G1eRAVUTIkQAE/agyV2ZNE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:14"]},"IP":{"Case":"Some","Fields":["185.228.138.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex49"]},"Identity":{"Case":"Some","Fields":["6rwt0NR7XbEfLTfrPGDCpNkcEPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BdIHHgCPiA8eceWcgRuPqh6bUtcWRHszN83rSBRVPTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:46"]},"IP":{"Case":"Some","Fields":["199.249.230.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e648]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORB"]},"Identity":{"Case":"Some","Fields":["6rs5AyP4DURXuqXO7lEUVXAOkp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIKYMKxkb9l7PLfY0+Ky853gGX+qLkeco8T4r99d1Lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:09"]},"IP":{"Case":"Some","Fields":["77.105.107.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt56166"]},"Identity":{"Case":"Some","Fields":["6qmhmzdYEPkjW27hJBHz2+/JtQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TW2bSJsTUgX5nUfTCIlBb0h7owp2vHr65JFW4ABI27s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:40"]},"IP":{"Case":"Some","Fields":["185.245.60.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trift"]},"Identity":{"Case":"Some","Fields":["6pq44hjINDd+lXXtT93/oP2CVbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uNI8/B72kUKRS5vITa4d6NNJFq8UGwVbfWxAEdbwZ/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:01"]},"IP":{"Case":"Some","Fields":["140.238.220.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["6pU0pJqgZ6ShBRI367pR4k+2xCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vvo7OBRHE3wp/Weh/fB56Ilza5Q0Nyifjkc1YcPP7z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:38"]},"IP":{"Case":"Some","Fields":["23.128.248.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6oVCjyJOytwYuEeg6A2yUajWZks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aFf0v6qJL3rNPdMdkMLdUJpOXZGCJrR5B+Cx7N+FwXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:21"]},"IP":{"Case":"Some","Fields":["165.227.32.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex54"]},"Identity":{"Case":"Some","Fields":["6n1XXJG7H1PCVRD7+RuH2BrhRkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x9iAhRv/yloEesDMEoEBzq4Tbf10rVcnbnqQB6sESqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::143]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schmortor"]},"Identity":{"Case":"Some","Fields":["6nZCxpQL9lcSZ/Bo7yibk76C8Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ms3n46vuy8P2UiNSbNujjNm5IbEshoQJWEXiZ/KnOHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:18"]},"IP":{"Case":"Some","Fields":["104.236.87.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0151"]},"Identity":{"Case":"Some","Fields":["6mvSAYHUiKg7JVQSdbN09boapFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o3TdliWwPdzGBBcaEH8GRFy+2LtqDgX+Y3ft9u1zuDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:35"]},"IP":{"Case":"Some","Fields":["185.220.101.151"]},"OnionRouterPort":{"Case":"Some","Fields":[10151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::151]:10151"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kennedy"]},"Identity":{"Case":"Some","Fields":["6mmBgX4n14sAMgS5A7BwURPatxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQEt2+W4qXwsQYkx6CFWx5pbU0lI16STI4kAfnbRv5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:40"]},"IP":{"Case":"Some","Fields":["82.118.21.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE67"]},"Identity":{"Case":"Some","Fields":["6mdzGGMrGuod1QdSCAqi+CKax4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IxwBrEQ5qmTR7q+rH0D3Xn87FRZ7y2cs0WHikkCvmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:51"]},"IP":{"Case":"Some","Fields":["37.221.66.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:108]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fountainpen1"]},"Identity":{"Case":"Some","Fields":["6mas87Rj08uzv3cbv4Xp+S/Vfq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEXeP4D0xOCNB5Pu6Yl+xzQsdSwVGV86Aukdnkk6GMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:55"]},"IP":{"Case":"Some","Fields":["178.17.171.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:1f::8d74]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enzuru"]},"Identity":{"Case":"Some","Fields":["6mONuwFOzdBKOI7kTHnwHPwHyw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ei4oLQnyzSEdvfVfDmrEl9xMwY8+NtQbcbHuJCvILtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:33:16"]},"IP":{"Case":"Some","Fields":["104.156.225.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["kaflooie"]},"Identity":{"Case":"Some","Fields":["6llthM3vKo24n/hI/qfbSlKUoa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jAsjo/zkOkoP14+ibHkM33JfpfPwcNc7dJWCpXLMVD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:24"]},"IP":{"Case":"Some","Fields":["107.155.69.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlexJonesWasRight"]},"Identity":{"Case":"Some","Fields":["6lBvV+M/JZflbfXTa78WG0rLlm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLGBvmdGCa3IVJo5ALMAF4ODFoxdD+ZghzG3xOtsaNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:48"]},"IP":{"Case":"Some","Fields":["209.141.36.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monomorphic"]},"Identity":{"Case":"Some","Fields":["6iffMikzc0XLrMCzhvNlcJ1hT5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+5tEgJY0JkarBDc3nt+boTO8VoCKzGGygp6Mf0osx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:18"]},"IP":{"Case":"Some","Fields":["125.30.23.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer81"]},"Identity":{"Case":"Some","Fields":["6iX42USPQl/mmfGSPI9T4yzko7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XUFSd6twjm93vsjrXZVkuNp0pLh7MFlUw3gOLr8+Sxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:30"]},"IP":{"Case":"Some","Fields":["95.214.54.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8181]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Darkbian"]},"Identity":{"Case":"Some","Fields":["6g/Gs1zu+y7s+wrDZoIXfldM2fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e0jtkW+Sn+KJNh8/845ynqlbuuY8IJXo9UOsPnqhX7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:50"]},"IP":{"Case":"Some","Fields":["108.70.34.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redacted"]},"Identity":{"Case":"Some","Fields":["6ge3PsbBTW2NvrGH4bWOToMX3SQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jLsfw4TuqgQb5w6yzj0WeN9pXSKKYBy4g1d4fqqd1eA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:22"]},"IP":{"Case":"Some","Fields":["140.238.26.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8008:b000:8008:8008:8008:8008]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["warpventures"]},"Identity":{"Case":"Some","Fields":["6gE5NpqTQJjYmhTbj5Q2NvwXwM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OFuWouXTbJ3Vg4ABklSn+0xvqkcVbcTdRU8+NHn/wU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:01"]},"IP":{"Case":"Some","Fields":["51.195.29.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["libertas"]},"Identity":{"Case":"Some","Fields":["6fcawG8pshEOP8CQFrDlBAdETuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ToY+XyK6D6G/iimTRPC541Y2Pu4wnk594aZDyTIn3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:38"]},"IP":{"Case":"Some","Fields":["185.233.104.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:24:b3::443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tachikoma"]},"Identity":{"Case":"Some","Fields":["6fWZsBW0ts+Yv3NEN6FS+iif8h4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbmZa9JKawsNDeGMNtDxZHU1EXvsZn+WCK/npinJk5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:53"]},"IP":{"Case":"Some","Fields":["86.14.252.247"]},"OnionRouterPort":{"Case":"Some","Fields":[60024]},"DirectoryPort":{"Case":"Some","Fields":[60025]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waltw"]},"Identity":{"Case":"Some","Fields":["6fJ0LDyfL5/qeAHul6vnaTbVJoo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rtCWEc3AQtcT/4ly6MYto6E/vWxNa7mmcCzoDywVysE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:58"]},"IP":{"Case":"Some","Fields":["71.126.173.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9999]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Urgl"]},"Identity":{"Case":"Some","Fields":["6dpBAbDg1xit9SEAqbMKZ7o1pnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+y5KhYLbpb2dxWBC7p/5NWC1jQGsw8pcObgdOPruM3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:12"]},"IP":{"Case":"Some","Fields":["109.202.205.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["6diXkxoLX+Xk3GCM2zGq0XNX3Nw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXnTJV9EsCSNLJzW/eLsZO0tRlyCPsTuNh3tjZHn9eI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:10"]},"IP":{"Case":"Some","Fields":["23.128.248.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal1"]},"Identity":{"Case":"Some","Fields":["6bBtNd77Gg/6z3NcEN5pSw9KSfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GjQAH/3sFBCskzsGfhQ/AZJPMyY5/Xx2wUyg+I9aLAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:30"]},"IP":{"Case":"Some","Fields":["51.68.45.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::138c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toro01"]},"Identity":{"Case":"Some","Fields":["6abhVJMAw1UQcbcaxUfiVo2ffO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orAG/TvQIJ2viElhZzXt4HbMruVmkX9CO3IoJqVuv78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:32"]},"IP":{"Case":"Some","Fields":["178.17.171.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:5d::2d4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torHTHosting"]},"Identity":{"Case":"Some","Fields":["6aZD3Da2OW746PpKbr/keqYrtkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F7kn5FeFb911prjAOHMN0r1ncNMzgNM30kPwONr6TbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:54"]},"IP":{"Case":"Some","Fields":["213.202.223.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[81]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:157::200]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockeredTor"]},"Identity":{"Case":"Some","Fields":["6aCOEa22BojeNaO9mSt+L0Ho/lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8DSOVKdvigjzYdsEFmBvOEMSY98/UbdHSuUyqKV+VbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:33"]},"IP":{"Case":"Some","Fields":["217.239.5.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["6Ye90apG3UL6vYV0+tZaD4Newwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f9Gy4j893f5sZ5f6a/ii2Fu0R/y8/27H+suhtH2ARPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:01"]},"IP":{"Case":"Some","Fields":["23.128.248.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::213]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber60"]},"Identity":{"Case":"Some","Fields":["6X+9DV+VJrn5dSmdkcKF59oAE5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XG1kt431oQ/sGLWxzc0KDQ11jdYvDu7m8pdhjpLxd3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:58"]},"IP":{"Case":"Some","Fields":["185.220.101.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::30]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohhiMarc"]},"Identity":{"Case":"Some","Fields":["6X9YwG56pxdfm+KjxwgyXAP7L7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6pbRbRi2OjPBDfwD6MStQKgrYO8z41iHQCb+fz8pCF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:26"]},"IP":{"Case":"Some","Fields":["103.251.167.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gsrv"]},"Identity":{"Case":"Some","Fields":["6X6ymZ//+w3cHFwCchpJWUYHlnQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RRhqn6DtqCdu7OwAIPETTaaYaYibc1cH5CLUXgZ0ZFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:13"]},"IP":{"Case":"Some","Fields":["80.9.202.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb19:81af:800:48f7:8dff:febb:8997]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mgnsrr2"]},"Identity":{"Case":"Some","Fields":["6XRMT34seiGbOza3aDXAbGeq+mY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h5QJR2wsIg7RzJprNDXvBpCic92OZ6Y3Nqs5oggcA1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:20"]},"IP":{"Case":"Some","Fields":["46.38.240.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigChungus"]},"Identity":{"Case":"Some","Fields":["6WGM5mS4CanAutMZJhGLelHVdLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYV/KzKEv1ulFEEME/cuJfCyaqhaOIIAqjHY/IvVffs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:08"]},"IP":{"Case":"Some","Fields":["83.9.147.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kellersau"]},"Identity":{"Case":"Some","Fields":["6U39rt14QuBE0m5FFtr2v0cJy2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c+p2E2GztUK0MhTIGulaZHG0HmGcwjImwQnRftEoW4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:43"]},"IP":{"Case":"Some","Fields":["145.254.156.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dgplug"]},"Identity":{"Case":"Some","Fields":["6UfAKQh/ocNJm+9dQ3KUfFEiPY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3cf+O9edtSm0t4IO+lq7iAF14BhXVWyQacNqmG0Jvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:00"]},"IP":{"Case":"Some","Fields":["195.154.105.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maRn"]},"Identity":{"Case":"Some","Fields":["6UShGjLwyeCQUyhCUEHDml9MZw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sV6EKIFAzeCmrcpl/cI2GTm7dxMxIWLPcTcuBlfV2Ck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:21"]},"IP":{"Case":"Some","Fields":["85.81.4.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Horizon"]},"Identity":{"Case":"Some","Fields":["6T3LWH64QOLRbtRjIzzOU/0lmrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSTLIP1I3AQi/sk5WNt68lsDQOgdMzMLUt1oAID34gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:23"]},"IP":{"Case":"Some","Fields":["159.196.69.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForBetterFuture"]},"Identity":{"Case":"Some","Fields":["6Tu6bVrHvLFztdigu78wboUG5aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E3NMBfUCqYBBCgfv/E1eocNteE3WA6j1DxJZKe4+NNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:53"]},"IP":{"Case":"Some","Fields":["206.189.132.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DJh2o2"]},"Identity":{"Case":"Some","Fields":["6SSFx0FeLwIy/ikAnI8NYfvpBio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/a5NKnAbpP+E0NBnO354vxNWvUADmBVljXCywPzhxeA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:00"]},"IP":{"Case":"Some","Fields":["5.146.68.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt28156"]},"Identity":{"Case":"Some","Fields":["6SCaNE+DISRSuH1cl/SOMbPvEmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fo44GeL1VgcMmq5ZH1NjpKGnUFOybcSz3ztRdSyud0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:57:36"]},"IP":{"Case":"Some","Fields":["185.245.60.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortoise"]},"Identity":{"Case":"Some","Fields":["6RkFz+sjCxvqawMJgW+e6cGhqDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xq4wRfoa0kD8K48z8xo5sE0oflGtSMfdxgsSJrGllHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:16"]},"IP":{"Case":"Some","Fields":["130.149.80.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JesicaJones"]},"Identity":{"Case":"Some","Fields":["6Rf4c5jH5F7izOSh64fUZHSmUzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B+cxk1nqdj0+7NCXYqFNpqfkwrGQ3yo0SVS4pP/S/Ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:25"]},"IP":{"Case":"Some","Fields":["216.73.159.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6RSrIF+lq+YJBquefuUntoCaRsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RAyh6TgfTc2mt2F1mqU/LoQrtmSHJl+ZB/VOt0NNbh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:03"]},"IP":{"Case":"Some","Fields":["37.228.129.29"]},"OnionRouterPort":{"Case":"Some","Fields":[31749]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tengu"]},"Identity":{"Case":"Some","Fields":["6Posm2kPO8Fq3ppIA84sURMvEKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6kFqhbIphEytDlODLvPeo+MmL2Hm/SaGFoi1ZynI3pE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:13"]},"IP":{"Case":"Some","Fields":["66.183.173.29"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gorgothzilla"]},"Identity":{"Case":"Some","Fields":["6PCuFBUUWKV6OBLvsTmpfMSJyN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVJE/xKvIBDHfzpSpyDXxwsKxp+vYQT8dzlT2yKQzUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:24"]},"IP":{"Case":"Some","Fields":["51.15.177.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tortue"]},"Identity":{"Case":"Some","Fields":["6O1AXkekd9ktnvsgH63yj/f7r10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qYlUv+scIJm99uNTpxVvc3CwCx8QPW/t4WkDrByXgSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:15"]},"IP":{"Case":"Some","Fields":["31.201.16.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torathoooom"]},"Identity":{"Case":"Some","Fields":["6OQZzIpqjOE+c3iJvQJfctCh7dk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lIb6JTQEQH52pN+G2PTeGBNTzf5Lz5fkpFuwtY7dkTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:35"]},"IP":{"Case":"Some","Fields":["45.138.230.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousLover"]},"Identity":{"Case":"Some","Fields":["6OPRyiq21EaslzrztboxQR5xuwg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zf4QIti9JmzAzKm9utOBRmoSgR9ggtTDIl8+bYpbHhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:18"]},"IP":{"Case":"Some","Fields":["79.192.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[1515]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetafx"]},"Identity":{"Case":"Some","Fields":["6OG0+N4AT6uCmbGlpQYPD/fA5Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jNC8eIyTohZhT9Mkl9pcQ+pmk4QNT7cpeA8Ugi4FRVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:20"]},"IP":{"Case":"Some","Fields":["107.189.13.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mentoreth"]},"Identity":{"Case":"Some","Fields":["6OCYnoVnZ5pIdT5AKFIPUWaRTno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ItneEEWD8tel+LHa0HeTPohu+JX1LeMV3Bo93h3bD2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:39"]},"IP":{"Case":"Some","Fields":["103.251.167.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libreonion1"]},"Identity":{"Case":"Some","Fields":["6NEUs8eNjm5/6xAEZQ3WMsIUPJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zSzI+A7Yh/3RUApKn2H9y5r2uCbRUtVUROKw1NqRp3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:18"]},"IP":{"Case":"Some","Fields":["185.4.132.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:f0::5492]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1174"]},"Identity":{"Case":"Some","Fields":["6M9XC0q0OdV6YYsHtEZncRqBGCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rHamSETAm3WllsnAMOr6rSbPc9z1Q1DfRVxLVdAABR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:22"]},"IP":{"Case":"Some","Fields":["185.220.101.174"]},"OnionRouterPort":{"Case":"Some","Fields":[11174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::174]:11174"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["6MhmfK89UUjlLs9zansgSYL3jqo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P8+sqB8uCtX4bE303jP1Km/7m2FjoWdIo0u2ysn1tss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:50"]},"IP":{"Case":"Some","Fields":["185.220.100.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:2::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["6LiM4253a20AnZ0MzrduvpOrUW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEACGjFJp8Sqfcy1g9aV6QYGGh89Ug145h/lCJ7fu4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:10"]},"IP":{"Case":"Some","Fields":["213.238.182.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["6K2MT9w/4VIVDABbsuqmoJkLdN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WMHeEYMtsTnMwm5/FSSpp8cr3uTn3f/tyTT8LxiuQmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:22"]},"IP":{"Case":"Some","Fields":["185.220.100.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:13::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE51"]},"Identity":{"Case":"Some","Fields":["6KRwiUZ/huiWhqsyeacLfwzDi18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mds6M1KWlBEtGRd3U9CaM05pLsYUS6u3cRQHwyO864Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:58"]},"IP":{"Case":"Some","Fields":["170.231.236.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomNode"]},"Identity":{"Case":"Some","Fields":["6JxtyTJ5duYq09nbHsCVdm+DGiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/DpjkEeorSA6ePLeWW4Ia5raXzvsAnh/hydiD9MLMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:10"]},"IP":{"Case":"Some","Fields":["162.55.220.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:ba9a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Azula"]},"Identity":{"Case":"Some","Fields":["6JaGEmE8VIv8pj175Ufi0cWU9To"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o+gRc8Ucr8wtskl9964MtBNNdl+wh8koq1cNk2ZXI5o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:00"]},"IP":{"Case":"Some","Fields":["85.214.80.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei08"]},"Identity":{"Case":"Some","Fields":["6JZaefsvM1GUFB6JaHVVJIQMRLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0toWgrnU2n1Ux94ei9TdHs2ucdvduYcg7Ouw62j6xKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:14"]},"IP":{"Case":"Some","Fields":["37.120.171.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:543f:78b2:4fff:fe7b:fb6a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire60"]},"Identity":{"Case":"Some","Fields":["6I+OchAHCeIm8i32pQNlSABU7NI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q37HbRGIUgUKmqzP8Ty63IQWMaGbnBUwfqqyvL7Imsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:57"]},"IP":{"Case":"Some","Fields":["91.143.83.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::1af]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ORelay"]},"Identity":{"Case":"Some","Fields":["6I4uZiKIPcH4IpIUqET3mowKcCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kCTuwxIKetV98nP9P/oZKNMa+1Np7b3h+GSBBfAH58Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:21"]},"IP":{"Case":"Some","Fields":["129.159.197.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:800a:9b00::11]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6InJ7IVmAxSnzlohqhsGVADkXTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfL3yyl41gDQ26V4KMOicjdEOz/7ml9EM2VSYDGE4q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:52"]},"IP":{"Case":"Some","Fields":["185.236.228.89"]},"OnionRouterPort":{"Case":"Some","Fields":[43893]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH117"]},"Identity":{"Case":"Some","Fields":["6HLtQjvZCV7OWnla9TuUQRUOauI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JoMDYpc5T37+egXtIbu7dthHHmbjvZ6ieHbsPJu7ats"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:10"]},"IP":{"Case":"Some","Fields":["45.80.171.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:16ea:90:45:80:171:211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mailus"]},"Identity":{"Case":"Some","Fields":["6G2FjyqvneKiuVKgv4ZLfzXtyKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Fl7SHAk9eSQeNfzfEM8V+XAn+AaILf70/NflFpbHbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:57"]},"IP":{"Case":"Some","Fields":["136.243.177.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:2684::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6G0W0qDjUD5plx3pmZiXV8aTEZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ryhaRcNu7QVTvjzN5tVqgaV1Jtzkbmjoeplr/yunxy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:37"]},"IP":{"Case":"Some","Fields":["185.170.114.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torwell1984"]},"Identity":{"Case":"Some","Fields":["6Gqzio8lr02iNCy5wOhprwl4DhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nIeVrp8jWGdsdiyogA7kgNVdc6ePupmGc1SvLfOaATc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:38"]},"IP":{"Case":"Some","Fields":["68.160.134.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute19"]},"Identity":{"Case":"Some","Fields":["6GY5JP4qrU4IGhftaXbQroAQ9Hs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yr4Y6tFGUM5WjAlfIp+DLF2SgA/3Zhc2RttNK36GSko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:12"]},"IP":{"Case":"Some","Fields":["185.220.103.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["6F2ARl+ujSkauJIpLz6g1vsII1E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GuzVRoweBVO4G9RLyOMY6uUZJtwdg31tvbiPECP57I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:21"]},"IP":{"Case":"Some","Fields":["23.128.248.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Viscofresh06"]},"Identity":{"Case":"Some","Fields":["6FyOPPssiEqJb5v0lJ+76StvM/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M4lvrhOyaC8ThpheOSJ9XetZf/MjbEGUsQGLkGQ+dNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:28"]},"IP":{"Case":"Some","Fields":["145.53.186.90"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isoedideditheconfig"]},"Identity":{"Case":"Some","Fields":["6Fn/4+jQkxDyZkurja/vM/XNJG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FSOrc/dCZsEFX8Aosh2DYSPoXRH+PyK9HEljr8g+QAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:06"]},"IP":{"Case":"Some","Fields":["178.254.39.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:481::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2go"]},"Identity":{"Case":"Some","Fields":["6FYsfPvrZQHy4C2gAgP5WOixaFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8JlYK7i92imnm+5/aDJVaiDu3gxWUil8mOCpxLY/G20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:11"]},"IP":{"Case":"Some","Fields":["45.79.177.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:92ff:fe82:20a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6E9B+h0fowP9epmjXlCs70Jphow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jzD1jLI66scessE/xZo9QLc/r0cvYsVeq0Dmxu3+H7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:52"]},"IP":{"Case":"Some","Fields":["37.221.198.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:26:6831:11ff:fe02:b39]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["natestorrelay3"]},"Identity":{"Case":"Some","Fields":["6Ex22b90aUBFUG6SK4jTxD2+1iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n84iSxQ7MT5JdPK4wbzvrARdBep75PGakd4SiysxOWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:20"]},"IP":{"Case":"Some","Fields":["198.98.55.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BetelgeuseIT"]},"Identity":{"Case":"Some","Fields":["6EZuAsiTuaZgKiUczqEA8lLiW0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dywch08OqwxZtTa8kOuR1JbZZO8+6bjm1U5jwryn9/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:12"]},"IP":{"Case":"Some","Fields":["83.136.106.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:30fe:8547]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kanagawa"]},"Identity":{"Case":"Some","Fields":["6EUHvD4JM/4GjC7Qup4bh0uQVm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mhZshROm9FWxFYwq/i3YRYYLgFGkMPOGEOQaSIz+Yp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:57"]},"IP":{"Case":"Some","Fields":["100.40.211.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dominate"]},"Identity":{"Case":"Some","Fields":["6EJmAY2J9PeiuyvKHFuD7TEmtb8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hCTX45DvZM4bgjho4mn7cdqsmei8sLdh+xklJvdSIoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:57:38"]},"IP":{"Case":"Some","Fields":["23.238.170.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhNoAnotherRelay03"]},"Identity":{"Case":"Some","Fields":["6CO18ACDWmaekC665ezLmjJPRsk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtGQxui7vigwf9J/prDFXcm0Qm38yWCe/O7hh37Cr4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:18"]},"IP":{"Case":"Some","Fields":["198.98.61.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:cdf:e985:affe:1b99:1013]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProxyDB"]},"Identity":{"Case":"Some","Fields":["6CLUvLnLxkn6LM0UPv/xgmzivW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dd64UTui7q5gLp2pCP7HwfBulYNLlImMiwA9QwDo374"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:01"]},"IP":{"Case":"Some","Fields":["107.189.11.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked02"]},"Identity":{"Case":"Some","Fields":["6CH83Udzww9aFSbhHFL5YLXlb6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/aiAhNtnbP96wYyC86gRtD4Kxglyvm152lcW4y7K/ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:17"]},"IP":{"Case":"Some","Fields":["130.61.20.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8006:63ff:a274:5ee:c506:8c54]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chimborazo"]},"Identity":{"Case":"Some","Fields":["6B72CnOzgJ+JZPc3ZrAbqgoXHiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7RaL7nGAQ71pNwNnIy7IaCxTWQ8fhMWNIG/OgORjfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:02"]},"IP":{"Case":"Some","Fields":["212.47.244.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["obiwan"]},"Identity":{"Case":"Some","Fields":["6BmT6lK3MoXP/QL+wANWnSFIMAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CxKopgFBcIWR72kEShYs6PnejnE9SAQvumCPXFqgyr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:09"]},"IP":{"Case":"Some","Fields":["78.46.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["llutztorrelay"]},"Identity":{"Case":"Some","Fields":["6Bl4159fvGfdDoD26tzoipenlVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Rro8Wd7XS5Te1xfr+4S57ptLz8pZEUjETjzpS6LXHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:38"]},"IP":{"Case":"Some","Fields":["94.199.213.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:147::52]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homebox57"]},"Identity":{"Case":"Some","Fields":["6BbE1M2pgQ0ssTcSV0Yv9rzk35E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRR0BcX2T8mYh+RjvW/1PpL88vzTf5QBRjXYfnN1Qwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:19"]},"IP":{"Case":"Some","Fields":["86.115.12.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor70IPConnectINFO2"]},"Identity":{"Case":"Some","Fields":["6BY15fIoD0yt0PjdsjBope8hblg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["40eHZByJnRBXCGvrt4e++z0SSawNN2lM0WCgncmzvEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:20"]},"IP":{"Case":"Some","Fields":["194.5.96.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6BK34fQzywaEO4wNMcyHiOo8dTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ySl/gbnuWt6EBdx0uJTrTH8zBjCAhlffz8/lU9aHoCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:12"]},"IP":{"Case":"Some","Fields":["109.228.40.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi2"]},"Identity":{"Case":"Some","Fields":["6AKPDJa6S1DrfTXRqk2dxwnOYys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uuWEt8Qr9ZNUNdEsaU5J18KxgQgRF8V+/ZNRAMaY4ks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:59"]},"IP":{"Case":"Some","Fields":["46.28.107.138"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:0]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gertrude"]},"Identity":{"Case":"Some","Fields":["6AG/6QSBBvs+OaGwdssDZIzpPY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RQ572HiIJb4HpbSlxr5i9Zw6oagy5yx1BpPsvtvmhjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:26"]},"IP":{"Case":"Some","Fields":["176.58.100.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe56:2656]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gumersindotor"]},"Identity":{"Case":"Some","Fields":["6AFSfRp3MvPTC4fxRL5ooCjo7f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T35CqZVd9xxa9VsGNs85Is1/LZJFDg3Kag4RYp5pNGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:25"]},"IP":{"Case":"Some","Fields":["88.21.125.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5/79qujQGY/6LWAU3bOm15VPEYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwyNHKjBQLjG1ZAXWWQuZIwJ3ta4IVKYenOfWKejLmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:00"]},"IP":{"Case":"Some","Fields":["192.3.81.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["elites2"]},"Identity":{"Case":"Some","Fields":["5/t/IdaLPlmMCY41QLaWXcjZNPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Wk8H0o/+wustxZNcoB74J3gtdSXxtNbmu/umyDdGks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:00"]},"IP":{"Case":"Some","Fields":["45.58.154.221"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Silverwing"]},"Identity":{"Case":"Some","Fields":["5+9ztHIs+vDoqiFR06p4cB3l8Zs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZ/jsbeX2/0KGkf7vPzoriHO/8rqVYKvz6iOPz9sWig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:49"]},"IP":{"Case":"Some","Fields":["178.254.22.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["5+3WeJrf0OoiWV83u8Ku8Bno8uE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T5fKM63Oclc2Pz9h7TU9MfWhya/5Lg9Z+ITTzQiDi8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:49"]},"IP":{"Case":"Some","Fields":["91.223.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2"]},"Identity":{"Case":"Some","Fields":["5+AJLdyDlu4rV/bEaKrd3UjAz5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Eo+AoTYph9AT9koecMxrlW3cCT/uWvZer/+ef3kMPjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:31"]},"IP":{"Case":"Some","Fields":["67.219.136.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fd23:1:0:fc0b:dbff:fe0e:b25]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiebelPrincess"]},"Identity":{"Case":"Some","Fields":["57b9Fx9PXr94cW9jt9Etf2RxD/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IRMjkbxoem1x3gtMPxEVOcKv6/JWxT+hV1id5OqGziw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:31"]},"IP":{"Case":"Some","Fields":["79.249.90.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:4ff9:5a30:0:921b:eff:fe46:a0a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["57HXRDGaWrDwkliyb/2c5EYzlUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XCutdYNy4ofitCfwmfKQL34QOX2tvpKX0OkinyVeCiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:58"]},"IP":{"Case":"Some","Fields":["107.155.76.66"]},"OnionRouterPort":{"Case":"Some","Fields":[24752]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WetTrash"]},"Identity":{"Case":"Some","Fields":["56VtVvItcFJmepyBCwjHCd+ZmbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2puYkhMPErNzxe+r8T40882O/G8sRzy4yom+RcQ6nzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:24"]},"IP":{"Case":"Some","Fields":["135.180.214.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waveguide01"]},"Identity":{"Case":"Some","Fields":["56PaQryoZDDwid0yw/2jNTTnbxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u7yvalELDlwZ1GEXwb0Ah++3iMdz45nL8F2uSbuW3ko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:23"]},"IP":{"Case":"Some","Fields":["95.217.30.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c01f:30::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["55ggJ265zcadHB3O2F+5ivWMCHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Du1PiHNL5GiHRlCBx6126yu+2Q3KVu0O/3qs76xaXNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:40"]},"IP":{"Case":"Some","Fields":["141.98.6.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jobcenterfotzen"]},"Identity":{"Case":"Some","Fields":["54j16tNtR8FOQ8KJ603k20aLrBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fy9G70kKNzCgRzSv05kN26itWqn2QqQ2DCfSSmYVa/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:27"]},"IP":{"Case":"Some","Fields":["87.152.40.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["54WBP7vTUmZLwfEzzjGlTvWWxb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G3QjFVrQl9/BLlhr/CTyFpjV9vL7ZnqC4shHvzaxEOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:33"]},"IP":{"Case":"Some","Fields":["77.68.3.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:21d::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["52+oIDwLH9PysTvDFuCrupxWDRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["brwX/xIByqKChG0MIkQVA2znsjysneaMtN6V3CBh0bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.53"]},"OnionRouterPort":{"Case":"Some","Fields":[10053]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::53]:10053"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FortyTwo"]},"Identity":{"Case":"Some","Fields":["518qyhoYKRr+Uua+C6wfgFq8FDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cyGMbySSJTizEktP94nAyHQ/CGs4no44UdC0iAFrlgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:44"]},"IP":{"Case":"Some","Fields":["40.131.187.116"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["51q/KdS0F9PTVlrtr4nk+dFuc28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TF6fAECMICqbc6y+NKEWD3c+BYqUtS4blgWuYlbpWGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:59"]},"IP":{"Case":"Some","Fields":["37.191.206.197"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:feab:5d7e]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WorldGate2"]},"Identity":{"Case":"Some","Fields":["51o/rIGp7BOresmrCwQqAr2SO5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zc7w5QgOiRrkfaneZDeoUV3nnDhLyTdHQd7HJ+YNHoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:15"]},"IP":{"Case":"Some","Fields":["90.65.4.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:604:6700::1545]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipfb"]},"Identity":{"Case":"Some","Fields":["51FmztuDl7ht5RK5t5uMpyJey1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BCxw2/WgiJNvThkDM6n1yiHwBGOBIVJ9Hfz2peZocP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:59"]},"IP":{"Case":"Some","Fields":["185.220.102.245"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::245]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["50ZzcaDAYaZKmvlD9TDyU9VDM+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTgDflIGLFs/NL+0czr4bFWwl9Fqe+mbOwoVaEV+0Q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:46"]},"IP":{"Case":"Some","Fields":["185.220.101.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::198]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fezyqelo"]},"Identity":{"Case":"Some","Fields":["50YRLS9FDdwGNulr2WMeKTmcmxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2kiZkg/Wo3qWUSnK0vkW6ow4hKHVIVMbW2IC+T3kAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:28"]},"IP":{"Case":"Some","Fields":["45.130.229.91"]},"OnionRouterPort":{"Case":"Some","Fields":[10600]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:4780:3:3:d82f:b918:3557:6774]:10600"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DonBronRelay"]},"Identity":{"Case":"Some","Fields":["50NxJD7MK/xkcSUN3no1mWyCw3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuFNn48fPnPLeUiO8rncnBBIuO4Ai8pWIrgWxGy/Y1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:36"]},"IP":{"Case":"Some","Fields":["95.33.168.246"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockyrelay"]},"Identity":{"Case":"Some","Fields":["5x2NEVkIyxGWqb4Q2PQtL/0OJy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8sx30YBmZffrooibmMnlpgzLJjA+nWLH8eWyOS+akNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:25"]},"IP":{"Case":"Some","Fields":["178.79.181.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fee0:8bf9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["5uStLbxt45o1wz6dAWXASv9SzJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nFACtfyJAsRhAKk0kSq5Rzb6AGw/dv7uFtRccbSMDYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:16"]},"IP":{"Case":"Some","Fields":["23.128.248.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::230]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk13"]},"Identity":{"Case":"Some","Fields":["5tQzK/QP3ueBTy28kmZQ74AytkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8bHTjee2u8QJ0h9TmfeexlTzItVD7sVI29Qxz4ZCX4g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:59"]},"IP":{"Case":"Some","Fields":["51.15.44.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:190a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DogesNode"]},"Identity":{"Case":"Some","Fields":["5s06uB1vRYHtE/rs9quxoCDm3Ug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/njhJU7eIR0EAIHi8YIJZ9DRyMcJFQUHssmq+vw21WM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:04"]},"IP":{"Case":"Some","Fields":["54.36.203.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazarusRelay"]},"Identity":{"Case":"Some","Fields":["5r9RL+VqVIyx/YljYH0iATjER1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qi+PoYhtbbBEcvmLg10BK7UTM73SuHckD4JMYqvSzLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:47"]},"IP":{"Case":"Some","Fields":["62.204.41.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:3ecc:29d5::3ecc:29d5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5reBaGLqLa+oDIxBwxOAwfp4ViE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fttE8Ppo70XI2fCHcUrBTtSm1w1xlgJ0s0J2MzyAI7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["116.202.169.25"]},"OnionRouterPort":{"Case":"Some","Fields":[2443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaxyTorProxy"]},"Identity":{"Case":"Some","Fields":["5rFMUNpbK74/v+d9blaIAs/cJOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8RX09OWhhx956SZ1TqOEn0YjpNVk5CRCmKb2Rqj7xBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:31"]},"IP":{"Case":"Some","Fields":["79.175.97.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:22a3:100:64fd:a1ff:fe93:48c1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeverlyHills"]},"Identity":{"Case":"Some","Fields":["5pAi3sAPJZsYsvbqYWevH/S1SPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qCOwJ2GfYwIB5shDflPcBU1Hqj9Dec3WoPz4wKlEe8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:55"]},"IP":{"Case":"Some","Fields":["75.87.189.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["affinezeussv"]},"Identity":{"Case":"Some","Fields":["5pAQPz44ij2cElk28a5cZMGibVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pTH6gDormKeAyJDzUNB0BDL11fE5d8Is0x2/Uaupw40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:37"]},"IP":{"Case":"Some","Fields":["50.65.174.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:3d09:667f:e110::37f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlUA2"]},"Identity":{"Case":"Some","Fields":["5ozJwuJi4BxMccj2bwdRewq14kU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8QUf/teQJt2Iwzjk5qwT9od9nX5TVUkXtpei0/e1IzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:01"]},"IP":{"Case":"Some","Fields":["217.12.221.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::12b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra76"]},"Identity":{"Case":"Some","Fields":["5oVzOkovGEqzIIRglGUYBqYmJ7U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NrsqcxOEWDsUC34M92nu5BK9jY2r/bbdrSNAdaUOhuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:19"]},"IP":{"Case":"Some","Fields":["178.17.174.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:db::e9d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheClashFruit"]},"Identity":{"Case":"Some","Fields":["5oMVgGE86Sp9IT1KVDPe9FLIua4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gpFYGOQOSxyKHS8rpylDWC4tG+iY3pVEY0k2c9eltYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:45"]},"IP":{"Case":"Some","Fields":["92.119.123.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JupiterMan300"]},"Identity":{"Case":"Some","Fields":["5nhIWE4eRiHdiI4RrZxQR11+Rq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D8zTXXmNorTmWjiQQm27qrI0qrP90/IPIlxs75+SxOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:40"]},"IP":{"Case":"Some","Fields":["83.99.147.75"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["5lY74+Rb3+N13+RHaSXLmXklGYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6nqix89LGi988wKjCzbpGh4DQ+WU6MrpbnJgxwaYdwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:11"]},"IP":{"Case":"Some","Fields":["185.22.173.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:20e::a752]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["5lGCOgVjixqjQTcFxDR0DnCISSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XLl2u5gI/V2LUb+3if1AvD9sG2tpL6FlCqqCrZHXjFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:52"]},"IP":{"Case":"Some","Fields":["51.159.144.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber05"]},"Identity":{"Case":"Some","Fields":["5kuaVZOG5e/Uw6QmDst3XALDwDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CMqRv5b0JiTNQVhY/gFYGJq5M94aE2KYbaSpiq6ruEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:26"]},"IP":{"Case":"Some","Fields":["185.220.101.3"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Xternal"]},"Identity":{"Case":"Some","Fields":["5kYl7VsBofDpe88LXUMaQyok9Ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RTH0QrMKpnVYu6B4y81A36O9b+javIyunOmuS7MCUrc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:36"]},"IP":{"Case":"Some","Fields":["128.39.8.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MumxzbaDoRelay"]},"Identity":{"Case":"Some","Fields":["5jlU5ZTodo59SdDGYPf8ramb/Jk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xvgoq5FytcmjdgLnR5wBN8FcWExakPT87K0VoXpPUwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:16"]},"IP":{"Case":"Some","Fields":["65.20.77.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:2400:1ac5:5400:4ff:fe23:5945]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay23at5443"]},"Identity":{"Case":"Some","Fields":["5jeqCtS8zdFkOtu9bnveGxNSeGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TMbfmnXRTpf9QKzStdTDwfc4R2GbNfMecos5iKKkyL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:23"]},"IP":{"Case":"Some","Fields":["140.78.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MickThaMouse"]},"Identity":{"Case":"Some","Fields":["5isBgkUUA8F7PzNcFG/ML1Sd89s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6abSKH4hTvUgTk2u80VNxFh/HWVguKP9Af9QsIqUcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:20:45"]},"IP":{"Case":"Some","Fields":["103.9.79.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM15"]},"Identity":{"Case":"Some","Fields":["5ideisByZY4Za4njiRpZe0lxaDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eGMYGZFlgJV+ymh7CsKDxvOCk9VPu4Y+vAWodQ8YwzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:33"]},"IP":{"Case":"Some","Fields":["185.239.222.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theark2"]},"Identity":{"Case":"Some","Fields":["5hIwYyWuA/DILCkKyvuMckqLW5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XL3tDCsFL7PI8afJaL5H868vHQ4n5nUvRxAsN57FyaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:09"]},"IP":{"Case":"Some","Fields":["94.16.123.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:89c:b8d4:46ff:fe68:40db]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorKeyRelay"]},"Identity":{"Case":"Some","Fields":["5gYPCegAf8fPrHvCRHf52HiyR90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jthrcZcCETYpct1eS5F80pO9yCMzNDI0FFQV3KuaA7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:43"]},"IP":{"Case":"Some","Fields":["81.51.253.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["askatasuna"]},"Identity":{"Case":"Some","Fields":["5fPt2ScUjF6018tx3LyROC9Xp6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Efmzg4UjUw1+lcNcm+2CwoqnkWO3ojskf8t84oNR58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:46"]},"IP":{"Case":"Some","Fields":["98.2.231.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["liveinmoon"]},"Identity":{"Case":"Some","Fields":["5fH5RXZLuWn7JOyT7e12hGuMEEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COMp3G3J0n+aBo1j2fYLCAjNbBh6vtT0YDk9m2kIU0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:14"]},"IP":{"Case":"Some","Fields":["162.62.117.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["right1"]},"Identity":{"Case":"Some","Fields":["5e2h9FAmjmiObE/V952pVjCyrRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6uoRkpdMchzM+z0tNfh4Ud6IWuC/ilWhIrNZVWJ2rBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:31"]},"IP":{"Case":"Some","Fields":["174.128.250.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yyzz1"]},"Identity":{"Case":"Some","Fields":["5eVT9R2CA1os5VXbx9iD+qMu0LU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9unPK47S85HnCaAP9q/4f6EIWzUVNJA7+h2cR/+Gnzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:32"]},"IP":{"Case":"Some","Fields":["155.248.212.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c000:e400:5d76:a308:5c3a:b70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freedom216c"]},"Identity":{"Case":"Some","Fields":["5eDQErx2uOAkky+sRvPohzVOt0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0WmJg3r6wVx5xYUdXxvbzqq1F3PbHAaC4U8FanBrEkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:47:02"]},"IP":{"Case":"Some","Fields":["144.217.86.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::572c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5d6p9lcCB9uYQcoEwkC83P7DIA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wjYSKEetlNFrHi6PNwNYl76bVEuSjBr4T1qAsK631EQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:56"]},"IP":{"Case":"Some","Fields":["5.2.78.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["5ds5AerFmt/qKCN0k/YV2jq4icY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZHmVy9WcT8APAiGqNBxhS5bDCcQeaVoqrE5pxRDGdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:35"]},"IP":{"Case":"Some","Fields":["23.128.248.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG7"]},"Identity":{"Case":"Some","Fields":["5dfTU1fpxVtH4q3ecxmRU4iL1Ms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gXxpq8wiFe7WbEv1zM90xWpb7z7T0ZbZ4sMITS7WZFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:54"]},"IP":{"Case":"Some","Fields":["193.189.100.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["asagudentor"]},"Identity":{"Case":"Some","Fields":["5dToEgPTfAep0TI81jD/qLn2D1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8l2iryk/2h5CrTFiVQoJ4qNwzPF8ZBEj411g8a3xD+I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:20"]},"IP":{"Case":"Some","Fields":["213.80.102.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emergingtoadgiblets"]},"Identity":{"Case":"Some","Fields":["5bwWy8opJaeJKvkjlVoqZo3yOKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYsiVIAi9J8hn9VkDPibDVQd8Srx43Q5TslGwXuOst4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:03"]},"IP":{"Case":"Some","Fields":["203.51.38.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["5brhcjX0/HSrNiR3AEz8zUOaWog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TuHKaTU34AFS8jPi70RX2gH/ApGHlqpgXUsLc7FRMCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:52"]},"IP":{"Case":"Some","Fields":["85.202.203.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:f00:55ca::cbf7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelaySecurity"]},"Identity":{"Case":"Some","Fields":["5bf2XDbBxbieKw00EQ1kmjVm7qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BdFgpD/zkdLZF5NKC03Zh0wRnkxg95ZcmSaxbQpyEtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:02"]},"IP":{"Case":"Some","Fields":["172.104.52.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:93ff:fe98:cb68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["5afNMpAwj7mehVvK4fonmvGbFCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mMZzM77j2NaDO9Dfpr2MNTfRwmZHfgyq1+z4xKC23sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:58"]},"IP":{"Case":"Some","Fields":["23.128.248.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::57]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nutellabr0t02"]},"Identity":{"Case":"Some","Fields":["5ZrSS+VOQibPyGtPXTcKspI0KKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XPCsBx+bUPY9e1PmxFz914Qt4d6kEvVdybtXYYftNu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:00"]},"IP":{"Case":"Some","Fields":["213.171.209.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Norman"]},"Identity":{"Case":"Some","Fields":["5YpIpiM2oIzDxrQIApI3VOZaJgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V5khaA2wuCzOCQjmoGV76JV787QgM1hC265p8ATFzWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:54"]},"IP":{"Case":"Some","Fields":["52.52.230.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["epsylonhost"]},"Identity":{"Case":"Some","Fields":["5Ygci0YFLyl1uPwchLfMBgcO/ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmDiFQngRzj+7iB5RMK5sQJVXXXZcD8MYAn005Z5ZhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:19"]},"IP":{"Case":"Some","Fields":["77.3.61.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayofthehearts"]},"Identity":{"Case":"Some","Fields":["5XQUkErGfvU9H/9lBZ7KiaPkbYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jcw1ihw8EmHi0HDkguw4s00Tfv7XX3Arqwd6y4/fIwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:46:48"]},"IP":{"Case":"Some","Fields":["193.32.127.230"]},"OnionRouterPort":{"Case":"Some","Fields":[55615]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangea06"]},"Identity":{"Case":"Some","Fields":["5W8HdZ5wTE9TM04WEGbxL69/fJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CU7995jiKtaOEgh39SW0VCQPmBF28oee7SaEg8LG9Qo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:47:15"]},"IP":{"Case":"Some","Fields":["46.167.244.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["5WDY6kk6N+2N5rjErQhjSD3nLvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aWSHiEW9KLhCYGA2KuRy92y3wgUBWEPCoxs6l38bzyY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:22"]},"IP":{"Case":"Some","Fields":["5.45.98.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:45:457:d2ff:fec3:e823]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["datahoarder"]},"Identity":{"Case":"Some","Fields":["5VB0RNrARTm43GJCmWFhQbDbZNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpzsZdRzY+qIhB2cvwD4T4rD+jgHAxbbTCamzrDHVfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:50"]},"IP":{"Case":"Some","Fields":["88.86.115.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:28:ca:246::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0157"]},"Identity":{"Case":"Some","Fields":["5TaD7fhG5tJ8ZoX6SBk1+xYzlSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiGXB8sHV86+d0kV4qjQhAhaUFOkDk+mVWMWek4QZwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:45"]},"IP":{"Case":"Some","Fields":["185.220.101.157"]},"OnionRouterPort":{"Case":"Some","Fields":[10157]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::157]:10157"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber33"]},"Identity":{"Case":"Some","Fields":["5TLUu50QxxcolWHgP6yyvy8Qlv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lQSqK/xmeCo10zy8nXL1fNL+nMNE0jSZ1jeywVd60+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:18"]},"IP":{"Case":"Some","Fields":["185.220.101.17"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::17]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5TJKlEf0LCPoGpQL6qlRcy8emvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OpL3uJr2XaKTO8WrHxuqUd9AP4hq7uezzgcSz5xl8Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:51"]},"IP":{"Case":"Some","Fields":["116.80.46.130"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["commonly2"]},"Identity":{"Case":"Some","Fields":["5SaLpnIAbxe9+mXGKkqqXXJ/XgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/DQUp4UmRKo8i+PJdtQWlcWY54SjUuQU9SB1Bccywr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:15"]},"IP":{"Case":"Some","Fields":["85.239.40.27"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fai9ve"]},"Identity":{"Case":"Some","Fields":["5SHQFianYoIquX3Nnsw0GoohLX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QicQd3BrJIKsv82SJO5lED3Fj4hW1409tCtjAyz5YR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:33"]},"IP":{"Case":"Some","Fields":["5.2.72.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fearless1"]},"Identity":{"Case":"Some","Fields":["5Rl2We/xz5dxtac+GesfFwoQslA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xnyn0EfiOBqnOErHs3ga/6oqw7EbXcb23l33DxycphM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:53"]},"IP":{"Case":"Some","Fields":["178.170.10.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::529]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5Rc2WlGJnyKOmaIunk71k0cYD4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v7wzWXQTJAbj7YMrJR0XP+0UZqbE2O9698thLhyC9pE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:58"]},"IP":{"Case":"Some","Fields":["164.68.107.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:1426::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gugusrelay"]},"Identity":{"Case":"Some","Fields":["5RZqTloErbrcDLfqhUBZOJjx4QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rm4VPftlGYM79nJ+1usWu7+S4CS0QPXNlh5uAzAzDwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:29"]},"IP":{"Case":"Some","Fields":["82.197.183.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:52e1:10::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stargazer"]},"Identity":{"Case":"Some","Fields":["5REr1tBoSD9wW1jSUlTKgUMLxEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MWPt4hHFnppbdE0dEBdttwrkCDs2mE5AmKDl+RKFD4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:38"]},"IP":{"Case":"Some","Fields":["45.55.240.225"]},"OnionRouterPort":{"Case":"Some","Fields":[2916]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::215:d001]:2916"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandman"]},"Identity":{"Case":"Some","Fields":["5QC2V5ybNzWbc7WMHuPe6S6bTzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x0P5BjmrO8xzgbschbYz7BsQxL1XOVHnNvSrNcSm1YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["23.238.170.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lucuma"]},"Identity":{"Case":"Some","Fields":["5OzNjuiJ6Mw+g54NjrPTUNsTwog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IRacKk84qjAIQ+2l6SkbzkJvODDhHZZjm5f5Vua56k8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:15"]},"IP":{"Case":"Some","Fields":["172.106.18.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute01"]},"Identity":{"Case":"Some","Fields":["5NHyXfvkhCCIZrpKGpWLcxJ8sK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sPQoHCedS3ef2uB+uYo31zTT3Fg8P5wpND/eJ++rEcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:35"]},"IP":{"Case":"Some","Fields":["162.247.74.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBlindAppearance"]},"Identity":{"Case":"Some","Fields":["5MEr+zrC5vFuTx80qoB9Edkk6QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3qmxRLSMMU7XXZdqM50HMSBJ2CwGFIa90k07T21kk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:45"]},"IP":{"Case":"Some","Fields":["212.73.134.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["5L+tSdIdODhIXGLYQpOpfaqqNbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WiuSpk0nlgfpEYz9tAoyx/3MSeSzDT+bLknLrFhnq2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:58"]},"IP":{"Case":"Some","Fields":["95.214.54.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3646]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5LDQq/dvrrwMlek2OnWm8MoPXhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["db9YAd+Eb4BJy+ZxBZL8KmuYMHqhnAbHbcV4IHFv6KM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:20"]},"IP":{"Case":"Some","Fields":["116.202.169.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fusion"]},"Identity":{"Case":"Some","Fields":["5LDK0RtUh8Rik3WaPUt0SEz5NQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9mUTIofbtn9gHp7+7NJRwtbPYoCjT7OImHJ57No4/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:23"]},"IP":{"Case":"Some","Fields":["148.251.46.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:172::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["irons"]},"Identity":{"Case":"Some","Fields":["5K1g84tA6CiMlGI5hrcUm8656Tc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FoQgYqJjsCwJXdMhnKh+Nngsr/+bPbdPH4Aw2UBL2cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:18"]},"IP":{"Case":"Some","Fields":["138.117.148.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["threeletteragency"]},"Identity":{"Case":"Some","Fields":["5KsusPf+R9Zxk3cstWSzF+QWGEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVCRTS0yXt7cwLXaJQwWSqoRVYJrHqDVIBQj9/DZW74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:19"]},"IP":{"Case":"Some","Fields":["190.2.150.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:7c80:0:171::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["5Ki8guZgUo1bC402wIq0S3c1FzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KXC+ATYcshaf+LIW+qAAxzKvx11TFIyzqznatmVT7Eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:40"]},"IP":{"Case":"Some","Fields":["104.152.211.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UseMoaBandwidth"]},"Identity":{"Case":"Some","Fields":["5KfPMtHsgVIeI0yL9GOE51g4qNc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SeDmnT4W7ZUWlSlg3WMW5GJEFPPLjWpzZUBQaEW5LkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:02"]},"IP":{"Case":"Some","Fields":["163.172.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["5J82ltwTlGpo3yqqbtpGC8FdjwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RP4+sA27409+8cJlyosZEErdFnTVJbEDMVEgOjEL4a8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:44"]},"IP":{"Case":"Some","Fields":["185.220.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10033]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::33]:10033"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5IrQLFT9P4w6TqN0Us4ygaDSRqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qqz7/chfdjdUr4Kxk71Q3QWmhVsCTnb1LR0uVqEn2kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:14"]},"IP":{"Case":"Some","Fields":["79.143.183.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9200]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToolHaven692"]},"Identity":{"Case":"Some","Fields":["5IXzQaauVB3zE6wBynxeHdOCCl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLmmCGCgd6aLxMPo/6XlZop5Pg2XfYzXTleS8ZJi4Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:25"]},"IP":{"Case":"Some","Fields":["104.149.131.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex34"]},"Identity":{"Case":"Some","Fields":["5IDVd/WOeCpbxPpvSaZlDpOJMC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9y4UC16BtpO9M/eSCgwV76l30Q3NmqZkkG3SD4hl70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:39"]},"IP":{"Case":"Some","Fields":["199.249.230.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::114]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["5Hw0cWaOp/F0w7KTeWVEqRfg3Pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["90zN3Ee9K99Bm2UR9mVJVIOPud+2YVrWSjNRuczX3BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:09"]},"IP":{"Case":"Some","Fields":["23.128.248.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::225]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mfet"]},"Identity":{"Case":"Some","Fields":["5Hwwzi45fM2vDt6Tc5eJNnkH2ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xFlmQ9oBbvzEbOGqMiYvEKnH3rfzTWN/lB0rH/s3wvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:34"]},"IP":{"Case":"Some","Fields":["83.38.29.136"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["highwaytohoell"]},"Identity":{"Case":"Some","Fields":["5HPT7eWbCqRYIXcxsEWI4PT+BkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["swm62QT5ZeivCQAyGsBDnYH8fVYAtW2Hhm16MiGVmOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:43"]},"IP":{"Case":"Some","Fields":["85.214.58.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["teller"]},"Identity":{"Case":"Some","Fields":["5Gl5owU9Q63xh0Y6bkhWyHW8jIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XkrgevIwQIGylUokxYsE8BCRQ2K4Iah8rEFQcNNtf0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:51"]},"IP":{"Case":"Some","Fields":["69.164.221.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe70:357]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalist2"]},"Identity":{"Case":"Some","Fields":["5Gd3xu+2A2GQ76rZsT7p0OdcVRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CB7IzHJuEyPoK/Q5dbbDWz2zpbLiq7J3tQn8237B03g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:21"]},"IP":{"Case":"Some","Fields":["37.252.188.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra19"]},"Identity":{"Case":"Some","Fields":["5GWtFmeYo80KSGb6Kou1rdFX+9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uNYzhsjZI0WzTimAUkuijQ4kZxpJqmQTeUa3VL1APUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::125]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Secretworld"]},"Identity":{"Case":"Some","Fields":["5F4T2Ln0mEX2qREO8boq/4/yayU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RkdY2LU08l4K2KWF2n+Jg05jvunESFjWQ6eBhgXdAx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:15"]},"IP":{"Case":"Some","Fields":["104.248.159.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AsiaArgento"]},"Identity":{"Case":"Some","Fields":["5FngI3TQOF0uJRXLvnB+ogiWa88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zWfRWn1aTHrLVehlXf4ejAaYXOeyeQ8fFZfTbkaWO48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:24"]},"IP":{"Case":"Some","Fields":["163.172.94.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:208a::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torx1steack"]},"Identity":{"Case":"Some","Fields":["5EY34gtNugpJRCThGPABESq40hM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e1egU0nEoPkdXRSosqalQinuZELPnbl+Z06PdbeRAqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:35"]},"IP":{"Case":"Some","Fields":["194.9.173.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shade"]},"Identity":{"Case":"Some","Fields":["5DtCwVPi9CFdWBoSG32tVo/j2xU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aGzGutdV8YH1qbPiW4mxxmR8m/t4rvUyZw4VHgKbRbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:43"]},"IP":{"Case":"Some","Fields":["176.9.84.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:151:2234::2]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HSLtor"]},"Identity":{"Case":"Some","Fields":["5Do0bLgd3zZLb/aCNa+tug6Gkrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cxm9nHG2YlVQtm9v2NA+SAkwrBbSxbMvhOolq8RWFpc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:40"]},"IP":{"Case":"Some","Fields":["185.220.102.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["punki"]},"Identity":{"Case":"Some","Fields":["5DJEaE4Mkk7AgrjsxzX68vjPHEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8FPFhkkF1tXkKEwoKwQWDbTuvOw6EcAbsBg1yhR+CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:02"]},"IP":{"Case":"Some","Fields":["94.32.66.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monkebarrell"]},"Identity":{"Case":"Some","Fields":["5C4w2fnCko4VqsQVjsAfsV09Nsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lj5HhITBf/XWYekjmUxI6dUAd0YiA3ssjS9ZGEHXNIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:34"]},"IP":{"Case":"Some","Fields":["103.214.6.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["5ClU/p2XrvTLycSkLKvuy1kmtfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qfY45lY8gzBLo1nRU4kczHPV198y24M+kiZavU1oCU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:53"]},"IP":{"Case":"Some","Fields":["136.175.8.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kptorrelay1"]},"Identity":{"Case":"Some","Fields":["5CE3ERRXe32sDTQ7Kq9j3mE1MIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46QQSDA7+eOoXWKLcZMAvipAKViVhFdV5OuEPDIYdos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:12"]},"IP":{"Case":"Some","Fields":["47.181.71.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrebenBits"]},"Identity":{"Case":"Some","Fields":["5BsijDLanCsRqi1urBjzRXFi5m8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pi2s1H6XERY3wlCub/yxflgjubH7xaB2BZPBecZmfPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:46"]},"IP":{"Case":"Some","Fields":["212.60.126.143"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xmission1"]},"Identity":{"Case":"Some","Fields":["5BsW9931LrsdtCaKsv40CzetiQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A4E/nX2+D4BhKlGcmuN3vd5q8MfczFtyaknVRv6IPqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:22"]},"IP":{"Case":"Some","Fields":["166.70.207.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeroMeaning"]},"Identity":{"Case":"Some","Fields":["5AEtOw37XLdDohwspBIxu6KXhrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+PxS0dzI1wBWkix/2CMockjWW1Zyq/ZItmZn5JTXWu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:28"]},"IP":{"Case":"Some","Fields":["198.50.175.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1d:395:2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Finisterre"]},"Identity":{"Case":"Some","Fields":["4/mMhsngETjdjqBrHmYKDNtLJ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FFF70tT7uZtHgh8cTS/Lb9hBMS7f+9TNvDphvw+8bNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:31"]},"IP":{"Case":"Some","Fields":["95.216.115.85"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["90377Sedna"]},"Identity":{"Case":"Some","Fields":["4/fafMfVtswIV5muBASqTS1QPlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g2XGDXXp6rQ1zpo16tCIPUt/AnhDCcu7oVOemOLVMr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:58"]},"IP":{"Case":"Some","Fields":["150.147.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fidel"]},"Identity":{"Case":"Some","Fields":["4/cX4HbY//4xxb6Y10YcnVRL9gE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEVSI11pyc765Yeau8stFhtXBnZRKFFYcDU1qLdSgjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:41"]},"IP":{"Case":"Some","Fields":["46.166.162.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrumpSuprtrsRDegens"]},"Identity":{"Case":"Some","Fields":["4+2bTVu2WjF8qpmNupSYhJgusAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtAX/1YKQGBOYv7WsDZQpo6nXRUq2Il4wFkkfO/oezk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:07"]},"IP":{"Case":"Some","Fields":["99.120.173.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cebeta"]},"Identity":{"Case":"Some","Fields":["4+nGwLVfHBlq3/tm3Mm9wxqeTyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+fqtO9DpTPEGyAsjDYkOvIJYEVt77w4EKi/Muz34mvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:17"]},"IP":{"Case":"Some","Fields":["46.183.119.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BruhRelayZ"]},"Identity":{"Case":"Some","Fields":["4+dwFdBIaIFZ97nc8MiOcs0QA/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UBMhtYtz/RemkQwb4WPWpKTCbiNLALW4x2YO2UnrlPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:48"]},"IP":{"Case":"Some","Fields":["172.105.8.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:93ff:fefb:588d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra17"]},"Identity":{"Case":"Some","Fields":["49rwZ7AoRQsxz1zhGPL5rFMUar0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Tyxy4cFElDd1dyLUFlVV/uJtFDwWkk77CXwr73c4Hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:07"]},"IP":{"Case":"Some","Fields":["193.218.118.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::156]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pnkantor001"]},"Identity":{"Case":"Some","Fields":["49EhFsvm1l88AYt6li6z893B17E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rsctlpj0WUT8SiEvzEtokM7nE6GNadQ9Emtx4jlw0Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:41"]},"IP":{"Case":"Some","Fields":["63.141.234.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["las1"]},"Identity":{"Case":"Some","Fields":["48gLkWIPm0NSxAOy1pLAlAPaJZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCAEp9ywqrb2VjUucp8MQMWo/rd0B/V+2D4+WWCnRqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:20"]},"IP":{"Case":"Some","Fields":["209.141.50.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:104e::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlleKochenKaffee"]},"Identity":{"Case":"Some","Fields":["48M5X22miT+zPahts3KLOHOE0sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5QkundMLed2fLCg+rIQSjYAOIcwUoUOOsCtXfnhPbQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:08"]},"IP":{"Case":"Some","Fields":["129.13.131.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a00:1398:5:f604:cafe:cafe:cafe:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toriligadaze"]},"Identity":{"Case":"Some","Fields":["48L2i/WJEmpxQOwhitZr7l77ymw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQMaarTzhk7jeMKxyU3UjBFXO1vaUXUkcQL64Xaj/8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:35"]},"IP":{"Case":"Some","Fields":["93.219.37.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex98"]},"Identity":{"Case":"Some","Fields":["46SR1JDcHDgy1/aGFe60UIyFfYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xPHtOzKqIb1fL8H046F861WOC7XORjyJbEce4o3SEcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:19"]},"IP":{"Case":"Some","Fields":["199.249.230.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::187]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste08"]},"Identity":{"Case":"Some","Fields":["44j3vRlvUZWu8RRVJYUVLqaUIyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SuEqLMdqfxBO0BiFQmn5x/FiL+0+146PyERxe7up0+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:15"]},"IP":{"Case":"Some","Fields":["91.143.81.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2fce]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay02"]},"Identity":{"Case":"Some","Fields":["44R0gpP8RCnitCc2DbT51MPWGdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Mae0L54gZRIp7CoRfFktBKhVrmrqBUuy9fc4YWxBA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:31"]},"IP":{"Case":"Some","Fields":["87.62.96.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9032]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hackeriet1"]},"Identity":{"Case":"Some","Fields":["43mmys76/huOpoUDv8/xIVvx7n8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ILo7AUS5BAG9AVJye54xYAlmvJLTDwTJSacg/bmQe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:54"]},"IP":{"Case":"Some","Fields":["185.35.202.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:ed06::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YATN"]},"Identity":{"Case":"Some","Fields":["43gpO+Y6cI2quHj+9Kb5zd3QLNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M5O4xJYL3415KvvZATDi3heSG7+AlgOVHwuiKOQs7NM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:14"]},"IP":{"Case":"Some","Fields":["3.21.228.16"]},"OnionRouterPort":{"Case":"Some","Fields":[30002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quokka"]},"Identity":{"Case":"Some","Fields":["43XNI9YMIpG9BOl8v057qQ4+VOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MSt3MgSu4M/QeDDiU4nJSxj+nbEj+RXTamabtn7PjX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:48"]},"IP":{"Case":"Some","Fields":["109.70.100.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::73]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["naiveTorer"]},"Identity":{"Case":"Some","Fields":["42U2QEIAp0kw2xZYWL1btVTSvqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2K47VkYvZeN9l1WPPg2/Jvt4+vQKWd6V63IDGCNQBco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:58"]},"IP":{"Case":"Some","Fields":["81.6.40.93"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["40+l0hibqOVIBUAUcRo/hDC/O90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XR8oWvslO1SC8eLNU79PoFSGkXO5rDlkK/cNuvWiq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:23"]},"IP":{"Case":"Some","Fields":["45.87.42.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["40jR1ufhIiCFanfFtSrMF1Olj/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FWP8OhBoVexN4fdHzU84o5pfc5G7AdhHr4oYOmAgTEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:59"]},"IP":{"Case":"Some","Fields":["188.68.42.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay5622095"]},"Identity":{"Case":"Some","Fields":["40DT5Pr5zQvinBbka9mCoS0rKdw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y9gxQ8WRtou4VEqi1BAn78ihp5blZN51kqgGFU0sR4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:02"]},"IP":{"Case":"Some","Fields":["185.142.53.93"]},"OnionRouterPort":{"Case":"Some","Fields":[10283]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:ca00:0:8000::f9]:10283"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamicTor"]},"Identity":{"Case":"Some","Fields":["4zz/1vA9U3hJk4ArM9+uKxeMYMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["baQtXMQf/UFCyc1a6Jll4e142T9NxMv88OzMzqOr0t0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:11"]},"IP":{"Case":"Some","Fields":["198.98.60.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:4ed:1:1:1:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HostingOSde"]},"Identity":{"Case":"Some","Fields":["4wvvlySUQ4l6oFHgpkMQZz/2NUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B8+9H/tWBrHUe9U9ArzxZBIWU9ko8kyvU33jWHlegwQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:48"]},"IP":{"Case":"Some","Fields":["89.58.40.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:deb:486c:9bff:fe2c:bcc3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vale"]},"Identity":{"Case":"Some","Fields":["4v7Mj9ugAHjCggEpUY2eGMIUiVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZKcp7+kaXVrxNgvYmoaF1rJTZENPOLmk4FLYSzh6UGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:52"]},"IP":{"Case":"Some","Fields":["185.243.218.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:32]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daNickname"]},"Identity":{"Case":"Some","Fields":["4t44/eeyL6k01fKhUGjdB47ibyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZYdqdNkzcqQEhsZlftgJM2ZDZohd89PEub/a1C/dd9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:13"]},"IP":{"Case":"Some","Fields":["173.66.192.213"]},"OnionRouterPort":{"Case":"Some","Fields":[1111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElToro"]},"Identity":{"Case":"Some","Fields":["4sav46NHsUz2OCpeqMY7UPfEeRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["82Kv6n/rNPFCiaLN5W71Fv9dYLOLR7VGDpCzITaHKrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:54"]},"IP":{"Case":"Some","Fields":["91.119.68.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["whvger"]},"Identity":{"Case":"Some","Fields":["4sK3Pv/7PqWTOA95us+7TEuec24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTzOpAE7hFCyn1exUGS4//S0CUXKFsU4N/SXjfFBKSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:30"]},"IP":{"Case":"Some","Fields":["87.123.99.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv113"]},"Identity":{"Case":"Some","Fields":["4rqv7OXD07T/5hc7MJeUjg9zBiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXjo64UDI7+3OVh0JRU1wt8S5ojJBnLDcVZ1MC/jExw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:48"]},"IP":{"Case":"Some","Fields":["192.42.116.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5513]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer16"]},"Identity":{"Case":"Some","Fields":["4rfOAeIIYzKYbvbZT27MgKDE/vY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IAmND4hsttp/5MPSM3bVj3PToZDnhIM2S5oamMMqeY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:04"]},"IP":{"Case":"Some","Fields":["185.243.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8126]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:41]:8126"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer77"]},"Identity":{"Case":"Some","Fields":["4rKMD0WjE5r199TcS10WxjTjEMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t4kiR+DijiPSi+zaHQKNfO7CVv3vmdjsb23vlJ26KCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:47"]},"IP":{"Case":"Some","Fields":["95.214.52.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8177]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4q9YefOf9A34mU6bj66rJRiu66Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LJ89BQwbGmybuRkA7zosVR/8Cyn0ydoI7VaD4H0QfNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:55"]},"IP":{"Case":"Some","Fields":["5.9.129.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra39"]},"Identity":{"Case":"Some","Fields":["4n08D7HgBJvhW5tT0CkF9BsMBCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZitr81j7KkEvm3DBT0ijWVJRTURNYIYpL6tEUn0Z0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:06"]},"IP":{"Case":"Some","Fields":["107.189.31.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hecarim"]},"Identity":{"Case":"Some","Fields":["4m1agrfMCh6Eahv2RYE7/GqMsjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqXhyDhzRV7e6j7a3gNEKKz4A2d9HKUJspJGzlQFMng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:20"]},"IP":{"Case":"Some","Fields":["18.217.231.202"]},"OnionRouterPort":{"Case":"Some","Fields":[33123]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IteraTor"]},"Identity":{"Case":"Some","Fields":["4mhtQEy6fkvWYAw1d+0PxjM2gE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+xHFb8Jv6L5JigQ7g+mdu8L1X1IRPbWjFiBibP6Eq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:20"]},"IP":{"Case":"Some","Fields":["176.128.1.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NvorDarkdrop"]},"Identity":{"Case":"Some","Fields":["4mY1+e1BzahGfCqpktgQdDN2Au8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r2F3P+xiXLhXsrz2RlJ7iBo4YQ9ug62oSr4ihRjFwV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:28"]},"IP":{"Case":"Some","Fields":["138.197.166.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bitcoingang"]},"Identity":{"Case":"Some","Fields":["4mO4YO+hd/Dd4ww4H4k/KAXBQNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JDKWRe/EPEBkjvQuNneypkNDNTFly8KlcDssDI0b8UU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:26"]},"IP":{"Case":"Some","Fields":["84.236.53.193"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MovieParadise"]},"Identity":{"Case":"Some","Fields":["4kjtWcA7d5KsGGQqnNMI47BhiGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVCdA4107cLTOQNmJll80MeInrWgf/LIOeuqV5BREhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:20"]},"IP":{"Case":"Some","Fields":["94.242.61.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeAssange2021"]},"Identity":{"Case":"Some","Fields":["4jvi85HFG7FDzCwCUb2+LekIuEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zh3K7Gab0+QmzmFl123W4QIFQ+osZtf4QNQeRQdePJY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:15"]},"IP":{"Case":"Some","Fields":["142.132.186.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[993]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:16ab::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thetdrelay"]},"Identity":{"Case":"Some","Fields":["4jkxkjEh2mTBLLaqILbyw+VWJ/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EedghGNiimIEmkyTnvwd29VMW1oODB5YEgx9KLBa3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:52"]},"IP":{"Case":"Some","Fields":["209.250.238.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MAXKO"]},"Identity":{"Case":"Some","Fields":["4jbwfXZHLJFLCbi6UpMO7TVV5q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h33NibRZPEAwt6B4tS0P3HldWvJcg2s4XqityDzKAf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:08"]},"IP":{"Case":"Some","Fields":["45.95.169.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["4jX+yNrH934Vhw+xQ695bFKAgO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2vTM2MYiYz4pVg0GK7qReOjUJHCD2HWj64CPuZdhYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:13"]},"IP":{"Case":"Some","Fields":["23.128.248.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::41]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YouOhKay"]},"Identity":{"Case":"Some","Fields":["4isB8J2hqlYIfW+WRcSlRxcIkHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ngiaiT71Z7fuj1MegR3j1MmfhzibGQtG/bctItFiF5I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:06"]},"IP":{"Case":"Some","Fields":["46.17.63.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:348:70:46:17:63:214:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev9b"]},"Identity":{"Case":"Some","Fields":["4iaU6D2nvPMN2vV4Du85TNA3DMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5aDdwJ9X3aetcJ6Zi+sbH5WvOhJMBmAst0R+wrKzs0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:56"]},"IP":{"Case":"Some","Fields":["94.16.121.91"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:8a8:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jubilee"]},"Identity":{"Case":"Some","Fields":["4iYz/xyUEq3tcx97Mam3UyFCyJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6YRI4pKAV9X8gWWycdvqE7fZfzSmdVo5Ru8UueaSI/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:20"]},"IP":{"Case":"Some","Fields":["147.135.54.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solis"]},"Identity":{"Case":"Some","Fields":["4iJWxBVtR5A6aD+rKQzYHKDXSE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4dPiEAOgGaUZij5LdwXEi6MQ8yJoJ2kZNpOMNZVSgSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:44"]},"IP":{"Case":"Some","Fields":["140.238.212.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay48"]},"Identity":{"Case":"Some","Fields":["4hd0bLOxM5TBbPp81IJBVL1Rn0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7hrs7IaRw43ajDb+aG5Ark/2d/E3gbXwh0d7T/WCUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:40"]},"IP":{"Case":"Some","Fields":["202.142.138.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalRelay1"]},"Identity":{"Case":"Some","Fields":["4hM2pdWwKDnGPh9o3BzgOwZ7rMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RinzC9cBVVzADBbwWjEhgcBhXSchYGPhmQXZ2Fu+g1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:57"]},"IP":{"Case":"Some","Fields":["91.208.206.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5130::aaaa:2d9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rudimentatious"]},"Identity":{"Case":"Some","Fields":["4gf2J+zkNF5nDgV1uQGWhCFlDI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DAYQYyyf1lvPY1krFuZxUG0AAz9CKtqx1vS6kZ3WGNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:37"]},"IP":{"Case":"Some","Fields":["86.62.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[59030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv25"]},"Identity":{"Case":"Some","Fields":["4gJ7ycXyzivTvgG4gNy5QWrJZxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DA6LGaslZfRbxJdJirYr7l2M9KBT4Peow14FWluMU1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:20"]},"IP":{"Case":"Some","Fields":["45.62.224.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LxcTorNode"]},"Identity":{"Case":"Some","Fields":["4e6qkWe0CjZ9mrQwM2SIAOmuLnQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wyAVog9sHm/k5Of/vcRlPbUS+SERGlwmjnKb4uGVEHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:16"]},"IP":{"Case":"Some","Fields":["45.80.171.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:222b:84::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liechtenstein"]},"Identity":{"Case":"Some","Fields":["4detv1JiaBnUmetKnj7xgI6SQuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["44dkv3pl50YLO9I+H1At7H8Y+82tchRaMqIr7QOlUwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:27"]},"IP":{"Case":"Some","Fields":["23.88.75.73"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yee"]},"Identity":{"Case":"Some","Fields":["4dSGzcpF0y25EQYLcKb/PN0nY7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZ6lA1gXBHYfYcENyVrAg1qnEzRPwKUxAjUjCPTSpW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:44"]},"IP":{"Case":"Some","Fields":["103.214.5.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8300:5d9c:6e11:6f98:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra8"]},"Identity":{"Case":"Some","Fields":["4dIyjQ2yoG7oWr2djXXMXb3f2lw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["44F6nbSv+OOHc6Y1zYAlhk7zKedm+aAubwc7tmKkWe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:30"]},"IP":{"Case":"Some","Fields":["213.164.204.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["4a9Tc+MkBWa1mPpIGtOGBUn2Fos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gWM1iIyPxImt5P+XwZiKEmnVZekv4Kl4K0tXoKWu4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:45"]},"IP":{"Case":"Some","Fields":["185.220.101.199"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::199]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idejasautors"]},"Identity":{"Case":"Some","Fields":["4a2CAVQPd3tkYUsnv4J9RwO8yLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uEgFVOxWsApargcAkTBsETn3/TzSyFFjjtNETe45dP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:04"]},"IP":{"Case":"Some","Fields":["85.254.143.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bbhr"]},"Identity":{"Case":"Some","Fields":["4aBtAcNEHFsfcwTYGoCuGDHVSuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZGKa4GultCGpU/vE3eYomKN+6TsWXWTapUTE+zC3m1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:15"]},"IP":{"Case":"Some","Fields":["79.195.139.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carson"]},"Identity":{"Case":"Some","Fields":["4ZdIfGPFoT7apxFEstMaoXTv9tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ywm502Ms6cAB5/GwzxL16Rp8OZUg3A36uQmhsYjWNzg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:20"]},"IP":{"Case":"Some","Fields":["172.107.201.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IhazTor"]},"Identity":{"Case":"Some","Fields":["4ZHJWUU0YTZUS6Mmp9rPIVbL7fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4W6Ws2dpOwIl0ZKZwkyNjdqMSF0voSYwTKTddXixO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:56"]},"IP":{"Case":"Some","Fields":["37.252.189.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:e:17::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorPi4Relay"]},"Identity":{"Case":"Some","Fields":["4YUkyhjW9Knm+1SMZcfHcTZe/L0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXrfxl9ImJWm9ToNCJEWjuOa+UG4G2LW4qukT0Wzg7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:24"]},"IP":{"Case":"Some","Fields":["216.36.0.99"]},"OnionRouterPort":{"Case":"Some","Fields":[777]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer88"]},"Identity":{"Case":"Some","Fields":["4WbvwwuSNkyhYFxxb1Oxds549f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OWXfojFcYJ/LQwe196gh9z/WBppx3a4PkjQKAZKN32g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:58"]},"IP":{"Case":"Some","Fields":["95.214.54.65"]},"OnionRouterPort":{"Case":"Some","Fields":[8188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["4WaqC8D5fCXvAhk9OXlEKoKDZRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kJZMX2rTStnnThiFxMgK3+yhoj0wBLT/p9H4ucHukqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:51"]},"IP":{"Case":"Some","Fields":["51.15.114.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VenusTorFIN"]},"Identity":{"Case":"Some","Fields":["4V663ueZ/2aMzI1fwS+AJfR0X/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9nBr4tjTbBd5+dOFscbYvK9s6vHXkxRqXgJjRmqIzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:31"]},"IP":{"Case":"Some","Fields":["87.92.80.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["4VJ2UuW7+1kYzmngQUNgnY1BXvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eTSlPsMwFFF8Ac028Rb1cq/fC8oPDnv7gV7e2YQf7r0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:05"]},"IP":{"Case":"Some","Fields":["178.175.148.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VonKuenheimRelay"]},"Identity":{"Case":"Some","Fields":["4UswqD/4DFdrLsDyyKXynUG43I4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AwapeOP1rsMJuRRygkPWhqCYL2F1n75jM5ACS+aYug8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:40"]},"IP":{"Case":"Some","Fields":["116.203.64.212"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:d75::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["legoman"]},"Identity":{"Case":"Some","Fields":["4TApZoO4lqEXzl2lMaVkVkQXhzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dzuXHSa2usdMphKrJ/zBgD0Ho26cvTlbIMDVGuMjrW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:45"]},"IP":{"Case":"Some","Fields":["185.21.216.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc10"]},"Identity":{"Case":"Some","Fields":["4S1SvT46iAmO7dOJh00wgWgBpGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GM6735F8XvrlJ/qwewPhPqmY6+Jhjv4G/i+HYxU5SuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:59"]},"IP":{"Case":"Some","Fields":["185.100.87.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mack"]},"Identity":{"Case":"Some","Fields":["4SyL9CGw99o+VdmpO/m81V+k77U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6dUMlIttWSrHEHYDDG91E1d5BmqIp8Nb1ADUFQ4Wv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:09"]},"IP":{"Case":"Some","Fields":["95.153.31.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ub4"]},"Identity":{"Case":"Some","Fields":["4R/HyD9BeAikzdhKWr/BEoRMR3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLdrQarYz754TBJGRRkeVxy6JYkvNS5r83lYu6cWh2w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:07"]},"IP":{"Case":"Some","Fields":["82.64.46.143"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:281:be00:1ac0:4dff:fe23:e65c]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KryptoKiste"]},"Identity":{"Case":"Some","Fields":["4RmsLVyJ1jL/BiSXB9vHDz+HcA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["597e5SkHDfH2oBR4meY3QJKMAIX/gRYyqnh2a/D83u4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:42"]},"IP":{"Case":"Some","Fields":["95.216.159.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1763::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berrycup5"]},"Identity":{"Case":"Some","Fields":["4RSA83VQ4RAncY7p/K3NrQuRyLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Slz/Pv7FD9v1fqK8DBWSklQ50do/oyWshxu1lndmtAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:20"]},"IP":{"Case":"Some","Fields":["18.18.82.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["4PwrYDO8wa1crClaCxnPbPU+7RE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cw5+MaKPp+j7LX7GD7JsqwOeH2I2xGxCG5iDyTl3luo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:27"]},"IP":{"Case":"Some","Fields":["185.183.158.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["4OxtsYyjZ/5thHjTLXYDRuHEPxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+3IQ/3bZGvAIrEGuoNobPEsHeQ+ZUvlVy2SY/Y2jrTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.56"]},"OnionRouterPort":{"Case":"Some","Fields":[10056]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::56]:10056"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH113"]},"Identity":{"Case":"Some","Fields":["4N6Ugxi3fOpAiumjlVV3/+FITYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NIIDW6NhK1C+KRBtgIsqI9V8lTFyGk/x8E+sa9ekNiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:31"]},"IP":{"Case":"Some","Fields":["192.42.116.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:213]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pincopallolandia"]},"Identity":{"Case":"Some","Fields":["4NR183+dOWWC6AIv8CUKrTUrsWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uZewQMHabnM3keKxBrU/VcBvK5mRTFGxykqer1D6uro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:35"]},"IP":{"Case":"Some","Fields":["217.133.59.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9070]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSpy"]},"Identity":{"Case":"Some","Fields":["4NIvO1qYiqtWa4KSptPZe3vlTgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hI7B/U9L2rO/MSsMFrPNckeTb3friEdwsQDSDbrf3Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:21"]},"IP":{"Case":"Some","Fields":["185.112.146.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["i82blikeu"]},"Identity":{"Case":"Some","Fields":["4MfVUbVF3NnNI32BQYWOJX1zQrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["++2N1ME4qlSMNAh7oZy6J0w9Fcikav+1xnYjElpKG1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:40:11"]},"IP":{"Case":"Some","Fields":["89.217.116.95"]},"OnionRouterPort":{"Case":"Some","Fields":[21698]},"DirectoryPort":{"Case":"Some","Fields":[22503]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KherNl"]},"Identity":{"Case":"Some","Fields":["4LOxAibwZ6GyFReNGaGe8xHn/cM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KGCgZnLwVjA16qlVHHvFktM9m3aVAO+n5hxPNtE9UlY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:01"]},"IP":{"Case":"Some","Fields":["51.75.206.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::7cb4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UseMonero"]},"Identity":{"Case":"Some","Fields":["4LGYadCHUr4DCRLEFFqNsoKZN8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7nfs4mH+vHDdU/Ri6PJBC1RlTKXbzdHaaX/ybHqHpIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:46"]},"IP":{"Case":"Some","Fields":["135.181.202.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:8aa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyNodeWAW"]},"Identity":{"Case":"Some","Fields":["4LFOhaqdnzMIGK3dW4NpwDPcPik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59rlRgWcXYcJikpk/MLVRioASR9EI6jEVgHFJPuTaUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:15"]},"IP":{"Case":"Some","Fields":["146.59.94.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5243]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["4K2qMekRJcSNQbt8JnGyW64lrxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UcCuVxjD/Tux8x9kY8ESbfAZB9f11UxXmB8LNLMdQ3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:55"]},"IP":{"Case":"Some","Fields":["185.207.107.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redsox"]},"Identity":{"Case":"Some","Fields":["4KNHHCTJAhzFj793QgMEb9K8iT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kQoAl2kGMB5TImajKO26e0UQ0Kuc2pGYgfdQb0Qm8uA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:28"]},"IP":{"Case":"Some","Fields":["188.126.83.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dappertr"]},"Identity":{"Case":"Some","Fields":["4JeCxfEZEx1d88d7g+MhRperY3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nWb3DSAK7/l/wLkHCyUqXczoDff7zpHhDnJd7KUk9tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:07"]},"IP":{"Case":"Some","Fields":["199.195.251.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kishaver"]},"Identity":{"Case":"Some","Fields":["4JTnev1AwIAwGVGvLMKXl1uTWLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["11UGplc1r8/Fzpwq4kIIQ4Z7O0wgD0wJw65VBDV6Vec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:51"]},"IP":{"Case":"Some","Fields":["91.120.111.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["4JTOM5LlkSm0SwHbXGOqUvX/RWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nW6DgS4PRgtWoxGoQs0thw9eq72nQIa7y2ewO/OHyok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:21"]},"IP":{"Case":"Some","Fields":["116.202.247.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:448f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleSister"]},"Identity":{"Case":"Some","Fields":["4I8v1EzBa3AVE43JVQemYL64hR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["56EujLvYFuFuhgMfqihf+jmfGO7uUuQU/8CM1V3tTTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:53"]},"IP":{"Case":"Some","Fields":["185.21.217.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10043]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galapagoo"]},"Identity":{"Case":"Some","Fields":["4G7HUvNc7ZpEQ4cZ2n/sbrJK7SQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLbSj52U2KQ//iNNxu979/k7ImzLGdLb3lj79CldATw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:08"]},"IP":{"Case":"Some","Fields":["217.79.252.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI18"]},"Identity":{"Case":"Some","Fields":["4GZfczs4Ic4FoqdUUQU3GCHSWHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nP0SW5HpQTaQKzY+F8XA3Y+Hj01veZdFCBZ0h4kSRAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:10"]},"IP":{"Case":"Some","Fields":["171.25.193.78"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::78]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedRelayB"]},"Identity":{"Case":"Some","Fields":["4GXk2XG+KqLiHYjCyOPA/WGgVzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9hgu1LB/68diPy6Xv9ekpuz+NB3bcDDsixT+BZgYuy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:04"]},"IP":{"Case":"Some","Fields":["147.210.117.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProjectExit"]},"Identity":{"Case":"Some","Fields":["4GQRRTIRhWmaSbnQDuLyK1t3lko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Al85pmXrUnzMKOkkkw0UJPhhvHorbvdI3O/dh9hRdqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:23"]},"IP":{"Case":"Some","Fields":["23.129.64.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:18c:0:192::250]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BurninThruBridges"]},"Identity":{"Case":"Some","Fields":["4GIMyPtLDdd7hq5zkgpqWrWInm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c1AItuSC2M7K3YmGD+FQhUMYqAwU67e8mkmvs0oMHak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:24"]},"IP":{"Case":"Some","Fields":["74.91.27.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["albator"]},"Identity":{"Case":"Some","Fields":["4Fyskp45F4cHcGbClGGp0i7PCAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HYpv54xpEthk1hpnTjQK15gRmp1GvxCidJqR3P49Ru0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:26"]},"IP":{"Case":"Some","Fields":["83.197.193.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cancername"]},"Identity":{"Case":"Some","Fields":["4Ftn3wMmsm8FQWcZ1ube3UpXpEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TxTgJ2vQtsa20+nJLktRm4B4NJmQV8SY4Nfj1rfvfzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:46"]},"IP":{"Case":"Some","Fields":["83.97.20.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["GloryToUkraine"]},"Identity":{"Case":"Some","Fields":["4FVi3X4hEmd2azrWf/G8mBoKQyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Syxa0Oxuab11bNXeoo/FqehSeFbNRRHMwynM0Uc/rtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:17"]},"IP":{"Case":"Some","Fields":["88.99.70.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10a:16d7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uranus"]},"Identity":{"Case":"Some","Fields":["4FNBGPm+HeaRee6Lq3SLigpCiJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ecl5rTcZXnKeq3fJhqCT8G2b1gZoI8vDiHCZDQuTW5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:09"]},"IP":{"Case":"Some","Fields":["141.98.8.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:9100:3::1411]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rEsIsTaNcE"]},"Identity":{"Case":"Some","Fields":["4E20vsT1UT1xoYyBeliPIhgMqjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qc0HZOFc1ySzi1pjjW0F0SZOYPU3KmqRmP5QQcmDT3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:51"]},"IP":{"Case":"Some","Fields":["51.15.51.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:50f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4A7"]},"Identity":{"Case":"Some","Fields":["4EfH14UUuiY0wi1Gd2OzLeA1Kqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oCH9aK4ZPy/jKXUZHgClzcjtyxocdsYP7HVkTwEnkkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:32"]},"IP":{"Case":"Some","Fields":["5.161.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:87de:0:34:2d:4137]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["M4dm4ni4c"]},"Identity":{"Case":"Some","Fields":["4EPO96O1G/eeibG9sGilhhNvhEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8zEWcmA9Ju39L39mIZVZhQOmwibsud6/Hdh+2rQ4Nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:39"]},"IP":{"Case":"Some","Fields":["95.208.182.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4D5YGqQqIR9p3GNgixmA8QrlLCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oavNsmRsIvez+XN9EAy/JwT+7qCmrfPTvlIsHjmb6nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:16"]},"IP":{"Case":"Some","Fields":["37.191.195.67"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe09:486f]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["4C9NMsWEw4ThDljHLLPU959izl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0mPJSXUcujWwxsR3hmo/tgpjRttGymiFeiEbB3YcPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:56"]},"IP":{"Case":"Some","Fields":["83.97.20.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elli"]},"Identity":{"Case":"Some","Fields":["4CLRiKF7k3XOWcJxxQZNDfFBnQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["st6QM/k46VF3afWPaFWskKCi/62KlJTsL+TaQO03QHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:06"]},"IP":{"Case":"Some","Fields":["83.137.158.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9017]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HNLexit"]},"Identity":{"Case":"Some","Fields":["4CASQ20nJmpaoUhPPhRS5WWgP2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ypma5xANkTXZQ4y919VBs9DxoERW3q26uyuIpIZpYCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:48"]},"IP":{"Case":"Some","Fields":["141.239.152.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MexzichoRelay"]},"Identity":{"Case":"Some","Fields":["4BcrcADafxE03JiKI6D1kPaZkY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jBXimbM0YzxoiEFK9wFoebyWemjZLN3Y8ahdn1XP0BU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:01"]},"IP":{"Case":"Some","Fields":["216.238.83.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:b400:1c35:5400:4ff:fe23:597c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labitat2"]},"Identity":{"Case":"Some","Fields":["4BSvvbRj2tC6vEhoybTfSqpy8ek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rOK6GLeDBjDTcjXX+98Au2WHJrQSRfHzrxFYcHb4dQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:58"]},"IP":{"Case":"Some","Fields":["185.38.175.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::131]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DesTorsNeueKleider5"]},"Identity":{"Case":"Some","Fields":["4BRoYZEahUpV4BxQCpfavaDvNyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rf7gmuv0Kme3oqDOlBJalzL226fappp/TejpndegnKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:16"]},"IP":{"Case":"Some","Fields":["81.169.253.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4BRL+oJrzMPmSJWzKygngpYyRs0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hjBqy80eOa8XfqiBP2Z4qr8K14VKSanZrFtypArQexU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:55"]},"IP":{"Case":"Some","Fields":["178.32.223.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e257::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["despacitor"]},"Identity":{"Case":"Some","Fields":["4A39VNwWXVRS+9NTDTAYba0Bagw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hra+U47M2I0F6kImr2yw/tVMJiwlbWIWUTzcrKUgXf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:33"]},"IP":{"Case":"Some","Fields":["163.172.53.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e3"]},"Identity":{"Case":"Some","Fields":["4AbqBMaWu9bjVAdTgTEwX/PLjBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1XtwlAqjpBtLy3hmjC/yyLqqXYGva1vrlYmtWHXVB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:22"]},"IP":{"Case":"Some","Fields":["195.176.3.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::24]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DerrickJensen"]},"Identity":{"Case":"Some","Fields":["4AI6wUGAESov/wCoTGBJhiuz5sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UzHB2UfGqbgqNWrsN9ughVsqiy1KyIXQ5qtrLa5ZrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:02"]},"IP":{"Case":"Some","Fields":["147.135.112.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra7"]},"Identity":{"Case":"Some","Fields":["4AHSckzqVhXoKNMBEbhmqyd+hsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4pjT44Dmt0r4/lYV/ABiQz4UQhkvLqwwibC5kO3Z58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:41"]},"IP":{"Case":"Some","Fields":["213.164.204.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["9500"]},"Identity":{"Case":"Some","Fields":["3/nnQdAPdJmP6DzWJg7k2eCw2/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ytDJI1TuoqTr2ObAjwnh+mwvQGO+QQ6wDF/A6YoJ6R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:18"]},"IP":{"Case":"Some","Fields":["89.164.128.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sumsumbrrr"]},"Identity":{"Case":"Some","Fields":["3/jLwdnabFCR6WUscmimtsjX5Zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPrw7hwI4FJj7sYnTzxj+iE4t8gukACCY8cnm5omOeE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:36"]},"IP":{"Case":"Some","Fields":["151.80.32.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:6ac::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OdysseyHorror"]},"Identity":{"Case":"Some","Fields":["3/OkRcTlU7D5ibrLumhP8S8mEos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dIUUjxGzFRpkUPV3sBl9PWPaHjUcnn15rmqwzEPqFq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:22"]},"IP":{"Case":"Some","Fields":["91.219.30.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorchic"]},"Identity":{"Case":"Some","Fields":["382vimX1IyErHkIothgV5yYU0lo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0k7KDJ1KHMnTeV+p5SdXk5laVMJ8kjGQKBkuKGlUsCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:28"]},"IP":{"Case":"Some","Fields":["83.243.68.194"]},"OnionRouterPort":{"Case":"Some","Fields":[49005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["36v/a8JjGDFSY9nB8YOHcjFdseg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yl6HCk6gzhEaDpj6avMFILCkGcbCif8AzZ+q7FoHxKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:58"]},"IP":{"Case":"Some","Fields":["159.89.106.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay1337"]},"Identity":{"Case":"Some","Fields":["36rSkiAEbrHnMFShrqwrJv/XCV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQv9PyKRiQaHRe6rmSFnTy/ZaB/TL7y3b0PaenKnn+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:07"]},"IP":{"Case":"Some","Fields":["109.90.84.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["36l97Uznn/bzHa+RfCgQzOhynp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJUHlRM5xH9FWkLXXY9BsIuiVqqcyV/9yZhOEofXgHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:36"]},"IP":{"Case":"Some","Fields":["185.244.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:713:4489:4cff:feab:96fc]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra60"]},"Identity":{"Case":"Some","Fields":["36k8WCnPcjz/Jm5FtOykgvjWfiU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BBDTA7sXZx1MF+a1M6ycW98eYtaTOMm2CFB3KI61PbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:22:13"]},"IP":{"Case":"Some","Fields":["185.82.127.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["36QDBr6m6vKM70r+1HOih3qQ+bU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKfr32jQlMrd5XL1ySX0pPZm6FO9Jo4Uia3aI/6UZRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:13"]},"IP":{"Case":"Some","Fields":["194.88.105.13"]},"OnionRouterPort":{"Case":"Some","Fields":[33914]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeelTorRelay1"]},"Identity":{"Case":"Some","Fields":["35vL4Phex0JPXgRp3sqgBgcLXhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+nvWdcJ0dN46G92Aut1do8BsyVh9gv6qXyfefG4Hrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:01"]},"IP":{"Case":"Some","Fields":["97.113.240.90"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isaacmach"]},"Identity":{"Case":"Some","Fields":["35blqo42jLH+bV+sBzus1imwKhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27apl30xRXfN9GKqdgL8Uw3WRUkb1ZWefL0qNacKVxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:43"]},"IP":{"Case":"Some","Fields":["208.38.243.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deltersvrAnonServ02"]},"Identity":{"Case":"Some","Fields":["34nUu+np+85lEkwGoI/d7JOt1Vk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T1tN8WoEzMd0r3+ocEM8vn4NWXpiycUf03QC29VhU40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:58"]},"IP":{"Case":"Some","Fields":["80.122.209.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburger"]},"Identity":{"Case":"Some","Fields":["34heUGUZA6IS7lGb5aWDl60uCXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mY2D2i/Qz31177J7VPcO3p7hf0LuAA3E2qtBlONhJCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:05"]},"IP":{"Case":"Some","Fields":["23.108.55.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange007uk"]},"Identity":{"Case":"Some","Fields":["34YJiWi7zZY+OOA/w/wYN+9mfBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XowuKHZS6PdvD93rQSEhXkU9QBH26TWyJt+OrmQ5BZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:54"]},"IP":{"Case":"Some","Fields":["77.68.30.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["j7rly"]},"Identity":{"Case":"Some","Fields":["33qtDg853rfzWpIytcLDvhaiJik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["doKuf2KIvJ/rrkCqLLQTZ0xSpjNIizwt1iqmw4AGcX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:12"]},"IP":{"Case":"Some","Fields":["73.170.84.66"]},"OnionRouterPort":{"Case":"Some","Fields":[17946]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornado"]},"Identity":{"Case":"Some","Fields":["33qhbhpgN8X8u03tTzps0mLKN5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NbaMgMQrP3oVbqHw5hGxgUouA17QltxVrWEBCbzGrSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:19"]},"IP":{"Case":"Some","Fields":["195.154.253.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["applesandoranges"]},"Identity":{"Case":"Some","Fields":["33ho6vhWZU5z5y93S/POH+xcsEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oRjmoG3IlPCEdrA/oawyuywf7LNoOYr/T2ZK1eigpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:21"]},"IP":{"Case":"Some","Fields":["51.81.93.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchWood"]},"Identity":{"Case":"Some","Fields":["3295COf97uXebdnJL3yd+yCwzio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kebOPBqb0mUrX6SOWINgvtZgE4Q5KqV6k+lDZ+25V1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:27"]},"IP":{"Case":"Some","Fields":["144.76.3.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:73a4::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangepeel"]},"Identity":{"Case":"Some","Fields":["328rkckycHccjsktJDp8tiNCRKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tuAw/G2NiT+4jpGhrVEPOrX+SWYYOkK31miwNUon7HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:45"]},"IP":{"Case":"Some","Fields":["58.185.69.242"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["31XJDX64ehOwRCWZUcp4Ty9Zbo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1BH7GvBPGywIQJDbHS3H8FJQY5OkY+7BiAUw27AuQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:54"]},"IP":{"Case":"Some","Fields":["5.45.102.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:608:942a:42ff:fe77:728c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongorellik"]},"Identity":{"Case":"Some","Fields":["3zkIYLVhC46ZxaeLQJmjcFzTaxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["37GV1w5ZaE39FyOqIsL3Mp7yncTCSLKRJuMSCO10wAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:31"]},"IP":{"Case":"Some","Fields":["185.220.100.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:5::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex19"]},"Identity":{"Case":"Some","Fields":["3yBJfkh6l5mV2FGlvOwxPfflvFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["loibkxN8ZGVBny4Ccn9QEHlWvXwdRGbHq3vHhuXlC2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:26"]},"IP":{"Case":"Some","Fields":["199.249.230.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::109]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anityatvarelay"]},"Identity":{"Case":"Some","Fields":["3wLjV7Joum6QKfpt+4vCied2P88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BUXbxro8go1+Ar+mWEBq5MAzYEa0zETH7ONf6ymvnJ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:03"]},"IP":{"Case":"Some","Fields":["195.154.164.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["odg"]},"Identity":{"Case":"Some","Fields":["3v+dYfpEP+pCOs+wYjM3HHYFjQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gr5/PkkeBwj0nirLVhcBXrkju/ZH89G/iNLaFFEG67w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:05"]},"IP":{"Case":"Some","Fields":["202.239.192.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:f73:2240:500::a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torly"]},"Identity":{"Case":"Some","Fields":["3vNc6PzFte013sN5qe30IP9Blnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92DfiJcq2DaJZRKGTbmj1fGrURAFEk0LG5Ht1myyP/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:39"]},"IP":{"Case":"Some","Fields":["185.170.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:95c:74be:b2ff:fe41:52]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Joker"]},"Identity":{"Case":"Some","Fields":["3vM2XxwBL4DlaHe17wXOcr3rDMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSAer++DJQW2Ug2gEsSZiJIHQW6xcg4vASyERgRtSUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:41"]},"IP":{"Case":"Some","Fields":["139.162.210.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3uimXtKsYZ/4CpLraI72TwQM7LY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wORXifounVWijEBwz1oshNzu/tnlhzc9zQ3iBXSH3nQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:11"]},"IP":{"Case":"Some","Fields":["193.161.193.99"]},"OnionRouterPort":{"Case":"Some","Fields":[57532]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LiveFreeOrDie"]},"Identity":{"Case":"Some","Fields":["3uFFm0Jr3Lu7ge/p/EpebnosBmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b3P00ZU6AgP3yR2FnMu9o64HI3P2TUuSNXFlzPrM7Mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:20"]},"IP":{"Case":"Some","Fields":["5.161.47.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:e33::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ariolcnode"]},"Identity":{"Case":"Some","Fields":["3uEyRvkhCmhXA4k4n6CMwVWQizQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D08reH/Cmngbo/9unWfF/hbkigo4806JjZHwCgrCu10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:45"]},"IP":{"Case":"Some","Fields":["84.158.27.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hackster"]},"Identity":{"Case":"Some","Fields":["3rYWs9fZwxx9Oe+fDroB3vIUUFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SRj1CcwJkE8PEEpG1DaNycFq47vmrH2JvVa414nRLVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:40"]},"IP":{"Case":"Some","Fields":["185.163.204.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:c800:1:1dae::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackPacker"]},"Identity":{"Case":"Some","Fields":["3rDnEe3rI0jRkpEe9tC+5ify//8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcwckloppdUUKd82FBwajFeivQQf/v/HvI+zAuIsNM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:17"]},"IP":{"Case":"Some","Fields":["94.75.225.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0136"]},"Identity":{"Case":"Some","Fields":["3q/4umTMeJivxdlKG8+of//PVlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SdCQ+JI1HhULURg1APpjQi2MRkV53SmGrMmZHfVUc1M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:53"]},"IP":{"Case":"Some","Fields":["185.220.101.136"]},"OnionRouterPort":{"Case":"Some","Fields":[10136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::136]:10136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["windirstat"]},"Identity":{"Case":"Some","Fields":["3q33wIsqWyheQi5HKJiDQZ6K8w8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ec4As5Ysd7whG+n/SXQXEBTVdIi1/zE1PTzZimXthTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:57"]},"IP":{"Case":"Some","Fields":["67.219.105.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:2000:17af:5400:4ff:fe14:3473]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EFKTorBSD"]},"Identity":{"Case":"Some","Fields":["3pehpb8KTUmBM7NCJLA7Y9CO2aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYhniNkceoEDgLERUkRjcqToY4x/iUCGOjfiPDSwhdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:25"]},"IP":{"Case":"Some","Fields":["51.159.99.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3pMXocS1qVr+eOysgrXbanAYs2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXfaKcOrRPH7PAb7oDGh+4Hc4ZYdNOnhxOSJrdN3zf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:41"]},"IP":{"Case":"Some","Fields":["88.208.215.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:8162::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay40at5443"]},"Identity":{"Case":"Some","Fields":["3oeeuvULkA4ZQKl7BIKTAGh06pM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jGgP2zizWEGFxtmmlaV8K9CYZ+t/usho+cNsFowgAt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:38"]},"IP":{"Case":"Some","Fields":["140.78.100.40"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kohlrabi"]},"Identity":{"Case":"Some","Fields":["3oR9lOeLLlYKuH0nLckBktMUTxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kfHpZ04sCqI2kUw1bZpcCHiVhvfyaXH53b5Wy1nUsOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:11"]},"IP":{"Case":"Some","Fields":["109.70.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gergernet1"]},"Identity":{"Case":"Some","Fields":["3nToxPPPD7vLfnYbswcgUNHU3Yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xqWPLAk/Y+nMk/zQQqUE6cha2qkoElguG6xJz0t8bs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:49"]},"IP":{"Case":"Some","Fields":["217.199.199.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:4d80::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomewhereinPortugal"]},"Identity":{"Case":"Some","Fields":["3mc7y+Q28iwxomRdIVXRwDKLV9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3QXpDih1jjgnf3XN53fFlHvawQf3srFl685RqK3Jy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:21"]},"IP":{"Case":"Some","Fields":["85.247.237.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Darkheroes"]},"Identity":{"Case":"Some","Fields":["3mHzFJuTKY2HI3Is7musmeVHhY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Ncqqp/oYXG0VghbDsgQoclO0vsfm3QIYvNsxZdWPJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:32"]},"IP":{"Case":"Some","Fields":["217.182.75.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::3fd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindzero8"]},"Identity":{"Case":"Some","Fields":["3lXvfXOa2XCBJRV3C/yUUrpDD9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/qXjoI9QYA9X1zSfN8viRFm3vsEgoeJeoWajBbSvUic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:53"]},"IP":{"Case":"Some","Fields":["193.38.255.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex62"]},"Identity":{"Case":"Some","Fields":["3k96ey34aJsfjSOrqeMg0XY46v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1gP1cmXLWayTS9NZbq0KeTrgz72Jhfq8fhUETbXoxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:54"]},"IP":{"Case":"Some","Fields":["199.249.230.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::151]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoxTenebris"]},"Identity":{"Case":"Some","Fields":["3kh9jSeR8ra0fDDuUNKSkUqCYAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zInUj3icjBv9XoSUQTboJqaF0jprwz6u52mwb3/fAcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:49"]},"IP":{"Case":"Some","Fields":["185.146.232.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DestroyTerrorismNow"]},"Identity":{"Case":"Some","Fields":["3jsUK7EaPAESxqtB5NJ/YKy5xQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sFLth/9ynw/SliZOQkul8OEeofqCRuHGcXvxGrmFC0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:48"]},"IP":{"Case":"Some","Fields":["82.37.194.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3jkxVyry+ZfD9/HUMujOZY5i13U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL9JHlFu36xgJxZTfDRWxzwpfBoxEITLeEDYvLZOudA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:19"]},"IP":{"Case":"Some","Fields":["185.183.159.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangstaHetznDocker"]},"Identity":{"Case":"Some","Fields":["3i+uyqDXGk61Q8ae1Bi3elLKmEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egvZXY4EDmMmrTicRxVO8KzTaT3nj6oCdjj7Q7Jo+F4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:02"]},"IP":{"Case":"Some","Fields":["116.203.195.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3iyGg04cSoTMv1zEAjEeorDrKUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jwdFwRW1tSwXv+wqJEDKTZRPAQZHZxGGM3SCd0BYS0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:39"]},"IP":{"Case":"Some","Fields":["46.107.98.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jehanne"]},"Identity":{"Case":"Some","Fields":["3imlwNs4qiKShrI3eY2IF+5rdeI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8V01oJBUGGdH3Vxo9Gz3szCEvdpFO79qyRDO0AY568"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:50"]},"IP":{"Case":"Some","Fields":["50.82.179.25"]},"OnionRouterPort":{"Case":"Some","Fields":[5020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["3ieZjEUXSbr/cDUL/itFappRxs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WyUe9T5AJLxhFtBHsyz1jlgVFigR31GLRcBncp7whQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:47"]},"IP":{"Case":"Some","Fields":["23.128.248.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3gUwFej2Nww6przTFxfKw1OOUeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sUHlMj1mG0dP3zl8UNljv83GJJs/AdlYZdytFRnXsv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:58"]},"IP":{"Case":"Some","Fields":["188.68.56.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx5"]},"Identity":{"Case":"Some","Fields":["3gQh+9dx5hiSBdNTNmh0sXkBhcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gfQpPSdwTpuYJvMEH6qHA0hytEGsW75NYWZPcIPMqTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:07"]},"IP":{"Case":"Some","Fields":["195.144.21.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArkGuard00"]},"Identity":{"Case":"Some","Fields":["3faxkkdE6c6J3h6DTiHyXgbMM/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1aZr2REw93ndORNA9rVVpYYBuAj0LljK95BmVaGTtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:47"]},"IP":{"Case":"Some","Fields":["135.181.199.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:5309::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AntonKlingRelay"]},"Identity":{"Case":"Some","Fields":["3fDvuYzdSiiJZmiupIlmul4j7e4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jiWqM+U7kHb4HXZZMWpRgo4PBULuX8y69DmpdhBvK9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:57"]},"IP":{"Case":"Some","Fields":["81.4.122.99"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccvpn4"]},"Identity":{"Case":"Some","Fields":["3exH2j3EBpiCfq7W8vssK6MW/cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/iEniqwQa4hG6t+vABVsySW9gqxfNnlB6X5YmnOvfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:11"]},"IP":{"Case":"Some","Fields":["51.15.188.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:3505:a000::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["3dzo42KgE70wpkP4tkajr1tQNYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4p8tRJhK42rV+B+txa4rZvTZO/IFua8WNY7CgCCsg/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:35"]},"IP":{"Case":"Some","Fields":["149.56.169.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYLABSUKTOR01"]},"Identity":{"Case":"Some","Fields":["3dFW5BHKon5l7q1zu7IH6MrU/UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["whEuFgTL2rv6ys/S8vJE3qzECP4kD4e06j0xcwddYCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:44"]},"IP":{"Case":"Some","Fields":["51.195.166.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation03"]},"Identity":{"Case":"Some","Fields":["3cPYFvKyKc7/YT5NkSzXnuNAJO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1MpJBwY08nLcKZrtPU1hV9IQe0FLvHQzNNpGy20KVic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:56"]},"IP":{"Case":"Some","Fields":["45.14.233.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e9a0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twinky"]},"Identity":{"Case":"Some","Fields":["3aoRLRrmfJYgBMNhG8WbeoYa+0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HaBouW+3190L/KQ8GUVIFfdYj0+bSLbcLVxwMOojwAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:06"]},"IP":{"Case":"Some","Fields":["46.20.35.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3aCq6IMFdiMQ8kJMBK5WrHcyDJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["24J/JxhR3CQvFS9pWNNr2yrjDo7jG49DPlGqJLEFGfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:38:50"]},"IP":{"Case":"Some","Fields":["195.201.1.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[8001]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:eeb7::1]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex86"]},"Identity":{"Case":"Some","Fields":["3ZhJvVzz3Hafoq7b+fFb9blqaVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yMVhvUGnTMhz1JCXPi1WlqF19VzddR7JxteNTtuBeBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:47"]},"IP":{"Case":"Some","Fields":["199.249.230.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::175]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["damnat"]},"Identity":{"Case":"Some","Fields":["3YxFrNn7+5/z3nNryjJsbJoo5zU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mxnsPG2C4w1a+0CExAjjfzdxlDRQ7kSBwZeOxQDWIGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:08"]},"IP":{"Case":"Some","Fields":["107.189.31.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Elcano"]},"Identity":{"Case":"Some","Fields":["3Yrq9RDfFT/P89aR3gLA0hKrAEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e8xBbH0NRKw8BMFcFU1HKBurGCZuFkdSaI5xTCL7jjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:53"]},"IP":{"Case":"Some","Fields":["81.40.67.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange014nl"]},"Identity":{"Case":"Some","Fields":["3XvT5b0LpIqMcLDN8Bf6WYi4fic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6tX6RAcM7YlhWOTQ3hXuBp8dhKrQ7iBVdZ4tZLN7A8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:13"]},"IP":{"Case":"Some","Fields":["5.182.211.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3V2iHMUDZTOuIBDeLH5yvizfnF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2aCX+cYmL7Jx81U8rfglew0q+vfL+uP3ZJ0tL1sXxxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:10"]},"IP":{"Case":"Some","Fields":["195.154.250.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nonbrokeneye"]},"Identity":{"Case":"Some","Fields":["3Tv1fb1ENJp/epo6j/471GMHIQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uXXLA3R0Jv1E+W5Xl6GnrekHCo/7z3iWpZwt7yulqo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:04"]},"IP":{"Case":"Some","Fields":["179.43.145.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hands"]},"Identity":{"Case":"Some","Fields":["3SznnGH4OV6pOjGU/oc5SsQEU/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92HawFX3haIyBYO3OQKy7yCWO9/7oUeCCVqjsC7LZP4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:13"]},"IP":{"Case":"Some","Fields":["109.169.33.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv10"]},"Identity":{"Case":"Some","Fields":["3RowV+kdjf/V1qVCleUIARp7mJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dld8VWLPnReRPhdgtZrZ9bSuSW96jAaBNP+W9WGPzWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:27"]},"IP":{"Case":"Some","Fields":["162.248.163.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chaosDelroth"]},"Identity":{"Case":"Some","Fields":["3QyO7FykAqn6RHjxDDGkQPcfaIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1M2OCnl460GxWIvg6Yr4cHD6DZv4DqXzFR3c2q2M+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:02"]},"IP":{"Case":"Some","Fields":["195.201.9.37"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob04"]},"Identity":{"Case":"Some","Fields":["3Qqmbdnk5x/6+rZY34MA8c7qA2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g+hTnVBz2fryxmFYr6ai+ea1sD+olzkSmjw0dkBeHlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:59"]},"IP":{"Case":"Some","Fields":["46.38.242.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:7:649:e8b3:63ff:fe9a:5e24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["youdidthisvladimir"]},"Identity":{"Case":"Some","Fields":["3QIZvVswFSh8lL4TclNKf9ytnzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5kk+v+ZmTo4tPA7e2f4sJmnAxbPYPx5i5yFN4NULPP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:01"]},"IP":{"Case":"Some","Fields":["82.165.111.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:84f2::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iatetheconfig"]},"Identity":{"Case":"Some","Fields":["3PuptuQXX4toIr9/xrZ9h7WaHdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EFiCth0AISykrkanqqEToXaowBCXH451BNcIFXy0AJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:40"]},"IP":{"Case":"Some","Fields":["147.28.98.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CancerFighter"]},"Identity":{"Case":"Some","Fields":["3PqjCqUKYr4pLrcIHvMEEzm74w0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qbHdYUo6f810L2antgATA9ZTXdi3DVs6vQBW2OJVZB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:27"]},"IP":{"Case":"Some","Fields":["77.70.63.220"]},"OnionRouterPort":{"Case":"Some","Fields":[55555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["InfiniteMercury"]},"Identity":{"Case":"Some","Fields":["3OWqWyKHZjvn2+nIdjX6hGE42aY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4mQJRC8pd72sc5J5I9b9jWDe5Ef9aSr1AlhM1GgOsvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:37"]},"IP":{"Case":"Some","Fields":["185.17.184.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra70"]},"Identity":{"Case":"Some","Fields":["3Mu5cXzYsfAxuaOMch0r2WFWl6o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jwhODwkDRERJWPaGlItDh6lLX89Z6YcvhWhJoVyO2fQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:01"]},"IP":{"Case":"Some","Fields":["141.95.18.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belugaRelay"]},"Identity":{"Case":"Some","Fields":["3MlnPisfNTgDtooaQGIfN49sm0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i83pObm6l15S4w3TrsNnKWPZyN01IQY+P5YZFfQoZcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:16"]},"IP":{"Case":"Some","Fields":["82.165.167.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI21"]},"Identity":{"Case":"Some","Fields":["3LfVLJQlY1O6JxuLd2mZSKp5soQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mUhNTOHVb6KDyZdUASt40zHgWc6OsS4VxcU7h5WTYEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:42"]},"IP":{"Case":"Some","Fields":["171.25.193.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::79]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyArmyOfLovers"]},"Identity":{"Case":"Some","Fields":["3LUPuL49n5XsUDiVWQ6OLLQN22c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qevpixoePmdkHqIO7JXIIxuQNAHXmyEBOzLlCXfDjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:22"]},"IP":{"Case":"Some","Fields":["189.91.231.12"]},"OnionRouterPort":{"Case":"Some","Fields":[32566]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:4ec:121e:fd00:3a9a:99af:8126:2667]:32566"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChaotorumRelay"]},"Identity":{"Case":"Some","Fields":["3LC7XfbXzmRn3YIZPrSoWBoPBkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o9X+uE7QyL8pm1m8Tss2z6C+kVWJsHJk9Rq9HUvyunE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:10"]},"IP":{"Case":"Some","Fields":["82.165.116.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SweRaspiTor3"]},"Identity":{"Case":"Some","Fields":["3KoXb3WwQocTHG14t8/drG8mkdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lLRxtc151QEfV6Q2bapHqqSxmOJ2cfXnLp7g1oIydO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:32"]},"IP":{"Case":"Some","Fields":["92.34.149.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iretq"]},"Identity":{"Case":"Some","Fields":["3JzCJCExRfSzao3AAge7a67Hdp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7IghGf4FcAWD+OQoZA8id5Q/jLG3RAZpx9eOdrdXe2E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:27"]},"IP":{"Case":"Some","Fields":["85.214.227.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4377:c000:aa6a:d41:7918:2216]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer20"]},"Identity":{"Case":"Some","Fields":["3ISTzetPxSp6qottbVj69GHTgZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qD7LNDTuiaTIn3Kt8CEGMtuocVniMzSMgPbhuq6Cf1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:48"]},"IP":{"Case":"Some","Fields":["173.208.190.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8158]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnExit1W"]},"Identity":{"Case":"Some","Fields":["3IGqOx1RVm2/J7+lYuQEeuscUto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8g20NSqYdDdq5gssH09AngTuo7AQGzH6vHxu1NG55Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:04"]},"IP":{"Case":"Some","Fields":["91.132.147.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:645::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["s6tor2"]},"Identity":{"Case":"Some","Fields":["3H59mretUvA7hW5twnjp2SvxmzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vsTXUHGF55dJQfzCb3ahbus90SJOeB0PNOggZgW86Mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:53"]},"IP":{"Case":"Some","Fields":["135.181.67.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4b:4e97::6666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luftballons"]},"Identity":{"Case":"Some","Fields":["3Hur/zxeScki0jneGlxSUvUdL4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wyv67lQoFJ+wn3SyVyayF9nZU+wHAKhsyR0XvyV+sLI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:22"]},"IP":{"Case":"Some","Fields":["87.92.210.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KiwiKEK"]},"Identity":{"Case":"Some","Fields":["3Hf0SQAfxymt9a2vJ4e22dKwFso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nJ+bI8wIamMnTxczySaSh0fE6Ef6fBXcIMdpnvhS9cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:08"]},"IP":{"Case":"Some","Fields":["107.138.131.161"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c983:1000::2d7]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kator"]},"Identity":{"Case":"Some","Fields":["3G8ziuZy59P0/pV0/Jqn/u8n5F0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["weVonrXgKFBFI/I5S0AuF/V9x7JGLDCYC5yz8oaYPds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:01"]},"IP":{"Case":"Some","Fields":["81.157.78.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArcaneSpire"]},"Identity":{"Case":"Some","Fields":["3Gu72Tmt2lX84hCiOlwwlZYK0yk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AKxCiJCPaij5uEUDhEGSiKsPuZsSbteSsoMDi9B0Y3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:59:20"]},"IP":{"Case":"Some","Fields":["79.97.240.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay24at8443"]},"Identity":{"Case":"Some","Fields":["3Fus8mnv3H/pE1byqYrdqkm9guw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ToMaYYo+7p82jxBLYzyg0bH9varDPkXwppvcClGpO+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:34"]},"IP":{"Case":"Some","Fields":["140.78.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRelay"]},"Identity":{"Case":"Some","Fields":["3FcWrdJwzRwfgoTbgXBqPG6PnX8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SaCqRv334zZvSxvSTm1q5xyH+5NWttXvyGKaXhYQrEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:40"]},"IP":{"Case":"Some","Fields":["70.55.113.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ThisIsForEdSnowden"]},"Identity":{"Case":"Some","Fields":["3EClnU10Tyw8emVexr86Wa+hxmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBP/9teP9qTMwwnsBntrc5sdbClKCxhgxRfcb2cvAbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:08"]},"IP":{"Case":"Some","Fields":["185.228.139.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:678:b846:78ff:fe18:5ec3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev2"]},"Identity":{"Case":"Some","Fields":["3CGRZj3UuuyzT5ScysP9oATOW84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gT9SESWv0r9J/rfwS4ZgyNW8PgxPGczxWiw6waVi1Tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:36"]},"IP":{"Case":"Some","Fields":["87.118.122.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:103:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay6484"]},"Identity":{"Case":"Some","Fields":["3AghhIO2EcUlWl3z9IijBXVhaz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YaOtb6jR95gdrmNuGC532Np1GgPYXmiuUs904koU9/Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:47"]},"IP":{"Case":"Some","Fields":["110.147.177.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spechttor1"]},"Identity":{"Case":"Some","Fields":["2+gvojuf48skYqb89Sid7Ty/Su4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+TJX8pgQgp39Vdny7v4vGx+hd6vNaL00Q690eOKuzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:14"]},"IP":{"Case":"Some","Fields":["138.201.169.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:35b0::4:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wc"]},"Identity":{"Case":"Some","Fields":["2+OLxaOI5ZbYUxmXdOtIqB8RAJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dhg7Os+c5f1pAJlhMF+kAoCAd3qkx/iG2nCO7opOjgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:14"]},"IP":{"Case":"Some","Fields":["138.3.220.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["nocabal"]},"Identity":{"Case":"Some","Fields":["29Z3Z2QBl/+W7GqHaERk/Ej2EbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0AX2rTbkONShmh5PPW9wQwZ1GKOvDUJumCx5nTTzgfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:38"]},"IP":{"Case":"Some","Fields":["178.63.52.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:7335::2:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AncanRelay"]},"Identity":{"Case":"Some","Fields":["29PtKTpoWmbGhy7DklhOIP99Ovo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jn/cQDw3UL1dvUuQ3lvsFHuN0jFe8ntnwMMb0uzSnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:42"]},"IP":{"Case":"Some","Fields":["158.174.112.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["25UcLPIHPsr/CO/2rBCLaxyeZ30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvNukiyE3KB7oqBUVQ47Hh4SxHrXYVqCYbqrZfOhvvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:56"]},"IP":{"Case":"Some","Fields":["185.207.107.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["24xhml6QYDtM3ilgUy4t7NLtGz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iv+Nwz4u6Vqc2zfKiZecrriF9xLJ/5tl4Um8Rz+PNMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:24"]},"IP":{"Case":"Some","Fields":["193.32.126.215"]},"OnionRouterPort":{"Case":"Some","Fields":[56660]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xcn"]},"Identity":{"Case":"Some","Fields":["24VvtQ8EQAcKH8VyrEfzIP3KsEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TcVqQhhSEjlbgEsHmquEZSPzNbWg8zJSuctED5fSuhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:59"]},"IP":{"Case":"Some","Fields":["103.158.223.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wienor"]},"Identity":{"Case":"Some","Fields":["23MDvk9Hnwck6aXHXOtaNZtvVYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuTKXJU2FrKbT7hE1wHhY5E5/z+A4GUAuz7X1td+o0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:02"]},"IP":{"Case":"Some","Fields":["89.58.19.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:fde:cdc9:89ff:43f2:5af0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreamwriter2"]},"Identity":{"Case":"Some","Fields":["22+z1uZCxeU1WqVPqA9kqBrkgI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwIpqLJYxapqM/NoS5b5cIwcDhzykj6mgKFMXxou5IQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:13"]},"IP":{"Case":"Some","Fields":["157.90.116.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:5035::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sauberesache"]},"Identity":{"Case":"Some","Fields":["22rH37JcnPxwNrU8ePkdjjqSec0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LmMkeAmpTBYFWol+sJXT2no/sLsLKws5iJwWIlDpsRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:43"]},"IP":{"Case":"Some","Fields":["213.239.197.35"]},"OnionRouterPort":{"Case":"Some","Fields":[18732]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:222:141b::1337]:18732"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackAndGold"]},"Identity":{"Case":"Some","Fields":["22gXRbpObYum6n1TgfZXAh6Sgho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N3OOcOuTlAlbBqiTEZsg/2VasMVBcV5EybtYayHxn4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:07"]},"IP":{"Case":"Some","Fields":["5.255.100.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Songino1"]},"Identity":{"Case":"Some","Fields":["21/26IBqZnTie/adHh6/MI2ah6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8J2i8OjbVBhiuGmrAUBlmk7yITSn3Z5thVDDPvRWHag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:52"]},"IP":{"Case":"Some","Fields":["180.149.125.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei06"]},"Identity":{"Case":"Some","Fields":["213oi0kU9gze71gezKjepZ7yapA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPVudADKpmZVXuYbSNlDDvxNYtCPjS70mDb5Udusr4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:06"]},"IP":{"Case":"Some","Fields":["185.162.249.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:6f8:98f0:87ff:fe6a:29af]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Wellness"]},"Identity":{"Case":"Some","Fields":["21lpRrGCBsxxtWq7NquQj44L+nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCvmD09sEegOV0D5xT7vO/2oVgAy/bXfSI+n76YyteM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:35"]},"IP":{"Case":"Some","Fields":["77.91.74.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nC982filxW8x1tkWAjI"]},"Identity":{"Case":"Some","Fields":["20UQN8I689Aorht+L4K+XKd7mKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wZUOFAHSxk6CllNnW2yEpvvPwwg3vSNy1NLyNfB+ROw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:58"]},"IP":{"Case":"Some","Fields":["107.189.8.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f49b:e2ee:34f8:c854:6f63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wokwaixtor"]},"Identity":{"Case":"Some","Fields":["2ydz1OwmRkLajGLb+iVLDM4OuL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7bGab9RtMZibbykwL7FzAeXYxY84fKaFRqq3V8o0SY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:23"]},"IP":{"Case":"Some","Fields":["159.196.89.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft2"]},"Identity":{"Case":"Some","Fields":["2yaCFTrAzK7NK9Hp6+mcaBWAeh4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rxyjljo7yr/4SDDzq3jAVjFcTGoBQQ7wpEjFm7Jg3m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:53"]},"IP":{"Case":"Some","Fields":["54.36.237.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1137"]},"Identity":{"Case":"Some","Fields":["2xbHc6DodTD9T8bV2B/7bW6y5dA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+V68Q4kZRW8VqwAqrKrtPUmgVUqcTaLEiKu0oznApZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:11"]},"IP":{"Case":"Some","Fields":["185.220.101.137"]},"OnionRouterPort":{"Case":"Some","Fields":[11137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::137]:11137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["swlt7"]},"Identity":{"Case":"Some","Fields":["2wiUEwsvwL334juADZEBfWFF06Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/E6PLxizik83b+vlBq1tpye9Z4myQSI5x5islmUunE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["212.227.164.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poopypuppy32"]},"Identity":{"Case":"Some","Fields":["2wJETqNEUfjx80LNX++ZFNznyKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf+eulDb1JoXuu0LEh4PL3cmTUUK2K0s1wbcV17/LOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:53"]},"IP":{"Case":"Some","Fields":["77.171.66.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WolfsDen"]},"Identity":{"Case":"Some","Fields":["2u+Li3mccRqGNQ/cQzeys6dbl8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYre5UfwlVKkdtKu7/EYD0eWRXcM2du4yI8npLUxx4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:14"]},"IP":{"Case":"Some","Fields":["51.255.150.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex71"]},"Identity":{"Case":"Some","Fields":["2ulIdxmbkl1fecKwDXuDTRaZOvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XuqvlHZLY92WsOO7M3v3KLpceDrp7pQK3P6Cpv1ARc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:20"]},"IP":{"Case":"Some","Fields":["199.249.230.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::160]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pablito"]},"Identity":{"Case":"Some","Fields":["2uZa0yoHTOyzCtP7t1BPDNxhbNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v4S0mBFDWNu4cFOaRtJdslVNgs1MEvvbGQrGT2hDQ60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:16"]},"IP":{"Case":"Some","Fields":["213.239.213.220"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:8070::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2uYFHV8X2GeVlSuEVvuIXOPl5MQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KinMrE28/RmE6c27YySlK5LqIOqpvasSSpQvwzs82d0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:53"]},"IP":{"Case":"Some","Fields":["23.128.248.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scatterhead"]},"Identity":{"Case":"Some","Fields":["2txzMI1TC3Vglpy5VM3b13wBD8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4wzhWYe83tTxoJL8CgjorXxITA95PpOR/lrNRhlqX1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:48"]},"IP":{"Case":"Some","Fields":["88.207.122.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:232a:99::45]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malene"]},"Identity":{"Case":"Some","Fields":["2sglu/BdZ4q96hwwhujZnPC78RI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmOVmnAuBq1FDJDxusIAD594LsZxx942e7fLvNiELlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:14"]},"IP":{"Case":"Some","Fields":["185.73.220.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["2se78fL5LnSLHrWblQZ04sOf6lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8L9EftEg9sdxoiDL0kdnhclowsQecEJgACtidKd8BVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:29"]},"IP":{"Case":"Some","Fields":["179.43.159.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex76"]},"Identity":{"Case":"Some","Fields":["2sD9TRptGKv5WvJIk17Fb0blqSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["auSPp7GJmIyI0RWjC/xyybxtvRKfyLJaYR32F/wngLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:16"]},"IP":{"Case":"Some","Fields":["199.249.230.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::165]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2rSQ9o1l6M6GyskUX6hfCpGY4o8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SKhuDKC9qtxZTko0aAsy1kRFK4D9a9ux1qWkPdmuRWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:19"]},"IP":{"Case":"Some","Fields":["23.128.248.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::47]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mxcz"]},"Identity":{"Case":"Some","Fields":["2quOeqgR3kAgVg19Y9Sjksa6Yho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aXc7gyCp4UNJJVg8ELZejhxWJG8R3vc2I5EGq+8FYIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:12"]},"IP":{"Case":"Some","Fields":["37.187.20.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:14a4::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse15"]},"Identity":{"Case":"Some","Fields":["2qDTsNc5fYUZkP3ywBQx3iWR8lM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orseNUhcS0F7PafGue18Yf87jWWWBeuArsBUvJDVSSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:58"]},"IP":{"Case":"Some","Fields":["81.16.33.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["babywhale321"]},"Identity":{"Case":"Some","Fields":["2p/McdFQ6kzXQfOz7N7AvMhv9sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYhXnTH4fWlAVKbQPnJnL3Q9qKYGZeXF1XeHtDdeMd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:40"]},"IP":{"Case":"Some","Fields":["205.185.116.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1c58::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigmekk01"]},"Identity":{"Case":"Some","Fields":["2p4Cu4CA5HMVcFL3BDm3iGqoVp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it85U0Gg+0iBLaFysETwn7esl3LSUQv+dco8EJpAbLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:14"]},"IP":{"Case":"Some","Fields":["93.177.67.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:38:4c9:83c:c0ff:fe61:fadf]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber20"]},"Identity":{"Case":"Some","Fields":["2pq66kn7+edensAgOA42Foijsj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmPYeqTGffVnYgkSfcC3v7guPTzniMxZfLlS5q79z34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:05"]},"IP":{"Case":"Some","Fields":["185.220.101.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::10]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["z0rb4l2"]},"Identity":{"Case":"Some","Fields":["2o129fWBlpO1yW9Jm6GfdAQBR2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bYWPFnY395QnjRkKnxA+/JI5Kh5udP5Hc1OhacPt1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:51"]},"IP":{"Case":"Some","Fields":["148.251.11.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1180"]},"Identity":{"Case":"Some","Fields":["2oerVxiF+36bR/Zuvl0ePy723/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqMH1XMxACk8eAxBVn71MyERxHhb3esXuHkam1WyrRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:53"]},"IP":{"Case":"Some","Fields":["185.220.101.180"]},"OnionRouterPort":{"Case":"Some","Fields":[11180]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::180]:11180"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torhammer"]},"Identity":{"Case":"Some","Fields":["2oTUF4O7tgWMud+MkGl+jV6mR8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f9zWbg40H87hejijtieq6Cm+GSVMyRMniUrwgdwcmVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:02"]},"IP":{"Case":"Some","Fields":["84.226.204.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b425:88::beef]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kyra"]},"Identity":{"Case":"Some","Fields":["2n0OJ7CPAyx2Y7WMMgheJSnLzaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["if3tXNKAH+6z6Z8F/aH8eVUbe3jBRgy0bY0cSddX+Xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:05"]},"IP":{"Case":"Some","Fields":["91.216.111.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:19c:10::60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["2nuzdS/ArSvqF/GJnL4pzD6Vl2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u+tmBuhMVic3u3QALqFPV9IE2kfgKk4TSoT6ObFruP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:54"]},"IP":{"Case":"Some","Fields":["194.26.192.187"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex65"]},"Identity":{"Case":"Some","Fields":["2neq/gzDjblYQytFkQ9HcU1hSqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e9UIB3upi1nVKxZiWi4jlUJ9TY/NxkxRa1a1oMLkVts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:15"]},"IP":{"Case":"Some","Fields":["199.249.230.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::154]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackstar"]},"Identity":{"Case":"Some","Fields":["2nESbh0LEWBVM7etOZ3Vp+yOLw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qm9vJmQLIDvRnlNaBUS2NZ8pxItTea9QiGBjRY0MSiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:49"]},"IP":{"Case":"Some","Fields":["45.80.171.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1f:1::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp4"]},"Identity":{"Case":"Some","Fields":["2m+YraaEAeKhaRlCmLNjQLJjmGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFYs9RDsSnEAPJP0VeaDU4+OVHVfkc3tU2xqu1HK5MY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:09"]},"IP":{"Case":"Some","Fields":["185.220.103.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lancaster"]},"Identity":{"Case":"Some","Fields":["2m4jH6fAdhOmRHPMcJ6lWsgnQB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bwrOsFVLUWJhHt0Bj2ju2shB5+tX9zqTjxV9sNlOS+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:03"]},"IP":{"Case":"Some","Fields":["106.68.240.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["2mHoSwCbMEN3wIy4KUa+pYOYt4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0VoCmLUAS7w9d1LrckT9MyTK1gyjtksxwASbTmBMMro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:08"]},"IP":{"Case":"Some","Fields":["171.25.167.73"]},"OnionRouterPort":{"Case":"Some","Fields":[56890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex99"]},"Identity":{"Case":"Some","Fields":["2lyaWNvUnoOCG8Vvy8itkgloDKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoIK1dX8Q4jLKWjPLQcZ20F+/aD1/xPNWZyInQXl4+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:45"]},"IP":{"Case":"Some","Fields":["199.249.230.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::188]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LowEndAdatikrit"]},"Identity":{"Case":"Some","Fields":["2k+cT0seJTCOS2rBarbaUf8HosY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ad6MTJ2ewXQXja5PkxAGf8aHcuMS1WNuDcZmp5NaLUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:35"]},"IP":{"Case":"Some","Fields":["185.193.126.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:1337:126:0:b9c1:7ece:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["idefix"]},"Identity":{"Case":"Some","Fields":["2ktIjCgm37vQTWNdoecaK6WyB0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWVvQtOwRuf6qpJywLLw9tEynh0M6tlTxflWZJ8aPUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:03"]},"IP":{"Case":"Some","Fields":["82.165.70.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp5"]},"Identity":{"Case":"Some","Fields":["2kevBn9Cg+tsjkDiGW9uxf3//c4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYlskDXMLTwdrq9LXFzsHe11weFCCX4j5xn1vR3cua8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:52"]},"IP":{"Case":"Some","Fields":["185.220.103.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ExitTheMatrix"]},"Identity":{"Case":"Some","Fields":["2kXamfZVq4vNqgneI6J2u/h21YM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s5hjPWTI0W6ATt8/pv3QgmFPu6/VMZ5HtLKLOqIYpOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:16"]},"IP":{"Case":"Some","Fields":["185.130.45.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2kUs+KnnfMy5VFmOWchNlNxaTUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7EwmwSBmx4Wo3Deav2t0i9mY1MiE4c+3u0MXgpdYSqg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:58"]},"IP":{"Case":"Some","Fields":["23.128.248.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::50]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer71"]},"Identity":{"Case":"Some","Fields":["2j9vsYz8YDfWakRyF/TEH7GRgms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpadddrRXpZocQtR/XgFGO+AnIxDKZCPAMsuY3NeAHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:28"]},"IP":{"Case":"Some","Fields":["185.16.38.112"]},"OnionRouterPort":{"Case":"Some","Fields":[6171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob00"]},"Identity":{"Case":"Some","Fields":["2ihKElmQq9e9iu42fYjHhKXruyA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Iuol767e9BhjfzqJvbMc6vsXI1VlBOBJstlqxR2PM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:00"]},"IP":{"Case":"Some","Fields":["94.16.123.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:a6b:34f1:88ff:fed0:52b2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemOCI2"]},"Identity":{"Case":"Some","Fields":["2idXDeqRkBiJgp4/+CsUATtJQjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jZdEnkYbvXOSYDfl0OSuikvoyVuKkiuVoIGy3mkG0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:55"]},"IP":{"Case":"Some","Fields":["130.162.211.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1134"]},"Identity":{"Case":"Some","Fields":["2iLAtYmVmt0U0WYGuaKlEs7WHE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gPA4Z/447o1AFBe1beBSuISFgg+Kb+MaKxiCG1fgcZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:57"]},"IP":{"Case":"Some","Fields":["185.220.101.134"]},"OnionRouterPort":{"Case":"Some","Fields":[11134]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::134]:11134"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mjolnir"]},"Identity":{"Case":"Some","Fields":["2huLjWF5CZAlcnkM6LuZ2lAsZIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ju/QoUMSgVLIiFnNvT62GWnyRP94arh/xN7fKP9JDoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:50"]},"IP":{"Case":"Some","Fields":["205.185.117.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:3ea:c2a3:1162:7224:e5df]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IloveHK"]},"Identity":{"Case":"Some","Fields":["2gS/II02GC57414apOOGe1rt4t4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0psYe96u3ZSO7BZwJ1DbWyebM9TOpcXN/cDl9I18PaA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:19"]},"IP":{"Case":"Some","Fields":["218.102.182.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["letsdoitUS"]},"Identity":{"Case":"Some","Fields":["2fne/oc/nI7YMmUrhJBZQJVWLkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oe4DG3OIOXedx8b2H/qyCSKA6Ze5dVX6Icbu1RttYJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:33"]},"IP":{"Case":"Some","Fields":["74.208.216.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:fd::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brrsundae"]},"Identity":{"Case":"Some","Fields":["2e2z3Mj0mi7ERksQP4WzldCp7Z4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KdOc4mvUTVh2Z6SKuzkzZ0grookBbJcAcGjawzJFPnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:52"]},"IP":{"Case":"Some","Fields":["172.245.90.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LIN0DEXX01"]},"Identity":{"Case":"Some","Fields":["2e1XSmD7V07GFRjWw0w1A23KlCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u2eTvmxan3cuMMi4NngcHYjVijP04NSD3Lsv6DZ5zkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:51"]},"IP":{"Case":"Some","Fields":["3.9.8.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ledevin"]},"Identity":{"Case":"Some","Fields":["2eT3+nQBUuvZjD3nUl9IjnyoWfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x521bCE0oZYQOauyEHK5WqMIIPy9LLygT/a6uGCrTh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:49"]},"IP":{"Case":"Some","Fields":["50.7.115.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["traktorzetor"]},"Identity":{"Case":"Some","Fields":["2dbDXpMv73EAoAyZwZk1boLat+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gHeWCQoNw8OH/46CjzVvwGozSEGfG7I/aJbWZVJE4jQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:27"]},"IP":{"Case":"Some","Fields":["37.157.197.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:1::2f0f:f001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra11"]},"Identity":{"Case":"Some","Fields":["2dLb6sd2IVsz6Z1Ov/6PulwQDbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cFWfHV7NrASzHuLEj4BnCug/q2qNZajK6mic7MG1vFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:12"]},"IP":{"Case":"Some","Fields":["193.218.118.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::167]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["2a3+JaQvWcAQPlLE0N4lt4d/oPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ax6ua8cTXLujLVDngB7SM5zYBFZcjZ4p9Fvp65lDeVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:25"]},"IP":{"Case":"Some","Fields":["95.214.53.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["P33Vieh"]},"Identity":{"Case":"Some","Fields":["2Z++L+z7q5T3r/0RSNuvCvYW4QY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d17w7qYlyh2oueDBYffMpZKzmMMU+/dpNx9NJWIvLRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:44"]},"IP":{"Case":"Some","Fields":["103.119.112.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["harutohirrii1998"]},"Identity":{"Case":"Some","Fields":["2Z+rBLF6wwV5UOya2F2PjtG+YfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K1HqPrJvcy5UxBYTXZq5eesInYwOG4/G291Q0J+jUzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:35"]},"IP":{"Case":"Some","Fields":["103.242.118.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chachahamas"]},"Identity":{"Case":"Some","Fields":["2ZCpeMbCekhnuMKoSRQUD7Zp/CA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Dz6MUEo4ttCdoXk0+cK9nw3r94bFuPCduYp87t9UeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:49"]},"IP":{"Case":"Some","Fields":["86.104.194.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["refuseGlobalJam"]},"Identity":{"Case":"Some","Fields":["2XTHQxHW5gq4g2EP9zqeiB+eMPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsindeJbhGxnbFjl5EQm2f7k6urA3UVmoby4XGyM3gs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:28"]},"IP":{"Case":"Some","Fields":["213.164.204.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2WQouDqLFHf4/6L+bywj7jalwRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gw/CDDFTWi6MvzRJYTukP1ugduN3k+nX996HIDVL2kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:31"]},"IP":{"Case":"Some","Fields":["23.128.248.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Splinter"]},"Identity":{"Case":"Some","Fields":["2VmAwV954JSuJVuo8bV/1sgfK1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsmStHQQ+8znXOiDVZXHsch0zUTWxhyWtqyDZNr2YM4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:00"]},"IP":{"Case":"Some","Fields":["200.122.181.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catRelay"]},"Identity":{"Case":"Some","Fields":["2VJxkCTyH+6mLAesnpyZbWgGuy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ag6tiy/p74ehA2Km5VrDLV7r2I0yeyYlkoelKn+gntA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:21"]},"IP":{"Case":"Some","Fields":["190.7.3.34"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["franovgnet"]},"Identity":{"Case":"Some","Fields":["2UdiOzDJ1uFC59kPxzaLGipPUEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ag6176S3lwmCe4dCWIJkAGvW8NrgTsLgaI5AmrXdQrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:22"]},"IP":{"Case":"Some","Fields":["51.75.64.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::205a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tardis"]},"Identity":{"Case":"Some","Fields":["2UHTgOUijntNNyr01IRimpbcSLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5kJti9GoRhbvlifLZ53s3euOL4x7mU1D0vf4I8+UZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:55"]},"IP":{"Case":"Some","Fields":["158.255.212.178"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:158:255:212:178:2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Odi1"]},"Identity":{"Case":"Some","Fields":["2SN1OIaC/K7pjn6JL523YA/GRj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qB4xtra0dEWDlQ0/2iONKXQBEQ8JoOVOw6uccfSR0C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:01"]},"IP":{"Case":"Some","Fields":["130.61.118.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["yesch3f3r"]},"Identity":{"Case":"Some","Fields":["2QnKtODqBEao48yc2E3WQs/+ZCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kIOxUrU4raiSRaELrlboqICmBmLBINzqdRIPKghDBH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:41"]},"IP":{"Case":"Some","Fields":["217.160.254.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:382::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2tor"]},"Identity":{"Case":"Some","Fields":["2PecbPOG3PxbaS4TxQiYlGBQe3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sjZ70njjCvDXNCXti456N2QTI2TuO72aavDDecbfAnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:19"]},"IP":{"Case":"Some","Fields":["162.55.190.170"]},"OnionRouterPort":{"Case":"Some","Fields":[12333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aRC0C7"]},"Identity":{"Case":"Some","Fields":["2POwoZpx+ous7Es24KhkXu/wHm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7wI9T3iLhatZl45OPGh9OPj9bbeHEn35cqI7ZJeNzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:16"]},"IP":{"Case":"Some","Fields":["132.145.62.236"]},"OnionRouterPort":{"Case":"Some","Fields":[1234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tryler"]},"Identity":{"Case":"Some","Fields":["2OoQXnmAP7AECowqZ22T2uos//A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gx0VI4Bh6HmlYqM4bsA97dzG8xZfrKH/VwlknQjwjQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:19"]},"IP":{"Case":"Some","Fields":["185.117.82.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:21bc:1e::1:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["2N+WYCYbFYqd9sPX1j3ZKw/Vufc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QuA7BukHen8b4qT22W57WcjbJbrStOJ9vGkCMSt+xB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:27"]},"IP":{"Case":"Some","Fields":["185.61.148.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::e636:5252]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwerty12345"]},"Identity":{"Case":"Some","Fields":["2Nx0pVvM0G35324/BWiAnTspc7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ty0lPrGUcIVStt480V/jTACXLgCyacRGKmwd3pNbOSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:27"]},"IP":{"Case":"Some","Fields":["82.197.218.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Papazof"]},"Identity":{"Case":"Some","Fields":["2NOfvfBUvQFhcAlJ0BFONrrn8Po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/MtVKmN1MRYAaV1V2QCOPibhPmZcn1FdNwyKnfvJ6E0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:31"]},"IP":{"Case":"Some","Fields":["91.45.199.210"]},"OnionRouterPort":{"Case":"Some","Fields":[1412]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cepa2"]},"Identity":{"Case":"Some","Fields":["2LmuLM+vMKeXSq65s/6vA1sHDYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wGcynflOYM4kQ1Pq2gAUMr9LNRO1vQw2buSfOKBd4CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:58"]},"IP":{"Case":"Some","Fields":["185.100.87.41"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:3c::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aberto"]},"Identity":{"Case":"Some","Fields":["2LTDHk2vnLyJ7BPj9dlorWzci/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OVW6aVdSdw+oYQs6Lp0Q/+50N0DQhhDt5VFRT4wGYBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:18"]},"IP":{"Case":"Some","Fields":["91.203.5.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2Kvxam/oZKZ2KH0cjJBaDYuOxpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b3M72HXOwobykfAINl0Y5De2AnMhzGqpF6CRHeSViAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:20"]},"IP":{"Case":"Some","Fields":["23.128.248.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::26]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porthill"]},"Identity":{"Case":"Some","Fields":["2KLQCAsMc+HcDsnzO0l/ZOX7P1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BhkmldM2uB09Gf3T9upYun91ymwCG+fWkPc40wd0e+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:34"]},"IP":{"Case":"Some","Fields":["136.243.176.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:2593::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexse1exit"]},"Identity":{"Case":"Some","Fields":["2KH1qOoa9T40FLnEj+axDDGsybI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eFVR5D8oXdCqdzLsJDNEoENnE27kpDsXGB2jA5Tu7CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:46"]},"IP":{"Case":"Some","Fields":["185.130.44.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:2:13::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Friedrich"]},"Identity":{"Case":"Some","Fields":["2JJn+xC/Yl0x/3aHr30SsDu/dXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLHPhGiwqJ37oOnNPKT32jk9/5SnQmnCudjxZnrVfl0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:08"]},"IP":{"Case":"Some","Fields":["35.182.71.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iceberg"]},"Identity":{"Case":"Some","Fields":["2I39va61/nl7vWWtcomMyTLAt54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+PAUdI3k2CDw1lht228lzY1kMuZjxMMZdrpOCuNiVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:31"]},"IP":{"Case":"Some","Fields":["89.212.52.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schattenbahnhof2"]},"Identity":{"Case":"Some","Fields":["2HqSfaF7n7eyzr7aNJ8ja8BAm8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3BFnG6paPtLjhsfk4eYbJn23Tme9xOFQvVrKEuWlksk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:38"]},"IP":{"Case":"Some","Fields":["188.68.53.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e34b:7cf3:194b:368:22d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saberrider2008"]},"Identity":{"Case":"Some","Fields":["2HMwSPyOyRAkZq2PMJhiK/G/cf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BlWiFCqxVqEKLcoH58MNkGWTYr5UN0r9hPxwu+vsmXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:43"]},"IP":{"Case":"Some","Fields":["95.91.170.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0a:5e1::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallrelay"]},"Identity":{"Case":"Some","Fields":["2GlmkgQNjjWSIuYLZArf2Tdqe3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZFAyn1fYxVdBaX9H/v4RtzLrdTzl/+GOPLAhE6mDzto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:07"]},"IP":{"Case":"Some","Fields":["93.95.227.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ljubo87bg"]},"Identity":{"Case":"Some","Fields":["2FFjIxBRdLLO6emZsBga/z1jyTo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Brf/uAN+T3P9LL3HJiFixTwDFyv/AbP+qcVus+t9bI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["152.67.109.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["trout"]},"Identity":{"Case":"Some","Fields":["2DgwEhR2LAe3hGyCbSpeu/zQiSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ZWVSatIaAtgQ6jwKJMqpgJI+kbDg0Dho1mmSMfhhyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:55"]},"IP":{"Case":"Some","Fields":["139.180.203.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7002:2ff:5400:3ff:fef9:1677]:9876"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Precious2"]},"Identity":{"Case":"Some","Fields":["2DgOCN7fbJCgnsN40fbBiB73lHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyP5VtpI6EF4EQhBmFacpsL/gBJihr/vvXZvJmpb0VA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:50"]},"IP":{"Case":"Some","Fields":["95.215.45.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::394d:31f1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet1"]},"Identity":{"Case":"Some","Fields":["2C0Y6DWe360LN0iHACq98fKepDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Gsy15IG1oY1V0XxS/U6e3GgtXG11qGKq3AUlKAb8fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:52"]},"IP":{"Case":"Some","Fields":["185.100.87.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:16::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blue22"]},"Identity":{"Case":"Some","Fields":["2CsUdxg+B5Fay6ByUDdDA9k/C8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["01Q0ukORqvWKmyUMaKMnc2wU9rkm7uT5iN38n0Rvm+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:50"]},"IP":{"Case":"Some","Fields":["194.195.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv120"]},"Identity":{"Case":"Some","Fields":["2ClDQ0skIE+/G0uBjP6mTyBd6sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQwgA9ubP3TRt7JoIj2KVWQgp5CHK5yZvC1hJF95w70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["192.42.116.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5520]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["2A9kkibMlrvg/3tFs3kZAVaf5aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZxZqIXVOk6NKytJu2dlnC+OUUMTX/OEvzns+z8rf8U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:04"]},"IP":{"Case":"Some","Fields":["185.220.101.38"]},"OnionRouterPort":{"Case":"Some","Fields":[10138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::38]:10138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["2A8yLK9H2JMk5Cr1Ygm16GBxA/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JrTMxSHRH6Vy6r4pv2qjEufyscsqi4FGsBnXqGk3Jmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:29"]},"IP":{"Case":"Some","Fields":["69.237.207.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bonjour1"]},"Identity":{"Case":"Some","Fields":["2A6iFia/roBE5AN/52UlLhV+NYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wcv+4bLjGQspWzhWuBMHD3Tb90DghHvnnZIugOg/lNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:41"]},"IP":{"Case":"Some","Fields":["188.138.33.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie1"]},"Identity":{"Case":"Some","Fields":["2AVsrUo9bufYJ0gCdHS/XFPladk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zMXMSIA7W4q0NwO5rr9gsWad3OG0J4OZhmL2gTp8QQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:14"]},"IP":{"Case":"Some","Fields":["65.108.136.190"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeBeePi"]},"Identity":{"Case":"Some","Fields":["2AJrc8vnbhbklTxc4/jINJZpKB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H12qWUIsXOJLa4G7FdxIRVu9wkD1obL0imPmLCzmZ4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:03:04"]},"IP":{"Case":"Some","Fields":["87.123.38.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9602]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapBLR"]},"Identity":{"Case":"Some","Fields":["2AGviDT97RwzmNeP05T+bZE1IgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eXTJw5EZy3I6XJJg6grXL2E6GiDAbz7sIlhxZM8KIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:16"]},"IP":{"Case":"Some","Fields":["139.59.38.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::a18:d001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ygWegnHEQ"]},"Identity":{"Case":"Some","Fields":["1+uTtQpNHu28U1TDEkKGgPOqkCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TLyKoEAdC4gDGVdmeSQxfxJt6iad3Zfz1ENDtnoXouE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:13"]},"IP":{"Case":"Some","Fields":["185.147.11.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["19xLrIgWn51VEiHiLDR2E6NpL8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5pg2gTqqkfraCiSjmuWDWIy7AvBxbXEHImjbJZJpnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:51"]},"IP":{"Case":"Some","Fields":["84.170.128.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay2"]},"Identity":{"Case":"Some","Fields":["176oGfb76WmuYIEymR1KQq7kCjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sgz6EjoH7rO0Now6w6QXxNPywbILrS/0BjvNxkziFtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:58"]},"IP":{"Case":"Some","Fields":["163.172.145.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:e2d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Platypus"]},"Identity":{"Case":"Some","Fields":["17NVgCAjXB83TuyL3hRo4ZVBHjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJjLTWqUK/dOJKr9uU4h3Um4HTdujjjUoSxzhx8QUNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:02"]},"IP":{"Case":"Some","Fields":["217.76.159.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:fe::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goodvikings"]},"Identity":{"Case":"Some","Fields":["16gOlYkqr1H/JM98LOSTEZMbVfc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ujkpEqEbXO1Yf45G05YVzL0vPc702UpmTKr53WvNJds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:15"]},"IP":{"Case":"Some","Fields":["198.50.128.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["niceRelay"]},"Identity":{"Case":"Some","Fields":["14KaIXJiIK93QBvlsrEyljoL6Cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gIBWMOCPRwG8IFmt2xrbTvJhGAV9qIUF3SCmI7J6LtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:15"]},"IP":{"Case":"Some","Fields":["94.254.74.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Centro"]},"Identity":{"Case":"Some","Fields":["14DI3nYYdgYJFdfcObEfO32+N84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Glk0KXE4NwP/0vnDk7iVc/Ojy5ltEN2X988zMiD0hig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:09"]},"IP":{"Case":"Some","Fields":["83.223.97.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slashcrypto"]},"Identity":{"Case":"Some","Fields":["13fTH5UIHQ9yI6rV+KdJd9UkFF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zDyDVIUhC0l3JDvQBhsNBBl1fi0VsM8pQS+MVK2f6Do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:57"]},"IP":{"Case":"Some","Fields":["85.235.66.146"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[587]},"Address":{"Case":"Some","Fields":["[2a03:4000:32:401:4d5:beff:fe5d:c220]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["13c4zhUIeqgXe7VoBonbOhPp3tE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCn15UPYdPBL3AtBTgA9hU7tS767I3UvtAth2zK+sMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:32"]},"IP":{"Case":"Some","Fields":["23.128.248.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::39]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2propstor"]},"Identity":{"Case":"Some","Fields":["124f3Ho9iZKCu4gvdBEbNqbRS2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S7iaRtRMB8ZUGTKUNOzuwpKtaVinGL44pCHghDykM3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:38"]},"IP":{"Case":"Some","Fields":["50.73.63.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SunshineInTheDark"]},"Identity":{"Case":"Some","Fields":["12nVRAYbdW4Se/Y6G3spYMBNxGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0xVynrXMT78MRKyH6Zyhy8tgtnoWGtdD58L5K/PU0xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:43"]},"IP":{"Case":"Some","Fields":["220.233.178.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wiwipower"]},"Identity":{"Case":"Some","Fields":["12eXn+TJnTEKRuxJA36f5+P2Tp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGOKxrMZ4wFGdIQck7w4RABImU7wK3EzKFctuP2Z8bE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:39"]},"IP":{"Case":"Some","Fields":["141.20.103.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor03"]},"Identity":{"Case":"Some","Fields":["12EQ53D7X20Jy4AdY3nDOhpsDMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HEUeLKjqD9Ar1oK0zfC2Il86s1eVm+8WsCf0IL6SQEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:16"]},"IP":{"Case":"Some","Fields":["192.99.152.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::348e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DizzyDuster"]},"Identity":{"Case":"Some","Fields":["10379gQ7kXu8Q14Ul9p0TQHR6/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3AHH3lfnbxZSqz2/d0cxCeb3M5dNoo49s7vp8dJP124"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:19"]},"IP":{"Case":"Some","Fields":["5.181.80.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["claire"]},"Identity":{"Case":"Some","Fields":["10eifGMbHJC+djiLxa9fo4nTDc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvzBlyz+X+a1qXKbFPMyLAaq7dFZKXpNLK8W13ObbIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:08"]},"IP":{"Case":"Some","Fields":["185.163.204.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:c800:1:1a07::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ThreatLevelMidnight"]},"Identity":{"Case":"Some","Fields":["1zixYeDCF9oVxslMGD14q2WO/Io"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QroKcR/lCcqIfz1HgZD76vyBO816cld2v0ECbcbUJNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:10"]},"IP":{"Case":"Some","Fields":["185.10.16.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NuclearShack"]},"Identity":{"Case":"Some","Fields":["1zFr9/1jPddHSxjDPh1f3rBNJqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["plXxl0gDF0GtU7S9ip4Czmdx5eLgMFIBlyWr3+ItCzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:59"]},"IP":{"Case":"Some","Fields":["158.69.205.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::da8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum3"]},"Identity":{"Case":"Some","Fields":["1ynGiDgswqV2CJcWvhBJDS1m/OQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XARCv1WcSAqVV2U0f8dEayl2pQ2V3cMqL34qoSF/47s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:01"]},"IP":{"Case":"Some","Fields":["62.102.148.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratte"]},"Identity":{"Case":"Some","Fields":["1ylqvUnBS/UHJiJ7+uGspCOswik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0eGc1xEiYZAYTALfDgcBgfYRa2QVAbj3bHMjL8esLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:06"]},"IP":{"Case":"Some","Fields":["109.70.100.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::75]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1xscocncfoymQVjhBq13CiEWD+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fW5qpnGF2G6H9XrG6/4uRjlyfeZFEC1jlJ8i8GfeJBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:17"]},"IP":{"Case":"Some","Fields":["185.34.33.2"]},"OnionRouterPort":{"Case":"Some","Fields":[31415]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:99a0:0:1000::2]:31415"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berlinwonderland"]},"Identity":{"Case":"Some","Fields":["1xsYxC1xVJxgZv4axd8P7B8DaW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RnxsaijyFtkaaDAF3NWqZALX9dg66T7cB+OFBeFQhII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:15"]},"IP":{"Case":"Some","Fields":["65.21.50.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:89f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor1lhvmct"]},"Identity":{"Case":"Some","Fields":["1xlCSap31cohm8MX4tz1tJqFeD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmEP2oGrlHCUzD3DrlBAvt3Tt9z6VJxY2deBrtMGrvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:21"]},"IP":{"Case":"Some","Fields":["92.117.9.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaders2"]},"Identity":{"Case":"Some","Fields":["1wpeAewU0HgWTV5YdgiUn4X9dxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3DEJp+Qo5XjjtKqVuz8T67rPSRzpYsojHTR/rlgHqAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:21"]},"IP":{"Case":"Some","Fields":["45.58.152.43"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pushfd"]},"Identity":{"Case":"Some","Fields":["1wakUAuxqQqwdup8wN195SdKLLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QY0li5HQx9H8xQYzHNUgqS454zrNTPlyYJsmcfbOLXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:46"]},"IP":{"Case":"Some","Fields":["94.16.109.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:51:9c6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnivUtah1"]},"Identity":{"Case":"Some","Fields":["1wGsr4ZBPpJSnqjjIIjH/EXqb2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yw7c9srgUD6Izh5jDCuD9IQ/zS0li8vUequBI1E5G3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:45"]},"IP":{"Case":"Some","Fields":["155.98.5.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN28"]},"Identity":{"Case":"Some","Fields":["1v8ml86lwMfahHl8LnEWOBT8JGY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTeVr4Jdw1OBNGIK26qieHPXfPsR5fJqB9ScmUtIfBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:07"]},"IP":{"Case":"Some","Fields":["199.249.230.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e651]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torzpi88"]},"Identity":{"Case":"Some","Fields":["1v8M6EZW1RIuX/6YArA2caFp/2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B0FT8rQ305zWcrPWB+rU5H+5mNWqq8z+FlO19Ph9pp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:50"]},"IP":{"Case":"Some","Fields":["77.220.198.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=940"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DELIGHT"]},"Identity":{"Case":"Some","Fields":["1u3TMqwEsdHo/vs/MvTAUM2zqVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mL/1mgjZre5HgeBvy/n6qKPim8G4Kru4jEXzGd/X/Hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:19"]},"IP":{"Case":"Some","Fields":["79.141.165.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1uu89PZQJYYIkRPYw3sP9aYVKlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y05HRR9EggR1z1J9q6IxjTnwHAe7q5FEoT+uy9d7rbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:17"]},"IP":{"Case":"Some","Fields":["163.172.94.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Titan01"]},"Identity":{"Case":"Some","Fields":["1uZfIv4AY7Vm5cKz4Yu41ehwVm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["owNy4Cwx1U1qwPM09RbHrsUtd4Nc+kK9WUMXQ2CkifA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:17"]},"IP":{"Case":"Some","Fields":["65.108.89.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:71a9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA04"]},"Identity":{"Case":"Some","Fields":["1tlnMQLfFDXBpm9MmOaLVvGSFvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9cMowt9Q9VOK77MSLaFWSYPSDxl2m8y9Ir0WqGqQsGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:09"]},"IP":{"Case":"Some","Fields":["109.250.38.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnosognosiaRedux"]},"Identity":{"Case":"Some","Fields":["1ta2YUye8trROsDJRIetjtO2h38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNibpolZdqfzQLZudW210gEL48LKErbYHVRfVFQK1b0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:34"]},"IP":{"Case":"Some","Fields":["185.220.102.8"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::8]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mittelerde"]},"Identity":{"Case":"Some","Fields":["1tZ3AUpYPm94OgP1I6bF3C9jR9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l76PEbwUQungsWm/rB+IuUNN0RmwFZGQH79gPwOcFJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:12"]},"IP":{"Case":"Some","Fields":["37.120.186.122"]},"OnionRouterPort":{"Case":"Some","Fields":[4711]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:992:98d8:54ff:fe3d:fc2b]:4711"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fourwinds02"]},"Identity":{"Case":"Some","Fields":["1svg2F7Tih1uRd+nAzkKno9geSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pK9zE0AqzHDzfnmjEzmBZfKQya2bcJfkuzjEoCkXLKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:29"]},"IP":{"Case":"Some","Fields":["5.255.98.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1sIwESEOHwFI+p8Z/UaaFxNXx3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GNksGD3yaYHuQa1ck8rbebgimNnGwviyFk8sXuYpJro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:18"]},"IP":{"Case":"Some","Fields":["141.98.255.148"]},"OnionRouterPort":{"Case":"Some","Fields":[55785]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["1r9Dv6WYqff6UQIu7QBhrf12TaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iww9o033XCZ3XVSZP4F/HC04es+BroMH0cMnIFRcX9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:40"]},"IP":{"Case":"Some","Fields":["95.214.52.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsalc2"]},"Identity":{"Case":"Some","Fields":["1q2gSJgOtDFJkNfyu0C4SNYF+YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uhNrSWIL1yYfKmelqQavmQlrzWu/vDu6sSOWG2nBJVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:04"]},"IP":{"Case":"Some","Fields":["80.211.130.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d40:72:2bf1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pipit"]},"Identity":{"Case":"Some","Fields":["1qnjIHF7wcjDaSkvxecpKz6ZTtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EXsdDoiyV2Haz2+122cBCm/7QYXasEydMmuRpRTuKLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:34"]},"IP":{"Case":"Some","Fields":["199.254.238.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1okS61pnOuwXlY0enKPwu7CU0fM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PjBapr9GxmxuUHN1F5wcNpHaeukrNA8pF9Xssq3CXqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:42"]},"IP":{"Case":"Some","Fields":["185.194.141.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XeSh"]},"Identity":{"Case":"Some","Fields":["1oXbFwzI/Ss2MOjhzt2IPx+LsOM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xd49GGDIIL3PjifbpeeHDDTUcrFtUKuAK/RinmShEds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:38"]},"IP":{"Case":"Some","Fields":["176.111.31.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drogo"]},"Identity":{"Case":"Some","Fields":["1mcPtUshgYznwTUkqgAyWLjjXTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tCuI6VpqVNncbq3SMX3kGO414R/ea+adfrNq53iTDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:55"]},"IP":{"Case":"Some","Fields":["94.100.6.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanwatech"]},"Identity":{"Case":"Some","Fields":["1lLVDx7TfAhKTxWGbg1XY393EU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zIzgFDqVwyMndQWBVVk8fY1qHD1BwhDlqsDVHcQjtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:10"]},"IP":{"Case":"Some","Fields":["203.28.246.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:cdc0:ffff:9ab8:4dd0:41ee:b98f:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glowie2"]},"Identity":{"Case":"Some","Fields":["1k9Uu+KYPumrwzmh5Ew8mmHQYpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z9WwEATj9F7090cYiLY2wXJxwDEB3S7yMkux7049G6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:51"]},"IP":{"Case":"Some","Fields":["139.59.39.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::1e0:4001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as204750relay01"]},"Identity":{"Case":"Some","Fields":["1i1KzWa5+5GsLqp88p5lSorsHDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mIGCDaodWvJZCUD2yCdYCmUcNlDxP8mnDWfr5J1QJg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:39"]},"IP":{"Case":"Some","Fields":["5.199.138.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3dc::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itsfavesun"]},"Identity":{"Case":"Some","Fields":["1ibQBpcqGP56hV3PV9C/wOkGTn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxHZg2tu/ghEvqNwcYI52YAbzL88bdBZ/u+0S9XTfg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:18"]},"IP":{"Case":"Some","Fields":["43.128.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tuurtornode"]},"Identity":{"Case":"Some","Fields":["1h/pC1ypdjHoraf7ZBzE95SJn0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["co16r398uZyVnFjqTIHtExUnC8IZOKFu2KdN/Nfx5JE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:04"]},"IP":{"Case":"Some","Fields":["45.80.170.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1hrpTrlNUSele5Fh6sZXEb8XIZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oJJ/IVpyf/r+V2kIUaZWv7HMM14b8VKIWkKxOhl874Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:22"]},"IP":{"Case":"Some","Fields":["172.104.226.248"]},"OnionRouterPort":{"Case":"Some","Fields":[41938]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1135"]},"Identity":{"Case":"Some","Fields":["1gTHv5ARkeWdeR74dY0Z7o6MmnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SA5tjncwUs3FKDnH5Z8AGeseq7TyojZmmW52fIVazMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:51"]},"IP":{"Case":"Some","Fields":["185.220.101.135"]},"OnionRouterPort":{"Case":"Some","Fields":[11135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::135]:11135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay41at5443"]},"Identity":{"Case":"Some","Fields":["1gFd73BzpVDbTnl8dqcfNdKEaKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4mR/MZt26DfPzK1XawhfG+0zAfIjtvvi8shoXFaWZfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:46"]},"IP":{"Case":"Some","Fields":["140.78.100.41"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["1fuA5qmC8g0xMYY9d13rKyQa9VY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZy+boKB0qeHD2k65sSI284P5thjY/acvm+QdHNTL0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:30"]},"IP":{"Case":"Some","Fields":["23.128.248.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor5"]},"Identity":{"Case":"Some","Fields":["1fc6fUoNe5DlFdmcokYqLrJKdlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mTK7JulKcJW1YvqH55hJyYWI2WVOCBKhmLQWnVtpAvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:09"]},"IP":{"Case":"Some","Fields":["193.56.240.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["1fCUl1SKOQcdFKyemqkmoPinSPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSFGtedspoT4pHn1yazUg2Mqno4cbaqyRLB7o/X0PG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:57"]},"IP":{"Case":"Some","Fields":["92.38.184.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:15::62]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strait"]},"Identity":{"Case":"Some","Fields":["1eyBinmycdrkXX11gQz6Ud5JCPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+EJ+9BFl05hhi7x1KR9/HB8aaMTBGtW4AwoLUrDS4Aw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:53"]},"IP":{"Case":"Some","Fields":["51.81.245.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Osiris"]},"Identity":{"Case":"Some","Fields":["1ek1allY5IkaEk+3SYKbMOt/jSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlY19P1gREx0Zym2kFH3JNOhNp83Kh+POpz4hTn+Ua0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:05"]},"IP":{"Case":"Some","Fields":["198.244.238.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:bec::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["piSORGaming"]},"Identity":{"Case":"Some","Fields":["1d/HK7c1a/TrrWKmuZkQBDFquXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddI/j81qAbc87pBdPN1zhXcA8R9tx23G7VwPF8jyFyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:29"]},"IP":{"Case":"Some","Fields":["178.201.248.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH102"]},"Identity":{"Case":"Some","Fields":["1d4lfjDlzkShh9MIKYyPzcGwE7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5BfGOCzJjyS3YpqfhMr2d12mP23PHDbFGa+c1VnMKug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:38"]},"IP":{"Case":"Some","Fields":["192.42.116.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CheenaTorRelay3"]},"Identity":{"Case":"Some","Fields":["1djDHh+EW0ZWSxEiM+7PtTkGCRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ev+8kAknVb8R7gkhEtesAR7QFcCHumG0LVVApbNJlAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:46"]},"IP":{"Case":"Some","Fields":["5.135.158.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d8a2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaycrunchrelay1"]},"Identity":{"Case":"Some","Fields":["1cuhZ3e01XFWBJmzGQHwA8hZK7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzCmfSkI+c6iqkiYAxosyQjNRELXpXewRrF9/5RkdEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:45"]},"IP":{"Case":"Some","Fields":["178.175.148.132"]},"OnionRouterPort":{"Case":"Some","Fields":[6999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:172::2]:6999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber07"]},"Identity":{"Case":"Some","Fields":["1cTYiNgPDVvpimcrXhC3jqXV1fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Be4G8JCi3OsDzqzFjnwimfBjzBQQtwRrIjfVDHWQ9+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:29"]},"IP":{"Case":"Some","Fields":["185.220.101.4"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZiqiaRly"]},"Identity":{"Case":"Some","Fields":["1aLHSUv8544YJj9UT8Dx14D0y/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pic4MsDVkpwABdQ8HX+QewmyK8SCKBaEzyzP78L2zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:35"]},"IP":{"Case":"Some","Fields":["67.82.173.160"]},"OnionRouterPort":{"Case":"Some","Fields":[4785]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["komeru2"]},"Identity":{"Case":"Some","Fields":["1aKzrh6ARwF6C7xyCf1iTbhNR84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sArmluk427E2+aaBgoz+5ujoFPpT6yINZWbp14FrUI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:52"]},"IP":{"Case":"Some","Fields":["104.244.76.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f99f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Enflurane"]},"Identity":{"Case":"Some","Fields":["1ZjihlFkr22ZWPyaN9glwoOoDDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ilft6fczCTwmF8QPR5+d23ADPuCSSCWDVubBg+QXYmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:09"]},"IP":{"Case":"Some","Fields":["2.83.38.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoolRelay"]},"Identity":{"Case":"Some","Fields":["1ZS8QkRjbMNClztZS3B2hdyqDIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gvwXrAXHpenQpseJLCwEa1CV9t5WUks2/POALkeEpmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:59"]},"IP":{"Case":"Some","Fields":["147.182.140.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::20ad:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["krustykrab"]},"Identity":{"Case":"Some","Fields":["1Yq8hWRPAhY4AQMQw8SzURqKQUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZRrsei1E49+jLuZ8JQ+g5HChBk6XEVmfPU46AtjvBwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:54"]},"IP":{"Case":"Some","Fields":["162.251.116.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mamadu"]},"Identity":{"Case":"Some","Fields":["1XgFOewFjTWFDw5kWUuJUVdF4lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZELNZwoyY4WUT7v8keapnjazudn6dHD05pWjTRIFPlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:45"]},"IP":{"Case":"Some","Fields":["85.195.238.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:a003:0:216:3eff:fec7:70b3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sTORch"]},"Identity":{"Case":"Some","Fields":["1WqY04/Dx14DR+7z3ZwSdJr3x8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vuw0xXRKhJuZWb1n1Bv7+lfZa9nl4PZFEOPI/DAHxsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:01"]},"IP":{"Case":"Some","Fields":["217.182.196.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jmlsteele"]},"Identity":{"Case":"Some","Fields":["1WImSNcCwEsWloFRLU7EUSe/ujM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1PI6jjhnmov0IROSS1Vs0EBiqXoogXXa2r/c8xXcRVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["162.243.168.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["peppertor1"]},"Identity":{"Case":"Some","Fields":["1VJ+SGjur/iZG9BPa/joe1CKN8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4FIcxzDXGAEoUN9cqRMNgvH5JLwOEBGXJTmoQHK0Hc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:34"]},"IP":{"Case":"Some","Fields":["89.58.41.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:f7a:38fb:a3ff:fe58:61aa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1U25OhDORbMnzmz+ZxelWcy+9lA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEZCSqY6bNgHnOT41vDw1YrrPRjNhOcQV979asqf27w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:55"]},"IP":{"Case":"Some","Fields":["185.207.104.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProtokollaRelay"]},"Identity":{"Case":"Some","Fields":["1S6KL3O6N/L4j1QQHFZvIRCS4XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gmwdQdV+sThtE0g2+MZ3xTxcN140NhAw662/0Vg340Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:57:49"]},"IP":{"Case":"Some","Fields":["84.248.204.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waldmeister1"]},"Identity":{"Case":"Some","Fields":["1SoWAwPGONn7A0Y/imt5NNV4f0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r8TMUM9oi2p3HPZHdddDKCIMO3GPz3yP1bAFmcU213A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:41"]},"IP":{"Case":"Some","Fields":["145.239.7.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomRelay9998"]},"Identity":{"Case":"Some","Fields":["1SZ2Jn4FCjiRdp6XdzoeHoftPxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V1L8dFxGbXnQnA3LT1Xme5WUTPQ1/c+Ed0+78VDnWI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:19"]},"IP":{"Case":"Some","Fields":["95.217.183.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:8840::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmokeAspectRangers"]},"Identity":{"Case":"Some","Fields":["1SKPpaqf2zgl5vGZr6n55vlSahc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMsCSUe2MSBz/pOtO8pud9SmTKc+Gk1GqSyCNUmM7ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:01"]},"IP":{"Case":"Some","Fields":["82.221.128.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TochierRedux"]},"Identity":{"Case":"Some","Fields":["1R2doVhLqui8SgoQ4fsgYYqJVww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mQ3rNAWrzA1yPFwCBnc2NV7a5T1TADBIeqhHE1mYPss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:04"]},"IP":{"Case":"Some","Fields":["198.98.52.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["1RvU5ZMIsCxr5BUQOPQX1BnWLm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LWbxfer7uyTqCSSRN0gqVdM8TXY3tXMzhAxUEO9ZOU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:23"]},"IP":{"Case":"Some","Fields":["79.226.66.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:de:2744:b701:bde3:de9c:63e7:6ef3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer23"]},"Identity":{"Case":"Some","Fields":["1Rri+x1pmy2fsR8rBI5+A1yYS0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7eHq/E8WaqbOUqIueXJkVI/42+EXK/q2+kaGEJOPBes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:32"]},"IP":{"Case":"Some","Fields":["185.16.38.110"]},"OnionRouterPort":{"Case":"Some","Fields":[2120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["indoprivacy"]},"Identity":{"Case":"Some","Fields":["1RAVVNCU+sn4DwJv7ogWaobVBuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B1ltOmEznOggBLSQNet9Wtd9ctgtJkxIFJtKBSWD6HA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:56"]},"IP":{"Case":"Some","Fields":["103.167.34.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["insula"]},"Identity":{"Case":"Some","Fields":["1Q33aYLw0r/bKKdTB5zdY6GSwy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dj+Ki3DARwlq6MbFpOlty7fuRZAubUPK1e/0thzvkQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:05"]},"IP":{"Case":"Some","Fields":["178.79.134.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:92ff:fe96:d244]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NICKNAME"]},"Identity":{"Case":"Some","Fields":["1QX7lcM/jf3ZHgu7ch6+0il2LsQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ruaKMI75lhmcvTe1mH850hCRVMnlDOsT4QeKFSNQCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:04"]},"IP":{"Case":"Some","Fields":["144.91.98.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:5297::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ELPrelay"]},"Identity":{"Case":"Some","Fields":["1QHpXVIZcLR/3dFE8nTnlYl2pzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D6wUyGOcLq3PeFwtnOypvHoE2etqybVnPXo3nbsGw1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:53"]},"IP":{"Case":"Some","Fields":["78.43.27.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8070:c187:3d00:2e5a:4e48:fbbf:95fd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex80"]},"Identity":{"Case":"Some","Fields":["1OWFzg43qLNPDVNMo5a5cjixK/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSetKGwCssh3YbdRLt3HBv4m+HqNtHpJZ/ZWpI1leD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:45"]},"IP":{"Case":"Some","Fields":["199.249.230.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::169]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andrea"]},"Identity":{"Case":"Some","Fields":["1OUNJKNSE27RNJD5k2efpyU+TNo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6LHGIZdxkCJc5Ns2FTL4QM8yhpAFfWU6b7lv+dmBuFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:51"]},"IP":{"Case":"Some","Fields":["23.137.249.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:7666::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1176"]},"Identity":{"Case":"Some","Fields":["1N1B/jaIfhnJC1l/innGg90Do+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4e46QEdi6Ft/J6fLVUhcVPTaB9DWp7VatfYDrtkDv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:36"]},"IP":{"Case":"Some","Fields":["185.220.101.176"]},"OnionRouterPort":{"Case":"Some","Fields":[11176]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::176]:11176"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay34L"]},"Identity":{"Case":"Some","Fields":["1NxwslQJuOSw/UgrinDKaj9KEjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0OLkDJvW+0DdVqPgiS/KZ83caXmXp2/j10qorBmGufQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:33"]},"IP":{"Case":"Some","Fields":["5.253.176.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1NEHaAsIl9/+5QDmJamKqoBgx/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYlXZv/fN6vFfcK/o/CZpvhSz2uo8ythk917ck9szJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:54"]},"IP":{"Case":"Some","Fields":["168.235.67.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2604:180:2:1bc::b6a3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0155"]},"Identity":{"Case":"Some","Fields":["1M+yPWiAE1uL8gyCDlnDQCkVNDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["89peQ5tJ/TzAvl4aGLRyxMbVg/046hpooAO7thsWd2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["185.220.101.155"]},"OnionRouterPort":{"Case":"Some","Fields":[10015]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::155]:10155"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev8b"]},"Identity":{"Case":"Some","Fields":["1Mp/0E2r9uLLZ5Qm9aoyBbZA0Uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["77K5iOaPbRZNsxbXwnmGZ2VM4PSL0t+JU62rkYKqF9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:27"]},"IP":{"Case":"Some","Fields":["46.232.251.191"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:66e:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1MFnMudl61LrC3Sds13BTI4N+ZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pk4lCNZkhaG8xYGSfk/MzBPwH7h2/PEDpZLzSso88S8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:15:07"]},"IP":{"Case":"Some","Fields":["144.76.168.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:4423::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Layer13"]},"Identity":{"Case":"Some","Fields":["1Ju3UUx49oMD2HmvfD1dZxSPWZs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1LKoOmuxR4qWNMSxvUfbqWrnz2LHwlEJz8ikHoYeSwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:05"]},"IP":{"Case":"Some","Fields":["51.15.232.19"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:2340::1]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dnb4ever"]},"Identity":{"Case":"Some","Fields":["1JpUhi0fwA5c5UyzK/MXdGbAWHk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W2iF3c5tC68ZYtRCwme0tFyDoNx5303ger4/G4iQ36s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:39"]},"IP":{"Case":"Some","Fields":["87.122.119.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cepa1"]},"Identity":{"Case":"Some","Fields":["1Jkb8Uv31LtoTlarAqRKbKY5FgY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yF6XPB6Z35zoJvtkuAdUOxB2tn6dnMYCnSPVJtaqxME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:58"]},"IP":{"Case":"Some","Fields":["185.100.87.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:3c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1IOC3t9bzBu76g5b3XIiqkglJVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sVxwOGpbpX4AZ1t8bmkTe3QTuGrLoe04WkX0jiL5XJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:51"]},"IP":{"Case":"Some","Fields":["5.45.98.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:20:3467:a5ff:fe26:453e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eigentor"]},"Identity":{"Case":"Some","Fields":["1EfYGA1ftn0OOtCKwKEj75Q9hNQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["soiIOvjj2jg5g/ajv//2OuzUkHB3K666SC6DLkjjaW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:17"]},"IP":{"Case":"Some","Fields":["188.68.56.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f776:5862:30ff:fecf:d2c]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Osterei"]},"Identity":{"Case":"Some","Fields":["1Dn8O18KgXlvRiIyAZepADLK5Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywTfRrBAut8g+rZtWSg3UEbHsP5Z4c4DHWw5b/MdWS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:00"]},"IP":{"Case":"Some","Fields":["94.16.143.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FarmanDK"]},"Identity":{"Case":"Some","Fields":["1C0mUF82/nnM/c2y7tYgyqnUTEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xrxA6wOw0tNrx0uwzCMz3+Z268l7AnEiv/aJd1BJ7JM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:00"]},"IP":{"Case":"Some","Fields":["91.210.58.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:626::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["harsha"]},"Identity":{"Case":"Some","Fields":["1CNs8mBSKtvcs9uVX4+WXDKBizU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2qZH4NpcmGpEnW8rmx2t4PcZolBj4FQ9EuUUJV2xCH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:00"]},"IP":{"Case":"Some","Fields":["5.255.102.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:2667::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1B8JJDa1yKoQvXGEr2TC+Yt7Avg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eaV3Fv1amgsjxSSWWgo1JODWuL/6sGzSv6DNvfXkVZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:06"]},"IP":{"Case":"Some","Fields":["109.250.22.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreadfair"]},"Identity":{"Case":"Some","Fields":["1B0XISOWVrvH1EFzUhbAHaI3l3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tReGH7vF5HmpeRH58VlKiFzJwsvSrVTIGozD46OXFTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:27"]},"IP":{"Case":"Some","Fields":["46.166.161.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1Bnan3dvmyR7E9bCzEv2Y6+spIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/VrfL0d7/6YME0aIKkuave8H03/MCmnmby9gQFj63k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:26"]},"IP":{"Case":"Some","Fields":["46.252.112.87"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[29030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI20"]},"Identity":{"Case":"Some","Fields":["1Bb3yNg8rZE/PgkyABQXDVT+aqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MHoONGUvW6rhOM/baOeV0hxVPsObWGlRIMffnRR4jAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:07"]},"IP":{"Case":"Some","Fields":["171.25.193.79"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::80]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1BBTdpo4v63m0G9LurmIxrNN/Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enY98zaSKE2XWFxoP63byqtrdJhxiG3iQVZkn8uoC2E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:53"]},"IP":{"Case":"Some","Fields":["185.206.225.59"]},"OnionRouterPort":{"Case":"Some","Fields":[15804]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gGDHjdcC6zAlM8k08lY"]},"Identity":{"Case":"Some","Fields":["1AX8zwat7fiY3y8pyTSNy2IwMbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gqzul03bJnrnUQnQcLK34cnJ1cpFje4Pm26umn6RA8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:29"]},"IP":{"Case":"Some","Fields":["5.45.111.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:2388:df98:15f9:b34d:443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["0/ZhYDREje7jaXgslvhP4UB+QgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CHZeFJcVR0flR3IpkGof7561hpHkW6caRh9A0aUyIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:21"]},"IP":{"Case":"Some","Fields":["107.189.29.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f24b::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transtbb"]},"Identity":{"Case":"Some","Fields":["0+n4Z93yjeGR6mEf02A1PIOE+Ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I3372+94ngBvs5lR79yPCKhBnYfp1c3GzrfnaJkK3U0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:02"]},"IP":{"Case":"Some","Fields":["84.155.144.3"]},"OnionRouterPort":{"Case":"Some","Fields":[14074]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["09eqH62r0fxE6hr2FqLszkEnUcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J4m1DNoVqVsb8TdjLmOgZFA33CzRYiJGwY9Dewm4r4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:39"]},"IP":{"Case":"Some","Fields":["173.255.140.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pissnissemoldova"]},"Identity":{"Case":"Some","Fields":["09LkLY5iXTZIkBWrHoCBzlIN8v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Um8LqbpYAqCSULsuKjIgLPED9ckQ7sBM+9tzncOE9u4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:56:08"]},"IP":{"Case":"Some","Fields":["91.208.162.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5100::139]:8081"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["str3DEicebeer63"]},"Identity":{"Case":"Some","Fields":["08pLEbTKHaDv/8milDQi0NeGayk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["63FFEq6a13og8Ba5mQSoE2aXtOCauYKPVtXumyDcYd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:48"]},"IP":{"Case":"Some","Fields":["85.214.199.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8063]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:436f:5800:c550:adf7:932:c52]:8063"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelaySecurity"]},"Identity":{"Case":"Some","Fields":["065B0y3jiR45OBMz7TcVyrlKLA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLYQkwSK/e1pjjvw3awgihB8MPtARTPxdzgwkmvxN+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:37"]},"IP":{"Case":"Some","Fields":["192.53.167.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe98:5600]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRelay"]},"Identity":{"Case":"Some","Fields":["06jtNFxhupalOC8mp5HKls+WjKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zv4zXkZ6GTtV5hTCcyLrJvuR8hPGjootuc5J3r+Wu1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:20"]},"IP":{"Case":"Some","Fields":["92.255.85.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex92"]},"Identity":{"Case":"Some","Fields":["06G33vNwy8YFXz/FQKUYyFdtdXA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2tsIwn47y/vt7kgHOmBmskVonGUzohj5/T2SJNnb1xE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:59"]},"IP":{"Case":"Some","Fields":["199.249.230.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::181]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3zpzl3mnsqzy"]},"Identity":{"Case":"Some","Fields":["059m3kkQ064cNBXkUBIZ07meGE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YaXXNIwmJGn/WQUMid6gOrKrn3jPns2aIGZWe0hdLvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:20"]},"IP":{"Case":"Some","Fields":["45.56.90.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FuckGoogle"]},"Identity":{"Case":"Some","Fields":["058s2Qojb5SmG3Zha0hzMp2neIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OSvhBmP1Q+AB+zgCRCRW2ympvOnMn57Pco/ENTJj5Qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:08"]},"IP":{"Case":"Some","Fields":["87.118.112.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:214:3235:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["044i+kPKD2ESCyFHi7Do94sOPug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X291I2ido8rGYkJ0lDanKtDkBkFA+rsP4jlTJdSn/DY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:59"]},"IP":{"Case":"Some","Fields":["23.128.248.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::98be:c7ff:fe83:9a08]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mule"]},"Identity":{"Case":"Some","Fields":["043f1ueaDiT7HPMyrhR7Wn3JqhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TS6F8jqrJ+TPy3XycW1qTWT5iRkxRhO7noNgUejjiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:56"]},"IP":{"Case":"Some","Fields":["103.253.41.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beachyone"]},"Identity":{"Case":"Some","Fields":["04UKulL8HEdWHo73KmBI5fEjSHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c0L63hZ/IL7KgvzoJbAxWbBbqMrf7YERtJhSuGAD7VI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:33"]},"IP":{"Case":"Some","Fields":["146.185.253.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["03+X3/pVthxmFUhRoq4kbjKxsZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggbeA9H1doGSL3VQI3orLpQ/ik25kWtZLdqAddgDsB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:00"]},"IP":{"Case":"Some","Fields":["91.223.3.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit4"]},"Identity":{"Case":"Some","Fields":["0315qTGW3jPiOLA3ltA/5qWHrmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZjDiHwv0e5PQSyTXsxrl6zSw7EFIZ8pXIdK5lCazQ5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:06"]},"IP":{"Case":"Some","Fields":["185.194.217.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2094:3600::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgarath4TOR1"]},"Identity":{"Case":"Some","Fields":["03FTCfiYJ/StLdHrcWZ12gLdd4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5tWYKz4TZNDvOD2Pe0mdJEPxl7AwqeWbekY14zFkceo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:46"]},"IP":{"Case":"Some","Fields":["213.65.114.38"]},"OnionRouterPort":{"Case":"Some","Fields":[65187]},"DirectoryPort":{"Case":"Some","Fields":[44444]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["08eRPfaL2Relay2"]},"Identity":{"Case":"Some","Fields":["027/skSBaU44R4f6q4D1aqpczZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wgaN35jxCMe+mRko3xG8qPO6jUK7C5Heq7DKtUR5rCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:08"]},"IP":{"Case":"Some","Fields":["185.170.112.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ae5:8441:4dff:fe92:25ca]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n0x0r"]},"Identity":{"Case":"Some","Fields":["02pypz+B7eUegffLrRxEC340vdU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKsPGXZ7dCx4wGQoSWKh40BNznjLcl94WB+NKzTQj9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:10"]},"IP":{"Case":"Some","Fields":["107.189.10.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f5c6::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["makarov"]},"Identity":{"Case":"Some","Fields":["01ktOubNbFAEXVQp1O/wq4o5GjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2vA0B0Ym/A/zEjMfJ2lZYspA97hx0h5i2Vum5+AcoQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:17"]},"IP":{"Case":"Some","Fields":["82.65.45.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveKhafre"]},"Identity":{"Case":"Some","Fields":["01aCq24p2RqgMOA6m+tCcA2Woe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r6/1ROwHwdUc2JxiRmk3Ja33LQvEmRzQ9uM4/rp40Vs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:16"]},"IP":{"Case":"Some","Fields":["65.49.20.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boots"]},"Identity":{"Case":"Some","Fields":["01BDmsDCSxmqwACnOXY7q5qJu/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1juqB5T1o+y9RnfardaN3Rm5lbJnFVGjpIzLLMPB/D8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:47"]},"IP":{"Case":"Some","Fields":["152.67.84.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:3:16fe:d191:b6c:c1ce:4baa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLicebeer10b"]},"Identity":{"Case":"Some","Fields":["00vicbhGMNXgjQQHQZzevSyTERg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["knLvfpFwoaWGBGIWo7JOqS6juQlNIddSwJYCADTv8Jw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:42"]},"IP":{"Case":"Some","Fields":["95.214.54.94"]},"OnionRouterPort":{"Case":"Some","Fields":[8138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN2"]},"Identity":{"Case":"Some","Fields":["0zKS/t4k3UDyOFKD5VyH+FwJQ7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vVRdtdR1xz7lMR7ZO/Lc8WXGG28DrrECLsSBWcA1X1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:27"]},"IP":{"Case":"Some","Fields":["199.249.230.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::121]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["satedaprime"]},"Identity":{"Case":"Some","Fields":["0xr+CYlvNKTnh8hvqXEyZRbfb1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["prc5Goo0+c7eeGSdAz7uM7MQXBi+9ULv58SEr9/pwlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:56"]},"IP":{"Case":"Some","Fields":["121.122.107.7"]},"OnionRouterPort":{"Case":"Some","Fields":[25783]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORus"]},"Identity":{"Case":"Some","Fields":["0xpZqkVBYpWFkOK7wmiACJdDvTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JG6ZFK/A6QeFTgMisb+mwt1UIhm4CsbBC7Ddsx/598I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:12"]},"IP":{"Case":"Some","Fields":["204.13.154.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["0xASQS2dc8aYAxicRXBwJbyOMV4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTutziuUPdVPruStTgBD1h2UIlfI3eHC9xl449SZgks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:05:21"]},"IP":{"Case":"Some","Fields":["74.208.37.237"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:31::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mine"]},"Identity":{"Case":"Some","Fields":["0w6dTWOQaGEdbZaGHJXCCZFAuAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O0IG+NKUze6aXptnzv4BMa/sqItCjdQ//G9liUdY6Tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:42"]},"IP":{"Case":"Some","Fields":["46.38.237.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:e5::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cairnes"]},"Identity":{"Case":"Some","Fields":["0vTaxZGLsIKlz6xSdbKfrJs5mys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rlu3f83rct/Cy2FHkUYW3bM98liVENnt97F3HTffveg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:41"]},"IP":{"Case":"Some","Fields":["95.211.210.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber18"]},"Identity":{"Case":"Some","Fields":["0vFedJVFl+QeFVRJoM6bTbiS3/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKbfLLssrkEqsoj2nAsSsKfm2u64XLEPlQ2BMh2lTbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:51"]},"IP":{"Case":"Some","Fields":["185.220.101.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::9]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0d210s"]},"Identity":{"Case":"Some","Fields":["0rhF1Q7VtJqLi0JatTDDjZUuXDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Bg8tD+yHWiY9gG2R7K0SBlLUaNiIv3aVaHFWKB3Br0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:05"]},"IP":{"Case":"Some","Fields":["13.48.138.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:d016:15:6600:2d1d:4e4:d058:deb1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Germany"]},"Identity":{"Case":"Some","Fields":["0rahbUTei1+xc5UHtaS6+KCgLiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxucMoUtC5nR5Dtwv5hrzhKxSEWxdzN2KaSbteGdcE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:52"]},"IP":{"Case":"Some","Fields":["78.46.39.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["0q3Wi6n3NQMYk8uKWFSDdegxtFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XH9NJI6d/ESaarOcoYzjUYzZcmT1hBMIz7Y6qMb5ah0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:05"]},"IP":{"Case":"Some","Fields":["91.194.84.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:1ce::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwell2"]},"Identity":{"Case":"Some","Fields":["0qS+5nVKlxHrD6xH8wWb5vwNcsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nVbxRi8Pu2fhACAFFWmWpyAD8/bLUs8DI2I2rlqfQ44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:24"]},"IP":{"Case":"Some","Fields":["93.95.230.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange020ca2"]},"Identity":{"Case":"Some","Fields":["0psx/bXt0tG5TNMcLxO1z0EbEmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3JG+hdwvwNvJB6+gwtgOn0lLf7OUdVrUFNVrUUGvdX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:17"]},"IP":{"Case":"Some","Fields":["162.250.191.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaders1"]},"Identity":{"Case":"Some","Fields":["0pOUbNNmRrzmQx7I38JXfrckRNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u5AjgRdjDJseh27KtCezvCRo47l0PKJO4Z9/ASmXIvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:50"]},"IP":{"Case":"Some","Fields":["45.58.152.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynR02"]},"Identity":{"Case":"Some","Fields":["0oHMtL71I5Hc1+kOc7MuMkBDqUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HyZPI+McT6PsxkiSsJ7+bh/uK8k0StLRssaWMnhO1QQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:31"]},"IP":{"Case":"Some","Fields":["89.58.27.85"]},"OnionRouterPort":{"Case":"Some","Fields":[44202]},"DirectoryPort":{"Case":"Some","Fields":[4037]},"Address":{"Case":"Some","Fields":["[2a03:4000:62:ec7:d42a:41ff:feac:7169]:44202"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MollyLee"]},"Identity":{"Case":"Some","Fields":["0n4AYYMQMs39goT+7np1sIQ3ro4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+Rv+BHSXUME3Q2HFx8xfehBWN8ocTwotbkNxnwJ8M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:16"]},"IP":{"Case":"Some","Fields":["43.251.159.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roubaix"]},"Identity":{"Case":"Some","Fields":["0n126CfpKZesa8s+h/9uYewHCZQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0/XlKdeCLgFj3+v8arQLTec0SgGrjMwnq78TqbBomD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:53"]},"IP":{"Case":"Some","Fields":["5.196.73.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:7b8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zlasvegas"]},"Identity":{"Case":"Some","Fields":["0n1IQcE7h6FA8JJG1TIemcaCS7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DM4gFNkS4VhrYr2borUgE9iRkc54exbinDLVbZYkAxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:27"]},"IP":{"Case":"Some","Fields":["209.141.41.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ymybe"]},"Identity":{"Case":"Some","Fields":["0l1BnBZ/PMjU0FzSp+KUW7KHk0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ZM12WrAYnEbERXscIZBDfO2HeOmJXAcTwUimY8o8xk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:49"]},"IP":{"Case":"Some","Fields":["94.139.8.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2454:4c1:4e00:3062:c7ff:feff:6e79]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anaxandridas"]},"Identity":{"Case":"Some","Fields":["0lYQv+MLDNfCJm6t1+9YYS8KHqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3O4CetNUFem9AAFQPqWJgv9n4yUzAw7CeUiV1MFe33w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:45:44"]},"IP":{"Case":"Some","Fields":["185.138.41.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow004"]},"Identity":{"Case":"Some","Fields":["0lUmi6y7RWJVTPIBR3Mb2g2MRSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["roB9L73Bv8riU+Wo/xZeFTQwiKEoMn3OolMDbOUCA50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:56"]},"IP":{"Case":"Some","Fields":["185.195.71.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexPhoulRules"]},"Identity":{"Case":"Some","Fields":["0lIQzgfEnypPK8elBusPXqf14sI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jpKNuZBSgQBlsVQBD+PcJigIabr8KaAueP/K0KPMHw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:30"]},"IP":{"Case":"Some","Fields":["199.249.230.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::112]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kukuruz"]},"Identity":{"Case":"Some","Fields":["0k0MKKtIdoz4t53XYtYdtP0BVnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDA3G7Z0qwE9jhZ+ftjIDUenvLsEj7B8rXK1qZ1FtSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:59"]},"IP":{"Case":"Some","Fields":["109.70.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IndigoMagick"]},"Identity":{"Case":"Some","Fields":["0jgHRZN6mU/h4ZhZy+vxgdu4BEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AWyDnaL/sjGQXL4H8byAiep5oWe7etdHEZ0kQTQXRXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:35"]},"IP":{"Case":"Some","Fields":["185.25.51.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::fb6f:72f2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gianni"]},"Identity":{"Case":"Some","Fields":["0i+T4mdfF7/20jL0ebWeeI/q+QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtuigNHOCpNipnZ0ilSPbe0yt/99KZj/WuOxuSA1X6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:47"]},"IP":{"Case":"Some","Fields":["23.88.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:49c0::1]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynethex"]},"Identity":{"Case":"Some","Fields":["0iOlwR3FWs/qZZpX8EafJjSIwzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbgBGnZgYLf8Hu4zVR6SyC182+Agx/rsf8mPgt4MzvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:35"]},"IP":{"Case":"Some","Fields":["45.156.25.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1132"]},"Identity":{"Case":"Some","Fields":["0htjggmasOLXRzD5Csu0lQSPpKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0vKxw+eKcC1td3vGA199kT0XyQfkgEB00aX00VZc2/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:24"]},"IP":{"Case":"Some","Fields":["185.220.101.132"]},"OnionRouterPort":{"Case":"Some","Fields":[11132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::132]:11132"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["0hhWHaWfCTq5SiJiDgY+zoc4FXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/uqAsF8nRX/26azEJ5+4gV9unuxKnGZPT+A3fNX3Rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:51"]},"IP":{"Case":"Some","Fields":["185.220.101.192"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::192]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashBear"]},"Identity":{"Case":"Some","Fields":["0haeZBssEMrOombTE3BHkgC7mtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eX46O1owFZ+G9/ybBpSB+uzZs2hzYvMErvHm+/8vTU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:05"]},"IP":{"Case":"Some","Fields":["185.22.174.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:115::8a3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StopFossilFuels"]},"Identity":{"Case":"Some","Fields":["0hC/CRYgYsBekx9xuuzZPdkQLxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6E47bqmr8XsifYj4m8bJeWhIs52fDvSZXfCYBDyJtgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:08"]},"IP":{"Case":"Some","Fields":["192.99.69.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["0gd15f7g2bsVVV8xrXDaTH1W1lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L64zsBbLZmqIxFNLJ2K1IMIyfZP4TRWSV/kkZBgRcI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:30"]},"IP":{"Case":"Some","Fields":["23.128.248.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::84]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moon3000"]},"Identity":{"Case":"Some","Fields":["0gbuIqoar5iQ9qBLKB53Tvkf5rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npllppoQaPcXYQNI24lgmh0H+mJaQeKuN42wjBGJMss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:06"]},"IP":{"Case":"Some","Fields":["31.42.177.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Amnesia"]},"Identity":{"Case":"Some","Fields":["0fe+w0pmSY/FZbwFdjImkV4xfyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hrispJHu5JLSPEyZNbbgoO6AN+EOOLKRdfon8vzzX5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:41"]},"IP":{"Case":"Some","Fields":["202.61.238.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor5"]},"Identity":{"Case":"Some","Fields":["0fLFyCCz+WvmFEy/uE/d+dDsCBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NnG6s5OAIFV8RCipRBws2IyzrWcnSQ9jOd6dBnEc8Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:26"]},"IP":{"Case":"Some","Fields":["51.15.81.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:2713::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kriefukegtai"]},"Identity":{"Case":"Some","Fields":["0fH1qlvPXatExETe+CghuL7GYUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVFXB9qAhIvHdeXSWHfhtIHZ8MUoUhgV4doMwWfdd38"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:28"]},"IP":{"Case":"Some","Fields":["181.119.30.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber04"]},"Identity":{"Case":"Some","Fields":["0eXEBtFEKb02usxu7mTmuMWDPns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3p72oYp9JNdq1CPvT60OwHurDX90vMZ62qofXPZ54jc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:10"]},"IP":{"Case":"Some","Fields":["185.220.101.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AmorousLibrarian"]},"Identity":{"Case":"Some","Fields":["0d8K5E5p4GFKdzBbOhLRocdxXAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cWCM5f56sMFBPVm3l+NfLeViVhGCH10lvjw75Fjgc98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:38"]},"IP":{"Case":"Some","Fields":["185.225.17.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8446]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c800:1:5::d7]:8446"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1141"]},"Identity":{"Case":"Some","Fields":["0dXWpa8blPT7M3EDSxH/cstAqD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kyEgUKxo2iNV6KZoaSeT9Je3CllUVFgYaS86swQiltw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:40"]},"IP":{"Case":"Some","Fields":["185.220.101.141"]},"OnionRouterPort":{"Case":"Some","Fields":[11141]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::141]:11141"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lint"]},"Identity":{"Case":"Some","Fields":["0czAqOyg2tgK5S/rO0LSixAYxvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3TGJIdkiCYF5OBC/QG/Pc7DGdDDMu5U7FMwgK8jJ3fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:46"]},"IP":{"Case":"Some","Fields":["84.211.247.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AFlat"]},"Identity":{"Case":"Some","Fields":["0crjGnCIfYpeTSKye4/6BCEb/mw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7/eJ6yleU7BRYiULHLjSTGMOYp43qEVckesghmjFY+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:19"]},"IP":{"Case":"Some","Fields":["51.81.254.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["juggernautrelay"]},"Identity":{"Case":"Some","Fields":["0cYPm88tugendZePZsmSfTqUkLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0TyyFiy0InrTW/H6K2nlfLfbncMWWXdNWJMdNfp1dDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:21"]},"IP":{"Case":"Some","Fields":["46.232.250.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:673:24da:28ff:feb5:e5c5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapAMS"]},"Identity":{"Case":"Some","Fields":["0cUJwMuTqLJoK46YqplIawM5riQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UxgMdVwRnprXVMK5Mep40fGKSy3KLME53oysjP9pZZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:03"]},"IP":{"Case":"Some","Fields":["188.166.34.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1300:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0178"]},"Identity":{"Case":"Some","Fields":["0cRfqtdm6BDtokATNcyOvejqhSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ocO1jtJFO9KjpjpMbMQueh49YzG4G4km5CLu4K3P6o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:27"]},"IP":{"Case":"Some","Fields":["185.220.101.178"]},"OnionRouterPort":{"Case":"Some","Fields":[10178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::178]:10178"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["0bhT7Sfk39yjpU0/LiacTZRnf2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4VlpZ3/b2Qy8ZbE+nZ8x0xn3eYZlcuVNebFUhE/CD0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:00"]},"IP":{"Case":"Some","Fields":["37.187.96.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:20b7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thekillingground"]},"Identity":{"Case":"Some","Fields":["0bMAtO2AQSu5zvq0Mj2pJnGwaBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Io4Jkkji9TiMASGmDw5qG35wURseD5h2wSRnsEeSM3E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:09"]},"IP":{"Case":"Some","Fields":["85.239.34.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nullptr9c01c676"]},"Identity":{"Case":"Some","Fields":["0a43V8iDSLpa2nZ5/MjizdHHW6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uiL+v0sPs7HTCgBYc6PJzYL3Sd7XRFhXKTGcNWB7rSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:39"]},"IP":{"Case":"Some","Fields":["141.95.55.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhatToPutHere"]},"Identity":{"Case":"Some","Fields":["0aC3liQmLs8QVfdmJN8DzMsWFWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["voV/XeH5AZyMNKW6WweYFg/52pdesSOslbrPcJKuqQE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:17"]},"IP":{"Case":"Some","Fields":["149.172.206.99"]},"OnionRouterPort":{"Case":"Some","Fields":[4444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8071:4486:9100::c4b7]:4444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["east"]},"Identity":{"Case":"Some","Fields":["0WyX6QPJHuCGj/R0oHFpzOS/kJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m2eD3WhS07yPREuaJIvdYa86XOhGKOOfh7O5weqTlsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:53"]},"IP":{"Case":"Some","Fields":["152.70.96.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ieYood1yaish"]},"Identity":{"Case":"Some","Fields":["0WszWnHpEHBl5kGazF3jHOxOMy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nwt5WoadG+jfIABgk/aEb0mc40Ix31f9AoJ6mvZlQ+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:45"]},"IP":{"Case":"Some","Fields":["107.189.13.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nxaat"]},"Identity":{"Case":"Some","Fields":["0WFiMRgiURRk6cbOL8YuSKBUiyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["asBMEJjiyNEfdpSXGRTgkXLkymrjLNc8N+uHPJA6jtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:10"]},"IP":{"Case":"Some","Fields":["138.201.92.183"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:3e7e::70a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RUBY"]},"Identity":{"Case":"Some","Fields":["0VPzQNlC+/BHT1xEAArtiu1YjJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yxTdoMWlQuge9Kjn5sqV+T0afDUCrVmn/LRIpYFMVZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:04"]},"IP":{"Case":"Some","Fields":["5.189.223.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:56::ec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nosplash3"]},"Identity":{"Case":"Some","Fields":["0Un9puPaPg+qyzaWkujWXV3ng/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lmMbJzQRyfvFlNB5/KgFJpsuZkCPwRRfzXmxIqzv3sk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:02"]},"IP":{"Case":"Some","Fields":["51.186.203.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluecrab"]},"Identity":{"Case":"Some","Fields":["0UL0f43FWZU/ZhmfH+fHxLoa5u4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhnlidPJQk0IAhcv7EhxQsT/1XhK5CX6KmOEeHdlISg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:38"]},"IP":{"Case":"Some","Fields":["74.123.97.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip7b"]},"Identity":{"Case":"Some","Fields":["0TaS2XI2wLjo4Z6i3ZUrXE+QELs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oq8SpvbANV28TpNWaBiGhIFpgxDrOY9XIY0vJUTX/fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:45"]},"IP":{"Case":"Some","Fields":["185.220.102.254"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::254]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AugustTORRelay"]},"Identity":{"Case":"Some","Fields":["0TC3qTIpBtOXyctBvCFFDT1ksyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQMEYtNcFRWCGjl7iUuv5KFKuBiVgsgFohY4Jsn7gv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:19"]},"IP":{"Case":"Some","Fields":["38.103.195.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:550:9601::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dmsdrelay"]},"Identity":{"Case":"Some","Fields":["0S1x3NnahITc0mfRhogjq4E7cjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jz+0mJYcxBzNO7mPAPiwTZJyDkUu2gktbA90GqzkPlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:49"]},"IP":{"Case":"Some","Fields":["5.196.70.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:3e2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bmwanon3"]},"Identity":{"Case":"Some","Fields":["0SPA+PVigEaTxH1oxheGAjspXpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwoV4qZUzNnaxctSDPpNVCmqjUBV/dsWbH1JWM2+C4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:12"]},"IP":{"Case":"Some","Fields":["176.9.1.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:31c2:5054:ff:fe00:ea09]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idol5"]},"Identity":{"Case":"Some","Fields":["0SKYufL6jfs5lY8oK/vOyfLLA4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VGGeilcMKHOX8bywqLgRZF17RLHffD/XIaf5YX+rsa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:30"]},"IP":{"Case":"Some","Fields":["85.239.40.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5cc0:1:1::8512:4a91]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gazelle"]},"Identity":{"Case":"Some","Fields":["0Ro8ETu9bMeonMarb9d4P3dJy2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVhPqvw66COkbswPO063UdaQuqZJPaAkpKnHgnLVlos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:16"]},"IP":{"Case":"Some","Fields":["135.148.171.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torSiliconhomeDe"]},"Identity":{"Case":"Some","Fields":["0RcasVdOxKGG9mE2TW/w11WDVvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enE2J2sDaSZd/3jj8sPIuZ6yrWWuSo8QITUYyLAfqPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:25"]},"IP":{"Case":"Some","Fields":["185.107.195.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:bbc0:310b:2::102]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["0RZlN18zM1biGg/itqr3uRuZFto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixu1aJkNrKhNqJd7DvN6KodOV2dTuHNyOoefMM9/4l0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:18"]},"IP":{"Case":"Some","Fields":["5.45.99.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:683:3805:33ff:fe78:a676]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kienjoch"]},"Identity":{"Case":"Some","Fields":["0RIXtEhz/XyHnlQYRLTCC5p+XPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AJyqlRck/KZI0rxzMZsz0veCy6h7/FzR57Mivv21mRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:15"]},"IP":{"Case":"Some","Fields":["85.214.97.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4203:7c00:2dcd:efd9:ce81:dd6f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moses"]},"Identity":{"Case":"Some","Fields":["0OGWKyRgulTYHhQmMA0Jcg5tQ+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGXPSMPPS4P3ibutnnJn4eJ9hic/07JQh2hRSRty30M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:50"]},"IP":{"Case":"Some","Fields":["69.164.211.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:34:ffff:ffff:ffff:ffff]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hotthing"]},"Identity":{"Case":"Some","Fields":["0Nmcyja0BvgTy35coXzuWPveiMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvDg5/i1ucIp7YdxodUjKfThkvPnTXmsoQA0V3oLIcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:33"]},"IP":{"Case":"Some","Fields":["185.244.150.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OROGOM"]},"Identity":{"Case":"Some","Fields":["0Nk9XotGvXK2hhe0AuLbwW+KoEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ot3xevk/T9RWqUS+5f2svAAu8KvMILJjUxhWW4GX17o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["50.7.8.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:49f0:2920::d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loewe"]},"Identity":{"Case":"Some","Fields":["0Mx+CqeSHeQ2TaUMuQqDyzK5PGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["//NUflE5cnawZZ+Ty/jz5c01U3R7TaJtPjAk5K8SYik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:19"]},"IP":{"Case":"Some","Fields":["109.70.100.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xiellettalio"]},"Identity":{"Case":"Some","Fields":["0MXoCHQ2yZrmKTJnY0BdIsLlqwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uw/jYhK2elkEcc4R+pfMpGojUQr7cZ/qjscTJoZGbJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:34"]},"IP":{"Case":"Some","Fields":["87.92.149.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation58"]},"Identity":{"Case":"Some","Fields":["0L9qZAAIHaYDFTbs6tWfeb2r62U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SV8Th/u/CsG+BOR+irNUxEESvsTJo25F6jh1Kl1dVM4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:47"]},"IP":{"Case":"Some","Fields":["51.89.143.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortefidelious"]},"Identity":{"Case":"Some","Fields":["0LbjfVyjZo+D2lGEV2zcXIiHQy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SORzhlccTx25tXq/wm5l3mU1eoRFfwJu4wlGvQwf5/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:28"]},"IP":{"Case":"Some","Fields":["51.195.29.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elites1"]},"Identity":{"Case":"Some","Fields":["0LOYQM9Xk5YGuarCc9CQcIQnNtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3gNjyGKmsz8HZNgrLxak0r/Vu8vLseqb2saQ3gqXMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:46"]},"IP":{"Case":"Some","Fields":["45.58.154.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thelastvampire"]},"Identity":{"Case":"Some","Fields":["0IxpRIWgAxaS+v6MMgX7u9vNlAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qzsx7jySSmju5/5oC1j9BU1zEAOqqotQ4VbkxKt1p0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:18"]},"IP":{"Case":"Some","Fields":["103.109.100.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spruce"]},"Identity":{"Case":"Some","Fields":["0IhqSvFAEj5HbXgE71HKdLrhzl8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLdFWIMmB1ladO5Sx/2DHiEjNp1Rp8hQcELktjQuXJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:43"]},"IP":{"Case":"Some","Fields":["209.58.145.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SNTor"]},"Identity":{"Case":"Some","Fields":["0IZgttcLYkmlfYm7eo8uoslSvTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sC8vtIl165iwNtLMtAZ2i0tyDSKgAfatqon1L7Xljvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:00"]},"IP":{"Case":"Some","Fields":["130.89.149.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2564:a120::57]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Transyl"]},"Identity":{"Case":"Some","Fields":["0H538GZafF+RGLNdypiMNGsoBIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jc+daU8yNnM39GdRLzcX4BKuYmzeTwXzeEYlEcUQ0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:25"]},"IP":{"Case":"Some","Fields":["185.246.188.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["0Ht7kYURmYXeu7L04Z9qGep0bO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mvKZDyqtE6ytBDLByhWlsPHquBZk2y1JnswrSpOXW+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:52"]},"IP":{"Case":"Some","Fields":["212.227.73.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:46c::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrkRelayForWaaaGh"]},"Identity":{"Case":"Some","Fields":["0Hbq1ISG8Fst8jSwhu5f6Ax+4jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bpJzNLIrMBaYcx2Kfe1uq2I6d/ctkwBLUo1nIg8v7Dg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:28"]},"IP":{"Case":"Some","Fields":["51.83.43.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Skyhold"]},"Identity":{"Case":"Some","Fields":["0HZWF2n1yT1ih3fj4F1GM9eD644"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bMZmGDaPuhI5ROdZFNdpm84TnyguuB93hSN2vrv2n4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:42"]},"IP":{"Case":"Some","Fields":["93.41.149.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b07:5d29:9575:2421:ca22:4b2:a431]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ajourmag"]},"Identity":{"Case":"Some","Fields":["0F9By3igAxHY7Eq7TpUVgugpjQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CBtgKDvlyW90n37k0QISUHHaDja9RQZZ/eqM68qDc+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:49:11"]},"IP":{"Case":"Some","Fields":["94.130.181.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:4162::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mitropoulos"]},"Identity":{"Case":"Some","Fields":["0FYrt0pcyIctEbIiZ3AJqJIvw4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cty8DxaWh46n+5m5tTv9qCoPZ3gHV4naorS82cqqcRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:44:11"]},"IP":{"Case":"Some","Fields":["212.83.61.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plaincrown"]},"Identity":{"Case":"Some","Fields":["0E6vRHjyZencDHtJcmuQ9YkUKG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NGS3BBXLmCkUPquDDXhpPQ+/0uWLATFd3gHBuC0es1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:44"]},"IP":{"Case":"Some","Fields":["87.120.8.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c18aa1b60d3c06"]},"Identity":{"Case":"Some","Fields":["0DQbSWiX+WCEVwtJM9UZyyWzXHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWK+xidZv6O7CNf8VlIC1aaxE254vZbS09UJzDFBDtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:40"]},"IP":{"Case":"Some","Fields":["95.217.164.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:73f2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de3"]},"Identity":{"Case":"Some","Fields":["0CetTmpXdVvICt0b9si8f1HoorA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pi/TqkeZMtL+UAkriw8fAJZpG4HoysbnJML6r8vEGls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:55"]},"IP":{"Case":"Some","Fields":["195.90.201.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kimchi"]},"Identity":{"Case":"Some","Fields":["0Cc8hWbMmuzkx2I3bJsGb+Dx2t0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F2MjEtlkSQvII5XOHxYfFFTQogXg4QxK1qlUbeAFqA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:50"]},"IP":{"Case":"Some","Fields":["54.36.120.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PGtorExit1"]},"Identity":{"Case":"Some","Fields":["0BuR1CRld34STVHCKbD5xXr5DwQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Enfk0DpVIGtNdrwg6lMoyBxlFAdXxca+RdR9T84FfAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:47"]},"IP":{"Case":"Some","Fields":["209.141.34.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["someTorRelay0"]},"Identity":{"Case":"Some","Fields":["0A/NHyUMcfc5+JGFtcQxMLPNjCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FgDbCZUDArlY1W747TWUvN0MIqbGyvw4X7J4762j6fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:54"]},"IP":{"Case":"Some","Fields":["185.65.134.167"]},"OnionRouterPort":{"Case":"Some","Fields":[55868]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aStupidTestBitch"]},"Identity":{"Case":"Some","Fields":["0AeVMw13x1NExU+4gAUx+rPED74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoO0OB2WDvL7nsxI9KsKwCX4+xQOSRuzrRWHTKrYyvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:46"]},"IP":{"Case":"Some","Fields":["104.244.77.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f503::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["z+91VJQpOwyWJLWaFJ4YcEpHVVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XQFa/Ayq9DVH7GBfPK7l1UbFl/LUU5moDQnRg0p2Yp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:06"]},"IP":{"Case":"Some","Fields":["185.232.117.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:5700:b9e8::75f7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pineapple"]},"Identity":{"Case":"Some","Fields":["z+oghaP90Ao495vt+bHp+POdRYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OKAAYRC99jA145jdtsT/0Xo9SYTgwmE8Quowqb2yUok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:32"]},"IP":{"Case":"Some","Fields":["124.50.144.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoldenPOP"]},"Identity":{"Case":"Some","Fields":["z+HLI5QC/kGsClejeBRHQYkHhd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HCxsBCKeFdtffQns6A2FbYW7JLPVBrgwO+9IFxG4eSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:46"]},"IP":{"Case":"Some","Fields":["94.140.112.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UlhasTor"]},"Identity":{"Case":"Some","Fields":["z9+Z7hkj2HAyn42uVDmP1FQJ8B8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GMklWNleh1csSmiqr6tO/8pFtW/gmyms0BwcAh7Q0sM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:27"]},"IP":{"Case":"Some","Fields":["212.32.240.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNETMONAU"]},"Identity":{"Case":"Some","Fields":["z9N2SdP8Qotbu0XErjK1svtcT6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0BxbYZkS4zp6FbjnNCLKSjGfRbceNkAdSZfZuE2cEHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:05"]},"IP":{"Case":"Some","Fields":["3.26.51.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Exit","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveLuxor"]},"Identity":{"Case":"Some","Fields":["z9NLHhxP4TY8ORadZTic84VoELE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DrE/x0lw3tUMIdYJVsodwtU+GZTPzmDfO/VwfbjD0Ho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:04"]},"IP":{"Case":"Some","Fields":["65.49.20.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["z9KJUgSuqoJDQ2O1XZU3uIzm3v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5+r9v19UWoMOX+MWcdExg6Kri7LqK2KErsrQ5yEGEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:19"]},"IP":{"Case":"Some","Fields":["185.177.206.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::139]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mytorrelay"]},"Identity":{"Case":"Some","Fields":["z7jOKNGxLuuGYlEa+8HQxveQZag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2rI0pd+vsVdDaUUoFk0IJLRlR2KereN67/u6P3G/0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:46"]},"IP":{"Case":"Some","Fields":["84.149.69.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kochan"]},"Identity":{"Case":"Some","Fields":["z7ffn76vnsEmprVXoa8XfK1Llqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6oZhcFpNV5B1t9YyPsEEt2WHhA+6aX2xPI3FLcFhOkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:12"]},"IP":{"Case":"Some","Fields":["80.108.10.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BFlat"]},"Identity":{"Case":"Some","Fields":["z7Y+WUccOOSvou7e6y5JxN9QZYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ABMkM5aOXmI1KrGOhUz65r2tYE7inmY9evsda/rEmGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:22"]},"IP":{"Case":"Some","Fields":["76.95.215.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay37at8443"]},"Identity":{"Case":"Some","Fields":["z7U1cVRCvA6favIkp5S7+gLQs0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIgexqBAiD2DWX7MAQx0wmW2sbfdxxKhChJnCsPkb/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:31"]},"IP":{"Case":"Some","Fields":["140.78.100.37"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["serv"]},"Identity":{"Case":"Some","Fields":["z6dEfGanCZMvA4/uawKLhKbmdug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KL+v9+2GDVbVIeBkvyGl+UeN8zpVs8NExOfsdBNVmjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:30"]},"IP":{"Case":"Some","Fields":["134.119.32.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeeVieh"]},"Identity":{"Case":"Some","Fields":["z6RaRzn75HfYxlAINLWfQadJopQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQD1ON5LetVGPZt87G7BdvlmDpMVIHCKgqDMNbf8oVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:21"]},"IP":{"Case":"Some","Fields":["103.119.112.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vunreteqrado"]},"Identity":{"Case":"Some","Fields":["z5vrPjVUxcNDAkZBqRzJrmuEmII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oOXRceW/PK97zchwbtcE5E/Uf7uEua3/OnZP63tnua8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:36"]},"IP":{"Case":"Some","Fields":["87.120.237.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["z5pUcIHJVmTIxzW63bkeYhD5eVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMFRXe+xuH514XD+M9M27g8IVVa5mqc/g58xELS2kj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:16"]},"IP":{"Case":"Some","Fields":["151.115.47.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jelegend1"]},"Identity":{"Case":"Some","Fields":["z5Mjbe4fV9QHLu3B+XUtt79JeJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lXjA8SXgQgNsmTLqzgY8ivW0YDLY1uwprZb8kZB3lQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:47"]},"IP":{"Case":"Some","Fields":["171.22.109.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::a076:fa9f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange034us2"]},"Identity":{"Case":"Some","Fields":["z4zEdjKY93/2Ta80DSbRu/M2LFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/qEjXHiZJZ1lnTMuuCaCoF+OxRxtRgvFcUEoYL7kzzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:27"]},"IP":{"Case":"Some","Fields":["162.212.158.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thinkindifferent"]},"Identity":{"Case":"Some","Fields":["z4J812pZ+s2uYOElmwCGrP9y80g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dYf2P9NXJzEdKiGLzomOUK21SRneTzgdNsPM72gG6Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:56"]},"IP":{"Case":"Some","Fields":["50.116.51.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe16:8f3e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yudejp"]},"Identity":{"Case":"Some","Fields":["z3Yu88hrEEwwFRGJRUfHI3H5UqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9y6gCvm9le/D0Xnl+IDbOrh61bUPaenAGUEAU1TNnBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:25"]},"IP":{"Case":"Some","Fields":["152.69.198.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashOuzel"]},"Identity":{"Case":"Some","Fields":["z3L7AQvwKhNygrfz6s4gGQXW4Hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELNsLU8H1Qyjo+SB4usiY0KHFB89HmIxvZzfvoCPPg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:36"]},"IP":{"Case":"Some","Fields":["5.255.96.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:a59::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["z3DMVC5GmS4jACBzZjZH95CetAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jizmm2noBfHLgYvGGUYkF4LnAsmQCwH81mYgKzqMFRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:33"]},"IP":{"Case":"Some","Fields":["45.142.211.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:b641:6f1:64::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Faravahar"]},"Identity":{"Case":"Some","Fields":["z20Kr7OFvnG44RH8XP9LR5I3M7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["71A9GvYqtUwnOpqaZOHmDQY4bINLsOIBjazcFK9+zTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:59"]},"IP":{"Case":"Some","Fields":["154.35.175.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2607:8500:154::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay01"]},"Identity":{"Case":"Some","Fields":["z2pggAkbshCqOJL+/i9qOW2gjfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQK4PfbOg2o2RSkY+QYJk5ZzOdJEypUXH/BoDqA5kSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:28"]},"IP":{"Case":"Some","Fields":["82.149.227.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:126]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schabernax"]},"Identity":{"Case":"Some","Fields":["z2WStT4zA/aUcenGqS6Kbuq33cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ri/NrfikGpb8aQ4PxQs5H//QoHWatTW7sP4RX2RnJ8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["89.56.233.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:7846:e95f:101:47c2:2bf0:662f:9efe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GreetingsFromTheNet"]},"Identity":{"Case":"Some","Fields":["z02w4EgP6x6PWcPXdOuSdSg9V50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c7xZ4LLDi1BTAEALFr8G4V89dAxgbVj8Fk37aYg4Naw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:03"]},"IP":{"Case":"Some","Fields":["135.180.40.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taniquetil"]},"Identity":{"Case":"Some","Fields":["zyCpEBpplUQ6ns+gdVGir4cxfZw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cCYorKc+vmgscmMj5SZUTIu9H1KiAQdWxiAEsINilmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:08"]},"IP":{"Case":"Some","Fields":["135.125.25.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d1bf:4521:600c:c37c:3457]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI10"]},"Identity":{"Case":"Some","Fields":["zxwYBMM81p2KdVh/q8Y9XQ4pgPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIIB4h8daN9Z3lPY9G8pe6KmQpXRlA9NyM7Jx2oJu/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:12"]},"IP":{"Case":"Some","Fields":["171.25.193.234"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::234]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1140"]},"Identity":{"Case":"Some","Fields":["zw9JwBftFO/VTpU/QorjUIp+2Fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i1Np1dcmC4Rjqs58UmbHcfq/p4Drx5knxmMdXu5G2I0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:55"]},"IP":{"Case":"Some","Fields":["185.220.101.140"]},"OnionRouterPort":{"Case":"Some","Fields":[11140]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::140]:11140"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomOfThought"]},"Identity":{"Case":"Some","Fields":["zwGfHZJCcRMlCjOLu6EJUEQr6og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["163Rmf2n9+3S5ZkXqnovcw5mct9tPSHw0QtYyzT6x9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:13"]},"IP":{"Case":"Some","Fields":["85.214.236.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42e7:b400:778d:ed2d:68b5:acaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FSF"]},"Identity":{"Case":"Some","Fields":["zugE+gOoemXKpryzolC17ZI8CL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FPAKAGUTgneE8GeIaCWktoET/p37S/bJEtouHOYCMHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:17"]},"IP":{"Case":"Some","Fields":["209.51.188.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:142:5::48]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strayWires"]},"Identity":{"Case":"Some","Fields":["ztV38JHcsVrYyH+9RSpR6p5gv8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9ss41siOawCHrB0hHQxULMC/z16DhMLuIxgmdMDw0ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:38"]},"IP":{"Case":"Some","Fields":["172.106.16.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["simonjester"]},"Identity":{"Case":"Some","Fields":["zq7WmzfwdRzlIb2MzpR4xCoIl2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a5rB3+YW7ZjfeS5kLa5rLzAaoTYV0Bn7mmBXWg95BRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:43"]},"IP":{"Case":"Some","Fields":["212.83.167.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer76"]},"Identity":{"Case":"Some","Fields":["zqhsMIFnvU8NKuaRkYBduW2FZxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P59LIpSWGPqy7FSVD+bdkuhF4Gz7MXyJdyTaBSmLJv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:56"]},"IP":{"Case":"Some","Fields":["95.214.52.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8176]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpartaNet"]},"Identity":{"Case":"Some","Fields":["zpY3Nsz3q2Bu+Dy4MhC4ZWhQP9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p7hNF48kRm46OM8bFjxEb8L+thwz6Mo612DyZFSpFEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:37"]},"IP":{"Case":"Some","Fields":["85.236.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webkult"]},"Identity":{"Case":"Some","Fields":["zpADIIoEeWAkYFLGBKITw78Jb2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSqKv995eWnkaMLRS6HrbvGyOAlU/IR3ALlMbBk7qho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:56"]},"IP":{"Case":"Some","Fields":["144.76.219.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:92c2::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mj4"]},"Identity":{"Case":"Some","Fields":["zoY8Iq1au+r2Bq41oieBxAnYleU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XXvvA7TI+Fj9T7FwXb8MPrdi7C+h7W2jvZp9dfAvP6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:49"]},"IP":{"Case":"Some","Fields":["93.115.86.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RichardSnape"]},"Identity":{"Case":"Some","Fields":["znZB3y8l88zDhyTmnTgstQPAaDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W3cMZ7nUhIEW2ijxiz2JYotgOtPQZXy45GI0H+E4d0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:57"]},"IP":{"Case":"Some","Fields":["5.189.182.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["updawg"]},"Identity":{"Case":"Some","Fields":["zmmRYqd0leh6ivNztnTaNsHqc5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pOAj01Mld/KXLstm9KBuPvSYs3RaSVbRk0HqdlusKZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:17"]},"IP":{"Case":"Some","Fields":["45.77.151.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation53"]},"Identity":{"Case":"Some","Fields":["zmlLqNAZ7mDY54OMwXfmic6oJeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lHuIrkYApuS3DPR5nApf/5X8pSpMn85M8QtWhLtCncY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:45"]},"IP":{"Case":"Some","Fields":["51.89.143.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0183"]},"Identity":{"Case":"Some","Fields":["zmURlorKpDQCY41movrF8y+aRcQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qHeqCfVESnbu6xquoi0kQ/OB4jBcSfbL1f2hQax5B4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:51"]},"IP":{"Case":"Some","Fields":["185.220.101.183"]},"OnionRouterPort":{"Case":"Some","Fields":[10183]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::183]:10183"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev12b"]},"Identity":{"Case":"Some","Fields":["zl70+2RFRNsvQwpgzG64b9fim6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXx4v4BP8fk2fEdGL2j7tAfAJMDxtLtxHBRW2vGDHmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:19"]},"IP":{"Case":"Some","Fields":["92.246.84.133"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:c2c0:1:4::2]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guidelli"]},"Identity":{"Case":"Some","Fields":["zljPZm8gmFdQL86vHLUvY4r/vWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1QqsbY27AQpuHzMuJAh1ct/gDOrkjHuj5WrBbA50mgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:39"]},"IP":{"Case":"Some","Fields":["194.187.249.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WindowToTheWorld"]},"Identity":{"Case":"Some","Fields":["zlVHVOJF9z0HdbTHkilt2uFuIoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iN089hfDRR73g5pu2AzqlvkkIrep1sjCR4x3vY1Yqz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:19"]},"IP":{"Case":"Some","Fields":["45.67.219.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["juanovo2"]},"Identity":{"Case":"Some","Fields":["zlJhH7ceK3jq/gxh4kHsfBFseos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dKv+oM5kQFvpN/LzkB2alx4T3tGPFeXr8bJc4kLgLao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:22"]},"IP":{"Case":"Some","Fields":["205.185.115.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rymndbjcyirjoytu"]},"Identity":{"Case":"Some","Fields":["zkn5MpvxGKHB1CAVN1qtKYRPkwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fqeE/Lx4AmXNuIuc6ATfvNAlQ9vlLseLK4d43ZvsTQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:39"]},"IP":{"Case":"Some","Fields":["184.164.24.179"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy61"]},"Identity":{"Case":"Some","Fields":["zkfwNW2GzwoaIAjZdiMhbVYPsKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n0AxWpzpyAMtEGPlp+Q7ucg/bcvlDUc9H/cuU5deCuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:07"]},"IP":{"Case":"Some","Fields":["212.83.43.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:babe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["altenfurt"]},"Identity":{"Case":"Some","Fields":["zjuYMj3aQMKcnUhwW7eL0siVMPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WkHAZvVFqc6p9YLGwIHWEkCIoSQv1MtfIwba3cZVj0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:29"]},"IP":{"Case":"Some","Fields":["95.114.74.116"]},"OnionRouterPort":{"Case":"Some","Fields":[42299]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:c23:b875:cc03:b841:b9d8:9d8d:1b1c]:42299"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ahehfxubzfxwspvk"]},"Identity":{"Case":"Some","Fields":["zjawu0yBtG+9hmXHf+h+W9SP4LQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f6UD3IQYqx0F9rpey6Eg+7NkffCjwUJiX6TBk22OpRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:18"]},"IP":{"Case":"Some","Fields":["81.169.239.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42e2:ce00:d4f6:291e:2df4:30e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UkranianStrong"]},"Identity":{"Case":"Some","Fields":["zjDOOW1itryd78g0Taib/WAINmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TbXC138wZ5GacsZsU2WJEjI2kyws3VyUlmqVD9+nEIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["185.225.139.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:3::680a:e7fc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorFakedOrg"]},"Identity":{"Case":"Some","Fields":["zhU+PIExhaUWw0HPjCvmvvun064"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wd9vN9NbqY7xqQxxeVNc4skfVKclgeAIV/V4lceoPSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:20"]},"IP":{"Case":"Some","Fields":["91.66.4.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8109:8000:d:b46b:61d2:be19:167b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zfauzqmpCSyphZp4ZSrmDTWaRPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JFyIUrKafhQmZrxRSOIBLWxOa9jquKOBq3tFU2LYvsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:33:07"]},"IP":{"Case":"Some","Fields":["37.120.186.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:23:489f:4fff:fecc:5244]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra88"]},"Identity":{"Case":"Some","Fields":["zfVvKq+kK/aRIGlSkRB+I2SMsY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x7uVG4SoDnTLEqyMY+ZWR00sM1vX78DiMFxKg5hCWG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:36"]},"IP":{"Case":"Some","Fields":["193.218.118.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::130]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrresdemorte"]},"Identity":{"Case":"Some","Fields":["zfNksXW89jqQM1Tl9XdktMNB4jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0NZNjSDeW3qPzCDZ9qquT88cBZ3SIAdSG1ogbDf3EO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:29"]},"IP":{"Case":"Some","Fields":["77.8.146.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBlackH0l3"]},"Identity":{"Case":"Some","Fields":["ze1hWtHMz3DBGIe9ipGNPQs5KQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y7iyfOsDlU+02m0XToabbTTIOVHO51fI4xY9n/9hFus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:30"]},"IP":{"Case":"Some","Fields":["37.24.145.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0b:18e4:1:2:3:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sidlecompote"]},"Identity":{"Case":"Some","Fields":["zeiv0YFoRI3K9V8YXBxRe4Fdy/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RddddZfZdL9ykux3sNRwOTqDKkw/V4XTXHmRrN8NBaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:46"]},"IP":{"Case":"Some","Fields":["81.152.88.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c7:d381:1301:4262:31ff:fe07:9b45]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r3"]},"Identity":{"Case":"Some","Fields":["zegfwBUB1NnQsHpzFMFPSjaVjC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bDI1rUxkWdpqkQxlNyOUHeLdM+7wyyOr4IddjgPhhUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:59"]},"IP":{"Case":"Some","Fields":["216.250.119.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["silversurfer"]},"Identity":{"Case":"Some","Fields":["zeTF3J1jnpFbmbRh7iQwRPyiZLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6u/c8/EJXLZAx6Q7kHx49gMNPnqSLpagmTk+8cmRbQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:37"]},"IP":{"Case":"Some","Fields":["178.17.174.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:4::b29d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["zeSSs00UoNlxqLBIIW7LK/R9wN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Y6WakiSnEucZLHzjt4MDjaWpMwB4geWBxqFAuak4Cg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:50"]},"IP":{"Case":"Some","Fields":["213.238.182.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rotorstator"]},"Identity":{"Case":"Some","Fields":["zd7DzEsP1QVMmbLShD3otgmkyro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cZJWxErEYEbspTrX9MYY+Q7SVoIx1Y6Tg4rYrjlkhFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:09"]},"IP":{"Case":"Some","Fields":["74.91.21.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zighimilan"]},"Identity":{"Case":"Some","Fields":["zdKW2MOOqmqUJC/PAyk+DW7EoNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mtjd15R9iNdBBpW3+HIc5nnC1afmgBDHmLsKf2TxaJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:55"]},"IP":{"Case":"Some","Fields":["93.55.235.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bulbasaur"]},"Identity":{"Case":"Some","Fields":["zcZD5Z0E9jrf3g7ERzrHKNmni9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rJYvWWYBoe5Fq14OyWC5GrqRVR7ybDHi61B/UA2D9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:53"]},"IP":{"Case":"Some","Fields":["172.241.140.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2mpdhack"]},"Identity":{"Case":"Some","Fields":["zbJgXSvSjaMcyRlW6LrRR7ffivk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AIwsxqmfkprsLT5dtVQutgBHgYVXSKTxIKwXjZhWwFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:08"]},"IP":{"Case":"Some","Fields":["24.61.235.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jonasBebe"]},"Identity":{"Case":"Some","Fields":["za66RY9hKXdmQ3UZNAdqUdhRw0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jc8HvwoPAlqSS35dSQGl1mOzBKFl3UpkTxlrWmQi/x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:40"]},"IP":{"Case":"Some","Fields":["95.217.203.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:4683::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2fjsaf2ja4da"]},"Identity":{"Case":"Some","Fields":["zaLDNq2H4i3wKYOIej90shBw0C0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fBETQmz9KrsWT2GCEKBeqExgdPjJU688yNXBVjK/NmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:58"]},"IP":{"Case":"Some","Fields":["192.145.46.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:42:78:c4f9:9fff:fefa:980c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["YAVTR1"]},"Identity":{"Case":"Some","Fields":["zZyJW6cf2US1CGHedv/xJnFwd3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F25TB2aH27tUQt21zwOLE+DowJX26gCSIdzln5TSy9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:54"]},"IP":{"Case":"Some","Fields":["45.156.24.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as204750exit01"]},"Identity":{"Case":"Some","Fields":["zZNIaOgBhg8fPesWJh5MS5vH82o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EsP/BmfoyLZheQx9GwQ6tB5csqMOJ/Yy+h0eU4cKQMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T18:31:03"]},"IP":{"Case":"Some","Fields":["91.212.153.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3d2::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["khasan"]},"Identity":{"Case":"Some","Fields":["zYCs5an7C/4CN71N7WaS0bu/R5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TYCar2wUAnR3hZj92IcUXMZgzTcAGBrkw4AKilf3Iek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:25"]},"IP":{"Case":"Some","Fields":["188.93.233.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7a60:1::a06]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uwu"]},"Identity":{"Case":"Some","Fields":["zXka2T1HLVUYvnUS1Cho86Con0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVkR8Iz/tjK+SFv08vrnMa7hLBCDXBDp9HJUPytn3Bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:12"]},"IP":{"Case":"Some","Fields":["78.47.171.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:6c79::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TRFIAntti"]},"Identity":{"Case":"Some","Fields":["zW6MVIcE9M5UTNcTZdRvEQUY++0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4yo5bSvCEzRg1Bzdy5IdhyopmPSqUqEcfscs2i7paY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:39"]},"IP":{"Case":"Some","Fields":["95.216.140.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:49b::159]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mars"]},"Identity":{"Case":"Some","Fields":["zWiQRNDmX1LZahrLm20PJMAy4a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bw2xCJ/ViQNK9i6aMwToTQbLqd8LZReZ+Io3aZMOwx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:38"]},"IP":{"Case":"Some","Fields":["65.21.52.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porree"]},"Identity":{"Case":"Some","Fields":["zWhfYc3a+S6hlE3IrNzS4qp6isI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B00yJKlO+EYAmSD1A6hiaqcyyzoipidvDHqxA9ntHBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:30"]},"IP":{"Case":"Some","Fields":["109.70.100.8"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::8]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["riceahap"]},"Identity":{"Case":"Some","Fields":["zWP/3/Tx36uaBYwFWs1ckMNKboU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HLk7xTmfSAElGkV2HhIZ0cOQPHx5rnuOFoyWD+LteA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:13"]},"IP":{"Case":"Some","Fields":["198.144.183.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["execs1"]},"Identity":{"Case":"Some","Fields":["zWI2MPw/+NiqkrT71gq+FZpITBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lgZPr9o6YOe4oOM/dTr0YkBO1Zsu+mAVDKq1eZsK9CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:59"]},"IP":{"Case":"Some","Fields":["45.58.156.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllieRoscoe"]},"Identity":{"Case":"Some","Fields":["zVzxJf7Uvl2l8ln3WvPU3RgsVNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vaZqmuVTCoJaLBge8zFXv3973HSbyxq7dFZqYsnufWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:45"]},"IP":{"Case":"Some","Fields":["217.12.203.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JAJTorBits"]},"Identity":{"Case":"Some","Fields":["zVokLX8JXTCPSM6Ac17k1L5VqvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHXvPf6IupRX9sqSt5wVrYMvp5+69TaMaJ3db175xzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:08"]},"IP":{"Case":"Some","Fields":["73.117.132.138"]},"OnionRouterPort":{"Case":"Some","Fields":[543]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange003ru2"]},"Identity":{"Case":"Some","Fields":["zVMWp1VUwtrbh+82JOldhIwwnOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G2x4mZBEmE3rs7++QbsSTh9LSpwIthyGnCgRdNAYT+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:24"]},"IP":{"Case":"Some","Fields":["185.22.172.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:29::9201]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["normaray"]},"Identity":{"Case":"Some","Fields":["zTnCWCZbJeqkq6T9yy35gQTKo2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qjcpeHgJmJxLJRuguXrTDwZD4nrnGSNshDVplcKozEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:22:16"]},"IP":{"Case":"Some","Fields":["94.130.200.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zS3VK4oK8MISzNNAJQdAK1hwO30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpHJ/v9LRvkqrvnMC0jKPhRAdaYy7pRD7hvzKhBcsRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:57:26"]},"IP":{"Case":"Some","Fields":["188.68.56.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["order66"]},"Identity":{"Case":"Some","Fields":["zSScwTtq3TQm1gO57VtR/HG41yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tSPx71dbPUgJce27Xeue79uOtlkw/UpvUxPOqjKct5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:46"]},"IP":{"Case":"Some","Fields":["185.86.148.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::ba45:e7f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arecoque1"]},"Identity":{"Case":"Some","Fields":["zR/SwfMwoyk9pgaOaiOGbQY9bcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nt+lfJ2JLBsYLcEsHS4JFcNF5Hy26hmVjQwFY8jkOnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:21"]},"IP":{"Case":"Some","Fields":["80.67.167.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:e701:1198::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburgoo"]},"Identity":{"Case":"Some","Fields":["zRkuFSFQX5Aqwx0X+p030DJ1vGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j3B5Gq8JjtwWmYIjeGLefsoe81e6oAz9bE7X1ay8H4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:24"]},"IP":{"Case":"Some","Fields":["159.48.46.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geheimkaisx"]},"Identity":{"Case":"Some","Fields":["zRC1KsyKCtfRtMQLhJdxvR0N/0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HJQV9bTbZ74XsvBpYQnFrq5UacPR9R315GnZ6wDiQZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:24"]},"IP":{"Case":"Some","Fields":["5.181.51.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayoneltab"]},"Identity":{"Case":"Some","Fields":["zQnNfH+IFbNyEMfRpihZnHjSLW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2bnxTli/+VEm/GewlJfJNJKgq+abIgqUEKDNDh+3LVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:25"]},"IP":{"Case":"Some","Fields":["185.220.100.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:7::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazonedemerveille"]},"Identity":{"Case":"Some","Fields":["zO9lIsxWijTYXcygY958YYzl7Pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uuu/LyzBG2CmJyufzSe+iA2buJjcD99mpNJVG4hgu24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:25"]},"IP":{"Case":"Some","Fields":["172.105.35.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["zO8Lvaj1LC5g40vBUM2Otx9b2o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KmYqcLH70yX2D5zbggjpg/vhwa30DUxR8npoVXIcTf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:06"]},"IP":{"Case":"Some","Fields":["45.154.98.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkomaro"]},"Identity":{"Case":"Some","Fields":["zOCeqOJ8re+2aW2n1UlhlTTfiZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EcszOIcRy6n5997QYdSoJMh3UK2aWVXr8HLB3qFWc2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:36"]},"IP":{"Case":"Some","Fields":["195.50.212.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:7d0:4dc0:7511:d01f:7eff:fe6e:408a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zM/Y1f0hrHliNNkU8bfMM63OUvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Za6XR+DWDe7VBkP41d8hO85Bc1HByvXGJLPjmV6lJXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:04"]},"IP":{"Case":"Some","Fields":["188.68.56.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheGauss"]},"Identity":{"Case":"Some","Fields":["zMtysWrbtOx9vzcD/j7c3tPKOrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8kWqSzCljvOcOGT2wdbsbdAiXavP/gZJbecxzDB/Zbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:38"]},"IP":{"Case":"Some","Fields":["93.41.144.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zL6x24jSCYuqMAbwrOxhlRkoKh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC0LFQ2u4wXvhN70LVUNy2C0PM44Fv4Mh00di5EUFr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:06"]},"IP":{"Case":"Some","Fields":["96.52.236.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guthard"]},"Identity":{"Case":"Some","Fields":["zKpiDVyrNM6V/jyGPZ5lIMB0Udg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Id8E0a4h3WlpuuQ1Syu8MZC7pyK4sI8QP/gV4sD4j3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:23"]},"IP":{"Case":"Some","Fields":["82.118.242.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zKmXONZOz44tR4+rqdOO2ua13P0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkRQxv8IhDmw0BpzI+qoYJiQSMrjtCzSAnvTtj/dtZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:25"]},"IP":{"Case":"Some","Fields":["5.45.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SVRelayAMS"]},"Identity":{"Case":"Some","Fields":["zKU3FOpcfOVR1Q+W5+GlMHEiWoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRDxUFfQE8n/OA8OANAm6OBZdoTRWVqCzgEOlhSAY/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:28"]},"IP":{"Case":"Some","Fields":["46.23.90.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenInsanity"]},"Identity":{"Case":"Some","Fields":["zKIlCbhnQZwQIlQ4aIwY5y5zdYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46yo7FXHoO1NYpjvgRgbBAfo3TQG9DrRViij1czbZLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:45"]},"IP":{"Case":"Some","Fields":["51.158.148.230"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:2000::a]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WeAreThePlague"]},"Identity":{"Case":"Some","Fields":["zJ8SemQx3WQiZKPMOGj5pxB6AZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kNZvXg/jgUGAGRCnuEsYhqJQaoE/+CNRwoWiuJGioDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:53"]},"IP":{"Case":"Some","Fields":["83.135.89.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation02"]},"Identity":{"Case":"Some","Fields":["zIshjtNhWCel3PAI/GJZje9TO08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJwEqNOd9Rbak4VxVQAmiC904Skg+0DcFFJ3BJ2ceFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:07"]},"IP":{"Case":"Some","Fields":["45.14.233.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e99f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IG11"]},"Identity":{"Case":"Some","Fields":["zIcy5uNNjBqmGjt/6V3dcbzpyIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpNPyQw/jWvo0GCQ2f2kNweY4YHLKSZo5gZtWP0g67Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:14"]},"IP":{"Case":"Some","Fields":["94.140.114.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::eb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zIQSoM4xxVz78yy6jqXAU0iEbD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1wcIzQJ4B1XIsHxK+OWNPlw7+WyVqSeWr5hvp0wQpmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:20"]},"IP":{"Case":"Some","Fields":["185.244.192.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["w000000h000003"]},"Identity":{"Case":"Some","Fields":["zIAcfjyzgXg6vIETpz/9gvAis40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yoeyJ1j8HyvKKnbUM9xsS/TUJ9JvpNyAHmTqYG/Ybec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:25"]},"IP":{"Case":"Some","Fields":["178.170.37.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:2017:1::169]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sutsuj"]},"Identity":{"Case":"Some","Fields":["zHAfzobWr5X8PVtxZF00MHlJEME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Px2Vj1Bgg+O8mcBZLyADuGais7UbU9wnJQYmMt8xeoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:40"]},"IP":{"Case":"Some","Fields":["157.90.183.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Camaro"]},"Identity":{"Case":"Some","Fields":["zG4emTJQ5Go4qc8gkGZud4isTvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRm5l7IJMtx0hOqYQjKAc9pTQeqmjA1Vu2KcHNbR/NU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:27"]},"IP":{"Case":"Some","Fields":["179.43.139.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN4"]},"Identity":{"Case":"Some","Fields":["zEo66WDjYX9Jv5iHt5GGwUy6aBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tq7HjlZ06QxPpv1aieZJJus+NEsaCtAJzM0DzodLQDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:00"]},"IP":{"Case":"Some","Fields":["199.249.230.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::115]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor9"]},"Identity":{"Case":"Some","Fields":["zEnAgW+KhS8dJNDUUR8jerNe1+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpEVZJ95DM/KXzbwD7ie0MFgMyqMFZESD5nUqQgysOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:08"]},"IP":{"Case":"Some","Fields":["46.41.142.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:25aa:1:9000::1584]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dustrelay"]},"Identity":{"Case":"Some","Fields":["zEQcp+u3f337t++3fHi7Nxrzomw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IjJnOj3wsIWweHmJCwkhV5U1DR9OGsh6nM0paIPm19Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:11"]},"IP":{"Case":"Some","Fields":["123.208.202.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zEF7MT6AhyiwGdgkRwfR3eBNmCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LsocjAiu1Qt71d4Y3XA6X+SX2psIMj0jHDFfSekKcRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:20"]},"IP":{"Case":"Some","Fields":["185.217.0.89"]},"OnionRouterPort":{"Case":"Some","Fields":[49834]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taxburrow"]},"Identity":{"Case":"Some","Fields":["zDET5tUNLMehyslGJN0tbAAh9W8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CrhltH3B+Knlxp6TmcV+GlQMIL70dxqJ8ix9RYYCzTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:17"]},"IP":{"Case":"Some","Fields":["185.193.52.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PapaJohns"]},"Identity":{"Case":"Some","Fields":["zC95MsmfmHijTu4BqQibTqw2yPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TvwPfkT20r9dJeASaHc7G0EphzVRPlRLDfHauxp7QfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:32"]},"IP":{"Case":"Some","Fields":["5.254.118.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange019de"]},"Identity":{"Case":"Some","Fields":["zCF5qX1OxVv6VrJ/IwDFMWLOu24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JZXrcuy/w3AKebLOAVm3/+ViO4TxM4dw+KtkFPq7ne0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:54:17"]},"IP":{"Case":"Some","Fields":["213.226.71.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex38"]},"Identity":{"Case":"Some","Fields":["zBTJfx0j7pd2aCj8jthYLiHhFmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a0Q2zO/i1ZWUKKo7EmdKFTmuTk71A22gIoRKX3nP0ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:07"]},"IP":{"Case":"Some","Fields":["199.249.230.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e657]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maulwurf"]},"Identity":{"Case":"Some","Fields":["zBHP9FPq9UtPtQwCq2mlFAkj9q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aRdYo/PvfVvylLUXqQKCvRSHrrUo4p7AZO8nkL/i+fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:36"]},"IP":{"Case":"Some","Fields":["109.70.100.68"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::68]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zBANwBeiXiRMNclku1GOQwhBWsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l9EjkbmqpIrJ6XqMic9YEY4ZJci8gGTre/l9PLKZKuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:34"]},"IP":{"Case":"Some","Fields":["37.191.195.63"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fedc:ac35]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc07"]},"Identity":{"Case":"Some","Fields":["zA7R07/H1ojzPZZ/uoIEWq4nkM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lkOT9o12GFZEEA5JW1DdbogLZcjOuY01psQ2jq6GGZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:27"]},"IP":{"Case":"Some","Fields":["185.100.85.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Grexit"]},"Identity":{"Case":"Some","Fields":["zAqJIX6ZmmR40DWBFskmYl+E6+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["joyqBh0l05Xgo8Wk5rjRQt6XrXeBVUkgziR21LYjE1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:14"]},"IP":{"Case":"Some","Fields":["185.4.132.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenStar"]},"Identity":{"Case":"Some","Fields":["zAnfsBYIGtUGhtrJZEC7LW80MlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f8qgPyirrTkKOvt2SuKhGmvnGiytgWsK3UqYqmWq4ZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:57"]},"IP":{"Case":"Some","Fields":["51.158.148.128"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:1000::a]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra63"]},"Identity":{"Case":"Some","Fields":["y/75DnowTpUVoETGHEEXzZdmBQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L8yfyZz8sMMsdq5HR5h2gH1qsgVShBvrm6OUw7bzEZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:44"]},"IP":{"Case":"Some","Fields":["107.189.30.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charybdis"]},"Identity":{"Case":"Some","Fields":["y/Wexbn9EICSrpFJ79rkH4gtpmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PA2m5epzjfbKdK4cZ6jUz7Y4l3f6JPL874pXom7d6Eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:09"]},"IP":{"Case":"Some","Fields":["92.205.129.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nope"]},"Identity":{"Case":"Some","Fields":["y/OICZzO6eZ//dP/qxGPKh2Ajzs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7x0J3/ktVXM4rt+zKNDlz57L4vBid6Dor4wxp6TRYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:00"]},"IP":{"Case":"Some","Fields":["64.98.231.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonlaogzed"]},"Identity":{"Case":"Some","Fields":["y/DM2dgNei+C5Pthw2+2iYpOulA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83Qqv23GtvWydyeJlPoSxIVYqn1q7aXql2UFrTjQ6mQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:55"]},"IP":{"Case":"Some","Fields":["185.220.100.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:6::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bad102"]},"Identity":{"Case":"Some","Fields":["y+E/740uoxxSYXfsJd9522hNVSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bxOAhXCZj5htojmOPMvgtxp2llNazoRnia+EDy/bVR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:05"]},"IP":{"Case":"Some","Fields":["138.68.52.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::2105:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reRelayJI"]},"Identity":{"Case":"Some","Fields":["y9/66ZXwW835b2VNdCfVr3CHSA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rte3zpD0K6c61ZUcdk0jrJQonOYmqX07cGTN/uXJ3U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:40:11"]},"IP":{"Case":"Some","Fields":["31.220.7.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bananator"]},"Identity":{"Case":"Some","Fields":["y9xW01RSnRzZaIJ1DQsqNEitBBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VRdfbH6/fvRUzVXzz3Fq513QKjcJO0moQEeEjzCM92E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:35"]},"IP":{"Case":"Some","Fields":["84.172.215.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nightie"]},"Identity":{"Case":"Some","Fields":["y9tM1y6oCBGdNyP3zaRK6taD/No"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Wzev+ITqIn7EWMu/ObvndNMih+X9Tj71LF4FS4vd6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:04"]},"IP":{"Case":"Some","Fields":["45.141.156.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["y9AJWKO4l3dOMz11wk5qdfUiDcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YgkKoL6BJ30tWZ7DeYkxHrp4vX38uvC0drl02NV2S5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:57"]},"IP":{"Case":"Some","Fields":["185.165.240.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RaspPi500b2"]},"Identity":{"Case":"Some","Fields":["y82cS4aZG3tC0MIht5ZBl0r9+rc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmqsmHa2CaayNA0RaY8irL2+qYyU/QYxtAMxJKMK6n8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:34"]},"IP":{"Case":"Some","Fields":["31.209.59.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xor"]},"Identity":{"Case":"Some","Fields":["y8yF8zXiBwX3kc/IaFlRyQ4kE00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hMcwIWCkBC4KD6YPWCUUxLq2fKdUnP/wd8Y1pWBiTLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:23:44"]},"IP":{"Case":"Some","Fields":["185.56.83.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:e80:3000:1:bad:babe:ca11:911]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NA"]},"Identity":{"Case":"Some","Fields":["y8gmKqushKrrklTD/Dh38Mli888"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IDTp9aO/fQVtA93hTH5j+ZJzv0awtJG6RMT7su4aC7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:30"]},"IP":{"Case":"Some","Fields":["18.188.203.202"]},"OnionRouterPort":{"Case":"Some","Fields":[3128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrmmlNott"]},"Identity":{"Case":"Some","Fields":["y7pA99nyhPR6JD7iwIHpZoJ0HSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5pjMihDxGhzIAB808EBbIGdEfWOIxdU50Bbz1AfgjcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:34"]},"IP":{"Case":"Some","Fields":["176.9.39.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:508a:a62c:457:6b0c:a1f9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YouSuck"]},"Identity":{"Case":"Some","Fields":["y7TujOgx1lM9UeoeiNoKV1zUhgM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMWaVr6BNz2DUKxcQ8KqgmPgszhDHBzOzA1G0X4fXe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:03"]},"IP":{"Case":"Some","Fields":["101.100.141.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["teutates2"]},"Identity":{"Case":"Some","Fields":["y6ZTuGeM9773wsG83KCAfNRJqKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VqzBPWW7rCO22sXw/Avb2bC7ZXyFhs09hloqAoIN68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:13"]},"IP":{"Case":"Some","Fields":["37.120.190.6"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["y56slFgyzsjTbMF4nJ0xXaji7+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7Qfc3VARF3VLHiIoWXsZ/7Bvbc+aQhq6TtRppKdbIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:09"]},"IP":{"Case":"Some","Fields":["172.105.26.73"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:92ff:fe8f:4c25]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pinkiepiie"]},"Identity":{"Case":"Some","Fields":["y5wsrClyIPxneANfnxRybQLRElA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["llYxC2219DSB8bnkNb158ILptaQ6l86r7GTn1zrTJH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:22"]},"IP":{"Case":"Some","Fields":["179.43.182.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["y4+fP9aolHujxb/dFNe74KzOP9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYmaClw9QN50WW/T+R7WyPqYKrQzsXzO5Ip28OVLNGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:02"]},"IP":{"Case":"Some","Fields":["23.128.248.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::82]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presidents2"]},"Identity":{"Case":"Some","Fields":["y4L+xBVq4GEmDEQkzxk3u/7TTW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4AUMTL+x3ukPbuG3hRp6k0Sv1j02pnCadI8VpKmzOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:34"]},"IP":{"Case":"Some","Fields":["45.58.152.46"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ss23voyager"]},"Identity":{"Case":"Some","Fields":["y4G8/UT8FCYWu1mDZIvYrwGTB4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8YKMoied6QbUXZbhH/krAZwTwmJc6rv56I3FZyj5WIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:22"]},"IP":{"Case":"Some","Fields":["114.23.164.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noconname"]},"Identity":{"Case":"Some","Fields":["y32xMXLhXUrX+UBGZwId999umko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9TOYgYsNIFAXI9pOZgWEl9XmxwVZWLb37I4oQ/cgIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:13"]},"IP":{"Case":"Some","Fields":["163.172.213.212"]},"OnionRouterPort":{"Case":"Some","Fields":[10010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN25"]},"Identity":{"Case":"Some","Fields":["y3wNhB/jdu9D94Rf8gGwKQwKI54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqjq9A51Rh8t8tylt/5thRjE/KEILgi8MPwgsoK4zLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:55"]},"IP":{"Case":"Some","Fields":["199.249.230.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64e]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash3"]},"Identity":{"Case":"Some","Fields":["y3QBlNZgZNimbLBxvggHleP/pxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nkt1/7MOREBJBFbf/XG+0/JuTu/BmfaRxYUzw8x2xRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:04"]},"IP":{"Case":"Some","Fields":["51.81.48.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who9USicebeer19"]},"Identity":{"Case":"Some","Fields":["y3Hd5wqeydxrSK0Nb1/TKsZsytQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dxp1BmWy34DXf42TTP2nqwMYePuzdonkcQUMV3XURkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:32"]},"IP":{"Case":"Some","Fields":["107.150.32.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8116]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yuuri"]},"Identity":{"Case":"Some","Fields":["y3EO5/PuMXpe8BRKfutbnbBqIKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7MGAi80IkfVhipHEQR17Facpj81w0if6GEmEn0Dzxx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:25"]},"IP":{"Case":"Some","Fields":["89.102.157.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["y28Huz2Boy7yVp/E4FEeNr8kwDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWPccMR+5vONjMwSXR5jvUSGwCEWRxRh8zwtk+6A7WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:46"]},"IP":{"Case":"Some","Fields":["185.177.206.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::140]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jehovax"]},"Identity":{"Case":"Some","Fields":["y0qgefnpBh1UHlqu2w6VKjiO7UU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ETuI701jQ8YMYye7QfUbA1gBhdKZ3gj5lJA0Lme7TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:10"]},"IP":{"Case":"Some","Fields":["5.2.72.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet3"]},"Identity":{"Case":"Some","Fields":["y0J3Lj6PNov1EciQ4AUajfKoTD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FMc2GyDMb2KndWNojCfmyBUdmbjgY90vrEMaTFlS9YY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:36"]},"IP":{"Case":"Some","Fields":["37.228.129.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:1:1a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CrashMe"]},"Identity":{"Case":"Some","Fields":["yzudmTKlHyouEg6uC1+UCe43HoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kd4EnflVqNy3m3u5tyEgI4XW1uNdbCMboUQelcAONTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:52"]},"IP":{"Case":"Some","Fields":["213.252.140.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krelln2"]},"Identity":{"Case":"Some","Fields":["yzCQ9vWTdvBU7s/wZyqy1Yv8unc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GClSlrEc3b7B0qKB9dbZNZ1dNBuHf2aAp3uPsvWFA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:19"]},"IP":{"Case":"Some","Fields":["159.203.66.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::81d:3001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay26at8443"]},"Identity":{"Case":"Some","Fields":["yy7I2AYkym3VCS4aeU3qSIqBtQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AeW+IX6uucLjtoAUosD5DUVt7/5r4BCFgHw5GIS6YDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:07"]},"IP":{"Case":"Some","Fields":["140.78.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra9"]},"Identity":{"Case":"Some","Fields":["yyiSXaYQaaQ1hAMNJhBHHx/9QQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aUgms+/3mmBFs4JlN+HqbwqQGE7z6Ke01ruKtpYI1W8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:06"]},"IP":{"Case":"Some","Fields":["178.17.171.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:129::4938]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leonidasI"]},"Identity":{"Case":"Some","Fields":["yyACNwkSn8OjE/t/NWjWVk3Ts0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQV46JMtfz0BeOJcBu1d5PbmxM68SkBpABj6W3/cfdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:20"]},"IP":{"Case":"Some","Fields":["185.138.41.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["esojcmlin"]},"Identity":{"Case":"Some","Fields":["yw4pIOykr2S5q9fjRuonUvu4Y2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xk4uzR0xoY3c1Gau0YRF+ajFFjfsHMChK+my8Ha0zwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:50"]},"IP":{"Case":"Some","Fields":["50.116.35.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:92ff:fed1:4cc7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay0001"]},"Identity":{"Case":"Some","Fields":["ywQIRsZH8zjuGVDGzAMmcQIIjFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xMPwT/ekJWuA2QmsGKuRSYzhN8UI5vQe6iVCJkX2+y4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:42"]},"IP":{"Case":"Some","Fields":["153.126.128.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:2500:102:3000:153:126:128:94]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Benis"]},"Identity":{"Case":"Some","Fields":["yvv2NlI2OgSVFSw85HpJHns1tKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kx5iUmIjXXheDei6FBtCuagrLKc6dmyWKItGUCeJA2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:57"]},"IP":{"Case":"Some","Fields":["144.172.118.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maschinenraum"]},"Identity":{"Case":"Some","Fields":["yuimS3n2HljZuKn69bLkijIbKpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JXdHKBCE36+n5V63/JmP4aKFUhkTc9LZzYn7Pe8yCD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:46"]},"IP":{"Case":"Some","Fields":["82.135.68.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beroal"]},"Identity":{"Case":"Some","Fields":["ysWQO6dL61hd2UfrZXsZWOJfbMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OG4CrEZAcCtcirGNC0eDfvPJq+bLOtTepXgovo8cd+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:20"]},"IP":{"Case":"Some","Fields":["192.162.141.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["yqrgVaGnfSNg+FG5Y1fZxth5z4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HKUBJp806S0uxdwhBGfdtgjfxJkjgNkS6ogNFQvt3zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:35"]},"IP":{"Case":"Some","Fields":["198.244.207.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:b29:116e::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt27791"]},"Identity":{"Case":"Some","Fields":["ypka1IsEaAh4D6B4Z8SII2U5FjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aN55/YzNxfRp4C1KPnZIZZXuqQPfquxSE3+tgchYzKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:43"]},"IP":{"Case":"Some","Fields":["185.245.60.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AS62788"]},"Identity":{"Case":"Some","Fields":["yphs7gkJC1ObyApXxb2Jt3AnsZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRoR1BvsBfBPnkp/xWOhvIX73O/2vk3wTya0OTNGkp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:34"]},"IP":{"Case":"Some","Fields":["67.219.136.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fd23:1:0:acd9:f8ff:fe5e:d77]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["renewablefreedom"]},"Identity":{"Case":"Some","Fields":["ypRwQhcmDnSD2ohxnKzXqUxWTVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OgDWPAO4l8tIHYGR/jxIWOd0OYPySBEHyoLT5/oHW5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:13"]},"IP":{"Case":"Some","Fields":["185.220.102.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yn9HDGNEJRSgvUVQpRgJndc/62g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKaU7y3WT93Cnj9OlFocXPmqO98pGVJdO+fq+XJRS1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:40"]},"IP":{"Case":"Some","Fields":["27.133.153.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taskbar"]},"Identity":{"Case":"Some","Fields":["ynvdHOubb7O52LL/uarH3ObsYdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTtiBS7A9+QIt+5mSZIU9fnn0xzSzR9VxUGJeZmayDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:27"]},"IP":{"Case":"Some","Fields":["104.217.255.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff1"]},"Identity":{"Case":"Some","Fields":["yna37QSvIdGvOLhsd9U5pMA0zxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L8rSV2ps8wJenhQrMzMlmsoKSBIolWZfIx2iJc5Gq9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:26"]},"IP":{"Case":"Some","Fields":["198.98.62.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["foxican"]},"Identity":{"Case":"Some","Fields":["ynaaTEGfu+r32NMN03Ohjefj2Ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OpcUPNW73yd+K1y1G7b/FBD1JFapTepiufOdQ5rU6io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:42"]},"IP":{"Case":"Some","Fields":["62.171.137.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrPi3relay"]},"Identity":{"Case":"Some","Fields":["ylnRLOiyOeTmINwtoC7f2r4F4FA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ato1V+NX7mszXDg5TgBt8RY16VK2POAwftF3NJG+vzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:31"]},"IP":{"Case":"Some","Fields":["207.216.25.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9002]},"Address":{"Case":"Some","Fields":["[2001:569:5197:1800:45a0:7316:2b70:2ca1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NYCMesh1"]},"Identity":{"Case":"Some","Fields":["ylLkI+y/fQe7jhE5o5tNhmjP4qQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c8bLb50lYXOGhyMwG5bPwgiCyYOIebuKe4/W1zbpPA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:20"]},"IP":{"Case":"Some","Fields":["199.170.132.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webthegreenmileplum"]},"Identity":{"Case":"Some","Fields":["yk24Jl8UqT2KjViOw86FG45ySCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/5vJaLUF5G7Um3GCqvH55Bj48LGMxy3JnVRS137aKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:12"]},"IP":{"Case":"Some","Fields":["89.39.106.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clanofxymox"]},"Identity":{"Case":"Some","Fields":["ykkH/i62902HuFpSjpeF9fSn6GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XNXm1v6dyZZH2AwrNYcHEo74cTXseW1zAvNNmK4dpLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:53:43"]},"IP":{"Case":"Some","Fields":["185.119.119.164"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:14:164::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sillyhydrant"]},"Identity":{"Case":"Some","Fields":["ykcMvxsHn6yiWmI52VnLy0yomos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6LKymTvz6DDBiSGHA1UwXfXViylSlCOwaj/gHhigGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:14"]},"IP":{"Case":"Some","Fields":["93.31.215.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE01"]},"Identity":{"Case":"Some","Fields":["ykX1S9XCFY7i5kyUM1he3ISw4UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wp8izanGc3Vn2yPHZO7Gb4XdNoBc6PbiQZUbUaS/t/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:11"]},"IP":{"Case":"Some","Fields":["79.172.193.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:730::2110]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedMKUltra"]},"Identity":{"Case":"Some","Fields":["yi64pdxL2KDIfkwwBU54IuU9PiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/3TbaroFSTClyj1frbHxJx/TMMDhYShfP1Xyx1K1Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:26"]},"IP":{"Case":"Some","Fields":["23.154.177.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beckett"]},"Identity":{"Case":"Some","Fields":["yhiy82tR30leEwqZouAYwqwI79k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GV0qvBWdrsd5YkDO08GRR9Ky5cRLuJ76X5yTap1vByY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:40"]},"IP":{"Case":"Some","Fields":["192.9.171.167"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["D4rkKn1gh7"]},"Identity":{"Case":"Some","Fields":["yhaEUWt/7PPbdtQ/0C9W2Lleimk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UUuxu15pcgrI++jH4fZztpf4PLITd0i4fkQQywFneW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:08"]},"IP":{"Case":"Some","Fields":["142.132.157.35"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:2ced::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pbx"]},"Identity":{"Case":"Some","Fields":["yg9ZFvIUd+rTblP9ej0O6l/aL6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4rgc/b2EdR0U5pl/mW2XxgrTbezWE/tWkmg2NC/RlFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:50"]},"IP":{"Case":"Some","Fields":["94.140.116.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::f2d7:40df]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["jetplume36"]},"Identity":{"Case":"Some","Fields":["ygrwqwPddeg/yTRFZpiWQuPV5DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J78M2II0iy5IS2HysuXrdurj8QAwIc693S2RfKjFswE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:24"]},"IP":{"Case":"Some","Fields":["195.88.74.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d0m"]},"Identity":{"Case":"Some","Fields":["ygrJGTtWZYGOpTIreUiaohlRxlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDSaUXXEBZshGCzjt9q0plqGEBgIpUhL/RVbrgvaS8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:36"]},"IP":{"Case":"Some","Fields":["51.158.148.216"]},"OnionRouterPort":{"Case":"Some","Fields":[8843]},"DirectoryPort":{"Case":"Some","Fields":[8873]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:215:208:a2ff:fe0c:6c04]:8843"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lantern"]},"Identity":{"Case":"Some","Fields":["yeLqwXWgFANVxkclrR5gBOcHLz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3CsPL8h04optWgyV2pHkVwAGteYvJhCaLv8sAfRKq3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:03"]},"IP":{"Case":"Some","Fields":["217.170.204.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CamusprOTon"]},"Identity":{"Case":"Some","Fields":["ydn6fsBW1izJZx9IBPIqCSahGHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RO4XmN4DHqLrTW+KZW06fFcKhqodUAKd3iBa11wN9fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:40"]},"IP":{"Case":"Some","Fields":["93.95.228.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8af34cb1"]},"Identity":{"Case":"Some","Fields":["ydArFkS9R8E243n9+vSXPRoc4Hw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M51T2CNbDadUQvtJq4yx4YSi2j3gBa4wob5Y4cuTHXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:37"]},"IP":{"Case":"Some","Fields":["193.111.26.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["remember300baud"]},"Identity":{"Case":"Some","Fields":["ycHRGkDW9CwZQsrO1s964nAGWkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBpytwTN1IsiQhrgcd5TmtIMLgJhQ7xkAkWw3wE+c+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:44"]},"IP":{"Case":"Some","Fields":["23.83.91.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fit4research"]},"Identity":{"Case":"Some","Fields":["ybdauOYVecfD0B2ZztVq5U6TPLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/JYHWY8JCmL+QuWCM3OaaPS4etFnJ/mBhU0P8xVrGp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:48"]},"IP":{"Case":"Some","Fields":["150.43.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sybaze"]},"Identity":{"Case":"Some","Fields":["ybaMgCyiDD5PpG13FT1u3IDxPPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IToEuAtzsJaDeLPL12XymKW+haNT3Kowi8xBmG5Ovnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:53"]},"IP":{"Case":"Some","Fields":["92.243.0.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:feb3:28bd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charles"]},"Identity":{"Case":"Some","Fields":["ybNKvyww2la9AGt7QmEAmAcr70w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eJylEZrmQpi5Tj0mfft+ZuQwmOetV5103/ajiukhRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:52"]},"IP":{"Case":"Some","Fields":["54.93.77.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CedarHill"]},"Identity":{"Case":"Some","Fields":["ybFrXTf1McjGwCgeTsTwVuhFQdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfIiNXGjSwmIocF/1BCpJAeht7oMRrBFWBWM0XTEdGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:48"]},"IP":{"Case":"Some","Fields":["45.33.27.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:feb7:9351]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a123"]},"Identity":{"Case":"Some","Fields":["yZp8/rHMvLIOZBInLMhsk7YeKiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZeogzYOGRvBR92KIK3nGKXF4heurcrJ4w7dJDSAsHAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["3.145.139.153"]},"OnionRouterPort":{"Case":"Some","Fields":[30002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yY6jm64sax6kRA8UOdd0RIQ16rQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CBif5NLnKhbnc6YkUTLYf+FXyGg2AZ/iPy8EbxtTt3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:31"]},"IP":{"Case":"Some","Fields":["5.196.71.158"]},"OnionRouterPort":{"Case":"Some","Fields":[41899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:49e::1]:41899"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BrightestNode"]},"Identity":{"Case":"Some","Fields":["yW1q7XluG5V4m3Ux+ISKyOxhbDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bq2Y1jMH/UO6mAqcrvdDwR68BkhA+TSUR6UJtt0vWQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:33"]},"IP":{"Case":"Some","Fields":["152.67.79.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc04"]},"Identity":{"Case":"Some","Fields":["yWLYZa5ytvLvCOd/OxWJS5U5wrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M6knfPir9iVQdeQpAIfbcZA3ExHm4t0STRg7eyk8mW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:09"]},"IP":{"Case":"Some","Fields":["185.100.87.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay41at8443"]},"Identity":{"Case":"Some","Fields":["yVJYcuOqkmQC2JmAhaQJx7vfrlk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kks0OkZiJt0legKLXegqJw6w+Vg+tWdoYntVNa9MWWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamster"]},"Identity":{"Case":"Some","Fields":["yUNDMCtjGhOm9RDpZISWCUiOw5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sbmlwp1CJQlWrvDGjPVtgE5J/Ej/HPYohlFKn1p3rRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:54"]},"IP":{"Case":"Some","Fields":["109.70.100.72"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::72]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FileDitchExit2"]},"Identity":{"Case":"Some","Fields":["yS3pIcNKyxwbTqfSwez0oKzSygA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEUOkw7Ux6ZuekF7UXFtJWyKu+864yT1OItHWvFwK2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:03"]},"IP":{"Case":"Some","Fields":["45.134.225.36"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ySpV4tTG/vVofzl4Cf5WvK5Kwjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YAH7CHddZMp1TLtaZBZ/yn637UPZk9rDZa5k5VOVxuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:48"]},"IP":{"Case":"Some","Fields":["89.147.109.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BantuRelay"]},"Identity":{"Case":"Some","Fields":["ySeLYCAl+uQ5u1VLxOEYTP8aKr8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a80Gj2LQi36nQtinKG7y11pqBf9AlITxuzfJo2L5nVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:45"]},"IP":{"Case":"Some","Fields":["54.251.87.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cowcat"]},"Identity":{"Case":"Some","Fields":["yQyjt/4BoUa4Jo1Wl33EosAkueo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKGdhSG0lyus1M8dGuy0tEsnQNnwbHYK3vbXRtUAK4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:39"]},"IP":{"Case":"Some","Fields":["192.160.102.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::5]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yQV8HFofdQzVKw/Eo7ti0Tmvmuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmNwKir9BeVxbf5fHRqGOjhpJMDziEctn4pI5NvqhEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:47"]},"IP":{"Case":"Some","Fields":["46.4.36.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:300e::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iceman"]},"Identity":{"Case":"Some","Fields":["yQVtMLz5FmW4KPN6hdwSfKxjI7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfVndLuiwT3jp0vWt38cxFYrypNbA4DxPVMjdcYx5x0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:33"]},"IP":{"Case":"Some","Fields":["95.211.184.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AAAAAAAAA"]},"Identity":{"Case":"Some","Fields":["yPSkdTbadXQZzuRF7UrVVuVr2Zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iMiZvzKK5b2X+6srprAdkqJ1kZfqj72oM3KYB/x16gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:07"]},"IP":{"Case":"Some","Fields":["86.124.228.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange003ru"]},"Identity":{"Case":"Some","Fields":["yPQC/fieW1HYYq1o2MF9+lo3G6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UWDQ/sksaWFrsXybKFFkU/gPQ0KbWwRwISK7F7lD+yg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:26"]},"IP":{"Case":"Some","Fields":["185.22.172.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:29::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pros1"]},"Identity":{"Case":"Some","Fields":["yN4m0tEZvn9Qnmcu4aPV+yXcupc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yp8TGSgmTtENi7GAnUKYuVLHgUEVbJ0jzQjfSC6y8d4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:30"]},"IP":{"Case":"Some","Fields":["45.58.154.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saucer"]},"Identity":{"Case":"Some","Fields":["yNIH/gHSQfmshvKihRzcLmmY5Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bSoMwWyNq+79il1maD0vFhu9Amg7KUifff1cwMiaVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:47"]},"IP":{"Case":"Some","Fields":["51.15.250.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cressington"]},"Identity":{"Case":"Some","Fields":["yMO5oRgwMUwVOM8Zq8OrJljtaz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QPDQD9JNUbdMg3q3uomfZcIuwUlYayeT/DkZ2LdlXyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:58"]},"IP":{"Case":"Some","Fields":["190.10.8.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rigel2020"]},"Identity":{"Case":"Some","Fields":["yL7z3wevOLaN0NqRsjsZ69LHZn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91CswAQpJjJnadGGn6xAaavz5fNti3PbfRzdfpraHJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:07"]},"IP":{"Case":"Some","Fields":["94.16.122.65"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipbb"]},"Identity":{"Case":"Some","Fields":["yLcV+WFo1BTlgKmFY8H4Y3LT/iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zmC6jN+1zxH9/k+Fy/QmbWjevLyFO2gu740mIiCGgV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:02"]},"IP":{"Case":"Some","Fields":["185.220.102.241"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::241]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dustsandstorm"]},"Identity":{"Case":"Some","Fields":["yLNPwxnjMBhZ/bvCOTNwgTAviY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4mr1908JDtsGjQUlkugRDq6EKjp7raLYWDbprEctuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:09"]},"IP":{"Case":"Some","Fields":["202.157.177.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei07"]},"Identity":{"Case":"Some","Fields":["yLI+pUP61vgg5YQag4DcKMg66g8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["76cx9XrQ2CIRVlrg8fKUsbgivBsq4U6XwOkQXR1j4gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:53"]},"IP":{"Case":"Some","Fields":["37.120.187.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:64f:5443:78ff:fe62:7ad8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mayforth"]},"Identity":{"Case":"Some","Fields":["yLDHcBh08LWvzasLriMf4wPIIo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y3UeV+Tm/67WetC+SXTPqbCYaD3FfO4O2kmksIA33cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:51"]},"IP":{"Case":"Some","Fields":["43.252.37.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rucola"]},"Identity":{"Case":"Some","Fields":["yK4m1IGVBNAVetTF3n1aCn4ZDRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P+Zi0VJvrPb+6x/003JZRW5NCEgMN+WFUX09uJE6+YI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:29"]},"IP":{"Case":"Some","Fields":["109.70.100.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webhusoB2"]},"Identity":{"Case":"Some","Fields":["yKtwRGg/gmGPrV1SG1XHeyn8ByI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wR9tJJoPx3Uj7Jeb+OaFrGXCpaSIps1TqypVBko5OhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:10"]},"IP":{"Case":"Some","Fields":["89.58.42.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:fcf::]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM05"]},"Identity":{"Case":"Some","Fields":["yKny5CSxnkeatbnPYqbJprOsElE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lw/nKbqcZuyDBiAl1gU4ID73VuXVHHXBhbhWOrsrjZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:02"]},"IP":{"Case":"Some","Fields":["185.239.222.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapNYC"]},"Identity":{"Case":"Some","Fields":["yJnyDcgAUDfIaw5EeFc4PZX8dCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ipE6b2SuybffGjKvO5u97AzmVEag6k3gLEs7CLyiRA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:58"]},"IP":{"Case":"Some","Fields":["67.205.139.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::237f:f001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman2"]},"Identity":{"Case":"Some","Fields":["yJYdu5sePb0RxSeciyq3GAvezIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9sA/O8Na2arwshYh6uOZT/JkjtRzRSyaU2HlI+x1Hvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:06"]},"IP":{"Case":"Some","Fields":["85.204.116.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:35c:4901:8a03:8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jabberwock"]},"Identity":{"Case":"Some","Fields":["yIl4LhL3OOIvCEjvVZyealBBt64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GGu2MrW32YIjIvG55WzN4U3N2U11Xpk+ZF491FSCxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:50"]},"IP":{"Case":"Some","Fields":["137.184.42.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::4f7:f000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809nl002"]},"Identity":{"Case":"Some","Fields":["yITEmb369+fV5mZya8Ox8j0vH00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["id/miQa7qnbVyNbqjH2jO7s6rsNEIdfKncLarPYOe+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:12"]},"IP":{"Case":"Some","Fields":["5.255.96.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:164::99]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waphul227"]},"Identity":{"Case":"Some","Fields":["yHPZ2N88tqT5KwencZPxoTk2R38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPk8c0h5q8J3rqgh0BW4WqnKmt9Ql8GiOPiRToQAsI8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:23"]},"IP":{"Case":"Some","Fields":["38.132.178.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["newton"]},"Identity":{"Case":"Some","Fields":["yHHJFImIbV4ulME+oaX9xLbcUgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3SvDwWrZ2Fg6iz3mdIioBV7Ibc64zTAjH4jNSvir+pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:02"]},"IP":{"Case":"Some","Fields":["203.211.120.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WdTor3"]},"Identity":{"Case":"Some","Fields":["yHAJFqyhHGnpimmlOvEXpKvukQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6bhejdDn9NMHT7ptJNL/EJTHGFgf6LOLVVPoANuRR5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:52"]},"IP":{"Case":"Some","Fields":["54.37.136.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xkcd"]},"Identity":{"Case":"Some","Fields":["yG8PdLr5G/zeGAB3zZfDOdz2ryg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFbSHOep/Zh4ND5NERhwDJl5AzqWX40FICxqOjPEZj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:51"]},"IP":{"Case":"Some","Fields":["144.76.223.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:1e6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charon"]},"Identity":{"Case":"Some","Fields":["yGxTjvCiTgEDQvMNvKzCp+t8qDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWz+K/4Od8o3+2/QOnve86QnhSM1aYIRkXbb3EkgQuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:31"]},"IP":{"Case":"Some","Fields":["173.249.8.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:1074::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra66"]},"Identity":{"Case":"Some","Fields":["yFswqDVugmQYy5ASVLdZX+FDBhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p2IX/0xZpsIxk8nOyfQ3O4fG7x4GL1AQ1gweqD+Rm34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:53"]},"IP":{"Case":"Some","Fields":["107.189.12.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["athenaharmony"]},"Identity":{"Case":"Some","Fields":["yE8kjTskZVzJbhezz0HguI0olH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IYr/jxbgG7Bq8L7SnhWdGGqJPIYIy8Weov6FgIxOsk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:15"]},"IP":{"Case":"Some","Fields":["95.147.65.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra74"]},"Identity":{"Case":"Some","Fields":["yDHP66JAfvSdkW9okPe5NnqotJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1KisQ/eWJRxoB9aJM6K9m4SLEsnwhH5mVMjukyRGEFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:46"]},"IP":{"Case":"Some","Fields":["185.82.126.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["yC9GE6Jvfihro9hc8ntgJ8Nf3yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KyQwj5ZY18iSiv/ws/jk8o7k7BYebNuqWu6aYly7eVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:36"]},"IP":{"Case":"Some","Fields":["5.45.98.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["yCmzxVfLZEpfq1mOjlcUmxFcSF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NZsaXrbjV0ljVUZteIwJcs8NAvSh1lDHZWh5BG5rorw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:00"]},"IP":{"Case":"Some","Fields":["77.68.75.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:d4::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["yB++tr+l0XzFcwMlwp+YrwDuzU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qG+W4Mw3x6Lhu80DW2rCNxUActiUOI6ZgthlnDP50Jw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:41"]},"IP":{"Case":"Some","Fields":["185.177.206.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::141]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Moonbird"]},"Identity":{"Case":"Some","Fields":["yA60txzotzssJXqmNHOab3ZVVhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jf0BR/p48x0rdhdDJhZ2UtzTtFpDwjJvmG8RM5ia+Qg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:04"]},"IP":{"Case":"Some","Fields":["198.98.59.243"]},"OnionRouterPort":{"Case":"Some","Fields":[7101]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MCdrKNe2"]},"Identity":{"Case":"Some","Fields":["x/9gbVnH9r7KijQdPPEbQj84LV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HOy5aPtgzZGQTNGMAlOHqKsbrxlCMsV8x3fEP0qVskE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:47"]},"IP":{"Case":"Some","Fields":["94.16.121.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OsamaBinError"]},"Identity":{"Case":"Some","Fields":["x+n4KiSlvwRiX65qT0sMWn9EG90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lejdaESR0jmdOqREAJ/cGeDSWTQ6HAjaAk/2bEaPEag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:29"]},"IP":{"Case":"Some","Fields":["95.216.140.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["x+SmNnA4SfEvn4Q4/vomtp/fJBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["12rG2yXJAujKCOsiAtzH+PJ7LF2Kv/dVStQolaO5pXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:14"]},"IP":{"Case":"Some","Fields":["45.132.158.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:4592::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lptr01ORFzF4Zq"]},"Identity":{"Case":"Some","Fields":["x9Bm1nJvD+oDY5kSL5/eSWh4qT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HfFCH6XQ3xnPVwQje/4tXCZx+iWKu0WF+mCrsiqaTok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:42"]},"IP":{"Case":"Some","Fields":["213.188.235.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webhusoB1"]},"Identity":{"Case":"Some","Fields":["x8cGaUfrLhbJlO/633uwal8eXiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aM+mrcgrB5BMvbqHuaQDAZiPbaGbYr0+Sxpp4rkJn9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:10"]},"IP":{"Case":"Some","Fields":["89.58.42.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:fcf::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedAssange"]},"Identity":{"Case":"Some","Fields":["x6grRi7+9EZRx5nL0wYh/g9Io+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j86DRS8Ja2lB2ewtjA5V4eYmMq6WblygLQ0fZeURZdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:07"]},"IP":{"Case":"Some","Fields":["23.154.177.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stars2"]},"Identity":{"Case":"Some","Fields":["x6RshmuWP8D1wOnc43XIadQPI+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YNlnAVpD0oMoDsYEQoQYhYVU9//g56OvI5Cp013/fSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:50"]},"IP":{"Case":"Some","Fields":["158.69.204.36"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["x6AW4fhc991zkUrkD1W3GD0RuP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KF9zFsJUXI+zbtZsTlLatmZeIUjlmdvokG4clFzscF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:56"]},"IP":{"Case":"Some","Fields":["185.220.101.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["x51P5uyGhhI5btZs3ednj470Zqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8gAqqFt0GXFhORU91EpHVYYZZxOxvWJr/dCXZWXwqVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:03"]},"IP":{"Case":"Some","Fields":["198.98.57.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zeilentrafo"]},"Identity":{"Case":"Some","Fields":["x5gg8rNIWyWdQIUWRitwDpkASHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kSZ/QFAEeKLfIch12uW/cr+Gd8gKgMr41vBAE14Ge0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:12"]},"IP":{"Case":"Some","Fields":["94.199.214.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["t0adwarri0r"]},"Identity":{"Case":"Some","Fields":["x5RtmhkrvkTByKkmqLE1rEldZjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qqo2kkxKjjXDPsQl/u4/89z1G3LBW16RVCdNz1YnT9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:30"]},"IP":{"Case":"Some","Fields":["198.50.238.128"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xqw33ds"]},"Identity":{"Case":"Some","Fields":["x5AuOeQjz8SXEP3/HOELo0Zz0KA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJMgiB+FSzNhS92pbHtORph6OqzAHDytKrg78xdJhbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:57"]},"IP":{"Case":"Some","Fields":["172.105.109.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:91ff:fee0:ba5d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex46"]},"Identity":{"Case":"Some","Fields":["x4r/7uMg6g+GCWF2PmE/0vrIVfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLGIyYAprLfmRMp4bcMZ/AQpziWOuWVr49+8/m+Qnv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:31"]},"IP":{"Case":"Some","Fields":["199.249.230.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e645]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RealityNews"]},"Identity":{"Case":"Some","Fields":["x4ZdWO7+lrkjM+PIvjwKqqAADu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URGwMTuCT/vPggf9cTMEE53HJ9iCN0huEEU60DtoIpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:28"]},"IP":{"Case":"Some","Fields":["79.77.182.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1b62::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["busywatchman"]},"Identity":{"Case":"Some","Fields":["x4P7HMSq6NppSKzYoMBwTQrbpPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KInkIqCf/gGnBnmLOojhtYcsMHTUAdgcmPpnImmG/0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:09"]},"IP":{"Case":"Some","Fields":["195.230.22.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MINJUS"]},"Identity":{"Case":"Some","Fields":["x3jZJ2ahu04gand7FN3XJZ+x1zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sFygM4RdE/88k7hWq3/HhCb5PF6LFRRDrj2JUX4v/9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:27"]},"IP":{"Case":"Some","Fields":["95.211.118.194"]},"OnionRouterPort":{"Case":"Some","Fields":[7002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tembi"]},"Identity":{"Case":"Some","Fields":["x3NfsDaQlO1jURMOgfPf7SXWf4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AeYtDp9YP3zBzUgWxbYpyyB8RFMvVORBa9A/51iqzS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:48"]},"IP":{"Case":"Some","Fields":["5.45.98.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:613:9872:48ff:fede:289d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["north"]},"Identity":{"Case":"Some","Fields":["x1jgNYfPHxeKx//T433MkdrHuYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cuGvuxGIxQ7bLHgbgeh0WSQgQRzino4/ho9x5QEE2W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:18"]},"IP":{"Case":"Some","Fields":["185.237.96.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["x1Q2b0bf+uqAw5SxvO0uzVbvsJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XyI+v+NgH1c88G4oDiXCfDS/rrai/JTDpquABto59pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:36"]},"IP":{"Case":"Some","Fields":["45.90.161.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::f05d:92ff:feb5:2932]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Midgard"]},"Identity":{"Case":"Some","Fields":["x0bxrEfyw0nkIJxeecJ+YDgJHjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["avzZjf8S4r4vp6HWGHUdruUPC3v7N4VKv7OJNV5yuKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:32"]},"IP":{"Case":"Some","Fields":["83.137.158.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9023]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["xzljJd6QceWO71pC/Uh/gRF8/8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0hyXWSzYku83ULUyVpyw/jJu5y+JM6rZ24daIhRJXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:52"]},"IP":{"Case":"Some","Fields":["45.88.200.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:45:88:200:0:95]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt98345"]},"Identity":{"Case":"Some","Fields":["xzENc1F5occpfmg0qjTAT2ylPU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hunsDgYAaddXmMItMDG1xvLKOruQY3k13uaP6QfxwGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:09"]},"IP":{"Case":"Some","Fields":["185.245.60.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xypQYd1esinN8Wutp0CUPuru/lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SfRoW3I8TAVKTzg7tg7MzaKeAdyRppMlZ8aR+Z+UNmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:46"]},"IP":{"Case":"Some","Fields":["136.37.102.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[9930]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrh3W"]},"Identity":{"Case":"Some","Fields":["xyog/TP7Kh5ohJVoFIjDcVpmy6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MwVV3XMdYumzmhxConl26UshRpXbMuIndKALMIAjuIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:41"]},"IP":{"Case":"Some","Fields":["5.255.103.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:a34f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xxeEOR8dolYlDAP3rL1IAdA0S7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mS7w/SGqe47VXrfJFGy1BqqyClFSdUeZiSQnUraA6Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:58"]},"IP":{"Case":"Some","Fields":["5.45.98.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["xxBvDGp88PWSy6/3x5vYEVOxtfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k8CZJ2toAlPFJz4KIcSTbcY34tISki0euoUAdoulXTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:33"]},"IP":{"Case":"Some","Fields":["185.220.101.207"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::207]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PhilosofRelay"]},"Identity":{"Case":"Some","Fields":["xwJedc+JV3HEBpOhekRRxUKbx2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VMT2B8JOFi0aZ1jqpzrBFkS8w0WsNMP9g94MHAOHDM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:35"]},"IP":{"Case":"Some","Fields":["194.147.115.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1142"]},"Identity":{"Case":"Some","Fields":["xv+ywXBZ4Tw3NllRWYMwzUkGWwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wjY9j0LH0JbmF3KHwLuhKQXpBWbHwKLNNtm6OoP4PB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:18"]},"IP":{"Case":"Some","Fields":["185.220.101.142"]},"OnionRouterPort":{"Case":"Some","Fields":[11142]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::142]:11142"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobo"]},"Identity":{"Case":"Some","Fields":["xvRgnTDBEOvhj1h1JAZYQe79sTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYa1n2O96QY24yYaZYDqAHSytmeDGE+MWeoIO1C1HxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:34"]},"IP":{"Case":"Some","Fields":["195.43.142.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LSRodentNinjaRelay"]},"Identity":{"Case":"Some","Fields":["xu8RXZlzF6MseErA+ZRK4Fgco34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UoAn8N80LvtacPb0UxKdhhj5WRg9bFuz1j6ozkU3o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:44:04"]},"IP":{"Case":"Some","Fields":["52.47.91.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrankhul"]},"Identity":{"Case":"Some","Fields":["xu19N6o8yqWGsi4KMLOVpeWCRAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zux3EZlGCr7W+K6+v7x/5vhfQK5+eObg1oyl/vD/fBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:59"]},"IP":{"Case":"Some","Fields":["185.220.100.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:12::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl4tjdevde"]},"Identity":{"Case":"Some","Fields":["xuzPKsE5ISQlJq6URGE90+dZXaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1NsDg0sAcm6VQZUY4nkFGHsI1Nm5bzz/LGnQQdPZD10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:17"]},"IP":{"Case":"Some","Fields":["89.58.45.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange023gr"]},"Identity":{"Case":"Some","Fields":["xuORDLrcptLX6TKrMaA47dam+3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ml9TH7KFHYfrBPbUgJs3ca8Y/mlq/hh+neqN9Y/PAxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:59"]},"IP":{"Case":"Some","Fields":["185.4.134.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:110::2d49]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsten"]},"Identity":{"Case":"Some","Fields":["xuIzRenbUyW2KulWym6K5tq20b4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["18A44JcOAkdDgcjQIahEyXl/RZ64btd6IOc5Er2NZsE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:12"]},"IP":{"Case":"Some","Fields":["178.174.235.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xsLzOYNuKh7/ZLna/LAMGg1I1cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/yPNC/t7CJEk745d7FH/TVZJ9M8Tk5SzBzZqgzoUKKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:15"]},"IP":{"Case":"Some","Fields":["94.23.150.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0172"]},"Identity":{"Case":"Some","Fields":["xrR+Hw08dfNvoAz2Orq7mE3ROho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0hwn90ra6gVuTAcOM9U7ImGjL86ZoObTFYluEblkhLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:38"]},"IP":{"Case":"Some","Fields":["185.220.101.172"]},"OnionRouterPort":{"Case":"Some","Fields":[10172]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::172]:10172"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesutochuu"]},"Identity":{"Case":"Some","Fields":["xqx2J0A1VkmSvge20SCJmMZnorI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/WyOPl2N1cbVwC6uFKh5X2WkpiZ1N7jEeGrYq1XYjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:40"]},"IP":{"Case":"Some","Fields":["14.9.101.224"]},"OnionRouterPort":{"Case":"Some","Fields":[8351]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[240b:13:65e0:900:8557:7d07:ef6:9efe]:8351"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["T0NY"]},"Identity":{"Case":"Some","Fields":["xqlavtlW2VsBQ18ja+ZtFyhY+XQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wgKWW9yOvSrPtkLk+DPudaTaK0n9cjdMbYnthg/BYdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:12"]},"IP":{"Case":"Some","Fields":["45.15.141.162"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enigma"]},"Identity":{"Case":"Some","Fields":["xqWLxf4KSV6eMiwjVhAeJ9sVLZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XnlqQMAO1ZghBHogYrFXSfzZE+0t1ckUoe31lQ6R3XQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:03"]},"IP":{"Case":"Some","Fields":["193.214.214.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notolok3"]},"Identity":{"Case":"Some","Fields":["xpRpflrzl5Tfbs1+9qCzmXLYf2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2k96vnKXNqH37+WBybAlpTeoMxwvhgDM1ilCg9KUX3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:42"]},"IP":{"Case":"Some","Fields":["193.56.240.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipab"]},"Identity":{"Case":"Some","Fields":["xoiz75qwNU6yeUF0UZu57Z5kZ+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["08Si/2ibOdi7VBas4e0qsUkVn1ccrT21d26E3Ou2zSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:49"]},"IP":{"Case":"Some","Fields":["185.220.102.240"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::240]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE66"]},"Identity":{"Case":"Some","Fields":["xneolA68/JrS3SRp4jCuB9xT7Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WedrMX6d5KEGwwdaJiwOoHILax9ODDTQEoeNe4L29ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:25"]},"IP":{"Case":"Some","Fields":["37.221.66.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:107]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra33"]},"Identity":{"Case":"Some","Fields":["xnOv5c+cxJ5fhk8PgNX+KBSlIjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C4LJlXkxiNe57ljEn0Y4eeY6AXPrff018emCMHNr3Lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:24"]},"IP":{"Case":"Some","Fields":["104.244.75.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frxctxr"]},"Identity":{"Case":"Some","Fields":["xnKVvtW8PmaVBZFZ4fBLJq1Oh9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xR2ThRu4zw0bBu00KYTVz39XhYNDEuE62v5yfvfdOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:42"]},"IP":{"Case":"Some","Fields":["194.45.76.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:4002:600f::666:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Northpole"]},"Identity":{"Case":"Some","Fields":["xl67PuXEitIKH6xjozZa8S3zRvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vFG7d+f/YMNuLaj8IoWpxqew5Ot+TL+UkEucMe9K/LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:37"]},"IP":{"Case":"Some","Fields":["88.195.223.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theseekingchild"]},"Identity":{"Case":"Some","Fields":["xl3kpzgLrKyUeFYZWdxZ3R/14bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MiweFa3m8V1Gn01reH5i6nHa4+7+y4LivfhJ5HCNqhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:44"]},"IP":{"Case":"Some","Fields":["103.102.46.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xluagOpcb6MiUeqvppHfbcn6reE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wauvN5g9PQbvVH95wCxwssOvAR7WivI0GFaLiS2Bvy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:17"]},"IP":{"Case":"Some","Fields":["88.208.240.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:b1::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marcuse2"]},"Identity":{"Case":"Some","Fields":["xla0Gu+0ChQZZ+v0nW5pYDybShE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aLtQs/eaIdd/PceSFNfGXXQWX0kXCnh2jyrn6vxgtqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:05"]},"IP":{"Case":"Some","Fields":["178.20.55.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1b88:4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexrelayde1"]},"Identity":{"Case":"Some","Fields":["xk60VTqjCNj7wxTXO0QXjkyxHDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DkDETDX07s+6SRUfqP8WYEhY9FfN0Bn6LkIYlqvWakg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:42:12"]},"IP":{"Case":"Some","Fields":["148.251.183.205"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:cc::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc16"]},"Identity":{"Case":"Some","Fields":["xkgCs4tBqPIPiEkyhAQp1vYR3LM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEXNI00geDFpaVdG7KIkGxq4ZuyAl/4mkCdM4MyDREU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:45"]},"IP":{"Case":"Some","Fields":["185.100.85.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["xkNLo7kyJcb+2qMmPYUvkU+2YaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y/KSkDVR4l7FVtx5vgRQxvjIYeY+WhI4IokR4t+f35Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:07"]},"IP":{"Case":"Some","Fields":["159.223.217.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::13d8:4001]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lapras"]},"Identity":{"Case":"Some","Fields":["xjnfizjqLhrS9VDyYeW4AyzRRIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lj9toc2criTpTgXIBqIqwxZ9zsWbWEzLkagDHLr3ock"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:02"]},"IP":{"Case":"Some","Fields":["172.127.92.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["xjLHdLbYRgAj9mSMX1/rePYMwhw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q92cnxFZQlVbjXH1oYJacn8f9Isl4Pgr4ElqAfCP5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:26"]},"IP":{"Case":"Some","Fields":["23.128.248.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::18]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xiP5eFjdwg3IAJgmDf3wU8YxMck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cf+Xq5jcd/VpWZSxV+kugbCw7IXzxmWYNtV8t3NbUmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:52"]},"IP":{"Case":"Some","Fields":["188.68.49.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting24"]},"Identity":{"Case":"Some","Fields":["xh0b56Q0pXxgpnuY/JClVR395vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NmIPpa3Rxnky6AjXQ85ULxqbODz/Jcg1PBjNAlVkNhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:36"]},"IP":{"Case":"Some","Fields":["185.103.110.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sam"]},"Identity":{"Case":"Some","Fields":["xhlBEtvtjHmBrVxQXLJD0bqJUL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["84Uhcyh3TYQ78Lx5mkVNMNq+H3Aih1sTnjQwdwPqoyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:02"]},"IP":{"Case":"Some","Fields":["142.188.85.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FCKPTN"]},"Identity":{"Case":"Some","Fields":["xgHfqzMG7w9+3zlvt3IGF1L3b4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVMiat4z5k07Dy9+46omAEZIXXahoWBDQenCCMCEdks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:56"]},"IP":{"Case":"Some","Fields":["37.136.151.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlliumCepa"]},"Identity":{"Case":"Some","Fields":["xfIU9/nMvwkyTJqgMnYBUCQ6GWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNgp4e/hDqQRjCAu5p42YCfLsAmKlWSJ9Ri4KKueNFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:09"]},"IP":{"Case":"Some","Fields":["51.178.82.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HjelmEnterprises01"]},"Identity":{"Case":"Some","Fields":["xfBZGha9aOuIFw2SGw4zHxgOYks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xE0YhpSgqK1gOHqfSp52Zb30kXKXP+Are4OK/WhVhu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:22"]},"IP":{"Case":"Some","Fields":["192.121.108.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vigilance"]},"Identity":{"Case":"Some","Fields":["xfA+enmMojfnvdRAkb7+NfL1muE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p9tDV7qiIAdFAmJHWQ0F8vISKd8SXsFabRzetMqM5NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:19"]},"IP":{"Case":"Some","Fields":["87.236.197.123"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BridgeMcBoatee"]},"Identity":{"Case":"Some","Fields":["xewjsFjSdfjUjKFycninnifpzPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2NO9POtdZz9FusL9TlQBw5LhA7Ru2n72eymSWP+tycI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["142.132.171.253"]},"OnionRouterPort":{"Case":"Some","Fields":[7349]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:9d01::1]:7349"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xeunJOLRkhTp1ipHz0w/stuUYZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CiP3Z74q+BjPA7mbSJ7IGof2cnvhqjM/pDnP/D3NGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:38"]},"IP":{"Case":"Some","Fields":["93.95.230.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anoncicada"]},"Identity":{"Case":"Some","Fields":["xeoyctnrnZjnT0U4XdVSpHsGRvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DZHlZPUGuzLRCSGggf2t1DdGC6e+IVEMkfiykpF/scs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:27"]},"IP":{"Case":"Some","Fields":["51.79.71.20"]},"OnionRouterPort":{"Case":"Some","Fields":[3304]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TreeFiddy"]},"Identity":{"Case":"Some","Fields":["xeQg+vBWgO5ZBUKuchbHdgL+aNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wbOpmRIkXlUMShr/3FTIT01kEvrKY6WUekiGJMNHrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:25"]},"IP":{"Case":"Some","Fields":["64.223.229.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pudzian"]},"Identity":{"Case":"Some","Fields":["xeD/aE+kN7kF9TruRXSdqxho1dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wwbmvG4fjWqtNU60Y0/bt8JUriGhRT6VUGrAI/gctS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:43"]},"IP":{"Case":"Some","Fields":["144.24.163.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venusisland"]},"Identity":{"Case":"Some","Fields":["xd+guEq7AZA5IzzUo8f7kGJ+Y6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P2gSosogGsFwHl87KVpNhsx8Q8HLPy43zHnoa+bcOwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:37"]},"IP":{"Case":"Some","Fields":["47.242.236.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smortRley"]},"Identity":{"Case":"Some","Fields":["xd+Vq6Ypn5n1ApktRv6aZNqxjKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tVEnvasEPunkcit3aVzNuJmhLWKGWrmocKwj8J4v4Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:05"]},"IP":{"Case":"Some","Fields":["65.108.130.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:2e69::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aggie"]},"Identity":{"Case":"Some","Fields":["xdXmNdEVySHAYJKf2+oI8hQokZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["To2wiPntWBJPuV1BC2my18LsAfK+cMrzxO1gELdtqa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:21"]},"IP":{"Case":"Some","Fields":["107.170.219.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:1:20::24a0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohsally"]},"Identity":{"Case":"Some","Fields":["xdVdEfJsUqa/7o3SPCUFSKpn6aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ALtEfEqZGyeHU7S0BhPqdB0MqUCbpY0iNImfDdO4X9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:43"]},"IP":{"Case":"Some","Fields":["93.95.100.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoychev"]},"Identity":{"Case":"Some","Fields":["xb8nVg5LAHNl+6ltMvnnRhQhjI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91jDkKPEOCWsiTC+x1pk+OCnuwZDWkXTsZw0QxkmoWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:41"]},"IP":{"Case":"Some","Fields":["104.238.167.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste23"]},"Identity":{"Case":"Some","Fields":["xbj7wCN/SgTyBVEo8lff9unBRbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["agy7FNneA+QYSd3lf/IpHEuCs7xCJ3LPYOfUo5KHi0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:24"]},"IP":{"Case":"Some","Fields":["89.163.128.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::10cc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leshy"]},"Identity":{"Case":"Some","Fields":["xbYi5SZUtXCt/WVqxht0zIS77pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vZI2cZfLroYF1HYnMCU+KvNdv/ZIk5/RJ1NeL2D/AdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:25"]},"IP":{"Case":"Some","Fields":["159.69.12.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:75d8::1]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["xbBF1vyn1sSc5TOXWQzbw3OXj8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nh/4QjHfeBnYqjkePNRTuMCuj8QtqAatH+8b7MWz9hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:44"]},"IP":{"Case":"Some","Fields":["23.128.248.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::219]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jivin"]},"Identity":{"Case":"Some","Fields":["xab+5bw74Z9bnrCGypXa05PYpPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m375qp0pi3FK8blnFBzkgtkiYOnNdzCRPs3aTkLpMlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:50"]},"IP":{"Case":"Some","Fields":["103.28.52.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:df7:7400:c10d:216:3eff:fe79:59d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex17"]},"Identity":{"Case":"Some","Fields":["xaU7zBdO+P0NyyI+Sqkp+lV97bI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lHaIzSe+fnUFqDafjVgM7whTLqmDqv2l8d64utHIzvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:06"]},"IP":{"Case":"Some","Fields":["199.249.230.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::107]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC1"]},"Identity":{"Case":"Some","Fields":["xZ4HlDc0DjrRTmeFwKkaW28yhWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rvqPaojpuY2+oBaoABiqlUxqqk2ZMC7K9GXlEqbxbjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:21"]},"IP":{"Case":"Some","Fields":["204.85.191.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xZDzZkRWXrAM8ZZi/BE90WYMfoI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["czGTvZ0tygZ9n8ABXvDreKzR8I0tfDuK4ffdyWlO5Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:01"]},"IP":{"Case":"Some","Fields":["23.128.248.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::bc5c:57ff:fed7:5ad3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gopherHeaven"]},"Identity":{"Case":"Some","Fields":["xZCc8RfF/nidkmy3IeHBXA9ssyA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sM8Y/wViAv/Pmu/liFZiaFMfHcmcMTwIv1lh01C6nC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:03"]},"IP":{"Case":"Some","Fields":["206.212.229.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xW+RAiLSwfrZ+noVyptAP6ASj5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLrAXJa0dBp52C/r21CPCxp1nb5CmRCfXdmgrVT4rEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:22"]},"IP":{"Case":"Some","Fields":["185.194.141.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whocares"]},"Identity":{"Case":"Some","Fields":["xW6Y6TTtte76kyLV1IGOCTJfeoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IMy84ZSfecvyd2X6Jgmk7H8ddBIbu1vTvhmc8p30ji4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:31"]},"IP":{"Case":"Some","Fields":["92.205.17.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra56"]},"Identity":{"Case":"Some","Fields":["xVCfzO9yrIKDgod+zpMBGcX61iU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P8y9lYerQZjGwG5HftPyWkLcrnkuWazsONbPZj8VwuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:13"]},"IP":{"Case":"Some","Fields":["94.140.114.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DefCon"]},"Identity":{"Case":"Some","Fields":["xU6B6wR9fsHgWwrG5yO+G/XK9SA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bur2TAGtmCfLWzrFbG6NIQjw0LTpR9GUpEc+vDpT+Ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:03"]},"IP":{"Case":"Some","Fields":["84.61.79.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fedoriansRelayTor"]},"Identity":{"Case":"Some","Fields":["xUq388yrAbr2Gm9zN64fYNi7lA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsnIbMqdPywiGZlRJ+qiW7RFv7zzCDb7hzbMaa7uhUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:38"]},"IP":{"Case":"Some","Fields":["37.221.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:61b:85e:b6ff:fefa:8752]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["literalchaos"]},"Identity":{"Case":"Some","Fields":["xUpbCgxeLv9Lmxylyin/qVRbYm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5w/FT22hDnzkURjbRehMQxIOP1adAjRh52TwuzmoAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:43"]},"IP":{"Case":"Some","Fields":["202.61.193.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:58:9d2:88f:58ff:feca:3aaf]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xUaHNLVrWAaqB27GHNAIIlNMJLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xjkv1hC8ssmKf8tlr5PrulIucMB6A1Gfle4grHb7Slg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:41"]},"IP":{"Case":"Some","Fields":["185.207.107.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dystopia3"]},"Identity":{"Case":"Some","Fields":["xUOw+fXargpAPDubd+fiQOvDxf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJ2x/NC947D65yvMol1RZbHgy4Nl+QEhk3tTMbZNO8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:25"]},"IP":{"Case":"Some","Fields":["65.21.106.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:bf0a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xS96AmSufGUJdhZuoTmCUB7IEM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATmvXSZqt5rltoHq4r9sGaPQaNltZaHjqAnVAq5rxYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:57"]},"IP":{"Case":"Some","Fields":["188.165.213.156"]},"OnionRouterPort":{"Case":"Some","Fields":[52743]},"DirectoryPort":{"Case":"Some","Fields":[52345]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:a09c::1]:52743"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["xSiyLUuiIGOfnc6GpQu5i90vz7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1erztvXzafHbnPF+w74V45gKTa334DVUgG6734xNX90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:33"]},"IP":{"Case":"Some","Fields":["185.241.208.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bazinga"]},"Identity":{"Case":"Some","Fields":["xRUDQevkLC386ZYxAFFLV3+jCmo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B6BUkb9kPVmmFaeXjrq4IzzN+t+T8PhUcoTvPCuands"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:10"]},"IP":{"Case":"Some","Fields":["172.106.19.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorStinkwuselBs"]},"Identity":{"Case":"Some","Fields":["xQ9SnqH2PHS5l9pV9+w+JtpwrWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NDJCFxcMos6oyOre/9ZreySLqMDAdfSwOki/SMJcImI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:31"]},"IP":{"Case":"Some","Fields":["178.2.30.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xQz4XL4KMn4y7noAEWHEe7s4znY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cd0QuSX61F3mFUbu+8wcb1rd/CiqlpfbE+QOBwepsfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:33"]},"IP":{"Case":"Some","Fields":["46.142.147.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra90"]},"Identity":{"Case":"Some","Fields":["xPfsmZfwSXl6+vWpQaGwlpM99/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyAcdClaDM5HzN2qdJH7GCYPFieBConeygfzowZVZDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:45"]},"IP":{"Case":"Some","Fields":["185.125.171.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["keepthenetfree"]},"Identity":{"Case":"Some","Fields":["xONRBdUS8QRRYaYaUjItdwLeSbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0pwBLnxN/gcaum8fWx4OBYWrotMmCpKJhssLj8SeZVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:05"]},"IP":{"Case":"Some","Fields":["93.200.77.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["xM5Uv3zzVUM/9unYAkAHD2W2uW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ni41RhUGwnRLAucYc18FDuQyFiaSkmsRZobMyYM0oVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.52"]},"OnionRouterPort":{"Case":"Some","Fields":[10052]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::52]:10052"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI26"]},"Identity":{"Case":"Some","Fields":["xMUb6fCHCX4UVk4F2Q5WScrwm5g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a9LT2q85cZf6dO05yOMYWu/5thXvmBpITimKKZvGoH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:25"]},"IP":{"Case":"Some","Fields":["171.25.193.235"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::235]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["s0yb3an"]},"Identity":{"Case":"Some","Fields":["xMRiUG1U7cjvyOiOMvSuAUdVA1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27jqC74VYhPzw8ZQcejQb7cB3HDzCfCAYYiQjohACZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:37"]},"IP":{"Case":"Some","Fields":["87.171.69.190"]},"OnionRouterPort":{"Case":"Some","Fields":[10222]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lenin"]},"Identity":{"Case":"Some","Fields":["xL2/0QSe4dT2l3xCSF+UzV+XupI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5m9s1iH0AUoxNjeuZ6TcROPdcL1Fi6dSiN1EgsGHIu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:54"]},"IP":{"Case":"Some","Fields":["95.216.12.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:c5c::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FOD87"]},"Identity":{"Case":"Some","Fields":["xLhUNFgt8yqV1CyVUrudP9nw7eQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TeyBR1cpE0yIDvT32tKiQhK0leEepiU1m3K3CJXZlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:59"]},"IP":{"Case":"Some","Fields":["67.219.182.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff36:2:666::666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM11"]},"Identity":{"Case":"Some","Fields":["xKKXX+aEJrlCB0wFo8lpSVKxn3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r3OxSW8TFDsayenHhyJf8OWamGfyYPDrs5FOWO2cEGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:29"]},"IP":{"Case":"Some","Fields":["185.239.222.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange028usX"]},"Identity":{"Case":"Some","Fields":["xJ4+NFkRcqU0Ch035bTj0LkeDxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpOgtjA+4XYH+P9qSU6nM7h/YYB4fAXpxgSFsmuPxLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:09"]},"IP":{"Case":"Some","Fields":["185.196.2.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OzV8Bogan"]},"Identity":{"Case":"Some","Fields":["xJIH+9Uw+58wfGJvVb1QLaNiPqw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["39fH5yluHg7JyPkDNgmUmFMsCNNB3HmS/18UviLp0jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:59"]},"IP":{"Case":"Some","Fields":["175.34.246.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KaaTorRelay"]},"Identity":{"Case":"Some","Fields":["xG5nKZS1MZJzcUwrrgdBHLTvWh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/8OU2iZH6ZCvRcB/u/4mv5ddaRgi4cMzh0r+ILMyVno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:16"]},"IP":{"Case":"Some","Fields":["82.64.197.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5be:f320:5c7a:b8ff:fe7f:a026]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lamia"]},"Identity":{"Case":"Some","Fields":["xGVI1EwMpYVcF1zib1gX04+DPJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z+ApAeea3p65Z8WIyneUfJPWnzme3lrMpb+dgrD9lik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:25"]},"IP":{"Case":"Some","Fields":["135.148.149.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::b63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frozone"]},"Identity":{"Case":"Some","Fields":["xF/lxBrMN+TqRof/xUp08SRzna8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gv0c22tOako9//hql/DFbfNRrDNzQnmnBOXm1eQBYdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:38"]},"IP":{"Case":"Some","Fields":["144.76.166.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:428c::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EiH9W"]},"Identity":{"Case":"Some","Fields":["xEYedRwpz0sJSx45FTynZtYnJEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/KXPXlEz++jNNvfahIdYHMIe40bN7tJEM066bZBSrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:04"]},"IP":{"Case":"Some","Fields":["46.128.114.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv19"]},"Identity":{"Case":"Some","Fields":["xDFDs+rl+jZC8IKlKG2/9zQ3DJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pl+imZZgWQ5hXveRvWPBLHlUSYKLSEBAANRd6Gfp/5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:16"]},"IP":{"Case":"Some","Fields":["162.248.163.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xDANPAO7QfX2K66Pxix4rA6Y0bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3nfD+UkJoxT4wxHYxGQ9kzCqGABQj6Da755efKNywS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:53:10"]},"IP":{"Case":"Some","Fields":["78.94.141.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["xCpU7C0twjaUIu0c+5Hj0eH7Dxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mm6fK9nUJDQHJ4HvMOwfD5aOCSO0Mj17p4x7bN0XxGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:33"]},"IP":{"Case":"Some","Fields":["91.211.91.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei13"]},"Identity":{"Case":"Some","Fields":["xAzgGM/rcGVHJxhEvuRxC106egw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SDtVbbHy4UByOO6/zBcgxyMBJQ30idBU2rmGtXrb8pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:13"]},"IP":{"Case":"Some","Fields":["185.162.251.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5dc:242e:cbff:fe4d:cb31]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HodlMonero"]},"Identity":{"Case":"Some","Fields":["xAoOee6+PdphH4qkfg++5S2M008"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XCxvcn+at0+D/QB3K86hMgh3NBwlF2E97dKMHhD01Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:58"]},"IP":{"Case":"Some","Fields":["185.236.231.142"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kul5"]},"Identity":{"Case":"Some","Fields":["w/w3phlP3XBTGg5GzhmEQd+qmS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imgDhCQnh1He/qH60N6/kaeet27e53Jz9X5IhKhXZbw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:01"]},"IP":{"Case":"Some","Fields":["89.34.18.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie4"]},"Identity":{"Case":"Some","Fields":["w/fz4eMqZLIrLwc058ejEvmT0QI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smKadwnD0z3GHNKiLIxMgc/utms017r62PMRGVC+RS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:36"]},"IP":{"Case":"Some","Fields":["65.108.136.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imherefortheparty"]},"Identity":{"Case":"Some","Fields":["w9+3vUCwcuttRlePG+Ah/dnWBxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O7ZW4X2DP4JSvElLMw6WrTNtBCUZfpkZUc68irywGUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:03"]},"IP":{"Case":"Some","Fields":["116.202.55.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:439b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mangtor"]},"Identity":{"Case":"Some","Fields":["w7vxQVHQ3b0+zdj7PyPO/JZ0P/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e4hR0sVt/Vctghi8WJFNiqs1OJQ++kPsr7ODjGNbyeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:16"]},"IP":{"Case":"Some","Fields":["207.229.65.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexrelayfin1"]},"Identity":{"Case":"Some","Fields":["w6ywSSpkTielSbw83zt6EpGG478"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7nu/GguHeXmimf4VJBMLE7NahALLLKPwmwOs5NygZnU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:07"]},"IP":{"Case":"Some","Fields":["95.216.3.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:3d4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pataky"]},"Identity":{"Case":"Some","Fields":["w3+HwBJeJuas9UNm+iGYIJ6Far4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z4lVa7zSCcxOjXCflb9npbQPLoNCJ/YDhkGLu2W1rbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:42"]},"IP":{"Case":"Some","Fields":["185.80.222.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2498:f000:0:216:3eff:fea7:a0bf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cebollero"]},"Identity":{"Case":"Some","Fields":["w3r3i/ieaXlRysbf1eNSs2/laqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yx8OYkrypqc5IEquVYOTptg9Q1CXhV6ysTfD23Zfrfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:33"]},"IP":{"Case":"Some","Fields":["188.213.5.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torfan"]},"Identity":{"Case":"Some","Fields":["w3FPRBGKG9f8Vzlk7aqvU4th6ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l263LrcvrvHNzQM2jA6NIGjk5kBhn656E8IZrI6swqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:14"]},"IP":{"Case":"Some","Fields":["88.208.115.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev3c"]},"Identity":{"Case":"Some","Fields":["w2x2mSGYMpwNjzTgHQkr8qzgtrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["caUQQ9SKBcC0pcgv4w5fkuUSQTJYVc8dAhbY8sf4WMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:56"]},"IP":{"Case":"Some","Fields":["87.118.122.51"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:106:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jorcanada"]},"Identity":{"Case":"Some","Fields":["w2Y5HmeinOlZoVGT0M8vntlPNXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C/aSJP7ItUrahiQ5YFEu5Kyd4qx+hy30gCoV236negU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:01"]},"IP":{"Case":"Some","Fields":["216.197.207.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["w2HpGtYxx0vxCNIStjDr75th20c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLtHtlxx+KSYfmvLZTyXsGBjxOFRYRbr+s+dpdkrpEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["185.14.97.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:14:97:0:176]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themerrythoughts"]},"Identity":{"Case":"Some","Fields":["w1yfo/xQG9wiqD/AUQJzOVHjhtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdQjCudZe2EqNHgD09V/JIxE1qKYp1I4z0mxBC+/uEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:38"]},"IP":{"Case":"Some","Fields":["185.82.126.100"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::c0]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lachrymator"]},"Identity":{"Case":"Some","Fields":["w1A3cPRl2m9Un2Blr/e4z79iwiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fMkguHG3/VGae3/EM5VBYfJ6fKobakolDAhLmem6JQE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:03"]},"IP":{"Case":"Some","Fields":["71.79.166.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skibidibopmmdada"]},"Identity":{"Case":"Some","Fields":["w01qynzn9Uz+gzw3i62IcPWn+oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SrLnlR9nVn6NQVIXJ+qh99Mu7bOL55U3WGZJscx8ovk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:17"]},"IP":{"Case":"Some","Fields":["116.202.97.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:ba1d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLightSpecter"]},"Identity":{"Case":"Some","Fields":["w0OKt0BoL0byIWcpkb71EArqFDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HNHkdwFWN6xudfJl1vZ0CMb3xLZ4w5ziUI2q1kNd0iA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:00"]},"IP":{"Case":"Some","Fields":["146.70.80.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Cir0X"]},"Identity":{"Case":"Some","Fields":["wzs229V21N4UFEPSgSJXXaFZ0bM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TN3Wysey4am6i3xZ45GqSU45FL87QJvxKtwdJ0uNVl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:29"]},"IP":{"Case":"Some","Fields":["37.120.178.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mistersixt"]},"Identity":{"Case":"Some","Fields":["wzJQ09E96rsD/tzu71HPCXfy0Eg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5wfweLT6a2Z5DOR2Yn/AfQEymHApWali2hd8QXGkH+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:59"]},"IP":{"Case":"Some","Fields":["94.16.114.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:365::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RainbowBulls"]},"Identity":{"Case":"Some","Fields":["wy9LalCzVxtcs8fAEkIfcdzGL1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7szfh0MIy3/xwRR7uYG4wvLXsc8jGy9yBP+bY88axgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:53"]},"IP":{"Case":"Some","Fields":["107.181.136.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isekairelay"]},"Identity":{"Case":"Some","Fields":["wy7lPaT90Rm9mMLK1VYMvQ3561U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ePQ1xYKwdc9jWtxwHHuxpn8QjCXZ0Tmy9NryBKX2XI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:06"]},"IP":{"Case":"Some","Fields":["185.112.144.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FinkIT"]},"Identity":{"Case":"Some","Fields":["wy563gHskO9wF3FyJUKWb2xYdVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9KchFmK2xniDNqKLTXpJPDUQOvE9ou6YD1XAuOkbTtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:00"]},"IP":{"Case":"Some","Fields":["85.214.246.62"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43f6:7c00:7dc2:a993:e2ef:fea7]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["wykF0Y8rChBLA5oQ7UHD0MC98Do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRUMGEC7qvZe5LzMfg06/SlzMQwwcIgPHMJNhQKoYgA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:10"]},"IP":{"Case":"Some","Fields":["185.220.101.36"]},"OnionRouterPort":{"Case":"Some","Fields":[10136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::36]:10136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itrickl02"]},"Identity":{"Case":"Some","Fields":["wyd/vquUZnLUaOkKFrsCe0ysxTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t2mMGbi271Rsp6rEHanl6HK2oq/FHDRIF4i69GDuB1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:50"]},"IP":{"Case":"Some","Fields":["202.61.204.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5b:65a:6403:7cff:fecb:38b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor6"]},"Identity":{"Case":"Some","Fields":["wyY/S06SEnt80V6Pl0a0OCIzQko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i511tBCRTo+VF1N9krUbHobr50HVMUVKrw17cKHJogE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:14"]},"IP":{"Case":"Some","Fields":["51.15.91.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:819::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DicedOnions"]},"Identity":{"Case":"Some","Fields":["wyM7F0epcPcEPwkECfWJOpBk7eE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2NYMrfbu5JLx2Wtwy0y6ZjP1NeH/RCKylk09oT19mic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:16"]},"IP":{"Case":"Some","Fields":["209.141.51.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:2417::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x766c6164"]},"Identity":{"Case":"Some","Fields":["wxQTwyPbK9VbQ3Gl1GiA2evS+oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ws7nwTwDqVF6W8cdKiTEppwRVG8qHbGc6/owKHskiYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:15:24"]},"IP":{"Case":"Some","Fields":["86.127.196.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9161]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra42"]},"Identity":{"Case":"Some","Fields":["wxLEhaflWV2RfhkluhXVUPtxpvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OPkHBAAKEVfkvR50g2eF0YAIV2nxesKQycL30gJ1dOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:02"]},"IP":{"Case":"Some","Fields":["107.189.10.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission12"]},"Identity":{"Case":"Some","Fields":["wwMDj9zHKAWhYP9k6ZQzOkns2nE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZzATD9vkAKiEAvJQnDy6IjUJOo4Vq5QfAvpml4GJ8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:03"]},"IP":{"Case":"Some","Fields":["54.38.219.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheTorRelay"]},"Identity":{"Case":"Some","Fields":["wwFHMnVoViCoiF4dfzA/RV0CZf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzCUQW10j6de9IXNyk6NSDfhiHS5NrxImaoGmRygJ3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["89.58.43.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:d8f:d4aa:d2ff:feb8:b2bc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RocklinTorRelay"]},"Identity":{"Case":"Some","Fields":["wvs0bs6kj8mArUQrrbfNEOFOU6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZAPl3XDwDzDudCoTbWUVDgX0rjVAUTgf4UPBJgqyYs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:06"]},"IP":{"Case":"Some","Fields":["76.14.151.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bastard"]},"Identity":{"Case":"Some","Fields":["wu5A7oRR8nwjV+ix6h6Ob2Qic+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K/wdsCP/GBFkELt4luznuS+qLg1V/+EX2S2ZHjpY910"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:07"]},"IP":{"Case":"Some","Fields":["217.197.86.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dckdad"]},"Identity":{"Case":"Some","Fields":["wuZuGqIKYmP8MCkpbGQT1Xmg5o4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["giAf5quKrlTIUkqlm9zdVJhfDuyuC5JRidS+7P+9KuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:03"]},"IP":{"Case":"Some","Fields":["172.100.126.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["wuSysjFvGBJCRUe2W/u+TEYTeS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OBIHKSg/CZsNeFfg4azF4+k/L3rPUR8TyxYfjwyBDTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:01"]},"IP":{"Case":"Some","Fields":["23.128.248.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::51]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["wtWb88DMTyPXGqgLUCj/G2MRH6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YMoY8h9BOG5gZKgC54kdMwd4j8SJE0zCOYXk1Xxw6bI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:33"]},"IP":{"Case":"Some","Fields":["86.200.196.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spagh3tty"]},"Identity":{"Case":"Some","Fields":["wsTJwOH3LY7ujfQG+AeNzldstTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/O5BYDJYm8RNbwsD7NzUzWGN9PXfbYNRnkTDMxBh8hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:11"]},"IP":{"Case":"Some","Fields":["107.189.13.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["secondTryFFS"]},"Identity":{"Case":"Some","Fields":["wrr4PF9vt74SxK+BY5lpGnU46vc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c2h+B/rRxdft/nmfsjdud7Jd0CAaiy/rqWzNiVwuL2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:16"]},"IP":{"Case":"Some","Fields":["37.114.62.88"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thxFreedomboxTorApp"]},"Identity":{"Case":"Some","Fields":["wrhnh+rjMdBHBoLmsO7TkOkGN78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xlzBRCj7M6SffuTXvDX0+1xV3KCz9RkzG+q720q7pOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:26"]},"IP":{"Case":"Some","Fields":["82.64.75.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:8e:8b20::8210:82fb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["c0ca1eaf"]},"Identity":{"Case":"Some","Fields":["wrat9O/qc8ou+yeJ4rdMEDTB9fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LC5ahPHeRuTk8yCZDShF1SijzAM5sS4BHNmT5HmEkts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:18"]},"IP":{"Case":"Some","Fields":["45.91.77.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:4ac4:42::704:c0ca:1eaf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor2"]},"Identity":{"Case":"Some","Fields":["wrRRmfxvmOIb+v4IMzSPKI+jN+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3qqB3wHdaT1F0eTLAGt41GSGP/IU6mCNS4xRC0tEbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:06"]},"IP":{"Case":"Some","Fields":["51.15.39.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:e42::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["wp/vakBecw3gfsdMzwYj2V8NOk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yRk9XeAHCK7ghaQ42TAZvPDNWWDnGjIGOWQ+6FGbV6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:38"]},"IP":{"Case":"Some","Fields":["185.241.208.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stNet"]},"Identity":{"Case":"Some","Fields":["wosIAIb2zzJ/asPNN2M7uR6QkhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RQiMFFwD7hTaCXsa9wQ4uMoJmujSqDiNLsluAXOEMA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:57"]},"IP":{"Case":"Some","Fields":["89.163.178.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erbse"]},"Identity":{"Case":"Some","Fields":["woIkhZfRyFIqKnUl5hyLd7vDdhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mdpDrGeuaE6C0N2dI4iF3P5sbp6/sdtZ0rqN+iCCP2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:54"]},"IP":{"Case":"Some","Fields":["109.70.100.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["woCMrAiW0KxO+q1OzUZ/4kXM/fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dUUg4ZjSl1QAGD5FrQEyGPdMfjKWAw6hdJJpLg4/CV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:56"]},"IP":{"Case":"Some","Fields":["5.45.102.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheRun"]},"Identity":{"Case":"Some","Fields":["wmVRclcVSr0AOGHyuRTjULARquI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3l5lOYUsoeczXDlfPxbqDIO7FEbhixoV+D144oIxmtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:32"]},"IP":{"Case":"Some","Fields":["81.169.186.16"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:429c:9600:40e6:e961:9cf7:31d1]:29001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1131"]},"Identity":{"Case":"Some","Fields":["wmTPfAXozG3H0i0DktExGx9/XiU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bf6M/H0vzXNDeEW+orLlP3N9TYVa9/2bv6DogIyrdak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:31"]},"IP":{"Case":"Some","Fields":["185.220.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[11131]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::131]:11131"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KeffalsIsNotAWoman"]},"Identity":{"Case":"Some","Fields":["wlWGQqgfTsH2eedCpR540pYgUxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rUjB9WXFsRxij6R1blcTA7Sm8oxYvy0qbwIuZBMUER8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:40"]},"IP":{"Case":"Some","Fields":["194.76.137.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:803:2::18f4:a2fc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FaerieOnion"]},"Identity":{"Case":"Some","Fields":["wk8i1CnRZ2fokj34d7pogQqYOTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7T3PfnRwOK5OmcP8IqMH20wQjWkY2KbvEmRSjBMx6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:04"]},"IP":{"Case":"Some","Fields":["119.17.158.221"]},"OnionRouterPort":{"Case":"Some","Fields":[15151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra0"]},"Identity":{"Case":"Some","Fields":["wkb9nfHDlzCqZOMUylqknM4Ihx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0C0qOtzJ+zkNcEKt14YZIrkBCS6bKQzZSe0NE5dBdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:59"]},"IP":{"Case":"Some","Fields":["185.165.171.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShorTorExit"]},"Identity":{"Case":"Some","Fields":["wkUFr+Ra0CfYIFp+6izaNxdZ1f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PV8kMucV5tupSh5MbmA+cJPiArlPP+N4S+VFtjpJCgs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:19"]},"IP":{"Case":"Some","Fields":["128.52.137.59"]},"OnionRouterPort":{"Case":"Some","Fields":[5101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["downstairsfull"]},"Identity":{"Case":"Some","Fields":["wj8TDrkbJF99tslLjasLUa5pCn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbdZ7oxxHP18gLUm0Il0QMY0kWrzCFWYNHozDatzwf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:45"]},"IP":{"Case":"Some","Fields":["23.137.249.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:212c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pacoCalienteRelay2"]},"Identity":{"Case":"Some","Fields":["wjc5LcEh31DGTHB8P7lQVeaLAMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uHguJkeeFLDQix9LDwO/xe7oZ1jvlMYP18t6vy+zGDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:57"]},"IP":{"Case":"Some","Fields":["51.15.242.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:654:1a2e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv11"]},"Identity":{"Case":"Some","Fields":["wjSZtikj0mOwy0DEyMRcPrJd0bQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wvyfOlMhsJHolrM4GTlcZoh5j5NmfTZ0kWPSmftONv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:47"]},"IP":{"Case":"Some","Fields":["162.248.163.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrankyThePooper"]},"Identity":{"Case":"Some","Fields":["wipZH/TuV3xAja/SbHUwJhXlFl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MP9zE3AI3RVF5my57QciNVaAhXCOmhrQkFMtw8QvVwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:52"]},"IP":{"Case":"Some","Fields":["82.223.23.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8188::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AwesomeTorRelay"]},"Identity":{"Case":"Some","Fields":["wicM4Vzi/8Yp4JIySSKbEN9OVR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lfyQKK9jXETMmc4HjPEqeA8TKElEYM0yavpO/Pp+hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:38"]},"IP":{"Case":"Some","Fields":["185.217.126.97"]},"OnionRouterPort":{"Case":"Some","Fields":[666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2069:6284::1]:666"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smortSmall"]},"Identity":{"Case":"Some","Fields":["wiTolwuy1E685RMcEaraNdgRzKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wuU15RLFKKFhDmrorXe0xK/5uhqZuK0pAt+Ws/iC48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:16"]},"IP":{"Case":"Some","Fields":["194.208.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["whipEM70PvXkufyfICan2jlY2fQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CZm2H7eu8pyobs9B+K7co2C0nO/qAvEqtLNiGEYaWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:35"]},"IP":{"Case":"Some","Fields":["185.220.101.46"]},"OnionRouterPort":{"Case":"Some","Fields":[10046]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::46]:10046"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreifunkIbbenbueren"]},"Identity":{"Case":"Some","Fields":["wg+j+smGfduMfAZyTN5hSqNkZGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n2w201lg4s6+aiQe+ktjvy8YI9Q2aacqWGuE6fWc+Rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:06"]},"IP":{"Case":"Some","Fields":["92.252.116.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ylxdzsw"]},"Identity":{"Case":"Some","Fields":["wf/yejjfjcizENB4wT4j8ICvKVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1DleviF4u4ymafSJOJPN38PVCv7vgDFarbmsDVg6+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:11"]},"IP":{"Case":"Some","Fields":["207.180.198.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2028:9179::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["46620"]},"Identity":{"Case":"Some","Fields":["wfcpNbGjKarJIWEBua7wvIhdbkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n3AMX93w3Ka2BdZNFVXmOTAy8I/2cCId4ZhaYjp7Qdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:10"]},"IP":{"Case":"Some","Fields":["209.222.4.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["satfreaked"]},"Identity":{"Case":"Some","Fields":["wdzEcMgPbXAsXtEVFZNkRL06AlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnC2sL5v+ZlrBk6agLYf2I196Fp0doevCrww61BVn+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:12"]},"IP":{"Case":"Some","Fields":["86.86.173.62"]},"OnionRouterPort":{"Case":"Some","Fields":[15020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickodee02"]},"Identity":{"Case":"Some","Fields":["wdS2cOim5hQAPedc7M01q+fDmX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["41P3V0hTir5c8JSygUMi7n7X0DocT5UbTbdT9iBiK04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:28"]},"IP":{"Case":"Some","Fields":["195.230.23.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay14at5443"]},"Identity":{"Case":"Some","Fields":["wcpOYD8VLoyG6GT0+/EWKjv99Yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yUxHH9z6NpjLr7xwkJwl9zQ/SNUbpRKb//mA9rso0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:41"]},"IP":{"Case":"Some","Fields":["140.78.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gofasttwentytwenty"]},"Identity":{"Case":"Some","Fields":["wcpFeg4daeXJpLfruXYEOv8k57c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKsDObPw3ldFRfuBtcXI7LGzXw7q2NZN6qQ/JHDIofk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:40"]},"IP":{"Case":"Some","Fields":["94.140.114.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay654398"]},"Identity":{"Case":"Some","Fields":["wcomQKsncubdmOwAFgbu9J7BKxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m12ygkaT5wZhmWA6L1GVZznRjARabqWXrrVZmMSgwdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:59"]},"IP":{"Case":"Some","Fields":["85.195.214.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9842]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pros2"]},"Identity":{"Case":"Some","Fields":["wbtn0/vtaNS61ADRpJxbeezjll4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3WMX/8kd0tvGEW3MQ10uYmTJ9zSbnRGK8HFgO/8UzkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:44"]},"IP":{"Case":"Some","Fields":["45.58.154.219"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MapleCrew"]},"Identity":{"Case":"Some","Fields":["wbjGiHhnztJWRFQFj5CCMR+vGsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kz9ak49CvQYDj2iuJzWUR/ujORoSARISNsxD/w8OxKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:07"]},"IP":{"Case":"Some","Fields":["192.99.35.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenSepia"]},"Identity":{"Case":"Some","Fields":["wbav4YxvZWMaTvZ+GhkYtZMW9Z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lY8KUv1g60GLhTYXbWiK62Pu53VUy+QsvPg239QZpc0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:32"]},"IP":{"Case":"Some","Fields":["140.238.34.159"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a1]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FJB"]},"Identity":{"Case":"Some","Fields":["waIhJPxu+4sqQHky77bxljBgqFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JUbPsGTLlHMvJvTft4mnqLPE3Bhiavo8CDEgXQBEgE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:31"]},"IP":{"Case":"Some","Fields":["185.204.1.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTIWith3"]},"Identity":{"Case":"Some","Fields":["wZ+7wllT2qeviTQEi5ebkd7mTrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eEvRRkbUqT9Z5X59+sohaFoDaskV3E5f4zLY+yTHY0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:32"]},"IP":{"Case":"Some","Fields":["82.221.128.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaynig"]},"Identity":{"Case":"Some","Fields":["wZjUPD8y8u6icrvGjJKAPvmr7JY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kUE2lccsfUyqBXxehcFVFt/KR6K6LB7SopZBGxOyg5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:40"]},"IP":{"Case":"Some","Fields":["209.250.242.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5001:3498:5400:3ff:fee0:21f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Symbolic"]},"Identity":{"Case":"Some","Fields":["wZfZ+h4rYppd2C0mhhwD2he9Rp8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLQk33LMbCaZOei+Vt+eCjGbun+xm3oFsnqifZg6CRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:32"]},"IP":{"Case":"Some","Fields":["87.98.243.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay10L"]},"Identity":{"Case":"Some","Fields":["wZOdNmSd6YogJCljHY78cBKNX18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTZpdxjVRYPdE0ln4y8riOC3dhoJdRUrONJySImsfso"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:28"]},"IP":{"Case":"Some","Fields":["178.254.20.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AussieOnion"]},"Identity":{"Case":"Some","Fields":["wYQeS6fEoba6AS5DIFcKvvZtYLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/iG1ZqUOVSosrKjsCIQtemNjmkgCn6beIFFhdDVHXlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:41"]},"IP":{"Case":"Some","Fields":["124.170.32.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bwbtor1"]},"Identity":{"Case":"Some","Fields":["wXYoT7YezIdhoG/Oq0mNqEhRmxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAhGxSA16Ycv/SIjNPfyBloLljVInerkpKXXImadv6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:20"]},"IP":{"Case":"Some","Fields":["185.130.45.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:3:1ed::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UncleBobsRelay"]},"Identity":{"Case":"Some","Fields":["wWnlR7NVlwhQNbEc6KaeRDRagu4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MElkKwS9n45n5mM7k7elALtX+o/48LDb8yo57/VAijc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:33"]},"IP":{"Case":"Some","Fields":["24.230.61.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberdade"]},"Identity":{"Case":"Some","Fields":["wVxnQQG2arsW6GkT9oMHGmPX1tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hwwr9XAsWqYPVlSYYJhKoymPjZDWlYdUDc2XfiuVwNE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:32"]},"IP":{"Case":"Some","Fields":["20.206.84.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainyValbo"]},"Identity":{"Case":"Some","Fields":["wVqL5GoAJTccPEEkfPiRGtgqehw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kgj6nDLVmeI5SGSopRQe0+Axq+p+VUyjC9wbtSVU8o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:37"]},"IP":{"Case":"Some","Fields":["213.141.71.102"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNewRelay"]},"Identity":{"Case":"Some","Fields":["wUABbUnMtnOm5P4ZMpOxoK5EayM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O/vo+C7dedHqaVfheuaJuPXkeHCohOrDh2waomlzoPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:16"]},"IP":{"Case":"Some","Fields":["185.194.239.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::2f6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicTor3"]},"Identity":{"Case":"Some","Fields":["wTCg2MGCIuahCNZc24n4+z8pvD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HP64AC2LSEcmqGc9rXVEQ5ry8jJNpwqA3PQU31G58qM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:13"]},"IP":{"Case":"Some","Fields":["31.42.186.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jbktor"]},"Identity":{"Case":"Some","Fields":["wRxy9+C0m5K5xOrVIjrHQWPvuxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RkSqg9w5g7ojU6GnKmXFhf6emi7vY8/JLkzqjtwQVt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:38:04"]},"IP":{"Case":"Some","Fields":["93.181.1.9"]},"OnionRouterPort":{"Case":"Some","Fields":[62306]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["azbycx"]},"Identity":{"Case":"Some","Fields":["wRVKunnYlZW4YcnJeU+I5oOW12c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uilz6ub7uXRiANVYNSIMfy9RmlL0985P4IhJsBfsdmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:50"]},"IP":{"Case":"Some","Fields":["167.86.85.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2025:1163::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonobo"]},"Identity":{"Case":"Some","Fields":["wQSvmgfvN8y2K7BITSGSf9spR3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5NJPv+YMo4f6W5hn0RHlUjAu2jIE0xjx8lJX6dC9JZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:27"]},"IP":{"Case":"Some","Fields":["109.70.100.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GASERI"]},"Identity":{"Case":"Some","Fields":["wP3UOeeMPUuhQXMkfoS7aNB5ewU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/v9ohyvI9biJpNw0iyDE/IuqdW5l24fyIVtbQXgpWdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:37"]},"IP":{"Case":"Some","Fields":["51.158.166.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:39::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rittervg"]},"Identity":{"Case":"Some","Fields":["wO2wjXVA0d08ppgJ7RfZefUbZuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["soLGvWWq/KYuKR0V2Znt0Zzbd8AX1cpU/vH9EaH/r2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:11"]},"IP":{"Case":"Some","Fields":["97.107.139.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe96:d927]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["snowballer"]},"Identity":{"Case":"Some","Fields":["wOtZN+O4qi63GH6Rf75tphKjbPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L/DIuNISvOoEoKSrPqoIvtrkKhZoqTv/HOUhpqO1oAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:06"]},"IP":{"Case":"Some","Fields":["192.184.93.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cupleak"]},"Identity":{"Case":"Some","Fields":["wOpuwjeWXyLVdSECiLi66s6dVU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S5AosvyIEOp3ScFJEP5HZy8znqn7ozpW+8Vs8YXf4X8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:15"]},"IP":{"Case":"Some","Fields":["45.90.57.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9406::33]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ytm"]},"Identity":{"Case":"Some","Fields":["wOn+v0cEwdvvNsiXIFxg2FrCqPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ONF2bQIwuFdn62koeKVK0BdsASjEazYSo8YOBebtSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:57"]},"IP":{"Case":"Some","Fields":["194.36.89.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonbephomet"]},"Identity":{"Case":"Some","Fields":["wOczShgRhKvQdpjQStwZ4V4+4YQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHLs85ryiC4SJzRpC2V4NVOAqN3h4uH1pniONKAzTqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:59"]},"IP":{"Case":"Some","Fields":["185.220.100.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:12::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomForParrots2"]},"Identity":{"Case":"Some","Fields":["wOamZwZDhbnLWmhc6wa4Xt2mqgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kciVPmkkZI6rRmB3SyKKWcX/I4MH16+CAUqjtKw7huA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:08"]},"IP":{"Case":"Some","Fields":["77.123.155.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thauriiya"]},"Identity":{"Case":"Some","Fields":["wORGO1PzPT8m0RJ8iG7o/l41/Ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iKAMvqQfmjD8VX73UE82Vx4ZTLLCgLGmZY2sIqTvXBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:52:29"]},"IP":{"Case":"Some","Fields":["108.26.0.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mitsuha"]},"Identity":{"Case":"Some","Fields":["wNqq5e5GG74TlF/ktS8yq9xrw3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6bBmx2faqljDm9/xCloRYTiocQAbEn+Don0d9TopELE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:39"]},"IP":{"Case":"Some","Fields":["51.15.246.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47b0:1756::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinha"]},"Identity":{"Case":"Some","Fields":["wMiGSjf6aB7Gdw3cvP/v/+hUySQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fKiXf0Dr81Nlg4lYUmrx9cofsn1zFxEYL8A9ttjZK+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:00"]},"IP":{"Case":"Some","Fields":["15.204.141.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit2"]},"Identity":{"Case":"Some","Fields":["wMMAvC6EpQPU9Rpq1js/a/PhEsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hlmlFPstQWUvHAsosgF8a5prMVU9tAmHusOwx1hIHxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:59"]},"IP":{"Case":"Some","Fields":["185.129.61.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["wL2rZsCaMZMx1HPaDhK9XTUFCv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCjv52qfy1SeKqXEZMSjlnSDQ45U8DeNDuV6n6ZCS7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:03"]},"IP":{"Case":"Some","Fields":["142.44.203.139"]},"OnionRouterPort":{"Case":"Some","Fields":[19385]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twofish"]},"Identity":{"Case":"Some","Fields":["wLq5LdGP+D4xXMEUI49xz254LWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t6QVm0AmBiS54hbYXMwbPIooDUKypjBYVRx7/txspSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:53"]},"IP":{"Case":"Some","Fields":["164.160.129.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["wK6robVVGf5ThKpE0DEr6YIW2nE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P6AbVcRLa9EK8a6fGywEj6wwK/NSgMch3oIAcFjBdzA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:06"]},"IP":{"Case":"Some","Fields":["185.220.100.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:14::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["wKsyTaiS7WWAASxPpMJZov/HfpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uBx5+bfFca5byrfutd5cx+LYxnuerEX3fKqF7tokV/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:10"]},"IP":{"Case":"Some","Fields":["194.26.192.186"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber12"]},"Identity":{"Case":"Some","Fields":["wKhnCdSuOOh5QmVJZg4a0YzFAM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aVsUIkToBXuHEu07NfJwkvJ63+YVGSlPMwaJkiEVrbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:29"]},"IP":{"Case":"Some","Fields":["185.220.101.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::6]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YAVTR3"]},"Identity":{"Case":"Some","Fields":["wKLL3a7CsfygeczcYm56BQnnl8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lmr0TFsMsTChAT+1SQDVK7/wWFhpGDr2wsnCc4Rq3Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:54"]},"IP":{"Case":"Some","Fields":["45.83.233.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOnionRelay"]},"Identity":{"Case":"Some","Fields":["wIpbxQS51uzOKqLuUeaRJaOdBZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/7rXZ7b5iJ8z+SKdphxP0NEdRHHuLBybE89XuBvKFk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:54"]},"IP":{"Case":"Some","Fields":["176.123.1.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::3f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PCGG"]},"Identity":{"Case":"Some","Fields":["wISM96F9SRePcJOBKFIfCbwimEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/siHPVrOPF9S3HHE+7JHlhJLOMbjnFwLMiGrGY9a2Xw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:09"]},"IP":{"Case":"Some","Fields":["124.187.101.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hera"]},"Identity":{"Case":"Some","Fields":["wH3KCyMb4FVKtNV0rAV8dXK9bvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yt9UpunZ/iAHpj9G1XTnJ8m3SWA/f+HULjCAjveQoLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:09"]},"IP":{"Case":"Some","Fields":["185.232.68.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4e:c87::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmallStupidDonkey"]},"Identity":{"Case":"Some","Fields":["wHvW8gwqURDhXWPksWqY/1fQv78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7rByHopIGBurdbHX1pS6yiuAz0P0rcKAGMxuOb7PDKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:31"]},"IP":{"Case":"Some","Fields":["37.1.220.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["wHBE5Fl5N9U0OMtTm1jas4xrkQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pLtByoEwLtsH2INuyS97aChNzZ0FBgxEPAXU7KMBsV4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:47"]},"IP":{"Case":"Some","Fields":["212.192.246.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["wF3Mh9dmfQjuQ3DWzbjL624LQxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/lSS1F89/BoQwXmYlzmUzlFAcab4g58/QC4fgTmTYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["185.14.97.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:14:97:0:176]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["endthefed"]},"Identity":{"Case":"Some","Fields":["wFbZiHyZno2dtDzzAOH3On4NHXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["exlQEt0eKUvbxlL2QkxBc13CwaHzawDia3xYGvS15sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:55"]},"IP":{"Case":"Some","Fields":["46.165.253.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["toritoinfinito"]},"Identity":{"Case":"Some","Fields":["wEFwccN1SIUpb0pZNawbwcq9vDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i5tV34VxRvG6XZEe5zW7E4CP45Eu/aNJduXevzVH3Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:36"]},"IP":{"Case":"Some","Fields":["187.207.96.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2806:106e:19:2f73:2ca:5aff:fe00:2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay36at5443"]},"Identity":{"Case":"Some","Fields":["wDYOtmQBe4Mf9z/ipBoVTOJk+sQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8RlQYc50PyUet7HToEWx5ZEQdtS2JDKvvS/g1LF/Z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:37"]},"IP":{"Case":"Some","Fields":["140.78.100.36"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobodysawmedoit"]},"Identity":{"Case":"Some","Fields":["wDOWg6qLzRGySY0Zf8frnQd1if4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DKdtxERSJFV/LnDA/3ZX43lrUHYUpAQTEyH9ss9RyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:48"]},"IP":{"Case":"Some","Fields":["82.196.8.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid4"]},"Identity":{"Case":"Some","Fields":["wDIJ9UvCmZJ8p1gRR0NPQ583yss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOaXwfcKQnNLsiOJiwwROGIn9Hyth3b1+wMb0zo9b7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:59"]},"IP":{"Case":"Some","Fields":["94.142.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::2]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["manipogo"]},"Identity":{"Case":"Some","Fields":["wBkv9D53clAIQXX05ZrBuiKQzjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9y29ZAh9ktmSSQwCi4tZlMYQrnenMI4lYndKfgd+eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:20"]},"IP":{"Case":"Some","Fields":["192.160.102.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::9]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["striga"]},"Identity":{"Case":"Some","Fields":["wAySYSTJ3MZkeWSTG1a9h0uTHo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["882lWeuzLmEFXyuX0w4lQkr3LVP8fPe6sy/9WanRkd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:37"]},"IP":{"Case":"Some","Fields":["23.250.14.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ufer"]},"Identity":{"Case":"Some","Fields":["v/c6X5AOl0n7opI6/ELagDokp8o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["etEDlaf/DWD6hgmk4/2VVA3e1M+ko/H7wznOUWLkyfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:23"]},"IP":{"Case":"Some","Fields":["45.35.85.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MazeParadise"]},"Identity":{"Case":"Some","Fields":["v+qovpBIRg6X3jg88Tlp0d+mML4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tRKViY1z5U7yTqxDrLP/we842nimPINXBVJTdR6esVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:02"]},"IP":{"Case":"Some","Fields":["176.126.70.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xangaen8"]},"Identity":{"Case":"Some","Fields":["v+QBQ7IsUPQmH8EHUGM/FzHuDEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ixqs/D3zRYikrigap6R2c3HVGyLEGB4oeUGrvi+5abU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:24"]},"IP":{"Case":"Some","Fields":["77.191.228.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["v83nxE3I8iIhaqz/RtPijXItMtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I2XnISSrM6d9SxNdPa4NPrqJ4o6byMCT1S7ha/9UDC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:30"]},"IP":{"Case":"Some","Fields":["62.80.227.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk12c"]},"Identity":{"Case":"Some","Fields":["v8bn8pjVgTRN/Olbt+6e3h/AdFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R51BPmzNeq0hh4tfNqfPsw3HYKINz31MkWmxRDgR+bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:58"]},"IP":{"Case":"Some","Fields":["163.172.182.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:63b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antifaang"]},"Identity":{"Case":"Some","Fields":["v8QEQRkIDYvucCGJeO6Dw/wWrno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XExWnanlxajrMikuuDazkx+++93y33ZeOp8BN1lgKBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:35"]},"IP":{"Case":"Some","Fields":["78.46.123.26"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:62d9::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ckaket1"]},"Identity":{"Case":"Some","Fields":["v8NGn6VX2nYX5nSKMeis5r2Rl9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zp7U3ArCzg8afwoZh6Im8Gpg8qnEZif/keYRv97vdcs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:16"]},"IP":{"Case":"Some","Fields":["85.239.55.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:10::28fc:a3c7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ncbanerelay"]},"Identity":{"Case":"Some","Fields":["v8EwXIs35RYcLjcTXfLU5TzDis4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bh91YjQsHFeRRO7FsfPY4lYQIEPBz/R4vgAufeuUis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:49"]},"IP":{"Case":"Some","Fields":["188.68.46.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:22:62::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["styx"]},"Identity":{"Case":"Some","Fields":["v7OZlN7nTSOx5p7OcCtxbOE7Qco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvWC+dWk8xptVPqmF2pKprP6qpauCncQMVOh6/1EjfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:56"]},"IP":{"Case":"Some","Fields":["130.149.14.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justSomeBoringRelay"]},"Identity":{"Case":"Some","Fields":["v6clgRr92Jw9DO7Ewjj5cugtFxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rpTUQV7wXEk4DTPBrCDAS4cWTHGXy0Tb4hEFOVILs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:59"]},"IP":{"Case":"Some","Fields":["77.242.78.127"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chfarley"]},"Identity":{"Case":"Some","Fields":["v514EAQ+MlxPMRTipmtRmMRDn3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0MXJkK4y6PtxiT1h3TVQKj9VnX9L3so/FjxPwdwex0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:35"]},"IP":{"Case":"Some","Fields":["5.135.199.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["labaliseridicule"]},"Identity":{"Case":"Some","Fields":["v5NZQ4SgLedonE/YIeJjjaLNR5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3BBnQQHteMQOcKhkxcTqPAkjg5FLnrNHnJHWwywcxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:40"]},"IP":{"Case":"Some","Fields":["95.153.32.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["partybitsys"]},"Identity":{"Case":"Some","Fields":["v4Yc6Uo9I75MGdXfdX/goMiwivA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z0oaE1Ik0KrAvp5H6QCKUV5uVonEhzVo6DoXET4ZlwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:03"]},"IP":{"Case":"Some","Fields":["149.56.64.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:120:176:146::69]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff2"]},"Identity":{"Case":"Some","Fields":["v4MMaMt3CR/jcF0WSHBNCuORUqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kGUoc54klcOAmemqCpMhKXSkqLBGo7xTDQFnlp+hNvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:52"]},"IP":{"Case":"Some","Fields":["198.98.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["v4Ah0uyKjcck012VkPn+8lHwBtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EGCTaoGYjZEUPSHtnRpduI8NLRrNdCYyNqRQ9MPg4tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:21"]},"IP":{"Case":"Some","Fields":["104.244.78.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f046:56c4:177b:1cd3:5449]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iDIDeditheconfig"]},"Identity":{"Case":"Some","Fields":["v30QyB4aHlv15rA7FezGwp9moxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GDO2Qji1k5HUOaTHecHw2SesNX+0mkmg/1J1yMecXjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:10"]},"IP":{"Case":"Some","Fields":["85.234.221.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:578:85ef:f00:91fe:cafe:91fe:cafe]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["covfefe"]},"Identity":{"Case":"Some","Fields":["v3opxnsFAs8wgrEzK7+8q6rFUNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AcJwkL/Rmk5mKJ3oRaxJdKixh4Vqbe2uR/4zfXTrGDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:44"]},"IP":{"Case":"Some","Fields":["77.58.104.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:470:5179:1::233]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange018us"]},"Identity":{"Case":"Some","Fields":["v3FoYjrU/1QqnpQMTM9XXZvhYyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5oOPc+bMYSRAHVJg8R2e8MEEVEkX1c0I2eP4Fsh4x+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:38"]},"IP":{"Case":"Some","Fields":["193.160.32.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lenny"]},"Identity":{"Case":"Some","Fields":["v2+EFaVyWb+3yHjElWxon7fssko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9IvLq243hNYuKTHsJPOlxFGFc2FvB3m2Tz0GIOQEKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:47"]},"IP":{"Case":"Some","Fields":["91.67.204.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:810c:4040:20af:6749:9bc5:a9fa:c730]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["v1wMXTocZlT+ul/2awBzTfBz21A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["11iuQjy9GR/MNADKUKz03HTt80u+uLN4CqG3XNLHbZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:34"]},"IP":{"Case":"Some","Fields":["142.4.209.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:60:e1f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["v1bHOJTBPyHZjJzT5Zv2rZaOAds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["25K+5+3xCVtu1ULMIow5KCO69FLj3lxAIC8sbhsDdDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:57"]},"IP":{"Case":"Some","Fields":["95.214.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transliberation"]},"Identity":{"Case":"Some","Fields":["v1UnnnWgQbe87o4s5SZ7nMi9H6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gb6s3krrA+yI8I6syJZhNyApMYRJpUMJLQljNXMyLW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:42"]},"IP":{"Case":"Some","Fields":["46.226.104.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe97:4d5a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gesdm"]},"Identity":{"Case":"Some","Fields":["v1TuMZN1FIFXm6fMfY4d8KAa+zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pWoD+PfM7aHkuHPcbOekt6h2wfI1TjBvVidj08qVMwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:05"]},"IP":{"Case":"Some","Fields":["18.18.82.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LupusreginaBeta"]},"Identity":{"Case":"Some","Fields":["v1Dgnu0luChhz5XhqqQtz+9T5dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["THC8BvdOws/69/ysAdhLbcK71PmzBFQH3NAgDosgZ/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:12"]},"IP":{"Case":"Some","Fields":["213.113.4.171"]},"OnionRouterPort":{"Case":"Some","Fields":[6881]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cordel"]},"Identity":{"Case":"Some","Fields":["v0N1Kp83U40E7FwyLVhX/kjl19Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AULA5PIjs3y1udhkV/HYnJibky3J2zoqsXTgEUIp9N0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:28"]},"IP":{"Case":"Some","Fields":["45.136.198.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgDE"]},"Identity":{"Case":"Some","Fields":["vz9vvbNcm4TxWKLKkW9ZZf4J2l4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ESpKMpDSsZ3WgxmM9FS2DHFga3jG77tDymwOYeXcJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:05"]},"IP":{"Case":"Some","Fields":["212.227.182.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WodRelay"]},"Identity":{"Case":"Some","Fields":["vz6bl9POQJn3OqS9cMoUtjX6POo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1G6AtDz6EqT3F3Upa/5pvJCjoOxcyqVBjqPevM2oawI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:35"]},"IP":{"Case":"Some","Fields":["70.120.126.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AkisTorNode"]},"Identity":{"Case":"Some","Fields":["vyVXkQAGAudKvi2pMgQdZNTtVlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYbs9xddbZiYiYjpwF3gUDIuQuutZ+1KsNXVitH8oeo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:49"]},"IP":{"Case":"Some","Fields":["31.19.81.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["34b666a42d0b46"]},"Identity":{"Case":"Some","Fields":["vx6+6gSgwNgIGLK0Z/28ah8KHsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AyvOrb2dyYAhiJJ81IsFE4cZWnhciyvp/kG2fGa6Reg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:57"]},"IP":{"Case":"Some","Fields":["78.47.62.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:317d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e2"]},"Identity":{"Case":"Some","Fields":["vxtmLR2k5V9wDBMKxYV0tH+3644"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3647N1kvzuHEEz0Q8/xVI2KRtOEADSrsOdQ3hkMMCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:02"]},"IP":{"Case":"Some","Fields":["195.176.3.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::19]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chimerazkp"]},"Identity":{"Case":"Some","Fields":["vxsb/5F7oOjXnkse4z5e+dGpmlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8lIR9iNKE5Cb0Oap1SgluBs0ia3xSs4RK0MaDB33Fhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:27"]},"IP":{"Case":"Some","Fields":["83.27.199.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erwinsrelay"]},"Identity":{"Case":"Some","Fields":["vxp3W3KC7DH8r444/JPR/sRDpWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1boEtIg9FlpsRu/+vI1N/aWrusZdIyBe8Ufu90iFc6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:40"]},"IP":{"Case":"Some","Fields":["82.77.238.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wolverine"]},"Identity":{"Case":"Some","Fields":["vxVc0uOKojBrcteJwZUsg3PEkOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJ2onvK9er9WG5wyZmW4XUsPg7/8l5UmMeV3j/STkDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:48"]},"IP":{"Case":"Some","Fields":["144.168.44.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quadhead"]},"Identity":{"Case":"Some","Fields":["vw+1guN/c4zTPDZREl8ncnBbuOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MeVgQyZXv66t6ddpTCY0zhgYf3F6zYEsBF6vofqgMSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:02"]},"IP":{"Case":"Some","Fields":["148.251.190.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:c68::2]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lwbghtwox"]},"Identity":{"Case":"Some","Fields":["vwD2KP3h8yDg2pR/Eye5o81ySNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JHxSrOwUVjpr4mVYCNRZXyAdDRuPMo1797tt3Vsqsgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:47"]},"IP":{"Case":"Some","Fields":["94.75.237.68"]},"OnionRouterPort":{"Case":"Some","Fields":[42842]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oranet2"]},"Identity":{"Case":"Some","Fields":["vvsAv6AHswOeiUONi6SimdCXjUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VOLU7KsJXdlrcTiue4xjsLfeI4NtO0/+3kcq1CzLdlU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:03"]},"IP":{"Case":"Some","Fields":["158.101.160.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman13"]},"Identity":{"Case":"Some","Fields":["vvmDHMCzn6lvYQrTpd590mqo9R0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L7Kz4XZbTdsFWAzgbyFnp5h4TRq1E06k3yEjsvbun7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:30"]},"IP":{"Case":"Some","Fields":["23.137.249.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:26c3::1]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OrbotRelay"]},"Identity":{"Case":"Some","Fields":["vvHjk5GPxNHTUIT/k3Lmylt4edE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqdIb7iepcOTSuvaj1XhwSH9Ye0Qd/yjl7OmskfpG3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:21"]},"IP":{"Case":"Some","Fields":["85.228.183.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["vu0obz5BYVX1y4vJ1ONLoijydLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fN6qpgu0WCdrSStZmPFPNTvABAM+SEB2JTZiNFzZqMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:46"]},"IP":{"Case":"Some","Fields":["70.52.10.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vuBx5SGkfHQMn2GE/rz3i/9fEnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8L2T7p6S8uQZ5iocBPkiWvbjaDAIJZfuQtw+BALD8Qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:32"]},"IP":{"Case":"Some","Fields":["185.220.101.34"]},"OnionRouterPort":{"Case":"Some","Fields":[10034]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::34]:10034"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Leg"]},"Identity":{"Case":"Some","Fields":["vttY24sjhh7zXL7DfGuO+3pxaXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r4jjF+3jtWisJ9WYvkQSHxKMHLaEpJGKFiGfUcBB5u8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:14"]},"IP":{"Case":"Some","Fields":["31.3.135.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["node1"]},"Identity":{"Case":"Some","Fields":["vssASvHncDT1qre3B0zohd1orO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dE9df1ePISDSUttR3SECFmsqbPst8LfXGd4uFnIAv+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:41"]},"IP":{"Case":"Some","Fields":["95.216.66.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9119]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:2c5::2]:9119"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["vshUJL1COXXhHtBb9P6rOnUmUQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m/q8FHxJD0G5EEvwToZQLhDDYzOb+EGPII+55XkRRrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:37"]},"IP":{"Case":"Some","Fields":["220.233.73.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3400:240:6d01:6db4:1a6:1f94:100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kwasikof"]},"Identity":{"Case":"Some","Fields":["vrw3CGsiUEwuquux3C6ERHpSVEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WD8WXUorLzwi+3bC/eMDfYYEXeYbw8pGwVx2sFW35c4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:27"]},"IP":{"Case":"Some","Fields":["83.150.4.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeAssangeSnowden"]},"Identity":{"Case":"Some","Fields":["vrjiR02NswdgfciwG1svPflUdFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mTNzC+Y1r2M6lYMhgdoBtbwmMAeF8U22RquJatPFrQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:34"]},"IP":{"Case":"Some","Fields":["104.167.241.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NootkaRose"]},"Identity":{"Case":"Some","Fields":["vp6lNKZm5rng9RBH8YyMkQ66dHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KjFT6Kl3/LBbJoc3vGzHG1ncq8UpEWdDF03VeF36w/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:31"]},"IP":{"Case":"Some","Fields":["99.199.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[55003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toroQQ"]},"Identity":{"Case":"Some","Fields":["vpe2ibbnqUEXeJ3Z+Q0ehML5EVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5BXST6BHXON24UX2stSBUKLLaR9M9r0tDj/htDgqjhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:42"]},"IP":{"Case":"Some","Fields":["96.22.210.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["vo8490GDr4xsX+MyWovntiJb8j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nqdukjp06QVhgnz8Yclnv3Ih68SIHepQpbgtQT5R6Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:22"]},"IP":{"Case":"Some","Fields":["74.208.37.237"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:31::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["supersingulardog"]},"Identity":{"Case":"Some","Fields":["vnvCeP354QY3ZM6FeyhyDE2O+bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4tXhiV6ski/pF3I8Tw+zOkwn9KsHVedFjTt2VV7xnfo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:00"]},"IP":{"Case":"Some","Fields":["209.59.144.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Sideswipe"]},"Identity":{"Case":"Some","Fields":["vnb7tfjRBx2/7XfFQxUMHJ2KIcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Ihot96fir2sdIIRthc3FdYA50pz7QZiRONACO5ziz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:47"]},"IP":{"Case":"Some","Fields":["213.171.214.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongHoldMonero"]},"Identity":{"Case":"Some","Fields":["vnDOIYG9OmgvxNre7mrHX7wWOoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cfj26BzvrhwrLvaRv/Ic5Vm3KpZ9GqvokWyUy89Qy04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:58"]},"IP":{"Case":"Some","Fields":["195.123.228.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubHorizon"]},"Identity":{"Case":"Some","Fields":["vk8y761ZGTKWOguocPkTo8v+3T4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o/WRajvrMZtAm75yq8AXVLSD7MrPA9mb4fdSF68k71Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:05"]},"IP":{"Case":"Some","Fields":["103.9.76.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ledgh53"]},"Identity":{"Case":"Some","Fields":["vk2OlfOPM1hAplA4MnH6imDLpYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+c1gvDKttOcq+gzcPp3xJ7p3LNwysdI86aYDlfUhvCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:45"]},"IP":{"Case":"Some","Fields":["188.68.57.225"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f832:38fc:feff:febb:5c26]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeeJin"]},"Identity":{"Case":"Some","Fields":["vjuQJKDrvnL/ISl5+2lfxhF+HvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8oxQW/AwxMQU/KEiZzIURbzBFu/kt0ZOrYLSDm44R5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:09"]},"IP":{"Case":"Some","Fields":["223.25.69.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NerdreichRelay1"]},"Identity":{"Case":"Some","Fields":["vitouLiL/DUzAjYNWKz5vZupgCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wKEkbrz/GoQW21RF0mZlRIfsh8DcxYGlfsKr3jNJ+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:53"]},"IP":{"Case":"Some","Fields":["89.58.3.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:e6a:d8cc:e3ff:fea6:f015]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MrOnion"]},"Identity":{"Case":"Some","Fields":["viYjWKkbeupWiT6B33a1IgTE9ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RuuOAb55nSF+ymr+ojVHJIqCxBdT9SqgEihv12bWQuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:42:47"]},"IP":{"Case":"Some","Fields":["134.122.27.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::21a9:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayDebianUK"]},"Identity":{"Case":"Some","Fields":["viX1KBUnpzkdU0TuLtkJUD5t7mE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R5pdG86z4eMkXIyyDYikxtq2CA9+2bXbnZ4samAT874"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:52"]},"IP":{"Case":"Some","Fields":["81.134.36.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justAnother"]},"Identity":{"Case":"Some","Fields":["vhEU0bQYlcLWfFlizjVq5onODNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["derd2peI9IIm4UtUBLZaw640F7H+QrEiFTduJULjiJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:08"]},"IP":{"Case":"Some","Fields":["135.148.54.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrgaVPS"]},"Identity":{"Case":"Some","Fields":["vgdSH2a8xDCDRFtqsWjt62u/SvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vYAHrCFpduir0nnbS4UNz1yr35eKlKrdDWKLLkHXJ0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:58"]},"IP":{"Case":"Some","Fields":["212.44.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["r4v3nrelay"]},"Identity":{"Case":"Some","Fields":["vdCdXbeCtgI3kdv/1G8QCx8COrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RS20mzcCvJ7eOSL86MeMfLRgX16ecWQt04smdNej23A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:12"]},"IP":{"Case":"Some","Fields":["198.98.59.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tungsten01"]},"Identity":{"Case":"Some","Fields":["vcj6qyLQ8llt9Aud8ilKlaTeCOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Iq+NyzVIWncTc8xb3qzMRIXikMAvuIPpgMZKnyMvmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:12"]},"IP":{"Case":"Some","Fields":["47.155.56.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GIZeStiC"]},"Identity":{"Case":"Some","Fields":["vcUm2igPoARLhMXrLcCmfJvhK6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L14T2ScHpKMsOCZ+U+TgN+C6mV4o35WRjohHaQX490A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:00"]},"IP":{"Case":"Some","Fields":["198.72.123.109"]},"OnionRouterPort":{"Case":"Some","Fields":[1220]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["cragg"]},"Identity":{"Case":"Some","Fields":["vcEXTHlLVWxHt8zmH/5l+xZye2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WRSDKHAxJTPpXjxu6nR1J0wTjcnmIpkxBSEbdPqe0V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:43"]},"IP":{"Case":"Some","Fields":["190.10.8.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiekoetter"]},"Identity":{"Case":"Some","Fields":["vb/tbornSgNuUTzYzWu/CZZlnAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cRtpndx/EwJ51jIRlwJc0/HkAo+dOmI9oq40tmYr7LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:40"]},"IP":{"Case":"Some","Fields":["95.223.37.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9002]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Skadi"]},"Identity":{"Case":"Some","Fields":["vZ75LgIBAzQZpxvWn17H6xgd/J8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZN5YbeatQl/vhvIutlhymvYRO87+ZMxaJLDnqBB3myA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:32"]},"IP":{"Case":"Some","Fields":["83.137.158.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay001"]},"Identity":{"Case":"Some","Fields":["vZdk7yY3pWgQddbv+Vzb6MhFGKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JnSWgOF1bEZxWXUvb20PQRjlJczuIbKnXb9QN84kZaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:35"]},"IP":{"Case":"Some","Fields":["87.98.240.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PiratesCatalunya2"]},"Identity":{"Case":"Some","Fields":["vZTz6P1MWzh7QsI5A3cjnDFChn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vXHfqlL4MbJYi5cH0A0ue5Tl1h/7g/LmawHvB5WQyYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:39"]},"IP":{"Case":"Some","Fields":["87.106.236.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frigg"]},"Identity":{"Case":"Some","Fields":["vYctC5tHrwD+tE3KIShiv4WtZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2N3Bqu/0cUyv/dLgB2vKnqx94KSUbqdsnX0oCfM9FNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:05"]},"IP":{"Case":"Some","Fields":["185.134.28.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["aprelay5"]},"Identity":{"Case":"Some","Fields":["vYa0Jk5S3hMuViJP2doh9MLyoh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfLiUTxaD8wybwCj3/gSpyyAIYEDWt8oxF6p+Oa4K24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:00"]},"IP":{"Case":"Some","Fields":["82.223.17.68"]},"OnionRouterPort":{"Case":"Some","Fields":[8054]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:809d::1]:8054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defconrelay2"]},"Identity":{"Case":"Some","Fields":["vYFck+nYf/syIGw1QL2FWQA9MyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GsTl5bSC89vtyjkJ+tIBa2VMJOCrYOaKtVxAAZE3dVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:38"]},"IP":{"Case":"Some","Fields":["50.230.231.84"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:327:231::84]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonjour2"]},"Identity":{"Case":"Some","Fields":["vW//GtWoio1Dhw1D7ERQCBtLK7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iy8s8G4EpU3yHrxF4NBgral8w7U0NYGvvY+3n7n+tnw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:33"]},"IP":{"Case":"Some","Fields":["188.138.33.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maatuska"]},"Identity":{"Case":"Some","Fields":["vWqCklXLCOZvvn03SDY1huRrOBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ppMLaS3SyQSNnjhKKYfUZRY0+llVDJMMUAOujHFgsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["171.25.193.9"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[443]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::9]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer03"]},"Identity":{"Case":"Some","Fields":["vWSGmcr+DsedSnonzJ58xabfiiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dJnUBw1ds87WQ4hBlfgv+S31ggKH/uELrmSGfXXBBzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:32"]},"IP":{"Case":"Some","Fields":["23.234.251.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HouseDimir"]},"Identity":{"Case":"Some","Fields":["vVahw2GW7paLKjRjzNZAGbTlJtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9b8neTxusBEgcBX8NDBAUf/AwzRO0o2tvRV/WFCU9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:42"]},"IP":{"Case":"Some","Fields":["86.115.32.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CuriousLoophole"]},"Identity":{"Case":"Some","Fields":["vU9WMAGkYRkxutZ0wYxINXcXxRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjDZPKwJLB5pp/+iuaKHcQXZAcIikAKspurtb3SkdOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:22"]},"IP":{"Case":"Some","Fields":["51.68.231.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["regar42"]},"Identity":{"Case":"Some","Fields":["vUxkdQgWL1nLROTfwcKyuKk4fMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZpWWUsGHtE1zYriQ6bDzwS+L6Cy/Hb5rG6YYAyGb2ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:30"]},"IP":{"Case":"Some","Fields":["62.210.244.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:3680:4242::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RealityNews3"]},"Identity":{"Case":"Some","Fields":["vUrzL+G0GbSlBJoysPwtg/1U30Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["89IEmvW+KlVp3MPg0EiQdJ+1+JSDTkdVa+VR9IzTZuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:48"]},"IP":{"Case":"Some","Fields":["79.77.182.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1b55::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra22"]},"Identity":{"Case":"Some","Fields":["vTPvGAsRGLAL3wc+J3EhDjvd2M0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YOwdfgS1NtLO1J/SEn2wUvKqwuHkB5Ry1GxDilqkvDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:30"]},"IP":{"Case":"Some","Fields":["51.178.86.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay654399"]},"Identity":{"Case":"Some","Fields":["vS4LW2k1Zk3/6DB84f8mnyq/qOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EBsLV6RPWp8ycQTdHjyEVY6QauejfBnFn+WxoNL9uDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:22"]},"IP":{"Case":"Some","Fields":["85.195.214.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9843]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blix"]},"Identity":{"Case":"Some","Fields":["vSvEFdXYrjw0Qw5w7ILPOwxhvd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3vPubBSgQWE9pVLG9YJKNkwMKZK6GrvLxFfxi06tk8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:31"]},"IP":{"Case":"Some","Fields":["185.177.126.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vSo0reTmA6Jy+q0jrvOJgBuyI7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCrahvppEfjZUlPpap70XBL8ULdMgHTJ+fKXoaCboa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:58"]},"IP":{"Case":"Some","Fields":["185.220.101.210"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::210]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz2"]},"Identity":{"Case":"Some","Fields":["vRyMphpTgmp8M4hadYb5+hPOeUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRV1BAwmY+2miAbN3ib4lroqYcALY4CJ1nuQ/qduStk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:10"]},"IP":{"Case":"Some","Fields":["195.201.63.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra44"]},"Identity":{"Case":"Some","Fields":["vRQHWBNaFWBZlszuO7+kEn+XsjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DN/3lGzwWFpFKsa2kGVfEYPBiCg4LxNxZ7pU7BaGEPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:27"]},"IP":{"Case":"Some","Fields":["104.244.72.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pluto"]},"Identity":{"Case":"Some","Fields":["vQINjts1XFNxmUIKryZJ+gRTbJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ZVgn0S+Cxs/3J3LK2A7V1A2Z8kq9iLE6PFfALxz/pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:34"]},"IP":{"Case":"Some","Fields":["167.86.127.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:406::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metricspace"]},"Identity":{"Case":"Some","Fields":["vP5UjqP/igs2EHecI4NQEkqO1t4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AN8okpjPky5nYo7szPnBPTtwfvjP1v6Mdh46c7cFxqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:05"]},"IP":{"Case":"Some","Fields":["74.106.232.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f11:617::10a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e1"]},"Identity":{"Case":"Some","Fields":["vPVfhl7m7xfiXv6vhRvEKfGQuF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["14bVRbTpqKTi2nNLM73u0YfUk90BV2wJreDDGo+QUoI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:37"]},"IP":{"Case":"Some","Fields":["195.176.3.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EldritchReaper"]},"Identity":{"Case":"Some","Fields":["vO+QgZWAXgPpLM/macSHOOVWucU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1DHq6tnjg3/vUn6qvwa8OZ3jf18NZaaBfNcrK2Hty4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:01"]},"IP":{"Case":"Some","Fields":["65.108.231.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:f500:0:d0d0:15:dead]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gurgle"]},"Identity":{"Case":"Some","Fields":["vO32wZOqaHrkcbiiLr9rxXwtKF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1nFNFBA5odOVYr+kYUzfZQPhlfxHeVUAJ1msGffWkMA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:40"]},"IP":{"Case":"Some","Fields":["198.96.155.3"]},"OnionRouterPort":{"Case":"Some","Fields":[5001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oenx"]},"Identity":{"Case":"Some","Fields":["vKNfcMsOelg/xuy4P3VbCD6eLfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GOA/nzt5wK4KkxN/4Ng7IgMoc0owCGmWkmqbSKysV9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:07"]},"IP":{"Case":"Some","Fields":["149.28.183.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5801:836:5400:1ff:fef8:30ea]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["vJJvjB8U5dyCf+RRvBiZuUth0n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6mnVkuN05EHNdqfOxgQX/VhxvYZJz213YmG7XfElEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:53"]},"IP":{"Case":"Some","Fields":["188.68.37.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["vIXObM9S1pFem84YI2iOC/41BlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/+aVzZQ8aIuRC9WkSTKC6ABr0WyAvHrUK40yboLTY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:11"]},"IP":{"Case":"Some","Fields":["185.241.208.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YagaTorRelay"]},"Identity":{"Case":"Some","Fields":["vHrPrASFTHcWfH1mt+RxMU7YxBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["keYro3Roe1sInH1MHNjHeLGAPWM95qhhQxP9Pe35o+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:28"]},"IP":{"Case":"Some","Fields":["116.203.140.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:e646::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay43at8443"]},"Identity":{"Case":"Some","Fields":["vG6AdEMU8WBUpk7g8jAvCCySmVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dker2vI3QGDbNyBDklzUc3dpiwb71kTxfDtfVeEOol0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:04"]},"IP":{"Case":"Some","Fields":["140.78.100.43"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv119"]},"Identity":{"Case":"Some","Fields":["vGRQNmTJC0qdqRNzbDYd6tMTsTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pcO55am6xb57p+9MOs0ha01yGzlHR6mg6MjcA2ug454"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:42"]},"IP":{"Case":"Some","Fields":["192.42.116.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5519]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["vGFjZUbtIaSf7ApTIGTblTj3xDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOMz0a7N175ijSePnTghi3swlPuKXW6DIrecgtWh3dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:31"]},"IP":{"Case":"Some","Fields":["51.15.138.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nognu2"]},"Identity":{"Case":"Some","Fields":["vEBZByMxKORt2bK79d3PJQhVr98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VJ0+Zfvk9bWEFOiVjh3+RHelPCcCtQeRnOb1ZaHNGgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:42"]},"IP":{"Case":"Some","Fields":["185.243.10.170"]},"OnionRouterPort":{"Case":"Some","Fields":[45531]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:bc7::2]:45531"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flexbit"]},"Identity":{"Case":"Some","Fields":["vDkkfGB/q4Y04eH7KfwE0jxj/ig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6WwuKSR1pnS9uXcug0V+1htpBGgig3Z2SEUABiPYgAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:50"]},"IP":{"Case":"Some","Fields":["193.233.203.125"]},"OnionRouterPort":{"Case":"Some","Fields":[123]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9203::190]:123"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h7nOq"]},"Identity":{"Case":"Some","Fields":["vCBmZYA9t8cwwloTFoiaTX57/wM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rhajvR6h4sF0XHBYb8KxvudSBFyL/yOblW91+H70I1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:45"]},"IP":{"Case":"Some","Fields":["85.143.214.143"]},"OnionRouterPort":{"Case":"Some","Fields":[20]},"DirectoryPort":{"Case":"Some","Fields":[21]},"Address":{"Case":"Some","Fields":["[2a04:ac00:1:8a99:5054:ff:fe01:3103]:20"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["razek"]},"Identity":{"Case":"Some","Fields":["vB6fZ/G5n0pSKHCW3aijJPP0v6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2cZla8pBL55mKz/IH/i2U4sIdI2YarxsXBcZ0Qnp+Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:21"]},"IP":{"Case":"Some","Fields":["181.43.104.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackMesaAG"]},"Identity":{"Case":"Some","Fields":["vBI9t/YenbMfI7N79ioW2qEBD8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OX07zxFa7raFN8seHvypbS5e1EVM92gKN90erH/34yI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:00"]},"IP":{"Case":"Some","Fields":["85.215.88.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["vAgKwNL3V4Y/Pj8UjCaOXIWE6K8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V1nswAkHGaoNUqlskRoIo6skuZR2w78jQat8QRUap5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:18"]},"IP":{"Case":"Some","Fields":["88.208.215.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:8162::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vAakroR93CP9YwguOIuzCSTatLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YXI2cOJIIWGUBvV2GxPpzX1VKF5YMZDz37oj0MgQnS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:52"]},"IP":{"Case":"Some","Fields":["185.220.101.62"]},"OnionRouterPort":{"Case":"Some","Fields":[10062]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::62]:10062"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckwar"]},"Identity":{"Case":"Some","Fields":["u/h2PFUfh6HMy2ZSu8CsM2v66i8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuN57hIETCqsOu+xZW6U3nyfxqTX9HsBwqptBjLff3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:07"]},"IP":{"Case":"Some","Fields":["82.196.11.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["kator2"]},"Identity":{"Case":"Some","Fields":["u+1CgipJl+lOWyilH7ZDmqi4NPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uF2AnWVxO6b0RfZXpN9OGZKZFFZXInW4IMrbvbrcKYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:39"]},"IP":{"Case":"Some","Fields":["81.157.78.106"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberation"]},"Identity":{"Case":"Some","Fields":["u+r/JKnTQG3MlUhN6zt935ipmYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pv31k0F7HHwarZe1FIYO5cYhJODK15gdo1RsuoIj8nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:58:17"]},"IP":{"Case":"Some","Fields":["87.236.199.239"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wombat"]},"Identity":{"Case":"Some","Fields":["u+Hb9gCbYmevtN73ifYv2dipQKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1freMiQKCOzvqROQZ2ucOeyvJsZCAoHvkW9PIoooYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:07"]},"IP":{"Case":"Some","Fields":["109.70.100.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hanktor"]},"Identity":{"Case":"Some","Fields":["u94SwyD9HD/77BUgL0bVYg/BRE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoRidu5rDplbt6LgT14YNOixvKEXb9/bNj0kNAAY7sU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:54"]},"IP":{"Case":"Some","Fields":["178.17.174.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:cafe::a3f6:4721]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ambrosia"]},"Identity":{"Case":"Some","Fields":["u9lfOM+RxKYgD+CaOVHGi+EY/54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c0absO6Tjr/jadXBaVyJcM0fNB2bobp4eyV/sEGrdDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:10"]},"IP":{"Case":"Some","Fields":["45.134.238.190"]},"OnionRouterPort":{"Case":"Some","Fields":[4430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sprucegoose"]},"Identity":{"Case":"Some","Fields":["u9j034/1xppqmJ24we4sp63+B1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SCjUNAbCnJAW2BYfblyCRNmlQCDIctm1Lo3XdPZcUYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:32"]},"IP":{"Case":"Some","Fields":["66.206.4.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blazkowicz"]},"Identity":{"Case":"Some","Fields":["u9GxoiaVOWx13/M4qP96EoBKYHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbcw3M57hfFAzJphhy6A5fUOJR9wVpUsq6hw18YMsPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:42"]},"IP":{"Case":"Some","Fields":["178.162.194.210"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorIruka"]},"Identity":{"Case":"Some","Fields":["u8Ya0uGK/nDpvkJtCyKpglIAD7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hn3VPQoDGZmzi96OS2AHl8K68nkDvS8vhBrMNspSseI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:12"]},"IP":{"Case":"Some","Fields":["128.199.131.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::1a6:f001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["u8SiFVD7lXugPkp9Qb4gMEhST5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwaFeb/chCwZFTTNgLx3pJW1mpkw2PZPyXxXDIBBq/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:04"]},"IP":{"Case":"Some","Fields":["23.128.248.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::55]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["caligulasAquarium"]},"Identity":{"Case":"Some","Fields":["u74PlG418Ls8xIYF0xIC9f8cjzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mnrFkGfb6XUJ7kvek4WER45/3YtYmpsCq5k17F1PCIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:12"]},"IP":{"Case":"Some","Fields":["198.251.89.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f154:dece:a5ed:dece:a5ed]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["motor"]},"Identity":{"Case":"Some","Fields":["u7u61FMmPXhuw0q2igYhQoiRA0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t+wd3ji48OLk/g0z13FZyMUuKlxozczfF3TEhOIZdVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:52"]},"IP":{"Case":"Some","Fields":["84.172.112.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9321]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6020:b2c5:d84a:bbbb:bad4:5326:3d78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andrethemac"]},"Identity":{"Case":"Some","Fields":["u4kXpHJH3XW4OjmFsgdyxBPJyRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9zcDJ2s+BRzm8R6TisCtNiXK95a6Mr3FbptleTwxjqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:42"]},"IP":{"Case":"Some","Fields":["84.196.9.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde6"]},"Identity":{"Case":"Some","Fields":["u3cjvFqsqKiH4zrVRvGjRlDMW7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XLwxtHHXljcy7VBVnLq/9OY8JZFo45c2aKrAVDQK3M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:42"]},"IP":{"Case":"Some","Fields":["89.58.17.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:fb6:200::208]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porcupinemike"]},"Identity":{"Case":"Some","Fields":["u3ADyvs+SYalzP5xvUOeuJSeueM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oAToHormhN+CTXRAE5/nzezdwQ6b5WK3Gdqu6AfcEts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:22"]},"IP":{"Case":"Some","Fields":["109.250.88.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0rexxxpallas"]},"Identity":{"Case":"Some","Fields":["u24aeshwLsYk3/m7bcSvMJflfKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b5FdoF5r8Kgu+J2jrvRQS6MlfGVHOtDR5vS1qn0Bhnw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:44"]},"IP":{"Case":"Some","Fields":["213.252.245.153"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::35da:3bca]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HumanRights"]},"Identity":{"Case":"Some","Fields":["u2W12Imd5fj2AY4H4lfNcj2hMlM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ePIGzuLQZ97HsX7ojqBtzI+UrI8InMozkz2n/S7V+/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:51"]},"IP":{"Case":"Some","Fields":["107.189.28.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f67f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YonderYuccaN1NoExit"]},"Identity":{"Case":"Some","Fields":["u1+uULzlsTyBDNF6kxoEmORoHUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a1gPW4syOv9aA7qfM2RhWAZ1IMILX7nYqgsuRCFpiCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:37"]},"IP":{"Case":"Some","Fields":["212.51.136.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6a16:1130::31]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thefrenzylands"]},"Identity":{"Case":"Some","Fields":["u1rC7HiajDUlodGWfqTPPXtBQXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+AGK4AMQFRh2g9CNzqkyKqUtqXL3DIAWbVR6Lk0/nY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:00"]},"IP":{"Case":"Some","Fields":["158.247.225.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange010us"]},"Identity":{"Case":"Some","Fields":["u1YwlnYH2Ki2yoVK+VT+g3LRZio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtIl6+CYgiMZiN5gNPFZ5SL9LjhuYauCfDfk4uRHzhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:25"]},"IP":{"Case":"Some","Fields":["147.135.114.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::2d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soporific"]},"Identity":{"Case":"Some","Fields":["uy3XhvionbXL+1fhupmbNz+phA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AB0TBx8DTMoWCUjP6jwymM/ayBL1DT6UTL0Kng1vQRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:14"]},"IP":{"Case":"Some","Fields":["23.238.170.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeroPlayground"]},"Identity":{"Case":"Some","Fields":["uyr8F0v8/wLxVKnSSIZXXjJrd/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BeUFo7hXzxUiF5GxPFMUlaPY1w7TcbE+C2KhPEwf3BY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:06"]},"IP":{"Case":"Some","Fields":["77.68.102.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bruhrelaynyc"]},"Identity":{"Case":"Some","Fields":["ux0pEKSSaGrXIdzMFwwsOWfzqCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bl3ioAjuy04ZunKoBtY7nFo1DkM+N4/zSkY0047yCmU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:31"]},"IP":{"Case":"Some","Fields":["159.223.120.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::199b:2001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uwfpgj3nnOyakG7MjK3FamU1e+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcajfbKAbIFJPdKVtzBBquFHEewY2nzDPfXuiFbPCa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:37"]},"IP":{"Case":"Some","Fields":["23.128.248.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::c047:adff:fe9b:8d65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckwar"]},"Identity":{"Case":"Some","Fields":["uwWaWuNUFBLdvM9JNWptSrCBfT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["68KIbV8nXwFZZiuuiKTPMj8Ny2nQk6BIlZ5P+RNO3Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:58"]},"IP":{"Case":"Some","Fields":["5.101.51.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip1b"]},"Identity":{"Case":"Some","Fields":["uwNMNO2eYPdwntk/tDKpuhKi8rY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frOuMa2/Gw11px9JvG1MfS+J7S/8nDoiNU/LtcjW0PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:59"]},"IP":{"Case":"Some","Fields":["185.220.102.248"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::248]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uwBMf0xcn65eABhkU3+JOIRE9XI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gX/2PhWT3N4ecDfcpXvFw8BG+mzQ3j0rFsZZbgdg3Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["37.191.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe4b:98c7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra85"]},"Identity":{"Case":"Some","Fields":["uwAFWPEMHXYNnIxWVao02qOGnK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w5y1UcACbHZdO41lrJIGThLE92t0mhTQBmSKA/Th7wU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:17"]},"IP":{"Case":"Some","Fields":["185.146.232.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darkwizard"]},"Identity":{"Case":"Some","Fields":["uvIj6d9i0yYfFnXGz8Tl1Q8V+lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VQUn8RZXPLiMJNOnOguEZoDaD9yyvSnj214JAm6vuI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:31"]},"IP":{"Case":"Some","Fields":["62.171.137.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amer02"]},"Identity":{"Case":"Some","Fields":["uu8x71fp+vOD0OcJn4yHliR5MBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6JoBP9NS3bfOJo/6ylM63OE8K++6DdnLozrxHhPjcKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:58"]},"IP":{"Case":"Some","Fields":["192.99.32.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uucLWmGxKj0x3ulOaXrx/ampuC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aykzNpFo9YHZYCwjsKyBMksNCrMs9YfWZaW3RGixYL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:44"]},"IP":{"Case":"Some","Fields":["96.224.58.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarknSpace"]},"Identity":{"Case":"Some","Fields":["usywdwWxur5cGxq0jiPZz5923us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Ke1fZERvrjTUj2HKupLBjsoIQuOuBa4Ypnd8oZI7Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:44"]},"IP":{"Case":"Some","Fields":["89.40.13.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:5928:dd9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip2b"]},"Identity":{"Case":"Some","Fields":["up1/uatO0PvKVpQdoiz3dwuhpLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ESP99P5UClggAQxy4Eo+0taxziTOZzOtf9nCpVpJeng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:52"]},"IP":{"Case":"Some","Fields":["185.220.102.249"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::249]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop3"]},"Identity":{"Case":"Some","Fields":["unw7la+nSgIdfSLIVvh+Kr/vybU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y86ALnfVZhnE4SQzJnbw/Egc5h7osQOBgB2XDuIXzQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:38"]},"IP":{"Case":"Some","Fields":["82.165.70.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["unhy+8lsxxA6zzpZgWZ0NFTWkKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rI5RIJLOaUS0Jeznkf48P7xCNm1h8WNWTSJ9NGnpqbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:39:02"]},"IP":{"Case":"Some","Fields":["146.19.173.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra86"]},"Identity":{"Case":"Some","Fields":["uncUm07adlQ2mPBRBPXCVH4wbXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ww/rXXBgj/FThJAi8PI/Dba6//Y8hNE83BrwWjXHzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:54"]},"IP":{"Case":"Some","Fields":["107.189.14.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwoone"]},"Identity":{"Case":"Some","Fields":["um4GRZa4avn1XwYDqCyQ6Vjobno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["49/q6/BKAe1GQkxK5wvqQECBFt+US3/bBSchvQiYEkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:34"]},"IP":{"Case":"Some","Fields":["135.148.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ContaboNixGut"]},"Identity":{"Case":"Some","Fields":["umcbcOaWqy+FrKPZmLgAjRRVZxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0a4hxKdAGV1yA3CN+20cZQFEO/B+EGiR8Zu2k+GJ8QA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:06"]},"IP":{"Case":"Some","Fields":["5.2.78.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:358::2bd7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["welcomehome"]},"Identity":{"Case":"Some","Fields":["umXLYfqYwOHKI/VCOO4P/snBHf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfnQwWsf015q+XNNxCa9O+FwJK0Cv41vnXgr79H8gmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:23"]},"IP":{"Case":"Some","Fields":["102.132.130.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Echidna"]},"Identity":{"Case":"Some","Fields":["ulciKg7J7N8AOu1mXfsLEofqA50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3swJ4qtgGJrdgQVqz8DsS/YnB+1wBMhtXedyXIBy1Zo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:37"]},"IP":{"Case":"Some","Fields":["51.81.201.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::cd0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3raserRelay01"]},"Identity":{"Case":"Some","Fields":["ulOfMwFORrz3aNYbRiBNnd6hfkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SrLzlKFIvQu2YQNs1pWcoC2wTEjYv4whjEqUdn+XpuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:35"]},"IP":{"Case":"Some","Fields":["135.181.37.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:b3db::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fc3"]},"Identity":{"Case":"Some","Fields":["ulCQt4S0O8LRpBryumYw2nqZ+BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wpIVaO5PW33SHpekQnynfd4N+NDWVeRxvb/6mgzSjZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:20"]},"IP":{"Case":"Some","Fields":["136.37.16.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dattor"]},"Identity":{"Case":"Some","Fields":["ukgaPIBEfvtngRk43dObH3nhwG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8pCbxjSJIL8W2/d0bGdYgBj3VcdCvuoTX/W7CECXzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:38"]},"IP":{"Case":"Some","Fields":["137.193.65.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Serge"]},"Identity":{"Case":"Some","Fields":["ukSoieZLk/qisRTgLConmoVVxTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sG4ylP5agzXxxBPIZr468grEzj6LiOaKlve7cscR7F8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:28"]},"IP":{"Case":"Some","Fields":["66.111.2.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2610:1c0:0:5::131]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["At2lanxztaRelay"]},"Identity":{"Case":"Some","Fields":["ukPkvc5EmdvyJ6EBVWnhWzK0ADc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nu6ZTLcisGlxWoV3Lx3m7AOOYo86cpMWqwDSoQSVkMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:49"]},"IP":{"Case":"Some","Fields":["45.32.219.137"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5401:15c6:5400:4ff:fe23:bde8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7d9"]},"Identity":{"Case":"Some","Fields":["ukO8pbbM+GJ0+M3//3ppL1+Vt3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j6te5FzVPE1Xi6IP3MG25wL7a1MgTmUAPuX+4oVq1b0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:39"]},"IP":{"Case":"Some","Fields":["65.21.57.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting22"]},"Identity":{"Case":"Some","Fields":["ujqk82k7+nuuXwmZ9+Y5kFF74vI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/MdYqeKTE0jMp55XQDBh3GO65VIlpssnpq/ESoC9F8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:05"]},"IP":{"Case":"Some","Fields":["185.204.1.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WWW"]},"Identity":{"Case":"Some","Fields":["uiV1ueE+uhWP2RY5TFBGpr1vYZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xRV1BaihtV681+g/ytV8jhlh6JpOKcd2IaVIUcfVY4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["141.94.71.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::afec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blu3Sun"]},"Identity":{"Case":"Some","Fields":["uhP/OGH3iN8ZxUGIIKnZF9wmvhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HMi5IEst6Kvk4LPyxYS29r8XigOLKyp3MY5BdKiRy0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:03"]},"IP":{"Case":"Some","Fields":["185.130.44.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay10V6Rocks"]},"Identity":{"Case":"Some","Fields":["uhNMey5o7rNhJNrI6+lEzXL74HU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjcMdh24bkVsi6AjPt0nyUWDB0n5UKQAnTKoho9Ak+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:18"]},"IP":{"Case":"Some","Fields":["185.194.142.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:773::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeassange"]},"Identity":{"Case":"Some","Fields":["uhMyRxlIXcO1/yWMIWAyh/Gv/QY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCkgy+mgD7hfB7DRsw5aoNQH6kOxNbarejB1dEHKNFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:46"]},"IP":{"Case":"Some","Fields":["144.76.201.253"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:82ca::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schuehlein"]},"Identity":{"Case":"Some","Fields":["uhIz3BMuNYzPjYlaWFdDFpVCBnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P0chqSLyE1FYyMQhGgy/Subd9t1iZ6qO1ygXTgpFUeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:39"]},"IP":{"Case":"Some","Fields":["85.92.108.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["uhDtLdB5rfPuftUWreGqsI84D3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LO8Ap8/4DiUhV/SOPBZTUSqiZaO01N1Jk86diVQG52o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:34"]},"IP":{"Case":"Some","Fields":["23.128.248.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer02b"]},"Identity":{"Case":"Some","Fields":["ugU8cuR2weudBSN9DWoonBj76Oc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bgEZLd8rvX2JHOlpIOG14Pe14WdSb/g2WCATBgjMJrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:37"]},"IP":{"Case":"Some","Fields":["82.165.169.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vanbo"]},"Identity":{"Case":"Some","Fields":["ufafFE31vi/ZLdv55nxlnsxeU5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DxsEJOU71rxDqSkF2Ijr2T1pg30B23wJ5pTuEYrNvNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:07"]},"IP":{"Case":"Some","Fields":["178.63.3.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:44d3::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv26"]},"Identity":{"Case":"Some","Fields":["ufWnVl72dFZBkqwY1t6zAboKFaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jEr6TYE/kR8TYFjKVxRSI60Ly18rxSTqhdd4USY+GM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:25"]},"IP":{"Case":"Some","Fields":["45.62.224.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skiff63"]},"Identity":{"Case":"Some","Fields":["ubrMrt5wK4UnwGzRZRoDOVabrLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fapNnVZ3FthPECASuJnBKi6JGa6xx8syVYN4+idkD8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:56:46"]},"IP":{"Case":"Some","Fields":["45.94.107.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversdeFrissons"]},"Identity":{"Case":"Some","Fields":["uazjFvkx0J9c7yDHNxz9yGnWaHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["utC7ewz4R9vIXfM558qMh2oi3lWJCJusFcF8gUpS4yg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:48"]},"IP":{"Case":"Some","Fields":["190.103.179.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x0"]},"Identity":{"Case":"Some","Fields":["uahPYh/wTTs6lrsxTSfBS/pUptc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KUXLtEpi8PI+np0CfAcRBWr+rknmJS+t571iYi/5nXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:41"]},"IP":{"Case":"Some","Fields":["185.133.210.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:e880:1:f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uaXLLYTWV6TA0pBHhHIh9fuVH9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["foAd7R8nSKuBNjgWX0kj58a7u8XWuwRv7xuCmIpw53o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:05"]},"IP":{"Case":"Some","Fields":["217.70.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc08"]},"Identity":{"Case":"Some","Fields":["uZxot3rgbND9PBnm9VUocr4udgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdJd0iCbcrsY+x/cg+JqhC9JQJDb2lqcbxA/Xkw/QLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:37"]},"IP":{"Case":"Some","Fields":["185.100.85.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mobbingsyndromde"]},"Identity":{"Case":"Some","Fields":["uZYsGTrkMT1iXpv7lBXEMGIU0zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3BXqGrQtz6zpRC1E+4GGoMbU6S16mTOII6ElXWbsKuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:33"]},"IP":{"Case":"Some","Fields":["176.95.148.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRandomNodeWw2"]},"Identity":{"Case":"Some","Fields":["uZLToFdzHWHmDYIRbs6wMp18vrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V6h1wNZecFdgZ+PP586txnL4tSlBOdtHLe8fWUQTE7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:47"]},"IP":{"Case":"Some","Fields":["212.51.143.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8059]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uXiMRQsJ58Ls1mrXj2/DdZr67DA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TijONyIUJ/WgnL/E/yZ2LtHrCwpivlmTj0GZQK553nM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:57"]},"IP":{"Case":"Some","Fields":["23.128.248.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::9998]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay39at5443"]},"Identity":{"Case":"Some","Fields":["uXcVyKHucmecdEgPMBsRrAFbTFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bfEi0LC6hAmMVQBf54kJ4IB9ctdAkTRgrBaK1W3ZcTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.39"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gengi"]},"Identity":{"Case":"Some","Fields":["uXTwyBXHB/V/l80VmHR3BpK9p+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Qrs9NLJLGH6Z/iNMwfliOTax6bL8N3ODc0IkU3tTVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:23"]},"IP":{"Case":"Some","Fields":["42.191.75.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamster"]},"Identity":{"Case":"Some","Fields":["uXD3Il/X9gK5rptn7YtmgOjRTCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zNv1VEmc6eUED3PpJv1C9bbjTbuJw+rAPttTjQefLC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:29"]},"IP":{"Case":"Some","Fields":["5.95.167.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Guy1Relay"]},"Identity":{"Case":"Some","Fields":["uW3SABimZSYBa9SCGEKfdUxgf/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/flCXksghzRYX0JtzKBU8vB33AUnr19JTXHNyRe9Izk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:25"]},"IP":{"Case":"Some","Fields":["23.126.9.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc1"]},"Identity":{"Case":"Some","Fields":["uWot8cI9+RadcK3gmTvQAzEfUdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KSQgWd7cw+3UUedm+ob3pQVw49l/it80hHuRGf+1GYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:12"]},"IP":{"Case":"Some","Fields":["91.11.218.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hooyah"]},"Identity":{"Case":"Some","Fields":["uWmqFpjztwIK0ulxswBq0xmZbiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W8MItYzAjiTzANnwXmR5HJoKTsuIGooFK1hRAIT4vPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:09"]},"IP":{"Case":"Some","Fields":["68.6.151.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defconorg"]},"Identity":{"Case":"Some","Fields":["uVaoKpVZ1ILhrP6r2Jj9w/KZEAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JGsNnxtrAz2yqKaZp3J0LOtAUD80iEocVcFWjtbLCeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:07"]},"IP":{"Case":"Some","Fields":["50.230.231.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:327:231::84]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MightyMasturbator"]},"Identity":{"Case":"Some","Fields":["uU45RU2Ot+bcfI45+Mi43MoAM8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EDIIAVHgwjNVIvMGqRo0il0BJCc7sTAyy+qlm28GwkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["109.229.210.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay30L"]},"Identity":{"Case":"Some","Fields":["uTUD1FjZ/pfeXBLSEQgocdCPEoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4Y6ZMabKDqedAsqnOfqAhN25Jx4c+dkwLg8U5H4fm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:19"]},"IP":{"Case":"Some","Fields":["185.4.135.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:217::e528]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seth0r"]},"Identity":{"Case":"Some","Fields":["uSfpv2ZgPca5lrWKLCt6bXITrh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6gS/qL2OrDWiL6BwMBBa94g4QeiidXZ180OSitaiBIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:50"]},"IP":{"Case":"Some","Fields":["94.16.122.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["456f"]},"Identity":{"Case":"Some","Fields":["uSM1iJF8X2t9p3ERhwcJBZG8TIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oi6cXuKnea8/QMRjJ0TlZOJrgtvuz5Km7vwrFaL2Rpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:50"]},"IP":{"Case":"Some","Fields":["91.213.8.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bitplane"]},"Identity":{"Case":"Some","Fields":["uSG4uPkBTn0P5y3m5cQx+hu6GpE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yo2Ifg66VxokCdz9aP7R98uWT9rC/fQx70ggVPUKf4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:18"]},"IP":{"Case":"Some","Fields":["74.116.186.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2606:6d00:1ab:e701::235a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay16at8443"]},"Identity":{"Case":"Some","Fields":["uSCOrR5ojp7kOgUVms1GOOtN/Yo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUiEfNLXB1+fITIqt6Slx/t3XCCi0sVx+GvdrapPT/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:05"]},"IP":{"Case":"Some","Fields":["140.78.100.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange008fr2"]},"Identity":{"Case":"Some","Fields":["uRoesw5m1SAm780elr/A6WbIPm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5724z/OO5+/RAVz+rM/fhwNKCBs0/c9wNH4c6AnI9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:54"]},"IP":{"Case":"Some","Fields":["62.210.105.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gandi24325exit"]},"Identity":{"Case":"Some","Fields":["uRb6hz4AoaEITbpA3XZ/tlm+o2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0l9b5o2nO//6p5vBpGdxVDefmUpzR3yOF/S3N7CACcs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:13"]},"IP":{"Case":"Some","Fields":["188.68.42.230"]},"OnionRouterPort":{"Case":"Some","Fields":[24325]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:9d0:c8b0:10ff:fe6b:1cf8]:24325"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aplestia"]},"Identity":{"Case":"Some","Fields":["uPrk3jw03L9CV4UgVAigBLecaNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ye+8o9lmhYDajFHhetnd29vUAQSj7pquVdKqgnhNGgQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:33"]},"IP":{"Case":"Some","Fields":["199.195.249.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:bd4:a109:2316:1352:1488]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["uPLNoT5QgBvB4G/dHKmEredrz3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdvEFW6JxVzDSDoQX/AVLG6dICBvT72F0V09yQmMwTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:34"]},"IP":{"Case":"Some","Fields":["92.223.65.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:154::b9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MalfunctioningEddy"]},"Identity":{"Case":"Some","Fields":["uNxOrqmEYm3NUtoevQO+8TWrK8Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9rfp1dwLUNhlnJfCATsuyBtT2HoyUzaz7ShDnZVpmDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:11"]},"IP":{"Case":"Some","Fields":["71.192.152.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:558:6017:16b:e5cc:c5c0:daaa:dd12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soltor1"]},"Identity":{"Case":"Some","Fields":["uNjgdEjgQF9CdeUohO2c72P+5KM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v9yOSd+iAK1Ujl8SYPl8zgDeP8wFCikiPskk/IVl0Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:33"]},"IP":{"Case":"Some","Fields":["206.55.74.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["memcpy2"]},"Identity":{"Case":"Some","Fields":["uNReWONfYiAbkG7JJ3ldM2SawQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P6OlJwQ6I782M8Z/FGd+4JmX+qp/2ic76G6NFiGpHZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:52"]},"IP":{"Case":"Some","Fields":["141.148.237.212"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6eff:4be1:c987:15c:da63]:8081"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay40at8443"]},"Identity":{"Case":"Some","Fields":["uMnKepCi2UQGxtmJk0DraNpCZbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjsVpD28TsqVyrNzZsOHrhUCyW/eW1mjBhVUOpIWRvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.40"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange009de"]},"Identity":{"Case":"Some","Fields":["uMfVa36Hs5vQh4xdHWkTBZbQv60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["du0hc/qFv8yTAR3isRZAy2w0OP4Xo2Se4FdAbN4cIrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:14"]},"IP":{"Case":"Some","Fields":["173.212.239.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2031:2233::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pIetr0d1C4rB04711"]},"Identity":{"Case":"Some","Fields":["uLtAcC568tv+odH1xCU+qtOGmCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuvvnK8TGfr6Oh+JVHJSU2iyfHq16/a7N2++H3arJ8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:03"]},"IP":{"Case":"Some","Fields":["130.61.189.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["uKwlnUABcpl9CBILO9WkCQhBsG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n83w5AfUci2zv4UlDi+g9/GL1vd2/EW4J2Wn62V65Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:59"]},"IP":{"Case":"Some","Fields":["185.220.101.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrolantor"]},"Identity":{"Case":"Some","Fields":["uJHLY3DPfFHG+yTYCUevt+1GPQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GKfdaYM9G94rkMdZd/44zpBvFbidjFlqrKKjOE10JRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:22"]},"IP":{"Case":"Some","Fields":["185.220.100.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:9::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uIi7r1lbufXxH0t71BOKwATfpfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M77fs9qGLYXJRbSsebJuLdPAhgHR72qWqARmf0C/es4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:26"]},"IP":{"Case":"Some","Fields":["161.97.67.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3006:3185::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["franksToeKnife2"]},"Identity":{"Case":"Some","Fields":["uIINTQnJHObehExaWCS9Hef9dKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZIkh1xMxsijcLWg/PJ6yLy3XpKAWE/cuXsuUS542eNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:13"]},"IP":{"Case":"Some","Fields":["72.182.120.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9923]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["who8USicebeer41"]},"Identity":{"Case":"Some","Fields":["uGt4XeQW2v6O1mscgpsOb1czRRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Kqol/jjB3/Hc419a9+YYMPn4W19lwpnWZWgCanOQqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:04"]},"IP":{"Case":"Some","Fields":["69.197.160.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8552]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy60"]},"Identity":{"Case":"Some","Fields":["uGE3rpaBcBkBxnIOVcFoBbRr2OM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bc3mdeqS8Z7gJCnfYX4c162SFVPbhSa6lpH/x0OCRUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:08"]},"IP":{"Case":"Some","Fields":["212.83.43.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:abba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mj2"]},"Identity":{"Case":"Some","Fields":["uEmCT4/NeusTDfNW9ZK6QMaGygg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EWyaOQsYD/jq/G2eXm1yafRiDAPw5ezqcob5yge5ozo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:57"]},"IP":{"Case":"Some","Fields":["93.115.86.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet3"]},"Identity":{"Case":"Some","Fields":["uD3BVY8NNDU7uZLvk6/q/bImpz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNiI1b/2zf+E2JsKMG/F5yMphfPEeWYiMJozIU9A2fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:41"]},"IP":{"Case":"Some","Fields":["193.11.114.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::101]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trustn00ne2"]},"Identity":{"Case":"Some","Fields":["uDeJRmkg/6qkG5IzM+I4OahI/BY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9o9bqXqllDQiqhN7G5i9KSwhCMm6DKsiMZgZXUp7+pA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:37"]},"IP":{"Case":"Some","Fields":["84.234.250.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheKrustyKrab"]},"Identity":{"Case":"Some","Fields":["uCX2FNZAKzbhuOjY9Pfhw60Mu2A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEXxx5/fESKQQR7K29NUzqUp/WFigv8s/BXcjafizuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:05"]},"IP":{"Case":"Some","Fields":["70.173.175.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["respecttoall666"]},"Identity":{"Case":"Some","Fields":["uCQKTHFaJZXOVMgqsXXIAhR2i0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwBE75Kv2c6O0/vVp/CE7/H3q6vCNCtPtq1RfIdZWwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:27"]},"IP":{"Case":"Some","Fields":["83.35.162.197"]},"OnionRouterPort":{"Case":"Some","Fields":[12813]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harlock"]},"Identity":{"Case":"Some","Fields":["uBs4kCvwJr8lkcotc7mc7rA/CGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8h1w7rkmkwpD97ZIWU2NwWaAr7o1U1rPweSzRjXnXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:58"]},"IP":{"Case":"Some","Fields":["158.69.205.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::4dc0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uBI1UL5qOf9+wtAVyGdVUXkHVX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbqMHk/yrfeoOoDzucBhN2mg5H2Ppuy6mfj0K4wWh2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:07"]},"IP":{"Case":"Some","Fields":["188.95.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay3"]},"Identity":{"Case":"Some","Fields":["uAwGhT980LQ1/sv9Vyq4UEOf2gI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4lfKwWhCP4wcAJeifyLn33esnQeUTfW9A7MRhrnsCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:32"]},"IP":{"Case":"Some","Fields":["66.175.235.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GummyGooseberry"]},"Identity":{"Case":"Some","Fields":["t/kFKEjbd8C5ZyLppHruwlea3JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QqT9AFURE78Y68E6rzSBsSWxiyJ6qSFYu8uxMp7HBew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:49"]},"IP":{"Case":"Some","Fields":["99.199.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[55001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation56"]},"Identity":{"Case":"Some","Fields":["t/YKgXN85jXnUcW8pnv9INryYVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tEBi272jfkE2Fp0dgOnd0UqzFPrS9czigxvwhA3j4as"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:43"]},"IP":{"Case":"Some","Fields":["51.75.162.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex52"]},"Identity":{"Case":"Some","Fields":["t+zZxqkQoXC1UWV0IEnLzHd0lPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SSKRsoK02J/WhMke6h8gP+BzUi5Vh9+sjbUtn0d1yEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:12"]},"IP":{"Case":"Some","Fields":["199.249.230.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::141]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["t+mEnURvxX1L3tk3uOF/Oqzh+gY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkPpCEmouHbxgzyK+o2mLAbK+r4TeSwT+h1PrU+KfRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:55"]},"IP":{"Case":"Some","Fields":["185.220.101.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi2"]},"Identity":{"Case":"Some","Fields":["t+PxQviOK1XmB7ODKA4ePvbmKss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lm7ipuwv63HCgx9LIyVSL3y1F7c8y86iwNAeO30GgA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:21"]},"IP":{"Case":"Some","Fields":["193.31.116.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shibuya"]},"Identity":{"Case":"Some","Fields":["t9tJtE3ZM8lktHw5mlD11Q/fkYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofQrkM2/vaLSILxRxsa7+x6BxNaOq4X4HDY9J4MEDpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:42"]},"IP":{"Case":"Some","Fields":["82.197.199.203"]},"OnionRouterPort":{"Case":"Some","Fields":[48912]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["peep"]},"Identity":{"Case":"Some","Fields":["t9dz4hlttbQSnTwFDAY9sPjfkaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RLsbSCW4aQdQWfRHB7n6FDNJ9hH8XeJx3tdfwi9mSa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:46"]},"IP":{"Case":"Some","Fields":["195.201.94.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:6f8c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["t78C6FbyA7KODXEIjXHxgG0LatI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rGoHQfqGKvXmSPtb21T8hPmfF3O6d0RjisHay2BvtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:37"]},"IP":{"Case":"Some","Fields":["37.187.205.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BonoboDanada"]},"Identity":{"Case":"Some","Fields":["t7lEWP51uSGH2+waph6SjYKhySI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CAoSGwEaK8wmIUpUgNmg+BreDk+Dln07gwcoGulUz3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:16"]},"IP":{"Case":"Some","Fields":["173.71.120.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glowie"]},"Identity":{"Case":"Some","Fields":["t6nz2pL73kmJpHb26LnHC2EW0sU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkVKQJS58GYhgov1ZMYPFrHG1CIK+AFwwtdt4CY1qzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:34"]},"IP":{"Case":"Some","Fields":["194.195.253.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:93ff:fe08:4486]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["t3a6FXOlVDRCFwpnvcjq1N5zHI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/YtiIF6roAnRn665ZI3HVWDR+VMHkrVUtyumbBfeJp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:49"]},"IP":{"Case":"Some","Fields":["158.69.225.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["movingdown"]},"Identity":{"Case":"Some","Fields":["t3GsjxPbHaGzU88FDEwiwhB7ymU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVvFMzINRftZGsuDlR7EyZoJNexfnLQKLBBmLkau1HU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:01"]},"IP":{"Case":"Some","Fields":["66.23.203.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fracturedcode01"]},"Identity":{"Case":"Some","Fields":["t1yOAU4gtqN1/j1bAdJVTNnOxK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jW5Zy/W59J1uNg53q0ZLOO9dxLxl3WKemsWir5roCZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:17"]},"IP":{"Case":"Some","Fields":["140.82.16.129"]},"OnionRouterPort":{"Case":"Some","Fields":[6910]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EliteZealot"]},"Identity":{"Case":"Some","Fields":["t1xDnzJnh5zi9vne41Wza0SFmWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UYJRJ8vuhZBSlRdrffss1Fyu0Jd2INpyz5APjCoH5sY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:53"]},"IP":{"Case":"Some","Fields":["78.107.239.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorSL"]},"Identity":{"Case":"Some","Fields":["t1JtoEYBDPCGaSdF6L0FKLA5w/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmgt+TDNV+czGKOI6OdNyuSYsmoCF5nlN55sLkJEPFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:02"]},"IP":{"Case":"Some","Fields":["213.128.141.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedomRelay"]},"Identity":{"Case":"Some","Fields":["tzf7bL9+UU3Y2LQyoUl7nb0MRdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ArLdX0tHlWC4WlaxcSqTAyYHBHJaeET3VHajR2RWe/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:46"]},"IP":{"Case":"Some","Fields":["135.125.55.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Maine"]},"Identity":{"Case":"Some","Fields":["tzJ7VZyhUx0YI4biG0ho/Lfw9FY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oq+K31MtdcxJ2LygpobCHx/J4t4cfwnJ8sB6hKB+Ggw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:07"]},"IP":{"Case":"Some","Fields":["107.174.138.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hastyfire"]},"Identity":{"Case":"Some","Fields":["tzJiFanPsTkmGIQfI6DZ95NasQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8kqEKuXAawXLsNy9My4hhT3od+ZUF8naKztGpvLvCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:52"]},"IP":{"Case":"Some","Fields":["91.203.5.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alien"]},"Identity":{"Case":"Some","Fields":["tx5oqAxRVnRd3ndB9t5eMgKr0JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ZRpIyQ0RoZ2T7k75Jct9qdt+NTOLJCJ90rWD+k6uXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:55"]},"IP":{"Case":"Some","Fields":["91.203.145.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mesrouilles"]},"Identity":{"Case":"Some","Fields":["txFySlvNfTBDcSHa972foljDjZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jRFFZv5/lMcvJhyTlNm5/7V1BKFPxingFy0EgIt7ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:58"]},"IP":{"Case":"Some","Fields":["109.24.157.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hdjfgsfkmNflnzjg"]},"Identity":{"Case":"Some","Fields":["twl4ijWO2DXvhgjSegL10dYy0jQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbECWPZYfNnY7hRdx6oiHF6xR7ftcYWeqWwPkOFlBHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:43"]},"IP":{"Case":"Some","Fields":["162.250.191.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WestonReed"]},"Identity":{"Case":"Some","Fields":["twfJhTspWMef/qm4EuVHtH7haDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PYvX9UjPTrxtHWU0MsnDvPnoUqWtmqh0axlV22SDkJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:05"]},"IP":{"Case":"Some","Fields":["23.134.136.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fb9f::dead:beef:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex11"]},"Identity":{"Case":"Some","Fields":["twR/venFPDkBHKhOXLKo41QwZtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hjze1dhBgWB5mPZ4J8724UztyUDZwdwWmIx2JUbctP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:20"]},"IP":{"Case":"Some","Fields":["199.249.230.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::101]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elhombre"]},"Identity":{"Case":"Some","Fields":["tv1e8oz0TYgmYMBC09q+dxSgWd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNhPPM+QKx+TML9w6nIp8dYSXTg18jRYMF1vH3pAeAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:47"]},"IP":{"Case":"Some","Fields":["185.151.242.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8081]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sliderzz"]},"Identity":{"Case":"Some","Fields":["tvERMwZ4fU9Y+qwnWa/wsutClEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gaFvHr+/KFZAsJZ927WkdUJeunqTJveQkpJhuKj3VqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:55"]},"IP":{"Case":"Some","Fields":["172.106.10.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HerthaGresham"]},"Identity":{"Case":"Some","Fields":["tu18Zvtnr9Bx00CpBAQbHiu6fM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["foHd0Yb77IHgXyqRdAO7Lw2AmWbeVtwIuJF0RuWwdmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:26"]},"IP":{"Case":"Some","Fields":["5.181.80.110"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Neyo"]},"Identity":{"Case":"Some","Fields":["tuQBZ76ELyebEbKg9ZRxg4eqdeU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/8IGT9ULDq2C+/96E2K0muuRvFgFe8mUlBX5y4fxEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:42"]},"IP":{"Case":"Some","Fields":["188.213.31.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:3c:a257::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ttgRCzS9QBrfhbetByXERcVetls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4fdvz8eXkU00Rv8qZtOvCdy9rQIUAw3vh/u6PtWaWFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:30"]},"IP":{"Case":"Some","Fields":["185.207.107.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay03"]},"Identity":{"Case":"Some","Fields":["ttSRapjZkCfaJdQtcNaG8LNmPzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSFJbGmiF91KvXHeNURvYueUgIny9kzHN/FJHQ4gUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:52:49"]},"IP":{"Case":"Some","Fields":["87.62.96.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monetlemmon"]},"Identity":{"Case":"Some","Fields":["ttGq5n6Me7l2yojMSGnK6WA4aMI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnyT1d+AmawolBYn7fuAmeZY9xEZUsX9EhEfK1ldvGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:32"]},"IP":{"Case":"Some","Fields":["162.62.231.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0133"]},"Identity":{"Case":"Some","Fields":["trq5XDCyof91uAteKwiVuX/4fS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sT8LWiEygAngAGXf5Q0pj68DOkIMd8Xg73QcqD1RRII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:03"]},"IP":{"Case":"Some","Fields":["185.220.101.133"]},"OnionRouterPort":{"Case":"Some","Fields":[10133]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::133]:10133"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TerraDelta"]},"Identity":{"Case":"Some","Fields":["tp8eWdpsf9C2FGp2bqXmHYSTd48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["le48f5zb3ER7j//b6EIExTr5IZxSwYnzOA6zVVxI/Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:17"]},"IP":{"Case":"Some","Fields":["23.137.249.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:82fa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode5"]},"Identity":{"Case":"Some","Fields":["tp8bx4q1eVpTEXyY1JBIOkkad5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAB5IpSU8zz71VkElxFVlfMSHY34CGm70Q4bbE8AwVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:27"]},"IP":{"Case":"Some","Fields":["193.26.159.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4c:fe8:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tpP/tP7G1a/EtEAQtRMFhTsM3As"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZFBZfLU2tdDEDjbLVhvOMJJLsG/edEmXn9xx4r+ow4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:55"]},"IP":{"Case":"Some","Fields":["5.45.102.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sauberesache"]},"Identity":{"Case":"Some","Fields":["tn6OSzf+AN/wKDqRrMSHIZf7S/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p0afuV6d0TeZXw/z2a++BKDMVArIS3GV61a3k+lHhDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:20"]},"IP":{"Case":"Some","Fields":["159.69.91.16"]},"OnionRouterPort":{"Case":"Some","Fields":[18732]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:26ee::1]:18732"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["tnxwObBEh4VBKaZrFvXuPP/LtJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WyWyj/C3Dvam9x5G7sdn6u3OTvp0C9Q0R4f1G35So9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:52"]},"IP":{"Case":"Some","Fields":["185.241.208.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["simpletorrelay"]},"Identity":{"Case":"Some","Fields":["tnnGuIRv7lNpzcGaDS0Db0EA9fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+lGt1gwrG67gvFPl0NnvmPZSpG3qxYBdeYhHLZbU0o8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:57"]},"IP":{"Case":"Some","Fields":["93.135.92.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tnbo/sEQnNpCQmrqDG6/VJDbyFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["maPdiFReRT1I+8x5O9esLbtaHq67iGZCg5JwbDRw0Cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:02"]},"IP":{"Case":"Some","Fields":["37.221.198.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:26:6831:11ff:fe02:b39]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tnPyoBboajHtoXPPPMR7+3IbbLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lygOpbBRC14ly3Mo59TA2Q+GEw19g4QYocfcijWEpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:55:20"]},"IP":{"Case":"Some","Fields":["185.207.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["tnCwvhV8wqGbdvBDQbX46ZUNRVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l/bUt+bLbJT2XEF3iaDpQ7Y0ZQOt5kW6jhxq4AsmkZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:36"]},"IP":{"Case":"Some","Fields":["185.241.208.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay18at5443"]},"Identity":{"Case":"Some","Fields":["tl68jVlrvK0K9gksczwAhylZ/Wg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLF9q1Bch38GmhXMzxHfzjRRVrJaG4sdmeTSx+oDxeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:08"]},"IP":{"Case":"Some","Fields":["140.78.100.18"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vps2249555"]},"Identity":{"Case":"Some","Fields":["tlzpuA775GEziQavVh+HE2A1+Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3KZzwTvMbRgs+b5aCNo8BrOzwmRW0rUTbABQxW6pPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:55"]},"IP":{"Case":"Some","Fields":["93.186.200.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:e5c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["tknK6nygO8F4ImCpM9qyXDkfXBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i0h2ywsMJta7Dzi6ZPB8j5vivpNU9p+9lzX5xCdsMBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:05"]},"IP":{"Case":"Some","Fields":["185.220.101.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::194]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frell2"]},"Identity":{"Case":"Some","Fields":["tjj7wDIXTKqUCbg7XO/7SQbUNDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ktEL7/h0Oy28dPupBhBuQsbisA1LKNdPPELyzzWVnsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:13"]},"IP":{"Case":"Some","Fields":["85.10.240.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:282::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["tjZlw1fxDJz6xEicRDwmUcVgnvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BTzIclBddzYzE3VxDm94x+vmVonHbk7KFBcc1Q8Q19k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:49"]},"IP":{"Case":"Some","Fields":["83.97.20.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:54]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumaine"]},"Identity":{"Case":"Some","Fields":["tjYmo8pvBSGEeFPd7G1ARMgLkD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8RenAnVmGjMyILXc3OPIPu44qZEZYezeJC++SIJUzl4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:24"]},"IP":{"Case":"Some","Fields":["79.124.7.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN10"]},"Identity":{"Case":"Some","Fields":["tjIORKIwMCx7+TGeZ1l6m4eIIkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KKtV0dZT5JAWS0nP+rNn25IkdiYphErdPAu4hdrWeuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:10"]},"IP":{"Case":"Some","Fields":["199.249.230.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::e664]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["thrfpZ8gIw616jrLNwH9FXIE7IE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q89Yfm9xlj5nAdIBhnf+MH0rI8NwJzP4+Z96At1X1nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:55"]},"IP":{"Case":"Some","Fields":["89.247.198.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0167"]},"Identity":{"Case":"Some","Fields":["tguU/A/Y328tnGEfd/x+9mZGpFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n03rcXV38Ii3y9q/i+hWw1Pb3gonZ5yV827N512Jg9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:42"]},"IP":{"Case":"Some","Fields":["185.220.101.167"]},"OnionRouterPort":{"Case":"Some","Fields":[10167]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::167]:20167"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal4"]},"Identity":{"Case":"Some","Fields":["te2Z8DkfKXatq6zTmkUFQt/QIIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y78EQGfo1zgXtP35VIVE+ftN3/TFYs93AeyQimCQSKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:11"]},"IP":{"Case":"Some","Fields":["46.148.21.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sillyotter"]},"Identity":{"Case":"Some","Fields":["tew3trqDB10yYIFQxXlBpDU/d8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4hDXicZJL/R5E1z7c/VceTwF1Wu17Cr4DI6KLGg3nPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:32"]},"IP":{"Case":"Some","Fields":["99.89.238.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noname"]},"Identity":{"Case":"Some","Fields":["tecsT2IhF2cHV3kK1JqMNgokCSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AElfZvTyJOoH1uvEepGPWlLCz3IzdpgyKZiTIY4XJr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:10"]},"IP":{"Case":"Some","Fields":["158.69.123.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CharnoTorEntry"]},"Identity":{"Case":"Some","Fields":["teAbDaVQsViAvwl2r1S5CGnH2wg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IASlo0+XGAxahZVihcuJxqh8p33+2+jHFAXCmcaS3uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:19"]},"IP":{"Case":"Some","Fields":["212.51.149.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:5735:5::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uncle"]},"Identity":{"Case":"Some","Fields":["td6Cu+grCVCir7SI8dUeySvwpvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVs6Z9cHaO+72WTnFV7DvGbfQwSZ7StQ7dkf5sigAQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:24"]},"IP":{"Case":"Some","Fields":["176.126.253.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowdaash"]},"Identity":{"Case":"Some","Fields":["tdAbIKw9BNw1W27UtDCOXoHbX0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnRF26+cp5Dn3M8Zu5Hx3qsS3aWwroULfxqM67quy+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:34"]},"IP":{"Case":"Some","Fields":["179.43.182.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e1"]},"Identity":{"Case":"Some","Fields":["tc7Wg0vujjjSxi8AzLZxXwRA2iE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/FLk31djzeDkkhRT4oYSz+L7IRIsSSdUIQi+3OUn58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:02"]},"IP":{"Case":"Some","Fields":["195.176.3.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["C00010FFD00D"]},"Identity":{"Case":"Some","Fields":["tcl9eQKkjlNII3CAOw4By5L+sI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rlFvUfeeGLRMLIP4UGpwBb3KDh2+nwLN6EIeMnmBS2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:26"]},"IP":{"Case":"Some","Fields":["88.134.98.123"]},"OnionRouterPort":{"Case":"Some","Fields":[61000]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lagarennePIrelay"]},"Identity":{"Case":"Some","Fields":["tcY7OsMUFIpoXXz8rRJdMHXl1yU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dvp5qXn4k8Od6UAoODgtXOoXHZmAhTJ5irxDB0S70BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:32"]},"IP":{"Case":"Some","Fields":["91.173.202.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:372:b0c0:5662:3d0c:6091:512b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maiden"]},"Identity":{"Case":"Some","Fields":["tcNCXI/g6aizPFQ5UeyLhXdSXIo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NldFw4QEL8a3L91DVOokcHN+HgXpHEgbbxN6SB7t+iw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:26"]},"IP":{"Case":"Some","Fields":["168.119.118.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:eff5::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["olanstra"]},"Identity":{"Case":"Some","Fields":["tcK16To4b1+LLljP5LmP0d66b1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlS/MNxNmdH6oHd/URy5TeRyJ94mVf36m1lvRrWXQ84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:35"]},"IP":{"Case":"Some","Fields":["193.56.240.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["taZbmXyJhYP5xMoW/mA7c0fIlYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQxPIJzgI4DMvrgeenQ6cumG9kdBM9T/8HtZorQ/U7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:18"]},"IP":{"Case":"Some","Fields":["185.241.208.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heaney"]},"Identity":{"Case":"Some","Fields":["tZTv3boqjxLe+Cff7mmSpusxCyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["in/C07Z9oOKp0ikaxUI7gP4Pp9gyDBaiKfI7+3nEcMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:17"]},"IP":{"Case":"Some","Fields":["93.115.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LasagnaCarbonara"]},"Identity":{"Case":"Some","Fields":["tY2DGTmzXELD5Hsff2ab3+Aao2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4BTMAzKFaSxk2V3dCX5eyqtEvnDa0zaTx5ca+V90BC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:07"]},"IP":{"Case":"Some","Fields":["89.208.105.235"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mwittig"]},"Identity":{"Case":"Some","Fields":["tYARGFW5xFLrIkynkytibijTwuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ciYJop5bOZk5ZdWCM5H8o75q2VwGQ6hEAJyZs/yNhgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:35"]},"IP":{"Case":"Some","Fields":["185.235.146.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:8a40:f313::29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Paphos"]},"Identity":{"Case":"Some","Fields":["tWuf6T+DtPppI0sXoGDoqOdEbRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/LrkC9yCvtQUzBZkY2YxIsjhNxKaE9huK6FkOvBpgVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:25"]},"IP":{"Case":"Some","Fields":["62.210.205.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oniontb"]},"Identity":{"Case":"Some","Fields":["tWK/Mgyb6JZSueFMVLULc4eqDAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PLCZNDjeRtL3IDHvFtzFK0JRF4kA/nrjSGvEMQ73aks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:25"]},"IP":{"Case":"Some","Fields":["5.255.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:9a1f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH101"]},"Identity":{"Case":"Some","Fields":["tVWM+nClMIWCsldnyWmObb5qkLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4+3POvM6JuuV1FbNiFBxHD3kUMTO70Q269KeW6Fl/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:01"]},"IP":{"Case":"Some","Fields":["51.15.150.228"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orion"]},"Identity":{"Case":"Some","Fields":["tUvA63z4If4rmm1xFr7nUhf87jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g9RY4qy3bBNFCTNMtz3Xj0XgvP7NQ2TCOa+vgWDRd4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:14"]},"IP":{"Case":"Some","Fields":["190.2.154.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tUFYHLBZmjYmkZbvzG4j9nt1KFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iNlz7+fJ+btOLWT3yjmJ+v3saJnBLZrLlvpe9zlFeBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:03"]},"IP":{"Case":"Some","Fields":["5.45.96.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:669:582f:2eff:fea5:9474]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreamwriter"]},"Identity":{"Case":"Some","Fields":["tTa3Gh9VmcOfyLGRXS6+Og3rFAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JDerdENHrDNcY5XePgPqJ/ZhxkfaTyGxcRmcVNT58VU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:41"]},"IP":{"Case":"Some","Fields":["116.203.159.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstor"]},"Identity":{"Case":"Some","Fields":["tSEttoWioPz7rkJXOOR40SNhcQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9xXsK2aoNxkYpZH49Y8XflSiNQ1osu3TY0u6tmizL50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:46"]},"IP":{"Case":"Some","Fields":["93.115.97.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:75c0:36:2124::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay18L"]},"Identity":{"Case":"Some","Fields":["tRcZi4azhZwweFfFn2ZgooH8i0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vY3vtiDHFx/mHOq8yV+9gUdxqUV8aRVww+XcA61ssr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:32"]},"IP":{"Case":"Some","Fields":["185.82.127.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tQqYJnpjcT83MZ2JXqEVHEsnvk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/2mERqkGD+LYEgtvf7ZEoAwHkvhc9G+oJ7+P2eGasQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:42"]},"IP":{"Case":"Some","Fields":["82.128.229.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stephen304"]},"Identity":{"Case":"Some","Fields":["tQU6v/hFyWsd2PRdzzLmvh5j8Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y8tnfsv25tOdevvty2K6gillnjvgjRf+FcrgUFO3GJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:01"]},"IP":{"Case":"Some","Fields":["50.236.201.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["tOb8emEyKH3vHbqxL1KQ31RSQps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EFcHPHtsfAliYo9qSTJ1e8eeBykh7d/ReZJcZ14NwFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:35"]},"IP":{"Case":"Some","Fields":["23.128.248.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::67]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcRelay1"]},"Identity":{"Case":"Some","Fields":["tONUawWP62VabYaY2XwUWaLfjnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dIgEfKlKrEE51q+Xlho+ln+lZVAKveLXWQBNkM5PUDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:23"]},"IP":{"Case":"Some","Fields":["130.225.244.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:878:346:1cf9:446a:c4eb:4548:7061]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greek"]},"Identity":{"Case":"Some","Fields":["tNPdvIPjQvQLxaLplyIZ/ta8B8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/NjtKb87Cr+/c2iVatpPcWu0tChKif81+l7SfUZy5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:57"]},"IP":{"Case":"Some","Fields":["173.208.247.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netimanmu"]},"Identity":{"Case":"Some","Fields":["tMr9nL+zTsXarBRpINx9+v6R6iA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LQi/Pauj29KchRuFdH1D6OE56peOAxWf31fvOyDfWt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:52"]},"IP":{"Case":"Some","Fields":["212.47.233.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:630:194::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0162"]},"Identity":{"Case":"Some","Fields":["tMSYlmY4TECRQZenZ+HR0pnnNnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+5Q3o5RHBvQrDA4yFqKkNVYwdpislRKoc8BZ7Nen8fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:34"]},"IP":{"Case":"Some","Fields":["185.220.101.162"]},"OnionRouterPort":{"Case":"Some","Fields":[10162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::162]:20162"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luraleen2"]},"Identity":{"Case":"Some","Fields":["tMOa1GGyGqSNtPs3GwAdkaMEPAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uHwhTlSNeSdaYmiuZuWHpCNhU8NrIOuBp5z56sOrN14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:28"]},"IP":{"Case":"Some","Fields":["144.76.175.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:53cc::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tLublwx+v7AhBWwZLEM36ChVF8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ky3F4ZwzKfE2Gm3A3ZVBYIgtR0bSX8zjhXHbk6h6144"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:08"]},"IP":{"Case":"Some","Fields":["23.128.248.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::5853:f7ff:fe2e:8818]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VagueAnger"]},"Identity":{"Case":"Some","Fields":["tKIAgtofZrxMMg96YA5U+K7DuAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BNiUaXD8XrMoSz6p9abdgj/TSS2WYEsccn3UxULxAAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:06"]},"IP":{"Case":"Some","Fields":["185.67.45.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bagespottedtide"]},"Identity":{"Case":"Some","Fields":["tJ6q5GkOXOdi0d+LAP3gWXCIDq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HPSfBugCe7Hcrn2l+w+vB3I0RBODxkcrQrGAH6knz1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:29"]},"IP":{"Case":"Some","Fields":["103.253.41.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digineo3"]},"Identity":{"Case":"Some","Fields":["tJZJNAuqv3Tpyl1QFORRVTguChM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NaIbAGDLhe1M8ziKrlVs57dDbuaM26VvlCBVeJa3gJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:40"]},"IP":{"Case":"Some","Fields":["185.117.215.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:8781::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["samsrelay2"]},"Identity":{"Case":"Some","Fields":["tI8Cp20C+5HXiOpptm0qAps6inw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N0zJxHdgRJ2WOtnsCE5eHyAzGxx4aDTAJHfs+zFla+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:15"]},"IP":{"Case":"Some","Fields":["71.229.166.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PIAjpn2exit"]},"Identity":{"Case":"Some","Fields":["tFWXysHe2VgFaiNFirSvuOOKunU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQyGH/0vttRUM85V8JIkdoi98aRbN78QFe6d3I1ghXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:37"]},"IP":{"Case":"Some","Fields":["156.146.34.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tEvBlMn/3qvxETwm22B+6x213j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ThhHUQOtltFk8OQaBxyTgaKxFyDLSCDb2S+1oH3eEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:39"]},"IP":{"Case":"Some","Fields":["167.71.33.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firefly"]},"Identity":{"Case":"Some","Fields":["tCx5fMjNY8YPtkPoIKEdET309cg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esw3Mk0Zu3bn9t/FSvzelQ0k58uyDL9mJ3Ipn/ZgDAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:17"]},"IP":{"Case":"Some","Fields":["217.23.8.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["traktor"]},"Identity":{"Case":"Some","Fields":["tCa7WS4gAIt+2enXrFZR7YsOs54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["39k7dRUaqud51OO+gJdwTici5t1eX9/YqB+E89dE4fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:44"]},"IP":{"Case":"Some","Fields":["193.224.163.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:738:0:600:216:3eff:fe02:42]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blizzardpaw"]},"Identity":{"Case":"Some","Fields":["tCYK7Fbc7MMByJsRfXVMYFsPojE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58LjJzRjAwJ3/qoqtq7hCTODcoWnpLd6udbB3fbDRwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:13"]},"IP":{"Case":"Some","Fields":["185.7.33.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dipoli"]},"Identity":{"Case":"Some","Fields":["tCU8o4eq7wZB0Opr2uHF9Ga4kP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wK+ioBvneH01w1fDRBkcN3qaREa0PiRIsPMLybRf/CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:29"]},"IP":{"Case":"Some","Fields":["90.255.244.127"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diggers"]},"Identity":{"Case":"Some","Fields":["tBtnvLxUVWT0OmvxLRZV9tjAOoc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IR+hyJqcs+gZyjC7vgMefHv4shIcZh/dRQTxt7pCX10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:12"]},"IP":{"Case":"Some","Fields":["185.120.77.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transformatorbrand"]},"Identity":{"Case":"Some","Fields":["tBZF8KbvtUFvNc/gIsetRf03TTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TF/74p81mDUOxeznB/+/HPjmgUGB/9K8OnOQxg7NdAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:52"]},"IP":{"Case":"Some","Fields":["185.207.106.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7be:aef4:d6c6:923c:e658]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pulsetor"]},"Identity":{"Case":"Some","Fields":["tBECfJJqm//PfakePK8YVqMh7/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3Ty2gCNEcx2VYBcM0iaDa5eKtVYwfCRwmTmmNPSbh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:24"]},"IP":{"Case":"Some","Fields":["51.15.76.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1e42::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seeder"]},"Identity":{"Case":"Some","Fields":["tAKDJ1aaBZ0VbA2TuxYINKiwnPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMnHIcRJKGYxzRH34QnpyAynVq7TDAKdwegF/u53aFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:41"]},"IP":{"Case":"Some","Fields":["66.183.173.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["s/3XZ+7xXdddyNJeX2rpLZojU7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EuKiO1Rxkbss92AWi8SvShwmaS7MVnSYF0mHwWaY18g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["95.214.53.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra2"]},"Identity":{"Case":"Some","Fields":["s9hLIJRR1gioH16HGJznnj36h7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rp2awZQw8w6byyJFbAByx8U0vxEyf/pWYuXomcK6cKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:28"]},"IP":{"Case":"Some","Fields":["104.244.74.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geheimschreiber"]},"Identity":{"Case":"Some","Fields":["s9Yh4GAgqFigbDeDX9GaB9dID0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gqE5ryc88P2Uju5PF7FBKq3LmkW5dwn8AOmv73r2gc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:07"]},"IP":{"Case":"Some","Fields":["31.52.239.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["punkpop"]},"Identity":{"Case":"Some","Fields":["s9OYs4b68st4tEf7pGvyZIw/SM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6vaYs8GdMojLSRScQzXuF0B90aMwD1Ax+zWnjet6MBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:42"]},"IP":{"Case":"Some","Fields":["162.55.131.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:271:5d58::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theseekingchild"]},"Identity":{"Case":"Some","Fields":["s88I6d9w1Gu+tRZaQtCH2zUidd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eEz76KUlYSWQlBfZhXy7JWKULfo5E9wbmhc0GQCUjeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:32"]},"IP":{"Case":"Some","Fields":["180.150.226.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaninglibertarian"]},"Identity":{"Case":"Some","Fields":["s8cvQtTIQBL5gawa4O7TYjezUrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G/Sp+HCGcE0Vy7KccWg4XtPLulKqvdYRsXGiNka3s4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:02"]},"IP":{"Case":"Some","Fields":["125.63.1.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AirElementX"]},"Identity":{"Case":"Some","Fields":["s7pZkklTxZkbA+qfxQhLs9tVRZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIGirBJ/5rQUx1gnaB8nIFusmkm7u3fJeo9XDL81eJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:48"]},"IP":{"Case":"Some","Fields":["194.15.115.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tarmac"]},"Identity":{"Case":"Some","Fields":["s5vcCkp8ge97PzUJfcQUnwkFa7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WKKaXEWTP9u96n1GwAYQUxeMk0wOyvcuQFGSlcLejYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:10"]},"IP":{"Case":"Some","Fields":["172.106.9.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["s4/nVNfl4Vy4p97fiWAN0HPaddQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["04f2QHItpF3riBydFZbOt/qZuo9QseYg28ws2pd40mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:46"]},"IP":{"Case":"Some","Fields":["185.220.101.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::197]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonkers"]},"Identity":{"Case":"Some","Fields":["s00Hv8u/F5zW0PRAKToXd4iT63Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ABsPuiJASGD214d+nfH8w9P4rOhjPwt4faUdDQtiS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:54"]},"IP":{"Case":"Some","Fields":["198.24.164.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute12"]},"Identity":{"Case":"Some","Fields":["s0zJBWJQhH0ZgPCChbAc8LcYwLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hk4utaDVG7dWInvgW3ENZTiqfQ3M/PV+X5XE/rJmqQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:34"]},"IP":{"Case":"Some","Fields":["162.247.72.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rathergonaked"]},"Identity":{"Case":"Some","Fields":["s0g28gJ8FOQEBHh2iYa/6oJ7Rig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k3Cff4G46AYJDrtD+ygIk4fOCqIPwL5VkgF3huuAKvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:12"]},"IP":{"Case":"Some","Fields":["217.85.169.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ephemer4"]},"Identity":{"Case":"Some","Fields":["s0Djulh+NkYtjeRNrg98q2dI8GQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y56raFN5a46Pitgyjg0PouspFy/UiYKiy9At9aR83FA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:41"]},"IP":{"Case":"Some","Fields":["128.232.18.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:630:212:2a8:a6bf:1ff:fe25:b961]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalyptos1"]},"Identity":{"Case":"Some","Fields":["syy/1kHBrQGgQzEG/hOqpL2fPD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n+Z71U7+DOJU+/Ks9cA2WdCz2CwRv3FCwYrK2keWRe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:52"]},"IP":{"Case":"Some","Fields":["51.77.59.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RagnosystemNode1"]},"Identity":{"Case":"Some","Fields":["synP2kfKJDB2huBsURI5dWjqnyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TZnbGaQQ75oSEBVVZ8nslm4NJ4DhP1OD5riRcUCodaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:21"]},"IP":{"Case":"Some","Fields":["167.86.76.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toshiko"]},"Identity":{"Case":"Some","Fields":["syHONgVT1+Hp+hKajR5NbFNaaB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HXkPyonvUV2pI5NodowaMwhjUy7dBggl7WIgQcoXW9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:24"]},"IP":{"Case":"Some","Fields":["107.175.245.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["torflower"]},"Identity":{"Case":"Some","Fields":["sx2Jgj/KrDHT4hJ85eyiYopsGuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pluqcU+to4RzxSTBgAz8UgrQaBIw/N+wy3ssWvfUB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:43"]},"IP":{"Case":"Some","Fields":["138.2.176.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion250"]},"Identity":{"Case":"Some","Fields":["sxpnenSkdiG8YHOsMgZvhfMDNZQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tekvgOVXLLHIU04wZKhShIZKrh0yP8591QamQPN/U+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:15"]},"IP":{"Case":"Some","Fields":["38.147.122.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["sxHzYvEFF2XalP54BInLDkhNejE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9BpsRLouplu+xeYdeSuOYJ1o/4fnO+yixBcAtoxTq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:48"]},"IP":{"Case":"Some","Fields":["45.32.254.111"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LessIsMore"]},"Identity":{"Case":"Some","Fields":["sw02+6PdMA4RkWoIbXFmpr4xaf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+29q2AXY5wvXrVneOABNd739VVjuOkw6b41j2P7Hiz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:41"]},"IP":{"Case":"Some","Fields":["89.147.108.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9105]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorOnChene"]},"Identity":{"Case":"Some","Fields":["swoMl4V8kmOHngqP0mcoBPQ4ty4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ry9F/a7JRTnlVI/WGf9JTyPrmfC1rTwBKlg7lSDZn60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:30"]},"IP":{"Case":"Some","Fields":["77.57.20.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mangold"]},"Identity":{"Case":"Some","Fields":["svs6MCtW79vwygYehL5FmTBc5Hc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R7zO505wZJHgxHy/VgTWaSJ7zd2kI4B63GDa6sOz11E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:42"]},"IP":{"Case":"Some","Fields":["109.70.100.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::10]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveCalakmulII"]},"Identity":{"Case":"Some","Fields":["suDzOxp+cPIXRMPsN7R1+OwHEuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WLNI/yfeDrL+P3cuI2eyVXFDny0Yy9GLMKesU3RRPC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:52"]},"IP":{"Case":"Some","Fields":["65.49.20.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ecrehd2"]},"Identity":{"Case":"Some","Fields":["sthWC0w26IdFq6smNQzv9iKTp/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pdzJ+kbed6L/07rVeYVMyA0lR8SnTD5oFnAjcfzipiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:54"]},"IP":{"Case":"Some","Fields":["85.214.226.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomfoo"]},"Identity":{"Case":"Some","Fields":["sr1U3sKC3+XGMvofshlpoXwTgic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYy+AQRGIqxX9d8tQBEV98mGTqy0zsg1qttcq2Pz5qA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:53:33"]},"IP":{"Case":"Some","Fields":["91.232.37.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagaminesConfession"]},"Identity":{"Case":"Some","Fields":["sqve0KtR+uHX5oLLMYSf/xAwMLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GcxMcbn4cNqCcWyS5ttueBj+73scFjkbiBzN1eFUD8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:48"]},"IP":{"Case":"Some","Fields":["138.2.22.17"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a2]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["spY2rUyzk7m2sjuCDJmgUBeyqBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2eRW1XK9VnKBCvCSSY4W4qtVJwr6GCVVoLJ6wYl1fiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:32"]},"IP":{"Case":"Some","Fields":["46.4.176.48"]},"OnionRouterPort":{"Case":"Some","Fields":[44945]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionGhost"]},"Identity":{"Case":"Some","Fields":["sn8eh8KaxGTot48BzwtiuzpuDSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ov5HmYKED1randChcaZUdQJuP+xuzHe0bzCE+uyX06Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:21"]},"IP":{"Case":"Some","Fields":["79.41.231.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["radieschen"]},"Identity":{"Case":"Some","Fields":["snzx3O7NUPeZKwfXINf2vw7fnUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZBupcCr8gkdzdHmDPtc0BLQEsDrkXHc4Fjk3zbrYc+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:41"]},"IP":{"Case":"Some","Fields":["109.70.100.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChillOutZwiebel"]},"Identity":{"Case":"Some","Fields":["snSoAY9YDKWrGd4eXeZCXu4unA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqRZ3dFzwSNtRGMUM+2MPXYMurnaLisfQtC+YLDdWi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:24"]},"IP":{"Case":"Some","Fields":["82.165.20.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["snRZnNN/TVssQH3IHkeBNfMpfv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6X3kQGo3q8ovOwZekoRcmRuUBFwmCcInXwja1k8F7vQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:46"]},"IP":{"Case":"Some","Fields":["104.244.78.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f046:56c4:177b:1cd3:5449]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBaconaTOR"]},"Identity":{"Case":"Some","Fields":["snEVogsF1AcwpAIBRe+mM4HZ1Rs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ivk407iiJJgmjEQNJM5felF8QIy6q3CDU6mvbI3CwcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:01"]},"IP":{"Case":"Some","Fields":["38.68.135.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tsarm"]},"Identity":{"Case":"Some","Fields":["sm00XZlvuIAtsUKCv+GiSaQEnKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjlezLOkzRq+YAmdSJzJbPQjZ8uf55RkJzSr7kDm2o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:55"]},"IP":{"Case":"Some","Fields":["84.239.46.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7d8d64935ed96451d1f"]},"Identity":{"Case":"Some","Fields":["sl4CATowaTVWSAJ0JAuLOSqwQXk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3lDnCtqOIX6Q3Ew4ARDCnjZc+7RP3PVE5TXosdSFhCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:57"]},"IP":{"Case":"Some","Fields":["82.149.227.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:50f:3::236]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["slLZR02LNvwSmfbbKchT1okAw5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IZDfKXxL+sirVJN7FVaqdshrLYwEW0AYfNSTH0Zt8RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:24"]},"IP":{"Case":"Some","Fields":["185.228.137.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz3"]},"Identity":{"Case":"Some","Fields":["sk47s/Xl/OuQkFTmgQFgk+YFFHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qbXOpHjnCrqyT46vhZr6VE2FJ0+5rXOUsupWuRcoMUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:49"]},"IP":{"Case":"Some","Fields":["178.63.41.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrwellExit"]},"Identity":{"Case":"Some","Fields":["skr7SfVjY9t0Fd6SY86hJFX0wUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LhHnjt6Ce5AgPblAlkGOHnF9DfPVlpLQyujXS5qwv7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:24"]},"IP":{"Case":"Some","Fields":["93.95.226.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amer03"]},"Identity":{"Case":"Some","Fields":["skiF/iGHTu50vCKMurivEPm3Yqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nD1QaUhhbl6yNweZW1jAMFGcFsoVhUndwj1TWHKSRnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:50"]},"IP":{"Case":"Some","Fields":["192.99.4.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labitat1"]},"Identity":{"Case":"Some","Fields":["sjgHBMU5R7HXLny802HnOQHvdEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NyCSFE1EpV4Ninx5P3RQw6v7lB+q5reUB0SZdQhGh1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:48"]},"IP":{"Case":"Some","Fields":["185.38.175.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::130]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion251"]},"Identity":{"Case":"Some","Fields":["sjJSNHwzaOw9QkSa/DFQK08AA3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L/DuY4cViHeXXIg4+bvArEyrumfbdvyjpPJEnzkA/hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:11"]},"IP":{"Case":"Some","Fields":["38.147.122.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beattyNetRelay"]},"Identity":{"Case":"Some","Fields":["siMqzTYtOGKTMORN7dDqyafTrOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7f4vGWZxkCpCWrNuO4lZ55BxGyQn/l9LCl9p1ok7adE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:54"]},"IP":{"Case":"Some","Fields":["50.64.108.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer21b"]},"Identity":{"Case":"Some","Fields":["siDxjwjMDnsEe8ZZlEDsCF+HGxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dNDhoxrbJ+8wb0tPAIcneEcBB0VWxbigA3eBs+dpIXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:54:14"]},"IP":{"Case":"Some","Fields":["173.208.190.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex41"]},"Identity":{"Case":"Some","Fields":["shl8I6T/XRxJ7kW6doi6i8zYmgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqfW1gN5JbMacub4hGq7B+SnK2BFuTxH2dC1nhfK6rY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:46"]},"IP":{"Case":"Some","Fields":["199.249.230.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e640]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sakura"]},"Identity":{"Case":"Some","Fields":["sg+mwbKw91SOyENKRvNhFwDAV70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wt8ukEPVPNKeRsuHhomzXeeoyqAilEhKuWkJmp5zDhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:01"]},"IP":{"Case":"Some","Fields":["49.212.166.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eskel"]},"Identity":{"Case":"Some","Fields":["sg8ImpSQLrQ/d2JtT00XrIiLihk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDDEHDL6IRWBgIVq8Tm50nNRE9xUzctzbf7rIRjabNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:21"]},"IP":{"Case":"Some","Fields":["107.189.7.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:b107:c02::dead:feed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hp"]},"Identity":{"Case":"Some","Fields":["sg5dnbUpHRdBFsJuCRemmu9jXV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HtAg/ogcwGgLwNF4ZKCOPevHMJ7ozwe46nt/PHKqGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:43"]},"IP":{"Case":"Some","Fields":["104.244.76.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8e8:b7c1:9d5e:ab59:545c]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hel"]},"Identity":{"Case":"Some","Fields":["sgrIzlxdF2Z1nDD2k2zu9Q4/HXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/VDrKepNeJUk1d8BXa9TbhVBCX1dySdYVTBMSsp6xYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:37"]},"IP":{"Case":"Some","Fields":["83.137.158.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cry"]},"Identity":{"Case":"Some","Fields":["sgTedbNwZO9qTGuvlVxXJFeNCzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dcTl/BeFOe598yhyikbfZrcaBxXTOd04AoUR5yr/Bgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:01"]},"IP":{"Case":"Some","Fields":["192.42.115.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:101]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev13b"]},"Identity":{"Case":"Some","Fields":["sfkm2jiVqJryiGI/Wk+ROXkpnFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["csKZ+3ILIeaAYZwN1GKMtFYPcnYCITdmlxy7eSzWqKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:58"]},"IP":{"Case":"Some","Fields":["51.15.59.15"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1419::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThankYouMrSnowden"]},"Identity":{"Case":"Some","Fields":["seN7eNWzVLmbaRk6m2zvbknfgiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["03CrioWK2eE/DXmPklQRli5PlzWJlIGZaLfN0CKN93A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:13"]},"IP":{"Case":"Some","Fields":["161.97.166.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:8483::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange033de2"]},"Identity":{"Case":"Some","Fields":["sc5LWnp/EuLQ8i9oNBAdr/ua5Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ljHSwkfy4OH8VZjkEIgCrUoTgbLw4JBICjLfNKB21LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:28"]},"IP":{"Case":"Some","Fields":["80.92.204.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neviem"]},"Identity":{"Case":"Some","Fields":["sc1X6gpjzEXM0U41YM/I9SesvY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m6TJL02GTUPQuFvEI26NqyFojFmWBAfAxiH6BnLSOfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:10"]},"IP":{"Case":"Some","Fields":["178.41.161.172"]},"OnionRouterPort":{"Case":"Some","Fields":[7149]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yetiready"]},"Identity":{"Case":"Some","Fields":["sbaHw8TvRiSdY43Od93HqqOfKZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tnhdvpmo9CYd2qQzvJy6I5G7/9bvlqQo+U70sEt1WqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:15"]},"IP":{"Case":"Some","Fields":["91.203.144.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenWoRd"]},"Identity":{"Case":"Some","Fields":["saDxFDeJRmqt1frllIyBOFSO7Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NWxg4bQ0S+1Wz0R73n7nDyZDC2B7BUneoJmkAa2SmxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:19"]},"IP":{"Case":"Some","Fields":["158.101.132.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::c1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bazinga"]},"Identity":{"Case":"Some","Fields":["sZjAtLjFUfF0+7hBoXJhbj2zEk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMDxNWVysc5564zSzkt7iVxW57DA6glhA/LqdOpy2tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:23"]},"IP":{"Case":"Some","Fields":["93.180.157.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::2ae]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EGOTISTICALGIRAFFE"]},"Identity":{"Case":"Some","Fields":["sX1zxqwapdan769Th2i/NU8lR64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RFMXsExJTcnpF0d2vOO5xK6F/GwS03vWIM/tuqOLCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:43"]},"IP":{"Case":"Some","Fields":["65.21.54.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6abe::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["sXxHmIBmCete/wzsnFh2kNnpReo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZSyCcm10kq8rUW7jklBkK5ypJsTc9YLvP5bu+ApfsDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:09"]},"IP":{"Case":"Some","Fields":["84.19.188.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wedontlikenotseas"]},"Identity":{"Case":"Some","Fields":["sXryY9KPcawE7W0Kfpel6C8t8k4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1R3hx3TWxsxRIgO5Ixmn8Vo4LwFneKJ1cORcFcZbC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:40"]},"IP":{"Case":"Some","Fields":["165.22.191.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["arthur"]},"Identity":{"Case":"Some","Fields":["sW46OXoHz+SiPmMPxusTaQCDcVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wml/dKSRiN4tVSNJ4ILzDVFPBdJQeK58zyVRuEl7v0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:41"]},"IP":{"Case":"Some","Fields":["185.44.81.4"]},"OnionRouterPort":{"Case":"Some","Fields":[20]},"DirectoryPort":{"Case":"Some","Fields":[21]},"Address":{"Case":"Some","Fields":["[2a0c:8881::e464:4bff:feb8:16c1]:20"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leSablier"]},"Identity":{"Case":"Some","Fields":["sWv+XF3S926rcuP9QaBicGkSsPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WzFJexVVBTbK78UE8fERY+uQ8y0GoofMNTtRz0FjDNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:40"]},"IP":{"Case":"Some","Fields":["46.165.253.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Loukanikos"]},"Identity":{"Case":"Some","Fields":["sWb+riOWzTpLlMfPBtFTnxcrpA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8NLVm6nuvEGJf1dZSwCZszTVuOtZGVPwUrLO7JElvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:58"]},"IP":{"Case":"Some","Fields":["146.0.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waka"]},"Identity":{"Case":"Some","Fields":["sWHgNq1D1/jSK6GPthIgDmphOKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xyln8AWliXSittPx4kmxErXn8z/EroDGrPtKUd4oC18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:21"]},"IP":{"Case":"Some","Fields":["109.251.55.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:d0:fc27:0:dea6:32ff:fe44:be84]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cytherea"]},"Identity":{"Case":"Some","Fields":["sVwAcer1CKruKdudB2B8hKot3rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MTqH8uavXrIgPw1IjpkCPecTjhwQQaGgxm2mfwWBhhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:50"]},"IP":{"Case":"Some","Fields":["141.105.67.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ASCII"]},"Identity":{"Case":"Some","Fields":["sUyiTX/GlN3h6NOy6xXQ0PhsEr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u2luIi9r4O9QOcYGkV+EudfLPRlEJCRTRjAXJ6GYxtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:17"]},"IP":{"Case":"Some","Fields":["81.170.128.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wardsback"]},"Identity":{"Case":"Some","Fields":["sUPUObctI5pBn43OB7io6xtIb6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1DMbNv90k9q9/wNIsmb/QEofQ98ZZmNAFSUFb3Djpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:47"]},"IP":{"Case":"Some","Fields":["212.129.62.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay19at5443"]},"Identity":{"Case":"Some","Fields":["sUM1lWDhkwNHgl1EGvkec3pLnfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiOfuRkBt2doi36eXC6aBi1Gu2dD1JzFAzGiqD0EFjI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:12"]},"IP":{"Case":"Some","Fields":["140.78.100.19"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porte"]},"Identity":{"Case":"Some","Fields":["sTwsVp8/0MUwt9luX/eTPfeg6DQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQYNtp45/fdz00XSOyZAXTnPHc2q784BAoCXsw2/XhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:08"]},"IP":{"Case":"Some","Fields":["85.208.144.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:8740:0:3::13:4008]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste51"]},"Identity":{"Case":"Some","Fields":["sSfeS9w8zoVkyErWt6S2RJuQpKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXso8OUo7zTwYHIrlQe7hRtR/lgiQ3LamZxBkwR40UM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:01"]},"IP":{"Case":"Some","Fields":["89.163.128.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::abba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra40"]},"Identity":{"Case":"Some","Fields":["sSU28vG7/gtH+q0NXQW/rsbC3p8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mbHCRUy/rt71CFlGF6jqkvGcS7DDYXRPsSZ1hXAphOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:33"]},"IP":{"Case":"Some","Fields":["107.189.30.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["sQG4Hzy3woSt3xnNu7zwSgUMYG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXFJ8XV2DsN5OIhGnMYu7CjF8UciFTeFmSrLfWRgBzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:59"]},"IP":{"Case":"Some","Fields":["23.128.248.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::80]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sPWm+b3iGu25Ku6lvJ0CHLlrfcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tip34R4lLT5TaOt6grtI9jgcILvrOsTGp/19E5qrFGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:57"]},"IP":{"Case":"Some","Fields":["185.244.192.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["root1Moh"]},"Identity":{"Case":"Some","Fields":["sPR5p3FOQw+v+jAHFiQ11qPB+mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RLdiSQ4fLEGcvJ9S+SDFMd5pWb7oJAKb3OKuuOnNNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:10"]},"IP":{"Case":"Some","Fields":["80.140.14.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sPHVRbmD5CaA9/Igpp15/4IcUOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jZXHPQMXhtGEFCQ60Az/Q5kazv26AN3FoNj14M3kLg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:37"]},"IP":{"Case":"Some","Fields":["5.45.106.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididntedittheconfig"]},"Identity":{"Case":"Some","Fields":["sPF6VvqGhsyzPT8wL8QPBvRjtK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubH3EZcC11c3lyrbUVhuk3jc3PGJakaIFaKIU7FANSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:28"]},"IP":{"Case":"Some","Fields":["142.93.169.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SkyLights"]},"Identity":{"Case":"Some","Fields":["sOk7EL2BclCoGKv39cJESvNk3Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59ulu0LGGNH7APw4r+AnxNTMHF77drkuVqYTSvDjuYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:16"]},"IP":{"Case":"Some","Fields":["173.237.206.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow005"]},"Identity":{"Case":"Some","Fields":["sN1Se+AYQtRgMCZfvZkoIXpwnyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ar0urT1GeLQAGcHIIdgxztuuw05d1vCvdBLW6AXZGJY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:37"]},"IP":{"Case":"Some","Fields":["185.195.71.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARDIS42"]},"Identity":{"Case":"Some","Fields":["sNsvFz8Ns2S6v3pGXXlrPASPHzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VtGuh+0C96nTDRxp1tPTTTwtpTrczMrOR6ZRNY1ZwT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:52"]},"IP":{"Case":"Some","Fields":["217.160.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:803a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sM8xMagJf/r56bVFZvEqLG5WDEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8Hc8liUzHPNumyrt6eoCSOKY88AHuYjHhEZO641540"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:15"]},"IP":{"Case":"Some","Fields":["37.120.185.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexColinNSarah"]},"Identity":{"Case":"Some","Fields":["sM2fm1tgZRrcWRnA8eqofbodkkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DKRzDlEYDB6ZqNIfzjwt84/tEgawFTiRxVv8ejX9pqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:24"]},"IP":{"Case":"Some","Fields":["199.249.230.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::111]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EnjoyFreedom"]},"Identity":{"Case":"Some","Fields":["sMKsST+IBpIP6gBClTMpIwnuw58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXXxF62oXEuJmBnJ9cWSR/B/55vErXnNtueYUFIiIm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:48"]},"IP":{"Case":"Some","Fields":["79.41.84.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor70IPConnectinfo"]},"Identity":{"Case":"Some","Fields":["sLXfMkAW3N3iIKAfowlUXKYWTXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kA/C5FDx1+Cq8/ZLd7WzAAFQmKgPjLgVctyHSv3qL/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:58"]},"IP":{"Case":"Some","Fields":["194.5.96.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:67c:440:f240:194:5:96:70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast6"]},"Identity":{"Case":"Some","Fields":["sKE0yvRJSzkT4F20Y0djPZxKios"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCwYnhCplkjeZOJaTWwW7zKBAMsIzZG9iTbgEDmbMrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:12"]},"IP":{"Case":"Some","Fields":["45.142.213.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:7c43::70f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XFMRELAYS"]},"Identity":{"Case":"Some","Fields":["sJDGDM6OsHO4lxHfPZ5EVQjGaZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTNzN3qmSzxwYRCYBMzpR59j94yOPO37N7x209+UqHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:58"]},"IP":{"Case":"Some","Fields":["188.214.144.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9000::94]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit12"]},"Identity":{"Case":"Some","Fields":["sIm+1TnM/2ZgarbhIWolkBx+zm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ea74VKXrF+ky+fY2TNWP4tL00f8BW+o6SmCSjt7T8po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:08"]},"IP":{"Case":"Some","Fields":["37.252.254.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1b:aa2::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitMoldova"]},"Identity":{"Case":"Some","Fields":["sG8JOj1N+tPpI/TyinSQG9T3TrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["goRvR+5/jhm5+8egnJ1Ob5nJtdECPPOaU21W7AtpcGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:21"]},"IP":{"Case":"Some","Fields":["178.17.174.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:8b::5b9a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schwurbelingen"]},"Identity":{"Case":"Some","Fields":["sGMCumv7VQwug8wkmmQ3vzt9fWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ti253BzFXBCOTDkD9pl8kIfxqylpAv8ZBgQfEHUk+nU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:19"]},"IP":{"Case":"Some","Fields":["202.61.192.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coen"]},"Identity":{"Case":"Some","Fields":["sFtLtk/+U3Pik9LACHmPupyQi7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhkLa0wp8Ly9TTSOjqSTqmtIwEntXf4OatT+JDZOMyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:59"]},"IP":{"Case":"Some","Fields":["185.154.154.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a0e:b107:c03::dead:feed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipressedplay"]},"Identity":{"Case":"Some","Fields":["sFj73qaXdMKOrBER4We8CtSpBOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uzAAJgU3agoNb6hR3ManlOMSoO745mNGgSfiAVZgd8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:27"]},"IP":{"Case":"Some","Fields":["93.90.195.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:82ca::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoingNowhere"]},"Identity":{"Case":"Some","Fields":["sFXBf3mQRaVhyysKgaqRcnFY1Lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2zs2hpjFTVIceL9xGUGN2AH/n260uSApdL7zhgGVnvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:04"]},"IP":{"Case":"Some","Fields":["69.164.210.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiubel"]},"Identity":{"Case":"Some","Fields":["sFUxdarbBQHlph/GHOo5cL4TD/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/otTLGt+jWF8Jfw6weH5IqklrJ0ck5Xia6YZ0xsSZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:54"]},"IP":{"Case":"Some","Fields":["49.12.115.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:3bd0::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN9"]},"Identity":{"Case":"Some","Fields":["sChweWnY7YTm3qWXqIT3iq1HGXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["263xdkCTHBp1jBwSQcSgixYAyPfNS4fiD+KuvNP92ls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:41"]},"IP":{"Case":"Some","Fields":["199.249.230.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::123]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra50"]},"Identity":{"Case":"Some","Fields":["sAV50aI/H/sTog/WUOpg02fzZQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NO7PcsOxWQhbTjAGnySsbMvkTd9tRbf6pMfJQERrfDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:14"]},"IP":{"Case":"Some","Fields":["45.61.188.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yahta4ee"]},"Identity":{"Case":"Some","Fields":["r/0UfbzAZaXO9yWLwTZ8w1hVpDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MlCyquNanySMsfrv5eeB1NF9uSSqI2qLX1SkgnbIw90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:38"]},"IP":{"Case":"Some","Fields":["5.9.156.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sulaweyosrelay"]},"Identity":{"Case":"Some","Fields":["r/j01Y4qX+rSjR7Uo4+41g5AajM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kWOKm2sWMnLbgX5GGFxp624Donvk5oGiUZkbCzN3qzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:27"]},"IP":{"Case":"Some","Fields":["90.146.66.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["osterreich"]},"Identity":{"Case":"Some","Fields":["r+rzqeDbHYN76P8Zg7oMZaPnHXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPRCuKQqMIr5hC9m+iMbEDIUmE/14YdCKyTLp8d5b84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:41"]},"IP":{"Case":"Some","Fields":["172.106.167.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thicantor1"]},"Identity":{"Case":"Some","Fields":["r9hITw2E+V6qEdYtgidn/mOBqV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iuOFK+4YlUhReSdsmjZExrt3rllwC5fit5rZyHdyV+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:55"]},"IP":{"Case":"Some","Fields":["188.165.6.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:c513:0:dead:beaf:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Saga"]},"Identity":{"Case":"Some","Fields":["r8DJ6uwdg01SAWZjuKpyI2jxtZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tbW8ZBtUlevBS40vhn79OxxmIYTei7I97XBYcgqPDg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:13"]},"IP":{"Case":"Some","Fields":["83.137.158.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WGL4Freedom"]},"Identity":{"Case":"Some","Fields":["r7ZSL51SmDC8cE6H4D44HlaTuUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJqdStf22I0wo4wd/UdQTaVw0TRvY7qum0TiSQ74dpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:23"]},"IP":{"Case":"Some","Fields":["212.227.148.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeerWienerInvader"]},"Identity":{"Case":"Some","Fields":["r5r5/CAY1ry7tXwvFBF1qlX+YhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYTGkDRcRhsrA70LMR/YYulSqCaQ5/UnnjlCS61z3Lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:55"]},"IP":{"Case":"Some","Fields":["138.201.247.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["notoloke"]},"Identity":{"Case":"Some","Fields":["r44thYWWV5vozEhZXBqwmOW4Pnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6FuCDMEzXUd00ZJOVZfZ5DTrK+VVRVN9mcxtvCKYFy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:48"]},"IP":{"Case":"Some","Fields":["94.140.112.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NLfreedom1"]},"Identity":{"Case":"Some","Fields":["r42ydZYCebh/CYsWzJx4CS4RjbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jvJf43X2J/mw/X5pmfY1aqwt9qAoBOiMLxPeNIYfqTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:49"]},"IP":{"Case":"Some","Fields":["103.251.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tashbacca"]},"Identity":{"Case":"Some","Fields":["r3gbx2yX1jcmgL3GdaK+i+51vTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Miuz0hfNTn9PfmuyAVIPWtmaJNqD1lcxYyppkTMLyMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:57"]},"IP":{"Case":"Some","Fields":["5.255.98.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:234b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev10"]},"Identity":{"Case":"Some","Fields":["r3CUtihk3pQdzYii8Nuv7POZfkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d+LxcgFqt6NoSkBGAnzB5UU2mHotTTfZlpXPC1Zd4ws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:35"]},"IP":{"Case":"Some","Fields":["185.170.114.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:928:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousNamespace"]},"Identity":{"Case":"Some","Fields":["r3B5DB5qNSFA6wOcFsqm+Z06Wfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jHl1SgWjGhbPbp1eLVC19lQhittuL1AVAp7H3q7pO/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:15"]},"IP":{"Case":"Some","Fields":["79.116.25.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5a80:1210:a800:6af7:28ff:fee5:6b3a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cerberus"]},"Identity":{"Case":"Some","Fields":["r2v9EBwNtXV2x2fkinz911CQZyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i+tFfQrZnbiW3dLaYfW8apHm2qGcm2XFSyf33ijUUyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:30"]},"IP":{"Case":"Some","Fields":["193.1.12.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:770:21:193:ca1f:66ff:fec7:9862]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex97"]},"Identity":{"Case":"Some","Fields":["r1cnXQZ6zx6t5R4yhgyOVpGQuyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tDDKMFIdnQd5DnR/+0NHP7iP2MXF0i6sIINCnouWaXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:16"]},"IP":{"Case":"Some","Fields":["199.249.230.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::186]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DuckYou"]},"Identity":{"Case":"Some","Fields":["r0mXc44M/AFM0E+wmmcNLF8eeaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qDzUzfxFnEJ7ObH35hCL3rwJMtoCzObZSUbBzXbZhx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:24:34"]},"IP":{"Case":"Some","Fields":["185.191.204.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra31"]},"Identity":{"Case":"Some","Fields":["rzUR+otBjHVr26l6bt6XDR908n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQ364sEFCSObMzJXQXCwJkYQC/5GKeqCLswSrPtItmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:24"]},"IP":{"Case":"Some","Fields":["107.189.11.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saturna"]},"Identity":{"Case":"Some","Fields":["ry5g3uqZcfaVakbOC2vJTvVYJA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbDJVvOEqz1fFpCsIbK6uw6C7dTfkI13yB8z8Ep/8xw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:36"]},"IP":{"Case":"Some","Fields":["158.255.215.41"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justinjoker"]},"Identity":{"Case":"Some","Fields":["rysBTL6Y0uZrKIMjtH8ujd3ZkE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cUC3EhzOZgVBmS9HNDnMZBF65+lrwme9xOoJO2ocuLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:39"]},"IP":{"Case":"Some","Fields":["144.76.166.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:42c6::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["duchin"]},"Identity":{"Case":"Some","Fields":["rx8VgZrHZtZQiisF2piematRH58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FIp0i4K4COiUaeNX20tcLL2D1Gfy4gW3OgOvoJZTxHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:49"]},"IP":{"Case":"Some","Fields":["91.203.5.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zebra"]},"Identity":{"Case":"Some","Fields":["rx6IsAWCzYLqtoxQIR3qR0KdXos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNDjYg7xpj/4x0JJ5xZbgYJ5ouwkbiC/YLxDwqjMKJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:41"]},"IP":{"Case":"Some","Fields":["109.70.100.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lonninator01"]},"Identity":{"Case":"Some","Fields":["rxhSqs9JB1XtAKJFRhjIyNFy0wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R60j/VBCqTwgqp10Id4tousJzvMTCVCrPG0Hj+RpUX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:07"]},"IP":{"Case":"Some","Fields":["84.61.104.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MidwayStation"]},"Identity":{"Case":"Some","Fields":["rvbB+6D8FvSTFji/BlCFuXTT6Q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mhhPYQ5YGta7UovN2hnl+mfRGoXskPBaNDdEIyiFibQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:26"]},"IP":{"Case":"Some","Fields":["178.32.233.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:5377::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glxbltrelay"]},"Identity":{"Case":"Some","Fields":["rupdjLLqGb0XrnBaaOKUqybyeaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AKGyZ9uqcY6moyTdvaMDV2Z8xCyNSKMba9gQNsavWiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:07"]},"IP":{"Case":"Some","Fields":["45.15.16.171"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1c80:1:1042::1009]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["str3DEicebeer64"]},"Identity":{"Case":"Some","Fields":["rt8fzmoc5/qpJQRjdXt2hgrlgmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5DTd8cP8ypjdyBpf8laEyIWraSUAlpFVwGTgRDbgZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:51"]},"IP":{"Case":"Some","Fields":["85.214.199.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8064]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:436f:5800:c550:adf7:932:c52]:8064"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["linss"]},"Identity":{"Case":"Some","Fields":["rtrHCBrhS40kHs8P8XooWKtDg9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3j/6Wybp8otVD+sHD5AVW8v0rVH5P/8jzi0OlLAz4pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:06"]},"IP":{"Case":"Some","Fields":["45.79.108.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01:e000:131::8000:0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra91"]},"Identity":{"Case":"Some","Fields":["rsjVRd3twDEfp/n5qIXWdNHxwv8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oOP5C3lg8GbM3xD/hqKdoVR9q408YEX8X6wdy7ZWTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:51"]},"IP":{"Case":"Some","Fields":["185.125.171.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mustang"]},"Identity":{"Case":"Some","Fields":["rsMub1oM9DG1m7PqGJ0Igr916j4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nZBjJAvc5jP+Ic+6wD+WPlkz89o8hPfX2a6ffnI1iUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:49"]},"IP":{"Case":"Some","Fields":["45.135.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM07"]},"Identity":{"Case":"Some","Fields":["rsB0B+cwcbhung7NwTwD9aOswb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m6tfiEAkuevK0NZzVqzmjRKbP4mBQrBS2GLLo9pJ/98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:35"]},"IP":{"Case":"Some","Fields":["185.239.222.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["rq5M4vsMtz4Hqu05o92O0Y3iK5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7i16PfHTn7SRcgcfndPY+mqlBy84Jlsl9J5W4/q3pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:15"]},"IP":{"Case":"Some","Fields":["23.128.248.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::56]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rpW9o3pbtGhf67fwZknWzpSbUxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I7U48BsdQhbr6MxQMtvWpvTxN3634kviC+Fkp9zCdWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:35"]},"IP":{"Case":"Some","Fields":["176.31.229.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rnol5rZWpiUNn+02LlSNXzPmud8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thzj0F0t3Bs4sxr6x02dFYsfOVqjqrE2BBtccXCi6W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:20"]},"IP":{"Case":"Some","Fields":["59.106.211.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1blu2DEicebeer73"]},"Identity":{"Case":"Some","Fields":["rmzitALCkw669ZphboCtQ/erEjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oBqsEO73/c0el8WaXzYhk3rJIyHFcscx3UTFJSAb+Sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:56"]},"IP":{"Case":"Some","Fields":["178.254.44.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8173]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel21"]},"Identity":{"Case":"Some","Fields":["rmqMGOdJm1hs02JGrEvK/7v5OrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X1wQTWQ+hSSJv4qyUF4S3sACpAoXdPQCFHSoxda1qhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:12"]},"IP":{"Case":"Some","Fields":["89.163.128.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::10cc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sc1ptk1dd13"]},"Identity":{"Case":"Some","Fields":["rlv9LPo/73uRBnvh/LILYs07a+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fq5ikX85o+E+G5k29ggICB2DwtRuN/NgygltoE3JR5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:40"]},"IP":{"Case":"Some","Fields":["95.216.5.245"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:60a::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tadpole5643"]},"Identity":{"Case":"Some","Fields":["rlQdBrff/UwqJUIDz8QbnL50sFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+hJNbgumQ881tGL/2V26pMipjHfjaH4bbpSvLBGD4kM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:04"]},"IP":{"Case":"Some","Fields":["107.191.39.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5:53f6:5400:4ff:fe11:b4b2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["sinkrlogin"]},"Identity":{"Case":"Some","Fields":["rk+uLrXcXQeEWPD8vys39dc/CGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HUFD8rOaITd0O7Wsk/AaoRjTOgz4jmtkBWPKjcEp3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:32"]},"IP":{"Case":"Some","Fields":["95.216.198.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["umbriel"]},"Identity":{"Case":"Some","Fields":["rkB1Nd2Qj/w8eg+EKM4xUZYlRBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIay5e2j2Hi8UyHG4LdIAqtRJ75+4h5UrnLLlDC47uM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:36"]},"IP":{"Case":"Some","Fields":["185.243.218.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange005nl"]},"Identity":{"Case":"Some","Fields":["rjw7cWW5EuGqXsTxd8qOTafI7Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KmTBlacjJrhxLenJLa4ivs1r7n/ASSuYGfX/LlLzOt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:14"]},"IP":{"Case":"Some","Fields":["51.15.4.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["south"]},"Identity":{"Case":"Some","Fields":["rjN86UXQaZZP14qU4dMqqUzX2sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QGFI8EbTDBshVeQsDkjh7kMbSjwguQtHsxRGjFMABCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:28:05"]},"IP":{"Case":"Some","Fields":["83.229.71.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6329cogwheel"]},"Identity":{"Case":"Some","Fields":["rh0+zLkn8P8e31nqCrmU/nUcVYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVCKTRqTl0urn77u5j0onLBq4998lUzHyUlxCdpHVOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:07"]},"IP":{"Case":"Some","Fields":["114.34.165.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gayming01"]},"Identity":{"Case":"Some","Fields":["rh04a8rVcEu4cwCFCUAsRXmByPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w8DD9huyRsyIKbfDCBwTFwjtlfYYTWKW5Kt8JKfqpfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:38"]},"IP":{"Case":"Some","Fields":["74.208.203.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:229::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockstars2"]},"Identity":{"Case":"Some","Fields":["rhsam0Tch4IdafBNxJM97MVV5TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEKL4aksiZzYmPjaQkf0p2YMBjjSGGm2ZHCIUzBCo88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:58"]},"IP":{"Case":"Some","Fields":["174.128.250.163"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnR30L2"]},"Identity":{"Case":"Some","Fields":["rfmhauhHjN0gPKNmSpuMo+OLd64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["crkfJYos80mOHkJomxMH01BbVxpqSd1SgyYhCQF3KNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:45"]},"IP":{"Case":"Some","Fields":["185.4.135.157"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:217::e528]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["rfDVGUbaMpTB8kKwrK3JH/XwWO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kv1B7lXkYQtR6OJZYc+PIx03qlSrSc0plrK5qosnIoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:53"]},"IP":{"Case":"Some","Fields":["185.220.101.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::206]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MichaelAngelo"]},"Identity":{"Case":"Some","Fields":["reo9Vgn87B7y9EJsSTE+uC3+Pms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ySiagQ1Fqwqp7FsBhO1M12v/rpetjqPxqMHuV3ufi4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:27"]},"IP":{"Case":"Some","Fields":["178.63.40.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:205b::2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l0bst3r"]},"Identity":{"Case":"Some","Fields":["reHP1ppvu3rClw195OQCu1Kc9i0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6/DhB7927kuA/xWT0ZjGXQiO9+SuDnDbwKH49vB6doA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:10"]},"IP":{"Case":"Some","Fields":["46.249.49.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1ca8:2e::c80:519b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vaN1ph06"]},"Identity":{"Case":"Some","Fields":["rbuImo3LLmDwAcyerLw3rdhEw1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5aQeRuucSnS6qFMvgZB0AXraSQWkhQClL5YbS0ZYkrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:44"]},"IP":{"Case":"Some","Fields":["88.214.35.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange008fr"]},"Identity":{"Case":"Some","Fields":["rbmLJ9ej+1cyBo/SNgKhvLO+nzg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gryDaI25962BzoHG/Vh0telRpE9XzZp5gngW3Idquyw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:19"]},"IP":{"Case":"Some","Fields":["62.210.105.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BerlinSpechtpark"]},"Identity":{"Case":"Some","Fields":["raqwD3E82RM+tltKr0tV0u5qPMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OEEtwmazkIALt+HADCWnW0TT2ec12YG5YRlevWBhA30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:40"]},"IP":{"Case":"Some","Fields":["80.144.172.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ralMSPLZoO0K62UxHA0dXLOOE+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RzWQxN6XMDAj/HbAiWt1Tvw5lvxw7H09Cx3i8ZflyuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:59"]},"IP":{"Case":"Some","Fields":["185.220.101.35"]},"OnionRouterPort":{"Case":"Some","Fields":[10135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::35]:10135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv04"]},"Identity":{"Case":"Some","Fields":["rZsiQ7gSP3OtBbBd1D1UImdW9Kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/t2IVl5hVuTTPUVo+fBRmARp0mOrQ7ZG32Iz+guFrwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:51"]},"IP":{"Case":"Some","Fields":["162.248.163.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor1e2"]},"Identity":{"Case":"Some","Fields":["rYbNGklXPVKntvSjV1DxYarYnIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fVwMeziMb0cNGOryhLvc47xaYTggecc3a6xb+SXe3Mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:44"]},"IP":{"Case":"Some","Fields":["185.195.71.244"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rWREwCgP+8UeCIsqfGi2P5EXytI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJVVmWTwc1igJ2F4IplnOO/nBU1LYu9djs7acEO+UGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:22"]},"IP":{"Case":"Some","Fields":["5.183.87.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNickName2"]},"Identity":{"Case":"Some","Fields":["rVZVXDzM6epJhylnsMkPFp5+t1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdrPHjCJpcJ5MVGmhgBgCLWLCKD7fE22vQrRwoCxNVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:43"]},"IP":{"Case":"Some","Fields":["176.98.22.123"]},"OnionRouterPort":{"Case":"Some","Fields":[55555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sputnik"]},"Identity":{"Case":"Some","Fields":["rRlJDH27JtOmjvyCT2fmmwqW5gE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i4YXGQM2leJaeFAMM3t0X+I0VTx4nlqFDdOLP5LyDJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:58"]},"IP":{"Case":"Some","Fields":["188.40.128.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:1ac1:dead:beef:7005:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["rRR5htAz351GmEYmISqyUQ2WNNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["33X/jzIxPkAsWRqJFyaM8Rq/Lw2ZOX7bgCpfmGGONmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:03"]},"IP":{"Case":"Some","Fields":["67.198.37.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen"]},"Identity":{"Case":"Some","Fields":["rQ/P2D6kiZ2zRzXlmXAVkt6hNpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H8RF0kORZLDwELk7RjVxCPmx0sMoIfcT69OXp25apCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:16"]},"IP":{"Case":"Some","Fields":["202.61.197.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LutziLebt"]},"Identity":{"Case":"Some","Fields":["rQ12GLbnpNElq7B7U+rLIUb/yNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDYTxp0u4CkA3amG7szE0lMma1t3IZ5sdRm4T1afBuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:01"]},"IP":{"Case":"Some","Fields":["128.0.64.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetherStar64"]},"Identity":{"Case":"Some","Fields":["rQ1QhpR1o6I26nq4UsIVvhGlx3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hk+loM3R7vMp02jIEc+vLy8THveePCDHq0eznkYxTBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:37"]},"IP":{"Case":"Some","Fields":["217.93.80.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["rQhYSsaipCHa7fIn2m8N5T3+QLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+MHZ1bSii96IGTpRhHpChcud2nMAwAXLwp6UTMu/Zec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:07"]},"IP":{"Case":"Some","Fields":["179.43.159.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raphanus"]},"Identity":{"Case":"Some","Fields":["rQZS72MfnJnOfOIfGhVq108n7VY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y7VRs06eSspR8Iseh9KmPU2puYAA7OYEjrlOyJOvSgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:17"]},"IP":{"Case":"Some","Fields":["164.215.1.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alexandra"]},"Identity":{"Case":"Some","Fields":["rProWJcXs/EXZvDegmQn6PpAWL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GHwo8qqgGvet6SXNbbDZtiMz69lWV7ah/v1Fdaxab0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:31"]},"IP":{"Case":"Some","Fields":["189.147.190.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mmagtech"]},"Identity":{"Case":"Some","Fields":["rPrA6+c6oFjqFnUaFp8UpQLjbXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9LU6hRUcF0WqN/tnfT6zSZIxr1aNw2x7tfYGzfh6T3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:00"]},"IP":{"Case":"Some","Fields":["99.43.23.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDiversity"]},"Identity":{"Case":"Some","Fields":["rPj8bBQDKgRbRPa5hSXuXARy3VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0ik7cgZzB85NZ1hoHukoWVvcgiIaaL+Ee4kCoeIqf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:28"]},"IP":{"Case":"Some","Fields":["91.208.184.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["rPiwecBaMTpRINVk3q7/LXU7GRY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aG/2deUjBRuvVRJz3uoBIV6FZFw2uIbpqPWbzm7AKZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:47"]},"IP":{"Case":"Some","Fields":["188.166.76.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["laukur3000"]},"Identity":{"Case":"Some","Fields":["rPf9W3NoG8AbvoF2xj5GdbJ0ER0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbwtKdwKnUskDCOlh+j1aMCgo0hEEcYk7DCz7NbrfUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:56"]},"IP":{"Case":"Some","Fields":["139.162.63.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:91ff:feb1:8ece]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz1"]},"Identity":{"Case":"Some","Fields":["rOQghyrx+KfgZEA9kmadFMXOdK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y2/ZAg8MineVa1oXKH7zRh+HzYlEJTwcJuiRv5GEcUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:43"]},"IP":{"Case":"Some","Fields":["116.202.233.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kulcosictor"]},"Identity":{"Case":"Some","Fields":["rMh0rW1NOsMIy2wERiChWaESMZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPxgU62RDMX+Du0nCwuM3St4oCDlL+ZjrhtV2rebmu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["193.190.168.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["centorLyon"]},"Identity":{"Case":"Some","Fields":["rL89UEz/PXTRmRr99qwHBgYjKxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xm1uvBbrCW1oy2HH5IM6CvgZVwjyxMmrbViBBAyH4Do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:25"]},"IP":{"Case":"Some","Fields":["82.64.20.171"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[59002]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shadowfighter0"]},"Identity":{"Case":"Some","Fields":["rL56IiUZTgXCAFGylI0GmpeUgC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qWHh6X1n0sBDqRQ6fku+E2hB6UmqCdpVnJtWCyF+TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:43"]},"IP":{"Case":"Some","Fields":["84.148.245.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire62"]},"Identity":{"Case":"Some","Fields":["rLu0Js4dBkGlkL8fwc8FQW/A/28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uUitGUqhl/sG7KBXa28Hwu3IZM9dqaigSSrgIVKqjm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:52"]},"IP":{"Case":"Some","Fields":["91.143.80.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torgate"]},"Identity":{"Case":"Some","Fields":["rLWczYg0AK5QVsI1G4ZRaj8wWIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hNB4g8jgMICusOkjvqg//MiIq5S9pta/IPEzm+Jm/DE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:38:50"]},"IP":{"Case":"Some","Fields":["85.214.235.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryMay0"]},"Identity":{"Case":"Some","Fields":["rKrhcIFE9khar/1Zw8bqoepKqrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W1PxoPpsyTUNZpweIREnnd89bWAUzLHNwc5JbKIt2DA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:00"]},"IP":{"Case":"Some","Fields":["46.4.32.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:3641::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["rIfbHZZTYvvLn8i6MphnGNPsarY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["etB/vQoldARlDZ9QYh6hm+JCIFkw4VojVpxsmEhlLko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:47"]},"IP":{"Case":"Some","Fields":["185.243.216.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:91]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["churrodawg"]},"Identity":{"Case":"Some","Fields":["rHyI1nM5uQ8sEP97cC3LHvO41mM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CCnry9xXklDXOVHBLk3VP+W1pT4q/+onmriVb6kTpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:38"]},"IP":{"Case":"Some","Fields":["138.201.196.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:3e99::2]:9993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcRelay2"]},"Identity":{"Case":"Some","Fields":["rHwPnVfa2tXY9FaO4VQ+8+IqR84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yqp2qqq3DagM0ljPHMD41FyjkRmLBXfdQ6lnqM95tWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:57"]},"IP":{"Case":"Some","Fields":["130.225.244.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:878:346:1cf9:446a:c4eb:4548:7062]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SODrelay"]},"Identity":{"Case":"Some","Fields":["rGM8kOEm4LypbxTs5dIitYb6DVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P4ub4q0CkFlgbHiYp5saq7V5OD6yVt8Km7kvh0YCY4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:51"]},"IP":{"Case":"Some","Fields":["157.90.92.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:252:3df0::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortempel2"]},"Identity":{"Case":"Some","Fields":["rFrKptkbcXLIgM/Ew8JrYta6Jn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXBSrtJndHty8Q+bvBrX+ZwAn6fCEopvhRCZhVeOoHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:14"]},"IP":{"Case":"Some","Fields":["178.254.31.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9596]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benignrelay"]},"Identity":{"Case":"Some","Fields":["rFcZzm8icWYXwKV7m5gBMby2BfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IolvT69CAEMjuse3LQo/qRWh0bLLQ0qrnLt2Kd3VdkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:21"]},"IP":{"Case":"Some","Fields":["118.99.13.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["rEGj8y1faTcGuSBDGBYZkKxRaI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J7lvPG6B8AikQBX99KQ0F7r0ppTqPA4eldwDlytjmmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:33"]},"IP":{"Case":"Some","Fields":["23.128.248.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::33]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schokomilch"]},"Identity":{"Case":"Some","Fields":["rCvt0LrHKDjqfm8RP4VsToAYrNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlS/DS+hvGww8QlMkU58UET2GRqmrWnFhebONiBdKEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:37"]},"IP":{"Case":"Some","Fields":["176.10.107.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torcz"]},"Identity":{"Case":"Some","Fields":["rCceczBaCdcrkCWii/eO3DM9yFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["69EsB1Tz6jikiOU1Z52FntJrKkVfFIfnjrlNmMl6Ks0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:10"]},"IP":{"Case":"Some","Fields":["213.211.43.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["rCScVsEf3fqejeVrGCsTrIpGcr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QG05eNVxwYXNjXqYxlZYB6GOZf8rS/ojzF+KfCZSWzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:36"]},"IP":{"Case":"Some","Fields":["188.68.51.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["q+bGW2cdDmDso88sOw/+vVImTwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cdVKe2YvpyvNJFcrCchF2wQZOJ91KG+kWIH2N8BPnGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:02"]},"IP":{"Case":"Some","Fields":["185.220.101.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["millemille"]},"Identity":{"Case":"Some","Fields":["q90lo9b80QTxPwWgrrYCfOMrehk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HPW4GXZsSt7KruDdgjq8ZStc0k0UiMwd5P5Q6Ba2Fk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:55"]},"IP":{"Case":"Some","Fields":["178.254.41.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["q9wlIF5HKAnVQCfpysRniyvPIz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PeqAxaOLAreLl0P5s37as3UKrwLHz//HtS+qafRq+kM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:02"]},"IP":{"Case":"Some","Fields":["193.178.169.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc01"]},"Identity":{"Case":"Some","Fields":["q9nUbDwCbPa4hXSgcH0L91oGeZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IKsycsQfkAyzetV5j/wwF0zXNTS0bBKMYXzexPukN24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:18"]},"IP":{"Case":"Some","Fields":["185.100.87.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLicebeer26b"]},"Identity":{"Case":"Some","Fields":["q9Y3xPqFykrybgnKhPcLOWYD/zw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ktn+lGswnpSPperB/0h3Kh0Xv6VVKh5dtkwx6E1q6LY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:11"]},"IP":{"Case":"Some","Fields":["95.214.54.94"]},"OnionRouterPort":{"Case":"Some","Fields":[8170]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myQWERTY12345Relay"]},"Identity":{"Case":"Some","Fields":["q8vhiUStPErKgx7SSOtsZtN5Jrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WZRVt0J2S6GWzKQzovhs8EGQYIHtTScJOPshgicFRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:48:16"]},"IP":{"Case":"Some","Fields":["83.78.178.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Playstar02"]},"Identity":{"Case":"Some","Fields":["q8WnptXGCVEvXXzStJDOc2bwDWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dF7czDcq3jQsiv9o1T6CcHKcgxjyVbh4URKdxrgW16A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:53"]},"IP":{"Case":"Some","Fields":["192.121.44.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2af8:0:c4c9:3dff:fea3:f4fa]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bergjuden"]},"Identity":{"Case":"Some","Fields":["q75LTB7wGzwXZe+g3sETyoMZRvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtvPvcvzHkPCrEbHR/GX9rIN26Quy+/7M4W+COQuYpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:03"]},"IP":{"Case":"Some","Fields":["88.198.71.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:151:52a1::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CzRelayFuckPutin"]},"Identity":{"Case":"Some","Fields":["q5r6B8MSwJiaFa5j3FoA8sypCuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7DhUJbzkKCjp8i9K/nuRvEmfWnS+5m1S1n+rSgNoxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:31"]},"IP":{"Case":"Some","Fields":["149.202.124.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv24"]},"Identity":{"Case":"Some","Fields":["q4uPZuEpizvlF2eJoQOLk4Kw/Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYzTSCop1gcQVmWm74c/6EyOUfmmQbPvqT4WGu5hzj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:21"]},"IP":{"Case":"Some","Fields":["45.62.224.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bunnyriot"]},"Identity":{"Case":"Some","Fields":["q4cM8dwwUM7Uma/ACLv8J1ZLM8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X5R7QGxloarQRFs9w69OLMyoZ32IOpUHpEwGbqos5Ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:50"]},"IP":{"Case":"Some","Fields":["217.233.71.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["q3NmklxEZCTn7jMXm+q0sS2GlrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+p8GlMCssWHiEJlyE+iK4jq3B4Ne7MwGc5gOVRfQGVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:25"]},"IP":{"Case":"Some","Fields":["188.68.49.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YoloRelay"]},"Identity":{"Case":"Some","Fields":["q3HytqFSh7idJ6UrR9EQaQy3I9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NO/eCFt6CRveM610P173yOCogz8XCdlj5bblNcJuoqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:01"]},"IP":{"Case":"Some","Fields":["82.65.148.75"]},"OnionRouterPort":{"Case":"Some","Fields":[39185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:438:9850:4ecc:6aff:fe3c:b8ec]:35433"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neuronMail"]},"Identity":{"Case":"Some","Fields":["q2aQqvRfU/fzvIQuI3efJMk0bfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R0ga3k1RAilU7EZsrD9AizNtpO8FNGlKt2KbaI3DsPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:35"]},"IP":{"Case":"Some","Fields":["45.79.76.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mikoshi2"]},"Identity":{"Case":"Some","Fields":["q2aMtPKVPYecKxre9bbPsyZ7gls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5A5lM8BslF+wHnnWSr1hftVcVqxieX/zTsGO0B9vK9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:10"]},"IP":{"Case":"Some","Fields":["84.157.61.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AaronSwartz"]},"Identity":{"Case":"Some","Fields":["q2ByFmNmwuJF+VkFMQQxNXtYH5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1mkBhGhxjqO7416NXvuwYX+IV7WG8h31sDjeXGUnelg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:43"]},"IP":{"Case":"Some","Fields":["104.178.168.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c0:5678::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gaciiz1seish"]},"Identity":{"Case":"Some","Fields":["q17/+ajmyMLveNX2UH3bInjKn8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVex0IRdT+fR/rKLR09z3BgI0L0TJe371nhMIjwjmBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:49"]},"IP":{"Case":"Some","Fields":["205.185.119.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xXxsussybakaxXx"]},"Identity":{"Case":"Some","Fields":["q06Fb9/7qI8rV5wRhIbn6Q7N8UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lV8Me22Y79b/uP3iGdo32IUsIJQhcOdKvM+qLHYA0xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:54"]},"IP":{"Case":"Some","Fields":["129.146.138.146"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv118"]},"Identity":{"Case":"Some","Fields":["q0dh4jr1EegwbpXnj36C93suSH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HbHRz8kFedkbwOsgFUTJeBT13evtWhABtR1Hw6Q2QfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:02"]},"IP":{"Case":"Some","Fields":["192.42.116.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5518]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eva"]},"Identity":{"Case":"Some","Fields":["q0D9eNik3lMPseA1XnTYA2d4Rhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q9zKDAXORuqqik2X7T2mCH4h/ZLOAGAdHCMzF8trWq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:57"]},"IP":{"Case":"Some","Fields":["31.164.230.2"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[42069]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luxurywood"]},"Identity":{"Case":"Some","Fields":["qzIn20cLF4g9JNgw6oTr+9x9WBU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtcWQ/xrdIYdES3YauAZvSXHMJWE+yxrN9GdXJrRUco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:43"]},"IP":{"Case":"Some","Fields":["206.192.255.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b:26a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["qx/r9pgi9KoULHAxkk3QhJbL/uo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g7/1wfa1V99b7Q5ahiGDVkhKVUVKXMnp4CJnkES46lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:51"]},"IP":{"Case":"Some","Fields":["213.238.182.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r1"]},"Identity":{"Case":"Some","Fields":["qxgQOKfPghbga8yIvULng9W8C0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nw4tJBzon39hlyUwf4A/NOzgJDav/BTnDyOi4+TSE8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:11"]},"IP":{"Case":"Some","Fields":["108.175.14.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelloPerson"]},"Identity":{"Case":"Some","Fields":["qwj2YkS5O5Xf8gmOpoh/+JZExlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l3uzHT3AetOGFLbUbzypPoCKI1Q1MjDIyUz8XkO12hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:30"]},"IP":{"Case":"Some","Fields":["51.38.176.84"]},"OnionRouterPort":{"Case":"Some","Fields":[13373]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onemoretorserver1"]},"Identity":{"Case":"Some","Fields":["qv+mirYSOPkES27Lpi4lJkET64g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6PCU0faNrWdoU9DazS20B8tKROXIy4/fx7gUj3r+eA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:22"]},"IP":{"Case":"Some","Fields":["164.68.106.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3005:1808::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jceaonline"]},"Identity":{"Case":"Some","Fields":["qv9KmXVD2w2IH08RY4SFt9Rx/s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLLekP8bXyCV0IPSWmL9y45vBuJkZt5ntyBRXn+2QNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:15"]},"IP":{"Case":"Some","Fields":["51.159.34.131"]},"OnionRouterPort":{"Case":"Some","Fields":[47168]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2ecd:caed:746f:7200:746f:7200]:47168"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noob"]},"Identity":{"Case":"Some","Fields":["quhTTSEuelzw+ZeTqPZa2RtSmSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YxGl6gDUPJL9rK2sXZVbCKU/UeY1ge0JyauZFiPqqZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:44"]},"IP":{"Case":"Some","Fields":["96.234.41.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strator"]},"Identity":{"Case":"Some","Fields":["quAVxvE88G3o/SjbkDcr5VyKowc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCIQmaQH8yl9kQfuOKP+502eziyBzNW0GP8faadulxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:41"]},"IP":{"Case":"Some","Fields":["81.169.240.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43de:1a00:7fbf:f902:d7a7:4f2c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NicerDicer"]},"Identity":{"Case":"Some","Fields":["qtH/5EQ1J3tsC9xlaEqDb6NY8nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QjvGZVLAUL4jZrjd625A1GPBl642Dm6w+w0ibZdQZYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:56"]},"IP":{"Case":"Some","Fields":["87.181.29.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber28"]},"Identity":{"Case":"Some","Fields":["qs1OCeZboYyvNfvIVe9llQWzbp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rMV7BS6TBOVBBB5QJzqoFAispbOa+8rOmadd5S/T7Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:31"]},"IP":{"Case":"Some","Fields":["185.220.101.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::14]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pi4TorRelaySlow"]},"Identity":{"Case":"Some","Fields":["qsqHfodovQdXwYkVBqIAPhPS4Q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9ltIzrxUX1tqLCglYflj810SxWv63fi1nAcBhVLQv50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:20"]},"IP":{"Case":"Some","Fields":["73.41.140.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tonyTOR"]},"Identity":{"Case":"Some","Fields":["qrb4sDvOL3wYU+iv++uzOSoUO/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yMqrOPr4jpxUrxzCzdVD6WeE39pWZQ1+AlhmEL5ytBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:53"]},"IP":{"Case":"Some","Fields":["193.226.78.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["qqslGcJ+9ofjIW1YjMLGrMOwUaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2a0o7hXYj9BrR3L2z4p6YH3Q/YzsEO6kMkZD3U8KM1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["95.214.53.221"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d9]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WorldGate"]},"Identity":{"Case":"Some","Fields":["qqRN4PaRrJp25xHirvs8hL2Sf04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QyzP9AYTASadlcOfrEwWk49asq3AMLHCFnq2ijIGQu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:30"]},"IP":{"Case":"Some","Fields":["86.202.188.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:b8:df00::19fc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["larrabee"]},"Identity":{"Case":"Some","Fields":["qo61rT9uiX+fKDsZn4VKyk7vgxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPqtonCnc8s4/rUB7BUEP1W6h/HzD4kWigUj5J4UoKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:44"]},"IP":{"Case":"Some","Fields":["110.4.47.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["indawoodz"]},"Identity":{"Case":"Some","Fields":["qojU9bBbTnsgDiniOlrhpvwsen8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XATV0jA7W0xXSmOJ8i9XhWcrFoRrxXFjdsDUCvJWQXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:29"]},"IP":{"Case":"Some","Fields":["76.65.151.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Magicland"]},"Identity":{"Case":"Some","Fields":["qof0UqIQZDwcEupsExI4v7M926Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6p8uqoWXrJbsazJD8Yz3bMuGuzS+i35ISYHw2AaaAf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:27"]},"IP":{"Case":"Some","Fields":["185.215.185.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cryptornite1"]},"Identity":{"Case":"Some","Fields":["qoXU4nQy7PXDT2SvNbMjat5lOP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCBHubLeRyKoSK6OlgBDowVKHXCRbjbn8WRNbuSNzqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:59"]},"IP":{"Case":"Some","Fields":["92.116.129.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["R1lyeh"]},"Identity":{"Case":"Some","Fields":["qoGq6toS2OD1iou+1c0B1xxOhOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZ0aPoFSssEoQ0zwwcV0l0FtlNOA0+erk08YH/16ms4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:48"]},"IP":{"Case":"Some","Fields":["5.255.98.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:2e34::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbaddie"]},"Identity":{"Case":"Some","Fields":["qn8oSBPX1dZzZ7p4ujO33HTweu4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p0aJE2QNebJPZ8/zvs42idwxmgxrJf9utMNTXGEyB00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:58"]},"IP":{"Case":"Some","Fields":["45.61.185.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JustSomeRelay"]},"Identity":{"Case":"Some","Fields":["qn1WnFL6RNeSG7gRS1AEToDRefg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+AnhM4CjgE0jiM7uYlwleU04YD7FesZf68nc5hHO83E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:16"]},"IP":{"Case":"Some","Fields":["73.90.7.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skid"]},"Identity":{"Case":"Some","Fields":["qmtY+f1R+TLhT3vYezs5QwNr74k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nWvTD6xcvlB6r+T1N1HQG5oRXA3ESsjNQfoC8B4/iw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:43"]},"IP":{"Case":"Some","Fields":["91.90.120.195"]},"OnionRouterPort":{"Case":"Some","Fields":[37187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roTor"]},"Identity":{"Case":"Some","Fields":["qmFjFbqXcp6kfa2HGPpZJpxyKec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1KgSgxrOmnseECjwJ/A/aPqTZdYk2s6iROZCd4ySQOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:26"]},"IP":{"Case":"Some","Fields":["94.105.123.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:578:853f:1500:ae1f:6bff:fe45:cae8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["opix"]},"Identity":{"Case":"Some","Fields":["ql1KrSfyVHVhG3Mi6gckofFzn4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UCbk2y7ZPdn0+teg+kl1j6cEY1TjkG784+tpvv/9CY8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:44"]},"IP":{"Case":"Some","Fields":["94.19.200.5"]},"OnionRouterPort":{"Case":"Some","Fields":[44040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:3580:2e1f:900:f402:5eff:fe33:d21a]:44040"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qln7T7KnQQ7MdlilhInJ1R1xhnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ndgAbRV2HdmlerPFS794vjhaH1NlyjEz0Lspha5yszo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:08"]},"IP":{"Case":"Some","Fields":["82.168.132.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DadaRecipes"]},"Identity":{"Case":"Some","Fields":["qlHDVTR8ZxzGauiDiCN3LEPsLl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KInfhJHxiHZr9ZtN6+aN6hRdryRT5fNz1DMxplz5gRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:10"]},"IP":{"Case":"Some","Fields":["38.97.116.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipda"]},"Identity":{"Case":"Some","Fields":["qkryfWpXOw7rI0rviXUMpuYUHA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EN/Lo+HqEmH5k15wxtyrCCMV48Znzw0i8kIbW6YYA2Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:56"]},"IP":{"Case":"Some","Fields":["185.220.102.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::243]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["qkZE8OxYnuovUBu4Z+MuWZ+Bado"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KN41fxTa5TPXrm3qv+OB+cC3AfI0Ycvh1hGkaHBME9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:33"]},"IP":{"Case":"Some","Fields":["5.45.104.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fl0"]},"Identity":{"Case":"Some","Fields":["qkDW/BCAtVzjoXGWWEKzwv1WAuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xCGQrneD2vjdYRPowo2HaYqWhzZKsXJcM0/raRvIZZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:05"]},"IP":{"Case":"Some","Fields":["188.80.195.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTorRelay4321"]},"Identity":{"Case":"Some","Fields":["qjXmo49x8yTb9j6NQ9+D0N0MNTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ywzTWMgGh/kk0B1tuQzAYQlxXpp5S/N5cNOrh3PEF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:00"]},"IP":{"Case":"Some","Fields":["190.89.104.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontstopmenow"]},"Identity":{"Case":"Some","Fields":["qia5e2ynV79jMo7pZwUSBgnPSq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/Nvaiy9UfDe6NTZ3GZ5VzNeDU0cQd+lgm0Y++4uSOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:19"]},"IP":{"Case":"Some","Fields":["173.212.200.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:935::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoSoul"]},"Identity":{"Case":"Some","Fields":["qh5YQlH8t8Yv7j6rSApfyQmkSTw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xbkRtq03At4h7jWN1MMICVUKU5y/c+9ziWSSNWjk9nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:06"]},"IP":{"Case":"Some","Fields":["217.92.175.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qhsCbuDIqVjinGfH2Ihf8nVyJp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3psQt2bsPpcuez3ppBadApftkKmWFf04TJXX85hK8gM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:12"]},"IP":{"Case":"Some","Fields":["212.129.4.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionSherpa"]},"Identity":{"Case":"Some","Fields":["qg+DxaN+Ql0NM5mGgy+3RbpK9Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QCbhqN2ehFidd4g3OPBoFh2YKvwoiQwUnQE+grChU1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:52"]},"IP":{"Case":"Some","Fields":["199.195.249.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PERLURGroupCZKO"]},"Identity":{"Case":"Some","Fields":["qg1KJ14/HN/6z3N0cPzpypDU1P8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xpv6hXyqXFF4tIpyU9r25atJ4LlrfOPV8GGHlmHriiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T17:54:43"]},"IP":{"Case":"Some","Fields":["82.209.54.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["damita"]},"Identity":{"Case":"Some","Fields":["qfcYVJnFeE41tcJXRO1Kt1Q3zl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqUrmftrHnOvFladjiWx69dT3FDsgbBUIr6WXU+9MOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:26"]},"IP":{"Case":"Some","Fields":["91.229.76.124"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ethe"]},"Identity":{"Case":"Some","Fields":["qfYhunjN8ydsp3kyrkfKsKyKJuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8VagYM4YwoNX4Sm/F8q3Z8B6+WqaPc7BTtSrm4Im+8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:36"]},"IP":{"Case":"Some","Fields":["139.59.92.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torthias"]},"Identity":{"Case":"Some","Fields":["qeQ0Me9HO+7w7smNvd0bjD4/sHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2lvDLbQoVGbdL0axfRf3JooIld40KHCeY8WHd2Jb2Bw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:10"]},"IP":{"Case":"Some","Fields":["94.130.185.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:453a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnappyL"]},"Identity":{"Case":"Some","Fields":["qeBqRpwpQjpIzBLz08UhRyFIv8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jKy7W4nxMohazg0FW0jlN+/uj+NWbOqAcX4raLT/J+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:39"]},"IP":{"Case":"Some","Fields":["24.124.18.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AMSRelay"]},"Identity":{"Case":"Some","Fields":["qdpzXJ3nyJG57da0M7RY92h+gps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHToI5UCeAOiEX1CRRjm8kNxQCj0LPdCf3tRc1zM4w8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:54"]},"IP":{"Case":"Some","Fields":["146.190.22.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockerObfs4Bridge"]},"Identity":{"Case":"Some","Fields":["qdUsSqhVa0mUHseWy8lIOfDaVPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfWI9CTFpGd/X+qarofsQIrluhG3TRZaPCSkwQl+OcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:49"]},"IP":{"Case":"Some","Fields":["212.8.253.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viola"]},"Identity":{"Case":"Some","Fields":["qdGobnimMO2GAPtJSu3L9hsg6xg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["onmIb5Ta8tDXwBtZSebPlqtRX4HRxvsKC81tBolJ5p0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:12"]},"IP":{"Case":"Some","Fields":["69.40.113.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu3"]},"Identity":{"Case":"Some","Fields":["qb6i4GmdH2BSHIoRZzQJRaQZ0QI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DaOWXNl4l39hNGAZJ0yPYVH8OtsGiCKnne0il6R7DJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:13"]},"IP":{"Case":"Some","Fields":["104.244.72.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fb5a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BWV639"]},"Identity":{"Case":"Some","Fields":["qa4gooeyFe4EnAA3PJUvQ/CAvMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gcWknCzqUD7vWZetzBXNhP+w1+dbnK7DgreqYlnubqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:38"]},"IP":{"Case":"Some","Fields":["173.230.137.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fedf:a49f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["u698id1147"]},"Identity":{"Case":"Some","Fields":["qaQhPqPXB4VzaMaD8iCMg7h1XYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wzeX1CC1498aFKDn1SOoRn4C84JMh1Zs9B+sM9iXi/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:43"]},"IP":{"Case":"Some","Fields":["91.233.116.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buttercup"]},"Identity":{"Case":"Some","Fields":["qZsNnl/VvDyPLQBuyR+Mf0DgnLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVkKdpDxWKhqg9Uvm9Szum0i9W70EKtiHHQ2/LhmWqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:53"]},"IP":{"Case":"Some","Fields":["46.4.78.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bolar"]},"Identity":{"Case":"Some","Fields":["qY9JL2UxrjoGjdNTlcqfW+jwNVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQep1heJ/MYsp38Rc1seCQmjYjeyKwRyHo7e4KqP2G8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:41"]},"IP":{"Case":"Some","Fields":["84.212.255.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kuba4697"]},"Identity":{"Case":"Some","Fields":["qX3LHkhgBNbzJljf34DCIafBJzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LJ5yAonYEgo5rVOA+nUoNtEo6TH/MyWtdNjTbjHZsXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:26"]},"IP":{"Case":"Some","Fields":["77.253.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1148"]},"Identity":{"Case":"Some","Fields":["qXNM+V+kPhTDdX2yHPxsyW4gB/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UTNGVUnpY+kFvp8PS92aXH4D2zJuPBDD7iRSEYgPIx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:31"]},"IP":{"Case":"Some","Fields":["185.220.101.148"]},"OnionRouterPort":{"Case":"Some","Fields":[11148]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::148]:11148"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH106"]},"Identity":{"Case":"Some","Fields":["qXA2JkBSuBh/kBfjF8NO/adBJes"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/MAUR4Flju9fRFMQPp5vh4QbQcHv8yYCpcjyjIomqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:07"]},"IP":{"Case":"Some","Fields":["192.42.116.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowflakeMentality"]},"Identity":{"Case":"Some","Fields":["qW/I3/MqwX6DlANUg662ErRiTVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVQRqxT9IYYYm4l1pVkNf4e9yaA74g/KkywkSSEXaaM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:17"]},"IP":{"Case":"Some","Fields":["24.246.29.240"]},"OnionRouterPort":{"Case":"Some","Fields":[5190]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NerdyBloke"]},"Identity":{"Case":"Some","Fields":["qW8Qgo9dO6QqyJJ/A23r2ZTvBL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MrK/UFUsQ7F4E5FmT6hflU8LpNm/nNqFNb7ZeBtljTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:46"]},"IP":{"Case":"Some","Fields":["212.159.177.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f09:d10::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["qWP0z7VjX8m1gy4rwfvNO9T/lz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0kfgDwq1gDqS3R1HWw5UAPCyygg7woM4haNtOgnUekM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:08"]},"IP":{"Case":"Some","Fields":["95.214.53.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qUo0HrmABsVEFn5GvNzxcAhAbqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["liuDvxhkWW0UWBGOOiw86ARVPAuCsYIZsTY+ROnUMm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:35"]},"IP":{"Case":"Some","Fields":["136.244.109.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ullr"]},"Identity":{"Case":"Some","Fields":["qTwKCKnznUjGE6SXJGqzIfRKdTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uELzLaNbcfWxUXkafVZG41eCDGzj+F9rgIW5eSI+yKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:08"]},"IP":{"Case":"Some","Fields":["83.137.158.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9013]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation55"]},"Identity":{"Case":"Some","Fields":["qTL1b2nSSpagy8TzKSKmLe/SjHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjNLn+M7+muf+CkjN6+BXNU6eXgfN8XUAWBv9uQIpTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:37"]},"IP":{"Case":"Some","Fields":["51.89.143.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wideBus"]},"Identity":{"Case":"Some","Fields":["qSIk9qgursgamrNVrs/mZPR2Er4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PbzbFl68qxvJbCam6ggeAYnA53n0JOlnsjVnnkL9kw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:25"]},"IP":{"Case":"Some","Fields":["172.106.167.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex81"]},"Identity":{"Case":"Some","Fields":["qR8+TSzNgfXIZeFDUl+Sp5DN8X4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RPmMmFb+iL+LSbDgno4O/gtVU7OSr1hGGhcWXm/Hhw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:50"]},"IP":{"Case":"Some","Fields":["199.249.230.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::170]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["qQRLmuA7yjLe7LcKlz40wC9yz8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vEjoKIFE6tQhJRxrmDZoPP+LIPmLDTR8H3AfXk7UTbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:49"]},"IP":{"Case":"Some","Fields":["185.207.105.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R5SK1"]},"Identity":{"Case":"Some","Fields":["qPtz2Re3wrhRo1hyk1nhPrpZePo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c4qV+5TlZ1GjxNY8CEL/lgfUKcQP2+aW95CepyJQHbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:14"]},"IP":{"Case":"Some","Fields":["132.145.22.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:c007:cab:5235:2d:534b:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingpins1"]},"Identity":{"Case":"Some","Fields":["qOtwmDzC/D4skUGehOvNRyJlR0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oajTfg0FzjCxLl72nh1yX160ospaoz1rpfQZkZtHRoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:35"]},"IP":{"Case":"Some","Fields":["45.58.156.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vidaloca"]},"Identity":{"Case":"Some","Fields":["qNNMoE3e+rePbVNBsd4AxdTX2Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75p3zk3YWPGUfU1lKxHW0BvhHHqWnJvW9cHYFMtxKjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:18"]},"IP":{"Case":"Some","Fields":["162.251.117.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fcd5:8:0:1602:ecff:fe6f:1e94]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qMjOIp4vAA7Ko944N1F/2GDqUP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3PCcuGpgUujOkaNL+G+Z5/E2tolKRZCIBxafI2s+A3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:54"]},"IP":{"Case":"Some","Fields":["151.80.47.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raphanus"]},"Identity":{"Case":"Some","Fields":["qMgiIKEZblKiFAz06J359nL9mwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CdBg/CD3/LdX/JhO+3R771lkBCakhXl8tK3IyDNqHoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:04"]},"IP":{"Case":"Some","Fields":["149.28.247.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Madeleine"]},"Identity":{"Case":"Some","Fields":["qMWKd2khuJyE4ITWVn8aKwOYBeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PncyC9B5fjNoyE+LSSGGfQu63lE1FQ4H8Fk11NKPogs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:49"]},"IP":{"Case":"Some","Fields":["82.66.192.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:173:7840:216:3eff:fe7b:d385]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex88"]},"Identity":{"Case":"Some","Fields":["qL6xUPS61RvGMJ7ZO/1AAipyphg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Y3h/+wnbjckfuJCFKHV7lFk1vxSgNOC6pZFMzoYSWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:43"]},"IP":{"Case":"Some","Fields":["199.249.230.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::177]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex83"]},"Identity":{"Case":"Some","Fields":["qLiHs9yLhk4vC1j5KwwQ1JO1r/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qjd2iH//VRMhqMUQHvX0gbiBUWKgLST7DyLvVRZQW24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:35"]},"IP":{"Case":"Some","Fields":["199.249.230.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::172]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex70"]},"Identity":{"Case":"Some","Fields":["qKxcG6CduUEj4ruZCYS4qJ4olrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzOJmC1VwQbuGdAc26TjXKYCXJnrMfSSpLzzdpBRlLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:45"]},"IP":{"Case":"Some","Fields":["199.249.230.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::159]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["qKdL2IUWKyP7pdti+/HWkZxhq1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3a3OVyWrEkokbjx89NVG/O1M8iiElYB+89U8By1aUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.63"]},"OnionRouterPort":{"Case":"Some","Fields":[10063]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::63]:10063"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["computel"]},"Identity":{"Case":"Some","Fields":["qIdOLEX0RdukYqkU7Y068EVzT/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7h98HNBvEGcDgBu1rbovgTAJJ42n6O7uDryGmH5oKe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:59"]},"IP":{"Case":"Some","Fields":["109.190.177.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saltishimporter"]},"Identity":{"Case":"Some","Fields":["qH6uLwlQlVaPz06D/DwOVPlGwzA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u6Qm8SFHfcPi0/6HQkzHVrEpGDfqj1TJicM+O9Yt2mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:38"]},"IP":{"Case":"Some","Fields":["37.123.143.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM08"]},"Identity":{"Case":"Some","Fields":["qHW/uDvYkfkuruAuxPxDVgP+j1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S37iB4yIq6bzu3HcqEikCJwpkRR1ASI9QaoNIYW3V1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:29"]},"IP":{"Case":"Some","Fields":["185.239.222.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM16"]},"Identity":{"Case":"Some","Fields":["qHJNPb07Ni/iWlX9gToVJh0GHVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3qQ6hDYCzoqY0g7QzpaA1pqiWMu4efzPRcnGggBL0Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:07"]},"IP":{"Case":"Some","Fields":["185.239.222.255"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex51"]},"Identity":{"Case":"Some","Fields":["qGgwMSaYeQLVHytvBt2QA4xFsRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/viDJjfaXvHNZXUhQ8c8ZN4OVPacGAfuS04Mw99zr3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::140]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glacial"]},"Identity":{"Case":"Some","Fields":["qFfajzco3kR1v82G2RNR9eMCs98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9rkfUt4knDTmzz9/0wNIykZiSHLOZtRTBIquxcD5jks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:24"]},"IP":{"Case":"Some","Fields":["62.112.10.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TransRights"]},"Identity":{"Case":"Some","Fields":["qFA5A/l/8n9dHDyjiBcyn1gZJeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QSAHuTbXiq60sSuGTBflMQP4v8knGODkRE5R/FB0lhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:11"]},"IP":{"Case":"Some","Fields":["82.64.238.84"]},"OnionRouterPort":{"Case":"Some","Fields":[1930]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5e4:1d0::acab]:1930"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorStar"]},"Identity":{"Case":"Some","Fields":["qDgpa58BqeJIe8OiXV5fL7ipefo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ETKjShpFZB1NOu+RWw/XLmHIqvfuG9GuKLBtsob1kE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:36"]},"IP":{"Case":"Some","Fields":["151.20.222.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pilpur"]},"Identity":{"Case":"Some","Fields":["qCx5KF2xLoKGSx86QmOarhEDB8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vxtckkem7qR4h9Sh+mM5pWqsFAiUQUo5CDxCNFtRq80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:56"]},"IP":{"Case":"Some","Fields":["176.31.151.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jbrelay0"]},"Identity":{"Case":"Some","Fields":["qCxOejPcQT7GMKsGqubz3NqX8UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8YlTU/yANs8NwH6qdL6ps5ojUsnh8sJqZcP6uUOESs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:24"]},"IP":{"Case":"Some","Fields":["79.254.119.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowFunPark"]},"Identity":{"Case":"Some","Fields":["qCrzQtVI+kAARi4MIjAHQhD7ypo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NGvoHmlY1U7J3XaWjRgVrFQwZrSBIEF31YRyWms9zGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:29"]},"IP":{"Case":"Some","Fields":["103.234.220.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["STSLin"]},"Identity":{"Case":"Some","Fields":["qCTo7ZNGDjK6rIFVvgzKQ+BAi/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Svn2O0k5reqtUbuNmUUPTof0bRJe61lhDuwYJ84boJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:31"]},"IP":{"Case":"Some","Fields":["188.166.186.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::1063:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oszkugay"]},"Identity":{"Case":"Some","Fields":["qB30uwtfhgYb6/wt6URkA5SZQ+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DlvYrUiWvQhb2csv5ig6WqqPZC1G6gki3QDs7v/I9/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:13"]},"IP":{"Case":"Some","Fields":["83.230.40.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["huebing"]},"Identity":{"Case":"Some","Fields":["qBD/Hlx5g9Q7NRdQZHknS12lrHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hXPbqAK/VRj6E8IVpWc1Lxb+fchBMuJwU6JIQIBdTow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:14"]},"IP":{"Case":"Some","Fields":["185.227.82.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WooptThereItIs"]},"Identity":{"Case":"Some","Fields":["p/gKt+BMAATo3goAN/jtVCkkWL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2AWowAMmhq4rZ8TYFlMzOTqlPGMTUoBRjwSV1LSpWsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:25"]},"IP":{"Case":"Some","Fields":["149.154.157.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ted"]},"Identity":{"Case":"Some","Fields":["p9F1l6Z/CtZO4fOkFKCtygCAF0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0+Rq21zrcIyKeB+Pfr976XPYD2xkcSB0OkkIFNNcCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:36"]},"IP":{"Case":"Some","Fields":["185.217.0.85"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute13"]},"Identity":{"Case":"Some","Fields":["p8frKg37Lj//wSt3VnB0M91VD54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gdw9gPJAiHqnOSbavkRgxxnnHEzSpt34DOWhENsiMtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:46"]},"IP":{"Case":"Some","Fields":["162.247.74.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor05"]},"Identity":{"Case":"Some","Fields":["p8W0DsD7UXXohAdd3IdTHTU/Z5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0LidNflSyzw0oo2JRS6BBdU8or3+vqLGYvciLCgN9+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:44"]},"IP":{"Case":"Some","Fields":["178.63.19.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IceMateria"]},"Identity":{"Case":"Some","Fields":["p61ZlGiWi/Nhi3aTDhSoe0gXODc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FC8oiJfPNc2Zjx2YQe7NsSp6azF5zne8IJD++Efp3xM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:20"]},"IP":{"Case":"Some","Fields":["194.76.227.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dominos"]},"Identity":{"Case":"Some","Fields":["p6oyyhDhvtoel2pln9lsqZwthv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMWKYvSylrwvqEa5+VbyoRXydQoLQ9h1TljD/v+rmeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:46"]},"IP":{"Case":"Some","Fields":["5.254.118.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andrewhack"]},"Identity":{"Case":"Some","Fields":["p6h+wBAUyi+X/0lkXcMa0drr/SM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EE9Z1GXC+GA4i4TAFWm9vy0dhSO4YAWcQx2mbePJpSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:47"]},"IP":{"Case":"Some","Fields":["195.34.103.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Beppo"]},"Identity":{"Case":"Some","Fields":["p5n99f8T0fZV0VOmuoaezUP11ws"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmoehTFrlizZMN/ixZCg5RqMFzQ629WY7WeG8AFEFKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:45"]},"IP":{"Case":"Some","Fields":["79.209.169.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HefeweizeIstGut"]},"Identity":{"Case":"Some","Fields":["p4mkj8sng2qWUsZm+UBUVhA0RyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ZlFgQEAGe5Up81X4xyNN4If2Wm5g3VGa7fxRLtdfMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:06"]},"IP":{"Case":"Some","Fields":["80.255.0.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.4-rc"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["laeviculus"]},"Identity":{"Case":"Some","Fields":["p4Ny7GnWCHerNPQSj+NJmljdLDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yCNwUje+kogLbIozXyPoBjp3i6CmYl3EShDLSV+tWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:30"]},"IP":{"Case":"Some","Fields":["51.15.77.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZwiebelRouter01"]},"Identity":{"Case":"Some","Fields":["p4Kk+srTzqvetRq+Q4W78CP3Od8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3W2bdV4ujDnuZBvf3ochxntOPxt4orJQgNRIxPfbkuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:21"]},"IP":{"Case":"Some","Fields":["212.227.148.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:190::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doboz"]},"Identity":{"Case":"Some","Fields":["p38WprMTHq211R3i+NCRT3Aq01c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJo83umIjtAmmID1+yMqC82ql69hK14lMhwYX5w69ps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:39"]},"IP":{"Case":"Some","Fields":["83.255.155.80"]},"OnionRouterPort":{"Case":"Some","Fields":[49030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jugendhackerassange"]},"Identity":{"Case":"Some","Fields":["p2uDmCk94Y73ZsediY2rHelYlJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RUngmDetga/yHblRjqse4fw4ApEYLze8DvxqL9VC8qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:09"]},"IP":{"Case":"Some","Fields":["89.58.0.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:fab::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["p1lt3cVw75nYAH9stj4+4mw/rOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1hAu2pukk0fwEZuDF5Wr4NmzR9hK4bP31NgBCB8iRGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:24"]},"IP":{"Case":"Some","Fields":["194.32.107.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:172]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["p1K4OsiHRXXz6qrnrOzQGp5ebtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kQub62EI3k+DodAHy7zMig49uIqvNfIGpijhtyw1gVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:51"]},"IP":{"Case":"Some","Fields":["23.128.248.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["p1HYvuIiVkt7plf3S2ZYg2/xruo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAocgKTyJUmVcczucRmFK81u1TlQ9la6PaepZ28ntlw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:53"]},"IP":{"Case":"Some","Fields":["185.220.101.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raptoractual3"]},"Identity":{"Case":"Some","Fields":["p07Otd68R0EmpdH+7kHML6o2WpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w+qUjTHFHrkZGzbda5QYB77r8nDoqs5o+AtFhLqnCUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:41"]},"IP":{"Case":"Some","Fields":["192.184.162.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AktionNordost"]},"Identity":{"Case":"Some","Fields":["pz5PnaCSgBenHLH/3yBGNq+aGI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EXC+Vmc1OoD8W/8+dnqpoNX1X2z/+jLQxtrH1PSUMsE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:13"]},"IP":{"Case":"Some","Fields":["95.217.121.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:3656::706]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv125"]},"Identity":{"Case":"Some","Fields":["pzeKIVSDxq2ZaK1QXaFFT34pR5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwD2AHwAfCl5A9TTHtSrtvzjSfZNoUzICHse6c8U6VY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["192.42.116.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5525]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei12"]},"Identity":{"Case":"Some","Fields":["pzF2c7kjtZEGYgT/0pmrLEFQtr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZHPeYg1p0Ox934KdKj8M/m55P+EulA9tIv4voeTGWqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:25"]},"IP":{"Case":"Some","Fields":["37.120.184.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:512:8475:54ff:fefe:912d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maibrunn"]},"Identity":{"Case":"Some","Fields":["pyzXF72gN0JTfo5DGYC8GG3lZ3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmjaobSsigKpr9Sm3Zhq/l0X6wuxbyYVO/JccXkGnu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:02"]},"IP":{"Case":"Some","Fields":["179.43.188.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0d9d82df278e4"]},"Identity":{"Case":"Some","Fields":["pywROmRsMmqbBuwGF1EFYjpOR6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uggAN0RQptJR6gARpIVqPNr05AcRDs6UToYNtEX+TA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:20"]},"IP":{"Case":"Some","Fields":["95.216.184.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:22bd::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockerTorRelay"]},"Identity":{"Case":"Some","Fields":["pyW0Ibn0z+5obgVrgaay+Z/1Opg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wAfpHbB2WZRTjXBU3cb3QVtqw8RvFYOKfad0D7Ji4U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:42"]},"IP":{"Case":"Some","Fields":["158.101.173.50"]},"OnionRouterPort":{"Case":"Some","Fields":[1234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedEllsberg"]},"Identity":{"Case":"Some","Fields":["pv/RAbluhtlbTM8duZ0jG/fNFss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mOv01Jd24+z30vCh/DfmslN/F8op1dup1JcP2G7gRLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:56"]},"IP":{"Case":"Some","Fields":["23.154.177.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenVonMecklenburg"]},"Identity":{"Case":"Some","Fields":["pvDpaeRhkcq8ZXfUCWTu/0n2RuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dh/2J317yxIBlTFWL34hpAGaYupApp9lzVpt17Kvxrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:10"]},"IP":{"Case":"Some","Fields":["31.19.10.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8109:8900:21a8:42b0:34ff:fe36:d87]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dewebit"]},"Identity":{"Case":"Some","Fields":["puOjxs6WLpF6EuWGrnUIBYmcEXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRtFkkPDFqgm2CyOqyZpCCa/1myPM5Oelv3iroH/Jes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:57"]},"IP":{"Case":"Some","Fields":["194.59.46.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["severepactrend"]},"Identity":{"Case":"Some","Fields":["pt7HW3qMSFcvUjzp+yWgceBqLjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BOyEDJsqMj1BF+Bx2Z7dDLRwnMgTwwWYcW1oAQVk8g0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:45"]},"IP":{"Case":"Some","Fields":["142.132.151.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:27e5::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["formia"]},"Identity":{"Case":"Some","Fields":["psjzWvE8ZH3KhCDzhAPf3diFVv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1thgzgow6GYX+1EsLzOLRJ2d6GeveTPjtJvevM8TOXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:46"]},"IP":{"Case":"Some","Fields":["95.216.184.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:288e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["OwlRelay"]},"Identity":{"Case":"Some","Fields":["psO2TsjuINd5h+vF6JTKbM5LUpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BX2cvE9eQAnKG+e4B8RrwNquqUSg2dzuqw13eXg8L9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:22"]},"IP":{"Case":"Some","Fields":["45.132.245.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:48:57a:a875:45ff:feb5:8541]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATLANTIS"]},"Identity":{"Case":"Some","Fields":["prvTNpWk48RUW6NwYFpNzYfZi+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8o1dqKToCWO2+/FcUcp7l4CK37uEJbU1fa8QKJdMrVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:17"]},"IP":{"Case":"Some","Fields":["188.68.224.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HatOfTin"]},"Identity":{"Case":"Some","Fields":["prkwKG7ZtyM/lhsdsOD1ye2Un3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WIpjJZzPoKIChe2GvgBORYzvUQZ1gRvkC5Id+pp1HqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:06"]},"IP":{"Case":"Some","Fields":["185.119.119.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:14:63::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["apx2"]},"Identity":{"Case":"Some","Fields":["prBSHEwfuR+2Y5iq1SOtdz6C534"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAiKjEIgWqW886hiBs2Sx/gs19C+KHfBhQhN3TaTp6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:54"]},"IP":{"Case":"Some","Fields":["185.107.47.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk6"]},"Identity":{"Case":"Some","Fields":["pqqUtAB6DikZstqOzyz6PKF2GhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["juE+age3/aMrbKDA71HSgAN7Wqs/9zYwdvmtnTgLUxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:36"]},"IP":{"Case":"Some","Fields":["62.141.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:32:4104:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thor"]},"Identity":{"Case":"Some","Fields":["pqRaB8OvTzf2ra+1vO5+QtRKOJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b29eUyzqQDDZyQGm/sjvbqIv54V3LQ8RQqHMbIWs1TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:54"]},"IP":{"Case":"Some","Fields":["83.137.158.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft8"]},"Identity":{"Case":"Some","Fields":["pqNhwMwAMQOpQ+MwSyEgNfWjj9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E+B7I6lNcNFJOtgRhdJYaZQnkYe4xrrgRFCSHyryxSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:56"]},"IP":{"Case":"Some","Fields":["157.90.246.152"]},"OnionRouterPort":{"Case":"Some","Fields":[445]},"DirectoryPort":{"Case":"Some","Fields":[82]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:5fdf::1]:445"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["H3rmi"]},"Identity":{"Case":"Some","Fields":["ppDGqoECwCfSl680Ab/haRjM96Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIKwqJ1pXmO8VpIbYVPuMp6F4sPeErWc52IKqHGxkKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:54:50"]},"IP":{"Case":"Some","Fields":["91.45.176.132"]},"OnionRouterPort":{"Case":"Some","Fields":[23]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange033de"]},"Identity":{"Case":"Some","Fields":["ppAj9d7KUxG0CO1eoe6GEKHuimE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1azyp9HnDue/SUt1W9u9BTjNoI4WlN84hVnwbaCDyEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:51"]},"IP":{"Case":"Some","Fields":["80.92.204.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["olabobamanmu"]},"Identity":{"Case":"Some","Fields":["poCX/pfTBlsab0znGH11P4uFE/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["80Nwzjzk++/jMySL3srr0dC4hSiW5cgLo8+TbSNNETM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:35"]},"IP":{"Case":"Some","Fields":["51.15.40.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:25d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["pn4ELTldVOC/ARKjvJCSQDa+KWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ow2DmSn9p0C+OFk6mFaMMQeuvOGpg0fWUhr7LlZJg+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:46"]},"IP":{"Case":"Some","Fields":["185.220.101.198"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::198]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu2"]},"Identity":{"Case":"Some","Fields":["pm5Xgv5gl9KCQERGZ3b+kSrv2Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZJFXGl5Rngwb5zwQZQtrexrvCbBOkkh4zwNtgD3mjLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:02"]},"IP":{"Case":"Some","Fields":["209.141.54.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:274::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4punk7r1"]},"Identity":{"Case":"Some","Fields":["plnqOnpTqnOgzM2gqb0t2VL/CLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Sb1MPaFMHKn5kjeVif4QQUgvj2qoxgdvdnaYbi/NDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:35"]},"IP":{"Case":"Some","Fields":["185.207.107.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnotherGate"]},"Identity":{"Case":"Some","Fields":["plkdYPFBHAKt+arIxB9JCA2zNus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o1c4AP2GKJYDuJYdhz1S8FyCUZZBFPwoNDasKgOuOuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:14"]},"IP":{"Case":"Some","Fields":["51.91.58.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::4902]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra65"]},"Identity":{"Case":"Some","Fields":["pi2Pd3Kmx23Qf0MYEM5oaC3N0tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/m/FQKTB4FphxhY7drgarOeIeDCvVhZchMGTfMnGwOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:08"]},"IP":{"Case":"Some","Fields":["104.244.76.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elias"]},"Identity":{"Case":"Some","Fields":["phtWpQ0T3CnbsjxqAz+j8MV0IM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iniqyiVY+5OWexbfzSPYKUU2LgbB6pxHxo/3hw7SVO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:00"]},"IP":{"Case":"Some","Fields":["144.217.80.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["comasmr"]},"Identity":{"Case":"Some","Fields":["phnlq/CrBTOSEYeKKJz5OSIzwkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RwOnbcGI83oUg2TOsEqpSIpokI5nUv937GpFuWy4OQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:00"]},"IP":{"Case":"Some","Fields":["66.85.157.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Montreal"]},"Identity":{"Case":"Some","Fields":["phiy6VCTomg6ZmNje36tDVgK6uU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xqFNz7SiUxP4og/ooVgQX3KQmTS07CKsLGh5b6A+s7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:34"]},"IP":{"Case":"Some","Fields":["104.152.211.147"]},"OnionRouterPort":{"Case":"Some","Fields":[4128]},"DirectoryPort":{"Case":"Some","Fields":[41289]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:1c6::1]:4128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boing"]},"Identity":{"Case":"Some","Fields":["phJOl4fydRTPiNAVuJXVaPsUmXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntgAWI+q7XYNr3onKV+C+SACC9k2KHmitaqnT3wYnnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["13.58.202.28"]},"OnionRouterPort":{"Case":"Some","Fields":[25555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["phGvJszRDbQ0InXihL++qBOEIWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tYjtJGrvIfLJOWeizJKX04pNWShhzE9O2GPYt8GKI7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:46"]},"IP":{"Case":"Some","Fields":["176.129.156.18"]},"OnionRouterPort":{"Case":"Some","Fields":[10221]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adlon"]},"Identity":{"Case":"Some","Fields":["pgr6b/su645KTFMfump4r1hqrLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g5MbVs0M5SD58DIS89mBIDgIJRl3ue5hVGWjCcDGug0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:25"]},"IP":{"Case":"Some","Fields":["185.73.240.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4740:10f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk2"]},"Identity":{"Case":"Some","Fields":["pgaX/zg+7uLohQXdTjBcB78yaxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a4+1cBSdywqrK7ZSVvAqH1eaBCHQkr7ADrs3b3ksPtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:02"]},"IP":{"Case":"Some","Fields":["80.147.33.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt31142"]},"Identity":{"Case":"Some","Fields":["pgVlOBZsXrUOEnTK0glN/n4sGno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KnYFEyIXr9IHy6JDatiw4Kn/duBOCuBsLPu0XPBc9i4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:32"]},"IP":{"Case":"Some","Fields":["185.245.60.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9rain"]},"Identity":{"Case":"Some","Fields":["pgQIbq6Dh3T4CYEZJaIj3P27HRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XStLTsWfuOug9na/1Dgz71So6LcYkM7b3WmCeZhIPFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:26"]},"IP":{"Case":"Some","Fields":["5.9.56.12"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse09"]},"Identity":{"Case":"Some","Fields":["pf9gzqyBVMhRrv2tQLQhz8lyl6Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EO/Fgioj1hwjm15LVqB45nhHsavIrudVW71dFnZZXUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:19"]},"IP":{"Case":"Some","Fields":["46.167.244.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["peQvGjr6lIp/L9sZVKTPbGSJ1Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUdtnErbaF35GH8OdiyvDjg2wpgE7RrGy0hiH/bbwbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.243.218.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NiceRelayGuys"]},"Identity":{"Case":"Some","Fields":["pdqR4KGhHJgWWt4PxttdZ8wod2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/xbAvu9aWT8fh6pedg6E6w5ohxpfpdACThjlOfNR00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:44"]},"IP":{"Case":"Some","Fields":["65.21.122.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:4ae2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pddPb19wT75qJag3D9u126JY9z0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kOMQWC8U5XXm4u7bkvMY+oVP6yrQ9M/KKAJ68G7yr60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:05"]},"IP":{"Case":"Some","Fields":["23.128.248.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::f477:54ff:fefd:dcf6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pdKMuHyT0xyq7crmT2+mPfQaFTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c46+bD53lNCi9OL1vglhGhjUNEmzeHLsEoz3xvm841c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:46"]},"IP":{"Case":"Some","Fields":["51.68.143.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5126]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["pdIvZrXr5mDUyB+BqVYCLWUMjL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8GmhCHa48OzsOU6tVohXvLzNqo/HE4H5D25loGNkyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:44"]},"IP":{"Case":"Some","Fields":["23.128.248.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::52]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH104"]},"Identity":{"Case":"Some","Fields":["pcWtxs6bUr6GDSVy/0hWncniTGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OALuB6Mlr152W2t7cBqR6WEjSgyDlo+/k6Xbligmr9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:30"]},"IP":{"Case":"Some","Fields":["192.42.116.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["pbvCxhsfawkJcBHEzla75X3lrJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xy8yWwPYqhdzH0MWY8fxrBgqb8ulYjVIx/0JBdObG88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:44"]},"IP":{"Case":"Some","Fields":["5.45.102.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demonteal"]},"Identity":{"Case":"Some","Fields":["pbFdWQwgdEa/tvc5/KZ96MF29DE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mEomqMusb18H6Tbbl5DZE3cSgUoKxmAsTDZ+qVRewU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:15"]},"IP":{"Case":"Some","Fields":["138.59.18.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thesistersofmercy"]},"Identity":{"Case":"Some","Fields":["pZv0rtI9WhFMxWSIJtWMUUe2LR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6VEFyp2saN9tBEKyyxHQZi22H77hhpjBtytNAhrhCIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:45"]},"IP":{"Case":"Some","Fields":["37.252.191.190"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:10:190::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARDIS42"]},"Identity":{"Case":"Some","Fields":["pZrYT5Ky5aduv+O+YtOyivm/0Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GciOyO1BBKjcPjFAdb3HI8kvZw/0ZkTt4k5BrgJvQC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:46"]},"IP":{"Case":"Some","Fields":["217.160.255.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:28d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p20sfme"]},"Identity":{"Case":"Some","Fields":["pYxRe1Sidl3pAI4PJGypYUBkpD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RovJ2vXvmlUxAuteO7SUHn1/G9jn+w76R1mB60qfivU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:18"]},"IP":{"Case":"Some","Fields":["91.244.14.219"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torment"]},"Identity":{"Case":"Some","Fields":["pYS6bdOPc9ugcwAYz3imXuH31JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ExSU5fnMGybLLsbk/mDldhAOLciSStcuTkdlsMYG2vc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:39"]},"IP":{"Case":"Some","Fields":["185.182.194.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FarleyHD"]},"Identity":{"Case":"Some","Fields":["pXhZTsby2elnmcVI38CJ2rPC+50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sqiSKHPeIMhl5H1knmAR+BOvcx0wf9C+ojg01JHBs84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:51"]},"IP":{"Case":"Some","Fields":["102.130.119.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt35265"]},"Identity":{"Case":"Some","Fields":["pXb0GAbi0cOE1h/60Y5d0nj3xBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DVp5Z4R5sI+L7gnrZZ5oUlFcsFnoVyv4dVoCpiyQ/HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:51:36"]},"IP":{"Case":"Some","Fields":["185.245.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r4"]},"Identity":{"Case":"Some","Fields":["pWs4RdKQeRyya86J/kzgjPfciiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0A5ymrwlDT1lhN1g/i3w749Tr663PcpYQ2Hl0xaGB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:02"]},"IP":{"Case":"Some","Fields":["216.250.119.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pWoBIKIVV4MgANXGj8194I6Co7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l1t9fzMBjuhPzzwzV3CruetGlJHDqf9n9C6fgNtT/Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:26"]},"IP":{"Case":"Some","Fields":["37.191.201.85"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe01:344d]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit2"]},"Identity":{"Case":"Some","Fields":["pWUooMAq0nk7a5zF498gHQLsIVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1SXAKL6c90YjnRwODH/++wCg8/CdSItrEb3bk+SMqkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:39"]},"IP":{"Case":"Some","Fields":["173.208.163.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3:223:8bff:fe8a:8e0a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lc59relay"]},"Identity":{"Case":"Some","Fields":["pWIFHdEz+KoKy1y4t8oC2+qUBbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wl18Tg/WKlkfI48sczdIaHl29lAQFsm5XeFJqHoKH7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:08"]},"IP":{"Case":"Some","Fields":["97.119.224.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra77"]},"Identity":{"Case":"Some","Fields":["pUv1DFdK7v4O4+fTsrDx+qaVQUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qpvUPPK/nflB1JUwrGtg/CKq2ilfbq31x8P90f8xGLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:25"]},"IP":{"Case":"Some","Fields":["37.228.129.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["pUnlf8KgYPogBRU35nOLPtW5hGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUGOV+crJIvucfhsG2XxjNfAl3QAirVm7bw93N75oCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["45.154.98.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waglula"]},"Identity":{"Case":"Some","Fields":["pUfRceLk1LVwFB9MnO8bKnOJ6tA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZuSt7fP16nKdADP2LtfpSUkJjMjLNzTlSHlfOiERSrU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:39"]},"IP":{"Case":"Some","Fields":["92.243.20.101"]},"OnionRouterPort":{"Case":"Some","Fields":[403]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:45:216:3eff:feb7:79bc]:403"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bkjk"]},"Identity":{"Case":"Some","Fields":["pUJN7t1akTFG5xd6ee5I+vfLhho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7sNH7zt3+oX4ks+1lfDCyVOdAP9onxTkGcEBp1Rt014"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:50"]},"IP":{"Case":"Some","Fields":["23.82.136.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alittlehelper"]},"Identity":{"Case":"Some","Fields":["pUJD9jbk/LL/WjIRLxJvvznQvWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xkz1GaWkTGsSi71LI1diMFXwq/M9bOHVETCC01A8o3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:53"]},"IP":{"Case":"Some","Fields":["79.205.254.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["pTclpgyaUFoGZSX0M/ivQvrMRP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KqQMTVWcvl9D00fqnKJUnJrhhtnwwR4w4wC3iElkyyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:07"]},"IP":{"Case":"Some","Fields":["185.177.206.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::131]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA02"]},"Identity":{"Case":"Some","Fields":["pTVpyzM+mJWkSVRwDMB9ITWAFRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XRv+od6SGItCwSeyEY9XPKVsCDWiTP1pVs8NgQ+7UhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:40"]},"IP":{"Case":"Some","Fields":["2.56.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9006]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weirdoo"]},"Identity":{"Case":"Some","Fields":["pQ8CCdDGhcjnfJJEuN744wzM2fU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/BBjv3uLe0tfHR5YMtFqLzRqdy5KoqZwZLUbU7ow7RA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:43"]},"IP":{"Case":"Some","Fields":["80.71.138.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yayarea"]},"Identity":{"Case":"Some","Fields":["pQz6ByWOPOp7BvybYkiiV1ZSh/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9r5mgdWV3OH8IEQlxKMJ36mYsyV/nVVmQDrWe/aS7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:35"]},"IP":{"Case":"Some","Fields":["64.4.175.33"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f598:f001::33]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOneRelay"]},"Identity":{"Case":"Some","Fields":["pQvFjDLTcWjAQLUL6Xf3903YFIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UHpVhNPbBE5UrKqorZmzVrqal3wInspv38ISbLZXzB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:10"]},"IP":{"Case":"Some","Fields":["152.70.175.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0168"]},"Identity":{"Case":"Some","Fields":["pP6aH2p+tqACofPfoxOkM5DiLG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiFIil6iu7kxy7J8GxJ65jbNBxGcf73zgo9fxkN4I1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:37"]},"IP":{"Case":"Some","Fields":["185.220.101.168"]},"OnionRouterPort":{"Case":"Some","Fields":[10168]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::168]:10168"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["pPQq5l8RY0xCo/OVLnGfRwkb028"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ev94QSA5qgF4PtaAQ1GR24sXqHh0H6vpxbeFEGeGjDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:55"]},"IP":{"Case":"Some","Fields":["188.68.32.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:42:896:37ff:fe75:d532]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrocks"]},"Identity":{"Case":"Some","Fields":["pPEdaT+rbpSbK3wYFTw/eYmJYAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2gHSV09wRgUKrG37jpc3IOzAnKeOrVBpjYrfUv/0uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:36"]},"IP":{"Case":"Some","Fields":["194.55.13.49"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[587]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nashorn"]},"Identity":{"Case":"Some","Fields":["pPD1Fsg94RspA4S5tKTJKKeO06U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/8TSpuoP1hu0F1BZ+R9JtQsgr90c9mP2jrmQjzakGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:18"]},"IP":{"Case":"Some","Fields":["109.70.100.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::67]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torototela"]},"Identity":{"Case":"Some","Fields":["pOdEENg3Be7/JLwmXeKy/zm9pW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdSEhoWi49AqgYGo0JObKwA1+4NXLG3k+PGq0y8dWU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:22"]},"IP":{"Case":"Some","Fields":["79.21.93.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit7"]},"Identity":{"Case":"Some","Fields":["pOZfKUle0REaaaEZM+jspwsBZ5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlCMehbC8Aycc1/2C5PG5U0CGbfz4kLnbYJrbWinoTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:31"]},"IP":{"Case":"Some","Fields":["185.129.61.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer06"]},"Identity":{"Case":"Some","Fields":["pOR/CLjVZCjfdrF+3Wc4vLw/Xvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rmEev+VCQYTsctaLB0DGF472nUQMC+v2UwAqqnlvGck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:15"]},"IP":{"Case":"Some","Fields":["82.165.185.89"]},"OnionRouterPort":{"Case":"Some","Fields":[4492]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse12"]},"Identity":{"Case":"Some","Fields":["pN4/wazsN2f1xASbzvVzF+ewWDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dfAEZHz+jRPKlykdQJQXs47KTcUNlXbhBEgmdypFCXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:56"]},"IP":{"Case":"Some","Fields":["82.220.38.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kiwirelay"]},"Identity":{"Case":"Some","Fields":["pMg8K+tPGzHUDoDVUkxmoRfXfFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W9lF/h4kvDz5d80V3Gd3GhxQScGrcooCbW8LwFbKQxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:41"]},"IP":{"Case":"Some","Fields":["51.81.209.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::a02]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lickitung"]},"Identity":{"Case":"Some","Fields":["pLLypR9z1AhTD6bIr2On+v/aoPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MUx1gaE1vvfHya89BM3/aan9ewYpwdPBKUWvRKUQ/9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:25"]},"IP":{"Case":"Some","Fields":["102.130.113.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["pKeeK4KUqiVytGxcdy4Un4T692M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YWty7eeGHWwNSFHG+apfmIBogxzVKDjgtB23Nc0wTj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:09"]},"IP":{"Case":"Some","Fields":["104.152.209.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal4"]},"Identity":{"Case":"Some","Fields":["pKYUF32JyZMmw5VT97f6WQm6Sx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QA8ATFRHXrqPQoF5QChQqo3BWH6nd7MhUXx1tMF8toA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:29"]},"IP":{"Case":"Some","Fields":["141.147.4.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8003:db00::705]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex44"]},"Identity":{"Case":"Some","Fields":["pKOT/vSGQJYarOktBBk0tVNIzvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZxmBKYVHEGVsDWjV6yHU+l/QoWRFcLZnVBmhbOuSy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:39"]},"IP":{"Case":"Some","Fields":["199.249.230.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e643]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9rijk"]},"Identity":{"Case":"Some","Fields":["pKJe2riA/0IA9MITFvO54HLJ9GY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vf6hv7Rdoju0e68HCmeZj2TyYLG37SXrjeRYjKAmpsc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:19"]},"IP":{"Case":"Some","Fields":["194.126.175.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["pJ+orx4U4yOa1+MQvvb+KHXM+wU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMEmumlvY+QoWuS8yt4fufDoNNoP0Y0WGWu+8OItSlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["173.82.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hp"]},"Identity":{"Case":"Some","Fields":["pJFRCDKXqWbFGIBSt7iuvSDzHS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTBlMzWegRKtfpuhkWu//Z1uffWxqbZhxUk7eOkYdgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:25"]},"IP":{"Case":"Some","Fields":["104.244.74.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f625:20:20:0:2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trurangers2"]},"Identity":{"Case":"Some","Fields":["pInTcHClCB2BTB8RITnu8N3AOkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+7abmo6cPBVSiEfXfxz88FWh94au8MvPtBYOJYcdmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:09"]},"IP":{"Case":"Some","Fields":["185.175.158.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipenburg"]},"Identity":{"Case":"Some","Fields":["pIDYyfmxES5Hwk4z2sBBnK8agho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bddW8pkG5NIiiX2PJ3US7UbABFF8nh3W1l+FA4uOkI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:05"]},"IP":{"Case":"Some","Fields":["77.174.164.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:a46c:5d12:1:7e10:c9ff:feb9:ebc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xcc"]},"Identity":{"Case":"Some","Fields":["pHyODWTnM+3Iy0QJveB9s8DtKKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HxiYU2qkmdKqHI2/lFMbCk2iEdoqKgO7mka1fj8i+VI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:51:03"]},"IP":{"Case":"Some","Fields":["185.183.159.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:3d:1827:b1ff:feec:f6b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["testtesttest"]},"Identity":{"Case":"Some","Fields":["pHRGr/eIts6Qo5UJwjpbTjpzIMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jUn6Rk5iftqT3eGoKNQGLgVBJwQja6afszd9TuAhYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:09"]},"IP":{"Case":"Some","Fields":["46.41.148.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman1"]},"Identity":{"Case":"Some","Fields":["pFfkL/B+wXr4wpijQKh0NKgC7ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HzmTl6zq0X4HNJtBlPDiXTx2zHgUZftYY2R0sQtfi0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:40"]},"IP":{"Case":"Some","Fields":["85.204.116.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:204:c66e:a519:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["pFZDP1QTw0nNi82VaxCRLqbE4F4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hS+nhBUZa9oIYeV9YL7PtLnaUE69Pe/14cm7i0D2h2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:06"]},"IP":{"Case":"Some","Fields":["74.208.33.181"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vrienden"]},"Identity":{"Case":"Some","Fields":["pENucLjX58VILvzFXVPTnsaukF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJcAolnNyN7WiGJ32Av8baNuIsJYrXZnzwZFr15htf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:27"]},"IP":{"Case":"Some","Fields":["51.81.56.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thepastatorrelay"]},"Identity":{"Case":"Some","Fields":["pBjZGVZR2iSw9R4o5Ukj2uK5wwQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XKfJkaBQ5c2CzgaJ/HNb3pvD4inEyV1aUKoff80gcvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:14"]},"IP":{"Case":"Some","Fields":["164.90.148.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mcnulty"]},"Identity":{"Case":"Some","Fields":["pADPg22jUa3a2bo1DBq6NQJkpOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdVCftwHALxURGpRq01JaidyDNuTe5cRWV3Yc5+vmII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:57:37"]},"IP":{"Case":"Some","Fields":["51.158.165.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:2202::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oranet1"]},"Identity":{"Case":"Some","Fields":["o/UeFg/3jpw8TRJ7XLQ2gIPQ/pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kq72wnN0sKPWhrkOXryrcEly1fgdPc1lpx6HB8XXqzg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:50"]},"IP":{"Case":"Some","Fields":["132.226.217.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crabshack"]},"Identity":{"Case":"Some","Fields":["o91As0inXzlMja8RrKEG7PcxaOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["grNPBvbREShVnJksHxHk4RyA8G9RJ1w58a3eo/XhrZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:25"]},"IP":{"Case":"Some","Fields":["83.171.236.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2mproc"]},"Identity":{"Case":"Some","Fields":["o8L4gcO2dNPUD9KSC7HeSVuOw+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/DsPomlpY3hTaTrUwlHRKHqloNQlGG72dY/5xGP1/vM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:21"]},"IP":{"Case":"Some","Fields":["173.48.193.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["o73Orhjb/1k8w9ovIlVQfax2jzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hgnq64PSuIWmXzqtuy+PGlSwRyT6V64VKklDwO7L97c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:23"]},"IP":{"Case":"Some","Fields":["45.55.141.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::14:8001]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["o7USKkU35NDw2FKXry6zEV96FII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5h5XC9YMoV3HnUNKdIWwkbHECI200bWrywXhTRP1kJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:13"]},"IP":{"Case":"Some","Fields":["151.115.48.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isthisthereallife"]},"Identity":{"Case":"Some","Fields":["o6+97jAjjkSJnJ+LdmbRKwnI7jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RAQ1RdzKs9pQsN28JkmV5Bghud8oQRMaWsv1LQ/Yvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:47"]},"IP":{"Case":"Some","Fields":["81.6.46.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:169:4918::666]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["o5gICmpy+CjcRHbeReKMWJLKEHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXYUAepDkpeQh2IQrHLySOqDoVJot47C9i5HTYIJuXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:35"]},"IP":{"Case":"Some","Fields":["185.220.101.49"]},"OnionRouterPort":{"Case":"Some","Fields":[10049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::49]:10049"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sighif1relay1"]},"Identity":{"Case":"Some","Fields":["o5RZHogOs2EOCdJAq2OYhJGET7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ttwqsSh5PCft6O4x0qjydpv51lvGQbAPhSwzOwfM3Lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:21"]},"IP":{"Case":"Some","Fields":["46.101.165.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::dd:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex59"]},"Identity":{"Case":"Some","Fields":["o4nFI747KepZx1rFV79c+2lYbcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aT2fSk0qWpONjSs/nMeQzjvRwpqCVdvaJIIpM9cVu0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:36"]},"IP":{"Case":"Some","Fields":["199.249.230.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::148]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayLama"]},"Identity":{"Case":"Some","Fields":["o4eMPmreJ3Nb+kFXvohNgpL/diQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQhwhv+LC/8O0SONuzmixYWAVzGly3YaQUzbKlpdID4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:07"]},"IP":{"Case":"Some","Fields":["51.195.121.102"]},"OnionRouterPort":{"Case":"Some","Fields":[6672]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fibonacci"]},"Identity":{"Case":"Some","Fields":["o4MXzvBEDiVPtoSBOVcggmGqsPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZeU5HNJIqGXyhqQ6yJR9ow9cfSKaTB2QHZReSoHa/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:49"]},"IP":{"Case":"Some","Fields":["94.134.50.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9e8:1537:df00:e65f:1ff:fe25:1a75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["junker666"]},"Identity":{"Case":"Some","Fields":["o3fmMlgK5KIORH5doVOq7DRtogo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rogibi+TnAjIfSvNZkW1GtCwlYzkcuNkoo4ushuD8L4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:36"]},"IP":{"Case":"Some","Fields":["45.15.16.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nss"]},"Identity":{"Case":"Some","Fields":["o3IfxUnNX1Iv7gSaivGL80UGiHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R7DNDjvsjCAk9MEaGiplyiT5bcyftzZwlIO3naUz0cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:26"]},"IP":{"Case":"Some","Fields":["64.251.255.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorion"]},"Identity":{"Case":"Some","Fields":["o20TA2dQ5HfgxWKKW+T+y2MobYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lve1cfZIeRgspX0yfj5XIuLDBE6R8iPTGvRIiHaq9O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:36"]},"IP":{"Case":"Some","Fields":["45.91.101.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GenericRelay"]},"Identity":{"Case":"Some","Fields":["oxaNCrU7hwkWD3clc5FG3kZoKDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+z/hekE+9zZdNTaKKIBmTmwUneYzKW0tugZIlahGB3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:31"]},"IP":{"Case":"Some","Fields":["185.207.105.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:714:8411:92ff:fe73:f0fc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deviant"]},"Identity":{"Case":"Some","Fields":["ovuHUjUNDcAxKVZuGX39fEsyBao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q/rIt8BV1IinqKUHknP7S5gwH0g1qpBot/57VxFlpdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:55"]},"IP":{"Case":"Some","Fields":["87.173.24.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor99connect"]},"Identity":{"Case":"Some","Fields":["ovXfFjEyz4/8H2NDE10zl8qFz4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0vKPtuSdxWqawcmFPJPhRj6k/D/mpQS8u4tcp4vjE/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:05"]},"IP":{"Case":"Some","Fields":["87.54.90.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy62"]},"Identity":{"Case":"Some","Fields":["oua7XDkc1Gs4xVtDKcNTBFQHcfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YI4h3MHJSBZZal4dXu9pcs5X/uqxHOvBqiYW3t3E/QU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:04"]},"IP":{"Case":"Some","Fields":["212.83.43.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["ouLHjhngLoAyMoZuhKBFUrdwK9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["62wqrD/P9qGmnxyF38PMZi5AaO+5afn+wXg5EAn8UkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:24"]},"IP":{"Case":"Some","Fields":["51.158.122.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip3a"]},"Identity":{"Case":"Some","Fields":["ot0O8xgT6bf220NVBKQG4a0rdqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2/6hCC2Bk18dy1Opgn5IRXJLHZcTgt1x4yqVqzOBdlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:11"]},"IP":{"Case":"Some","Fields":["185.220.102.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::250]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RSFPressFreedom"]},"Identity":{"Case":"Some","Fields":["otspP/xadqcYhjvxrtvI37HLEJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DBCTzbMP0HTF/dQlBr1x/OINn4gPEkurk4M0QaKQEBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:05"]},"IP":{"Case":"Some","Fields":["185.220.102.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RenderLab"]},"Identity":{"Case":"Some","Fields":["os4dN0QUcZiiMSc6+SDTjmbnoM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DK2o8cn0Ecfd7792SEYURm2bLvu1arTaEW+stmLI7p4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:31"]},"IP":{"Case":"Some","Fields":["68.148.242.19"]},"OnionRouterPort":{"Case":"Some","Fields":[44444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa0"]},"Identity":{"Case":"Some","Fields":["os0y2dBmjbdkrWjHRc4paTyoUbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ky0fyT8CCGIVBiEaxHeVblzrFv/SNHwR07fQivkwrm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:54"]},"IP":{"Case":"Some","Fields":["95.217.112.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pogRelay"]},"Identity":{"Case":"Some","Fields":["osxt54F2q1MdLn6oeukD2hXzdBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DnaE1+TRQQeKe/zNuuZ1qCjIzc691pU145xlGaFrq5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:27"]},"IP":{"Case":"Some","Fields":["136.49.10.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tournament"]},"Identity":{"Case":"Some","Fields":["oshdtsPWTXF40khI/YoOWTR/Lm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2qBhu0+vBAtWRPJLH17ApYFqjU/vdb++fqDc0iOfQFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:45:01"]},"IP":{"Case":"Some","Fields":["74.123.98.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex94"]},"Identity":{"Case":"Some","Fields":["osPLFSDHW+2yEkT9HfHDccJulZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIWiqYE4/l1OXdw1ds9JnN0TrL3bG/JbF5OFeh52j/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:01"]},"IP":{"Case":"Some","Fields":["199.249.230.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::183]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nordtor"]},"Identity":{"Case":"Some","Fields":["or/afrSscRM25w8F1BQL1V0CgQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tnu/ZtFYNLcKMuFcSVX4kb+SbpptwCezEJG6c99Lmv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:00"]},"IP":{"Case":"Some","Fields":["89.58.13.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:60:e0c:447f:e3ff:fe70:dcae]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversdeFrissons2"]},"Identity":{"Case":"Some","Fields":["orAwIlQXQSBl1Z403W8QRgutKng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jq+0DhfT/hWys/vGNIf4qoUeLW0yvEKKc2bNl9F+fCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:13"]},"IP":{"Case":"Some","Fields":["190.103.179.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RoteServerPaul"]},"Identity":{"Case":"Some","Fields":["op0qeKipVIGeIgzvvrzpXS/PpU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vS47OUbeuocxIQDYkHJDCUdrWzNI61H9hRaKbsM2/Cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:55"]},"IP":{"Case":"Some","Fields":["87.128.3.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IOT"]},"Identity":{"Case":"Some","Fields":["oo8M7kpanqdaOoEZL622GnSHVyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TjG5zO77FgiGu1dM+EpzKQPJBuXMfQdFUY8bkVAS6+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:12"]},"IP":{"Case":"Some","Fields":["188.40.220.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE64"]},"Identity":{"Case":"Some","Fields":["oo1sC6qe69KIcTNXxGz27wge9nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zuMarEBNgjlMZj1hyWVJDCKEHzWMy1K7hlHQD/TQCW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:28"]},"IP":{"Case":"Some","Fields":["37.221.66.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:105]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamuelFireman"]},"Identity":{"Case":"Some","Fields":["ootQEABAAJ1tla28rZbmzitsGCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3siekV4CipBrdIhIhTJAKcsitibUJnPLAdct4eaiUL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:08"]},"IP":{"Case":"Some","Fields":["176.123.5.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sabaroff"]},"Identity":{"Case":"Some","Fields":["ooDm5T25si4djAatVx5W00KPZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OXeY8hP0qgNCNB2SoWdcQfk3o/rZ0ujXoF7wDJQcM68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:04"]},"IP":{"Case":"Some","Fields":["50.7.179.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MPW"]},"Identity":{"Case":"Some","Fields":["onGkjNyi9igvFAXkte2eA8URt+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E54FJ4bY/WMAKvc03DE9Z/vxzhgYs0V1b5QMc7QThzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:26"]},"IP":{"Case":"Some","Fields":["193.200.241.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3007:4389::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM13"]},"Identity":{"Case":"Some","Fields":["omwifMll26v4ZQjhhoyQdJiqPRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n7inGA9x7SJIpDYK/kd8QZ1ESxRizGxhRShG3R2Az6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:26"]},"IP":{"Case":"Some","Fields":["185.239.222.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idoediteverything"]},"Identity":{"Case":"Some","Fields":["omkapcyK3kRNh8orMFUu+yPPu/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtHUhHDGa5kpFtUvGt82CELg6l/00jfcxPtWarbGWSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:22"]},"IP":{"Case":"Some","Fields":["193.200.17.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:8::96c2:69f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LawyersGunsAndMoney"]},"Identity":{"Case":"Some","Fields":["ol9r3m5eRVVeL8zE9QRgplVE1h8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XZLRavaO5PuKw4cSEpWMHVhCDIggz4VynbIO++sVc94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:48"]},"IP":{"Case":"Some","Fields":["208.94.242.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange007uk2"]},"Identity":{"Case":"Some","Fields":["oljXD4udtDrlNgnAlU1WJJ9GY0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pn+rSSolYMlu+nto1NQGJhDtv125kzF3nAYRwSIPBNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:22:51"]},"IP":{"Case":"Some","Fields":["77.68.30.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iVPN"]},"Identity":{"Case":"Some","Fields":["olNO8jOQyuB5sVhvD9+c4R9VYGI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NPY6fMXrbQnLhOS+NXfkUB1XA39JrxmuyerYdTB/4+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:53"]},"IP":{"Case":"Some","Fields":["185.220.102.6"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::6]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ok6cTpTwCOA+JKIMPtQKbZPznJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["57MgwUEkTt0V+NCBok7vcBPNYfPm7Qc+8h5+RLYdCI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:12"]},"IP":{"Case":"Some","Fields":["194.32.107.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:171]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemOCI3"]},"Identity":{"Case":"Some","Fields":["ok4c9+1hmL2Q3/ClmPLRskMnU6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bKXt44s65koSwTt0Yftn25qMczbB1yWRSE0oPHnYZuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:59"]},"IP":{"Case":"Some","Fields":["130.162.45.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["okEXnUl/yzDG6zu1mHysXALoI/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cT0VW+vs/AFDXrKqb0epyyzIUu12ViiyaoOhpppn0Q4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:23"]},"IP":{"Case":"Some","Fields":["167.86.112.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Init6TorRelay"]},"Identity":{"Case":"Some","Fields":["oiscLvIlWYf4q4qgsajiP1Aj7rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EcANdFv//GJSqu+q/ga0+nOyunbRAycfsa5lBsBFVfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:12"]},"IP":{"Case":"Some","Fields":["65.21.85.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3a:271f:3::64]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwotwo"]},"Identity":{"Case":"Some","Fields":["oiEb7AzrcMJjT0JSAMgrid/7mSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbV9FbOZDEcGxC3OjVbTo6NTDbXe+ldrvQQA1vU/sAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:36"]},"IP":{"Case":"Some","Fields":["135.148.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Galactica"]},"Identity":{"Case":"Some","Fields":["ofyOQkFnrXC2+klT2TSLzYLOt4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tGRPYDBhbWoM2VzLTmw56Kw3a/r7HOUvj6A0S5MF6eI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:23"]},"IP":{"Case":"Some","Fields":["185.217.95.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nutellabr0t03"]},"Identity":{"Case":"Some","Fields":["ofrG4EHuuuKFefom4k5RLY6QD3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+kSZ1FOCTUPTBXKqUO/BKYP9XOPATxC6PdqP8Tbw80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:13"]},"IP":{"Case":"Some","Fields":["82.223.10.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daeyang"]},"Identity":{"Case":"Some","Fields":["ofDOeWVEmHMvEAklIwvp5IAd+7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ewgA2Z70fEaFmdJoq1qS0nLQCEXyEQ+fxY2/5/k9SU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:53"]},"IP":{"Case":"Some","Fields":["172.106.112.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid2"]},"Identity":{"Case":"Some","Fields":["oewNCGGvdt9ardwXrRjdyPQoH+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AsGxwabPECEbLB11jkAjgtok4NHMoCoRaYgVKEifkxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:08"]},"IP":{"Case":"Some","Fields":["94.142.244.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lilonionboi"]},"Identity":{"Case":"Some","Fields":["ocUVQy72vy5pmmGE7XjfC5pZVlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VXUqacyZN29B8CmpysdJ9I6p/ArL5IdKTw+6YH4HQZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:28"]},"IP":{"Case":"Some","Fields":["192.183.199.139"]},"OnionRouterPort":{"Case":"Some","Fields":[59090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["obofFTC9rawTRYo0jdMbt/RVHd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOubce1JMpcndAuMfR5B91qwnl75VllaItndwS0XASw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:52"]},"IP":{"Case":"Some","Fields":["160.251.82.247"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1186"]},"Identity":{"Case":"Some","Fields":["obh+BaCUvxMCWA90ZdquARUW80U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVz+IUpCvkNeifC5bh0+tVEmOOGG3PnRrXqt/3VlXsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:29"]},"IP":{"Case":"Some","Fields":["185.220.101.186"]},"OnionRouterPort":{"Case":"Some","Fields":[11186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::186]:11186"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arnall"]},"Identity":{"Case":"Some","Fields":["obfB+D5dpDdv0uHbp6wopxqzMq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VypuYcGdVhc1FaCyWYXqTsnF2kXnRNec+KH5033ai3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:36"]},"IP":{"Case":"Some","Fields":["82.103.140.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["omue"]},"Identity":{"Case":"Some","Fields":["obLjLkJvcA033/FCKOG5V6Is8KQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NHyRNsvltVMU519uQ6GU8oyxVp81/idKRE6wv3gOGvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:09"]},"IP":{"Case":"Some","Fields":["94.134.7.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["camouflage"]},"Identity":{"Case":"Some","Fields":["obFupyxd8jNGs4FlgaMJN7Xq/JM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tw85bJvq4EgHG022GeVO9twe1KzQVDcA9ThgPy4K4Wc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:30"]},"IP":{"Case":"Some","Fields":["185.26.156.186"]},"OnionRouterPort":{"Case":"Some","Fields":[46523]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:d0c0:200:0:b9:1a:9c:8c]:46523"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oasTQSP59TTH4JtoQafsr9AoIkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LM9ZkZUHdKF2sPvE3X/RFMUf+Gn/FTxtpBSwgPapJTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:03"]},"IP":{"Case":"Some","Fields":["188.68.56.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandstorm"]},"Identity":{"Case":"Some","Fields":["oaKSQVgZhZLD6Iyw3yPBTZ/mQyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAUOwj4llHLdK1XKCwAYRH9Pt5PUGmBZO0tPcJNj3O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:11"]},"IP":{"Case":"Some","Fields":["51.81.56.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1189"]},"Identity":{"Case":"Some","Fields":["oZgfaYCsGvl1aUBmAmfAHRHhWwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["owSaklYht+1s3jR9W8gv1e9kQAssUfZqccoeuSCFMpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:21"]},"IP":{"Case":"Some","Fields":["185.220.101.189"]},"OnionRouterPort":{"Case":"Some","Fields":[11189]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::189]:11189"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed42"]},"Identity":{"Case":"Some","Fields":["oZO82VlC3NJUGDW2PlzhcQeI5IU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yaru01cM+g01rDGG/lGcrROEt9yqpsiPfJbItR2NB8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:10"]},"IP":{"Case":"Some","Fields":["213.138.102.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41c8:51:194:feff:ff:fe00:352]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["lspooner"]},"Identity":{"Case":"Some","Fields":["oYs/1uKwWBhZ1HttjFpymSoGDgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXBh/D2H/6cS/h1ZNAYsg7b7quCs6Wkv7RKAiVj+Fko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:04"]},"IP":{"Case":"Some","Fields":["185.125.171.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mephistopheles"]},"Identity":{"Case":"Some","Fields":["oXH4MyqgN6KFXDkEiPjv39Q4quY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rwCdvosXWa8AadAdrW+TtBjIN52ttNmPwjoYN6WUWJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:32"]},"IP":{"Case":"Some","Fields":["185.163.45.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2db8:7::a6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yournicerelay"]},"Identity":{"Case":"Some","Fields":["oXAVO/Y6nS4vvKP82GcoasO4DOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qWLchuHWLAvIriGYMjnpcUXb+JWj2IugV7+afHFrpPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:18"]},"IP":{"Case":"Some","Fields":["31.165.21.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hulahula"]},"Identity":{"Case":"Some","Fields":["oWuPKqw+oOpjr8/FZlOUZpNNOD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["shiBjTLKHXUNXruHIn5A050rALPclTwWAWmq+kuKIAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:13"]},"IP":{"Case":"Some","Fields":["78.43.210.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["oWimlyNeXjfvFYTOHbP86ZOnOD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3oZGE1vdd7EEXvzFWncQ5kI6gAP/Hoa3uyjLVHGhq60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:18"]},"IP":{"Case":"Some","Fields":["146.59.234.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatnick2"]},"Identity":{"Case":"Some","Fields":["oWiJcuSqTyTEyaojcs04e4KDTEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XhUD+zfCq9uOhKEFCcLJfSWxG4cpsXqgIZaqWgY8OYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:49"]},"IP":{"Case":"Some","Fields":["78.47.14.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:13aa::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reeses2"]},"Identity":{"Case":"Some","Fields":["oWKrM6dQlqeAzY0VpH3J7Gq9xMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3A8eAT6d97hCRcSiwS7H50mBvUU42z33zaKuCezQzSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:17"]},"IP":{"Case":"Some","Fields":["172.106.112.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oVZ29fDyunscpURG3bRr7m9pmpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bc9aIUvqK1xs6eg1CAKMGiyJKXCt/xtFngb0jzbOUAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:38"]},"IP":{"Case":"Some","Fields":["188.68.49.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bornhack4thewin"]},"Identity":{"Case":"Some","Fields":["oVJt0LrMRJkQGuWVhimN/VXSU0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uOqEJgXtytaF1o6WBZamSMAQmnwRHA2YvONbVpMg0TE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:44"]},"IP":{"Case":"Some","Fields":["185.38.175.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::133]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams01"]},"Identity":{"Case":"Some","Fields":["oU2W5sTDpa89flesCoWugr37D0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qDj1aoXoCB/kjiDgI21WkFBl8FhtTQahVeiJdBTaF5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:17"]},"IP":{"Case":"Some","Fields":["45.151.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::a]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anion"]},"Identity":{"Case":"Some","Fields":["oURj98Y4wCfiOCnsu2effiLvJis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LHSzjN3r8OfVszDY0CqUXLUyHFlfhY6WwJqPerSnY08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:52"]},"IP":{"Case":"Some","Fields":["193.30.123.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VaticanRelay"]},"Identity":{"Case":"Some","Fields":["oTxl6XHZbiXJXtTbKWa5rLpUzr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEKsGyPIElO87uSbEzAgXl5npOXy6FeIL6j1+SR1PcU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:29"]},"IP":{"Case":"Some","Fields":["64.83.167.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SydDornexzyRelay"]},"Identity":{"Case":"Some","Fields":["oTKcCmnPWbhvjI6hgVPtTr96Mwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s/hqB+H2xzvIlXReGYxlInO7jNx+jmkItW9y+Q/JnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:13"]},"IP":{"Case":"Some","Fields":["45.76.123.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5801:98b:5400:4ff:fe23:18c4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Desperado"]},"Identity":{"Case":"Some","Fields":["oTKB29j45ITpXdJzs+5/wUwbCno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3dvfAUjGwIfIOZxIPdRskMXN/fvcpK+UE1kmzoJucT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:38"]},"IP":{"Case":"Some","Fields":["78.47.134.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2b00::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer78"]},"Identity":{"Case":"Some","Fields":["oSeyUMkgeYHinBiqi6MRt0/FgbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q1ZpkiniUgxV6AJl5eqyKxa/RQGksE0xN24yLE/XEhw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:34"]},"IP":{"Case":"Some","Fields":["95.214.52.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["assange710703"]},"Identity":{"Case":"Some","Fields":["oR7nRxkc9IjreywSlSYPziYkvW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LzafY17EJ5WWuzo70+WtEbFo6IdQJfYNHrk1J6TxBD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:14"]},"IP":{"Case":"Some","Fields":["95.214.55.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zighinettohome"]},"Identity":{"Case":"Some","Fields":["oRMSSiLLzQwRQ+o+D4V+xB3QZr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P0wxjYY6VPneEOf8pswwvSymO/biwUN5Xu6GZGvnrHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:01"]},"IP":{"Case":"Some","Fields":["95.235.188.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kryptonit01"]},"Identity":{"Case":"Some","Fields":["oP44SG0ydRl0OpRFNsPOrjhJsZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TKzqG5znTajuB7D9h7JaNEZ/EMcbJcMClQrhMG5jBMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:35"]},"IP":{"Case":"Some","Fields":["37.75.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9091]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dhalgren"]},"Identity":{"Case":"Some","Fields":["oPBsL634jTo5qjBytAbwnXCVrJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xz6Q9GnNE4x3L0hJs1JY2QV0+mCLFs5N4kzoo7iC7rI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:01"]},"IP":{"Case":"Some","Fields":["46.165.230.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YeJunPeacemist"]},"Identity":{"Case":"Some","Fields":["oO29qPJHV0KdrIKJEYHZaHBiPE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1xh6EEEPyv03V1u5qRch3cY/wgW0KnC/wEPmiUfGzFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:28"]},"IP":{"Case":"Some","Fields":["51.75.71.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::264d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oOPTkbg87S8mTNbTlSXjd3XqHus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sVncVoEfd5o/eg/ZAia/2mEvR2hNUH7HxvDx0IUWxkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:15"]},"IP":{"Case":"Some","Fields":["185.244.194.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isprjr0"]},"Identity":{"Case":"Some","Fields":["oN+zEjHHGIKfoY6rTQzVHe264Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLjbC2VK787ibGdXPz20KvBAZ2Q9TD4nEvlgg2/4eUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:52"]},"IP":{"Case":"Some","Fields":["163.172.151.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN29"]},"Identity":{"Case":"Some","Fields":["oNuCD+yHwEBfe/Bd7l5K3tK7mQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pCSX94QxuzmrOHC3e0QvdIkuVHMWFYN6WxQdKYU5YQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:30"]},"IP":{"Case":"Some","Fields":["199.249.230.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e652]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OmegaRelay"]},"Identity":{"Case":"Some","Fields":["oNIXHPrseAspMOBZ4DUF15kpJ5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q217YrygCGwdMbCQAejCzUS0WWmQhxv8VX4f+8ilzV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:35:12"]},"IP":{"Case":"Some","Fields":["104.244.72.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TerminaTor"]},"Identity":{"Case":"Some","Fields":["oMWUELkDCsE4XEykTI2/4Tr0vJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["duC8wVI7WC6Eq6yAWaBrX3sv4shuYVs5jRehkefd9Fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:38"]},"IP":{"Case":"Some","Fields":["62.171.142.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2034:5805::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Strelnikov"]},"Identity":{"Case":"Some","Fields":["oL0QTjXTb1YwsB61NwWX6wkgTJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Md18m4LR+Sp+PV1M1X6bhMWdRWCVJnQxFHPrvdNJsCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:37"]},"IP":{"Case":"Some","Fields":["98.128.172.245"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra27"]},"Identity":{"Case":"Some","Fields":["oKkZZwRvepvDFUx7PD/eNMArEBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h3V+JitPdnNp1lxYWzkraUyPp32RjqbK6lx8UlaOi5o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["104.244.75.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluediamond"]},"Identity":{"Case":"Some","Fields":["oKHaxBzkyQppqgskgLvaZnpgf7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CzP2ABobXFKSn/w3uPjyCIx+Xb+D1bwkBRQplu+kt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:08"]},"IP":{"Case":"Some","Fields":["45.79.222.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inhonourofecho"]},"Identity":{"Case":"Some","Fields":["oJ2qrRbj93wu0aASvYoY/8v+tCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZ4xovbP+w2kDKy/cPjVcSdbgrnSFBwMgCbFOEM+r3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:25"]},"IP":{"Case":"Some","Fields":["88.91.65.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4610:a:4d::30ed]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Applejack"]},"Identity":{"Case":"Some","Fields":["oJ0g2F0KopxHyQq+r9trekv3/Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mVy6qOLFWm5AFvsjXtmHi5IlzfpgdpaSJZTbxiNaGDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:01"]},"IP":{"Case":"Some","Fields":["78.46.177.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c17:420c:c21c:f5f6:5559:d7c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["oIOXCQ43N6a0QjqICYLJWEmBKtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A9Hsg2C/eJz4AtJtaoS6nfEasGTbo1PWoGiSBAeuXLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:56"]},"IP":{"Case":"Some","Fields":["23.128.248.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Punggol"]},"Identity":{"Case":"Some","Fields":["oIHUNxJBSdBkWsqhJ7pMYIKJuE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iF2f8gkOyL4hJhY0sfcwIY+2QVNgbioUuVPIaN0jtAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:11"]},"IP":{"Case":"Some","Fields":["194.233.75.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddfkmuaxgt"]},"Identity":{"Case":"Some","Fields":["oHF0pVifAR3HKi4FhfJn5MRrAU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s811yVoziOnbX3PBo62Zdd8t9ZuuczFsCe4l4c+m7lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:36"]},"IP":{"Case":"Some","Fields":["193.32.127.233"]},"OnionRouterPort":{"Case":"Some","Fields":[55509]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["violin"]},"Identity":{"Case":"Some","Fields":["oGzaeSLiUiutN6q9tRvJU8xBvrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntRzZkY63MsAFwNHK9dL/iGvd3gMY2/wHNy0ifjXVcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:22"]},"IP":{"Case":"Some","Fields":["135.148.150.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vlado"]},"Identity":{"Case":"Some","Fields":["oGbnmDdYx8wAl+Fqz097cbr6ROk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hqT+uPzndz5a1s03OanpyDZM0MvI4DMtYD+rihx0VMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:40"]},"IP":{"Case":"Some","Fields":["104.244.76.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapFRA"]},"Identity":{"Case":"Some","Fields":["oGVqAIGQLYYKc8QMTxDVtA2aLl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D6M7twqsewMW1w7mT9tSd4DxCYnoRPWVH1AM+MzEeac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:10"]},"IP":{"Case":"Some","Fields":["165.22.81.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::136f:3001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetMini"]},"Identity":{"Case":"Some","Fields":["oEjSNoH+xrBzbneJvT54X5aEw+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Pv/jBaLIuWmaGDp+Pev00WEM3urBIrhqxsAPEN7Wz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:23"]},"IP":{"Case":"Some","Fields":["211.194.185.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["oClt3J7FCqQu2dR31R3UYH14dtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bJg4zuhapgelIN5C+YatyYAlvjLS8qgnV0v/SL7L1WE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:18"]},"IP":{"Case":"Some","Fields":["213.32.104.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SunnyDayz"]},"Identity":{"Case":"Some","Fields":["oBwE+gDhc9G9ACeYpv78rTfzQmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqBC5xWu0yyLEYfrFT3/q2kgcjY2GKARKQQQ7+jl5io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:24"]},"IP":{"Case":"Some","Fields":["74.208.212.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:225::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firefusion"]},"Identity":{"Case":"Some","Fields":["oBm4E+f8UZko53savqDxjnShQ0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BqlY3RZrZ8yxKkvXAKJaIBy8U9+igZxBz7mcaM4YH7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:19"]},"IP":{"Case":"Some","Fields":["62.158.24.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["siffeurattex"]},"Identity":{"Case":"Some","Fields":["oBO78ukxp9WKNwfIR2Gz9qqrJdU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7U+TuHyoxpERkzT2nembbghywdViX2WJbVWP3tR+D3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:36"]},"IP":{"Case":"Some","Fields":["45.142.100.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode5"]},"Identity":{"Case":"Some","Fields":["oA6QBTTf92NxBkwDcUdT6vi4iCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zhYftn3+TC/HVuSt7LH4h08SngPvHlnMck80mbQd26Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:38"]},"IP":{"Case":"Some","Fields":["198.98.57.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:449:d588:761:3910:8268]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Grexit"]},"Identity":{"Case":"Some","Fields":["oAVuDzdz3ZnB7SmLlWoqzuG/tf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vhLgNL0SClDqDsGwCXHv8uQo47PhkMk45LDLJwRS0mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:12"]},"IP":{"Case":"Some","Fields":["185.4.132.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarmokAndJalad1684"]},"Identity":{"Case":"Some","Fields":["n/oe5/5lP52gc5Jb3imadNysdZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["clfKQ1AryhjacRNpDxB/3i2J6KFuX74D5AKt04GalbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:33"]},"IP":{"Case":"Some","Fields":["107.189.14.43"]},"OnionRouterPort":{"Case":"Some","Fields":[26453]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8da:2b2:a293:30ad:506d]:26453"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE52"]},"Identity":{"Case":"Some","Fields":["n+ltLsJcqEHWmgq9BA1FNEMiofk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkXYqi/Yyd2z8C9qnfBNkC1YOr2BjGWdIpH7QrB6bxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:37"]},"IP":{"Case":"Some","Fields":["170.231.236.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber35"]},"Identity":{"Case":"Some","Fields":["n+jLSxUtX9NAqiswc1ZWCj2v4N0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9BKfMRpbywNX4zeGl9hXhwKwuCC6NAcleHSsroRefqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:33"]},"IP":{"Case":"Some","Fields":["185.220.101.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::18]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HighEndAdatikrit"]},"Identity":{"Case":"Some","Fields":["n9xzHO59Cm6qoBfowA2MjyydIrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d6I4Qb0s1UtCqcZtF6qhfDaONtQ4MkyXN8ZMwMFyO6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:40"]},"IP":{"Case":"Some","Fields":["51.195.166.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809tss"]},"Identity":{"Case":"Some","Fields":["n7d6XeEeTJtIHMT7RONFDWfWksY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5VMPqmEtyBpmd5LYzOnKFeCSgZve/N8pmeeYuAX94uY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:03"]},"IP":{"Case":"Some","Fields":["178.175.136.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:3352::12]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG6"]},"Identity":{"Case":"Some","Fields":["n6ihYWP7a98ijkXjKbDlrO29gwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t/9AhMot5b92WAa8nTReJRjnE45dHAmM30hlUHdU0GA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:50"]},"IP":{"Case":"Some","Fields":["193.189.100.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::199]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MasterTF2"]},"Identity":{"Case":"Some","Fields":["n6ERuIBUDiz3WwnDUwEaBP+31IA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4QYiP+RBODzsKK8Ov4JeRyevH0/6hd9zEl0imoqz6JQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:24"]},"IP":{"Case":"Some","Fields":["198.98.59.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra71"]},"Identity":{"Case":"Some","Fields":["n5XGiqy2fmJY7HprqUBsInq60/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AuFMuY7HOUxoqQMKlH65lq5oJiT83LsZHx92Q/+YNIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:08"]},"IP":{"Case":"Some","Fields":["51.75.161.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noa"]},"Identity":{"Case":"Some","Fields":["n5B4OmcgFdTUDyKQKWS5KtDqDBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q4Dq7zT1uRWcwxzm+kn7AkBRYg3CwJqm868yX+5xoqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:09"]},"IP":{"Case":"Some","Fields":["149.154.154.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:149:154:154:155:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nivrim"]},"Identity":{"Case":"Some","Fields":["n31uZCAYPCt2086ZYk68mKIaln4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RCqAJGS5x/ZeXn2zC8NYiIidSeaBCmfk4nepXd7lxWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:45"]},"IP":{"Case":"Some","Fields":["46.28.110.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XORJSRFL"]},"Identity":{"Case":"Some","Fields":["n3SnfrnXby/M5ZHImibg/b0RCrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ciwrlRUf2XymyiTxqjFRrAWuTrsZWsX6/ecnykxDNd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:45"]},"IP":{"Case":"Some","Fields":["46.165.252.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sn00z"]},"Identity":{"Case":"Some","Fields":["n15/Wk1dgIuBHfxtg0g/2SUIVpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yEuN0Hn+xRAsDdZi1HkzDqAIGOH/TaIwRULweM6ffmQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:51"]},"IP":{"Case":"Some","Fields":["37.187.179.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:404:200::4b3c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel26"]},"Identity":{"Case":"Some","Fields":["n1BoMQgY7XxwsLxAh6tVyxLLQ3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9lRDI7LTdNspVzCTSwG/++tMLCG+31QWZCS5CgAO6Vg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:15"]},"IP":{"Case":"Some","Fields":["89.163.128.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::cafe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ripley"]},"Identity":{"Case":"Some","Fields":["n07qZBNJ9nUzXwbz9XDRSuOQenQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XM+BdCzmgkAb9OZO65KKjbkDs9lNhEwDEENMq3gT24s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:58"]},"IP":{"Case":"Some","Fields":["216.210.83.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickenlegs"]},"Identity":{"Case":"Some","Fields":["n0rzB1H3RqAAC7d8pghYyzan0Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oQ7ONaNA50cMtegfL4A3wspgaL+ltjdWkF0xCqqoHXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:43"]},"IP":{"Case":"Some","Fields":["103.227.99.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infinity2"]},"Identity":{"Case":"Some","Fields":["n0WdR1aqYdftBdAA6kx1f6GaxAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkGfBQBWWUpeizqfGy2WIqL3VDydPRHyB9kRQLoG72M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:47"]},"IP":{"Case":"Some","Fields":["89.58.37.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ukna"]},"Identity":{"Case":"Some","Fields":["nzU03aSGXAqI8++Eu18ebDWFQ3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HxoVeh7jg/nJHDrDuWOO2OYgc/w3mIRprz6qQA3EqRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:45"]},"IP":{"Case":"Some","Fields":["123.253.34.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber45"]},"Identity":{"Case":"Some","Fields":["nyzyqCIf3kvimmd+pasn8uouoks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WFohNIWl6z2zRnoyBnGS33DfMMnPMhFxUrl5VgSLExo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:10"]},"IP":{"Case":"Some","Fields":["185.220.101.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::23]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex15"]},"Identity":{"Case":"Some","Fields":["nyhW9tK4mtTvbVcj+rFn21pTUZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1jnmpO4EOapSqA/+sjNK8DmyllK7aF4I/6ahzOUJBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:57"]},"IP":{"Case":"Some","Fields":["199.249.230.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::105]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["biber"]},"Identity":{"Case":"Some","Fields":["nwTtwk8XMbYd/4CggQFQc3pHhxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8IVNBt++9X+nPV0ERzyY2Uvz1N0wQCOcVcUrwi82EI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:26"]},"IP":{"Case":"Some","Fields":["109.70.100.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["nvSaB1p59ldwj17gCwXOewt52jU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6O4SKq8icjNVQ0Gu0dEUiQXkzSuCFUFzxqLt+8sdtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:13"]},"IP":{"Case":"Some","Fields":["45.154.98.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NixOS"]},"Identity":{"Case":"Some","Fields":["nu6GHNil/iah8naHkyMXL1uRCCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sRNg853hwS/Lf4y2w8lVa5bzM3V6RI+Mr/KiecUTQCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:58"]},"IP":{"Case":"Some","Fields":["176.9.161.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trainmaster"]},"Identity":{"Case":"Some","Fields":["nuqgLjOM31kZ+YPzJFqpWnkLm2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g8lvL9YyT87JsOv42eHQAQXOdacDVWrJNG3NhotALrA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:06"]},"IP":{"Case":"Some","Fields":["89.46.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse04"]},"Identity":{"Case":"Some","Fields":["nuY5hw/efUCmD34cm5Epd9Gu1xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsEsDECW412wY0WiNY36j9gdWDBvJwiK5Yh65aFyCrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:55"]},"IP":{"Case":"Some","Fields":["77.68.88.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr167"]},"Identity":{"Case":"Some","Fields":["ntjkXSxmbwGcF/I/9Wfp6x59rbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MPdiQFSfys607JRXf4Z5hp0Yre/ocPCRavNl/scnI5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:44"]},"IP":{"Case":"Some","Fields":["85.208.97.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Password"]},"Identity":{"Case":"Some","Fields":["nsT/rxVrnYk1XAcJFmRAfvnJ50E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6KSPNrIpGHw+ui9ZjpaxXb8XHuJbT+BLIktvRGKSIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:08"]},"IP":{"Case":"Some","Fields":["185.100.87.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nsPcEuwiLRcSH3wEvkJgNhV+GfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UbI7a91SxGqNLYrM52Q1UHz+DBT7kru1QtEUjjUNbec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["80.162.238.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["blindschleiche"]},"Identity":{"Case":"Some","Fields":["nsJL0Ncdl/K7/Dlo3Jxbu1UY6cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aOC9OYLTeWFON9Uzqo8/vJjQz3ru2HwxrZvB+VP+4Ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:18"]},"IP":{"Case":"Some","Fields":["109.70.100.77"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::77]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fa11en3"]},"Identity":{"Case":"Some","Fields":["nrWBms2l2pTM4EJEczXQBtwlY+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4s7ZN2QZAZ3+5ErDitsGPySmsybmiDcukgdtziCFclE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:05"]},"IP":{"Case":"Some","Fields":["51.15.227.109"]},"OnionRouterPort":{"Case":"Some","Fields":[7890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:67e::1]:7890"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatconfig"]},"Identity":{"Case":"Some","Fields":["nrP9hAZeViKlfv7xTkGgG1uZoCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vvA68YVu71EKKpcDgdpVSOmtlRppllTa3Nr9MwSOJCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:13"]},"IP":{"Case":"Some","Fields":["213.206.184.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:beef:2011::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedWikiLeaks"]},"Identity":{"Case":"Some","Fields":["nqxhy070RqAMWg+NLBgF0nrdhfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QHsBBQMmX+YXpkp+/cAeEUJyR4REEHtX++ogLJg/dIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:02"]},"IP":{"Case":"Some","Fields":["23.154.177.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lumiRelay"]},"Identity":{"Case":"Some","Fields":["nqZdG7YHraS5prKli6oslg34veo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PYNWAM+/7tC8urgCUGKruLZWX9EkBFNInorCC0r8bas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:57"]},"IP":{"Case":"Some","Fields":["140.238.168.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OldCup"]},"Identity":{"Case":"Some","Fields":["nqDfDgRubvngHmXQS0hc+ylvjDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["737SCJlJQxW3ZbrVAlAFVX4g4qU8EW6a8GRTFBcsmKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:18"]},"IP":{"Case":"Some","Fields":["139.162.251.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:92ff:fe8d:d119]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["npoTVbcN5nW3TE4UuOzfcuQdi/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t6BUDEq1ixofcwkeoY7vnoSwnSv7EqsRe8ypS1tOKR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["167.235.229.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:fc5d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Gentoo"]},"Identity":{"Case":"Some","Fields":["nplz3PcIB94ZKwLBBcXobGAgIDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qN8Q730OSu1FuBVZFo0USXVYd9qPpcPnt7v/cOAK51s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:46"]},"IP":{"Case":"Some","Fields":["60.241.48.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:6e::5eed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["colagioia"]},"Identity":{"Case":"Some","Fields":["nojHxQ2gY5QkpkHhQ6YAAQiYoRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OF6JgsO1zlJkNXHbCDT0uDwYkgUP46Yzo3j5AQzmR1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:15"]},"IP":{"Case":"Some","Fields":["72.14.179.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fe96:1cd9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["UntilNoEnd"]},"Identity":{"Case":"Some","Fields":["nmJ5KN/l3V5RikUqUD1AiAEV36E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["15eVtSuXFGUFQyekTWPWuyDztZiCGxYmdaB9cWGvY58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:16"]},"IP":{"Case":"Some","Fields":["65.21.1.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:1c3::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv127"]},"Identity":{"Case":"Some","Fields":["nmJODl66MVa/2piscDvP+V6aL/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G8Hg055DG1K9nqR0h6e08zRqtiKlh2LaN3Moch0fav0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:50"]},"IP":{"Case":"Some","Fields":["192.42.116.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5527]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber55"]},"Identity":{"Case":"Some","Fields":["nlaAs/XCynaPKCyF26oRcy10VtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6JsEjy3rE7W9aY/JC7lbIIyByxP0G9Yw5Qxb3Owk4mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:31"]},"IP":{"Case":"Some","Fields":["185.220.101.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::28]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trycs"]},"Identity":{"Case":"Some","Fields":["nk0Xcs7JhsdSYGVziLvFfVg+uB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMMN7SxlqWaELK5WFaU+GT7UHBAWDLgiUgdP5xdWthM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:20"]},"IP":{"Case":"Some","Fields":["176.9.42.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marla"]},"Identity":{"Case":"Some","Fields":["nkzGTE+Uw1nUPFugkJQyP9vv2XU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqBEZpm3gQ5IRPz6qGiFKdPiUxTgzrweoW6wbzKcW5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:28"]},"IP":{"Case":"Some","Fields":["185.117.82.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:21bc:1e::f00f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["nkM0U9M/hbcmqrrQQ93QDhcTKcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBef6VWKaVZpvuyo0hz/inFO+2mbbQhMY/jbgaXLqyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:08"]},"IP":{"Case":"Some","Fields":["176.58.110.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe33:3c13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["equinox"]},"Identity":{"Case":"Some","Fields":["njk8lWBdlvBk26EJTfOQCcAU/V0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7YrFtJ+uWW9OawHJe6Ki94LSUY9cnZ3k1acOBHTKB5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:03"]},"IP":{"Case":"Some","Fields":["5.254.118.150"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP07"]},"Identity":{"Case":"Some","Fields":["njY0I5JOzDclqdTUd3JCEZijqEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OKuJuSdf4IWkxVxNxGop9YIwF+yZxj9xjzLMfiRPGl4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:15"]},"IP":{"Case":"Some","Fields":["15.235.29.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex47"]},"Identity":{"Case":"Some","Fields":["ni18aYEmlASqGXC1OJFwGiBCTvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hQV4bycwPvfxDmGFVKtsmmhytm6mbz757yeQb23LRTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:40"]},"IP":{"Case":"Some","Fields":["199.249.230.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e646]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WomTor"]},"Identity":{"Case":"Some","Fields":["nipLGud3EALbDMmg56BnrCLloSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpoUTtJamNyxrwSjxlugFbE6aGOnRV/e80HNnKg1jgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:52"]},"IP":{"Case":"Some","Fields":["51.15.49.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nh4Di2JCwbcGEpD0YQjQQYtEuaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbmxY6Oh/52DeWhnJ91KtC85grLq66rpuNq2HEkOY3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:22"]},"IP":{"Case":"Some","Fields":["23.128.248.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::c9d:f5ff:fef5:272a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv114"]},"Identity":{"Case":"Some","Fields":["ngBYMAQB9mh+rln5/oLbiSMDRME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HIbTPgKOmT1gaqsGcu3jXI9oe9WjNXUbI2SIZDNJB1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:05"]},"IP":{"Case":"Some","Fields":["192.42.116.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5514]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nfHC1LYYLy97Lesa/EsnFRDQ4/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CxGjMOyF4vH8vxM8F7BEPO69G07rgEVC2DSOHEC6XNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:14"]},"IP":{"Case":"Some","Fields":["23.128.248.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::36]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ne2XGY37bHpxJ3GY1EiGbzb01Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXd6VxwjF31CDOv/FzKsI9m6n2FRh+nIMllBE7RGVvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:54"]},"IP":{"Case":"Some","Fields":["136.175.8.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit5"]},"Identity":{"Case":"Some","Fields":["nep7ZTG0RuoauQietZ8E51xST8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1eQv2C8szGflsu3ZVXSZb7pzcewwtb+4UEJfntL8lP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:01"]},"IP":{"Case":"Some","Fields":["185.129.61.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myHome"]},"Identity":{"Case":"Some","Fields":["ndlp5paY4sdPv2YvmGuqYaoKxVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnPXPdOOrEujuZTCjq12UyeD5csqEoZF6P6RybzGNsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:56"]},"IP":{"Case":"Some","Fields":["79.223.122.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["akira"]},"Identity":{"Case":"Some","Fields":["nciwKCqNPEUhIWfEVLUDJDvJOVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EeOU+Zt40qoB9DtqxgZaQ8UxBu9ORASM3oMxNJrAdgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:33:46"]},"IP":{"Case":"Some","Fields":["193.105.73.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["philotes2"]},"Identity":{"Case":"Some","Fields":["nba83BCu+ywDKFfhFK9YWiUunPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mFatIpxH3AwUKi6eDd5gWsLD/J0pKq/30ppghQ+tRvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:07"]},"IP":{"Case":"Some","Fields":["94.16.118.250"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMeDaddy"]},"Identity":{"Case":"Some","Fields":["nbZv0cQUmDgGh6zLiJfhx8g4800"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dq0V21B7ZIbdfPp690mgI/jO3FDS4MP6LkvgF6YaEvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:04"]},"IP":{"Case":"Some","Fields":["97.115.184.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HungryTREX"]},"Identity":{"Case":"Some","Fields":["nafvnp1gcM2LcFm4qMxbQc7AJyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xXoNZleV34KzE4HGlLT77L8gbe+S3Tv0BXdXVPNpj4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:24"]},"IP":{"Case":"Some","Fields":["192.99.151.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bifrost"]},"Identity":{"Case":"Some","Fields":["naUoSlECGnEeyqZ3yB5UCCIrnyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLNKcgyzw0nXdC5rOTCW2RVYeGM4I/QTuoSm9yo5TLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:11"]},"IP":{"Case":"Some","Fields":["90.129.255.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay18at8443"]},"Identity":{"Case":"Some","Fields":["nZf4LxYK7z/9egqyv7aLaREhyxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w+N7XvYGOsHMzJfZybPmlh6lU3skG/ky0aYghpYiNgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:32"]},"IP":{"Case":"Some","Fields":["140.78.100.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay42at5443"]},"Identity":{"Case":"Some","Fields":["nZcLf7rDU9j2BJrU4M7ga73k4X4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNVyeIB6BmngZN9ma8SXsinVPVxvgbVyJdP+mRrITC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:57"]},"IP":{"Case":"Some","Fields":["140.78.100.42"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diale0"]},"Identity":{"Case":"Some","Fields":["nYQcpzmTCJTSNWn6WLZjIkpEDMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b1ltSDqDGNgSkDjqIjViooYDLPz4+0Qpn5hUqwBU8lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:53"]},"IP":{"Case":"Some","Fields":["95.33.88.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nYGKKwmW+7UwD7l73YpxvXedGT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJbAFnTnfrY+hK+T06f9TBybZKbY3UbLOvw7A52snf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:11"]},"IP":{"Case":"Some","Fields":["23.128.248.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::86]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who10icebeer46"]},"Identity":{"Case":"Some","Fields":["nWbsrtOOVNeEzVcXcD34MCL7ZPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P08LP3DdPFr1T0lVsOWhydC3OmQ18j3iM4LmDSw3Fvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:36"]},"IP":{"Case":"Some","Fields":["63.141.233.118"]},"OnionRouterPort":{"Case":"Some","Fields":[8224]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aib9ushiekee"]},"Identity":{"Case":"Some","Fields":["nWPZlTWhKlylOSx5an8OLVN8JJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLFKiiH/bAATXekOaAAecrJQHxggP7oBcoxbPRqZfZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:21"]},"IP":{"Case":"Some","Fields":["107.189.8.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lptr02ORFzF4Za"]},"Identity":{"Case":"Some","Fields":["nWF6wXSnheHQNNIG1orzSoeloLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4D1M4ElwOraahaZgna576UWma+SbZAft2sQIRnjQ92c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:53"]},"IP":{"Case":"Some","Fields":["173.212.242.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2013:844::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShayughulRelay"]},"Identity":{"Case":"Some","Fields":["nV1V476J1hLXH9X8XtUmlQeC/00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2pKnJcFmgGxC+LkzaV9RXmjy03YmWZRmZNpQx/81eQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:37"]},"IP":{"Case":"Some","Fields":["216.221.110.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["nVp6gbxhlFVc51H3X7GW5KOYLMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+s4q+VauZ5FJ11aklj9FMTZWgWnRgo2A2MboUMi47WI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:33"]},"IP":{"Case":"Some","Fields":["185.220.100.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:13::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nUt69fdXjrpfYRKvlzf4XULCMhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJOsjPk6epSEfGc60IWHCWWVSFD4rpVaHFnTdrPcWH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:35"]},"IP":{"Case":"Some","Fields":["23.128.248.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenjaminDover"]},"Identity":{"Case":"Some","Fields":["nT+qLM1I4IeVpyQYRpF0SRczhik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1osu9B3+6xtGrR1+5DIkXSFhtWUxioydENiJDcg+is"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:02"]},"IP":{"Case":"Some","Fields":["178.200.140.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:1082:4b10::b002]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal3"]},"Identity":{"Case":"Some","Fields":["nTBflZFIw7jOELbAzhaJqxfXAUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o7csanNB33hqTmuFP3aJT03oTI3AaN2gAFCHz+GwhPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:19"]},"IP":{"Case":"Some","Fields":["51.79.156.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8000:800::e5b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeworld"]},"Identity":{"Case":"Some","Fields":["nSyigc5d8cyCHqBkbC2uOyya1lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tjFWZlX6n96OBNNwxqfKC3Rk4RpNg3fdNjWe4t1iD+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:47"]},"IP":{"Case":"Some","Fields":["186.190.208.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex16"]},"Identity":{"Case":"Some","Fields":["nSHwNMO/9OdzfQjPd13BdFcGgB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YpaaGDw7Oxkyk+L0qSe6uZOWtLHqkeDQFLcoFfe1YhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:39"]},"IP":{"Case":"Some","Fields":["199.249.230.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::106]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nQ9kDmuNdVKuv7+mSBtENQePM7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["395nNkEGAdD6WWtw/vOrDji897kVwgKpdeXLZDmgbog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:51"]},"IP":{"Case":"Some","Fields":["23.128.248.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE70"]},"Identity":{"Case":"Some","Fields":["nPf0JADpb0lpe8a0j/pBdtWreF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvHPsgGKrVKLJQsXP9n4uroaXqq/ytFzFCFkWY/OuWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:45"]},"IP":{"Case":"Some","Fields":["37.221.66.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:10b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R3S6"]},"Identity":{"Case":"Some","Fields":["nPfoTUA3GcvQsjgauBDwr52tJ5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pJ+Xv9L9wbwQOPTWHFeRfzJHZKENKMudgKXT/31m0os"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:55"]},"IP":{"Case":"Some","Fields":["185.146.232.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:164:0:5233:2d:5336]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoGodsNoMastersDE"]},"Identity":{"Case":"Some","Fields":["nOE3q1gk22fyTlRAbpCfaYygPm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oYp1LV1qO2ay5io6gepWKs6DnHnQpGdBx/kdF300szs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:17"]},"IP":{"Case":"Some","Fields":["78.55.245.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra47"]},"Identity":{"Case":"Some","Fields":["nNOGu4BPub7pL6EeYOkkFVXMt5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aK3h3VEI3cgmmWQCFaX3YyOo1tT+eApM5dn4epdLEX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:27"]},"IP":{"Case":"Some","Fields":["193.218.118.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::147]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse08"]},"Identity":{"Case":"Some","Fields":["nNEqqKPIwePxZF04wwmM0icMVug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiEMOOk7FQJHUZXxkixEx6qxFZ/wUrOGu4X6MFU8NIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:50"]},"IP":{"Case":"Some","Fields":["195.133.52.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Saturn"]},"Identity":{"Case":"Some","Fields":["nMzvhegk5AT56rhP/MeseaVDMZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QoLRSVu9tC1TZISOTyngcgRb0LjQpXvWuQzkZOs8D98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:03"]},"IP":{"Case":"Some","Fields":["23.129.32.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fed2:fc0:d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigDaddy"]},"Identity":{"Case":"Some","Fields":["nMPpwfQZbU8R8rgV+OoLYwofzIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YZIO8sVVvT5xw+1baM4rJyT/y730jmBe6LDGVKx6PSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:08"]},"IP":{"Case":"Some","Fields":["185.21.217.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10041]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorA"]},"Identity":{"Case":"Some","Fields":["nL6MBvIORuR4DdvITyFhXcVCs0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ADFaJWoDFuw786blGGR4+uuifR2yi9efSi1zNxtp/ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:20"]},"IP":{"Case":"Some","Fields":["85.195.232.50"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:ad8b:50::a]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NightRelay"]},"Identity":{"Case":"Some","Fields":["nL1JNxvbiPuPsnjCWuip8d4UmOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mAZUsQ5TOJGe32KNUH2fMP50swdO05nbSpnDWMyo78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:14"]},"IP":{"Case":"Some","Fields":["185.101.139.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enif"]},"Identity":{"Case":"Some","Fields":["nK04Aoj8CG5oBqWenEByzXXyYiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zW4prxl2zJU0eIYeonWee80DfDpJk52XU3EgmKlQgeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:54"]},"IP":{"Case":"Some","Fields":["144.76.50.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nKSrKwQsFzrFZHnGn19Dbp8eD5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kFYmsUlZ1kFaDBAKgaPNhjAkHeYSX7/W8GPjmWKYsQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:50"]},"IP":{"Case":"Some","Fields":["46.227.67.92"]},"OnionRouterPort":{"Case":"Some","Fields":[51505]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["protesilaus"]},"Identity":{"Case":"Some","Fields":["nJflhAV4aXAwq/x3hEQuMu/Y6R0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7hDFp0AHp7CWiBUqaVDHyEqwCeJHTKXu8Yo9BrkXMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:44"]},"IP":{"Case":"Some","Fields":["132.145.245.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8000:6a00:1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bledo"]},"Identity":{"Case":"Some","Fields":["nJepqDLOgqvncQJRuCcj7qCRRqw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHynU/JRwn+MZkAbebYFK7pOA4EnW1+GogMWyZIo3Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:52"]},"IP":{"Case":"Some","Fields":["92.176.200.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay14at8443"]},"Identity":{"Case":"Some","Fields":["nJeTn9cup6MBGV5B3NqQfkSUqbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7tp67ymmtsG5/dseYhBg5zihsBM02PeQ3M7xt3TXuWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:18"]},"IP":{"Case":"Some","Fields":["140.78.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RAPTOR"]},"Identity":{"Case":"Some","Fields":["nJaZAxler2g9oTAC7NW7O0D8sO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QwmXVBFBuGLR8insLNleNGtPI4LtuPKaEA/T5a65zr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:14"]},"IP":{"Case":"Some","Fields":["205.185.124.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:789:a7fc:5e5:7f84:de31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["santaclaus"]},"Identity":{"Case":"Some","Fields":["nJYq75eElmEsUh0JYy5Z7QVdU+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UdXlPDF9roEGZC1cVIRwYAZ4Uis2awBLoTiqSrgvdVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:08"]},"IP":{"Case":"Some","Fields":["178.17.170.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstor2"]},"Identity":{"Case":"Some","Fields":["nJAKf29d0DTP/RktrsnMqoE9sCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COkQW+8AgAewpDVK2rYnUjrdst6zuHelO+9kff0GQpA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:52"]},"IP":{"Case":"Some","Fields":["86.105.212.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:75c0:29:39e6::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torntgonl"]},"Identity":{"Case":"Some","Fields":["nIqw1f7yQoHfzblHhKauTxuilo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fm7rsc9qlEDXuZMrKjah0vTpzGD+VIdwXn74cINX81k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:06"]},"IP":{"Case":"Some","Fields":["95.217.129.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6a56::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bashfulbear"]},"Identity":{"Case":"Some","Fields":["nIT/HxO3OOy1OA91yUM6sqGCdGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvHQIBnLv2GPfScKqg3VX1r7az+ucc/FiUhXMuId4uE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:09"]},"IP":{"Case":"Some","Fields":["31.171.155.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nGzeyDbbU5ELivUJsXgeFA+mnFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KHgN2+A4x2zP3EavS9/dpZKpURHjbrez4IsXJXy5bBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:03"]},"IP":{"Case":"Some","Fields":["148.251.50.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:1015::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e2"]},"Identity":{"Case":"Some","Fields":["nGH8CgFAHt9xxASGZeU5aOgTUfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4qxzLNRtdxXQQNMUqCEWRiQmkXcpOjGTlAKEM6JMrxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:32"]},"IP":{"Case":"Some","Fields":["195.176.3.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::23]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coffswifi4"]},"Identity":{"Case":"Some","Fields":["nFr9Sark4CcrrXgMbdcc4aNgEqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ugubOemkNFDGLO0BETo3SzIVgNztD4mxaOjoZ6BPxpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:29"]},"IP":{"Case":"Some","Fields":["82.223.14.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:91::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay27at5443"]},"Identity":{"Case":"Some","Fields":["nEzTIb/qeWzocfGGd2AB+++IZCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gcTcAUwXmNjGop1K+hsuL2xJAuz53aZHhGlkaz2NjQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:47"]},"IP":{"Case":"Some","Fields":["140.78.100.27"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim04"]},"Identity":{"Case":"Some","Fields":["nDBbwJhSx8ti6aQfnsoQi7+yNSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ERfb1T27IGoVty/Fe9w2HF3Sp7uHsHXI24t2RkhIaeo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:55"]},"IP":{"Case":"Some","Fields":["178.27.85.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepGreenResistance"]},"Identity":{"Case":"Some","Fields":["nCv5seMOuxo4NvoEvu6MwZLMHls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8zFa8R+xhRsHVhYqGsy7HOTMm87MucNeLHvcUVqak4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:41"]},"IP":{"Case":"Some","Fields":["185.165.169.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clan"]},"Identity":{"Case":"Some","Fields":["nCSkQQAOZjbUBB//1mnI3RZnLLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rWZ/mSVZhTDhuE/ogJ6oL+zzJCg7atoODGASOgxhzvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:58"]},"IP":{"Case":"Some","Fields":["205.185.123.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trimblelink"]},"Identity":{"Case":"Some","Fields":["nCLAFTLQMMJJ3joxVcbjorwzs2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hipuAQlTgUkfJJdMa4B3cVWDWuKoXsjKEDaTNpQET7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:37"]},"IP":{"Case":"Some","Fields":["46.246.126.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex95"]},"Identity":{"Case":"Some","Fields":["nCIyrezOxq4MRX0u065jQlVAxZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6W97zV30w1PxmxquObaid6KJ9UOKpMOl6XOuS4+PIVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:43"]},"IP":{"Case":"Some","Fields":["199.249.230.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::184]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN21"]},"Identity":{"Case":"Some","Fields":["nB59khFdQxOFuMrqanwV+4nOI2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0IhZdg42QPrjMabmN7MjQnta0dcpkBtXcSzPrGQsA5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:35"]},"IP":{"Case":"Some","Fields":["199.249.230.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64a]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei04"]},"Identity":{"Case":"Some","Fields":["nB5H/yBfNJ1p1WmuftFTZqVVSkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GTQqYrb/ZVl+PFj4l1XKGfSFQZpvfQA8ZrLl6qNwn8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:34"]},"IP":{"Case":"Some","Fields":["185.162.251.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5de:6489:b7ff:fe8f:8434]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JanKuciak"]},"Identity":{"Case":"Some","Fields":["nBVZxGrQJ57vb9GH4bJ9k5wwMIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yjxf0AoXEuq2jvkO9x8ysOC4GBoNKk1Je1C+Hh/y8fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:29"]},"IP":{"Case":"Some","Fields":["217.79.178.53"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:5bf::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra52"]},"Identity":{"Case":"Some","Fields":["m/YA1sBqP74oIWxYzSQaiZMcvn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F3F6tdajJ6Pwmo4qKdr7FXXG6HyWqwbz0durh7gGYvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:25"]},"IP":{"Case":"Some","Fields":["51.79.204.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LonelyNeutrino"]},"Identity":{"Case":"Some","Fields":["m/ShNzB3SGXvbdcQLZivGjPlTgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zTgJeOubCBxo13liaqY3jOFIY9FiqFnq55NK5yDqJQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:04"]},"IP":{"Case":"Some","Fields":["46.4.183.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saturn"]},"Identity":{"Case":"Some","Fields":["m/Gqu4t4ZC3BJB6GoqdYi4SWxo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdVZKM/QPRbXYGL/Pxnab1FZ5xLTU5K/urnkNz+Yxe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:17"]},"IP":{"Case":"Some","Fields":["183.88.130.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wendigo"]},"Identity":{"Case":"Some","Fields":["m+wiKbo+MOmFeSCe/KQoFYYR1X0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tewiIoPs8LfvscMCYewipPxBPDeOgpgJEu4Sf3e/4Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:31"]},"IP":{"Case":"Some","Fields":["65.108.82.81"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:82e4::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["LandShrimp"]},"Identity":{"Case":"Some","Fields":["m9Z2UIbo9LFdF/Fm9BkRSU7Xi94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Eeb5cgI4W67bRxpLWfaVSi6KY5z2uE3Ibzoj2BRTO0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:44"]},"IP":{"Case":"Some","Fields":["95.216.22.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:1669::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4mnesia"]},"Identity":{"Case":"Some","Fields":["m9DuebuYeN1tjY6ioojV4wHlwTY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tER2UUt7tudxMkGdqkLwDjL5NXlB52oW/NQ7Gsk7Cyg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["88.99.2.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:173:2953::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lavaeolous"]},"Identity":{"Case":"Some","Fields":["m8new3HRcZDwGF182kLzCmF7an8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bb+jky3nfld2oaLaNYgZiA5hGsyiwBpw/KJUjle1lzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:28"]},"IP":{"Case":"Some","Fields":["37.48.120.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1af8:4700:a114:6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fogelholk"]},"Identity":{"Case":"Some","Fields":["m7t4g6vRi2hHDoII3rWqSyrjkLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Js8LSuShrdQ4go2GSwEJ9U/WB3922C8gEUSWuxgXbCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:27"]},"IP":{"Case":"Some","Fields":["31.208.128.22"]},"OnionRouterPort":{"Case":"Some","Fields":[990]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OasisWorld"]},"Identity":{"Case":"Some","Fields":["m7n5OORC9XqPUJy7qWP8gNC7mWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9UpZhcflwjyn0PbZm9HOGyLrbNUj7XX9xm0C5jTkaOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:35"]},"IP":{"Case":"Some","Fields":["193.124.176.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pellirin"]},"Identity":{"Case":"Some","Fields":["m7a2hVv/t7LGKLTIYRyHqbbPjnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s3BQxVHtBxRi/BwGWtBLdaMsB1t+9Mk4g8tobb1BuhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:46"]},"IP":{"Case":"Some","Fields":["179.43.141.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iamnordischerring"]},"Identity":{"Case":"Some","Fields":["m7ZrPmBVPl/rek27Upn+v0XmBbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8zBDZwQYfi14kDQSENR7CvdlBijYcnxmGgOViocqMBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:58"]},"IP":{"Case":"Some","Fields":["2.205.237.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["calator"]},"Identity":{"Case":"Some","Fields":["m6qpy6MQnCyAfy6E1cnAyMFH3OY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/i5evaZ7r8o5RVMOgmeQVgk1CN0x/inktiyTgKUDm3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:03"]},"IP":{"Case":"Some","Fields":["178.17.174.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:73::d735]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FASHIONCLEFT"]},"Identity":{"Case":"Some","Fields":["m6kzTadpp8ltRk+eo4qXAIi2/ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kWQphYC4LwIpcXD1YrKL7HACqa8d+4XnJ5416c7GW+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:51"]},"IP":{"Case":"Some","Fields":["95.217.223.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9ed2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ekumen"]},"Identity":{"Case":"Some","Fields":["m6hOjJAINnb4bHQnyNEFkl8TcWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["honaJjm5br0kSFfKD5RnPsg7j3Lu7YrUYepjUbNhbPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:50"]},"IP":{"Case":"Some","Fields":["95.142.161.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:47:216:3eff:fe3d:888c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pivo"]},"Identity":{"Case":"Some","Fields":["m6EonNz9kHuNQKirEvNr5iDdQIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T7GYRlA5lUhvSBZpuigkqVDn2YiFQRu0FHjnIA5sIFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:11"]},"IP":{"Case":"Some","Fields":["207.180.216.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:1052::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation59"]},"Identity":{"Case":"Some","Fields":["m40IJ1yFKmd+jGXh3adEMb5Qm0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jXElPlVPZAWn2CGQTnoUBIfQR3a7VLwy/AOVv4HLI8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:21"]},"IP":{"Case":"Some","Fields":["51.89.143.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["m3uuMl69rYWYaNLGC/ZYjKWUkDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzUa9NrUqcMno63wHY4UfpG7T05xhp0OJKorkLRwlxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:04"]},"IP":{"Case":"Some","Fields":["83.136.106.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:3abf:d9e5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThinkPad"]},"Identity":{"Case":"Some","Fields":["m3NP8W9XeFAJFv4kOxxG2TI54bY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a01J+97HcSanmhTLbfF6MHZXWuZt6M3RgpZyhgY6JoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:11"]},"IP":{"Case":"Some","Fields":["152.86.13.206"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fleischgewehr"]},"Identity":{"Case":"Some","Fields":["m17TNw4AKuuyqbJeMhPBgXzNLYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DnJRC4rVPqlU5ge2wEy2S+PRKyPdS7qMMt2WN0aXq6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:51"]},"IP":{"Case":"Some","Fields":["51.15.65.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:180b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5gnPr4VhxQm2zHcHQcm"]},"Identity":{"Case":"Some","Fields":["m1Cb6Dh8poddPXzaR3i/keHPcdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RXsZ5+S87mV8kEpVCuNdkXTg6LlGTU2nplikUapVlxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:38"]},"IP":{"Case":"Some","Fields":["61.197.78.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:24:337:21a:92ff:fe22:c7b3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scamtown"]},"Identity":{"Case":"Some","Fields":["m0R7eHj38YnQfTJuzDmTt6DF3BA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2f42nizlZcME1PcLStK5elYOA/9Cl06MWAjJdwwIoGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:52"]},"IP":{"Case":"Some","Fields":["206.189.110.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scaletoer"]},"Identity":{"Case":"Some","Fields":["mz56CtmgVJhMyH58qdXBFyAtRdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NuKmZ4U4wv0vTyqYDDj05oyobOoK4aT6/iG2Y/A1sxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:49:28"]},"IP":{"Case":"Some","Fields":["51.15.36.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:e12::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitFinland"]},"Identity":{"Case":"Some","Fields":["mzHx8cFVT5/7NFWRH4LoGO98eIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zHSyemm2QAAi42rl+DWhrC70+hyeUrKfS3fblrzPYAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:22"]},"IP":{"Case":"Some","Fields":["185.100.86.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:1::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MIGHTYWANG"]},"Identity":{"Case":"Some","Fields":["myvH79ZhByr63FM76NzxwZ2MLcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaXbHZk4mVn+xOBsYlajcitBy6C4lQE3G7oFwzaiXtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:06"]},"IP":{"Case":"Some","Fields":["188.127.69.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29d0:8008:c0de:bad:beef::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Agafa"]},"Identity":{"Case":"Some","Fields":["mynk9J4XEI/koZG8bOnFn/uocnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b6uPylZlxjne4+49sELWV+R2vZ4xauFy60KvPoyXlDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:57"]},"IP":{"Case":"Some","Fields":["95.211.120.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde8"]},"Identity":{"Case":"Some","Fields":["mySyFJYxFncENi4HNWqem/wfDwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d430t3AUc3+cX1g+ybjyxiq+p39p98Hb36AJyMDMrZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:33"]},"IP":{"Case":"Some","Fields":["95.216.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:3d9:200::201]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["horriblefarmhouse"]},"Identity":{"Case":"Some","Fields":["myJYZZlGoHhZWZ99NhEpxPkSgk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sAKQ3zK3H5R30qGbgtnIYheLK9JR3WprwFZqwgWAHcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:22"]},"IP":{"Case":"Some","Fields":["84.168.126.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay"]},"Identity":{"Case":"Some","Fields":["myJUK6CF+OzMi20PiJe42xxubWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vuMrELDFjAHUFKtx3oQIjnvUX2+s95LexmSS7tBEqGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:35"]},"IP":{"Case":"Some","Fields":["139.162.142.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe08:e487]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer86"]},"Identity":{"Case":"Some","Fields":["mxwP4A/Z1Fvh+bCLXZITQweeNHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+9FDFBrSOrb9C+hM3iwPqQQ55G+wnDre7Bm+YuRXFuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:03"]},"IP":{"Case":"Some","Fields":["95.214.54.101"]},"OnionRouterPort":{"Case":"Some","Fields":[8186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM04"]},"Identity":{"Case":"Some","Fields":["mxLA1aNDUATz3hSfg+dS5EUi4pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dGS6nAhN+0XruP4ywtGd5hDMYOnGfC5oVGLV31I2/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:40"]},"IP":{"Case":"Some","Fields":["185.239.222.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mwcKBL48k2TH4NlhuzVpwzRmPKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSw/xWO6y7myt9ncYOTdchIrMyNYvu/yFT/gEBtcJvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:35"]},"IP":{"Case":"Some","Fields":["185.220.101.50"]},"OnionRouterPort":{"Case":"Some","Fields":[10050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::50]:10050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torrible"]},"Identity":{"Case":"Some","Fields":["mu03O9lBXoO9z8c1/KKIF4gpRZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6WsWliLbRg2l61ER7vrfAeXXtYI+8JdIq8mgeS0Vfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:17"]},"IP":{"Case":"Some","Fields":["45.79.218.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fed5:bb1f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1190"]},"Identity":{"Case":"Some","Fields":["muj1TtSAK5K4bsCFwq9XopzYlEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwWJmQKvROmG3vhtIVAGnx/uwgu3ZJZAylL4qY91+Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:11"]},"IP":{"Case":"Some","Fields":["185.220.101.190"]},"OnionRouterPort":{"Case":"Some","Fields":[11190]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::190]:11190"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["muQ8va6XeRGTbIr3+24rqxlaGDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gn0C3n21RPElEHF9sFRftfJ/nSOsWp3HDASMglMwvmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:33"]},"IP":{"Case":"Some","Fields":["65.21.53.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c012:66a0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay1"]},"Identity":{"Case":"Some","Fields":["muOJZCWoU5iVJGckow8t0QhbO08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LKgy4roqGcB/uY/iJh/gHWcgY5nr7VKXJoddy2gL9Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:01"]},"IP":{"Case":"Some","Fields":["74.208.140.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fokaia"]},"Identity":{"Case":"Some","Fields":["mttD2EKFL03gOzUC+pDLq58ECpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ifgWrEV3mJ+OHjWmtMed8WjI7dhADNUE8Q30gWPS7IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:28"]},"IP":{"Case":"Some","Fields":["37.221.192.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:69a:74ab:8fff:fe06:a47a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip5a"]},"Identity":{"Case":"Some","Fields":["mtkDF92i+JjrCuDyCXbql+evkBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Fjqctq3sa5NV/BdFKwU/IFBKgfyhlTvsV+QAIjm1do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:34"]},"IP":{"Case":"Some","Fields":["185.220.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::252]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rand0mByte"]},"Identity":{"Case":"Some","Fields":["mtKFRNrlepipEeJb/yTflIRgZxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d8K2UZcZjk2ydmJHknhuAQt2hP4lcMe/QrfcEC+pHDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:21"]},"IP":{"Case":"Some","Fields":["212.227.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YonderYuccaN2NoExit"]},"Identity":{"Case":"Some","Fields":["ms0haAzL5lpdWmONhag4ioXW7gU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+MBDqP4sZeSkj6aWyvFCWuUtkbJ5p7FcYj6/lKhBIDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:31"]},"IP":{"Case":"Some","Fields":["212.51.136.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6a16:1130::2:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ingmar"]},"Identity":{"Case":"Some","Fields":["msHm1tZdgDakLz9riK3Cvr3hfxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5q2G0tQPJuyRU8iRaJCCiaLXyWg06HCyZJ3WToyuLNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:17"]},"IP":{"Case":"Some","Fields":["93.95.100.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atomcats"]},"Identity":{"Case":"Some","Fields":["mrk7VCIUnl3/S+ajgU4vbZZI22o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkKYRJxYg0/K7d+Cj8hjjMe/kiy7rM2XAVVC86UcFj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:38"]},"IP":{"Case":"Some","Fields":["51.68.204.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:158b::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["instrdayRelay"]},"Identity":{"Case":"Some","Fields":["mrjeNizVPvAv6HptDnWINdIlais"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28jxN2hClABsGdJkFk862Lgr2Ks+fNrcaxl/o6Dp9rM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:14"]},"IP":{"Case":"Some","Fields":["76.219.192.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torexitnode38"]},"Identity":{"Case":"Some","Fields":["mrLvIinvDTZIz1+hSR3QJnILrTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ8pUNWIJR3YFFhTlNhSOHDvpUeDnVj6v+vlxLFU/TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:29"]},"IP":{"Case":"Some","Fields":["50.215.11.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:3024:1c3a::81b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1178"]},"Identity":{"Case":"Some","Fields":["mqvfWo5dVGZjqReI7P2cSEdA12E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W1aTVpTwZCCoRUHAN4TI8HPoWnCMfevBMezXQ7UzL6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:33"]},"IP":{"Case":"Some","Fields":["185.220.101.178"]},"OnionRouterPort":{"Case":"Some","Fields":[11178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::178]:11178"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eniac"]},"Identity":{"Case":"Some","Fields":["mqsmiLyTNMcqoZ7L6uceNGqJZWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5x0NwtZSKSe1exTYTL2lb5ge9KKMD/DdUg1wj7tN3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:12"]},"IP":{"Case":"Some","Fields":["51.81.56.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flurry"]},"Identity":{"Case":"Some","Fields":["mqaS/ptq4zmxZbawNNt2kHIwXcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J63VAIr6UxQ2V2Vyccr6zL64HAO8+mcRvI6YB8fM//k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:30"]},"IP":{"Case":"Some","Fields":["51.15.73.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.12"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e1"]},"Identity":{"Case":"Some","Fields":["mqP/NeelSdIzfpYjM9Nm4QL+TVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wk1in6OAUBsUKyxIbdkk2HpeN/BFNifueSL60/m4cOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:00"]},"IP":{"Case":"Some","Fields":["94.230.208.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::147]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FromSwedenWithLove"]},"Identity":{"Case":"Some","Fields":["mqPsO9M0yJmHYs81h2EWTSJIHrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b7wBwTjP6Yo8Rvave9D1ZSTRoeI4BupeOtPFFnGN79A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:54"]},"IP":{"Case":"Some","Fields":["46.246.44.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:752:0:18::17c2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv123"]},"Identity":{"Case":"Some","Fields":["mozZzWKynbBUnioRfrLwFPWv/vE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bplP7RjUsa2GBjk4m2H/WGbEmTD680wWYl1d+wRQZhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:52"]},"IP":{"Case":"Some","Fields":["192.42.116.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5523]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["mokCuYXi9YvHQGcQQOcWWskE3UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f5lKRfu3AOkXVkO6Aj8CriGtoLyb5zYXo/W+85wfnwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:09"]},"IP":{"Case":"Some","Fields":["185.241.208.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["naruto"]},"Identity":{"Case":"Some","Fields":["moIRT3Z9Ci5ag/9ggVtkBErCJLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOki9glWK8PgxcJJppC0ymxL8SJZgeU7VSE2pxjxtZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:48"]},"IP":{"Case":"Some","Fields":["162.251.116.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fqglu70q6"]},"Identity":{"Case":"Some","Fields":["moDLhEM6rpay9q3EBbVm4YuenQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rn8vu3pD1ExKiUuxqkI9VLIVyjJilZC9NTYn6DUmGfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:13"]},"IP":{"Case":"Some","Fields":["82.66.185.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipga"]},"Identity":{"Case":"Some","Fields":["mng8qp2roXjZhkRx6ShwRcv9xyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Syhbsa8lobSIQf0xct8iQvD3fJ9UnX8PYrr1x/PsR0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:39"]},"IP":{"Case":"Some","Fields":["185.220.102.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::246]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["D3S4RS1"]},"Identity":{"Case":"Some","Fields":["mnXMAFyg2S/9P5YAOyUkwgsFPig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MRNltQH+8KK2DdyjDoI7P6fhBJWGP+j/ZnriQN0rtLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:11"]},"IP":{"Case":"Some","Fields":["78.47.43.253"]},"OnionRouterPort":{"Case":"Some","Fields":[6080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mmZxilT79XUadBZQK6RzjO+kgj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b0WRn2/2OO3SJESr89xdYUYQQYFNGqQ75yoI1Efqtho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:52"]},"IP":{"Case":"Some","Fields":["185.220.101.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::192]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frodo"]},"Identity":{"Case":"Some","Fields":["mmMYUmoRv0DF5thvlpKILLA0eLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcBVuypfy0jPSuTf5iGV1KnFOiSieVDU2Pr1YH3zhdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:47"]},"IP":{"Case":"Some","Fields":["185.170.113.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presaultboubd8"]},"Identity":{"Case":"Some","Fields":["mkusbWsUVvs/jAkkBJ1Icumxr5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SBtpP9CptR+iKaxpemIzQc77R6KmbgK9XBRpeBX7RZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:01"]},"IP":{"Case":"Some","Fields":["193.46.254.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raktentechnik01"]},"Identity":{"Case":"Some","Fields":["mjnnOUKdvEzlmLcSV2TWwm3HP8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wvpRijboVWohaueuk1MxDLtT/wNSN4SdZVslkb/Mew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:57"]},"IP":{"Case":"Some","Fields":["144.91.124.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dcon"]},"Identity":{"Case":"Some","Fields":["mjmwt1cJ3XR/XZSn8kxr/YC8WHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zpGvn5vAubBHnosquND/uOIycZmrnREyZxQ7qaHzXI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:48"]},"IP":{"Case":"Some","Fields":["92.204.40.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mjOPOExf06NgTjJQzPX192Kddxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w73U6Cgyl5laX1vUaohhrBzzzp9BsPpOW6UT4EhSYQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:58"]},"IP":{"Case":"Some","Fields":["185.220.101.202"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::202]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber40"]},"Identity":{"Case":"Some","Fields":["mjB2xeuNhRULbKargfnTV5CRZZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3VswIt7YJC/51fd0HdzzoTzjo9NpUhm9lIwGXAvA3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:44"]},"IP":{"Case":"Some","Fields":["185.220.101.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::20]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Todry542"]},"Identity":{"Case":"Some","Fields":["mip+Vcwh3yxhcQaP2d9rNatQQTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YrkMGdtMOGNDYBMaJmI7atZpHxkEIUx8sKxrhQGvkok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:09"]},"IP":{"Case":"Some","Fields":["92.141.40.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9393]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigBob"]},"Identity":{"Case":"Some","Fields":["miDbvGWSiSFYy7GbaFwrd0UPX7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hA12ieDqR1EQR8mY8W521tHomPTuxKE0d3+dpWUx5N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:01"]},"IP":{"Case":"Some","Fields":["194.113.58.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mhOaQYgcIHRrJYpNeLQ+wcv7qdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esu6yHVuyuegVO0n6knZRBHzcyeWl+Vn9KmQrvm/sac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:08"]},"IP":{"Case":"Some","Fields":["23.128.248.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::ec53:d3ff:fe97:298a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lnag"]},"Identity":{"Case":"Some","Fields":["mgqvLkO+N0TNHWzVMshh9aVo96k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ObcPbPhMgIgck2VsJL6Vu3EmO98CY78MwEWajcjC9gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:49"]},"IP":{"Case":"Some","Fields":["160.119.249.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThisNodeDontGlow"]},"Identity":{"Case":"Some","Fields":["mfeFEnhfRSNqNTIqFkOqCNxjmbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2WJOIwuGv3CoccLdccZUUu0HjibfmOJfOowO1ObdPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:52"]},"IP":{"Case":"Some","Fields":["146.19.213.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9114::149]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masterchief"]},"Identity":{"Case":"Some","Fields":["mexk/p7w4OzsPhJaIyfCd5weeUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsW8Qi3Nzt3953URZuDXl09/cI6Q8lbC/Wyp4SLSrLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:30"]},"IP":{"Case":"Some","Fields":["46.4.66.188"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:244f::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["meunK6CO+Zo+CuTb/SeSvyoYxGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xviLKeXNIHi2PuXlxHaa6HHTceIns+lJu1bWggWCj4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.35"]},"OnionRouterPort":{"Case":"Some","Fields":[10035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::35]:10035"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["meY/Lrhgkh3544jaMOz1JFUdk8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["22iN/e8q0YMXmv9WTTWVvAVwVgEHkdWhUJFG/MCzE20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:22"]},"IP":{"Case":"Some","Fields":["180.150.77.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViDiSrv"]},"Identity":{"Case":"Some","Fields":["meJG20gLMTowErwzYwk8wmzSCcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rUS74iF6iT82lbThV/V3n7dOzSeHqO5iuohMn/riIpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:30"]},"IP":{"Case":"Some","Fields":["173.212.254.192"]},"OnionRouterPort":{"Case":"Some","Fields":[31337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:3972::1]:31337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber06"]},"Identity":{"Case":"Some","Fields":["meFSzbEvWrvgjAoupbEmzT8frF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xBMhlCiYb0v4INfFBB7sr3Gn0Tx7YmKrLV9/GchpcPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:05"]},"IP":{"Case":"Some","Fields":["185.220.101.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis65"]},"Identity":{"Case":"Some","Fields":["mduZ3yLuUrmzoydJwS7ep48Waz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nimdbCU1Di2L/WADpxAdZU0sSXLAnnRxLbAVMflGOjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:13"]},"IP":{"Case":"Some","Fields":["91.208.197.112"]},"OnionRouterPort":{"Case":"Some","Fields":[4620]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5120::5e]:4620"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyStIC"]},"Identity":{"Case":"Some","Fields":["mdq/98KOmKwIzzKEhHJMjcQjvfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G6T3MRKicUjFVXX6VAAoG60aaPmmV1FhnpUq6UAtu1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:20"]},"IP":{"Case":"Some","Fields":["116.240.187.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie0"]},"Identity":{"Case":"Some","Fields":["mdXJpacjiYbR6h13cc+BtKGSxNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["77jI1TDRbwxchwvnnUv5hmn5Nu3RakXKZ7RqMWsMLf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:46"]},"IP":{"Case":"Some","Fields":["65.108.136.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frikadellenbude"]},"Identity":{"Case":"Some","Fields":["mcyeHEv1wR1/yc8kndfgQ14FddI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bheOzhkiS+Aybz/KeK10a3E1tSxlJOnvhMKYDSWZUog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:40"]},"IP":{"Case":"Some","Fields":["65.108.135.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:32ca::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prayerfortibet"]},"Identity":{"Case":"Some","Fields":["mcWs71rI49PE3nkATzrGSbN1iRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9PaNUCEjv+SWvvZNlfQkv0lzy1XISgQcrDJb1UKB6Ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:58"]},"IP":{"Case":"Some","Fields":["91.244.181.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isis"]},"Identity":{"Case":"Some","Fields":["mbLL9u/YCs0wPoCJZWZo7yNgFc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xVmaZFtbXj/zXveQ37AUMeS+7zDVi1O8wPdN/ZdDRWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:55"]},"IP":{"Case":"Some","Fields":["188.40.159.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast"]},"Identity":{"Case":"Some","Fields":["mabt7ET3M6yvJTmzUxGPNtJzIuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqr3xjOLO1n8DO3wRV+3gmgNJLi/9+a1sz9xIQb8TOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:21"]},"IP":{"Case":"Some","Fields":["85.31.46.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NjordSkadi"]},"Identity":{"Case":"Some","Fields":["mZtKn4N6NF6qa8EcLx9wHF0R49w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4upKXkaa0NcKkIx7ueErKdOpxBJ+vLZMjsENr81exVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:46"]},"IP":{"Case":"Some","Fields":["185.25.51.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::f1a2:de3f]:5005"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["udeserveprivacy"]},"Identity":{"Case":"Some","Fields":["mZKQQAVOwe8JJ0Z+RYijeHmJHJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQkrvtoVQwmsru/ZPTvDGkXdlIru0neNQCy/IjknWRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:03"]},"IP":{"Case":"Some","Fields":["51.68.197.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plugrlogin"]},"Identity":{"Case":"Some","Fields":["mYagumWqCdtecNxwgc/Kcs9+1Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gU6B5zvngdcTzGU4pyx34WqEWruAbqeUyNYd6UKS1XI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:45"]},"IP":{"Case":"Some","Fields":["172.245.134.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mXPh6XMKWP26nhEtKzNC0sDZIbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jGPUDqNOq1EjR4z3gTqe3zjRUzwK848RsufHEZheWVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:59"]},"IP":{"Case":"Some","Fields":["185.220.100.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:3::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mXH1GjJ0dYtcWeHWWA7SwT4Ty+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bd6oG8+cfxNBNhrNVA6BSI8u+tPVACEye5A50cixRHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:11"]},"IP":{"Case":"Some","Fields":["185.220.100.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:2::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reeses1"]},"Identity":{"Case":"Some","Fields":["mW9M/XgTAgO4DoVKTvbKI1XGxyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TlpxUDMPgmFCZm0xcQ9ZF8fcf08iOvBziGGq8vEQ8Xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:36"]},"IP":{"Case":"Some","Fields":["172.106.112.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mWvI8u6eFbOotla8FNPNJQvcVW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IusutdXar8j+m/3RKViy0+D4Px7/ZnOtwQuNoveO88o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:34"]},"IP":{"Case":"Some","Fields":["81.169.173.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42ce:4d00:9ee8:333a:7b86:8014]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mWaetxaJW9uyv0eh+r37/+sebcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWAfsm77XEe7V6iVmfflhfHQ4QBo+OP8G7uq/s2FY4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:16"]},"IP":{"Case":"Some","Fields":["161.35.2.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mVjslJIvElLh4dp0il7jiJzjy4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VMZCbR5QPPayvSz/9k5CBqv8PIhvbVTgK6zkNivz4nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:10"]},"IP":{"Case":"Some","Fields":["65.21.56.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bassblitzed"]},"Identity":{"Case":"Some","Fields":["mVNiwE6vshS8lr6djw8LcS07t2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ERhARU23ERpPonbl0lI1Mnz+I2tSZpezRw65RVMhhc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:53"]},"IP":{"Case":"Some","Fields":["192.24.210.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0184"]},"Identity":{"Case":"Some","Fields":["mT0x3dcu/4w/vFpImd+F4GLk4Mo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DE3Uz7qVbjeg8b89d/aDwSV2BBJOiD7KtHpnjMVaGV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["185.220.101.184"]},"OnionRouterPort":{"Case":"Some","Fields":[10184]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::184]:10184"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WalkAway"]},"Identity":{"Case":"Some","Fields":["mTjjqsZM6dVrdD7NiyyiNa+533Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jv/2rkeGfc/8bNmL3RJYb+5IvuJ0EVhp2MMJmTrQaOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:50"]},"IP":{"Case":"Some","Fields":["31.43.153.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mTOfPmi8zBORvxTIIdgHZv4MWVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TVJxcbQjNF3o+0r5z4t+hEmtxgow6Wib9AtZ2xVITQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:56"]},"IP":{"Case":"Some","Fields":["54.36.166.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WaldoTOR"]},"Identity":{"Case":"Some","Fields":["mSIUcwCA7JEG7mkS5dfYlvo0hic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ULxCniCwz/XCsZ4hwYarmJbGuO5W6SMESLULtNWsacg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:11"]},"IP":{"Case":"Some","Fields":["69.174.143.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda2"]},"Identity":{"Case":"Some","Fields":["mPt1dJMtvW/p51FpmC7fulD4YXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2IDklm/Kpm/Uf7E1a49I1wh83Sn+6Sh38dmuTQ+Wuno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:51"]},"IP":{"Case":"Some","Fields":["78.47.117.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:1c57::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mPeTxzIM48FaRTU6/MFldHpANm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28mYJxLrJvVgfkajAWg99K2+NfGLplqqc3tLQldQnTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:51"]},"IP":{"Case":"Some","Fields":["185.220.100.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:1::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff3"]},"Identity":{"Case":"Some","Fields":["mPFiB6UhHQfkeXbkv0rEKWOegjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KJYZseNSEEsTpyjJrnq1R1YxiU0Kh0R/9LRjRzo9vjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:48"]},"IP":{"Case":"Some","Fields":["198.98.61.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["agrajag"]},"Identity":{"Case":"Some","Fields":["mO85gfdm+fh9fDmebdD/w4Z3Ea8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3TSZbt/w1tsw8DnTSv+UdDNnOJvOgFaQeZMcT99Ap8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:32"]},"IP":{"Case":"Some","Fields":["46.252.5.19"]},"OnionRouterPort":{"Case":"Some","Fields":[11311]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:deb8:a5::2]:11311"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpectacularFogNode"]},"Identity":{"Case":"Some","Fields":["mO4HwBk44BTDhkC2W1khYUOgUqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tDUqncH/JECeVvBwIo/uXekFqqLKqXTHLD/2NU36CF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:56"]},"IP":{"Case":"Some","Fields":["5.255.100.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:78fc::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OMICRON"]},"Identity":{"Case":"Some","Fields":["mM3a92QZxdvLz1Eth+P5m6XyJ3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmMkXMkiVvQjgCf7VTlZIS3tlm604WMSdPfKKD4xFhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:15"]},"IP":{"Case":"Some","Fields":["185.142.239.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roffelpoff"]},"Identity":{"Case":"Some","Fields":["mL1HE6bR4PTHqujDTOfYQ1dtPw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aG6IPbZC/FU5nTckcELGCmuJUfvsBoP8rgc91DrnuF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:06"]},"IP":{"Case":"Some","Fields":["87.106.229.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:f6::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTITor4"]},"Identity":{"Case":"Some","Fields":["mLSSO8Y2vyERwQD2ky7jOguTfrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dwWreyPRR8UA/dSrk5PCK8dcMIGbKJwIVH9PYAxnF64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:40"]},"IP":{"Case":"Some","Fields":["82.221.128.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PerplesTorRelay"]},"Identity":{"Case":"Some","Fields":["mK5H2FHXd96DLNyiiBcGOonSFo4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wubGskOhy7NpbAGUbQUq0f5WVB2Ht56lGR3PFmdAq8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:40:27"]},"IP":{"Case":"Some","Fields":["149.248.12.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:38d4:5400:3ff:fe8b:65f6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortare"]},"Identity":{"Case":"Some","Fields":["mK4GqbssZRd4hP0Rd0r1DhtyHY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/D8dWJIdwIdVtXynGMdNLkKlO0XUt8aIEnh3qawCRCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:25"]},"IP":{"Case":"Some","Fields":["188.241.106.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maplefire"]},"Identity":{"Case":"Some","Fields":["mKYCLTndJZAtdyi2W+KOVVf1uRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u3yGDYbH0obgxT6NqvI6CmJVAPEa9U95GBNoqvMcYaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:19"]},"IP":{"Case":"Some","Fields":["116.12.180.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wild"]},"Identity":{"Case":"Some","Fields":["mJdvhNRflfiDBTBJ33ihSrYF25M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jb88ep8aXeNWjngBC0kcRF0IhAPetBQ0aDb0vPSQdwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:04"]},"IP":{"Case":"Some","Fields":["77.91.102.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei03"]},"Identity":{"Case":"Some","Fields":["mIZ/UkJQWi3VgchbHOJWCQuH8Tg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OSD07c/ONjyUCGJV1Jc+gQnFIlVD/72fnbJZjOhgKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:54"]},"IP":{"Case":"Some","Fields":["188.68.43.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:688:b854:7ff:fe48:bdcb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedominsteadofnsa"]},"Identity":{"Case":"Some","Fields":["mIBj3w+9Pbc6j+H1ggcSuV0kjHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CgA5alV8UT3YTKoT6spmGAPdcm+50Hm/sRLm3hCuoVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:57"]},"IP":{"Case":"Some","Fields":["136.243.102.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bolard"]},"Identity":{"Case":"Some","Fields":["mH0HBtQgcPHiFCqfzLVrOIeAjTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ThAsBesVLMv/EfIlb7M7tTuQvxLn5tF5HDgl8bwBe14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:16"]},"IP":{"Case":"Some","Fields":["31.131.2.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubPhantom"]},"Identity":{"Case":"Some","Fields":["mHz8Vv174rlAuR0IfIj4I4ZFNmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["evQYQWcN0AVLJiC8bAIRXC3AxZTW0Yb2RUKXMKLIH0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:24"]},"IP":{"Case":"Some","Fields":["84.239.46.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontsnoopmepls"]},"Identity":{"Case":"Some","Fields":["mHtRQACvGpQ2t6k7+bE1nFG+xjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zh9wzWLRWstgkG1au2YA2xNI4M2yE2dvN0wj1sR0X78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:47"]},"IP":{"Case":"Some","Fields":["119.18.21.202"]},"OnionRouterPort":{"Case":"Some","Fields":[12760]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chad2"]},"Identity":{"Case":"Some","Fields":["mGEyq7XVEvr0DmN3W2wHInqKnLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x96TWWs0Fath0bPUFAFVbQ1dhlZPAvpnO2OPZG7EC68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:28"]},"IP":{"Case":"Some","Fields":["132.145.38.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilgrimgreyreborn"]},"Identity":{"Case":"Some","Fields":["mF/eh2ivFR+1dgGxd9I7XChaoS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLCw9YEK1G8daV4H6R8uiAooAJNNg+1+zYkaQzEBjMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:04"]},"IP":{"Case":"Some","Fields":["174.110.108.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KruemelFreedomRelay"]},"Identity":{"Case":"Some","Fields":["mFeaYNzJGdWccTbGsGzcj+OuVxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DudZ7tS1sMFaxLGNcTqz/ENyBkyRvp7Vh8OJZUQOPEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:05"]},"IP":{"Case":"Some","Fields":["130.61.48.162"]},"OnionRouterPort":{"Case":"Some","Fields":[3456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8002:5100:4d56:ebac:3c5d:a65b]:3456"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelayepsom"]},"Identity":{"Case":"Some","Fields":["mFGPdHAiFgSSgzNZmLZtxmQEwEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2SZ8HwKZygOZlixG1mCGzAGbXRVLFG5KcInEvFflgbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:38"]},"IP":{"Case":"Some","Fields":["82.39.132.97"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athena"]},"Identity":{"Case":"Some","Fields":["mE0iRNfaVDxBkVvt8dgCZDCrZr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JwRylgUVbMddgJz4p2bENFqFfg+NJmL8CdNrr5n5oZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:31"]},"IP":{"Case":"Some","Fields":["5.135.163.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e6bb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ppebBSDRelay"]},"Identity":{"Case":"Some","Fields":["mEis5lRtxBcvcOWwP9r6TuwuKnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k1z/New6TPH6yHWJGhEdL/n2PKxoO//H4Kau8Uy5TPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:58"]},"IP":{"Case":"Some","Fields":["97.99.232.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LadyTremaine1"]},"Identity":{"Case":"Some","Fields":["mDXVDVbHhxo8G6HIqGhl1IEM3HA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZEM5Bf4BYUP+5xgeP18ZSSEua6/SFQ9CN5qdPMXuk10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:52"]},"IP":{"Case":"Some","Fields":["212.51.141.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["mC8mHsXS19uJ19AyAAngLnUt/mk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ObwG6gBOCMMcWuS2BEwpolJo4SztfGKbzBMny6gVPug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:03"]},"IP":{"Case":"Some","Fields":["185.207.104.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809eff"]},"Identity":{"Case":"Some","Fields":["mB34goQiB6dZ+sjOV2UbjeiiHMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OkwdgOsQUMp8+K8tS/LY25vG6MbsFJox5ZVgPpBeTlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:34"]},"IP":{"Case":"Some","Fields":["74.91.26.170"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3e9::170]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission09"]},"Identity":{"Case":"Some","Fields":["mBON/T4sjInY9asR75tr/yctg7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ECxKpIi1x/VI0FqYuRrNDOzeeSOraCKT3Ooq86r2tNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:25"]},"IP":{"Case":"Some","Fields":["54.38.219.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myOnionBox"]},"Identity":{"Case":"Some","Fields":["l/wCggkSRBvC3+Os9DPkVXFLCvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0GKkG4vr43+zps5Fu83kRGYGkVwaeN+O5ewc8HT7kZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:15"]},"IP":{"Case":"Some","Fields":["89.247.206.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip1a"]},"Identity":{"Case":"Some","Fields":["l/Ua9nka0zmBziXceiYYQp8ls7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xECuRbgaRdrWwhcKvgBtRB93cqh4rSxn2GHaKpGQL9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:02"]},"IP":{"Case":"Some","Fields":["185.220.102.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::248]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nil"]},"Identity":{"Case":"Some","Fields":["l+agCRhfzypY2IRUXk4Y/2ErewY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kwhqh4b42ieAEe4pXZyoqwyhGxN4J+w4po2roWxVLww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:49"]},"IP":{"Case":"Some","Fields":["92.244.31.5"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["l+PN/cxy0xQjKKJTrZTHQjweiMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SepnCpjPqRpzv/r85OVN2sPB59EE10ZxXnfPwO+jNLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:00"]},"IP":{"Case":"Some","Fields":["23.128.248.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::8832:85ff:fe5b:13b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay21at8443"]},"Identity":{"Case":"Some","Fields":["l+NIznj5UleX2kgn/K6UwV/f+ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MAfwLEs821vWBO9RXKKemVWdvlqmijDLluB6oNR7iFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:37"]},"IP":{"Case":"Some","Fields":["140.78.100.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["l9gJ30CltBAvLElWp9t+cJthGDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0XaoK3QfjTU5jhwPoxf9LrCYHa2DznX1u96YP5b1Pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:53"]},"IP":{"Case":"Some","Fields":["185.207.104.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erasmus"]},"Identity":{"Case":"Some","Fields":["l9cQjQsC9Zr7lMOqIjDxyDSllVM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVni08wC1Y5mywi8+skbksP5mn4ALxw3ec4LdORYvpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:12"]},"IP":{"Case":"Some","Fields":["198.74.58.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe73:8ad1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi3"]},"Identity":{"Case":"Some","Fields":["l9PYP0LQzQYE3zvJvZTPyup0yCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6zbLOVzNeHn4aX2N1vq6t/88NIOIVIzZrTdxWhT8c0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:30"]},"IP":{"Case":"Some","Fields":["46.28.107.15"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldfoil"]},"Identity":{"Case":"Some","Fields":["l81Mz3avzXU0A7JBSfSa460/DCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VIqfu9/SKsz1IYYQ3aJPmm7QeGkbZk/apTAnDWRx6yw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:52"]},"IP":{"Case":"Some","Fields":["142.202.48.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeezNodesNo1"]},"Identity":{"Case":"Some","Fields":["l7xqR0c2kEiIm4QqWfkhsGAyens"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["osWKbKSpQ8eJ/29ONH0Kb/Au6FYNGRV+NiYOejM1Bb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:19"]},"IP":{"Case":"Some","Fields":["88.88.16.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["l6XAo1Uhnu7cjCv/snymmVsm9ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VFRC25Oa5BV+csuegzrSt/LcLgmgMs6fA5Xii4x1O70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:33"]},"IP":{"Case":"Some","Fields":["95.214.52.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Octogon"]},"Identity":{"Case":"Some","Fields":["l5suZ39tlIIM2NZFYm7Xdtyxy2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDmZtlt5swU2zwb8XlzH6sXEUjOIIzFomXUmDqFYjkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:23"]},"IP":{"Case":"Some","Fields":["131.203.32.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["l5QLlCZGTCS8q3B5cRwqllgA5Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mx40qukW0SkGaNwmepRAsxZCE339jiqwFIhl7tKRONY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:06"]},"IP":{"Case":"Some","Fields":["23.128.248.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::228]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["l4Gw7oHpWUEHOvo3VCs27XEBjUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7rm1F0SRzgMM4CprxdDh2uIl2+E0juCPVCcDRfaRYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:04"]},"IP":{"Case":"Some","Fields":["136.37.102.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["l3576rOCvZ4SxuC4uhXjhrFbx/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Ls+VuTbgBctenDbRKqOVYq/6iuwqS2KjdT4PZ15GjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:08"]},"IP":{"Case":"Some","Fields":["5.45.98.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:20:3467:a5ff:fe26:453e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sidereal"]},"Identity":{"Case":"Some","Fields":["l3dbVgdJwNidh5PbgtP/3g8fJM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tVKS1rnfvxcCpC6yfZpu8fz/XfEQy2TlPhqEz51XhW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:56"]},"IP":{"Case":"Some","Fields":["167.179.187.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:580b:bbcd:0:4f91:ccc9:dec9:8227]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet3"]},"Identity":{"Case":"Some","Fields":["l3VUVefcTpXw8u5mD88Rcmtr9po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xXhb433SCIV8uNnVxp5Zzrn4igrdxiQZ5Ap92mhoiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:34"]},"IP":{"Case":"Some","Fields":["94.16.122.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:4b7::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallsweatnode"]},"Identity":{"Case":"Some","Fields":["l3LvtTU5fJQsOriAT7Nc/60BJDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2Kxjeic42Kho9G2I4r9gRKheGj98ycH10nYArn6dFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:00"]},"IP":{"Case":"Some","Fields":["37.153.1.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nopejustnope"]},"Identity":{"Case":"Some","Fields":["l21iN0D5EO/m+X5ULozoVqgs7YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ISwxg3gYx9bGZclJTzoGj89PZQ1m7227vXfwV73jTfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:25"]},"IP":{"Case":"Some","Fields":["45.33.99.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arknet"]},"Identity":{"Case":"Some","Fields":["l10TjghRwG0q1SDffyRmCAKXDKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D5UXyR8yLezMxcPUpgmPu8BI4vr2zCTGmRtXzbKhZEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:30"]},"IP":{"Case":"Some","Fields":["75.10.170.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["astolfo"]},"Identity":{"Case":"Some","Fields":["lzj49cOGza9XB9Dc7UKPKBPKKF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P1U32J4SoM4svI5wrI0k2g2QdprzQfL2RY2TkkwSIuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:55"]},"IP":{"Case":"Some","Fields":["78.46.85.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:1381::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atoratvm"]},"Identity":{"Case":"Some","Fields":["lze+sC25/mqJ8qAiCB+33ax1Gus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYUfKuYTBXXFbhNl+WtbzYYiSyeKf8sYlcIUUXzFsxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:30"]},"IP":{"Case":"Some","Fields":["37.218.242.84"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c6c0:0:151:3::84]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eddy"]},"Identity":{"Case":"Some","Fields":["lzYHUmvpyP2gPruvUn1nrm/9Zd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qfhk0AVhs5DuZpaUuXCuzvcVsyOmY0xNH5qn1OoN3qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:47"]},"IP":{"Case":"Some","Fields":["109.201.133.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Karazhan"]},"Identity":{"Case":"Some","Fields":["lzKiMF9KtYlxp4PsVtcLMN/sMQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JolENc+WAVR21PRQdm/+mQ6I25nm4To4lprXAmKK0w8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:06"]},"IP":{"Case":"Some","Fields":["188.25.224.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2f0a:c209:1700:dea6:32ff:fe77:532e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defaultconfig"]},"Identity":{"Case":"Some","Fields":["lym0oc/oxiPiKqIvPFBPnCCpEgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AekiWoMaXUfGQX6T8f7olXapyx5yYjZjtAlpoZD1Q4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:15"]},"IP":{"Case":"Some","Fields":["51.195.166.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["memcpy1"]},"Identity":{"Case":"Some","Fields":["lx3ePD6KxNQk5UHEVPNZ8cd2qsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nu21S+wI9LJfdEnGG2F3I7YkQp6DRGDB+hw8lPMi8ZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:32"]},"IP":{"Case":"Some","Fields":["95.216.2.172"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[8082]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["csailmitnoexit"]},"Identity":{"Case":"Some","Fields":["lxXIG6jFsMaYiCA191xn1tZD2+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E4jj1wx+n9U5BFnsl2KUpv/HYtlrFvzrauspWecaQ9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:33"]},"IP":{"Case":"Some","Fields":["128.31.0.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0189"]},"Identity":{"Case":"Some","Fields":["lwqIMrrs3M9futSS+NZcPAhLbxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8bzX1YgFfgFkhth/n4PKyHwGnyVij+rKK7ppnUyQS/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:57"]},"IP":{"Case":"Some","Fields":["185.220.101.189"]},"OnionRouterPort":{"Case":"Some","Fields":[10189]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::189]:10189"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RatchetR"]},"Identity":{"Case":"Some","Fields":["lwM+0c9mVi7H6de/zr7dcWhAwjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iR5orBncTJ8qEpApZjp/fXZQw6Tuq6/PW8vNn3SePjQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:58"]},"IP":{"Case":"Some","Fields":["185.117.118.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["lusjjzuTd1SUui3KLjJoLr88mYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xHQLjVkjH8scjQCbbNoDW0Gv2z2jXznfNCwFxUBjb+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:47"]},"IP":{"Case":"Some","Fields":["23.128.248.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::220]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["karfiol"]},"Identity":{"Case":"Some","Fields":["luCV1c2/w5iN63COwVU0ZHJALDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BrM/IQABkoG/gwLcMDpa7utZJ3XvIc0yUyf4+GO3KYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:49"]},"IP":{"Case":"Some","Fields":["109.70.100.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueLightning"]},"Identity":{"Case":"Some","Fields":["ltZWOEVZkQg0z9sSjYQ/gZ1dL9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tnx0xsy+2fqaVg2horDXPv7o/uqErXNAZucUI6zMKdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:45:50"]},"IP":{"Case":"Some","Fields":["152.89.105.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:39:604:9866:92ff:fe56:17a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yopro"]},"Identity":{"Case":"Some","Fields":["ltP5ShZ/XglTt8jlmcS0fVLQlPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9XQACRid2BJHr4pLCjnycgIkYQ1e/djHKZiAwn4epU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:21"]},"IP":{"Case":"Some","Fields":["45.136.199.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay01"]},"Identity":{"Case":"Some","Fields":["lsqpF/ZbzWLOzSNvZ2Ur/Xxp5S4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EyZ/fMJN/V0I1KdgzKrLRiLRMszPWF5V4S7+jEqqpjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:18"]},"IP":{"Case":"Some","Fields":["104.37.193.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["lrfkqPYz/BBa9gMtEyEeXVdqRNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S/Yu6eJ4kG+p0Y1NCzjN/xcolyMUGlUq1EasNsU0aGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:32"]},"IP":{"Case":"Some","Fields":["188.68.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Florian"]},"Identity":{"Case":"Some","Fields":["lrGl3vlBFWERvFLWGsmRr9vQmx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["omxU/njtgZkaHyERZ5CApiufrLdbDbC8p2+JXYA1oOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:31"]},"IP":{"Case":"Some","Fields":["185.248.151.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigFat"]},"Identity":{"Case":"Some","Fields":["lqBuYbkOkiko7f4Tg/5Zrv+YLcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RKvK+hOpDmwKhCHIAQaN7qJk5Y44mcsXue6Olk8oE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:22"]},"IP":{"Case":"Some","Fields":["5.45.86.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moria1"]},"Identity":{"Case":"Some","Fields":["lpXfw1/+uGEym58asExGOXAgzjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7lffo694USblbCXQaJvFMlYKpvOMCZdHkT4K6IU8QKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:25"]},"IP":{"Case":"Some","Fields":["128.31.0.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9131]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=1-2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowville"]},"Identity":{"Case":"Some","Fields":["loq9pNnphLy3TB77JpeyAgXgk60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DJt8+hKSIVFGTwGz7QGhU9VTVq9VH7FnkwCJdoGGmhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:31"]},"IP":{"Case":"Some","Fields":["62.133.45.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedRiderCarbid"]},"Identity":{"Case":"Some","Fields":["lnM99Sn1CmnfWS5PzBFtyTgyyR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wd2qvm4N51Yde3uHBe/WI9aanx0yrR9rWwIZS5jHdKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:54"]},"IP":{"Case":"Some","Fields":["87.120.37.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange038bg"]},"Identity":{"Case":"Some","Fields":["lmWhpuubmMV+RGpIPnXgXwU5tBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cmb3Ee9/+EtgNxkmvtn0UHCWeycC7t6Y9jMmb5LiSaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:15"]},"IP":{"Case":"Some","Fields":["185.82.217.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erdapfel"]},"Identity":{"Case":"Some","Fields":["lmGslXF3mIhPPjcn02DdmNZnJ8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GxKV3xx8ZktwsCIYtMAiL3vE3P3ArViDUCygA9lC0xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:55"]},"IP":{"Case":"Some","Fields":["109.70.100.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myfancytorrelay"]},"Identity":{"Case":"Some","Fields":["ll5bRmBZgEVbV31odecV3RziT1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PhQqOnBmkwKDKkidQMGT2FSWQl/uX16j62qXyoeqQ9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:42"]},"IP":{"Case":"Some","Fields":["84.134.208.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r2"]},"Identity":{"Case":"Some","Fields":["llxmdUH4ih+R82BjkLHa7TZqAbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CiOqmOcO8vgEYBeqtgM4xcisLsTsZ02fgdSxjY70Q+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:13"]},"IP":{"Case":"Some","Fields":["74.208.136.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman10"]},"Identity":{"Case":"Some","Fields":["llHIAz5Rm75V5KW4wfdQTXLQkxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zo5MFRPmpu3D/uxbRamdomtH7ZQfwFzMArTY5mEeFFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:24"]},"IP":{"Case":"Some","Fields":["23.137.249.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:66c4::1]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MHcXthX9Eb34WYyEN7H"]},"Identity":{"Case":"Some","Fields":["lktOinUmOml2lUHydkVj2r3ZldI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vK6kDgLEkLWKbMxt9BEupiJcBTQvv1NmIqmlPHOHLVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:17"]},"IP":{"Case":"Some","Fields":["68.67.32.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sichermannac"]},"Identity":{"Case":"Some","Fields":["lkQAvXL4Xk7zVB3YV46RMepijdg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+URf/W4OXvV5qaNOc+Sg+KyikX1O6zL8Ezu11ZEZ/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:32"]},"IP":{"Case":"Some","Fields":["46.142.133.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwothree"]},"Identity":{"Case":"Some","Fields":["lkODgxO9G+sc3IRMA3mnddxEv50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["we6JT+lKo5+bkj3AUL/n3zhs58A8iH8yGPXJhbPfIEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:53"]},"IP":{"Case":"Some","Fields":["135.148.52.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["93227a015ed992"]},"Identity":{"Case":"Some","Fields":["lja9T4LBHCsGhaAhXxQJnG4e4+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zf5oQy6YdXyI/Z8RRDOVM/oCufPmk+skoOJ4PIt+Z5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:50"]},"IP":{"Case":"Some","Fields":["95.216.203.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3b00::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kristallwand"]},"Identity":{"Case":"Some","Fields":["liitt1CGL5ztND3PwdAzHqAG3o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fiW3UkF71cSSDWrAI6DxN2JAYZ9sX5uW5DcE5puAEeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:38"]},"IP":{"Case":"Some","Fields":["213.156.137.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nx1tor"]},"Identity":{"Case":"Some","Fields":["lihD+/hRP1fhGQ/Uwt3wg6AMeGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R84LornOjeCJnh6Gmd3rM7Z1rPBTiQKEyE2cCDNPy5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:05"]},"IP":{"Case":"Some","Fields":["64.5.123.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:59:a000:9666:216:3eff:fe7d:dae8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange015lt"]},"Identity":{"Case":"Some","Fields":["lidZIRBdwtQbea11gEowFzi1Hkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTK9Rpw9WeFNSzl+vx4D5kE8uGVbrFtU5EEGF3+NbBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:45"]},"IP":{"Case":"Some","Fields":["213.252.245.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::e308:9180]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["upsuperRelay2"]},"Identity":{"Case":"Some","Fields":["lgcGmHFNwHris3eGRiW372TjO/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMXwunKfKWPfvtW5FP/7J5iTC22Ay6tsbftO6J3zYOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:57"]},"IP":{"Case":"Some","Fields":["212.24.100.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:d418:648a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob01"]},"Identity":{"Case":"Some","Fields":["lfp1hxfRhcvB1e6ZKq4IStBBkn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnn4Ng3GpLvOf8ii6yVrYVDPB00+G39aSP7LcOEGp4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:15"]},"IP":{"Case":"Some","Fields":["152.89.104.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:39:e7:98ab:ff:fe95:7778]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debaze"]},"Identity":{"Case":"Some","Fields":["lfIqEp/R7lv/lSGN26g4v2272n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sD3lIIQ9Ia7NdbqTDclpQGpxWEB/CdJkfR6U5f3F6Rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:05"]},"IP":{"Case":"Some","Fields":["92.243.0.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:fed6:a283]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["matimbo420"]},"Identity":{"Case":"Some","Fields":["lej4R++HmKYKgYcoH5OBMkXYDio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L+5oxorAgNDCifioqH2G4HtfddiLLIoypmZKvJHMOLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:08"]},"IP":{"Case":"Some","Fields":["130.61.161.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:697e:954b:e582:cfdf:9743]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay5"]},"Identity":{"Case":"Some","Fields":["leHxwQ6Tg8MpW8UXDf+yTTE1T/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hpd8UyossBd92zLo+OuqDDM+3z79tEoxVM2DJ6JlXkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:38"]},"IP":{"Case":"Some","Fields":["89.58.39.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:c7a:4439:2ff:fe4c:a26c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boomshop1"]},"Identity":{"Case":"Some","Fields":["ldCzRezIT9K/J6M7J2XfXgd6zb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oH1VFPFuJErWIt5FIE9+8QixIrsvCN8MVfCoVo6KbwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:01"]},"IP":{"Case":"Some","Fields":["176.9.50.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:70e6::2]:9901"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flogginet"]},"Identity":{"Case":"Some","Fields":["lbla38/t1fqm93OfI2SO0s6K3JQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f3oRA6M54055EZKfBLnRAdPiXqctkUmOuVwiaXNnvvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:27"]},"IP":{"Case":"Some","Fields":["185.100.87.202"]},"OnionRouterPort":{"Case":"Some","Fields":[31622]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["lba76CLYg6+DBYOAi91M+cQcaxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c8+mJZu8LkHriw6gMvcROAHnjy1RN8CSKyQ3Zld9yhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:14"]},"IP":{"Case":"Some","Fields":["88.208.240.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:b1::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireOfRing"]},"Identity":{"Case":"Some","Fields":["laocLkmFCyWv+S4I4fbJOtFinDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vOvWosQFhNseTdJAxCLFPMVkHyJyGof0QDgyDRmzVZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:00"]},"IP":{"Case":"Some","Fields":["5.255.98.81"]},"OnionRouterPort":{"Case":"Some","Fields":[127]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:c5a4::1]:127"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["KejeonFFM"]},"Identity":{"Case":"Some","Fields":["lYTCKErv1L2pDLl7zfLmnjv3bWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dH2mZwCPCq6R5AsvXQn6qBdPbfnDLBkLWWlbtEj1XoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:00"]},"IP":{"Case":"Some","Fields":["95.222.114.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1136"]},"Identity":{"Case":"Some","Fields":["lX+ATtXu4/vspSX8oirhUnrFa/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4uG42wtsobS1r9S7gKbpV/NG9G/u4zSYou504funsQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:25"]},"IP":{"Case":"Some","Fields":["185.220.101.136"]},"OnionRouterPort":{"Case":"Some","Fields":[11136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::136]:11136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeissbock"]},"Identity":{"Case":"Some","Fields":["lXte8+bKg7K/ZANlVoLuLHBNq2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XmRo0Z7W2OQVyZyLhU28uiVRxdTzwEsg3wNQC97yW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:40"]},"IP":{"Case":"Some","Fields":["195.128.100.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueMonkey"]},"Identity":{"Case":"Some","Fields":["lWzVM7fDMcZ10wpQkAoul3fUJ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VwJqp2QetfmhXN/ri38vj6pP349ZnyNlz4zCR914b1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:59"]},"IP":{"Case":"Some","Fields":["13.211.32.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SDRHausSEA1"]},"Identity":{"Case":"Some","Fields":["lWsNCAJGOfnX8/MzKD7USAuAfY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mFb2xHqIdEb6CsHsRlj7Gy0vX/qPLE6pieyTxCvRGRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:51"]},"IP":{"Case":"Some","Fields":["64.42.176.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:9f80:2000:83::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["STRelay"]},"Identity":{"Case":"Some","Fields":["lWcqPT7ArpfyCKF+IS3gIRCmUI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yBFH1Ux7V5YL7DFDlnzISwQmJBqrLm8/9E5axzDqDUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:44"]},"IP":{"Case":"Some","Fields":["180.183.117.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FiveBoxingWizards"]},"Identity":{"Case":"Some","Fields":["lVT8DPmlIAVC4zdciuTpOcRZQig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VA0L1keWztvAoGYLMtPOoa6s93GdPCG9YgFmfZc0hUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:19"]},"IP":{"Case":"Some","Fields":["83.44.171.172"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[81]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["lVRcunGtIRNsQMkn8ZwGf/EoB48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dREfiWmROGSn8CpYBdBJ8lG4Mv5tOtOQM0P+Mk7Wwd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:57"]},"IP":{"Case":"Some","Fields":["95.214.53.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3561]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lUsiHP3D9WoV/jwp+F1f40uxRLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mOWoNOG7/9F+wlkEEFs9Jc4AL4xLkDc4A75uSjNzBpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:14"]},"IP":{"Case":"Some","Fields":["50.116.47.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notabitologist"]},"Identity":{"Case":"Some","Fields":["lUMpH6nN7ITZBX3sPfLSrvA/NWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WvtlFRSEskHeLVVXwnBImBHpu/4x0b4P+O0QRaVQZPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:53"]},"IP":{"Case":"Some","Fields":["5.255.103.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:4b9e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["procrelay"]},"Identity":{"Case":"Some","Fields":["lUL4/7Yn+hN5LhXnH4ZSwmgU5S8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5WQjtjiK17OBkroSN9Sl6nDla/6l2kpAAOU03VqRwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:55"]},"IP":{"Case":"Some","Fields":["54.39.86.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:7792:1f0c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chopin"]},"Identity":{"Case":"Some","Fields":["lT23CfKi3syNdWBmH5NOZEEURPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yVc/yHO0XImazjEusb94ySILXx8Krdmc7ys4QDidDW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:14"]},"IP":{"Case":"Some","Fields":["93.115.96.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:35:5488::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lTff8fNaI+9bAhtVFuPHa3cmMTE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVKwZp7h2Dc1Ib/5kOK2ddQAX5abVztYyuodPY0lTXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:12"]},"IP":{"Case":"Some","Fields":["23.128.248.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::64]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BuNGOfAr"]},"Identity":{"Case":"Some","Fields":["lTM9hiQPZAJlbS65ZxYlVjT2wAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVY3OYKcvGLjttMwrpX6qEjlr9IdmavF70t2KlgbNMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:57"]},"IP":{"Case":"Some","Fields":["185.66.91.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firestarter"]},"Identity":{"Case":"Some","Fields":["lTFzBLdIyvwl+I+4nOB7yjlVfSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8iyuXaKe9mhySCGqhcBQlZWNj9oK7y66rVB1a+ctKWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:13"]},"IP":{"Case":"Some","Fields":["71.60.169.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bugabuga"]},"Identity":{"Case":"Some","Fields":["lRHmBp3XzgKL+U1B6P9UHCTD8U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l7MvbopmIK/k87QmfF2Kmez79tzYvZJtPmF76c0m00o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:14"]},"IP":{"Case":"Some","Fields":["194.163.128.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cello"]},"Identity":{"Case":"Some","Fields":["lQ4C2zJtKBAeKShgRMVxSiBPMiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJrlEt34w5Pp8YeD0diG/jaYbPm/Dcv2M0LieJKxNr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:58"]},"IP":{"Case":"Some","Fields":["135.148.150.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FakeVolleyball"]},"Identity":{"Case":"Some","Fields":["lQE09KujKR7uTnovJlRttwcHdqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lBdOI7P64q49rju4sydAkSniWqmMxsSjv00wddefYrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:30"]},"IP":{"Case":"Some","Fields":["195.123.212.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27ac::245]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torRelayTaledoCorp"]},"Identity":{"Case":"Some","Fields":["lPakiTqAFJru63UJvvzboa5NWJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5akA1ae4HRsFYGyYzibuBMWl5RrBsWY6OHN0A2jYOHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:16"]},"IP":{"Case":"Some","Fields":["51.83.132.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5a7f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kuro"]},"Identity":{"Case":"Some","Fields":["lPVimuXy3ECc1EZoF2WX/0gpa6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuL6zM8qFsV+2A9pt9dKNci+/xLDxqx49trWBTtLidc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:38"]},"IP":{"Case":"Some","Fields":["148.251.83.53"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:5368::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeZion"]},"Identity":{"Case":"Some","Fields":["lPNnoTApbJ65K+MuJarrfyJ94NY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VvB3P8YZXRG70SVSeMsKFQ4nKRQgdUX78KMGyJUGTCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:53"]},"IP":{"Case":"Some","Fields":["82.50.42.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["happyfunpark"]},"Identity":{"Case":"Some","Fields":["lPJTP2wc3bhf0AOPVCCbizUMObU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i9v2me0Y/pYtl3CxRhWRecanXGO2u6mcdqI7JOjBkH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:04"]},"IP":{"Case":"Some","Fields":["149.202.4.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarinaOvsyannikova"]},"Identity":{"Case":"Some","Fields":["lPFtor3boJKVT/jsKfkjSmmUlAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2+rOMl11iN+EseQOfX6eVDe19FORBhm8bKPRjqRj5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:55"]},"IP":{"Case":"Some","Fields":["77.162.229.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a446:5ef1:1:d072:53ff:fef4:ea59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThirdMusqeteer"]},"Identity":{"Case":"Some","Fields":["lO/naSA2TZrPqLoVfHyBSE8Ky/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fyG/druRAWWQ9yrUQs36ji8mrkVU6/FsAV3CTJ80qvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:25"]},"IP":{"Case":"Some","Fields":["45.8.144.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unix4lyfe"]},"Identity":{"Case":"Some","Fields":["lOw0uHGTZQS+cGcbRHYLyZJC4fM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qdustKcCxvRBUkT4zygS/zH9TM3RCdTpdNqwNefifqg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:49"]},"IP":{"Case":"Some","Fields":["71.19.155.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:17:a800:ff:fe3e:bcf8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schweren"]},"Identity":{"Case":"Some","Fields":["lObabDeTvRbRVV2W93z7a51h5aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4niNA1/EXvhtIZH7BAUIuNz64UuL89fSb40oXX24Eoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:44"]},"IP":{"Case":"Some","Fields":["202.61.202.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lNEt91m83PlU0ZQwd2yP9Vzdk3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xm4lIGvwvnjdkKtjQwcjH+2SM0nFIPP7CcMMxQICcv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:38"]},"IP":{"Case":"Some","Fields":["23.128.248.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::34]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BostonUCompSci"]},"Identity":{"Case":"Some","Fields":["lMS3uMUMhqkraiAQdTnuJnjPmig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnX7vmfHC7X/0uQrHN7ErZRH7dpScnmTalUgWyn9++k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:47"]},"IP":{"Case":"Some","Fields":["204.8.156.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["lLcQxBuej7WS0JFucbWon/SZWZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEbgKM9R3otWmNOOAXTqg5zIWkn/HMLFKuZX+b1zwZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:56"]},"IP":{"Case":"Some","Fields":["138.201.35.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:369a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bertha"]},"Identity":{"Case":"Some","Fields":["lLLal6erpd8uBlau3BBodkdeZy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a95TOBAgbvwgxyKm1IGcd0DVbTP9n74qtD5Qd2B+1+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:14"]},"IP":{"Case":"Some","Fields":["89.58.13.214"]},"OnionRouterPort":{"Case":"Some","Fields":[3920]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SupportScihub06"]},"Identity":{"Case":"Some","Fields":["lKiXbgDGjtI2ldBmjYez5/Emr2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gDa/VKqbBqCcc3BeX+94o6d4IfKpDDx36I/BkEZKB6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:39"]},"IP":{"Case":"Some","Fields":["155.248.213.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["avega"]},"Identity":{"Case":"Some","Fields":["lKMPKXWx+WxmzfvzyOcsXEkyXFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0ZQ8ZD10tpQ75oVKAi/CjZ4+Bir+VDb/A+D7nyigD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:34"]},"IP":{"Case":"Some","Fields":["185.173.235.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:b7c4:1:141f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Telinnor"]},"Identity":{"Case":"Some","Fields":["lJuWjRuNPMCX2SGBq7OMaThhKX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mkz+FBqPbk/dsjlrgyvaLwKdaub147aCuoFeAgfi4KQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:21"]},"IP":{"Case":"Some","Fields":["178.254.2.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SPFCFutebol"]},"Identity":{"Case":"Some","Fields":["lH//RWz8713KsJQi4ZRajSGu7GI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTVrfx6+UoTXX86DJCPoq0ott5/Oj7YHN/rc4lToWxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:08"]},"IP":{"Case":"Some","Fields":["81.17.60.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lHYvV9hoTAXrulKpTesIdG60qAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["izV4n3fftwRqDmPHL6ldCNh7VZho42cb3JmTQWfJs2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:45"]},"IP":{"Case":"Some","Fields":["165.232.148.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::a6:5000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lGHn9Pk8lykJFSs/9eSOzUX5G5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U1vko3YFPSLQdGTb9Lk/mT77utkUfYbzkY4v5q4ykIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:34"]},"IP":{"Case":"Some","Fields":["145.239.81.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["lGC9D80Q9eWKCppn+cIEGKEgrmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mebip/99byPP3eX9UgXOeUhQEx4WgRAut1MzTL3EvCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:53"]},"IP":{"Case":"Some","Fields":["194.32.107.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:171]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollon"]},"Identity":{"Case":"Some","Fields":["lF/EwkRhN5yTxRGcDc3XNd3ZQ6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["78BGtnsXb4t9qWvvFegfFyN2MgCcftRB5LhvDC8kFSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:33"]},"IP":{"Case":"Some","Fields":["212.147.124.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lFqi9sLsZEtTPQSMeeA1ps8JLE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j5CH2OXsvtO4Q4ra9BHbPV0RUOC4b39cQQvcajTI+LI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:43"]},"IP":{"Case":"Some","Fields":["51.255.39.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:302:2100::78f3]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["lFT4LUfroMsMKkv+eWYYHb8QgUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AFMxLCsCvFXZQdiJUCJ2BAaL8tKd8QdXcqyrEeAsomM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:31"]},"IP":{"Case":"Some","Fields":["185.220.100.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:14::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perch"]},"Identity":{"Case":"Some","Fields":["lE6UfKgNHPiy6+PDJHssEZMUOLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KpQUXKZpJZ2skxZoRFoEOMzhws8+v///OTLHzCJjZx8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:38"]},"IP":{"Case":"Some","Fields":["130.162.218.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbrother23470"]},"Identity":{"Case":"Some","Fields":["lEA/+OhO/Z7urAx2A7CDS1worgc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Im/ViOzOW7RaX3M9IQTpdzERwDzc7qqr/iZfYOdHPFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:15"]},"IP":{"Case":"Some","Fields":["82.66.10.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rs1"]},"Identity":{"Case":"Some","Fields":["lDSUs4z3T73THSbZLWbVNYJFTis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MKaFCEQOKA3y61TSpyusjPFRO0cgy3vSB6i2DxwdiPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:34"]},"IP":{"Case":"Some","Fields":["37.35.107.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:2040:1:533:e23f:49ff:fe6e:1004]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["byrdeman"]},"Identity":{"Case":"Some","Fields":["lDGMwimaOCbYGJnrI8JaK31rH/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CHR9JTpvZ9venRDB7AmombKVnmSoYC4BBLHGkJzeNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:58"]},"IP":{"Case":"Some","Fields":["213.227.133.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["lCOnK7yLXGrJ3p9Xc16ysI5BVug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByO/1uP41mBFV1d9KgQm5eL7YtrcDwzrG9VtTmrFD2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:54"]},"IP":{"Case":"Some","Fields":["185.220.101.211"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::211]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lBuoOjVB07LA6cvlsMkka1UUmR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHwviYPvKClDZIl6oVi9t24nRu4dQRdzSEAhXSzyZak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:43"]},"IP":{"Case":"Some","Fields":["23.128.248.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::58]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kogis"]},"Identity":{"Case":"Some","Fields":["lBmFzeLcnWf+wHA6j/0GHjtLqKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdoE2fejg9Xb3Zx2pbosnh5kA2snBz0Zeeuj3Gm7Iso"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:08"]},"IP":{"Case":"Some","Fields":["188.165.236.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:b712::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Extratorrestrial"]},"Identity":{"Case":"Some","Fields":["lAdZvtpFhK2LDonY78sOtUD3ouQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["daV/Cg1cSMvQJ2mZBlbk1vxmuhcRiFG52Nu6HpEqGf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:00"]},"IP":{"Case":"Some","Fields":["67.219.105.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["test1111"]},"Identity":{"Case":"Some","Fields":["lAcEtlquXgaON7+wjS0HLgHPbmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BplKcnRd7+9Lo8g8JhdI9sKN6pIB7BaQnB2goX14GKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:11"]},"IP":{"Case":"Some","Fields":["79.219.250.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM03"]},"Identity":{"Case":"Some","Fields":["lACvUuwpKdpB5t3TtoTyNkO8MWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWYdWNCxZLUZU/wwLi14dFOiMJMTDaYOIOa2WdYyIJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:20"]},"IP":{"Case":"Some","Fields":["185.239.222.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["k+/VonQDqH5Ei14NjCcyn9bmgp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["swr3L8Eq241vVE4mgri/CWF5L78uojp722snp0Wn2ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:53"]},"IP":{"Case":"Some","Fields":["185.220.101.193"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::193]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes1"]},"Identity":{"Case":"Some","Fields":["k9O1CIpoE/Z5pCYyOuASX7T+dyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JP2i66UkBXyqy4nzl+K0YB5DfRn5UnLZcCxReigykcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:53:04"]},"IP":{"Case":"Some","Fields":["104.244.75.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["k8DwjmYYVOedYXjI9kRpHmvVMYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3tBfb+GdJbkO7g0tAF7o94jC8C24nFUplcWGL91Jvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:17"]},"IP":{"Case":"Some","Fields":["91.223.3.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORo"]},"Identity":{"Case":"Some","Fields":["k7/D7AJav2RweavupeUQ7dz72sY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJsceYpVPyXs1bz/et3I5oiBiWGwtBKWKambKARA2qU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:46"]},"IP":{"Case":"Some","Fields":["185.101.105.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop4"]},"Identity":{"Case":"Some","Fields":["k5+z5UaRg55EnxcBMQHYrafwAG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzgKxvX7mF866kWNTVLvnhPteHRWjy7jQuOgHT7gL48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:06"]},"IP":{"Case":"Some","Fields":["82.165.108.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["k5Em6k0lyyEqeXRsEzGU+KJMQ1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1erjJDn6A3neP26mzTKwSjEqG8gEhBBHIyEN4C05uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:20"]},"IP":{"Case":"Some","Fields":["185.220.100.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:3::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RingGate"]},"Identity":{"Case":"Some","Fields":["k5B8oltsJz9nmVns5HGXjHEtzZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1VJUDJU3og2uUVHlQi+dPiPfJVUhuIUb77uLMxzIPMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:11"]},"IP":{"Case":"Some","Fields":["108.56.237.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["k4+/1Bcvu8QkVjexnhWBymMz8X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1dddyPpl/9qEpDWCUf/ycskO2rNsVT1W6VpK2j/80SU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:05"]},"IP":{"Case":"Some","Fields":["23.128.248.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::21]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay25at8443"]},"Identity":{"Case":"Some","Fields":["k4X/E9njurk0q8umHuY+EDRuNnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gTbUW36oYnrOtpDrxOMi2xQeuPmlYf2IDD1NU2rv29Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:55"]},"IP":{"Case":"Some","Fields":["140.78.100.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perun1in1"]},"Identity":{"Case":"Some","Fields":["k4WI36DKFwLEv++IiGkYyUTUlKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+q3ch++HDiULLf0cc/RaSNxemPdhLKiy10lxkcX7urU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:25"]},"IP":{"Case":"Some","Fields":["157.90.148.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:14cb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission02"]},"Identity":{"Case":"Some","Fields":["k38gHSeXMUlT8mjSUvXJjT+p9x4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpXGUKgRfhovMna3IuncqpDQlvUNZGT3rOXd7QMuIeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:53"]},"IP":{"Case":"Some","Fields":["149.56.94.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["k3akNpXLtmwlbcyHky7oheqa9ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNL6XSOro6oPE1C20ZmWnLDEALJGRg3hU741ypFxZao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:48"]},"IP":{"Case":"Some","Fields":["188.68.35.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex72"]},"Identity":{"Case":"Some","Fields":["k3D1XUu/cvvfE8QdZci4FLQwDMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Ed1FW3ChuGS/6lFD5YMO+mkQxof9kh1zRfUWAwD4gs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:32"]},"IP":{"Case":"Some","Fields":["199.249.230.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::161]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["telephonetoughguy"]},"Identity":{"Case":"Some","Fields":["k28BNn1OW/jOH+5tUUKDztEBRaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w3xCmn/yod2eBr4uXK2WKuBroyBZmsGyWXVnCsFF39k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:08"]},"IP":{"Case":"Some","Fields":["172.241.227.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PremiumTorExit"]},"Identity":{"Case":"Some","Fields":["k2YYW07LHMNjT0ddIP3f56MCuvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnLh0JM60aTajlsL4xQ1xfSihWJz4lb5f9iA3iYRc8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:53"]},"IP":{"Case":"Some","Fields":["185.100.87.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["k1tu8L+Vf0Y7hM+KeududfxzJc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["225pVlvb7iGlDxw9Js2mhGHV15CubQG7EEIKJR+KrrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:01"]},"IP":{"Case":"Some","Fields":["185.241.208.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["k0QDswWYlVxBYCMSKZQjqAC+Ax0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W6o3m0oTL7t0cEmstbOtWtVoB21OrbLZ6eOTouYLHPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:14"]},"IP":{"Case":"Some","Fields":["23.128.248.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::25]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1130"]},"Identity":{"Case":"Some","Fields":["k0JUYA7tDq9hwkL6bsuSvwE44XI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2ZN+a4xPNokRE5nbQB5eVxsGPsTL+KqMMXZXjq/EHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:16"]},"IP":{"Case":"Some","Fields":["185.220.101.130"]},"OnionRouterPort":{"Case":"Some","Fields":[11130]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::130]:1130"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubElectric"]},"Identity":{"Case":"Some","Fields":["kzwenFq4AT4wBDikHERZ3v4nhJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pma2/t9lV2pRhvTgTMNbGa4InP7r/Lcqla9klT+9Ezk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:06"]},"IP":{"Case":"Some","Fields":["50.7.1.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BouvierPrivacy"]},"Identity":{"Case":"Some","Fields":["kzt0/551Y+WuPWR2f/RYLiNHItE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1NyOy0TSw509nl7UHnl5htnwyeyCFrDkylg1UlvUKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:01"]},"IP":{"Case":"Some","Fields":["62.210.189.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aRowdyRelay"]},"Identity":{"Case":"Some","Fields":["kzbZ/VWNCeIchVpS4B2m4Hu2qtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Npq5/YiNt3HQRda0YXf381xC0mHcDZrWN9Yxl1SFyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:29"]},"IP":{"Case":"Some","Fields":["172.221.117.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["kx45+D2vDB8TqqY3LVmy1x3UzaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zmeg7H5GF1Rc/eSpZgKlKCuoTLgThgX6K0DPXpAD6s0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:18"]},"IP":{"Case":"Some","Fields":["151.15.113.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLeonardNimoy"]},"Identity":{"Case":"Some","Fields":["kxx2LfpxzgUXasHzQC2GayoMke4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l6u0WxO7ufMNGRhr2dXIL/wciHg1bo5ou1yHvDZsByY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:14"]},"IP":{"Case":"Some","Fields":["198.74.61.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay35L"]},"Identity":{"Case":"Some","Fields":["kxwW6D3jZoUgcpEsd1YxEtGyseY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXfrsBnWTthZx4CgOaF7jXEjABE6UnU8UfX0Mf07bxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:11"]},"IP":{"Case":"Some","Fields":["85.239.40.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5cc0:1:1::de78:1017]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ArcaneGA"]},"Identity":{"Case":"Some","Fields":["kxYX+yFJTtJInUgFT4ziavbXeKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZlP+mxq9DNfQJrAJ1LaQh/dDI922/b9JRbKop2ljANk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:39"]},"IP":{"Case":"Some","Fields":["37.120.167.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:4424:1482:57ff:fe2d:edb7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex50"]},"Identity":{"Case":"Some","Fields":["kxS9lQO5AUJhplwiHXflc4nbzME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LCgBxoCIbrzhCcDO9QcfAU+n86seFZ6hzr5bKJLkN0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:24"]},"IP":{"Case":"Some","Fields":["199.249.230.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e649]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrashcanPercs"]},"Identity":{"Case":"Some","Fields":["kwwyRm0P0t4zPp08PsH9NaBs9Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EkXCxvSOCDn9W6EHVMDwCPWcojyC6SE14wK1i5zyAp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:45"]},"IP":{"Case":"Some","Fields":["185.72.86.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["popular2"]},"Identity":{"Case":"Some","Fields":["kwMNY1qbdnHyfd7SjksXpuyiELI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frs9FtKn8ltQeCgsrxbcSVF2MCWEDfBpzs6bJCkP0og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:18:08"]},"IP":{"Case":"Some","Fields":["45.58.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgravia"]},"Identity":{"Case":"Some","Fields":["kwMMIB4lHcqbYyFC3WeLjmPqybU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V33NSbzuvSmAXSFMrzkA4w9Pf46n0cKFZrdD5yn8ypI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:53"]},"IP":{"Case":"Some","Fields":["65.109.16.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thesergeant"]},"Identity":{"Case":"Some","Fields":["kv2nZHtDHjZbimSYUcNULnoMooA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TCDocSrlh1skEKmu5m2z+1FimbzfcabgzkHNkrNng8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:31"]},"IP":{"Case":"Some","Fields":["194.13.81.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:43:216:5443:2bff:fe16:c6b5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop2"]},"Identity":{"Case":"Some","Fields":["kvyHbIna+Kx+kNGomKT+PAbDLPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KWpAeQOgXtsvqusEDasWw2bycUxDcJ8lBlIAY+Q174E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:54"]},"IP":{"Case":"Some","Fields":["217.160.50.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv05"]},"Identity":{"Case":"Some","Fields":["kuTUkAuE5PsRp3HDfuuqCTHPi0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bg6vb2vP0dEeibrepo/PuUigxIIItgBA82S+PdZPRuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:28"]},"IP":{"Case":"Some","Fields":["162.248.163.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rulers1"]},"Identity":{"Case":"Some","Fields":["ktuTrhzXT0ECSiaFpHW79cSXsLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Q8Myev2Ue2da8ygFT/FlSMCwQz2fthUC7lGqJ9SgRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:05"]},"IP":{"Case":"Some","Fields":["45.58.156.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qki"]},"Identity":{"Case":"Some","Fields":["ktHcNtXQR6Two8j3vGp7uaU8xNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+9f1bjwbZGY0HsaPeWZnCCSUHt1H/VnHUTIF9CgbanE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:24"]},"IP":{"Case":"Some","Fields":["74.207.234.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fe2d:54c3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaytor"]},"Identity":{"Case":"Some","Fields":["krijDB7xi1uMymuT5ysf5eWxjAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["okcOIr0Q7d8EGQ1MOSfCrC+0hD5zdO4XF87NZ35M7lI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:05"]},"IP":{"Case":"Some","Fields":["54.37.75.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::8596]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0164"]},"Identity":{"Case":"Some","Fields":["krFjSn0cNd3Os04PwSKWAtCu37Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cp+yYX3ilUuefQx2GOblKQyrnHf4hUmQ+yRww2ip5O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:52"]},"IP":{"Case":"Some","Fields":["185.220.101.164"]},"OnionRouterPort":{"Case":"Some","Fields":[10164]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::164]:10164"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809ffs"]},"Identity":{"Case":"Some","Fields":["kqknko4xQzhv7LWpS9qvXJr3WeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfHlEoa5dZFBiZVitulUOz8A1ZmlXgeMQVw+lfTPsPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:27"]},"IP":{"Case":"Some","Fields":["199.168.103.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:8e::138]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mpan11"]},"Identity":{"Case":"Some","Fields":["kqEluatJGvwITkJXtVLQ+1YJDLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmIgzGzB9YpTkesNp6ccKoUVB63JJmBP9qSYiC1yCK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:42"]},"IP":{"Case":"Some","Fields":["89.74.86.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XoaseRelay"]},"Identity":{"Case":"Some","Fields":["kqAQOJcvNoIAsD3A0ZSyF7pEHVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g8b9kB89omnkgwr7nxCyuH2MM7PsR8vFpPJXxAoUxfw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:32"]},"IP":{"Case":"Some","Fields":["89.185.109.216"]},"OnionRouterPort":{"Case":"Some","Fields":[18360]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1ad0:c4fe:504::11]:18360"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot65"]},"Identity":{"Case":"Some","Fields":["kpvzfGV9T2nHYyTl/qdgpiSDgTs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jAKrB9KmTZALkV+/r63AtKSAYr65SeRdouWoHBMbX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:15"]},"IP":{"Case":"Some","Fields":["193.108.118.228"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:b1b1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission11"]},"Identity":{"Case":"Some","Fields":["kpu4SmgZjONeLygogShAr1wsvEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["190A8AFyR+f9M8PR+Ro90MG3uJI4lzN0DiuKjc5uBpI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:32"]},"IP":{"Case":"Some","Fields":["54.38.219.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1166"]},"Identity":{"Case":"Some","Fields":["ko86Mc5yZFHa0yMW3pHV+2+MENU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8FoWK3UzWecOloPHtxeWSHTtxZB6XSVGPgCxKLC0Vk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:55"]},"IP":{"Case":"Some","Fields":["185.220.101.166"]},"OnionRouterPort":{"Case":"Some","Fields":[11166]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::166]:11166"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BexleyRecipes"]},"Identity":{"Case":"Some","Fields":["koxHCeZjsP8VL9Hxy91qr6O1SNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYwfpiqY5FyiTdFQDQGrv+VZ7d5vOwbkeNG3b+9Sj1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:26"]},"IP":{"Case":"Some","Fields":["38.97.116.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay9L"]},"Identity":{"Case":"Some","Fields":["koi3W1/4hh7/Mqa+iCXMOKT5+MI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Np73LU+G+inFPvQos0moazgQLBxsGk3VRJJ5BR2ctHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:35"]},"IP":{"Case":"Some","Fields":["107.189.2.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f825::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH112"]},"Identity":{"Case":"Some","Fields":["koJ1qXMGxJSyAIdqH4XR0huZmD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r12oZCPbABxEMtn6mApgiUjf8Pi8ufY6R2dQWYauxQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:37"]},"IP":{"Case":"Some","Fields":["192.42.116.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:212]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["knnwDUw83F0/RuqDf2z1N7wYbNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f8iwxcgC9OPjn0rWOUdGNzNLbw2IpX3+8epF0QmehUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:39"]},"IP":{"Case":"Some","Fields":["185.112.144.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["kmXFHSdp4lPEe6VUZ1JwoP57J3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XIKiiJsWofPhNWF4ngu7Epl8oWosagMkF0UK/OJK5fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["185.125.168.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:42]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NSDFreedom"]},"Identity":{"Case":"Some","Fields":["kkskr6fwddBZ6O6yhMxACzPT0DY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+CdwxrvmFSUmP6f9ugIjM6Eg4lHrPX1BJ/ZcHirJDEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:27"]},"IP":{"Case":"Some","Fields":["96.253.78.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kke1Tc1JF029gXqnP9begE3+wsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F4XWVJhkrra5uwct7BklL3LYr1Z6MmcQVDN0krXX2Nk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:38"]},"IP":{"Case":"Some","Fields":["185.207.107.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atapihidden"]},"Identity":{"Case":"Some","Fields":["kiU69kDy+eLhLMA5Kygey/8UL+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thFaLNQMorLWSQesSn9uyaP150v6yRZ0I4/YZsH2+y4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:57"]},"IP":{"Case":"Some","Fields":["178.255.47.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["khBUjbSYo/jgzuYUKUwRWsTa0a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2OAfzqDwi9Roq2dTLFeTkNDGKGyY8zINATG14FZLdaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:02"]},"IP":{"Case":"Some","Fields":["185.220.101.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::193]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oOoOoOo"]},"Identity":{"Case":"Some","Fields":["kg/wkNioU5RuQHJBkW9srokL9iU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8gNENNIg6NMaIB5v4OxAmOLnxIZIZff7D15NAtBBsuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:16"]},"IP":{"Case":"Some","Fields":["89.39.104.175"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libre"]},"Identity":{"Case":"Some","Fields":["kgmQVuy0qPWlxH+ryfp4zvQ9oqo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QjGOF8c1XBwphJXxq/NofepRbX7zIKYOHBNXpPOnlxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:43"]},"IP":{"Case":"Some","Fields":["89.58.8.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krishaw"]},"Identity":{"Case":"Some","Fields":["kgfwCWMoJc+4H20yOAZ8LJ9o8C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4XtOgqchFamxmYbxG+aBxBhSEqygwCqB5y4xotrA2og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:32"]},"IP":{"Case":"Some","Fields":["151.56.176.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["kgYos3wFuCswWOO+d4phygTwNho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HE2qEygiN4adrWC6hTzjMWGAZdHcbLMUduuPDkpK2pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:44"]},"IP":{"Case":"Some","Fields":["185.229.91.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:36c::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lowFog"]},"Identity":{"Case":"Some","Fields":["kgS8B2S9tA3o3kpWsMSux8K0nYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VhwdRqV8Nf3lbxVF27TzAi8O5rqBzXIGdjMPOUN3tAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:56"]},"IP":{"Case":"Some","Fields":["147.135.16.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission06"]},"Identity":{"Case":"Some","Fields":["kefKa40KrXfHz7j+olv09G2hBCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o/p+tej3HLpJQn1j8S7IeQ/2ROXlGd55uTOTJ5tCbW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:06"]},"IP":{"Case":"Some","Fields":["37.59.76.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CryptoHouse"]},"Identity":{"Case":"Some","Fields":["kbq1TGkjRU9OXtxZMTxFACsjhmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9EZdrC8aONjkJoZnH/ThuvzzKiHhUkdYPkl4TKwTLq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:00"]},"IP":{"Case":"Some","Fields":["185.228.138.252"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:409:748d:52ff:fe41:cdcc]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ka3N/KgwobutOhA3eyXWlakr8lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6t8+qhCqsh/pJEan/aBmX7eQdICAf/R6gZZjEoUbPHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:48"]},"IP":{"Case":"Some","Fields":["145.239.158.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TeutatesTOR"]},"Identity":{"Case":"Some","Fields":["kas3qcK/78kWGkhvcXkUMWCRf60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rnzS8nMljNrBrsRpm2beVuQQFY6s/MqJTwfFYCU0oWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:20"]},"IP":{"Case":"Some","Fields":["78.194.2.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eficommander"]},"Identity":{"Case":"Some","Fields":["kZWCfqT9z7fQBB0sn75Vr1sfOj8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m0I5qgln36wtGDCviNDv7ui3rJjkyJ8bRX7pd6E449E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["54.213.206.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Kenrelay2"]},"Identity":{"Case":"Some","Fields":["kY5x4tQ5YeciIZc3jH/unhUYsuU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wcI1ZNvAJsopv2HJMwLYF/mwohuibJ9rTBcROnjvuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:31"]},"IP":{"Case":"Some","Fields":["178.17.171.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:61::8695]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chooThaineha"]},"Identity":{"Case":"Some","Fields":["kYknIPkmLLN7kacXbT0igPevFL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oqjtA7H33ltagMSR9NeAzpz7GEv/xKgoHLAdhBHdJ24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:40"]},"IP":{"Case":"Some","Fields":["46.4.66.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:2459::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oldePika"]},"Identity":{"Case":"Some","Fields":["kXHhXr9mV2j4764icdR9kixO7UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Uc8pOToH8dJpEPCHt6j0SCN3wCUQDoTQCjQQp9OkZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:47"]},"IP":{"Case":"Some","Fields":["51.15.135.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:1b36::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier1"]},"Identity":{"Case":"Some","Fields":["kXEQHnCa3liB9eLKEQDUBEtEJj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2alpMYPxIRBfObNqfw7KgSOQDoazHt4XD0kplkDDwWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:40"]},"IP":{"Case":"Some","Fields":["95.211.138.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["defcon777"]},"Identity":{"Case":"Some","Fields":["kW3DGZ9jkWjNIK7E1FlpJo6Adpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oZIGPZQLAVF5ga5Jv11YuH31jx7w+UcSQ1T2jh4kQzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:34"]},"IP":{"Case":"Some","Fields":["148.251.136.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:210:400f::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp3"]},"Identity":{"Case":"Some","Fields":["kWQkj5yaYv8iyTaF02XqdHigASM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOXJq3Z/TengG34GDD8R6E11KhYSZ/N+UdInSRkhq7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:21"]},"IP":{"Case":"Some","Fields":["185.220.103.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay39L"]},"Identity":{"Case":"Some","Fields":["kWDTtizdeBQqsL+kJ24XQJV18+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4HTcVVdbqVe/qgtDebCR0ugmu+ijeOm4c4hAtfdyxJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:37"]},"IP":{"Case":"Some","Fields":["45.90.58.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9406::155]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pikachu"]},"Identity":{"Case":"Some","Fields":["kWCl2pAhP+uJnqvTokp4xM3KXeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDFrImMS9C+8vmapVuI0CjWh1lCYDB4d/6RMeuvo75s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:30"]},"IP":{"Case":"Some","Fields":["133.167.74.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:3a00:202:190e:133:167:74:94]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD3"]},"Identity":{"Case":"Some","Fields":["kUxD0oz+TXglhKfRCJpQiy+SGLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFv8i+7XMKdqxdZX+y1zKAJAh1E8gZrF4eCC/K8eOOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:10"]},"IP":{"Case":"Some","Fields":["185.104.120.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::30]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0146"]},"Identity":{"Case":"Some","Fields":["kUs6s/zznOvhX/90PArBYUWR6WY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8rjNG+p2UBYkGPj5LoiB+f3d/Df5NVKIkXOtxdJ32ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:26"]},"IP":{"Case":"Some","Fields":["185.220.101.146"]},"OnionRouterPort":{"Case":"Some","Fields":[10146]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::146]:10146"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP06"]},"Identity":{"Case":"Some","Fields":["kUkKB928O53RRiKJlb3/o1VSuig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3CAFqEcw2ot9F3sb0PcPU/GFFx9968y7TX082lK6ZAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:50"]},"IP":{"Case":"Some","Fields":["15.235.29.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::36ee]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TomatoSauce"]},"Identity":{"Case":"Some","Fields":["kT17aZIw9yaB5WJqlKyvb7xs40Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XsOxmXUTsqfUAv4YhO91y8+7Vy7ECWvHivJMGvsDG8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:49"]},"IP":{"Case":"Some","Fields":["104.217.251.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dakkartor"]},"Identity":{"Case":"Some","Fields":["kTkx7F8fnMuWTX6sGt2YaWhEpSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/JeL3Jfq3XH9AG84p7QNvd/gGvCUmY5AvJ/kYtAnnVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:22"]},"IP":{"Case":"Some","Fields":["178.162.154.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchyLinode"]},"Identity":{"Case":"Some","Fields":["kTOVUOIt6m4U3Ywz3syHAuUAxmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3krYbKna4VIEHTbiIKpTAjDDj06tvF7q7TVIaWWRe/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:43"]},"IP":{"Case":"Some","Fields":["172.105.93.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:92ff:fe9a:1f81]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Myrtille"]},"Identity":{"Case":"Some","Fields":["kQzhRCmIdIY5GeT25Y/SZ8H+rnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZtlLQJzjHPGrDNzFgM3rdkr1Ri4UXtr6XwpxHT3DH5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:23"]},"IP":{"Case":"Some","Fields":["212.227.206.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:1f1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1fdaf44b188706"]},"Identity":{"Case":"Some","Fields":["kQc0wwfhvQQPOChRS+VzRiR6dYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VS0eZvU1CYYb9O9jPKmQGhL0QHvoaQC9y/Rp2+0J1rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:27"]},"IP":{"Case":"Some","Fields":["65.108.248.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:b0ec::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marylou2"]},"Identity":{"Case":"Some","Fields":["kP2DDDV6UQmrPFBSh3E/GsgRF0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XdoLB1Gh+IUM515uiNpu+VmYYd1kkXAzh4w2EqL5PM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:39"]},"IP":{"Case":"Some","Fields":["89.234.157.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2608::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moukari"]},"Identity":{"Case":"Some","Fields":["kOUKsF2UWG0P7SRrAdYyx5y3YRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CTlfTXcokszElChj26NixOo9zvAb6Q/uMSB0yGeG6Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:01"]},"IP":{"Case":"Some","Fields":["84.249.29.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AkashaShrooms"]},"Identity":{"Case":"Some","Fields":["kMIAAYDZWIx2QehlpEirwU9AVH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aK0OqiXh7cCxtcq5gyy/yHzKG0o9/a1FhUUVYnP7Krk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:19"]},"IP":{"Case":"Some","Fields":["37.187.104.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:386f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coTor"]},"Identity":{"Case":"Some","Fields":["kMHo3dM+retnraiMDhNpj/h4rlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JGryiLDcswo6w5jv9YqghaWEalx0Rpme3nUEvMl60OA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:38"]},"IP":{"Case":"Some","Fields":["95.179.247.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MegaRobotMecha"]},"Identity":{"Case":"Some","Fields":["kMG8EN8IGgHVDjgtcnGVXgH89sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BR4SLahHBKShfHWtJgZSuEHSJ9DwP3ace46KSF46vkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:46"]},"IP":{"Case":"Some","Fields":["45.79.92.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:febb:6d1a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex69"]},"Identity":{"Case":"Some","Fields":["kL9xR7Qiobq++lA2VuvReYdCREE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hnUY7fgpu+yha7CaSyang3vQRbC0gdHBlb3EshzNsd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:20"]},"IP":{"Case":"Some","Fields":["199.249.230.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::158]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowball"]},"Identity":{"Case":"Some","Fields":["kLy/c3B5u1BHyyrq5J+8G6kbXts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LiFFNvEx+hXIeVXFx2WRqYoJP2Ex21FIGZIlx7u0BZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:09"]},"IP":{"Case":"Some","Fields":["95.216.13.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:d54::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["kLv48wiFeUCFH1Skw9Xb+UnVJjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UTlAqpSsszMSeGYQzcqv/aVgdHL0AzsEqvaOx3Dxzgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:26"]},"IP":{"Case":"Some","Fields":["188.254.194.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uranium"]},"Identity":{"Case":"Some","Fields":["kLgYkC1CgApeXzGiwNmisLMerF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXFHQLJoJjooz171kweQ1SGEUxiOvGyRz8JbWkOVca4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:18"]},"IP":{"Case":"Some","Fields":["185.36.81.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Haxalicious"]},"Identity":{"Case":"Some","Fields":["kKrGJFOIqanscFCBB3VQMAT+QL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HM29HHnCieSoh3d6eV6evTNpNa4NfBqzUouNawRrZpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:36"]},"IP":{"Case":"Some","Fields":["23.88.131.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kKg9Om1TYZIRkJ6W7cMMkQZ2oys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GzU4YN8sMsCEFs5uhBVHroSnyAvLKvLxMr2hbCuoxuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:13"]},"IP":{"Case":"Some","Fields":["37.120.165.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor09"]},"Identity":{"Case":"Some","Fields":["kKXRNVxLWEDpUOth5nOGOmrjrKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iQcm3NRhkR1NUddlsCuBMsC+Y05A8nnCVuxvWufxVJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:36"]},"IP":{"Case":"Some","Fields":["54.37.139.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1b8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleTorRelay"]},"Identity":{"Case":"Some","Fields":["kI1QsXyBrXlKP7EkNzxtRYQ3xn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m50fpIxgjpWcGS/QAu5n2Dlm5uyDWLSsDrUAR1EfejI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:54"]},"IP":{"Case":"Some","Fields":["130.255.78.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kekw"]},"Identity":{"Case":"Some","Fields":["kIWjB4P7s436ls4CTtxaD59fqiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mIhjLkvoprVPC9ecS15k8QORSWlWLYIlX5rjdauU57U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:25"]},"IP":{"Case":"Some","Fields":["209.141.37.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kIV+C1kSBjr4dw0MJEIkaXxb2Hc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EagLabydu30lRmQR8OdiiRVdNjBPRxFLH54w8pXEyZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:32"]},"IP":{"Case":"Some","Fields":["199.195.252.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["binrlogin"]},"Identity":{"Case":"Some","Fields":["kG80DCl6Zvyf813cki9dW5cSyXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K1MhcrdSPYFWQ9rQ2xq6V9ZkgxArRsFlND/GuNI/O80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:38"]},"IP":{"Case":"Some","Fields":["23.94.134.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deeno"]},"Identity":{"Case":"Some","Fields":["kG7RAX7QRJsC4RXxe3QFso8gr9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RIcMNrnuNf9ReHn/fUyVy7u65yGwI9NgZZvnoll/5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:45"]},"IP":{"Case":"Some","Fields":["193.203.202.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thanosdidnowrong"]},"Identity":{"Case":"Some","Fields":["kGpC3YgKLL7dUvPyj+n5Qqhl9xU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+SysLgsWW5TYQyCPSZ9AI+FhxBr4DR7It8jX2VJjPQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:49"]},"IP":{"Case":"Some","Fields":["173.255.250.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeoR"]},"Identity":{"Case":"Some","Fields":["kF63emOFfm788E1zSlR7CZXYXDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xYuYIFOr6YYbW46WtR0/bQTP9NQLuExtRkikvvRzUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:13"]},"IP":{"Case":"Some","Fields":["3.225.115.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun03"]},"Identity":{"Case":"Some","Fields":["kE8256/mNG9dHWaXH5IP/MR98SA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy7KN6vGx4ydo/nAudW337M44ROn6XJjsio8KSvAboM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:26"]},"IP":{"Case":"Some","Fields":["94.46.171.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buenoairs"]},"Identity":{"Case":"Some","Fields":["kEmSg2qs3nL17dVsKFT1/0GaDto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["djiBAdVVu5jP/L9j7ZmUTKUNbAzXjDnjYhCXirFkXm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:39"]},"IP":{"Case":"Some","Fields":["190.103.176.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nottryingtobelame"]},"Identity":{"Case":"Some","Fields":["kDymfQ3rdM+7AUMoQKJsuMbBj98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eGjJ+VrfxzY7Nsho/ivBV6h9mtXmSnN6oznxIsudvkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:49"]},"IP":{"Case":"Some","Fields":["72.23.65.169"]},"OnionRouterPort":{"Case":"Some","Fields":[8503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torelka"]},"Identity":{"Case":"Some","Fields":["kDoqeZHIOOcP9aWGzTh3SbNYlmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6K+yf4SAZVr7gC8W812o9J0UZjbSnduoG6TbkyFL/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:36"]},"IP":{"Case":"Some","Fields":["51.15.219.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a4:1b34::1]:9111"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zebala"]},"Identity":{"Case":"Some","Fields":["kDM8198mAb5zVXdT3um0yERLXko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zpbigbOaf8NIlFUVBMsDjqAIFmBo08LGO7zT/dJIi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:30"]},"IP":{"Case":"Some","Fields":["95.211.208.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip5b"]},"Identity":{"Case":"Some","Fields":["kCoTOZ8U/8fikSRjMAx4olwfdrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ON3f08to1BtGtldcV249JdLHJYcnLfe9+mmzQab6SNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["185.220.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::252]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catan"]},"Identity":{"Case":"Some","Fields":["kCdz44FiC3PTeb7OkZtsL7rCvi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFC1W4GuHv9vaACh2sbeBxsE5TkmXg3NV6Eq/VqaXgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:14"]},"IP":{"Case":"Some","Fields":["185.10.68.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Gilgamesh"]},"Identity":{"Case":"Some","Fields":["kCHJZ/k7VpirH1OQf30Plqn7IGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+fRRFYU0YfSrrI6B8/1OAUjUFN4DiiUthidZLWM5VC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:15"]},"IP":{"Case":"Some","Fields":["94.23.121.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:4251::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp9"]},"Identity":{"Case":"Some","Fields":["kB45sYzFm8sYq8l91j3Enz33QBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7A+j+TqI13PPWk9ZA0zeifBJE86NAcVUXiamclcR7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:41:36"]},"IP":{"Case":"Some","Fields":["185.220.103.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DonateMoneroi2pd"]},"Identity":{"Case":"Some","Fields":["kBON2yXB4RkAeu7Af2lVB0qhfa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mzbpPAZjjdf727S5/zeXshPAZFbmMIUje1l1ZU+ixg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:15"]},"IP":{"Case":"Some","Fields":["185.123.53.75"]},"OnionRouterPort":{"Case":"Some","Fields":[896]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra89"]},"Identity":{"Case":"Some","Fields":["kA9UsdSDpmiVnpdvN+MnwRIuyBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83WEE9GeHhed5MabVTq2J/k2Z6oQTYaU8DLED6HzLbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:42"]},"IP":{"Case":"Some","Fields":["185.125.168.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:210]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["j94mWIeqdB9HjcnqP0AmJXcNna8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8oAT5T5BjN/hchEZZkQvAUUOtziG7W0rXFQVb2nrAHg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:40"]},"IP":{"Case":"Some","Fields":["88.208.215.96"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1ee::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xeracition"]},"Identity":{"Case":"Some","Fields":["j94HN5j/N48w2VJNPFvvX2nL3tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+OXJTBpf5EE5bRbc4q29QNauxgObiTgAauAsVZ3LMq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:57"]},"IP":{"Case":"Some","Fields":["212.227.115.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN02a"]},"Identity":{"Case":"Some","Fields":["j9O69eFOvhEk1iU9WYgq/hwrm44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RQqbjOXOrZQtgPLTvpI0NZB+gX9RwgQVbR3dHHH5/p0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:07"]},"IP":{"Case":"Some","Fields":["217.182.196.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["salope7"]},"Identity":{"Case":"Some","Fields":["j7DC23kTI2TKbn9ty+PkDDJ7sz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["epM3bpKv+Bg0T+zqi+sXCzkHVLIEx+ldo6e9E/nndMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:38"]},"IP":{"Case":"Some","Fields":["68.183.150.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD2"]},"Identity":{"Case":"Some","Fields":["j6hWTo5RyxB79IetKNdwA0sC34U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7vodW6ymYOe7bM+jDiRVLbHEVjttuWSn6XUVD8hO4js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:48"]},"IP":{"Case":"Some","Fields":["185.104.120.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel22"]},"Identity":{"Case":"Some","Fields":["j6N7kzlwFbK8WlJckISFJgvp9CI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ydUeZHlh8FxAJRTQUMZBgZ3gjXERYvH76aaOdqH61Zo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:16"]},"IP":{"Case":"Some","Fields":["89.163.128.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::abba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortenheberxx61xx"]},"Identity":{"Case":"Some","Fields":["j6C+sB+levKe9twVLVSZeSY5CjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/M1nLywvG9OGkPgLN4JKZKuMf1uv8l5UAbEEbmscAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:20"]},"IP":{"Case":"Some","Fields":["93.218.76.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9361]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shevchenko"]},"Identity":{"Case":"Some","Fields":["j51YabTFm/pdmCu9qaecSR4sAm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yEPnS+8nRBew6LOkR7z/xblb4gsHIJh8RITM/4sOHrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:49"]},"IP":{"Case":"Some","Fields":["185.246.188.67"]},"OnionRouterPort":{"Case":"Some","Fields":[46711]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GTUniversdeMagie"]},"Identity":{"Case":"Some","Fields":["j5zZN9AXe+isnifRhgT5Mhbfpqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uwCpAiYFMYVZzPG9dGlvLpEZ+jYwjSqYPw/dkmK0+pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:32"]},"IP":{"Case":"Some","Fields":["78.159.117.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PT1TestRelay"]},"Identity":{"Case":"Some","Fields":["j5VQylWFsDdrqYMR5bad7cbpDMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6gufW/j7a0QbNhX4bAru4T9KTTlg+KpkpW0+l2408dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:15"]},"IP":{"Case":"Some","Fields":["124.121.123.12"]},"OnionRouterPort":{"Case":"Some","Fields":[15923]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jdtr"]},"Identity":{"Case":"Some","Fields":["j4uureFCh0IhL/UNwPbRO11GwH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mDA7uPDnpIGeb7od+ZGhuHWRpbG/i101SMD/hv3r5JQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:29"]},"IP":{"Case":"Some","Fields":["213.188.119.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b98:f181:1f2b:ba27:ebff:feb7:f806]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SygmaGuard"]},"Identity":{"Case":"Some","Fields":["j4nQM290RL48/7hEhLMhxIO5bCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MZzE7TyrUN4Ub7BP/Lrpv8Fr6R52+XFhrkhMPs9m6LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:27"]},"IP":{"Case":"Some","Fields":["82.64.223.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:2eb:8171:7877:c6ff:fe8f:58f8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoohBear18645"]},"Identity":{"Case":"Some","Fields":["j4krvEcVqiAc7Mj+Yxav9a1AwfI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzK6wjNnOJL/9MoF+GGEVvnDNTpfABIeYCtoHRPD6y0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:19"]},"IP":{"Case":"Some","Fields":["205.185.117.232"]},"OnionRouterPort":{"Case":"Some","Fields":[15698]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:19cb:dd92:af73:5b09:3e0a]:15698"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["count0TorRelay"]},"Identity":{"Case":"Some","Fields":["j4WeS1o7W8VSQnx4JPBM7aWNzkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X2w1tB8mV4STiRuoHWIKb/SABY+SmGtPdTxHBFgBUjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:08"]},"IP":{"Case":"Some","Fields":["188.126.189.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilaDortmund"]},"Identity":{"Case":"Some","Fields":["j34SDB1Dcf6hnjwVjBgNfeTuUFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k1/+PRQmlJJi296hJC/rFDtgupQZXCUIVn9Ntxuurcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:30"]},"IP":{"Case":"Some","Fields":["91.204.6.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbrother23470"]},"Identity":{"Case":"Some","Fields":["j3UhztqatwWkIlTh6Ckmje9Xxw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rDF254SkLsVSJxjFkeHERIoGR72iTNX2nJm24yVlI4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:03"]},"IP":{"Case":"Some","Fields":["82.66.10.17"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber01"]},"Identity":{"Case":"Some","Fields":["j3RGBRmedcJvdOgYveUNmnMl7JQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qMll9oIk8TfWAMA9JHCAHjZo83mySyiYlTvtJ0Ht5Bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:44"]},"IP":{"Case":"Some","Fields":["185.220.101.1"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Logforme3"]},"Identity":{"Case":"Some","Fields":["j2p4seqRfyvyIeh9FDYcBQpwzMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9chFUoIMk7p8wP/Olp9pZM74op5OKAYfsXKBeygKgoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:07"]},"IP":{"Case":"Some","Fields":["81.225.229.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["j2US/iVfuRKnW6/RhqoThMTfSpw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9HylzbXuqzNixOe7jSil7rCTkMUeclBALsEMvjD3Jmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:01"]},"IP":{"Case":"Some","Fields":["161.35.225.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::51:e000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Martell"]},"Identity":{"Case":"Some","Fields":["j1rLQLQmKARebYykyxA82usRKj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FKasgnqDGAl208qXVPX3smVovFd6vj62QvtZ4bBPNCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:30"]},"IP":{"Case":"Some","Fields":["3.121.167.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gooserider"]},"Identity":{"Case":"Some","Fields":["j1nBtVOTKNEey9wi/uCO07vmvEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TCkzyAf0HOCw18H25Th/hxdtTRpGWP5OivfzJreXxdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:06"]},"IP":{"Case":"Some","Fields":["94.103.188.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5160::343]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["phosphr"]},"Identity":{"Case":"Some","Fields":["j1lzEpjKkjnAeijulUeU/TDwZHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5tmc/daLdmOMcY9NTYTM5wQdMSwmvExYuub4FRJF+4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:19"]},"IP":{"Case":"Some","Fields":["160.3.172.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1154"]},"Identity":{"Case":"Some","Fields":["j1LgF3rTX1kMW4OWCqEe0A9yYpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hBT92iM+7mb7zVx7wDgZY1VOimxWlukWLY2vy5E5PKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:47"]},"IP":{"Case":"Some","Fields":["185.220.101.154"]},"OnionRouterPort":{"Case":"Some","Fields":[11154]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::154]:11154"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KerckhoffsRelay"]},"Identity":{"Case":"Some","Fields":["j0SRLpN/bmSWNbbkAMljNvVJjcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pwVhe3sdwpiifhWonFQrbYAAZxf4Djj+IGQ4u78BuFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:48"]},"IP":{"Case":"Some","Fields":["79.250.151.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashDuck"]},"Identity":{"Case":"Some","Fields":["jzTmTliYnmQyfAjP17Gwx8T88zY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rIDEkknpN1IPgQldsQsFiCnfgKja5BYfu6CA47MvNXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:29"]},"IP":{"Case":"Some","Fields":["5.181.80.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["futrelay"]},"Identity":{"Case":"Some","Fields":["jzAVw/NwuidNPElg6kzI4UNIpSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cGkz3JreRIcJJshpFmEg4ucctbLpsbXm2it6LWTL8bU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:17"]},"IP":{"Case":"Some","Fields":["83.22.195.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["njo1017"]},"Identity":{"Case":"Some","Fields":["jyvwFknbIBXJKGirV4g9EyEeNQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nSRqHo8byP4K7Bo/3EpH3ZJ71qTXiiO+2ydd1brbwk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:43"]},"IP":{"Case":"Some","Fields":["80.142.187.122"]},"OnionRouterPort":{"Case":"Some","Fields":[31107]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra24"]},"Identity":{"Case":"Some","Fields":["jyk6ZISglzFnsVxJl6ufJMIRQ/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iu25qPMI3yCcg2bs3wU1FelQyjm0pThJgas1dVQx+A8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:58"]},"IP":{"Case":"Some","Fields":["51.83.131.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jay"]},"Identity":{"Case":"Some","Fields":["jx1w3kLHISDOjkkodBTfz5T/8fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w0UCtIdT/IWkVy9w+AsQz5Ue09he37Qq8rmlFAmdQYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:19"]},"IP":{"Case":"Some","Fields":["94.217.169.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pointderupture"]},"Identity":{"Case":"Some","Fields":["jxYinVQld03KVm13N1lheBU9uDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPU1J4n/6aGeQg8k77qoAeRs8vBTYs3OVI7kEoRjGQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:31"]},"IP":{"Case":"Some","Fields":["195.80.151.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortals2"]},"Identity":{"Case":"Some","Fields":["jxSBX7YLuyPkvEbhYuN8FCjqHM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VrKafNt1CRXF9cT3AIyKej/AGkGuGOu3juf0s0tNayE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:00"]},"IP":{"Case":"Some","Fields":["45.58.156.78"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor6"]},"Identity":{"Case":"Some","Fields":["jxOANibzkFOTHKf3+Ud4wL+Iqfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdeCcv9Jt+KLVDnKTf0e/yVxyv97EgcpI0qv1Wl/2DY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:21"]},"IP":{"Case":"Some","Fields":["193.56.240.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["jxGy4lPOxMXEY784qxymRbcpTVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YD/UIAL3OaZjUGZVowCYBlMJIh/tDu1ZMNuCfCPjw54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:00"]},"IP":{"Case":"Some","Fields":["185.220.101.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::203]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TormyyrFI"]},"Identity":{"Case":"Some","Fields":["jvdI/M8aniuWUdxqvZIfjusk+nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6D17Az7ZurAHACLXw+ILImqdXl2YwNU8wGm+GTQsBJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:09"]},"IP":{"Case":"Some","Fields":["91.221.66.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nels94"]},"Identity":{"Case":"Some","Fields":["jvBSAzMJ2FTWIGpMMPF60nyHiT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gyPo32d0UsimN015FiJOcO+HAQBjNkvyF0sSrY/oUo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:31"]},"IP":{"Case":"Some","Fields":["91.155.241.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ju2jTObW5gXtMXknj0WIJlSSMoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ih2cOxYT3uOEhXLBLZmqX/2B8MHuc3qR3j4Ns+Nf/Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:03"]},"IP":{"Case":"Some","Fields":["77.68.26.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:31b::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["juRHF/pVcFwSCG8+zR+NnIZ2/QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ENZ2WZZXFOOfgL4hOhvYOmdZgHf5ukj/2Ix8yXouB8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:55"]},"IP":{"Case":"Some","Fields":["185.220.101.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thalassa"]},"Identity":{"Case":"Some","Fields":["juKOrwh0r5sD6715tetQWeJUc1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rS/nFPiwHhgj7uXjPQID/9LtS1wXqRJIJy3bs7A1KHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:46"]},"IP":{"Case":"Some","Fields":["198.16.70.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kauwerkoud1r"]},"Identity":{"Case":"Some","Fields":["juDd5LSMBwuNi+VFKwwbyHsOsCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["woSTY+ooSr5kRMp20Orlemxu+frC0m83/IQ66xp+lOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:37"]},"IP":{"Case":"Some","Fields":["85.146.181.175"]},"OnionRouterPort":{"Case":"Some","Fields":[42219]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeeckaRelay"]},"Identity":{"Case":"Some","Fields":["jsuIKbLuJST5or4+GGy2kPpeVXA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YQKqbZqH2nYFiVThfqMC4rwrBbqO9uyu6WNK09UHa8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:36"]},"IP":{"Case":"Some","Fields":["51.68.124.47"]},"OnionRouterPort":{"Case":"Some","Fields":[22443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jspAJbrpOS6TGIVZEqjnHtXdKZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DBswn6lGcCrOFzKmzuVEz0mDZZnCsYmNNZubLRZpPJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:08"]},"IP":{"Case":"Some","Fields":["23.128.248.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::87]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ingwer"]},"Identity":{"Case":"Some","Fields":["jscgvjO39tWaNJW0AL823qa5fSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0tyVlQfrSimZvEKL7O/ogmzgBYIoV45shDh53HFFccA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:41"]},"IP":{"Case":"Some","Fields":["109.70.100.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::9]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman3"]},"Identity":{"Case":"Some","Fields":["jrUU9U9JqyPisK6C7U7ynyzSgIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SAvXZwxtWneydqdcvqt6unSfSUWy1l1sogRi/E0Nc5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:30"]},"IP":{"Case":"Some","Fields":["85.204.116.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:334:4dd:f2de:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeusExMachina"]},"Identity":{"Case":"Some","Fields":["jqyPFhfwdvhGXWTZ3IKNw5feyuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3kbKLBp9QjMdDnjGubzDfo4buy4+s78MKuFnOTcFKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:27"]},"IP":{"Case":"Some","Fields":["107.175.44.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jqtZq4ZsuPNPH4a2c2hgxMumOz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8MHrPnyB9DQENgpot8WEnFOo9CYdmCGm6vT1p2F7T0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:10"]},"IP":{"Case":"Some","Fields":["23.128.248.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["True"]},"Identity":{"Case":"Some","Fields":["jpsLjhs+5ya9Ij3B42yXIJOt170"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2sozE77POJKr1KVKOMdIWjCy3qvmSoPwOdIkb6mKz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:50"]},"IP":{"Case":"Some","Fields":["81.169.195.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43ed:6f00:8cb4:c347:72f5:6772]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["itsnotjesse"]},"Identity":{"Case":"Some","Fields":["jpep/bwmKi2xyHtT8Szxklhm81U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NIYq0wYekx5xickv10jfoIvYVMQpCzBEl52p6fOZjmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:16"]},"IP":{"Case":"Some","Fields":["85.239.34.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:7410::12e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lightblue"]},"Identity":{"Case":"Some","Fields":["jnrK2Hi71hCXwODVVxYPXVm85co"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ylrMam3N8Fx6tnKVknAu6c3p4NfCKAn5wD6tiU47zRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:04"]},"IP":{"Case":"Some","Fields":["178.254.45.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JimmyBulanik"]},"Identity":{"Case":"Some","Fields":["jnbx9uhJnM6XXEUVYFhqX4vwv9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wxyE9pcciMHYwqOJsYnFHCOn6NA8J4DdCC9U90wLy8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:56"]},"IP":{"Case":"Some","Fields":["185.86.150.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::eb42:8ae9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlGrothendieck"]},"Identity":{"Case":"Some","Fields":["jm7aeNjjq6iNh3w+N9bU8JOMe58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qNmn6y+P2rI+7Y+R9bzP3SW+vw9knEUB7OmFxT5z3WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:14"]},"IP":{"Case":"Some","Fields":["80.67.172.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:910:1400:107::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["jm582s4kGCVKhT1pUeyXhB5bB/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oW76glaA+4ngtKkUR2J4NGxQaDQenQRFNTD3kKfUyfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["185.181.62.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::fefe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skaalz"]},"Identity":{"Case":"Some","Fields":["jmIlvIp3DfY7IKL9rBq815WhiYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FWgTpJWhIDgmMQyx5Z50JkUjyPM6tSIHqvcYDN1DF6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:53"]},"IP":{"Case":"Some","Fields":["193.56.240.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingyetwewillsee7"]},"Identity":{"Case":"Some","Fields":["jl6pCijoiNMG+kO5IQoelGe6OuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IrQt+jsiwnUqrY0X/4cVTf4E5JtLQDkbIWIYKDumGS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:43"]},"IP":{"Case":"Some","Fields":["178.62.24.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::284:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flachmon"]},"Identity":{"Case":"Some","Fields":["jlsTJvWA0C5Tn9qr+Zo73hB3JS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vEADoFHOiNvrgt0gmfOEFN0U0q0pk3rg++5UvZD6Ur8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:02"]},"IP":{"Case":"Some","Fields":["192.196.200.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["jkd3WFR/YSZZvShkyR1kFFKDM2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4hsho0hw3HYBb7UpYt25L+Hmjs6C99Sre1e+kll8EY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:17"]},"IP":{"Case":"Some","Fields":["188.68.40.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jkCfMSd/g0MfW5ohTXrRTR6lPCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wOFrzsNusmqezcBwbs42+pnMlIqVgV9501P5HNsB4zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:22"]},"IP":{"Case":"Some","Fields":["176.36.150.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debianRelay"]},"Identity":{"Case":"Some","Fields":["jjrbj19Ur30edP1OuZErlqz6LAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVedjgooF2kmOOLGJQHjt3z0YAg47Q4rMHf0aBrAy7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:35"]},"IP":{"Case":"Some","Fields":["138.68.9.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::218c:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["jjixHoSTNtYqtiZPuumwPHDweGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LStJvN28NB3w6Pi11LWxP3IVkr5qSdmKn3NVOV3UX6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:27"]},"IP":{"Case":"Some","Fields":["185.220.100.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:16::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gandalf"]},"Identity":{"Case":"Some","Fields":["jjgsBsogpnpbEdaOqD334IvnGPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CQOS7lqQFHibnImFhgBafXF9SPtUQDCDVh+q8zBvVXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:19"]},"IP":{"Case":"Some","Fields":["193.218.118.117"]},"OnionRouterPort":{"Case":"Some","Fields":[3942]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Untamed"]},"Identity":{"Case":"Some","Fields":["jeDsC8Vo/NNu2ZVyLM+0axrk0ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiOLC4+A3WmrrNEn29sMNJeqZdu4gzzB44CMCU6z3bM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:46"]},"IP":{"Case":"Some","Fields":["107.189.7.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f2a0::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jcovoVfIDi1XSwCfGCq6lp/OezQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJDzAdmxDNwcvZc39/mwWxE26fn7BYGgUKgXCwC2O0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:14"]},"IP":{"Case":"Some","Fields":["146.70.82.90"]},"OnionRouterPort":{"Case":"Some","Fields":[12684]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alnutt"]},"Identity":{"Case":"Some","Fields":["jcgyq9ycl7i3H3SrBB08s/qVeKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CkDgSgQEonhMlb56YgbA/gP75UZwYhDB8nmOb5vlxnM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:21"]},"IP":{"Case":"Some","Fields":["95.153.31.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["analumi"]},"Identity":{"Case":"Some","Fields":["jcbh1Im8YJUR/HaHkvlm0u6MnqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWGxL5lkvh9I93ok3KWd9H/mgOQlY7acmSpmEKRwqEE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:18"]},"IP":{"Case":"Some","Fields":["80.49.184.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ameno"]},"Identity":{"Case":"Some","Fields":["jcSgYFRA8asBSOr8mY5pMdJlPYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2+FAJBsvKugrSX4TFBUqfWJkzgp0wxAbCPnG4fkL0Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:32"]},"IP":{"Case":"Some","Fields":["82.64.107.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:4d5:27c0:d3f6:2608:164c:6751]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ContinuumRelay"]},"Identity":{"Case":"Some","Fields":["jb742CRDd3AmG0x0U/KBXbf8kWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CYYKb25KEU1RZbhi2pnqkscDUl0fiPiJkzraDqV/m+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:36"]},"IP":{"Case":"Some","Fields":["71.178.206.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myawsomerelay"]},"Identity":{"Case":"Some","Fields":["jb2LkNBdHDWQRBKmThqyRQXiDm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYm87sxRP8VH97xW0W0LX0lN8dSemmZw2cu9B95ePQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["178.79.164.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fe1c:dc8d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgCA2"]},"Identity":{"Case":"Some","Fields":["jbokgtpKKFeQxdkmK1AdTnvkpxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wqJi/DCxsHHpKx7IOXZu0aOZi1IxrpbHmt8lFYa848"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:05"]},"IP":{"Case":"Some","Fields":["167.114.144.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PikachuFlu"]},"Identity":{"Case":"Some","Fields":["jao+EI9IZTBc+Yt097sIroKBWH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Zt4Ff9VaPgTDUw/OfgtFVYNN9np0sQ5C3yFgLdVNdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:09"]},"IP":{"Case":"Some","Fields":["185.53.129.109"]},"OnionRouterPort":{"Case":"Some","Fields":[49413]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["vianullorumunorumq"]},"Identity":{"Case":"Some","Fields":["jZ9KN13op9yXTAn/3XG1zXqdh40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["10lWM8Xrn3K8Z6/dBHNp3cSGAWBObJGkHxsa+4TxOFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:19"]},"IP":{"Case":"Some","Fields":["130.255.78.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["BarryJames"]},"Identity":{"Case":"Some","Fields":["jZqcIWk23hb+bKejPXtSDXO3zAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XyGFdEsbXUK/yJWTiHp40ja2MFqvCECRwJOMkIqOWv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:31"]},"IP":{"Case":"Some","Fields":["52.8.68.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZipSlack"]},"Identity":{"Case":"Some","Fields":["jY3Qcm/1PdLc9c9WC/cR4TbfnOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4wEdmCam56bIhg0GVCNchmxT9phhB3sUel5HVN2r8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:48"]},"IP":{"Case":"Some","Fields":["65.21.195.116"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:1cd7::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zoe"]},"Identity":{"Case":"Some","Fields":["jYxy3C6+JKM0GJ9CNIf5ICOdWbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jqDBBvKXMNH9j5nrYFZs8BtHwmSKKYRAdJtJxBGvG0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:13"]},"IP":{"Case":"Some","Fields":["194.108.49.124"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["jYnspMk5KHEaC9bbgPVHoJrvLWc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZdLsQJ7NUKsZnm7IohExZYccKyBHBzscvSIQCRyHTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["95.214.53.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3560]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RAVEN"]},"Identity":{"Case":"Some","Fields":["jYlsizZ4EwMFkaANt+dyLvbEwjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJPVJmGzTA+6W6urzt1DfXdB4YSl7gnopFZ9AnOYqPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:09"]},"IP":{"Case":"Some","Fields":["107.189.11.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82b:c986:c57f:3adc:b9da]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RainbowBullRelay"]},"Identity":{"Case":"Some","Fields":["jYhzHB2dPoG1BAwSzostix0HZAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nYkZB56NBsQF/IxBYl92PGY7x8RuzSZtO9jR0nqe/lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:45"]},"IP":{"Case":"Some","Fields":["185.105.3.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTorRelay"]},"Identity":{"Case":"Some","Fields":["jYZm76S/eFNUN4GmNBh5YKHNhzg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XuTPJaI6vn5BS5NJQcNtud8ZE4C1V16GKUiWRua9k5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:28"]},"IP":{"Case":"Some","Fields":["188.174.58.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:a61:3bcf:4a01:1437:2aff:b9dd:811c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thanatosDE"]},"Identity":{"Case":"Some","Fields":["jXn3Pc2R/E9QF0IvrHAHTW243YE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SkEtqXOkHXnGiqu/4ITojR+L3O0ChD0Nkb9+SHGK43E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:15"]},"IP":{"Case":"Some","Fields":["5.189.169.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pifmoob"]},"Identity":{"Case":"Some","Fields":["jWXA07EBl/1UiMphR+sNWQFOoPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["41TsNy1GzxTMhYxKqWa0R0LnxAzjOKVOe6vHgRzXQRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:48"]},"IP":{"Case":"Some","Fields":["192.184.148.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["portoloin"]},"Identity":{"Case":"Some","Fields":["jVOSof5WghHvYsyvJX2uWEqlzaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/N7gXEnGxv6A1LnTvaCSIbfKD9aD9aVy0FB9de7uzK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:27"]},"IP":{"Case":"Some","Fields":["46.226.106.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe49:506d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psYchotic"]},"Identity":{"Case":"Some","Fields":["jUGZTR0Y6UQDw/Z9BpnkydIkjUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["de37wB+uu0Ft2k9KGGDSttxuQKftzDmaBmpkbx3OsGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:44"]},"IP":{"Case":"Some","Fields":["5.9.80.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cuptor01"]},"Identity":{"Case":"Some","Fields":["jT2bv/G4NVQ7nrD1pXmiNWk1tVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8lc9mY8t+bTj1lK3USRIq56ODbNsrJATX+riIxoO5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:43"]},"IP":{"Case":"Some","Fields":["45.136.28.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:6c4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jTRMC0PlPmRC31KnHZAB6Gkr5yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlNNd6Tlw/jo0t3GAvG/lvuINeRYckrlxS2q83hRQSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:33"]},"IP":{"Case":"Some","Fields":["161.97.97.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toph"]},"Identity":{"Case":"Some","Fields":["jSs4l4ezY2UkSBapge5A8cA0f1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/S1qulsLFWKWBR4lk7X+w/QdvcsHpo0hT8/2NWp4wm8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:04"]},"IP":{"Case":"Some","Fields":["85.214.55.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["jRFUIUvWFR8EJ9ShWOcdYuIeB2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8BzblIZva3dvcfjXZ4cF7PPZWOKbeczvJYlkApW8nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:35"]},"IP":{"Case":"Some","Fields":["185.207.107.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra32"]},"Identity":{"Case":"Some","Fields":["jREX77yRJwrh/OVeIfnSUJha+rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p1ZxE0/Q1v6DfGIoPrS6q0DiaqB0d8Kf6jmHiZ9gSj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:04"]},"IP":{"Case":"Some","Fields":["104.244.72.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raptor"]},"Identity":{"Case":"Some","Fields":["jRCF6BjQRz7Gk+OwkR/xh0Hx8t8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eiIwOYqQ5p3ErTBOxn3flvaXVwnk8Ro9m5neglLvnxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:16"]},"IP":{"Case":"Some","Fields":["91.203.145.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow009"]},"Identity":{"Case":"Some","Fields":["jQk8nCtCvCJKUxmmYKbPXt7+g58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sl82IKi6RAFihdt0Rk6ooOWbWfnc8/N7N+O0DeQRZqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:37"]},"IP":{"Case":"Some","Fields":["185.195.71.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["jPsWrwAaKnfkCe8FHAQx0FJCleE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zPNM7eqSRaft/UzJVYh6GOZ4EB+cRv1+uqiI47rGCb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:30"]},"IP":{"Case":"Some","Fields":["23.128.248.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::217]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OkurwaRelay"]},"Identity":{"Case":"Some","Fields":["jPnRZj7H/Hm/8xrqwckH0HUVNHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EaKKliOXfvNduFnKg0AxrIz+riqeoSJT996/2qkPGTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:19"]},"IP":{"Case":"Some","Fields":["159.69.11.74"]},"OnionRouterPort":{"Case":"Some","Fields":[1050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:31b5::1]:1050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zucchini"]},"Identity":{"Case":"Some","Fields":["jPmH/0P7fz2apMTz2W/98keppsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VDajIAhDSsx59369qk1ChsmdOPaHKmFFci4HYjWBKI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:26"]},"IP":{"Case":"Some","Fields":["109.70.100.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theintern0"]},"Identity":{"Case":"Some","Fields":["jOnhg1uTP4XdnQlnRDJrX0SIeoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IluV16pM+eAbFSDI/e4tgkm89ZT0nKWNf7M3Zz42rCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:18"]},"IP":{"Case":"Some","Fields":["66.70.190.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["jN9Kda52MaAV4CDP+dzpU2zkxWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rji4UKZD5e1d0TA2cPjmRHtB6oAyYxzxVKwY03ork5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:44"]},"IP":{"Case":"Some","Fields":["185.220.101.55"]},"OnionRouterPort":{"Case":"Some","Fields":[10055]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::55]:10055"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StJames"]},"Identity":{"Case":"Some","Fields":["jNP4AZ+vrG0YxW5R3RQ9h5TgjU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y50kQA+d+bX4OHjZPA9laKlWvzvKrpjynaLW8kFDEk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:35"]},"IP":{"Case":"Some","Fields":["172.241.224.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarkTwain"]},"Identity":{"Case":"Some","Fields":["jM7TkdLhtu0eeHafvc+3DlyRhJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eBMKD5hmh5UBV1BM15IPCJIDbPaOUxG1xGnyFfC7tew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:37"]},"IP":{"Case":"Some","Fields":["141.14.220.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["jL0vCy8LgOknw7AXukcpdtZFOmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UlndMclMeT1w7wVPZHuqRQH+HP5Cwt/LrGXSqhl1qag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:10"]},"IP":{"Case":"Some","Fields":["80.64.218.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::f1a:87b2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy64"]},"Identity":{"Case":"Some","Fields":["jKpHC5BXWHQiA+PrRZQXGfyp/uw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DGkeSsyYn2Q86+FKs4IUmS8Lg5K8sgG1PBLrtOSx+TY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:31"]},"IP":{"Case":"Some","Fields":["193.108.118.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:d00f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Auroch"]},"Identity":{"Case":"Some","Fields":["jKFuh4KT0R8OCAPl/An5OlxmaIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n5QF8gz3Qyw7rIrOzX02rN9iwmjmn2AFIxPDWcotHIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:29"]},"IP":{"Case":"Some","Fields":["178.17.174.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashSalmon"]},"Identity":{"Case":"Some","Fields":["jJ5CdzmcYSwgMs08mMBS8NbqSWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rxH6UQ/UTebLe1r/hC4UW5wR7ZSoqEIrrnAhLvUVhuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:07"]},"IP":{"Case":"Some","Fields":["185.244.39.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["stt"]},"Identity":{"Case":"Some","Fields":["jJRK0VjkENSgZii8XpbqoLF/D58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwjKStVkey4DVAo8sT4x8Ne9xIS8GdZxAZmOW4kP6PQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:00"]},"IP":{"Case":"Some","Fields":["118.241.8.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Intrepid"]},"Identity":{"Case":"Some","Fields":["jHqYEcxsFmT0LZwr2IwURPznnUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EJrsKypUVY7ygf4V2DxlvRZJ8u03G1BlxgrsEAw6cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:58"]},"IP":{"Case":"Some","Fields":["87.236.195.203"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNode1Relay"]},"Identity":{"Case":"Some","Fields":["jHg0qMVP1cUmCcWlB/NrY0ydyII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3UHns+jKONXVX+4DKnWzA2URuUa2xfiTt7+zISgg/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:28"]},"IP":{"Case":"Some","Fields":["82.77.87.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber39"]},"Identity":{"Case":"Some","Fields":["jHaWfCeR4nCRNYRvFy7XSvo8Jg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zOXH199C8ztbun1FlF9WB9LLai5xpTI4Fb4lmSTlP8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:55"]},"IP":{"Case":"Some","Fields":["185.220.101.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::20]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reccenode1"]},"Identity":{"Case":"Some","Fields":["jGL18vQvUy6j5S7VuCb6W8enlWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QCwhG3sdMnx2iVETYHr+pXOH/L5tK8wyV+2HJ+0uepU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:27"]},"IP":{"Case":"Some","Fields":["152.67.71.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["davy"]},"Identity":{"Case":"Some","Fields":["jGEiE8S1wVT6kIR/NvvzbbeKsaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8HgUXztX/pQ+23dmOn1aw6Bg+kAPfgGoT6GFkGSqO2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:54"]},"IP":{"Case":"Some","Fields":["185.225.69.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HappyNode11"]},"Identity":{"Case":"Some","Fields":["jDWxXB8Ti95NUKl1Ep5Hc7RKUD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOyZwQOAnPxxyPXy3FpHTkN/hi1vIN0PhOYA4Z43VXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:53"]},"IP":{"Case":"Some","Fields":["45.79.138.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jDUoa5rP7Un7hAVrXiAQ2Ede/2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CskmZAxpYjwfLOTqWeLBkhl/6QOZdFtXWfwN7fX+V9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:37"]},"IP":{"Case":"Some","Fields":["23.128.248.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::53]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JaldoDoneunMising"]},"Identity":{"Case":"Some","Fields":["jC4wAK293L55Eut9Nnr4Cy/BpoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CK1nXcQGeeHqQ6yLOs/WS28CCm6wLtihn1V0pHtia5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:24"]},"IP":{"Case":"Some","Fields":["14.51.6.220"]},"OnionRouterPort":{"Case":"Some","Fields":[52739]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ts"]},"Identity":{"Case":"Some","Fields":["jCfbGpEpe7NiCmlyemy+5Kzhhow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CFAH7fsNOrS1tFE8K4UfivDlAFUmSGus8x1I14Gp0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:10"]},"IP":{"Case":"Some","Fields":["82.66.81.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:56b:ee10:8e89:a5ff:fe2c:e66d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e4"]},"Identity":{"Case":"Some","Fields":["jCW6E01Xm4qvQg4BIV6yzwaq6Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FzPidd8iqUs2kRd30uNCrDUZPXo/sMUJ5VoDm4tu6h0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:53"]},"IP":{"Case":"Some","Fields":["195.176.3.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::24]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra68"]},"Identity":{"Case":"Some","Fields":["jBiOcSJpNWZoOAc2O1dtmcCxc4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsRDZgOS8yYKzY/dC2jI1aOmRm6GTAh/VQ1azeW1aWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:19"]},"IP":{"Case":"Some","Fields":["185.82.126.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rmdck"]},"Identity":{"Case":"Some","Fields":["jASC3KjEpDnDVOSzAE88GnIJJK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GOYSSOPvSr+EwLQxJls/dNZMJHGw/aQixX4PFJxhII4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:38"]},"IP":{"Case":"Some","Fields":["90.39.100.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionmatic"]},"Identity":{"Case":"Some","Fields":["i+y7VzMYv2Bh7RECJOpjb85OWYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GczeLxZa2UhZhYyo3clajFdq/lAfx7t27k78t5JGaIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:23"]},"IP":{"Case":"Some","Fields":["162.251.166.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shadowdancer"]},"Identity":{"Case":"Some","Fields":["i+pauPld4ZIHdaGo9MNLlHp95QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5TKCAfXGNk5ixNS4Agc1k7t4xBT09ehavYpz9b0jWKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:27"]},"IP":{"Case":"Some","Fields":["139.162.166.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Minotaur"]},"Identity":{"Case":"Some","Fields":["i9vkmBgMQSSdMjD8UJLLPrWmJII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DJIMddZFdSspGlFStBrEPUf23w0ZdJnUtjSDdssjpNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:59"]},"IP":{"Case":"Some","Fields":["72.167.47.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["branlay"]},"Identity":{"Case":"Some","Fields":["i9pf4OLDkasHs7C7/VXcgCOXhKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HSipJFKeLRWQvR/xODoGB3UWCyWR8dHehf5Yomrcds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:10"]},"IP":{"Case":"Some","Fields":["2.58.56.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["applejuicetor"]},"Identity":{"Case":"Some","Fields":["i8kRvML0D2jjFLg8xBDgqt+UUPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6GOfRF3Q95WfqhMx4bsH2IDY2ipT7b/g4grRdgbuiC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:09"]},"IP":{"Case":"Some","Fields":["202.61.255.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoloUnivAretino"]},"Identity":{"Case":"Some","Fields":["i7VaOvu35dnrgyFd7I8hnmjfm20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oHPXJ7oW47lWe5WWGowj0KRyn+sb0xWYxbTMQdNFoxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:05"]},"IP":{"Case":"Some","Fields":["95.110.254.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d41:200:2::e7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["i57VJefZ0oJuFhyntE0hsWm54Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fu7Wt1eo/RCpisKANcbHQt6sQK6hQQCPtbTLXdt3pPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:20"]},"IP":{"Case":"Some","Fields":["23.128.248.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::214]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["i44wsKSevu+WPSparCjzvTBorew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F8WWzLT4lSnZfoIfe6t/X8/tL1ANUKtkamErQptd21U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:56"]},"IP":{"Case":"Some","Fields":["95.214.54.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3646]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobtail"]},"Identity":{"Case":"Some","Fields":["i4ieBMYOMNURATGJ08KtzlIuHzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4WQ+6NHuDM4tUQC4XubnowHtVM+FtxlvfsMISa0vbRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:52"]},"IP":{"Case":"Some","Fields":["190.2.133.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex35"]},"Identity":{"Case":"Some","Fields":["i4AWm+9xRQ/EBpoZCFNSO3rqReE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cFpQ6MeVz7zcRZRBu0t6mrqP/yUcj7AqfZL198vN3Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:08"]},"IP":{"Case":"Some","Fields":["199.249.230.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e654]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockers1"]},"Identity":{"Case":"Some","Fields":["i36ajrlOlQ2qL+gILs1yIiC2xw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x8ATRP/c8r9qYSwxVRuX/Q6YnwcFjBys/hDDiMLRC+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:08"]},"IP":{"Case":"Some","Fields":["174.128.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["laurita"]},"Identity":{"Case":"Some","Fields":["i2sQoK7YlAjlCdRCLskmyJx5M9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u+Zn7f3XOKOIVcfWmwevVk4eJQ/XzsPc0PFcgeQtBsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:46"]},"IP":{"Case":"Some","Fields":["95.211.205.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["i2cyHWFahIcETERyJlQoXm08V2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLprInn0dyDnoaZADyWtQ0b1lL/D8DFbpgtITf81PwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:17"]},"IP":{"Case":"Some","Fields":["5.45.103.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:5:c437:17ff:feca:57d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["i14oLQp9oW5kTRer48njehT343Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ri6ISEWnyuoM/1mBYPVu1bmGG8zYEt72Y8GFmjQTeRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:35"]},"IP":{"Case":"Some","Fields":["104.152.209.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim03"]},"Identity":{"Case":"Some","Fields":["i1oZsVltrUyJ4CW+LLo0JK6UNpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FbwDyxaz6ERfIrIT4xRXna3WxtCPqguwgE2AY9NA3xs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:00"]},"IP":{"Case":"Some","Fields":["178.27.85.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9029]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spellunking"]},"Identity":{"Case":"Some","Fields":["i07LdZ0Tv2d4rKpS1mbrKj59Lu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rtHwxot9gWdEtM07/sSbtB3ePaAT16ie9pabQrlw3+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:33"]},"IP":{"Case":"Some","Fields":["91.223.82.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freiheit"]},"Identity":{"Case":"Some","Fields":["i0lvPvO/XMMqTCDs2+wqBufqQ1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixWWC3pfnl0fj5VKQdzo518D+f8F01I/lLU25FshPC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:22"]},"IP":{"Case":"Some","Fields":["217.79.178.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:5bf::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ooooFUCKoPUTINoooo"]},"Identity":{"Case":"Some","Fields":["i0YJufOLsMnIv4RqFOvSExp2oW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cQd9JI9kgzxWKQVpQEyekMFEMkaJgKztCX1Yt4vp438"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:16"]},"IP":{"Case":"Some","Fields":["79.205.236.47"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FTheFeds"]},"Identity":{"Case":"Some","Fields":["i0B1uRGUyfB71IVu+waabV3aeQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A9u7GzZ76kuzFivRhCxdFYyNGoB6V4jOKrRzCv9ZNxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:38"]},"IP":{"Case":"Some","Fields":["172.10.228.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tanveer"]},"Identity":{"Case":"Some","Fields":["iz7dqxm77Q/xespvemG4fc77J7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0pf1j2AqEqTdLKaqzUkGwIl1ATfDyrhbPFG3fk7Gng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:28"]},"IP":{"Case":"Some","Fields":["143.198.183.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ConcordiaConstanzia"]},"Identity":{"Case":"Some","Fields":["izoH2RVedrtK6SLI+Zrjq32I3SM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iPY7KrwRfsZL3GfNRhBjvsgg/Jvn9VugDBjnFZ6+ge4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:57"]},"IP":{"Case":"Some","Fields":["46.38.232.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iy6yu1OdC4enukvhZ3plAaBLiJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H6s2ZkwYQA/ZJIb90JFEtfcpTGVj5Kwtji/aumyeML4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:44"]},"IP":{"Case":"Some","Fields":["109.201.142.53"]},"OnionRouterPort":{"Case":"Some","Fields":[48794]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["ixmnmOnUzYgBNXzRVqVczURI+70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00qn3VZaEIxMDLrOpMgSNTobph/il1Xw3BHDGldC73w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:19"]},"IP":{"Case":"Some","Fields":["23.128.248.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torNodeCom2"]},"Identity":{"Case":"Some","Fields":["ixJjVjteD7fL/qz9UEsLx5dZyr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E78P/qsbgggyEw1eLr5rkzq7QcsvfpU0KpCUsvLb6JU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:52"]},"IP":{"Case":"Some","Fields":["204.17.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pato"]},"Identity":{"Case":"Some","Fields":["iwyFjdICNhBNaYHz+VIB73Mr8L8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+989tRS2nwHyDiSRkv3b0yGf8a53fCG0Uwx7oiy4Q3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:04"]},"IP":{"Case":"Some","Fields":["89.58.17.212"]},"OnionRouterPort":{"Case":"Some","Fields":[7444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:e35:c4dd:60ff:fe34:7d02]:7444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ams1"]},"Identity":{"Case":"Some","Fields":["iwQj0l79YfDd7In7U4o5jXnIs9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqbInvBUow+fKcjvE0YjwTW0llNEVJBVXVBWG1baF6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:31"]},"IP":{"Case":"Some","Fields":["188.166.103.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eing9wies0fo"]},"Identity":{"Case":"Some","Fields":["iwNPKvvi8nWcyu5YVdDZG7CnA20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKTs6c/jRQysyXxXk3aCXj7v8YtVNnCJvpr42xgqlrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:09"]},"IP":{"Case":"Some","Fields":["107.189.13.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllOfGarden"]},"Identity":{"Case":"Some","Fields":["iuz0h6xvqaKmZP9ypTl4KaZHjmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9WwdytRbeqoYNwjOQ7h2YVTtvv6j5t/WCaWd5pljy+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:51"]},"IP":{"Case":"Some","Fields":["67.183.168.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:601:9a80:2f80:5899:261e:182:6161]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleSister"]},"Identity":{"Case":"Some","Fields":["it4T/oHpVxdxFDjTq9BAIDHIDzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkbVnhcP3dJ6kM8Apg1aWDYA+yEhNwwO8X3mlgow8OQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:35"]},"IP":{"Case":"Some","Fields":["185.21.217.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tommyTOR"]},"Identity":{"Case":"Some","Fields":["itl7BR1H07uFKdt9hXV0Jp/VCCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbvU9pvzdZLyrscvOTErLgBX7IvN1KSPzNpCPhi9gw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:00"]},"IP":{"Case":"Some","Fields":["193.239.86.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SkynetW"]},"Identity":{"Case":"Some","Fields":["is1zvZvdXlr8lxacWDfF4Pcyos8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3kH/CFxQrMQmyp+mfiNyQwpyZHyl8PzAMSlpj8LExB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:24"]},"IP":{"Case":"Some","Fields":["82.165.244.94"]},"OnionRouterPort":{"Case":"Some","Fields":[2424]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:858a::1]:2424"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay38at8443"]},"Identity":{"Case":"Some","Fields":["isgakaEZbCwcvtcclqogT3sP/gA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3QQioAZ8qGvByarc7kafLaUUzd9R5g2rI3wkSOlb4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:05"]},"IP":{"Case":"Some","Fields":["140.78.100.38"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["isfmTWdKFnuhdXQeWEN+KJMXqdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vO4Sojjsj/HX00kp/DGg4spChhxef3t832GtwEk6kUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:32"]},"IP":{"Case":"Some","Fields":["23.128.248.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unityone"]},"Identity":{"Case":"Some","Fields":["isRmc94pTl2TL5PoV/hOp48tR5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2yQfJShyp/I0m013SHfNujCq5bTdodlCIL6IN5r7iHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:17"]},"IP":{"Case":"Some","Fields":["70.34.206.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:f480:2000:182e:5400:4ff:fe11:58d4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNode"]},"Identity":{"Case":"Some","Fields":["irxXars7Jhw5RGkXiJc+UeY6X04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yGtpd3ehUmDfrDh7qh30HmTEo4cuhU3pyIJKikCTZ/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:16"]},"IP":{"Case":"Some","Fields":["3.142.73.219"]},"OnionRouterPort":{"Case":"Some","Fields":[11000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UDEtor"]},"Identity":{"Case":"Some","Fields":["irxNX2GCx+ebCH0e2eXPZSyD5Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qXQSXjNdsB+bDOv3GffgFdDmCZs0i6Lnr5YM7wruwpY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:31"]},"IP":{"Case":"Some","Fields":["132.252.186.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:638:501:4185:250:56ff:fe85:7034]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0188"]},"Identity":{"Case":"Some","Fields":["irsc4L6s/yyfi1O0woZhTlLlc4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IuSLWKXeGNtmWzMt4n69BWYwNHNrpvCqcHkUPEY0k2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:00"]},"IP":{"Case":"Some","Fields":["185.220.101.188"]},"OnionRouterPort":{"Case":"Some","Fields":[10188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::188]:10188"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["irdm+xvlRmlVm4IWWWS4152oARk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qJyXPwR2YzjqJpuAiBJNuME206QZC9DK10IJEmDUEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:04"]},"IP":{"Case":"Some","Fields":["188.68.32.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:42:896:37ff:fe75:d532]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Slowbro"]},"Identity":{"Case":"Some","Fields":["iqPozSOqmsgQO68Kz/TRJEPFofg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RyavqUoYRD/MMHNB7I8VWj3hrMzeoIPL3q/dw9lEwaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:20"]},"IP":{"Case":"Some","Fields":["102.130.113.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vaseline2"]},"Identity":{"Case":"Some","Fields":["ipYlSCos0vMvZxPBzHMUSL1K7is"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+EFwI/9kTggk82wRbhPqE2Uo5+RXKwW7JdGRKpjkgQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:05"]},"IP":{"Case":"Some","Fields":["68.71.25.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7ltorrelay"]},"Identity":{"Case":"Some","Fields":["inQmlZiuqTfxLNi9hvtxLq9i0Oo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["THhuNnmeFc7dm/HNoRfg1aAyjhbNaBcpC+E7XwFd070"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:28"]},"IP":{"Case":"Some","Fields":["217.61.218.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex78"]},"Identity":{"Case":"Some","Fields":["imPkzIbkr/VOB6+dI0Df37hnQxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TPFMSZ/LygMPI4mTsAJspQbxxm85uVvUKewqn4oYAbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:01"]},"IP":{"Case":"Some","Fields":["199.249.230.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::167]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taipe"]},"Identity":{"Case":"Some","Fields":["imIxKndms5hHjICktNODGpYo4A4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+NumsGy7PKhEyd7gby6Ta0NRgIR3dNBGOzGz6UljZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:37"]},"IP":{"Case":"Some","Fields":["185.217.0.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freejanich"]},"Identity":{"Case":"Some","Fields":["il7RQPBfSTTP8CTQbcqxe5yEUjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slLg2w/3m9OCege2BohAV+2GVbtOZf2yWFTXiyyUImQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:55"]},"IP":{"Case":"Some","Fields":["77.91.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nirukoru"]},"Identity":{"Case":"Some","Fields":["il58LQmDWXS01YJSutUf2K1U+c4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7yEMOT4NJcZm3Xn4LuMeEziM2LOhrH56VBXoaIP0NTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:58"]},"IP":{"Case":"Some","Fields":["85.214.42.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:430f:600:5628:8879:3e0c:7547]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iduna"]},"Identity":{"Case":"Some","Fields":["ildJol0EDnJW3NTyomETXe3wdQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GFbvVH4lfrmfEJJX1VdVJLH7N/N4evU6905PN41GdNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:12"]},"IP":{"Case":"Some","Fields":["83.137.158.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["ilMKnOLvjqfZ4rSWVm/YR+dsceY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HtSf5GqetLxpBH/cSdBOocN8j8ANQ5R0jVEXJr6tB6I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:02"]},"IP":{"Case":"Some","Fields":["178.254.45.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:4a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ilIvMKPOp8aSoEGMk2Iyui5U+LM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z/gy1kUvPlVwVTxwmoCrxQ6dxC6zGi6GmeNs/eYawEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:56"]},"IP":{"Case":"Some","Fields":["185.228.138.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:785:3494:6ff:fe3f:873a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomeCanadian"]},"Identity":{"Case":"Some","Fields":["ikhZQqGmjQEoq5m66wD8HAAFQZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JbHRvllOBetqumSifCx538BZt400lAS3GFUOLf5T5vU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:39"]},"IP":{"Case":"Some","Fields":["209.107.107.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["ijyGVzhyajNfvPJxSrednoFZw9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27ylN6KCAbEU85M8d8DmmBwlw99i9aJoqsKoenEMRkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:49"]},"IP":{"Case":"Some","Fields":["23.128.248.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::17]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomthisup"]},"Identity":{"Case":"Some","Fields":["ijh6RMzTbyv/FMZ7wgpmYANtzSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1jbjbrHh7qQqbLBAHMGJd3xrOR5oG7qN2grr9cM3fOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:47"]},"IP":{"Case":"Some","Fields":["51.68.207.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["koala"]},"Identity":{"Case":"Some","Fields":["ijC0vyyGx+ZcLlKpXognGOY/p0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F9sLPpODntsJek2WZQp4Hy1d/2c+Y0auXj7O3oYmIv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:02"]},"IP":{"Case":"Some","Fields":["109.70.100.66"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::66]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum2"]},"Identity":{"Case":"Some","Fields":["ii1xy8oz8To+qWFN4orj9mnYSYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eqCHamiI3rpE7IhCW34AzYEorwd1HVYMLYG36uTaMqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:28"]},"IP":{"Case":"Some","Fields":["62.102.148.68"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalunk"]},"Identity":{"Case":"Some","Fields":["ihaesjHRzPL4qXBfj3yYCKqjIlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["StF8VsNzMYaF7hSavwsc4jLJPfKR1UhbEsMn5h1uzgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:21"]},"IP":{"Case":"Some","Fields":["176.123.8.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blindislandB"]},"Identity":{"Case":"Some","Fields":["ihS6OS9fATdp9ktKkhx6e4CrFv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npKibsp2j6fplorCoGYfZWbK+z6cCTBSwhrMmqgAfbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:41"]},"IP":{"Case":"Some","Fields":["47.243.103.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snaakbarrelay"]},"Identity":{"Case":"Some","Fields":["iguWspS1wOQOlE2hSZLxJn3PZ4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFlBMVO/MSnuGf4i5FbSphvfG+hKpZ3hApgy6fK0RPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:58"]},"IP":{"Case":"Some","Fields":["85.147.65.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudslovewater"]},"Identity":{"Case":"Some","Fields":["ifYGMikwChjwwlxs9G9Tx3jyCTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWp3L42xqbEkGmo1h5DVjsHD+vcP6nFqcrlGZhaMX7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:19"]},"IP":{"Case":"Some","Fields":["103.15.226.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ifUJS9yyzTqEZeWthDS/pg8UnYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ez1BiDVuwc0yCEg0HCMvCgMt4B9AfMvbe/hankRmytA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:20"]},"IP":{"Case":"Some","Fields":["80.64.218.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mania"]},"Identity":{"Case":"Some","Fields":["iekkEV9n/HXqxeLEzzXVM4w1BiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJcheJr5DeTJX9p200kDE4zxq4TdAS5zeKZBXcSF+TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:02"]},"IP":{"Case":"Some","Fields":["169.239.128.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["iefmFGJSM9QCSeYaLkE21PV4z3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MuCzudAfWM0gRUUfReJxrgnmoI/ilStqNq4iQdJ+fco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:37"]},"IP":{"Case":"Some","Fields":["78.142.140.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:78:142:140:242]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ieG12gws3/4GZSD6hSRI7gxPNWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OZbGVFEcw0w8naN5lej7IURdsALvfMLPI/Lzq8uZBGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:47:50"]},"IP":{"Case":"Some","Fields":["104.244.77.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgAU"]},"Identity":{"Case":"Some","Fields":["idHKb9qFziGDeBBSqyOk+iN9lgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0qPjoyvDc3ttg/EyquCjwtXirbPq6G8x/5mT4HcZP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:52"]},"IP":{"Case":"Some","Fields":["139.99.192.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["discworld"]},"Identity":{"Case":"Some","Fields":["idDzH5Bj+afglZzngzpqyUOumgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8pm8RZ48dCwvC5b921yYKO07KivFDh4o/3IoIQojaWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:10"]},"IP":{"Case":"Some","Fields":["107.10.73.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev13"]},"Identity":{"Case":"Some","Fields":["icfoUswvpTfteHda3DvqJGcrQVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+NPfOSGbrNVMfPDinZ42u8Ams9b6pWHoD8Ii5x0uKLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:18"]},"IP":{"Case":"Some","Fields":["51.15.59.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1419::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COMPUthings"]},"Identity":{"Case":"Some","Fields":["ibRZcWmp27Fx8LRinHPA/VXXZ8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YyHFB+pAqTs27+x2tz2UCU7t+/VQgfWEVtWvw7mUG+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:24"]},"IP":{"Case":"Some","Fields":["213.49.172.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet"]},"Identity":{"Case":"Some","Fields":["ibE9f01Ct5UjMYk70UhIEGAPtKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SQdewO7HbrFAUFSPUMlCJB/DRH8X6wgQySNPj4EYZkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:40"]},"IP":{"Case":"Some","Fields":["185.100.87.202"]},"OnionRouterPort":{"Case":"Some","Fields":[14450]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["ibCmn7hhIS9V1fr1N4vmKdQrTOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DvvxlvKBpNgvvPdEjJUA85DbpTodHeQGJfZZlGtWqsU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:30"]},"IP":{"Case":"Some","Fields":["128.199.59.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blanco1"]},"Identity":{"Case":"Some","Fields":["ia+HXZW8NCvz3lmybyoJ3tBFguQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["74KcfvoLihQhtWDTqTLeBEOiSCNlpQ81TSD1QjQHtB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:05"]},"IP":{"Case":"Some","Fields":["84.183.226.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["piratecantina"]},"Identity":{"Case":"Some","Fields":["ia5flsuXkZ7xOxcuDk4stQzDPxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K/YxlDBwSoNQxs/RKwOuMhMJ7sriJtVdMWMvL9QjNcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["195.144.21.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cyber1Creek1DE1raw"]},"Identity":{"Case":"Some","Fields":["ia2fMrCJvJNi2WE2bDP7Y82Dttw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SW2HfYhHUUJuhNu0pfBSf9vYiC2O8eMrpavOy8FUyXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:07"]},"IP":{"Case":"Some","Fields":["173.249.26.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:1:111::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["megator"]},"Identity":{"Case":"Some","Fields":["ia08aEoZQ6HyuEzoVzbXwHMXxn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c26jaOUb4qZUKZjrFKPHIAq7+deRYRE8TKozSiufUFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:29"]},"IP":{"Case":"Some","Fields":["99.199.29.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AtomizedRabbit3"]},"Identity":{"Case":"Some","Fields":["ia0IQC0do4T/a92Pfkv8v3+j1j0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OGadlCJU+AViOJjbqi+yZECS5MrivtTqAvWgxPQzeSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:40"]},"IP":{"Case":"Some","Fields":["178.211.96.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["none"]},"Identity":{"Case":"Some","Fields":["iaza3tsBPkJuLoGQ6J7bGI3krD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SKLXarFXdgVPhPYlQIO1F6CEovWOGk6lNG/azrIi4eU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:36"]},"IP":{"Case":"Some","Fields":["152.70.50.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6802:c2b3:edd1:683:b456]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["iZ0dErv27URQSMswLA8UttFa3KI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRWpgNiEKIduIWFOyN7bUj+wDEJMDIGy3H4QZ01BLB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["176.123.10.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["iYeoEU073FD8Dog8cMY9gip1d6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Q0AbAB8NFZ7Q8EQolsN9L5aXaae1OPumq78UT6QrMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:37"]},"IP":{"Case":"Some","Fields":["23.128.248.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::22]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RabbitPlannet"]},"Identity":{"Case":"Some","Fields":["iYcu61MjVaVm1QQBrfqy/+Kipls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REmheJGrTH/LzDDp2R7W1EOkZRg28XpwfO5ZBsuzqxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:05"]},"IP":{"Case":"Some","Fields":["185.140.251.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heims"]},"Identity":{"Case":"Some","Fields":["iXpn281+nVw7X9GTSUM+ImOgHQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kn92zGxvQWVvvSTzAQBH99dqFyl4wCRwZpF3qrtwS/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:06"]},"IP":{"Case":"Some","Fields":["78.130.128.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itpol2"]},"Identity":{"Case":"Some","Fields":["iXLa1XNCLbXYlcxZPEWdc3TGqJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["43rbAdkNsv4OOW07qx9FDx+BXE+FNeNV9PfUDfEusxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:30"]},"IP":{"Case":"Some","Fields":["89.150.131.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackmamba"]},"Identity":{"Case":"Some","Fields":["iWNkt5lvXfug4V0aLgbQuYtVXdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u3q1wW8dWd6WivYlU/ZkIjbpph4ox5Tq6uQgEzUYweo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:54"]},"IP":{"Case":"Some","Fields":["198.50.223.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:7ac5:198:50:223:16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["iWLGLh4CVgzA2KRlUuOkpbOemXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FvX/5bXloXd8I4xcUVFi6eCd52WVe3uEpwUATEFyHxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:26"]},"IP":{"Case":"Some","Fields":["23.128.248.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::40]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["iVZyuGMwIHVH9nfBtcuJBFeZMRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zy5RaWw9bDxY38qVcS9NvosKoo2+1QmUW1/ouaghEEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:49"]},"IP":{"Case":"Some","Fields":["173.82.105.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc14"]},"Identity":{"Case":"Some","Fields":["iVIQyCN+NFeuJZXjugU+sjau9p8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbMIYaqWpxAjg/uxB0YU5jI2smxhWgGsXRtt7tLfqdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:43:21"]},"IP":{"Case":"Some","Fields":["185.100.85.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["iUptXLd6jOdxqkZ63LEbRM3BDus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eUSkv1eG6e0t7USXhjwkrl7zKxnhosMa2hOJqYXIhbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:22"]},"IP":{"Case":"Some","Fields":["23.128.248.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::229]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv16"]},"Identity":{"Case":"Some","Fields":["iUNifzHiwcgeQCWhRBHxzM1ws6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3zRGqiMoEWehZcI/GB7/A2yLYL68jgYDIHpeszUsl/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:44"]},"IP":{"Case":"Some","Fields":["162.248.163.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackBoxx"]},"Identity":{"Case":"Some","Fields":["iTn+32+3RP2Oaf9s5HMxjyG33a8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WhZH+dQv5rP7dcTVvA9YkNNwCVTDdEgeYGg5U/hV1IU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:00"]},"IP":{"Case":"Some","Fields":["203.76.225.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yomi"]},"Identity":{"Case":"Some","Fields":["iSqCe/Z9snDjA2d6M/5XcGnd5Vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQ4ambN3T0dCipM6qUHfVrrEZXcwJ4BjI/5JQBkD0tU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:58"]},"IP":{"Case":"Some","Fields":["104.244.74.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8b5:620c:dc25:c624:aafd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH107"]},"Identity":{"Case":"Some","Fields":["iSmvVVS+Yi3j/jSBLAPWX+fV0PE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j58gY9nigsRdV0PpL8EhoDQJ1YfqQ94iVk94UlEv3sk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:08"]},"IP":{"Case":"Some","Fields":["192.42.116.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["iSetN/OdEMP0z91SE2BuSIHM9rA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7YvyAmc/nmh44U7S3AfiaXr9xSjYV/VoiVqM0uUaHZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:33"]},"IP":{"Case":"Some","Fields":["51.15.218.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex84"]},"Identity":{"Case":"Some","Fields":["iR91yeqQYBC+kJfZVz9y9GLYihk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+XD1C7vLuwyr2BUUV2KKMLM+1jThjFAi/6jec/Kdkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:26:34"]},"IP":{"Case":"Some","Fields":["199.249.230.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::173]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange039us"]},"Identity":{"Case":"Some","Fields":["iR5yQkNuDviSwIZbE3Poi+sqdjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XHipqYmGlkZcoo8Kfaxw+EyJRZgAZCEGp1HwkVkBqyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:40"]},"IP":{"Case":"Some","Fields":["107.152.46.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindbyte2"]},"Identity":{"Case":"Some","Fields":["iRFSXAcTQX6e0lSFqUkkVZBlh1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OJKIOKgkucSo6N3UP4WjlTlN38GqyZ/Xp6MrvQChe0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:10"]},"IP":{"Case":"Some","Fields":["130.61.50.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frolix8"]},"Identity":{"Case":"Some","Fields":["iQ8yuNz8Bw5Y9dUK6Owr3gEBNGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O1hQF96mt9iPajCW5wSCQIuioDh2CMZYUwY1qdz+Uhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:58"]},"IP":{"Case":"Some","Fields":["153.120.42.137"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["v1704"]},"Identity":{"Case":"Some","Fields":["iQna1khKPayF80II02Id48fsQIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAOiC/z/yM2nJeJjqeY1pFDYYlK3qmYl6njMHK91pIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["37.114.37.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3e3:55::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Privacyignr"]},"Identity":{"Case":"Some","Fields":["iOCKMrZ1pyVtsaGLyAAe8mvy2YE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMoQw4SVr8lcItKYKi+pF7PT2Yvg110/yFK0BmSl9o4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:29"]},"IP":{"Case":"Some","Fields":["64.98.115.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayDE88866"]},"Identity":{"Case":"Some","Fields":["iN9dcI6THEMZAqqr6pgeeVHgAIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jQxUSLcdGx1sB304bLU6wwpXAsmVhvGraGDDfZISkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:40"]},"IP":{"Case":"Some","Fields":["87.106.193.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer72"]},"Identity":{"Case":"Some","Fields":["iNzSZ20n6aN+K0Aq4bQa/hVEECc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZDkJ95u6CR63tMNLwaEZD6IVL73qL5b3Tefb5LFj+Js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:02"]},"IP":{"Case":"Some","Fields":["185.16.38.112"]},"OnionRouterPort":{"Case":"Some","Fields":[8172]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeHackCom"]},"Identity":{"Case":"Some","Fields":["iNajwPwo6ua5rQuhCCIjwDwbMvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dEBbaAvyt89jD0LRyqA+zjOxwCkFwxMGa11mj8NQDfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:17"]},"IP":{"Case":"Some","Fields":["137.74.119.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DiraE2yhvB"]},"Identity":{"Case":"Some","Fields":["iNXwvYf5vBqW/L/c7bHA5rqx0U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQdYZIcNwy2a61W3emlWM9He/VRGKiWbsxg6B4cj5kE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:20"]},"IP":{"Case":"Some","Fields":["92.35.24.60"]},"OnionRouterPort":{"Case":"Some","Fields":[1025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:dd6d::21]:1025"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay02"]},"Identity":{"Case":"Some","Fields":["iM+NQtSbfI6dA6vl2uevJemQIAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ijj9r+xTNlNddryNTSElhh+s4RvInHLZTw2iVf1HglQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:00"]},"IP":{"Case":"Some","Fields":["82.149.227.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:125]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RasBifrost"]},"Identity":{"Case":"Some","Fields":["iMYVrF+Vkb/UjbV4slK4mnL1w6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4U9TRFomK1N9IaKwOJPZLbEgO4tmV5h8VRnEAnCxWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:48"]},"IP":{"Case":"Some","Fields":["46.244.239.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Determination"]},"Identity":{"Case":"Some","Fields":["iMWGM8lTei4Pk6XsCb30D8MkdxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYtwRzHJZ3yCc+fICZ1A5Tmmi+kZ6Mxmj3RgNShRUPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:52"]},"IP":{"Case":"Some","Fields":["87.236.195.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viresinnumeris"]},"Identity":{"Case":"Some","Fields":["iLCiE7RbPzcBAA8atOR10d3L8ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlgAUlnwBo0drMCGjMnv9O0UX/ETNNkaVLi/yN5tD7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:13"]},"IP":{"Case":"Some","Fields":["51.15.139.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:628:f32::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bahabugger"]},"Identity":{"Case":"Some","Fields":["iK2ZuWgt05E8sEJPB2Ox2DHn5E4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OWhtCTHrf0yK23qUrHo+vBE5WNRRMh+YYJKs42q2nOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:08"]},"IP":{"Case":"Some","Fields":["27.255.77.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mowgli"]},"Identity":{"Case":"Some","Fields":["iJlE9UDBVefjLJCbnhQkZ3aJrU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/wrFkb322aR9jxFST1NFOmKPYtPv5Ek4qE9Wp9wFw0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:34"]},"IP":{"Case":"Some","Fields":["51.81.93.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iIXqb3SmlIJbE7inCA9s8WTfdPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWOf4ZblPuc6Kcf0gycUlmzeYUStVef2hP2JBMFloFU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:27"]},"IP":{"Case":"Some","Fields":["144.217.95.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::49be]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uglycat"]},"Identity":{"Case":"Some","Fields":["iH11DGntgdFLQrc9ZSnZjDwlpXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+mqI5f9iBkBwhf945TTvdK7+4hbudqoTxDeyyO8TdXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:29"]},"IP":{"Case":"Some","Fields":["73.41.183.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonkostchtchie"]},"Identity":{"Case":"Some","Fields":["iHyrUBqdtoosRO35i/ULAwTu2LY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pwRcSm5lo/b1/Zkv3BxZPFrwVZX8GqkykojtBnKV3rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:17"]},"IP":{"Case":"Some","Fields":["185.220.100.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:7::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TruthSeeker"]},"Identity":{"Case":"Some","Fields":["iHVK+baoIGFOFP6PH+pCMXnoCX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AcjMU/RK/X1nI3T8527alazVoARSQoy0A7YOaIosw7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:38"]},"IP":{"Case":"Some","Fields":["8.42.76.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sugarlabs"]},"Identity":{"Case":"Some","Fields":["iFyj3VtQmAzUHFG6f/yNi+RrZlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwFx/YlAeMViN5DdMdebWwEMbwpSSMEjU/DujacYBCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:38"]},"IP":{"Case":"Some","Fields":["192.184.220.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:5a8:601:f::216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay19at8443"]},"Identity":{"Case":"Some","Fields":["iFx7brlDBot2IHDiduKZMZ5asIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jk5Ilnpdmac5l1mkq/eSNpNbbTYG6csKyEApF/x/FOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:40"]},"IP":{"Case":"Some","Fields":["140.78.100.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1151"]},"Identity":{"Case":"Some","Fields":["iFAvf8SPM9l+5eeVCCsVn78ESnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8nRz1k7YBlI9s/vbfNF5prIhZErbbxoA+rx4eNWTi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:43"]},"IP":{"Case":"Some","Fields":["185.220.101.151"]},"OnionRouterPort":{"Case":"Some","Fields":[11151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::151]:11151"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FoxEarsTechRelay"]},"Identity":{"Case":"Some","Fields":["iDdy0Vm0Apnol0ToR/xfMqqtUVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtcUdFsCpI9zH9ToUyrVhtFAsuKBEq0IiPQ5rqicX6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:04"]},"IP":{"Case":"Some","Fields":["82.65.243.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:1e9:5160:ba27:ebff:fe68:d2ce]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cheetah"]},"Identity":{"Case":"Some","Fields":["iDZyPS2X80/k6TMETSyg/hSZVXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IM+XIYT40IyS22c7iUj6eYsDPAxEtCHEeI2pArzwR/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:26"]},"IP":{"Case":"Some","Fields":["108.180.138.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9905]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:569:52c7:3400:9aa5:cc38:121b:24ef]:1720"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sexytiem"]},"Identity":{"Case":"Some","Fields":["iCaYssocPMizR1FHi/uQzoTHLzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0BjM7h28VzZHuqhEvP4Jjd7lLUleT+9mOZhiNGm8VTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:03"]},"IP":{"Case":"Some","Fields":["95.216.107.148"]},"OnionRouterPort":{"Case":"Some","Fields":[19731]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:75d::124:148]:19731"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iB8JJ5+U6arT3jByffOtfCzpAN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SLFFfP0EbYqprQEjOFLlrPaBJ96IsDGKtJxPafhXbP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:39"]},"IP":{"Case":"Some","Fields":["88.99.171.75"]},"OnionRouterPort":{"Case":"Some","Fields":[2479]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:419c::1]:2479"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Karin4713"]},"Identity":{"Case":"Some","Fields":["iBv7QwzEO9nSALqDSMaem2Jc+t8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhr41ALzaUbL70MxZ9EGsrY5wPuTk5nWTfMHtxTI/U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["83.209.9.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["weisswurschttor"]},"Identity":{"Case":"Some","Fields":["iAKJ8rYykgWFQNy3ZAO0izwtpOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZcD/HgDOOhv08v4dHNOcdksisgkhK/CgfLzdg5uuRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:41"]},"IP":{"Case":"Some","Fields":["3.91.76.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1f18:452a:fc03:9323:da54:e44c:4e2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RightToInformation"]},"Identity":{"Case":"Some","Fields":["h/4f+CPo4TWdLugLmzGzs1i+4hI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oRnayh7fEweFILUNtdifFgcxlgVYcFHq/if/kbP7VoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:28"]},"IP":{"Case":"Some","Fields":["81.169.134.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:439a:1900:43d6:a3e4:9968:9811]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Maple"]},"Identity":{"Case":"Some","Fields":["h9/ViiP73PtIweUazVYXtIUnnmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DXDGIa4oHgb6cDiqwgs+DED26VtuUe7x7295+eyl7kI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:17"]},"IP":{"Case":"Some","Fields":["162.156.191.108"]},"OnionRouterPort":{"Case":"Some","Fields":[55003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ireadtheshadowconf"]},"Identity":{"Case":"Some","Fields":["h931vtesyoimLQlSkF3kVK6HTXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDN0ALCTWyhhVCB4h9YB+hktuVmf9DATLzk/nFHzqp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:10"]},"IP":{"Case":"Some","Fields":["185.194.239.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::61]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["h8CN39MsYvPFbTcfl3TSe/27gHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0E6E9c4lDgQZrOPM61wCvAkBydNGu/y6sHYW5NjH4Bk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:01"]},"IP":{"Case":"Some","Fields":["23.81.66.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeSpeech61001"]},"Identity":{"Case":"Some","Fields":["h7uVlc3GxFPp6iNcadESQhotDpQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cq1/xCtnqsEy9Ti9rXEuvDxvBb0l+dGXye001ShzogI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:10"]},"IP":{"Case":"Some","Fields":["87.177.68.243"]},"OnionRouterPort":{"Case":"Some","Fields":[61001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f89g65f21"]},"Identity":{"Case":"Some","Fields":["h7NVfz55IhfivE6ZI+rKSuxbqcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a9HWGdj/RV7+iu5j+IqpnW86E5ZG9J9PRly/ijvTXuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:30"]},"IP":{"Case":"Some","Fields":["90.191.152.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NukeDukeNode"]},"Identity":{"Case":"Some","Fields":["h7MQPhADKrxo5a49FzLqUlJMCkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iY/FzHBVm5pRXPhlXgb1U8S9pJ6K4NlvjLSdqxnX3LM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:04"]},"IP":{"Case":"Some","Fields":["87.17.211.252"]},"OnionRouterPort":{"Case":"Some","Fields":[8325]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tvSORGaming"]},"Identity":{"Case":"Some","Fields":["h7ChXS9Hff9Bm6Iy/QI5KvydeXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BqkXkJz6peVMKGQIgn5WhFDEsKeZponlRlisLvUGJJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:20"]},"IP":{"Case":"Some","Fields":["65.21.126.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarryBen"]},"Identity":{"Case":"Some","Fields":["h6ob5KOVKd2GGUc437WdxpjzE2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KQHS7EgKYZq37PzBEV+X/JdMD9N8NX7HHnOuZOeusTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:50"]},"IP":{"Case":"Some","Fields":["52.205.15.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kbtr7lv"]},"Identity":{"Case":"Some","Fields":["h5sDZGjTCrGiGV+W0skfPKqNHcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ci44Nugn8lT9CkHcqbndtJPdC0QFzylOvvQn0ThVHbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:22"]},"IP":{"Case":"Some","Fields":["94.140.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay36at8443"]},"Identity":{"Case":"Some","Fields":["h3qqHfCNkC3KZnBW6238TNKwZlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jPrm5P9oao4Nw5+RMNOxwg69s2Ex2xxFc9NwGycMMSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:23"]},"IP":{"Case":"Some","Fields":["140.78.100.36"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nexxtor"]},"Identity":{"Case":"Some","Fields":["h3SFP3dCOt2fldIg6jCfEvjT6Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QpkHwIY0M6nzeqNKSNytvd1kHhzyTLPetEZ3v024mU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:52"]},"IP":{"Case":"Some","Fields":["65.108.212.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:12f8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowland"]},"Identity":{"Case":"Some","Fields":["h2x85Dd0NmJQ0+do5pDaudS11aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ad8Q7K8p+1BmRHq9aipVgZb+ukWl6v4ZatEtMHhw3LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:57"]},"IP":{"Case":"Some","Fields":["37.218.242.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG13"]},"Identity":{"Case":"Some","Fields":["h2ulxBq39KipmqyrmAwIHbphcRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQ/9Nz7UR3n+rcR/ANewT1DoidLFNz/NpM8wD3AS+RA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:51"]},"IP":{"Case":"Some","Fields":["193.189.100.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowsun"]},"Identity":{"Case":"Some","Fields":["h2mvbcxF2rnCGc2fRk6uMmhVDP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPzKWVS2XKPycRPMDqUxmAW+SQ9Uh2E1XOtIzR+Aqo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:52"]},"IP":{"Case":"Some","Fields":["178.175.148.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:ad::e746]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["h2XGr/YsJmo42Mc6dmBKWxZp+qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWuaGCvao0VkJFUe/2PuI/g2BlFSljuWBVEIPdmShc0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:54"]},"IP":{"Case":"Some","Fields":["152.70.64.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2603:c024:8001:dfea:2::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ldExit3"]},"Identity":{"Case":"Some","Fields":["h2E4Rf4axshN7AyQ59yVdp9TLiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9SJC2LOc27R/OFEpXitjlzagg6IzoEt62MQ++IrIo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:48"]},"IP":{"Case":"Some","Fields":["185.254.75.55"]},"OnionRouterPort":{"Case":"Some","Fields":[56718]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:d9c0:3000::a22e]:56718"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Babylonian"]},"Identity":{"Case":"Some","Fields":["h190o9wUc3vsoG+LUAAiFU0aKdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["03bhRN5esmm15bJ43KKb1d9i1zlW3x2KMG5J2QBAKps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:29"]},"IP":{"Case":"Some","Fields":["83.226.248.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spigen"]},"Identity":{"Case":"Some","Fields":["h02EOCyJLz9hzJ4Qa/CIQ94Lhlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvyyrldjSqmpOCy2zsRmDurhxBNI0C+Gmo/+V0cGooI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:54"]},"IP":{"Case":"Some","Fields":["192.42.113.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:113:192:42:113:102]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda0"]},"Identity":{"Case":"Some","Fields":["h0zn5zKjYoow7ku3E/pF+L4/MsM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JtwBGhLw225JAGMB6OFbivCSmq+U4/yPWfWMk1vcJ74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:57"]},"IP":{"Case":"Some","Fields":["88.198.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:222:19a::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["h0ilws6L6LYJkBHau9c226H6vWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vElIvXO21wttdPsv8dvxJIUjcWFutQqU6GilUnvy1jk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:05"]},"IP":{"Case":"Some","Fields":["185.220.101.37"]},"OnionRouterPort":{"Case":"Some","Fields":[10037]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::37]:10037"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["L29Ah"]},"Identity":{"Case":"Some","Fields":["h0WTxXFjfGX6MySz6tfdVC4rtkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wsNckB5DGsOUhtghi6chKMjp+dY2HwcM2C6NCwcm85M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:35"]},"IP":{"Case":"Some","Fields":["79.137.197.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsten"]},"Identity":{"Case":"Some","Fields":["hzxaydz7oshS6x702wjqq0ctsxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nN0pxOALicaiZEQm4YBHcMalMzEUIw90IuU7dLF5qpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:03"]},"IP":{"Case":"Some","Fields":["135.181.144.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:e041::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["IronFist"]},"Identity":{"Case":"Some","Fields":["hztlolapaWd5ZMoE437JVVCJ2zw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ME+GE5rZqeo1RPOvJJBAnw1TnC/EHjl8y68EzByzNjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:45"]},"IP":{"Case":"Some","Fields":["216.73.159.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq06"]},"Identity":{"Case":"Some","Fields":["hzV/zCvywh8GlxQ4G8psPn78vV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S8kjuNnuLsF9CNpYJqTqvxDxKDzXyVCaSyAvCXWXpEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:52"]},"IP":{"Case":"Some","Fields":["193.32.127.157"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0144"]},"Identity":{"Case":"Some","Fields":["hy0KDevpFOw8PjEFt6jMFXZi+mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByYSqgM4ZlA1J3m4nntMujohjEv4Y6tkLix+4BfVXfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:29"]},"IP":{"Case":"Some","Fields":["185.220.101.144"]},"OnionRouterPort":{"Case":"Some","Fields":[10144]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::144]:10144"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["hyEIxSxSzBAhejUciD6ZGu33xHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gPYJZN9D6gvVfz//SOgaRU1ik7Lg28NzdPZ9sTii5Ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:59:51"]},"IP":{"Case":"Some","Fields":["135.125.89.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lennosplace"]},"Identity":{"Case":"Some","Fields":["hxVKLdmzidvZrQlwCawnsMX8/mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x9cLzHle/vGzpB7hdezR4kJyLejQ7bsqVdstio2z12E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:52"]},"IP":{"Case":"Some","Fields":["60.241.239.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:44b8:2128:1800:85ef:14c9:a370:276e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rocketrelay1776"]},"Identity":{"Case":"Some","Fields":["hxLhf70Na7q2Dj6JezJvrlHhWwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dFRJkJny6FNo3dkA6RkveITrW4MlHvW8/1XPtBwt3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:10"]},"IP":{"Case":"Some","Fields":["107.189.12.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Proteus"]},"Identity":{"Case":"Some","Fields":["hw1k+HRY13Bq1oR5Q4OSBso3/RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9jnSs8He1Ln1ebDYkof5LpbKYSXF/wGncONwvyRq9LE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:20"]},"IP":{"Case":"Some","Fields":["92.210.13.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheFastBoi"]},"Identity":{"Case":"Some","Fields":["hwwBkEIOJMpJBfpLBd/bMSymfBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6lF4jSE/XzBiZRDad6+ilGI4heeZ3LX5tiUgWCjwEJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:01"]},"IP":{"Case":"Some","Fields":["150.136.83.160"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1188"]},"Identity":{"Case":"Some","Fields":["hwNTDFzv+eaLbpr3VDKjkMYxTEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AltDpyOYKJaee3I4j3Eq2syjf7dGQGfRxYSm7PHqCQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:08"]},"IP":{"Case":"Some","Fields":["185.220.101.188"]},"OnionRouterPort":{"Case":"Some","Fields":[11188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::188]:11188"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc2"]},"Identity":{"Case":"Some","Fields":["hwHnCsTAyeH+R+qFP8mX0pvl1lw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXuZvNe0m/XAjTJCSwDlBDIUFTFptaUTVAk3NvmwvnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:36"]},"IP":{"Case":"Some","Fields":["95.217.0.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:4eca::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG12"]},"Identity":{"Case":"Some","Fields":["hwBuHjjuHTW/73XB+9IUtwSWPcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r/Ickc+QBnEmdM5m7skpkEP8gKpaf6eac9rq1aot/sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T17:06:47"]},"IP":{"Case":"Some","Fields":["193.189.100.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Potatoe"]},"Identity":{"Case":"Some","Fields":["hvunU8jSVlPghrmP/4qghPhi22c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["63dDK0bqGtkAvqsnyArxaCK9hWOZkdOCkzO94OTuc8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:03"]},"IP":{"Case":"Some","Fields":["139.162.232.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:febb:4d59]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uovobw"]},"Identity":{"Case":"Some","Fields":["hvKCjLSwh1UVYH9OIJeVFUK3E+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+pasFOzsn0BHPA4Y3s7WycA07Qg5hCoEDRNTR4yr1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:19"]},"IP":{"Case":"Some","Fields":["95.217.2.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:4d4e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra20"]},"Identity":{"Case":"Some","Fields":["huR5Jm67mC4gQAlTLtRgYoaJ5bU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cllxc0v0UbczlC/GkJxFEW6w6x7+/B/D8I3XRoBkVUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ngggermany"]},"Identity":{"Case":"Some","Fields":["ht6pvvSvqTLIjRqS0ydsh7NqC30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2D+f/OqfSRmrmNMojMJ6m7/pNkiRDqh9YqDE0K/W9O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:01"]},"IP":{"Case":"Some","Fields":["37.138.45.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoldMyRelay"]},"Identity":{"Case":"Some","Fields":["htlCl1W2RtjBKWwbbLyal4dtbY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b5zCB3DUFV0RPKwOT9lltTuLrR/vUn8Vn7rqL76WG5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:23"]},"IP":{"Case":"Some","Fields":["51.195.46.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::58b8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mnesys1"]},"Identity":{"Case":"Some","Fields":["htkk7eFJi04d0I0iYPPp/kVAEuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iAN8EPkY0FNfLNuBbwvtETXEg9pL3eG7CCXukEGbKYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:44"]},"IP":{"Case":"Some","Fields":["193.30.123.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay07V6Rocks"]},"Identity":{"Case":"Some","Fields":["hqVVS0DwjgKuLjP/HTo3IKZ4n9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kSxBHTVpPVEZJX0PBx2SEei20F1zF2OklxM+Jl2m2Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:10"]},"IP":{"Case":"Some","Fields":["185.170.113.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ad2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Njord"]},"Identity":{"Case":"Some","Fields":["hpy2ky74fcFS1rEr3+XIJneXXnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pn8ptKV3Znh7sarlkDFuxBL2ufeVyXV8OJhMSWwk/n0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:51"]},"IP":{"Case":"Some","Fields":["83.137.158.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrorist"]},"Identity":{"Case":"Some","Fields":["hpk3FBXcBSpgvKOq1o5V2bdZyuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8/Se8KSoyWikWHiKLk40JF+dRmDYF9V/pBizAKr7UG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:58"]},"IP":{"Case":"Some","Fields":["185.73.211.3"]},"OnionRouterPort":{"Case":"Some","Fields":[50001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8dc0:aa00::13]:50001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor01"]},"Identity":{"Case":"Some","Fields":["hpbcesBHD27Vx6xIAwAC19Nxb8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAIe4bwDm39+geZAvMpoPDURcrLMxqCwRU+H4r6LXKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:38"]},"IP":{"Case":"Some","Fields":["206.217.136.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk4"]},"Identity":{"Case":"Some","Fields":["hoolPDMPQPvkNdkyCEk5f4WCPoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q25WLTGMq2XuQJCxJ2zvmzRJovn+f8OC5Ib0ykAKZJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:17"]},"IP":{"Case":"Some","Fields":["195.234.152.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Challanger"]},"Identity":{"Case":"Some","Fields":["hoWsOiWqDU7KroCDU0Kx7QEeR6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubi5y0UD0pLnVAoTiTGk92gQguk7H6PI2xsMdhBReI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:53"]},"IP":{"Case":"Some","Fields":["179.43.139.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber38"]},"Identity":{"Case":"Some","Fields":["hnjGKdNeLKag0aPT9MX1YTT165o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nsvKQMSA+Q7aOCntNrysmNne1jpIY5uXjaKtX7njBC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:01"]},"IP":{"Case":"Some","Fields":["185.220.101.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::19]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE71"]},"Identity":{"Case":"Some","Fields":["hnV0RseXjTfeO0BEuutP2zT9dM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IFPICJ4I8x7aVihqmw+qsyOgRYNwJ8ggVcvqn6JpmYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:48"]},"IP":{"Case":"Some","Fields":["37.221.67.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8r0k3nN0d3"]},"Identity":{"Case":"Some","Fields":["hma6wIfGGFgBs4eIF4cZo9riUJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BojnFDERYl7GrJax20dPKf4A0OrIPv7cmqrzCp+XQ+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:40"]},"IP":{"Case":"Some","Fields":["98.46.21.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["hmK16fsK8NL0U069WtnUWOGWbKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tsruehVo/yZUjR4dlPIZZ35jU7yUkQ8/Phy/BwOANOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["95.214.53.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gentor00"]},"Identity":{"Case":"Some","Fields":["hllsOoa6v1JOq3T1bmZuev2A/Qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WN8e3CeTtDB21J9dd8qFNdSKqr6+VeEErugvmfU4af8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:22"]},"IP":{"Case":"Some","Fields":["142.132.162.38"]},"OnionRouterPort":{"Case":"Some","Fields":[6667]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:fe63::1]:6667"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["hleptIG6OaYMKeSa+tXOVSNneBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92HVncSj+XT4otNl8ZkV9U3MtDA6ThPX33G1V6CY+Ps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:41"]},"IP":{"Case":"Some","Fields":["188.68.37.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mercurya"]},"Identity":{"Case":"Some","Fields":["hlTJpdHbMhPrjdg8Zz3yQHdXPF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WUabS1xFoPiWog0F1tHdeLTyNTwRHe7VlhGSxkukB3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:40"]},"IP":{"Case":"Some","Fields":["178.209.46.173"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq03"]},"Identity":{"Case":"Some","Fields":["hijSrMocm+WW3tHfnQCZu9sTUrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1DpY4+w7ULPul+S8o/F7dhjVtie0Im8vK0P8yvRvUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:02"]},"IP":{"Case":"Some","Fields":["193.32.127.154"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["405test2"]},"Identity":{"Case":"Some","Fields":["hiWCGvpXn4kvH893+KKsmkrUz9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZUG1s7lu2hRxx3637jLD407rL/n0KVwCzDZx1hm3ko0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:35"]},"IP":{"Case":"Some","Fields":["68.12.219.144"]},"OnionRouterPort":{"Case":"Some","Fields":[456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itomori"]},"Identity":{"Case":"Some","Fields":["hhvP3RSJc5hef+l8dFXJ5KxOE74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbmSdXXQnsWEzp4j2nVpk4k/6erVVvxXQbnR/u7UJfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:43"]},"IP":{"Case":"Some","Fields":["148.251.22.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:8367::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["acidp"]},"Identity":{"Case":"Some","Fields":["hg+81tCaCEMIj4hSe/vTjxvHDwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wXUdVC8E6U9opr3JjENWIVg3EVyaO+kn1s2ukDX20zU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:39"]},"IP":{"Case":"Some","Fields":["87.245.110.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["narp"]},"Identity":{"Case":"Some","Fields":["hgQvb87HzOMu60lel/7rqLXPtd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sclTRFt68WW5srBsWExm09tCrYgUZc8FlEfiIeXDI9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:50"]},"IP":{"Case":"Some","Fields":["51.81.208.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FancyMahalo"]},"Identity":{"Case":"Some","Fields":["hesa/PE/KVu20hFuVkjbAx3tpys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W16TsFcdQpRG/Msk3DMNfxoFkmd6QlU9N9YZhIG+vvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:18"]},"IP":{"Case":"Some","Fields":["45.142.179.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["letsdoitAT"]},"Identity":{"Case":"Some","Fields":["hd4+1WmJpPVNUNgt2HqR3C8w7N8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["unoh3I3XyCl5HK0IAgIA8VVuorHocx9UkQ1Xxcw2RGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:03"]},"IP":{"Case":"Some","Fields":["185.119.117.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:140::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hduvsc5yJlBFiRzwFxmZBaNozcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnGSIOpHO7+BgboolQo6tAp4scRTuWuedKW+L77zC1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:46"]},"IP":{"Case":"Some","Fields":["126.119.12.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hdlkk0ziiUFnEPMC19MdEHbFzbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/B/7QvZ+nFMZPIW5w+NGy+US3EmeiaRiHLZ3PJTeUz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:07"]},"IP":{"Case":"Some","Fields":["23.128.248.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::8ce0:42ff:fef0:263c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mailboxorg"]},"Identity":{"Case":"Some","Fields":["hdQIgUixppVMm//8oBDoXgqoj/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ijcYs9KdgH1j//zO4nnZXtl+af5XVOXJBxA0/7dQaM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:37"]},"IP":{"Case":"Some","Fields":["80.241.60.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hdPQw9RpmvqJf+ndknC6rLvj4/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PibSxIlcSknzfB11TPx4eCHDd2lgDWGgx5EZNbjmWiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:39"]},"IP":{"Case":"Some","Fields":["185.112.146.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["hc+ADKu/cDfH8nX+fn+MTy9Cw5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdkmyiWqQEx+61xijYBqzpO3iScz+ysLjSKXfXBcEoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:29"]},"IP":{"Case":"Some","Fields":["23.128.248.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blazeit6969again"]},"Identity":{"Case":"Some","Fields":["hc0yyoM7p2FfVkhg2lkcUy0U+44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1nc3C6rGIZTHeVRW0nw8LFoqH2VBQGHQOV+F1lj0yq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:51"]},"IP":{"Case":"Some","Fields":["205.185.116.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9696]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Euphoria"]},"Identity":{"Case":"Some","Fields":["hcnk//m2nUPMVPzHBtrIVUxslYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wdKQ+pNK8F1hzkhCuzb8WdsCfJMAGQ/hvWjrAx+M76M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:16"]},"IP":{"Case":"Some","Fields":["147.135.65.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipcb"]},"Identity":{"Case":"Some","Fields":["hcKdB2Nr66z8oN9asxszOIJ0UGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WDdjsIsMhdxYoHpCn3OqFCeANJLGYPvo56ZpgOUUenc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:27"]},"IP":{"Case":"Some","Fields":["185.220.102.242"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::242]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wr3ck3d0ni0n01"]},"Identity":{"Case":"Some","Fields":["haiFQz5QsYdPEc7JvphFHiRmCXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QzaUALE7sYCzS7XDGkuY9MpFIDEvbY1iVAu5wm0Kbyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:17"]},"IP":{"Case":"Some","Fields":["178.254.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ufm"]},"Identity":{"Case":"Some","Fields":["haAz7sJOvfFiGM9i5wphbHxn3y0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoM+zxisw58QvIcFvHS0QdJ4ep8kEGqnfCG9VPV43No"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:32"]},"IP":{"Case":"Some","Fields":["193.111.115.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hidiey9ChaeL"]},"Identity":{"Case":"Some","Fields":["hZN49r/8XkT3I+tTUdQ+7nb75ZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OrrWnsxdE5J4CvbldXvLct4Uc4f7Uhux2rlx57ZsoI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:51"]},"IP":{"Case":"Some","Fields":["45.61.186.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer16b"]},"Identity":{"Case":"Some","Fields":["hYehtMzQcA8WTM1Yj3l0PHT+hwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kblc3wZEYJUfQqF1KdyIYTvU/NuuwpIWYfs7xKZQPIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:07"]},"IP":{"Case":"Some","Fields":["95.214.54.108"]},"OnionRouterPort":{"Case":"Some","Fields":[3814]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["egoldman"]},"Identity":{"Case":"Some","Fields":["hXsQWW9JYtaaz8RgATVbh8BYy+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IU2ujjp1dTUeZOxgQKw//aIVIXzhovuUbGOoFd7PMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:52"]},"IP":{"Case":"Some","Fields":["185.125.171.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hasle"]},"Identity":{"Case":"Some","Fields":["hW2rL9ye7Yiie+ImX6a9VInvF44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aygv/pJwgv21DhlAsfhoxEBGnpvwUDQUHiaraKO1duI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:26"]},"IP":{"Case":"Some","Fields":["185.109.64.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei02"]},"Identity":{"Case":"Some","Fields":["hWt++34J0Cop3S/wJLfh7+If6es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIdsiCDJZmzl0VJaiUC+yWjKxw9PmctAenEQswpIZO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:39"]},"IP":{"Case":"Some","Fields":["188.68.46.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:22:175:a452:acff:fefc:987f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AtariFanclub"]},"Identity":{"Case":"Some","Fields":["hWHA+2VSYIc1uiciX/JKQOf9rMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5mTqjn2RVf2K8y9eBNATaJgi6l3SeaZiLiVU7in2XSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:14"]},"IP":{"Case":"Some","Fields":["88.80.20.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc11"]},"Identity":{"Case":"Some","Fields":["hU6ZxyoubsWzs9EWcKgR+sA6OUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AZHvypr9pfR0SEmm+i49lZRb9+UXyBl2RXubrtq9OKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:01"]},"IP":{"Case":"Some","Fields":["185.100.87.253"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv20"]},"Identity":{"Case":"Some","Fields":["hT6DW7RWnQEdJgbmMB+AJE0sII0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["muYaWAN6Z6s2ytp3JniBayDWp5+ecgEEouNrxMw28T0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:22"]},"IP":{"Case":"Some","Fields":["162.248.163.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spinoza"]},"Identity":{"Case":"Some","Fields":["hT4t85l9YhWsu4bVPlYwZplho5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KVPPsJOizaWIrvRlbWxUGim81jNc+GwcYNz6ErMg3zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:52"]},"IP":{"Case":"Some","Fields":["46.166.128.173"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["hRhtTC8OQlfIMAHVjW+rGvk6oic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X84GF/JmDJr1432VKrISAS7xm+w+dKRwRrvj1Jt59Pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:34"]},"IP":{"Case":"Some","Fields":["5.45.106.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza2"]},"Identity":{"Case":"Some","Fields":["hQUpbJYmq4s5G5TE5tThXDJdyO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wou3KPS8aSUZP2PoMDdyOuPGA7UreLzEiUSbL7xQSlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:49"]},"IP":{"Case":"Some","Fields":["140.238.197.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartleby02"]},"Identity":{"Case":"Some","Fields":["hQQefF3wQ7A/LBlCGZjxdRwALkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6Vnq0uLxJOOQb8qvjL1SaakX3XH3XZ8sAFq4fba5hI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:11"]},"IP":{"Case":"Some","Fields":["86.127.236.181"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Normavilla"]},"Identity":{"Case":"Some","Fields":["hQDGapgXvxH7uL3LpzMEUFKN+Jo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4M66wPr7KgZZNiyHrlmNrnjvB59AmR2+tNokUKnorbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:39"]},"IP":{"Case":"Some","Fields":["93.95.231.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taeuschland"]},"Identity":{"Case":"Some","Fields":["hP8FmDx1N+i89v3PbRaIxGtoRHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REP5Bl24y3uJ9n8nF8BV940d/KJ0iADXRIdvzs9QFjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:18"]},"IP":{"Case":"Some","Fields":["95.90.95.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9292]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Admin"]},"Identity":{"Case":"Some","Fields":["hOX50dugdxguxP5oQtiZYv1ZUsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTJmjMo3zqt/yB50BL/j97THmnyVzM0CXkisVud7z90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:51"]},"IP":{"Case":"Some","Fields":["5.255.103.25"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:96a5::1]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Erik"]},"Identity":{"Case":"Some","Fields":["hN7Ew+sFwGvhW/Drql+w1QpmJFk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Oo++ke9XZU20Q18B2Xx2DzlCJ2kqvGUxR/n2q7mT0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:19"]},"IP":{"Case":"Some","Fields":["181.191.0.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.2-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kleptoman"]},"Identity":{"Case":"Some","Fields":["hNfqQEaCbjErMvgipZJlESGJDq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["53kFe7HY8VNBFaQix+/GCXMQIIJURDfpE4yPdokEgC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:54"]},"IP":{"Case":"Some","Fields":["193.0.213.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute03"]},"Identity":{"Case":"Some","Fields":["hNNhtzaozR6IGND8GGiS6Rq3aIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mNWtN0BeSlxBrJ/5exttmcKJhHexKS1hkidD42gFtQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:06"]},"IP":{"Case":"Some","Fields":["162.247.74.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inland"]},"Identity":{"Case":"Some","Fields":["hL5AONrZmBXXaxERFtrvGq7iUvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0fIUNZldmQ3GmHblaBk92gu74zm6IrU3VRRI2OgN8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["139.162.10.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:92ff:fe7a:6f74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hLS+uQIL+mJfP/rwTmk+J86IaSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PukDtSz2n3sodVzOrHStOnhPDhPLZIaa5GMoF+2nXIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:19"]},"IP":{"Case":"Some","Fields":["132.145.79.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flyingcubetech"]},"Identity":{"Case":"Some","Fields":["hKlHNmUlC3UrYhiSg05x7svWEP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AXfxAHCZ3kt1QCSTgPjj/ppGypj6OKJX7zhtRYX6AqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:36"]},"IP":{"Case":"Some","Fields":["54.38.33.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3200::c3e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomRelay"]},"Identity":{"Case":"Some","Fields":["hKjkHQOGWCInL2R9N4r/Sscxh/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TJqWsQ8qDCwQM32pEMCT3caieGBAKpbgvahMvJ2AtT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:07"]},"IP":{"Case":"Some","Fields":["46.182.18.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["hJjfGhI9mmFCl7UHR5HB0DOkHeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6KnPje0y6ANl5t3xJK6IIm0gkVY+o36bMnY7e7mSLEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:01"]},"IP":{"Case":"Some","Fields":["185.241.208.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionsHaveLayers"]},"Identity":{"Case":"Some","Fields":["hJYmoqPdE2ToxRQj1vMhOjrhb/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t4D5nA+3tEeUJoRNJ9kJ8cR/cXf3ZVf5U8v0VOfp6NQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:20"]},"IP":{"Case":"Some","Fields":["104.192.3.74"]},"OnionRouterPort":{"Case":"Some","Fields":[62309]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KnowWhere02"]},"Identity":{"Case":"Some","Fields":["hJAzXE5W3uDxjJkymCfdsOvhlPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jl7Wm0yllRbAcLUUrBVvATSHXTlZy3zwdyy8va1urMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:12"]},"IP":{"Case":"Some","Fields":["84.166.214.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber26"]},"Identity":{"Case":"Some","Fields":["hI+4epm7mCtEFipAUgE6LNQuBu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T6MFmYu5v3n02kMH45rC+ueCxMTATaWbfyhsUTZWHGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:57"]},"IP":{"Case":"Some","Fields":["185.220.101.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::13]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buchikuchi"]},"Identity":{"Case":"Some","Fields":["hI7ZeqF709BsklSar2jK1fviO/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EX1SQotvOtSurSvJGXFtV1yr1zCp150LjXG5sRzs7qU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:15"]},"IP":{"Case":"Some","Fields":["2.206.247.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raccoontornode"]},"Identity":{"Case":"Some","Fields":["hIoAqZThtiBB3s8LlASgnJ73L3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3FMSM475kkJV98R2f5y1coClBWGcdbLT0v89IASr/zQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:42"]},"IP":{"Case":"Some","Fields":["199.195.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sashaRP4"]},"Identity":{"Case":"Some","Fields":["hIKHltNaObLQkdp4nHl7k2tyHUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z90HN62sq9DoO/QkbWE5sf/eS0qgxAJyYjX4AdHY834"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:22"]},"IP":{"Case":"Some","Fields":["5.147.146.222"]},"OnionRouterPort":{"Case":"Some","Fields":[2443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor26"]},"Identity":{"Case":"Some","Fields":["hHsfhQNE14dkkaVIkvkEk05OuF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zDETqArJGIsajjJLjQR6/ehKYktZ1HN6bcg6eE1ZSQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:10"]},"IP":{"Case":"Some","Fields":["86.59.21.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:858:2:2:aabb:0:563b:1526]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hHMDu9iMldGDBrDzvaaEL9Xe0KI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0paF0PsTFrTXAqWGYsPn0wbD1mwhEY3ByYCr76crgvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:07"]},"IP":{"Case":"Some","Fields":["45.55.47.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk5b"]},"Identity":{"Case":"Some","Fields":["hGs+qvDAf/cvx5rrsR+jrcWPJA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eDCdJupanaqqZ8klds7qBOfCVz9+gmi5wNVGk0FyZmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:24"]},"IP":{"Case":"Some","Fields":["62.141.48.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xinchaovit"]},"Identity":{"Case":"Some","Fields":["hGQGJSIaTpYwmv4IELOGRrxg9Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M+e3dAJMPHFuJlHKsThhBE7xUa+m6YlT4l8j1Scjo0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:16"]},"IP":{"Case":"Some","Fields":["125.212.241.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oef"]},"Identity":{"Case":"Some","Fields":["hFu6VRp6Zkat7UhvPB4SQq3Z/vc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eNON+pVS+3o2esUvVHdbobtA3BMwImiDnoTrHN2QGjY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:39"]},"IP":{"Case":"Some","Fields":["86.149.30.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c7:daa1:8f01:d852:9629:5535:dfc9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudy"]},"Identity":{"Case":"Some","Fields":["hFghzY494CPANIO460Kg9aVYLdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U8JI9xLeU7An8pLAPHD22LClYp91QugjjIyIG0xA7Xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:35:28"]},"IP":{"Case":"Some","Fields":["167.71.141.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:e0::472:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Smeerboel"]},"Identity":{"Case":"Some","Fields":["hErpytBDJelV4r4VIVY7ef5wlLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2/M4lm9tzysoH+Mf+ZdgavREHz6lUixN2CqfA1C4JC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:40"]},"IP":{"Case":"Some","Fields":["192.87.28.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:3028:192:87:28:82]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tigris"]},"Identity":{"Case":"Some","Fields":["hEnIZCqcmiwrIhi7Ju4mIzaQ5QE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HaIBcEmaN45+Un/+UMiTNmofcpRZo9AdvJXG8WJDK2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:34"]},"IP":{"Case":"Some","Fields":["162.251.116.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickenlegs2"]},"Identity":{"Case":"Some","Fields":["hEG+pAV+c+LJ34LeYQeMiLaQdgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qCKBOY7T58+VpJ5nBqqXo96/LqzL/t4rsQ8vNbY8AA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:27"]},"IP":{"Case":"Some","Fields":["5.180.183.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DidItLateButNow42"]},"Identity":{"Case":"Some","Fields":["hDxPd02iZT2tuluEejPMZGmV9qE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VLxfD9hQrXHyyoXk8ejKrrzelzoKeQhDtqB4oADrwQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:17"]},"IP":{"Case":"Some","Fields":["62.72.82.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Precious"]},"Identity":{"Case":"Some","Fields":["hCsfbEueQfyQWd9nXF31vanw/HM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z79qLgmnKNbHlb4Nld8PbuUNYzL+U0cZhBE7HDasBiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:28"]},"IP":{"Case":"Some","Fields":["95.215.45.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::ed92:293d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dani"]},"Identity":{"Case":"Some","Fields":["hCjALM0c8BcVyR8YGbpQfBp5qTE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uPl3Ys552F+IRoNSIJ00b9/kiaS+r9AK1IE0+34fw8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:25"]},"IP":{"Case":"Some","Fields":["160.119.249.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kurnel"]},"Identity":{"Case":"Some","Fields":["hCJ9UUPsjEdX91KmtK2zzgyWrwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ls7xp/pNDqCDMZIPlOWE8YYowfyE5cCiAayOZBIbb9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:47"]},"IP":{"Case":"Some","Fields":["102.22.35.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8rijgto8"]},"Identity":{"Case":"Some","Fields":["hATouKq5ggj677Fye2NxM62cb68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPldrO1mMaA4bDqtUoXl7uovitYecXb7/1ERBHoVUOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:51"]},"IP":{"Case":"Some","Fields":["66.206.0.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["hAS8nFFMssb6UERS/P2N43MF95c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvxqTtJriprwxd+y2ReZjLeeceMBPs6DsktrNakNKMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:49"]},"IP":{"Case":"Some","Fields":["208.67.104.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zhuknode45"]},"Identity":{"Case":"Some","Fields":["g/dbxXiTI8qftVgTp6zWEpHjESM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL/ibHnaIJ6kKBRKxBWBtte7UwK7U1HIeT6Mbv/6kMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:13"]},"IP":{"Case":"Some","Fields":["77.232.149.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FaulsRelay01"]},"Identity":{"Case":"Some","Fields":["g/WcKwh0sve0XDeryFAPeDNG2TM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uqxn0lpwCA/+Zkr44yW+CvR13CdB1y2mpTuuLTDlmXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:10:23"]},"IP":{"Case":"Some","Fields":["63.225.114.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KarlHessenberg"]},"Identity":{"Case":"Some","Fields":["g8UHhFKK04I8t+ffSzS5KkLMdjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EX+77pRuqzP/iN6hrmvtKkRAQQTBa391nyGTSIrFlj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:13"]},"IP":{"Case":"Some","Fields":["195.37.209.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strssadag"]},"Identity":{"Case":"Some","Fields":["g8Iin/Tk4LrSAptsajUNS03wPJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lnGvJKgAQGwE0H//fxjgvuhtXZPnhE66/SQxZy8DmHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:20"]},"IP":{"Case":"Some","Fields":["45.32.154.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubcygne"]},"Identity":{"Case":"Some","Fields":["g7+ycPAZObN7DYmvKOKjL4iPoCs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fp2IB1SFAX1uKUmVZEb9QmvMLy4dzcLNihtgBbGbxuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:46"]},"IP":{"Case":"Some","Fields":["185.155.96.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f69m01"]},"Identity":{"Case":"Some","Fields":["g7y7+3F8EN7L4nWvpRLko5Bt9B0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b2orl2fcMclaVGgTAJS2vXB1y/fkA/cV08lSFtmAEtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:33"]},"IP":{"Case":"Some","Fields":["108.175.7.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:19f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woodland"]},"Identity":{"Case":"Some","Fields":["g7XblApxm2f1v2Fv7snY1Pdk0as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0E1EeSOCgS2KZ6rKPRUjmALkvX3MHtXzlZuw3zUsGV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:29"]},"IP":{"Case":"Some","Fields":["216.210.69.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["focaltohr"]},"Identity":{"Case":"Some","Fields":["g67b20vjrQ7ZGFC/GlIbhDB3dZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8y6TIgzuYDweCQQ+KSdmT3sPvXHNEDcQPNsCYq5s4Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:53"]},"IP":{"Case":"Some","Fields":["198.251.68.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masx"]},"Identity":{"Case":"Some","Fields":["g5iJvvLhWFIlMD0zLqRHH+MpthI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lZlCyXitjQ/EHXy+EkDV0qJbqjSb9rk71Hl+QTvGj5I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:43"]},"IP":{"Case":"Some","Fields":["51.15.237.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:630::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber50"]},"Identity":{"Case":"Some","Fields":["g5LPfdPosXaF3emLC8TnOR9yckY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0N0rd4VHnuMo+QV1QhbtQnSP/TrijAyFif1d0OcY9B4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:27"]},"IP":{"Case":"Some","Fields":["185.220.101.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::25]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NyymiSipuli1"]},"Identity":{"Case":"Some","Fields":["g4qxGvk4VuAwK44re4pHdn4yGOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zh5c1jX4X7ko9H53vJuNvmeMleZdiNEGwCfPD9FyIRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:55"]},"IP":{"Case":"Some","Fields":["185.218.193.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:8f02:2015:1::109]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE63"]},"Identity":{"Case":"Some","Fields":["g3nDJlOVjBZanCEDUMEECyavnns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyBC1bt35rWEzkgW09nIBQZL7uLGlsnQMwreHXAeZcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:18"]},"IP":{"Case":"Some","Fields":["37.221.66.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:104]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedArea51"]},"Identity":{"Case":"Some","Fields":["g3k75qJvUKlGNtBEYZIMV6g1HAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PmUdqGLxHGdRqKsofW4lhtsNmu4cIlVOAcWH8PLF9pY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:45"]},"IP":{"Case":"Some","Fields":["23.154.177.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay24at5443"]},"Identity":{"Case":"Some","Fields":["g3QF4y1w4bKc4f/oXAU+QcvyZ6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZhFBB4d/iTIrfwzwqNIOELbxMssAJTUdE+1rgPx4h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:04"]},"IP":{"Case":"Some","Fields":["140.78.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["McCormickRecipes"]},"Identity":{"Case":"Some","Fields":["g3D8TBkNACD6WU2CMt/jS1swrwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUe2vSZ8FxXXugd1FG1qYwmO5ZMbxjaoyvE7ymujIHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:25"]},"IP":{"Case":"Some","Fields":["38.97.116.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["g1/+ZC76O7eTZmPSNloV0xn7YiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZFt02FI5MqwcUeuaCGwy3Su3ta4Azf+SRvJr3WIjbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:18"]},"IP":{"Case":"Some","Fields":["109.87.25.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["g1i92pyaaAtOOigJ5cJPWzYk1cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["or5wJySXJZAYIUmTGHCCV8Ael5H45/wKK/ExfHUhc+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:38"]},"IP":{"Case":"Some","Fields":["51.91.73.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["gz1/GvtGcI+TUbOOU5Gn9r1/tjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fM3f3/p4Gk+xPLf/Sf6EvocTuKa5O5zGR/f9xzbWhuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:57"]},"IP":{"Case":"Some","Fields":["69.237.207.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["GentooLibre"]},"Identity":{"Case":"Some","Fields":["gzzt0ozbfzouw+xzmGSfPIlP4a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWRflPq+TZvrhuS6Q9QP4dxMo0G1gPkSO+vmjPdZ26M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:45"]},"IP":{"Case":"Some","Fields":["60.241.48.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:6e::8888]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["derailleur"]},"Identity":{"Case":"Some","Fields":["gzDIxSpNxWITU2nTF9hoh7v+FoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWegAGOVWLt1WpPZRVdyE9h/DY8XxjIqKp0CXKRjZxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:40"]},"IP":{"Case":"Some","Fields":["131.153.152.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gzAks8SJOvEGY0g/KMUebKa9ZQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JPpXDCNREKUMW6QBP4Uz7cbvowYDPmfJ+FLMHRrysa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:02"]},"IP":{"Case":"Some","Fields":["185.220.101.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["df"]},"Identity":{"Case":"Some","Fields":["gyRmhTBkw5oVygJyWZvtIY7wBD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZkGNvXwUaxfyqDAhQ8mjp8wrWZxKEDfFQXEfLCSmuOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:57"]},"IP":{"Case":"Some","Fields":["195.211.143.223"]},"OnionRouterPort":{"Case":"Some","Fields":[65065]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay39at8443"]},"Identity":{"Case":"Some","Fields":["gx9zG6RpU5777vYJ1N7gOCu4/Gg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyOY/zyKzPNqcHtSSZW3iznqMfEbn7EdIFDFwsgxe0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:44"]},"IP":{"Case":"Some","Fields":["140.78.100.39"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay06V6Rocks"]},"Identity":{"Case":"Some","Fields":["gx8fO27PhvH1wJAq1H+oyZI2sNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L1xz4jy/tdS9RmIzq5Aq3EKZs0rov23hMpiz0kYyKjY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:54"]},"IP":{"Case":"Some","Fields":["188.68.49.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d51a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tuferi"]},"Identity":{"Case":"Some","Fields":["gvCtSCez/8RtVekFIxp6Ryz3XTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ihX9HeADG0gYnhcEcp8q5RiWTK0I5SgNfBRRKS2DXr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:51"]},"IP":{"Case":"Some","Fields":["50.7.14.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["guwDvexGXpus3RGawLc5atbcByA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m7jGo6KRj3n7Xs9/feXm/siR7uSEwof8/SRD/NWWvjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:55"]},"IP":{"Case":"Some","Fields":["193.122.15.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot63"]},"Identity":{"Case":"Some","Fields":["gtqWeKC65gCHqmij4dbmosQkbW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vCtYgHYoSc2nSMcUFPRR4tYrEufKKZy6OpSIBm/Wwb4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:36"]},"IP":{"Case":"Some","Fields":["212.83.43.94"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darklab1"]},"Identity":{"Case":"Some","Fields":["gtGi26vmI9QgEisdWZZSdwB7lEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GSng5KzWfzqAyDIffQqgJkmT0TvAoDrqZWNck2noFkg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:05"]},"IP":{"Case":"Some","Fields":["89.58.27.84"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["gs5C0EtbphbmEeR1iGHIZLKs/Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2thSThMS3bF1Uf+HgKvm/89lg1z3pGZp1S+jB2jFjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:28"]},"IP":{"Case":"Some","Fields":["37.120.185.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fairner"]},"Identity":{"Case":"Some","Fields":["gsmONIjp8ZsXrboCeEwBECD99Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EJoxc8nTfGdRW+mhbtr6Zbj1sEbIQvolLbrNSGMIghM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:03"]},"IP":{"Case":"Some","Fields":["79.112.101.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2f0e:531f:8a01::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skydiver"]},"Identity":{"Case":"Some","Fields":["grlGY/FBl4+yJSoWan/P8Lo6FwE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y0Uf8afDHXgz7Kfxs/8OwfO7vd8wT7bgKK1sYFvsB+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:24"]},"IP":{"Case":"Some","Fields":["93.104.209.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipfa"]},"Identity":{"Case":"Some","Fields":["gqzCxU+o5T+xqcmQzQzQAHcynf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ayCpNq5UriaKtBM30sjm7VSdmCIKuBtAU341SE0X39E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:31"]},"IP":{"Case":"Some","Fields":["185.220.102.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::245]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DaGamerNode"]},"Identity":{"Case":"Some","Fields":["gqtkclpWK1F9h7UVETu3knRiZ4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KoSpWjEBVDpYXDXFvtTsVKIMhBKU8c9DjkJS8zRJMII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:03"]},"IP":{"Case":"Some","Fields":["5.255.97.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:69e5::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Nyarlathotep"]},"Identity":{"Case":"Some","Fields":["gqstDkn/vqbooUoSSNRbLOw+SL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qAvmWZu7ePO/KmhsbA9kIHYyAxu14lgv9yccS+/HnsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:55"]},"IP":{"Case":"Some","Fields":["82.197.187.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:529a:fb1::221]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["gqgLdahUNQc0weaMELt7H3gal3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ndubXAZvFl7Jt14STALWD47dqAyn8ZM0k4P9Dkvn7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:05"]},"IP":{"Case":"Some","Fields":["23.128.248.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::44]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["operator"]},"Identity":{"Case":"Some","Fields":["gqS9CTO1nlpvlL6gGo71WrwDFyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["so7K3B+1EOl7Ko1klw5FWLsM5ys7LGCoOXqVjoYH4vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:10"]},"IP":{"Case":"Some","Fields":["148.251.237.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:80ed::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gp7Br4W4mkzZ4Qxycf7/GaZMSnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oDqkbaYFHLYwNZgvwigL9nU4Q9EuZ7s0vernL3rYn78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:39"]},"IP":{"Case":"Some","Fields":["185.220.101.43"]},"OnionRouterPort":{"Case":"Some","Fields":[10043]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::43]:10043"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip4b"]},"Identity":{"Case":"Some","Fields":["gofa3EFbPmZ8YX7vtufWVMesDEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/MCrQIsVOTdmDhVj3dK5J1YUQwg2UqgpbL8gc3aoxWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:58"]},"IP":{"Case":"Some","Fields":["185.220.102.251"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::251]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Turik"]},"Identity":{"Case":"Some","Fields":["goTIpF0i8pgcS2KHx/tDZxFufM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4r2rF5aRdEBEVrRCoYZYxh3AA8chr2LiMYURBkJib0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:09"]},"IP":{"Case":"Some","Fields":["176.9.38.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:161:353a::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssp"]},"Identity":{"Case":"Some","Fields":["gn4Nh2sWpbzAgQTQmhxBIeaI8a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t63Y3atfP2zRyxifWcWi9OgmZpvfIrFm7aExxfKAWxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:33"]},"IP":{"Case":"Some","Fields":["103.54.56.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2"]},"Identity":{"Case":"Some","Fields":["gnWkNcjXg+7INaZKPqKt+MPEUx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IX2WhjwRPIN9dpGAFcS+SIm6tNvzOaCIaKu0Pw9plao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:36"]},"IP":{"Case":"Some","Fields":["45.151.125.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["glrV0zsqXEG8ZHBH1rY6xBxMUCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rf9smfmi60DnVd7jMM8StwyNqdMgkIEAnmpmI6b2Cac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:46"]},"IP":{"Case":"Some","Fields":["78.94.253.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Monaco"]},"Identity":{"Case":"Some","Fields":["gk/drc6biTOC4oulTFJAbb43QMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xyKDA1CrVtodHVcICktFfinbedM+/o+GtiVP1QoI7c4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:24"]},"IP":{"Case":"Some","Fields":["23.88.75.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit13"]},"Identity":{"Case":"Some","Fields":["gkhixAqBMn3oB/RKfbmCemK4a1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQRSIzSlQVuAZw6aA71mNlrdRuksP9EV1zZPyQFSOAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:29"]},"IP":{"Case":"Some","Fields":["37.252.255.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1c:311::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowfall"]},"Identity":{"Case":"Some","Fields":["gjqoHid/NmUFVFUiztwvUpzk3D8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PsSQAtb1bDI++nj0VLAdEERIDRshIkfZbQThzvXWZo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:36"]},"IP":{"Case":"Some","Fields":["192.160.102.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::4]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["meehIrmTor"]},"Identity":{"Case":"Some","Fields":["gjfPw1ZM2voKSwz8WyLoTVs3WGs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IZnF/CE0EIQD7TzhWai0TwdB9LtAxSnbAflaUqWWTX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:04"]},"IP":{"Case":"Some","Fields":["82.181.230.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["giXFSIKWQ5T4UT45f+r2uAd3wRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EjnbOFFY40Rly9NkoL2w5ntq7xsLQ59WM8WG8V+KSts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:19"]},"IP":{"Case":"Some","Fields":["194.26.192.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toray"]},"Identity":{"Case":"Some","Fields":["ghf3agQYbRHgQBgC82bZ0VBNCLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDYXRjFrxXw89+9P6OMKBz2iV1BPMKCt5Z0C410QNN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:12"]},"IP":{"Case":"Some","Fields":["94.224.67.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:181f:0:4063:99b9:9381:14de:a4c1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute17"]},"Identity":{"Case":"Some","Fields":["ge37yPb1x88K3V+OCLyPq6BAicY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbA0DV01HkjmN7G6qaw3XNyce01dMbW8B69DaBAksd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:35"]},"IP":{"Case":"Some","Fields":["185.220.103.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrimQuark"]},"Identity":{"Case":"Some","Fields":["geBMyhM1FfpXT6mMCEmjkox69pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/iCMRj7uHOH7hNGE9z/zoLF1HKEwlOX7soDKqqkBfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:08"]},"IP":{"Case":"Some","Fields":["193.32.127.231"]},"OnionRouterPort":{"Case":"Some","Fields":[55990]},"DirectoryPort":{"Case":"Some","Fields":[56033]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["gd6qjEY3xEXoinNJlLp0QQLJAGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LeeA/i4pmze8Y5LhkFUTFzwB9nRJfuNqzoppllJWtxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:46"]},"IP":{"Case":"Some","Fields":["167.86.100.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JebacPiS"]},"Identity":{"Case":"Some","Fields":["gd3Za1hV8odHeijNr+wLDPMeAxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3y705AXABL1Qj8JFeAcLw4r7RUWqZZy9rlf6l2O2ibE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:02"]},"IP":{"Case":"Some","Fields":["188.112.42.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["risk7"]},"Identity":{"Case":"Some","Fields":["gd1T8DhMLpWbg1cJPxuF7dVB6EQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fg6EpSVYtDuorCIdNlZWYkT8hAKYpEvTe6cdE2n1Ew4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:32"]},"IP":{"Case":"Some","Fields":["167.179.99.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal3"]},"Identity":{"Case":"Some","Fields":["gcuxJgFAZFRQ2PWZyKm90on/hTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wAPosk/jFMbstPawOG+p5X1BIQkGGW0q0jjQkWQ3G+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:42"]},"IP":{"Case":"Some","Fields":["46.148.21.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["InMemoryOfJohnKerr"]},"Identity":{"Case":"Some","Fields":["gcVdQDqCv258P729QdECtwiJANk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n/ZgCd4Czf/X6PyZN6cZ3qzQkw9yuuA/XwbZSEa6X78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:56"]},"IP":{"Case":"Some","Fields":["162.255.84.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:16::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gbiUOeNO4QpPlMLBcjX5zmfENFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3/12LQodkNhnmANONdFvFnX3F9zhAkOhufxCHcrmamw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:07"]},"IP":{"Case":"Some","Fields":["134.195.196.69"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fec3:0:1::69]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClankC"]},"Identity":{"Case":"Some","Fields":["gbgiLBB8wKq1dbg7+Y0kktsfYJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U290YKPLp74wBahwiaUIADKStyoqWy4mlPrM+7jHXG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:05"]},"IP":{"Case":"Some","Fields":["194.34.132.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv104"]},"Identity":{"Case":"Some","Fields":["gbddU0+Rv7fFerZ9oQvO9iJYKug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5fwzSA2oTCx+qj9J8S2Ldb2E5j7VDT4/ZiSXn2yjZYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:32"]},"IP":{"Case":"Some","Fields":["192.42.116.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartor"]},"Identity":{"Case":"Some","Fields":["gbdWq8++jUcZwGEPjiTTTcMJBbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cgwikggBPyRFjP8lRm8Z174ALIoJXbJcA8kRky8SYx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:16"]},"IP":{"Case":"Some","Fields":["188.61.80.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1210:7262:df00:9818:fed2:2a90:f143]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blastoise"]},"Identity":{"Case":"Some","Fields":["ga4jDU4pFcxWLA0gLRmz8POFFEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEtKedbvZNsVcr9YqW/YXMRIc733toSRbaAU3Gmcocs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:53"]},"IP":{"Case":"Some","Fields":["23.111.189.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chutney"]},"Identity":{"Case":"Some","Fields":["gaWXZicolNJ/6DdcT4OmukU2ce8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ci38rayd5ACPYwZs7mOX4kHTw4OEEp8wXx/UiA8kmBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:02"]},"IP":{"Case":"Some","Fields":["37.252.190.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["evudalhessempos"]},"Identity":{"Case":"Some","Fields":["gaHXd8Aj67He6ef6hzVim6j3SXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00utG+CwISjNXO0iVCI9mT3NM/vkjPGJCfqN48Fk5QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:31"]},"IP":{"Case":"Some","Fields":["185.225.69.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gZ1bwxFy3C11SIsarGYBPrFeRZs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PTvrD3btfzPG28eXhbiUvpm1M951Be5hUhZmsc0wpLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:54"]},"IP":{"Case":"Some","Fields":["203.158.42.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Helios1"]},"Identity":{"Case":"Some","Fields":["gY6IUIrJmPGBjqBMypA0xaYodrU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VWm7RPW31X5xv/d4hnOfpL+escZF8RhI2R1OsYyIsUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:51"]},"IP":{"Case":"Some","Fields":["179.108.106.120"]},"OnionRouterPort":{"Case":"Some","Fields":[6513]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gYhIEHoRPTRCw3rRPyIOhXs5FKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwRbB/GlpKdFzlKnLLhPbUhNE+1mAtPV4bfPgMNIV78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:22"]},"IP":{"Case":"Some","Fields":["93.31.13.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Txakoli"]},"Identity":{"Case":"Some","Fields":["gYdXSbQEvvmoDPufmO2uHZMu0zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPyA1ToGfpNddEeBe3xt9zQfSVX1Gj6EA5erGc0H+kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:32"]},"IP":{"Case":"Some","Fields":["82.130.170.204"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["decorationWorld"]},"Identity":{"Case":"Some","Fields":["gYcIicIqkpuXILWLMmoRxrFjDAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8HB8L+LddKm6HV4yhf5nXrlfU6oz6dI3o4XQsXdvhd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:11"]},"IP":{"Case":"Some","Fields":["86.6.6.44"]},"OnionRouterPort":{"Case":"Some","Fields":[4443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gWufnDg9Dqffk5BA1Nn/VjUQ9/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6P79ekw4F9YPl0iSXagmzy5T/Tqho0VMx5tN8LnTjAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:52"]},"IP":{"Case":"Some","Fields":["185.220.101.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thealbum"]},"Identity":{"Case":"Some","Fields":["gVrpJHVfHmOYbkNKkqiOofdaYKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJqR80MkQXzUwuAAjnH+qE3kheAjKdvjPvzS2mXeAzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:33"]},"IP":{"Case":"Some","Fields":["179.43.128.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who8USicebeer42"]},"Identity":{"Case":"Some","Fields":["gUXMP2dPLlOPP+ZBmPx7t/vZS1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PmPJS8zzv7LWV0v8kqk0HaerMRP0vFkoMyB98MdLO4E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:08"]},"IP":{"Case":"Some","Fields":["69.197.160.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8272]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1181"]},"Identity":{"Case":"Some","Fields":["gTLdLvptBIy50FDHhFP1yNjMr2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/XGcv8FPdMjbYITrMpseRuuqptImoSmTcz2BL3WIxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:41"]},"IP":{"Case":"Some","Fields":["185.220.101.181"]},"OnionRouterPort":{"Case":"Some","Fields":[11181]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::181]:11181"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["capeaturtraffic"]},"Identity":{"Case":"Some","Fields":["gS+JpK0FlGR9fhpYpQhwUE48TEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XoSqfSZ5PxMqY+GbGPIrA2MqV/090dvz4MZVn+cTse4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:45"]},"IP":{"Case":"Some","Fields":["45.33.47.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:fe3e:4be9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["gSzQh/NZTXcdkbO/rEfs+ccsIvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iteEawFa6/wJJiuvbISsvoYH/bDX5UnVlzR1UUtj3ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:08"]},"IP":{"Case":"Some","Fields":["91.211.91.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R8B7"]},"Identity":{"Case":"Some","Fields":["gQbT1D+9ktXY7rw+UDGyaPzdxCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1v2Zo0C7TGRTzEwihE74Gkz7bJ/vYOo0NjDOXvROeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:05"]},"IP":{"Case":"Some","Fields":["185.82.126.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::4c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["gPWXonFUOL3Zhub3rIZG7qTkkvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzggeSykQTllmhIomQXi6foURmRfmk1j4IrNmmWjgsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:04"]},"IP":{"Case":"Some","Fields":["185.35.200.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["gPMi7QmV8nzSa1qd57gE+S6KypQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiBO0Y85GFLMxGhO6n+8DV6x0O/u4wMpfNJhxDkXm6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:23"]},"IP":{"Case":"Some","Fields":["88.208.225.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:19a::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deadbabecafe"]},"Identity":{"Case":"Some","Fields":["gOI/JNW+AZXSgnVX0mDRZ23qVFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fx139YWw5RE5MmRCnvn+SbxQ72WXmOMqHB7mKGcR3bk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:02"]},"IP":{"Case":"Some","Fields":["74.82.47.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1:908::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CounterIntelligence"]},"Identity":{"Case":"Some","Fields":["gN5Bv+uNCtE4wURqYYVnPUby1BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RBlby3uLiWyD7eJWMYknYIGraS2fgzwAAH13yUw4u98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:59"]},"IP":{"Case":"Some","Fields":["173.73.115.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Oxygen"]},"Identity":{"Case":"Some","Fields":["gMXWf+E+Ol7b9N1C44Frdj1dQ0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ez4aosLfY98U/sICK/drE0S2WfWGQLpxxzzY6lmLeBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:18"]},"IP":{"Case":"Some","Fields":["94.130.129.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:3ad0:1::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["pad1"]},"Identity":{"Case":"Some","Fields":["gLY3XFXdrz0yzYwgMajEbRwpLhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0HQduJhPFZvb/yag46pHY6syscB7sRA2K0fdVNk0AUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:37"]},"IP":{"Case":"Some","Fields":["5.161.79.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:a55a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["basicincomenow"]},"Identity":{"Case":"Some","Fields":["gK76eRE4JjNnNKzPq3XxmCA7HLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuRXW9EtGM6MnHZBqZmn2DhsAXQceNNszcVGppgHuAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["159.89.236.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::17e8:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["robzombie"]},"Identity":{"Case":"Some","Fields":["gKxdKgIG2WfANO70emw1iGNCyWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YRrJqpXXDLSDcpzEtErE71fP7wMpDaDRwBcRwWYD31c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:44"]},"IP":{"Case":"Some","Fields":["104.244.73.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet2"]},"Identity":{"Case":"Some","Fields":["gKr41ZVqQ8GXEEzvJVDNQtFlxvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SMyjTTD9TwEG+63/poLFauJeDcwtpENKL+5Xj9RL2MI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:21"]},"IP":{"Case":"Some","Fields":["193.11.114.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::100]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay02V6Rocks"]},"Identity":{"Case":"Some","Fields":["gKDfV9hRC4k6EVAIauCa3LPsHRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YDIhcLpNoWJsNrFHJaqimdL822wQy0Gz+LOzs3UQb8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:17"]},"IP":{"Case":"Some","Fields":["5.45.99.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:616::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gJz+qkEqzSuAdQIJk5dF8CM0u1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["booOaJB4nMcEogqrcGcnK3/4uwKXIeIW5CahU3X9+FI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:18"]},"IP":{"Case":"Some","Fields":["91.121.219.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gJUPE7e/PYkmfbAghTFbPANX8Ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+wmGB+mZtMG9rS22ulSUwTx8IqHCIPgAgoHPr66TsOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:53"]},"IP":{"Case":"Some","Fields":["145.239.1.189"]},"OnionRouterPort":{"Case":"Some","Fields":[36122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:5bd::]:36122"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gH+/JzucQcfRbx/ohkbvvGYOOLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4YDn1cYqx9RRLCGMyII8pfsJFF+pOo11/yirpEvqUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:52"]},"IP":{"Case":"Some","Fields":["91.199.137.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a11:3b80::225:90ff:fef3:c4e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["localPenpal1"]},"Identity":{"Case":"Some","Fields":["gHwfDWpykmjB+OKscsjq4tnZOW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fyFnsf/0rbIPqAhazQQTx9S6n3opxwL80/nMm6ugoh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:06"]},"IP":{"Case":"Some","Fields":["212.112.156.88"]},"OnionRouterPort":{"Case":"Some","Fields":[6247]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kc"]},"Identity":{"Case":"Some","Fields":["gG8aK8ER1ijul2GdvqACUUuGCqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Az9R2RgoRP5O1DncCA9GxVQePQ8q2bfgsEyrk1vXu0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:42"]},"IP":{"Case":"Some","Fields":["51.158.191.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1828:382::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rohtidanoshis"]},"Identity":{"Case":"Some","Fields":["gFYIDugitcoaj/9StyQqgsXkL7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Prwy+ynjn8HzbHDxoECCXY/yJHOhJv/ldtycZrE6e/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:07"]},"IP":{"Case":"Some","Fields":["185.246.128.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MidManMoved"]},"Identity":{"Case":"Some","Fields":["gFT9K6RFTh2iTQMkzZkYQ12lk08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NBkcOQPGiaP8RhBmVwAotQcDCtHMtGi0afZwy2RJXjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:21"]},"IP":{"Case":"Some","Fields":["51.38.148.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["gE8q0/+uiPUOWpw5BXrcM21w9s8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VHp20Fb6SIIfgJyAxMlQClqKlRlsQLHsjndcs5xL8Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:35"]},"IP":{"Case":"Some","Fields":["74.208.212.42"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:24a::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Damnation"]},"Identity":{"Case":"Some","Fields":["gD+5i6D+FwnAh+kTjMYJbyIIPKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMhft5/en8hnKbEDzBEXlqFVxSEH1TJwpeA6NtKnkss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:26"]},"IP":{"Case":"Some","Fields":["123.255.62.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andreios4Democracy"]},"Identity":{"Case":"Some","Fields":["gCgIEuRciX8OBkc65vOgSH6yuts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEAYDfwLDOS4VUMLo9S/zeR6CSrjqKZn2hGWKIkSHTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:57"]},"IP":{"Case":"Some","Fields":["5.45.109.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:2664:b831:94ff:fee9:5650]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MikeDiaIsGone"]},"Identity":{"Case":"Some","Fields":["gCKKtcvQrH6RHmlbzu2GBFKP680"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6+xZooE3YdM4mBBrM8Bk2ZHHr8B3q/yVhg7WbE4+PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:53"]},"IP":{"Case":"Some","Fields":["80.147.218.187"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:a:b5a:6100:11:32ff:fe2b:36b4]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["montrose"]},"Identity":{"Case":"Some","Fields":["gB74CEWEjmhcRTSiQI0y1UQxh98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5WgU8VE4CI/mcSzliwZc+H/hciD1mD9LjN9as7bt1Bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:00"]},"IP":{"Case":"Some","Fields":["160.119.249.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARCANEMINDED4"]},"Identity":{"Case":"Some","Fields":["gBGEdaCvKjsAGMxsAUeIK3jpEoo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KMD0cegkMgpszV4T0tVvnyPT6Ad4vjdpnLlBei2VG10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:12"]},"IP":{"Case":"Some","Fields":["5.61.59.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leysen"]},"Identity":{"Case":"Some","Fields":["f/UyggyGQoADH0EKhf/kA/XwuFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RELkTLCloI+O5jfWnVuDErMW/8rAtxgiNEAb6gnogAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:35"]},"IP":{"Case":"Some","Fields":["45.125.166.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["G00dT0Kn0w"]},"Identity":{"Case":"Some","Fields":["f/Ci8EszxNIzcj6unGiAp2YKYXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLYD4tXxwhtG5yds7Amr9IXa4G5lKCrsdf/DPYckplY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:21"]},"IP":{"Case":"Some","Fields":["92.117.101.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE59"]},"Identity":{"Case":"Some","Fields":["f+iKHHQBPVQCPMQqAle37exnH1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cLvpvJBnSLxa8Ila9KBdSYDexbIO6F0feCJPRd76l4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:45"]},"IP":{"Case":"Some","Fields":["170.231.236.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobo"]},"Identity":{"Case":"Some","Fields":["f8aFM4WsEM1MdL/O0ltsMPRAo8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BlFLDxi56FsV5q0Wzav3ui+ovBljor7y6vM0o6KWozE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:32"]},"IP":{"Case":"Some","Fields":["202.61.236.66"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex20"]},"Identity":{"Case":"Some","Fields":["f6jn5E8TkqTkD/w7ads7AAkbf9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2z+uQ0sMRvgJsdsHEEj8CQZT3hOSA9bDM0Mu5+G4D7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:07"]},"IP":{"Case":"Some","Fields":["199.249.230.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::110]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["f6I64Ca5HFWJFqvC2pZRycIXEf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jhj8u7x4XN/I8kKo7T+5pIafbJK4mXMG7P+jWbxWdss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:43"]},"IP":{"Case":"Some","Fields":["23.128.248.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA05"]},"Identity":{"Case":"Some","Fields":["f4RFGDacGlcvMhH0DRbwTXbxKHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lkTTB0gBTzqv/lrczzOwND1hkkI3urHsaIJ1cCeYHxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:10"]},"IP":{"Case":"Some","Fields":["2.56.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["afooagain"]},"Identity":{"Case":"Some","Fields":["f4JEmrvmZ0oHkBtwMwlLIxHid98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTqkP/sBIeIAYRevEhejPDd0bzvkfuEOoB2ATocjlMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:35"]},"IP":{"Case":"Some","Fields":["157.90.118.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:6bbf::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kinor"]},"Identity":{"Case":"Some","Fields":["f31KNLL78/d1cCLm+Hzrp2dNHrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s5u3/spmxQs8lRezEE7Ez5ptaeBljrhpnhnWNsa8W0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:03"]},"IP":{"Case":"Some","Fields":["185.16.60.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:a:71:dead:beef:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hmmmmmmm"]},"Identity":{"Case":"Some","Fields":["f3RdIS/SgXVrElSzuEouil/YmpQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["18nY6QHXX4o3C0pmDSLSw++H5aQrKBx0IR75vTk7jsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:01"]},"IP":{"Case":"Some","Fields":["116.202.179.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Khopesh"]},"Identity":{"Case":"Some","Fields":["f0tjeR88O2nfjqcXSu4IdSAFKvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yWePi9lpVWsbg3lV+wm/F8W6K1c1QJ9pqv6+xpk+7tI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:32"]},"IP":{"Case":"Some","Fields":["5.255.99.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:19c9::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer85"]},"Identity":{"Case":"Some","Fields":["f0ci4zLQD0TlFb/VobGg9MaEi/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIA4i80sWIcfq07kI4rl7laeMfVIUj8O9Yg3h19qUFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:15"]},"IP":{"Case":"Some","Fields":["95.214.54.101"]},"OnionRouterPort":{"Case":"Some","Fields":[8185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sveahosting"]},"Identity":{"Case":"Some","Fields":["fz5ZpOoFbz3wCVaNDP+A+FD16ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cpWniyi+3Llotiz9sbHilriYW7zJBor7N/VZljk8x0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:12"]},"IP":{"Case":"Some","Fields":["193.239.232.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishTatraSheepdog"]},"Identity":{"Case":"Some","Fields":["fz0g5yok7S69kqqcQwuAW6OJ0Cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["23DhoOYDkmj8SaMnE2WCYclHnBGoZYXC5vsQZofnTIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:33"]},"IP":{"Case":"Some","Fields":["31.6.70.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::321e:67c4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OceanGhost"]},"Identity":{"Case":"Some","Fields":["fzAvCqzHaDV2ivBohJygfRzDjF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKqLv2dMquAfLPBuk+vumhoZDYngJMchMI7luh7Tfsk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:39"]},"IP":{"Case":"Some","Fields":["185.177.127.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams03"]},"Identity":{"Case":"Some","Fields":["fyfj4sXarCHJDwg9lb1xeN1LBB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DIXPGD7cz93HtTXaHPPBlZeWaoC7xY7wg0Sa/tkhye0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:37"]},"IP":{"Case":"Some","Fields":["45.151.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::b]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["P43ALVTOR01"]},"Identity":{"Case":"Some","Fields":["fxZ6FYSoaAmkYMf8IN+Qlym+C5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y05GbiiLg+UZRxenMU1my9i7n+V732fWPo5rB/PhbzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:22"]},"IP":{"Case":"Some","Fields":["119.18.35.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:580a:935a:100:250:56ff:febb:35eb]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalibrator"]},"Identity":{"Case":"Some","Fields":["fxXdIX43Pl7o+LwXFxyXf/1vxQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lz/TgN7na/7E3OCR3zaO8FNhgyYRmSiWhvPp1olOm6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:10"]},"IP":{"Case":"Some","Fields":["77.246.159.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:230:4:ce::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["fxVeSZyq3wpqEYFbifjW5/nPyyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P/9fMEyEBGKaPGDIck1yfSez2/RVk5h9TZwpaJ0CFSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:44"]},"IP":{"Case":"Some","Fields":["93.95.227.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captain"]},"Identity":{"Case":"Some","Fields":["fwTgica+2D4E+yrhlr3jS4CAlPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["miJBN6oVjCJGMI8hFCBlZgqwWJ3+ERwgZoEvSOvAU/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:57"]},"IP":{"Case":"Some","Fields":["142.11.201.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oniondaoftw"]},"Identity":{"Case":"Some","Fields":["fv1GyNhykC0K5LHGSP4xhzcwV2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RM3d00gX8yTHG/7nYNJ20lf3HsnGZ/vJs9Hf9EVExTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:56"]},"IP":{"Case":"Some","Fields":["5.255.98.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:5acd::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MaiaAlston"]},"Identity":{"Case":"Some","Fields":["fvbpmFZCEfuGiB/qJieqkRm9mEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ylUjNslWITK6WC3+CJxhv0zBQPC2PIoIFsnVVjCJNCU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:18"]},"IP":{"Case":"Some","Fields":["31.13.195.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LemmiNode01"]},"Identity":{"Case":"Some","Fields":["fvBDtPSrpiwvO/XiAXxOxgfoCyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpX71cvQJgTWtmVtTFpUi5aQij9bF7CSiwwgEm6NS54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:43:12"]},"IP":{"Case":"Some","Fields":["157.90.183.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BEEzar"]},"Identity":{"Case":"Some","Fields":["fu3VTlRX2gCeRskbvx9EPc7gGWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0V2tCD1sCQsFSesbUis5aIGibFPNe9wTcN1vrp73J4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:20"]},"IP":{"Case":"Some","Fields":["144.76.159.218"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:32e6::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notglowing"]},"Identity":{"Case":"Some","Fields":["fuB/JTOatFPl+awcchuz9PaHDbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dfYVcS238Af7YXDin+zItTeqjOUeLYocBgemqvU0xIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:14"]},"IP":{"Case":"Some","Fields":["188.105.205.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["water"]},"Identity":{"Case":"Some","Fields":["ft1zGhuz4ppJSEaWHfmM8ZxFk3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75/gE5xwUTlRZNYgk9APlHnP4OTPtut6gwRVyjS5J3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:42"]},"IP":{"Case":"Some","Fields":["209.182.218.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:bc0:3::2:7838]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorBerryPi01"]},"Identity":{"Case":"Some","Fields":["fsohXVsGEdWmEx92Fse2AAN4G3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NSaheTbYpu1zxxzRPIytQgTNhUGawZzluyhRVBu2JB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:08"]},"IP":{"Case":"Some","Fields":["93.198.213.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["fsoUuhlOmDgTb6raXrjVAjwAshA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JTB9dKYt8tvpZ4NDalSff7T8kEZ86fM8KRUrUojY8wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:51"]},"IP":{"Case":"Some","Fields":["23.128.248.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::62]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hacktheplanet"]},"Identity":{"Case":"Some","Fields":["fscrLXbdciySLBLZOUvT/iixtK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["43PL5oyPYKPbtgIu8LHdqse1rcJLVBHY9akP6akHMo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:35"]},"IP":{"Case":"Some","Fields":["172.104.126.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schildkroete"]},"Identity":{"Case":"Some","Fields":["fsTDENH7KnwJQ7gQlG6jVNZKIWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0zOLd9tMuHiKXu4XBuMxH7kmWfR7Ca7fTGH4Ez9EisE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:46:30"]},"IP":{"Case":"Some","Fields":["109.70.100.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["falared"]},"Identity":{"Case":"Some","Fields":["frkf22jq06E4CNk1bagmBXcyFfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jADqA1ysXcYnkI0klVtHO+0lSbZHr0KckbuwcrpZuyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:02"]},"IP":{"Case":"Some","Fields":["148.251.81.16"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dizum"]},"Identity":{"Case":"Some","Fields":["fqbq1v2DCDxTj0QDi7+gd1h911U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zs8smQzwtFHyVnTHB1SL2yU1Fc0Drqn0bV+CNJ2o0a8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:18"]},"IP":{"Case":"Some","Fields":["45.66.33.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Authority","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rexum"]},"Identity":{"Case":"Some","Fields":["fp6TVbryQ5VIfQ1qhNdd+jYdKvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J9gq2Eg6Om0pWE7DKrBAZ1A2JXN87lWXZ5vn21r55m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:33"]},"IP":{"Case":"Some","Fields":["37.114.62.158"]},"OnionRouterPort":{"Case":"Some","Fields":[3443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:e8c0:2:84::1]:3443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["minotorus"]},"Identity":{"Case":"Some","Fields":["fovEOuderhbX7EZ29KXDVfRUuAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+xkUjqNZ1sEx5DgMw9J/b0rwPq8qoCkc0LuV7fYy2Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:01"]},"IP":{"Case":"Some","Fields":["94.23.194.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carrie"]},"Identity":{"Case":"Some","Fields":["foWXuznUx+3Eq/dTi2UxZVotozQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E6F7igQHlCnWuFZFt0cN+7sZnlT4n5tazvAFRgSusZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:51"]},"IP":{"Case":"Some","Fields":["15.188.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoftPower"]},"Identity":{"Case":"Some","Fields":["fnhpgpvyAHi+ALzqO0KXH1vY1YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZoI7rhoY/A3TQY1CBMpRLwQ5+YAvFjQ91PQiusfBnFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:05"]},"IP":{"Case":"Some","Fields":["206.63.229.144"]},"OnionRouterPort":{"Case":"Some","Fields":[4031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:ce3f:e590:1:1::15]:4031"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex48"]},"Identity":{"Case":"Some","Fields":["fm6ab9243HyS8M/MPL52wp8GF5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["maJU0DXFKjJh7lZZr5k9406l1FyJUCVFAlgCxnrVdXU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:48"]},"IP":{"Case":"Some","Fields":["199.249.230.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e647]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jl2238"]},"Identity":{"Case":"Some","Fields":["fmy3KXeKWjvzMzP8JwYU6nmJW8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZP9O/bAkHAauivN9c4WzyqhXP29GJqOwdteLK7J0DP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:28"]},"IP":{"Case":"Some","Fields":["92.200.204.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayForPeople"]},"Identity":{"Case":"Some","Fields":["fmxEZQzZTaNpa/yQ9V5zaFX1YyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W4JIzsJAFws1tSE4TsvOS0jhNIUXvMVDMMjXd6RZS70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:35"]},"IP":{"Case":"Some","Fields":["176.114.200.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schnittlauch"]},"Identity":{"Case":"Some","Fields":["flsQxq1jdmfDQZGV+/eOqAnbyKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xPxY6NmT4oKRP3wVQBJUWLp57Tc541iF29+lGWG00Z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:01"]},"IP":{"Case":"Some","Fields":["109.70.100.4"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::4]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARCNetWork"]},"Identity":{"Case":"Some","Fields":["fkfSjwdEO1f4Ji4UEpNrPiWGlKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9NOTtxjwNKN41oCs/q3B5D2fQ3eGmkalrrCUyWpfi3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:55"]},"IP":{"Case":"Some","Fields":["199.241.137.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:6:0:1:18e:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adamhardwinds"]},"Identity":{"Case":"Some","Fields":["fjXORL42wU+99TyikvVfjmjCfl8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OixzLE9vzKYueh8FeyMgujtXj4JquTdB//2T2nU/fEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:36"]},"IP":{"Case":"Some","Fields":["185.140.250.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra54"]},"Identity":{"Case":"Some","Fields":["fjIwuCdQR/dzfgMxTYb+vE9XeLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LwikQm8/2tn6HiTZWuPloOdzNhN8eVlRhSBJz3a8WBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:59"]},"IP":{"Case":"Some","Fields":["205.185.126.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["15T01"]},"Identity":{"Case":"Some","Fields":["fjF8+kTntgE95Lxfg3w3ancXnHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1cELgGwO2lVz5wSYCEU/8sx9M1LktM7B/xTHEZANqsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:37"]},"IP":{"Case":"Some","Fields":["92.60.37.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:33:1c8::13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thoughts"]},"Identity":{"Case":"Some","Fields":["fh5ygRB68DtMLIdEx/gvKSQxExY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NB9F0/HUfNhvfFSAgZytxRJnbkV5iC9+fnybsLjJjzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:23"]},"IP":{"Case":"Some","Fields":["192.211.48.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Renegade"]},"Identity":{"Case":"Some","Fields":["fgK3VlU1oYCESMzcrfJJHFivczs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Cvtr9ii2cVJzyoFxT9kmkbIz5Gsn3kHc+0nqRwWRSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:37"]},"IP":{"Case":"Some","Fields":["90.66.55.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:596:7100:beee:7bff:fe8d:b263]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow008"]},"Identity":{"Case":"Some","Fields":["fgBqRqIizkL4S0oXVpiztZOns7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EqYk2axCnjefaEOMmOO9KPJmilk3nLpgEhN0x9zZ44U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:46"]},"IP":{"Case":"Some","Fields":["185.195.71.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra61"]},"Identity":{"Case":"Some","Fields":["ff3wMU+c9GH1N8MGnoIPmfxa8FU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZgJBRtgmLy9+uwzG3nD2YX2w3pIrmsu15KrDiMIFWM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:07"]},"IP":{"Case":"Some","Fields":["141.136.0.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IAmMrNimbus"]},"Identity":{"Case":"Some","Fields":["ffxRKozYqG8y7cF/vz0Ded5Bk7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9FVRGsee0WmgOaWmWOZIiRf0McVGvERFT8BaYMxxtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:53"]},"IP":{"Case":"Some","Fields":["77.32.108.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gunvald"]},"Identity":{"Case":"Some","Fields":["fe4PjxnUw79kbIBBvFvnqQhd/PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DhisOrLSIMnKjktzP4Oo5wKhnjVoO/+LanaDHygos/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:40"]},"IP":{"Case":"Some","Fields":["185.175.56.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kronos"]},"Identity":{"Case":"Some","Fields":["feHlIZ/+8XzSXBWoVxQQ/eAO+Lo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J0crFwmecmOXTJoyyFptHXg7KVPa1pRBMZaZbcaISSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:53"]},"IP":{"Case":"Some","Fields":["73.55.222.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor3"]},"Identity":{"Case":"Some","Fields":["fc6MnGWwLBKPTQjcnRlbDXIAxHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRAF+oTa6c3TLXCq1VC9X1VrceJnb9wP+ivdaT4zOME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["46.41.134.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange006us"]},"Identity":{"Case":"Some","Fields":["faNGC3wcE9yrO0nt1sN2yoVis8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T9NlK4yrX9RgGAsnhI2HOtBh9kBkZcKjr0SoUxbInRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:55"]},"IP":{"Case":"Some","Fields":["207.244.238.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:2050:8019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cybr"]},"Identity":{"Case":"Some","Fields":["faMdeeUtEmhbvoVE48VX8Xaw/IQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/I7ZBfShLw1KG3A52HTIpn2ojmLMosVt9DIUa63kaCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:22"]},"IP":{"Case":"Some","Fields":["37.221.193.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:3c1::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Posertord"]},"Identity":{"Case":"Some","Fields":["fYsFwA2oBDH3yw4eQKr5+hVVv80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HVTm+Byonetv4W8tntM5bh+3JDbNJdAiwqyrxETz8OU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:42"]},"IP":{"Case":"Some","Fields":["69.126.50.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["nicecupotea"]},"Identity":{"Case":"Some","Fields":["fYODvaEGTlIXyyfo3p7QgSsJl8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d1hCdog6fGMdPndfJp6A51wxHrJANzjmxs/UUwzHjb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:26"]},"IP":{"Case":"Some","Fields":["69.25.116.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:805:3::1754:9efd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fVX4ea3h56xJvNQNf2gpMwgjPxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N092dhS095EQusMY30Dpyn2/CdOXpyAZCX5xWUcyJeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:53"]},"IP":{"Case":"Some","Fields":["51.77.140.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TLPde1"]},"Identity":{"Case":"Some","Fields":["fVSnyL8fHuI2cUCoh0HHxj5vOls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xyI5FiZwhTbkV1XEUzklBNNgDSxAlNBJDaEFxQC4rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:45"]},"IP":{"Case":"Some","Fields":["5.9.99.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:162:31a1::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE65"]},"Identity":{"Case":"Some","Fields":["fUnxAofz6UYzQ4QIOYOukEJsd2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zAOuD2sVoSkiyKjYOS5qXlikABT/ip9a0sZDzhytM6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:47"]},"IP":{"Case":"Some","Fields":["37.221.66.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:106]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Michelangelo"]},"Identity":{"Case":"Some","Fields":["fTP8LQR0k8alFPWkwdcPylTqVd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJXGXuTtm5Euh7AZIPUWiNUhomtWatXKAKEwjOW9NKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:51"]},"IP":{"Case":"Some","Fields":["200.122.181.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["21b"]},"Identity":{"Case":"Some","Fields":["fTHVEY1Hv4bFUKu3nt3oZewxtn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3K5aiA7amsoG2yg205jetD08k7muEt3VHw+RQwnvlQQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:33"]},"IP":{"Case":"Some","Fields":["51.15.74.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fR12GTSp1h16GkPXsHhlqky5x/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O1AzHp9Efo1SgS4MAQfZukSOp5qrx4AB71vbtbVGPkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:34"]},"IP":{"Case":"Some","Fields":["161.97.141.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:3934::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SergalBig2"]},"Identity":{"Case":"Some","Fields":["fRHwopCxuT/ns+K9dKlzUvDqMSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["anRfuSIBFzxtZdsIdmRssI9gTcajjrQWQjNLOke9qOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:38"]},"IP":{"Case":"Some","Fields":["134.215.87.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["none"]},"Identity":{"Case":"Some","Fields":["fQa/LEYN+v8hgWd1WMO8ZEoTmZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLg7TU7HvwnK3DUE2Rse/7srZEKwS85PK9ThnB8l2jM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:38"]},"IP":{"Case":"Some","Fields":["144.21.35.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6801:841d:34be:e33a:cf15]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrnado0339"]},"Identity":{"Case":"Some","Fields":["fOlUztuYJ8NHgqPxcu4B29xoOsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cWLz9UymSGN+o4Kz9EG4czCHiqssFiIewRFAV/2al9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:52"]},"IP":{"Case":"Some","Fields":["172.104.79.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:feb1:d06b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor8"]},"Identity":{"Case":"Some","Fields":["fNFgwxy66pXsfqyFRrAbyrXFwOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["trlb5vKnhl039qTeBjBsvqmHcrJ8pyw8oFXwoUy2wlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:34"]},"IP":{"Case":"Some","Fields":["46.41.134.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0135"]},"Identity":{"Case":"Some","Fields":["fMaGKJdS/aAm6LIiRu3gl50bewQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3hHxUyuHvnNz6O4yLRwDVNnbHB7/0l95iJK3HH6Hgi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:09"]},"IP":{"Case":"Some","Fields":["185.220.101.135"]},"OnionRouterPort":{"Case":"Some","Fields":[10135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::135]:10135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taomeba"]},"Identity":{"Case":"Some","Fields":["fL1nGP+YnuYTdEjJ/xpoUzrbHLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J8h0PgMLo9gQTO7kaMkFMLgNo3Be4YysWcLmJn/qGrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:46"]},"IP":{"Case":"Some","Fields":["135.148.53.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rigel2IT"]},"Identity":{"Case":"Some","Fields":["fLwdR1TvOmLBXLSMCAKcmQCeLs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k56lIT4KPniGW1AQFj4AsKxCv5mbaLVaVXQkYBQ5uwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:06"]},"IP":{"Case":"Some","Fields":["193.183.98.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:dcc0:dead:b2e0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Brubaker9"]},"Identity":{"Case":"Some","Fields":["fKK9imEd15mqpOpVWKvv0w/b2c8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NiJg3PXgwUEHqBbTK5RbB4RwfteKBisky3J4tsTx0E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:46"]},"IP":{"Case":"Some","Fields":["79.209.23.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fJttUcLhKfZKfSpvopplDEuUgS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kd+TXtXV+G8eXeRxw4m04TuIJ0zDnMzsOTceOAOAPAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:37"]},"IP":{"Case":"Some","Fields":["167.235.15.221"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OptimusPrime"]},"Identity":{"Case":"Some","Fields":["fJUFiqbnhGG4pr044qnu07pNTYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/tLPNdga29+8JhgnXT+AMTl9rG+5BPws3j6Qd98vFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:36"]},"IP":{"Case":"Some","Fields":["203.122.194.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["singaporemickey"]},"Identity":{"Case":"Some","Fields":["fJSz9VE3sCbokD1hLiNOrVkqFP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qNZX6bEDmK069ulc052f5yPne017rddKPF8vswhyyU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:15"]},"IP":{"Case":"Some","Fields":["139.162.11.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams06"]},"Identity":{"Case":"Some","Fields":["fI7uL8nuhTNiK+7KQZ27/qMTAP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uyxEeHuEXtW8nXV+qaqx8ywvV9u9TKb5PCUaxlTcQYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:36"]},"IP":{"Case":"Some","Fields":["45.151.167.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::c]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toomanynodesDE01"]},"Identity":{"Case":"Some","Fields":["fIbHPbF84gzSZTfJ4+wP16VeXG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7XK3BI9kT6roCsgYXo5ODmZKv+HXQGWFb6Y8Qv+r+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:54"]},"IP":{"Case":"Some","Fields":["79.143.181.221"]},"OnionRouterPort":{"Case":"Some","Fields":[2010]},"DirectoryPort":{"Case":"Some","Fields":[2015]},"Address":{"Case":"Some","Fields":["[2a02:c205:2021:2617:2000::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopfenspace0"]},"Identity":{"Case":"Some","Fields":["fIDm6RrxLaJ8FfbqCZ5zSZ1hPBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zG9capzCXPe/2SeRH401Imr/773yWDAElLd0jAuha0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:22"]},"IP":{"Case":"Some","Fields":["45.136.29.221"]},"OnionRouterPort":{"Case":"Some","Fields":[31337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BibbidiBobbidiBoo"]},"Identity":{"Case":"Some","Fields":["fHMNVL9EZ3nNeZbrK67BTmG1EZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jn53n+GpwST3bwBLRJHqx58sh0gjFfMXTyWX5xcHqYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:00"]},"IP":{"Case":"Some","Fields":["46.24.108.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["fG4mCIoJe/5FZUAgxSoqVUrR/BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VGMZcaB6/svFhPt9uB1dyUqE2MHBOm4dN8AAoqu2QHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:23"]},"IP":{"Case":"Some","Fields":["95.214.52.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG3"]},"Identity":{"Case":"Some","Fields":["fFa6IXWDlHCsqrcuBF3WggdktzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LDyINcXpgBe7hG6iff6hG1qCzm7PA+6ueAWifAs8irU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:52"]},"IP":{"Case":"Some","Fields":["193.189.100.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::196]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchHolo"]},"Identity":{"Case":"Some","Fields":["fDczdbaTlWSmZxC+9BRKJuibFI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qk1HZ7pq4y8njTXwdKfbKYlSktqXBNNd5cYvv24Zieo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:01"]},"IP":{"Case":"Some","Fields":["77.3.104.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0156"]},"Identity":{"Case":"Some","Fields":["fDS7lGJN0RlMrQCDrLklGuvjv4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVtlVh708aRpXskfksUJIeofO7CkGo7zRLmv36XwQtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:26"]},"IP":{"Case":"Some","Fields":["185.220.101.156"]},"OnionRouterPort":{"Case":"Some","Fields":[10156]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::156]:10156"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unitytwo"]},"Identity":{"Case":"Some","Fields":["fDOqLsEOalsEw3z++muIP/4WVqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TbU63oyPccAvcG0Jr1EoacnO23eqUjiO7YX4AoGqqSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:55"]},"IP":{"Case":"Some","Fields":["78.141.196.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7401:8b15:5400:4ff:fe14:a2d7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["fC/JgCXYrmlwyAL9CqsUxADuqlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KsmBZ9bqofPrp7aEw7bdE5xVh0TtsisB5mgD1+Ujie4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:56"]},"IP":{"Case":"Some","Fields":["185.220.101.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::196]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leenuts"]},"Identity":{"Case":"Some","Fields":["fCsaH7Ul0y7uUJPI6QrpFufuyrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gTm3G9MLYECLYX/k1uYQBgQRYJHuMtYTVLSPl3S3M58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:07"]},"IP":{"Case":"Some","Fields":["185.17.178.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZKP1984"]},"Identity":{"Case":"Some","Fields":["fCLomrYg533xtKM3h6XsPyq0qNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IK8SOeJ7gR5HRyVUdsoWtm7f/JZv0Owpy1sv//oUk4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:42"]},"IP":{"Case":"Some","Fields":["190.2.145.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrannyWeatherwax"]},"Identity":{"Case":"Some","Fields":["fB7hHS3Y4kyR3RYSJHHF5cTUEBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jgn6zVqCEv8buAGYXNElwkyFPpRrA+Ch03kPFjKoGo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:57"]},"IP":{"Case":"Some","Fields":["103.214.6.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["fBoVF8J6DGgynYTZQ3LgrKk5CwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bd9y+ZvsE84ljxfdlUTnr/Bs8O8fzgq4fJxI7UlRlec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:57"]},"IP":{"Case":"Some","Fields":["185.220.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC0"]},"Identity":{"Case":"Some","Fields":["fAqk47c+QH6fX+sZEvi+JtiqEk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gU0QZ5u3+nnEPmL/l49bsVpLewLC99sU8fWa+M9fxfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:16"]},"IP":{"Case":"Some","Fields":["204.85.191.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["e/3KjVhBWRt3Eh2sXRGqIypKgtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FHTFQQKJcvIH+fk8wA8FlGS/SB94PDH+gJmIl7K2ykE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:13"]},"IP":{"Case":"Some","Fields":["88.208.56.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dannenberg"]},"Identity":{"Case":"Some","Fields":["e+aD5l1IFBMhxe2S8HXFU2SscSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W3T9DfpQd6O/DENRJ4iwW4qYpDOmzXYqLV8A2zwxp8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:22"]},"IP":{"Case":"Some","Fields":["193.23.244.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:678:558:1000::244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Authority","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["e9QWZSAQt8QiAr5A90mkFwA+zSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJiRvXRNbtK1u3b2iRSXuqaDx/OIJlRDqAzsC6ueqoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:21"]},"IP":{"Case":"Some","Fields":["188.68.49.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aXXXa"]},"Identity":{"Case":"Some","Fields":["e5ufM2VMe1TvV4U/it3IYVVCbrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OOcm3sBulh1brDdz/nR3rDADt1ECC8DBSU/DgNcJxDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:50"]},"IP":{"Case":"Some","Fields":["37.187.2.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:24c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra34"]},"Identity":{"Case":"Some","Fields":["e5cv34QCasUuQUYfBd2746B1mK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o4z6jhWJnsO3txhk6p6pfKR8XmYNz3D5alzKqdsTz9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:57"]},"IP":{"Case":"Some","Fields":["213.164.204.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["e5YI07ZcEAYchUaDndh4ra2RqD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDD6di609anItQyoxF0fr+MV1REr1+RlGSCehDMgeWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:16"]},"IP":{"Case":"Some","Fields":["185.183.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aisaka69"]},"Identity":{"Case":"Some","Fields":["e3sWtuCVE6RgBUz9CL8L25nEKW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TQ9QYZbtpIy4PKoKZoo/vs0bL6MthfRVZgPxTiSyvXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:44"]},"IP":{"Case":"Some","Fields":["98.121.76.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MangoChutney"]},"Identity":{"Case":"Some","Fields":["e3evilYfcEnTJPgi4U2A+1LmUa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IIe4Ujfz2OHwbSQW56NgG7V2AcuJajF+YH2UczuAwUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:28"]},"IP":{"Case":"Some","Fields":["91.92.109.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk11c"]},"Identity":{"Case":"Some","Fields":["e3AMDCB+vQAC4A9Jm+JlUZrDwlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSAPbSXwZwbskuSBBT4eK5mbr0SH8WLtbRtHWK84IJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:08"]},"IP":{"Case":"Some","Fields":["51.15.75.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1329::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoftKitty"]},"Identity":{"Case":"Some","Fields":["e2sqqeMZoYg3dKQY5vUeZB5LQ0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DuSRTK3WxaL6MmQwwGKJ+lbnmWiI5jMMHtXg7CIlW10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:10"]},"IP":{"Case":"Some","Fields":["176.58.89.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxen"]},"Identity":{"Case":"Some","Fields":["e2ejrSOVU2/RXLl1iKC8GgFawmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yxia1b+njb54FHbs1c/zb+ziuMzJB5Ih9gQZfXSd2+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:17"]},"IP":{"Case":"Some","Fields":["205.185.124.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allahuakbar"]},"Identity":{"Case":"Some","Fields":["e2doXmSCfHN3UOFPLo/V9EQv9Ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0QGeataHL9uLgR4k3ILsEyMpxDenu0dtCOa4jMb7JV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:02"]},"IP":{"Case":"Some","Fields":["84.174.87.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBigBadRelay"]},"Identity":{"Case":"Some","Fields":["e1tUEoeIvxVevT1YL3r9ZeFiRXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bczVe1B+SFIxPNTbwc84h+rm/h4V0Xqob9reKyCvc4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:57"]},"IP":{"Case":"Some","Fields":["198.98.58.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iscariote"]},"Identity":{"Case":"Some","Fields":["e1PaKIEyWKIDNcjomFwF0NCJtEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIpOqCBcI8wCQjRvQvz3djStgAQIhQVLRTRE+rbrEug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:55"]},"IP":{"Case":"Some","Fields":["51.15.142.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:1237::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.3-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["e1HFk1X8nA/Jox6JwQldY/udNLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00ZOTAuZVOjhaXlCzJp/oko4yJv8UkmCqzUhQbIzTW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:41"]},"IP":{"Case":"Some","Fields":["23.128.248.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::49]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu"]},"Identity":{"Case":"Some","Fields":["e0byBEnW8lFQ4YlCi2Lh47pYSKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iFF4JNcnoWiiktQSxityaAlk60gfK7ReQGJVrs79Yns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:54"]},"IP":{"Case":"Some","Fields":["65.108.10.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6a:4642::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["e0W/aTyIIPsevdYXEQuWcvhSpgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDlqf9lTPeTd62ijhD8jNEtOQNDMriTPPm9EQs2DUn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:57"]},"IP":{"Case":"Some","Fields":["80.85.153.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeBogatov"]},"Identity":{"Case":"Some","Fields":["ezXbkrpyugu/1Rs1sRpJZ3V+Z7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UvAYp8+0uYLb2TS5wjExpiE/iIUY3rtWFbgsb/DBIqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:13"]},"IP":{"Case":"Some","Fields":["128.31.0.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra69"]},"Identity":{"Case":"Some","Fields":["ezU1dgmHRkyLVobyA7br52fAhz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fueroa+yLDA2+Ws/xFvtgxIg8qj4OzP4tAb6TGtc/kY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:38"]},"IP":{"Case":"Some","Fields":["141.95.18.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torified"]},"Identity":{"Case":"Some","Fields":["eyiXHUopmVeE4wZrnYfkLpxoXzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+lK7dQbs7vKe7soMt3I/eJvFhffPbKHHN6KPEYLMwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:28"]},"IP":{"Case":"Some","Fields":["46.127.96.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["eyT6ZzR76uxpI9iE6s8cEjGA3jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOgFSIGxjyufPt7kzp+HHcpaSEwmUPJsgUAqbwjVFyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:05"]},"IP":{"Case":"Some","Fields":["212.192.246.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["godtfred"]},"Identity":{"Case":"Some","Fields":["exkEY+czzCkqpAENGU0XmM2OuaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QKTuOPv0/rIqSkaN6+49MNV1DXybA3oZmOgPxZnsAVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:24"]},"IP":{"Case":"Some","Fields":["104.131.72.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::231b:c001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PSILOBYTE"]},"Identity":{"Case":"Some","Fields":["exXvjTxWzJDqk9Ks5SG+93/vllU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJgFQKsPAx8nZ50laIOAN4oj6KQQ/6h3OfbSgGXfUQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:01"]},"IP":{"Case":"Some","Fields":["192.234.196.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ichundes"]},"Identity":{"Case":"Some","Fields":["exS0IJx1wLjDX1P/ysrhc7f8Cyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2sS5OoTrDr1IaKHUlCrC5PZH9NaNdJG7ei0fg6zshrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:12"]},"IP":{"Case":"Some","Fields":["180.183.159.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:ec1b::40]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber31"]},"Identity":{"Case":"Some","Fields":["ewrifGQMFSY944gua3O/fa0sKdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SmlrQUbyKYRjG1fvt0cBSsSlROcUMn9+w0fpNl89awc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:30"]},"IP":{"Case":"Some","Fields":["185.220.101.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::16]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["halfsister"]},"Identity":{"Case":"Some","Fields":["ewdoTHAdQ8gDm94CbbpcHqFBg2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DzKVREo/oBzDXZ8/YAPnIX0DJVUuOHMWthuRZQtmx0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:58"]},"IP":{"Case":"Some","Fields":["174.4.231.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex82"]},"Identity":{"Case":"Some","Fields":["ewRs6lAJL5qy9xLYT1Lo+gDYOHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIJompffF1LyYvPSDF/ATImeVXYJ8zicITHwxIRyExE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:58"]},"IP":{"Case":"Some","Fields":["199.249.230.171"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::171]:82"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torly4relay"]},"Identity":{"Case":"Some","Fields":["ev5zQmPJR63YjQlMbjy3GjQGJyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vnTgf8r/Je5lP2duypQuvRMcmMSCFF/Y879uQSHPjlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:52"]},"IP":{"Case":"Some","Fields":["62.113.211.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vogerlsalat"]},"Identity":{"Case":"Some","Fields":["evwVcmkTC882vMrA8tqgaF5w1A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLuS0roaHC0RJM4JrCkehYwqidjHG7RmMmHrtXompEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:48"]},"IP":{"Case":"Some","Fields":["109.70.100.2"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["evD8H1LyiHTt+Y+2BXhfs8XzJT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ilnhu+zIgxz1NG4szN3ViPjZKLpgPZ40HLUv0tuw9qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:04"]},"IP":{"Case":"Some","Fields":["5.79.109.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MerryEgg"]},"Identity":{"Case":"Some","Fields":["et6j+czObje0GKLFy+xXHuLhAVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNyC7TRj8q6tXV/gkzcVcmy0Xl8aCBfOt0WIMNbHW88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:14"]},"IP":{"Case":"Some","Fields":["94.130.238.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["silverflow"]},"Identity":{"Case":"Some","Fields":["etz0U8sOpFrZ/LfeLSsosH29g18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYVjN+76KZwDTZnSfoCsj2WiKD0g7LgDcxnKi7dhDVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:53"]},"IP":{"Case":"Some","Fields":["102.118.74.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daTORrelay"]},"Identity":{"Case":"Some","Fields":["es5xUMMcJ3w/Zc7d/4UTt14h/wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QJKVZ/vX26q5ZOTdquo1QFRFDKBpPqcDps/Qqi7kHw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:33"]},"IP":{"Case":"Some","Fields":["71.114.106.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[9010]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torex"]},"Identity":{"Case":"Some","Fields":["essqhVoOXtr2gJeuJ3ETuO2poLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofK5btE59mETcwWTIpFFBiWIcc9KaHPJKDlbJTdsJ2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:05"]},"IP":{"Case":"Some","Fields":["203.221.238.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThepoggersrelayV3"]},"Identity":{"Case":"Some","Fields":["esfylyPAV2a0u+LHhicE5uPxdWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s/LqUbjrJrYqeaIsG10UOkXJH1ZFnGELiD4XFXF0UEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:30"]},"IP":{"Case":"Some","Fields":["51.81.87.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["esGwupacHJzsoYw+YAk3gWj6FWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XfEEFu4POPgB8whinliwlQ8dp6G1OSHElc2U7KBCgYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:00"]},"IP":{"Case":"Some","Fields":["153.121.44.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["er7R9mZNEVPxQCg407Mq9vLKvhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F8+ZXY5qDhVpRqlzL7yO4ZsafOC2/3xER37odwbf4pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10039]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::39]:10039"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivRelayDE"]},"Identity":{"Case":"Some","Fields":["er7RukLQiRQMHwDwL4pX3gzaWp8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ph/k/Msxt43tiV75ykvx1dCPDLkC451/4LbRK0a/j7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:23"]},"IP":{"Case":"Some","Fields":["160.20.145.209"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:367:c1f2::254]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CGretski"]},"Identity":{"Case":"Some","Fields":["erp3aklsex0MQPJaylny6mDD1Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tyABAmQg7rTYJAbBmIcJ+AI6OIFIXTqyXoXhWhaAMy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:59"]},"IP":{"Case":"Some","Fields":["82.68.49.227"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8010:677e:f9d0:215:5dff:fe01:210c]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49"]},"PortPolicy":null,"Flags":["BadExit","Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["openredirect"]},"Identity":{"Case":"Some","Fields":["eq7h/YCiTDd/5ip6FrXYBC2gCc8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1v/Ht9VGz7PLC7h9JClIhOzNdFKy1l8heUi6lNyNXNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:49"]},"IP":{"Case":"Some","Fields":["46.38.254.223"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eichhoernchen"]},"Identity":{"Case":"Some","Fields":["eqf8gOPg0y6SnSzAlOrPUpyVJkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JQ8m7HXo9ChJu3x5Erk2SzjGEzSdj6pKvf9Me6ujY88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:51"]},"IP":{"Case":"Some","Fields":["109.70.100.65"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::65]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TulipBarooExit"]},"Identity":{"Case":"Some","Fields":["eqAXuiiX7J67W18IhjJUNj4VrXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ilTjU7nU1yI5g9XaacSsIStr3Bxlzr9e5z5bF6a34xY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:02"]},"IP":{"Case":"Some","Fields":["104.192.1.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["w3ctag"]},"Identity":{"Case":"Some","Fields":["enZJbCV5QcfQdplSXTX5bYaOkvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2JUeCum5tVUi79q1GLngGrIrzUoAS1m31pKs2ChiP+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:44"]},"IP":{"Case":"Some","Fields":["45.79.95.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProtectHumanRights"]},"Identity":{"Case":"Some","Fields":["em+V2TTQG1UVJDULPOruNrdpdAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l/KvsLhbY+I11y5nwPJRD3jKp7Aa8drlIqfRyaY2uLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:25"]},"IP":{"Case":"Some","Fields":["213.164.206.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishNode"]},"Identity":{"Case":"Some","Fields":["el+Zqh6Im1Vez7WvB0DO8Rj/Z1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eQMeBq4f7XMnfdFMX6bxx4E1h1buVvgYKAJiou7YQWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:57"]},"IP":{"Case":"Some","Fields":["46.242.128.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jesus4you"]},"Identity":{"Case":"Some","Fields":["elnSWOR8kcoznB31AefxF1Ye4sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uudtB58OE9GY8mHnwS+/13pbDojLKXV5Ua2B8RQSBug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:54"]},"IP":{"Case":"Some","Fields":["5.252.23.106"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["assassin"]},"Identity":{"Case":"Some","Fields":["elY/LfQLDpqzauV+/5kyP4A/JCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VmLpIFy+Zg14didB3mRjriRMl90iBjQW6dwM98Gy5wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:56"]},"IP":{"Case":"Some","Fields":["5.183.170.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tekk"]},"Identity":{"Case":"Some","Fields":["ek3rs5ELi8iwbE9MQYkF2BFbcUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Apohu43wCmVW29n3JhxSIlZ2QoqxVC7zTX/FYyZJrr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:19"]},"IP":{"Case":"Some","Fields":["93.123.12.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ej5TTAM+ODa9WvIjtkKFPFAqszo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wPsk9efEGQq8pqscQ2/h9fEa/II9Ek+FFIAZMyfr99c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:35"]},"IP":{"Case":"Some","Fields":["5.39.69.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex39"]},"Identity":{"Case":"Some","Fields":["ej3SgOpM1N0W74xnuT2b3hhNGoE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NfFx0FmeT+UyRz+sWq4t0T8LwP493wI7B1+v5hM8kHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:32"]},"IP":{"Case":"Some","Fields":["199.249.230.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e658]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BahnhufPowah2"]},"Identity":{"Case":"Some","Fields":["ejGcQx84yzCgvAxJFENpphGSByU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0b/vLPlUZ831+X2ri3/ub0HxfotqZeg+6/kskb8m8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:28"]},"IP":{"Case":"Some","Fields":["98.128.173.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer07"]},"Identity":{"Case":"Some","Fields":["ei8jOX9LNgZSITNg6lxZdlkR9vU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEJxSlebGJQr0yq9AikmRTcgY8PPiec5A8EQDxrGX0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:18"]},"IP":{"Case":"Some","Fields":["82.165.185.89"]},"OnionRouterPort":{"Case":"Some","Fields":[2092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["ei1E52k01wnL8OCuj+sTK2G2810"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LcQhF8kWwiQ91F3mygxpuQj652PKNh+sE2XWSNHGCPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:01"]},"IP":{"Case":"Some","Fields":["178.254.6.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:35b::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemYS"]},"Identity":{"Case":"Some","Fields":["eiaew3RGlbt15Z9ymSK1kJvKjH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CFovDbTkmgIEmzDuiFyFut5Dm77ECm8ZX9dCt+GsBEE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:09"]},"IP":{"Case":"Some","Fields":["185.82.126.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ongoboo"]},"Identity":{"Case":"Some","Fields":["eiW4r1aSzrcyP4uanZe59p6mmm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QIM/c+q5Ez90Utc2z6XK0/GPl36M0p0zQVRn0OyU1CQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:10"]},"IP":{"Case":"Some","Fields":["185.255.96.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jambalaya"]},"Identity":{"Case":"Some","Fields":["eglR8kbW56gZ5LpwL3Y49EN5aaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NYLaAqTeHDvzZZcXVM58Qe5Ys5MZ+tazrExZxPBavTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:03"]},"IP":{"Case":"Some","Fields":["23.105.171.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["eeSKMkLbNRVwD4kl+o5jI/jVHX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dJd3jy2y8iRAdTgKppqDLREp08TWAA0xaxdSuanSvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:20"]},"IP":{"Case":"Some","Fields":["37.191.199.95"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fea6:13cc]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bullfrog"]},"Identity":{"Case":"Some","Fields":["eeGNGBeSw76UqbyzEgwolcl5oa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zN7KFTP7at3cgzqSz7na9ddSIpXjX5NwVH/UAboMBEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:05"]},"IP":{"Case":"Some","Fields":["172.107.202.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mundl"]},"Identity":{"Case":"Some","Fields":["ed604C/QiuGutNhZSqsII3XpBi0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZaA6mqgoG3TWgdXRmBIkMKidJ0qZrmRTJQg8TXvRSQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:34"]},"IP":{"Case":"Some","Fields":["195.230.168.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy65"]},"Identity":{"Case":"Some","Fields":["ednma7L9vyXoRrY12CSP4RlM/SY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYn/+YH1eGK72+lmturm0LY0EDAFXqiuUJUk3BeIYp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:54"]},"IP":{"Case":"Some","Fields":["193.108.118.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:b1b1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gorlock"]},"Identity":{"Case":"Some","Fields":["ecZ05sGskGh8zPZE0kwXrB5TWjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4g9MOB4KhbG5Qy5hkvwvfPlUtIg/jYKZUy3YYOvzEaM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:09"]},"IP":{"Case":"Some","Fields":["81.7.16.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["ecJfISUkVSzrYHGQl5n90IlTI50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lvwj3FitA/h248fSCqkt55Y+gz5eC/81Q0g4BAAtsf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:44"]},"IP":{"Case":"Some","Fields":["51.158.231.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["grocock"]},"Identity":{"Case":"Some","Fields":["ebOfjVPazJpjl1+8NGMB2NDTYDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UuKu+NK9oyBbz08PgXdMbVOEUJQCYVXdmwsMmcU+lHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:31"]},"IP":{"Case":"Some","Fields":["178.32.220.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1d1dchang3th3c0nf1g"]},"Identity":{"Case":"Some","Fields":["ebIHrVGEL6IV2Va5MHs9Ac00c2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4CWrixSbOQbs5si7ixMLbs2S2SDCug90rfrboLOH9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:12"]},"IP":{"Case":"Some","Fields":["37.252.187.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:63c1:c:129::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kaenguru"]},"Identity":{"Case":"Some","Fields":["eazCQX9DAfwC8EFl8x4guFHMevU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xas5X+ZamQirGIrBv8BzJtz7numOmrjOc5OMYLQldZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:22"]},"IP":{"Case":"Some","Fields":["109.70.100.69"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::69]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waeswynn"]},"Identity":{"Case":"Some","Fields":["eZ7PMy3soCxJ3iH/Ai9+Lb7Np3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QkVIEBBRzcYsmWRhwmlLPIACo+usJBqxwCnYVzNYooE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:38"]},"IP":{"Case":"Some","Fields":["94.23.172.32"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["eZ4LKPRVSPVFZop43wTNI0kOxYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ro0TWBnDH3KNIAZlA0wwtDGtdrk/zPFNTaFe/NKr1Nk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:45"]},"IP":{"Case":"Some","Fields":["104.244.72.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:efe6:1313:cafe:dead:beef]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE57"]},"Identity":{"Case":"Some","Fields":["eZgPnceIOmgfvneKdFePeZLgqTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9wFCajLMb1XhynLSneIUFH5/mwMv0vhx+s+25yxT8nA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:43"]},"IP":{"Case":"Some","Fields":["170.231.236.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Poseidon"]},"Identity":{"Case":"Some","Fields":["eZfD/IiwKixv75bF9bXFDdfaLiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GO+kALq4yq5Ufahxq5nQvszfgrvj0lcHAhYztscLe2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:24"]},"IP":{"Case":"Some","Fields":["141.98.136.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:11c0:1200:210:ffff:ffff:8d62:884f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["eZPTJ4v4/XYLMMqGmTrn+IFeQrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SGmUX4gVG0dinB0PcToTGLtQCRqOUv54toXbiyPKkzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:09"]},"IP":{"Case":"Some","Fields":["23.128.248.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["eZGYL601lqxqNxULjpaLjKuZnn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxHC9DWqgmvKUg1RbVW48Vdym2bg/LjkGcYzOMxC0sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:07"]},"IP":{"Case":"Some","Fields":["91.223.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["endpostrump"]},"Identity":{"Case":"Some","Fields":["eXjyljIu75jivRJQ8GKfR0riroI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KB03Tk99goCHbybJx47MxLbUXFZGtcxH4gaJkRKzrJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:07"]},"IP":{"Case":"Some","Fields":["20.110.177.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gopherf20"]},"Identity":{"Case":"Some","Fields":["eWYr38a4iGaQQVM1qVUfZDzAQ+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vYR8zqu4zECzJWmHvrDQs0VhfDoGu4FfKbP1I8iQN0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:01"]},"IP":{"Case":"Some","Fields":["198.199.92.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:1:20::3b:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TripleBfifty"]},"Identity":{"Case":"Some","Fields":["eWIdPzags3dnC0ZHwzcGNc0lIa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f6s8tIBDSKMavJgibXiZ734Re/WntSPNzOQPQNgiMRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:12"]},"IP":{"Case":"Some","Fields":["18.220.20.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay29at5443"]},"Identity":{"Case":"Some","Fields":["eV0WXSrV5//ihXOST5KJXQjgFw0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nTw7Aer9MgoATbntlz1HBnydMqcpfTGoXXOMww+yWbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:05"]},"IP":{"Case":"Some","Fields":["140.78.100.29"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZEN6"]},"Identity":{"Case":"Some","Fields":["eVsuzuWiivqVk3ukHkIadai9q/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K0/T6IIdyIHdK+1nGo1u1TJd9ADo65cavW15ZWxg3FY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:42"]},"IP":{"Case":"Some","Fields":["202.239.38.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vaeden"]},"Identity":{"Case":"Some","Fields":["eTgmszMEaAXcUHokd+2Qu7BUo4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdRN6/jNRlS+3v+OomPvRGTvjBC+0fZX81IVtzzd8Cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:32"]},"IP":{"Case":"Some","Fields":["99.163.122.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de3"]},"Identity":{"Case":"Some","Fields":["eTHNLzoAEkLZSjrXW4lGmUk4MoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLcdt/SsTARzeNWkafN/Y7GU+Kvh9mAWxHT8pBDGvls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:07"]},"IP":{"Case":"Some","Fields":["195.90.201.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toroid"]},"Identity":{"Case":"Some","Fields":["eR94rPWWo+WdQ0bTpG7Znf4KaY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VWTYORzJLs3N9lDUPQlD4CYRh9BYwKxcFGLXJYVn0Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:12"]},"IP":{"Case":"Some","Fields":["5.63.42.231"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["eR3qhg01nTo9L28TuYVusFB+2DU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["06tXz2T1JyYvtFbCSar/KTX1tegwmMJ64ySE+sv00WU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:11"]},"IP":{"Case":"Some","Fields":["185.241.208.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["eRt8BeLG1NmvYRAFYllVaPW2mno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bxd6fgLgKHRbD/8zb/hH0q4CSubPFnBoYYm1pIF+PUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.53.210"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3561]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dockstader"]},"Identity":{"Case":"Some","Fields":["eQ6z5UTnCAn6dg3Hk0afxauvHig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y16l6pHvKSL8Zk5jZK6gvzMDn+8x8Pa6S2BvVrJH078"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:07"]},"IP":{"Case":"Some","Fields":["209.58.180.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["eQ3mDkQrKv4XeOZHiDXoWK+aYcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KIco8lxiZj5b3W+NLwpyAFzWMkyCVl9cDRlLUlV1pTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:48"]},"IP":{"Case":"Some","Fields":["23.128.248.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Soiernspitze"]},"Identity":{"Case":"Some","Fields":["eQ0Cmxr19OVk7oe13uuzcpdKtc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qebBWcFiScpMyAx791+KPRgI349Hj70tp7aaa9IGODE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:55"]},"IP":{"Case":"Some","Fields":["94.140.112.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torac"]},"Identity":{"Case":"Some","Fields":["eQSShGufk3HjvLVttSJ/TiI3M2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GPQxc0vJOc9RUB8PgSF1XyPkDtToymhEcdc0VDW5j4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:50"]},"IP":{"Case":"Some","Fields":["78.94.213.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amaze"]},"Identity":{"Case":"Some","Fields":["ePbMSHNWWPn3wqn9WHu3Ju/NCLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pnLQ91D19DMpymKsQ+RM4VHmFFKa9zlW56QNrTJcQEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:07"]},"IP":{"Case":"Some","Fields":["135.148.53.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishHuntingDog"]},"Identity":{"Case":"Some","Fields":["eOQsXqP8TFYGs6z1Yj3iX+a18Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPDVmnjn8IpKxWkY6T9M28P1rOiSxzPxhIN3z+7BrQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:21"]},"IP":{"Case":"Some","Fields":["46.41.137.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["icknonequire"]},"Identity":{"Case":"Some","Fields":["eNB2OJjenAfqDxFboy6jvWxy5+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvJgutoPPrkeWNU84jSK0PsiS32m8Y+/7GWwKy5LVeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:12"]},"IP":{"Case":"Some","Fields":["185.225.69.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MuteCrown"]},"Identity":{"Case":"Some","Fields":["eMy28TJ8RtbAJmRx185CyoVBoT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XwAj3daRNocFrbZFgKX+dv+7s3rpJ+O6mCPgIrSKFu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:24"]},"IP":{"Case":"Some","Fields":["185.124.240.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cmutornode"]},"Identity":{"Case":"Some","Fields":["eMfCmdtMS9EZoiuHtX1a9fN0Gnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["95x4YQeR2L1lGEypN505NrfIv217qOV3V31iLe3NKDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:36:44"]},"IP":{"Case":"Some","Fields":["204.194.29.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1169"]},"Identity":{"Case":"Some","Fields":["eMMHaLBdoRzXZOIpwje1BHExnP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s+LkKOH/yPizjkXKjxqOxBYuXtU0TvQfTKyuoZ2wDXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:50"]},"IP":{"Case":"Some","Fields":["185.220.101.169"]},"OnionRouterPort":{"Case":"Some","Fields":[11169]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::169]:11169"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchierRedux3"]},"Identity":{"Case":"Some","Fields":["eK6UBhiJKL7FE+2fFcfCiZOQzq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bdkGsSqea7vuCjHM5rsFW2xzv6muLXU2N1fsE5QYx2Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:41"]},"IP":{"Case":"Some","Fields":["205.185.113.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CebolaServer"]},"Identity":{"Case":"Some","Fields":["eKpUobQWkkIxBJndgccu9RmwcPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KcDRWEVpUD+RYzR641mCmKeGsEHXHEkOQlPd7FiTr7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:26"]},"IP":{"Case":"Some","Fields":["92.222.79.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["licinius"]},"Identity":{"Case":"Some","Fields":["eJaoB11R9guVDY5jqsKJlzEGCEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btLabVZVc3YWefkV7TWVwABrghEz7t5MrGRhu/FXfTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:54"]},"IP":{"Case":"Some","Fields":["217.112.131.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mamoru"]},"Identity":{"Case":"Some","Fields":["eJCGplv+U5j8G0QPbD7Nl5eq+UM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["70v5XNQqm4Y3fBDdgV5QWFthWkkQLYXwo2m2PNPFTDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:21"]},"IP":{"Case":"Some","Fields":["138.2.47.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["unRELAY"]},"Identity":{"Case":"Some","Fields":["eH9I7EnfAm26us/M4aOd2MUziUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDnTaV52NKxGvFpOripI5+a0EjuyoLDCwiyrO8oKUvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:34"]},"IP":{"Case":"Some","Fields":["84.155.44.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheGo"]},"Identity":{"Case":"Some","Fields":["eHdo/vn7/i2bjgIUAZp/mWDTkgY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftobCaQrqYDTU1GznkobaTs72SI7Nrk5HK2giTNvB+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:57"]},"IP":{"Case":"Some","Fields":["217.160.251.63"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheVision"]},"Identity":{"Case":"Some","Fields":["eGNuBc7wPl2LsJfX9LjW/RFQ9Us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GaKVaJLuIh1wqPbnueyrLEiBTY6QJ6egzC5xNekUvZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:54"]},"IP":{"Case":"Some","Fields":["178.175.148.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Estevez4893"]},"Identity":{"Case":"Some","Fields":["eFHYGdMaURjFM0dYrE1KZio8LOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SlxFNBHfXkecANws2a3kG5wrv50vExnEuJFxGMVMFN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:57"]},"IP":{"Case":"Some","Fields":["205.185.124.193"]},"OnionRouterPort":{"Case":"Some","Fields":[45582]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1c01:7d33:a5db:c2b9:1092]:45582"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode4"]},"Identity":{"Case":"Some","Fields":["eE4WVEjYULcpLu1wFEKkyMoWDFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g3Kweki9ivS3c/JI44T0Se7pQMzvwHI3pl4c85qWOQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:41"]},"IP":{"Case":"Some","Fields":["46.38.254.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:22a:acab::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mikedideditheconfig"]},"Identity":{"Case":"Some","Fields":["eEMW+3OU/hKbm4HgEd2FbbgPPns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LpaDzq3ZZFlyBKofLuThnnbWy7CRx3thfI0lKrDXYHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:05"]},"IP":{"Case":"Some","Fields":["46.4.233.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:3b59:2::104]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay8428545"]},"Identity":{"Case":"Some","Fields":["eD9rFY4cv/HB0tm1neDFntJb0lY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MGFS989L0ze3FhrEhc7VG6hnXLHlr7ZYOBoMPdkgE9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:59"]},"IP":{"Case":"Some","Fields":["91.41.222.106"]},"OnionRouterPort":{"Case":"Some","Fields":[44357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:cb:8729:db00:e032:29ff:fe63:7503]:44357"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yuuko"]},"Identity":{"Case":"Some","Fields":["eDOxRGwlbfT72p3p/bHMGKkvVns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ztDoKPzbvVnINgyOtxELXzIrdXBUy8pUqCBxcefO2bA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:29"]},"IP":{"Case":"Some","Fields":["172.103.149.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["creeper"]},"Identity":{"Case":"Some","Fields":["eCH9Ht0wPV2IxMOWiEzYoFyUrFg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/TFl7kCjCBEtnMTYF9Y4mJBC82bfpBeomxcdc1Y8k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:59"]},"IP":{"Case":"Some","Fields":["217.210.64.254"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun02"]},"Identity":{"Case":"Some","Fields":["eBk4Sj5m9ly0+pb7HVbqRCdNuUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Yn5Kz14zYQ9i7QAJZKvmhmTGjRtMtoVo+3WKvne8sU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:04"]},"IP":{"Case":"Some","Fields":["94.46.171.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarrySylvia"]},"Identity":{"Case":"Some","Fields":["eBbe3dfNePkf63Ljl6yxi4gTKKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7VN9b13AceZsxUGA3TYebzD7wRBTp1OmmMpa0hNoVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:02"]},"IP":{"Case":"Some","Fields":["3.20.179.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev12"]},"Identity":{"Case":"Some","Fields":["eA1Q3M1/PIMeXnUPQYZkl8EmP3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9vqmuGkiBTOds3+0I2Hgk4dUO2llRhZRjpxBr6urSRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:45"]},"IP":{"Case":"Some","Fields":["92.246.84.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:c2c0:1:4::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["salentrakain"]},"Identity":{"Case":"Some","Fields":["eAAE6teyuWwmqzIHE7qqe8JGuGI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JRCTnnN7X16eGhHjxyO7sKcsdFmNwMyd6/qtAJQiG2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:57"]},"IP":{"Case":"Some","Fields":["185.195.237.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["d/pShrIEXyzLkbYKCQpq3zwaB74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AbREcMJBbUMjj2cX9kL5OFb+Yi/U5sXFdud5GA4z3dE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:39"]},"IP":{"Case":"Some","Fields":["95.214.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tie2ooK5"]},"Identity":{"Case":"Some","Fields":["d90ljw1YeS4Ny9qgvGah3F+NhK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5N17JGiniwjBTL5qKgaSbdhjLmusM1/6OvqM6U0rZ7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:01"]},"IP":{"Case":"Some","Fields":["37.120.179.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torissensefull"]},"Identity":{"Case":"Some","Fields":["d9lr2pxgSLdYNTlVEFfTF78jLxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1fxXOvQG4YmM0TVWzB98mVkBmlYwSUFlTYh90OAvr6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["93.201.152.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:ec:ff03:2700:1a31:bfff:fedd:ca1]:9111"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["VinculumGate"]},"Identity":{"Case":"Some","Fields":["d9CIUMHuhYdFH4ONP0mHT3Wwsaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RBRMR9hB+RLcPwArT25ESL0xQNKY8PsUTwJsrYmJM2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:20"]},"IP":{"Case":"Some","Fields":["77.68.20.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:db::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange027es"]},"Identity":{"Case":"Some","Fields":["d8dQDMVzZD5LPn9gLQE3+Mic4Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jr7IF5tKOvHYwvVzHpAr6DUPKaIBRDqUvxm6AgxUw6I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:54"]},"IP":{"Case":"Some","Fields":["31.207.89.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["d7h9KjpVFjFwczSDlnkQhiI25tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1pxW1FySpAytuaYBiZ2g3shp9xbXAgoQKgXjTjhb33o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:02"]},"IP":{"Case":"Some","Fields":["188.214.104.21"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA01"]},"Identity":{"Case":"Some","Fields":["d7glXNKmCLli2kQjuM9JrP0eIf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mSrH0FEtDb3mmbaRe0ltEjIkVqHKh8/7hfkf+gohVrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:43"]},"IP":{"Case":"Some","Fields":["91.35.154.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["knapkin32"]},"Identity":{"Case":"Some","Fields":["d6dXA+W5rZz9uqF879/qS0ajqOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i5lrqXBW9ixiGqNN58t2En7fLPcf0PEacwb+S5Gc9Lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:28"]},"IP":{"Case":"Some","Fields":["23.160.192.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:10:0:8000::b8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redvader"]},"Identity":{"Case":"Some","Fields":["d6OtxdRVd4tTwoA3YZFt+32gp5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1tzv9zg/8CqdoJUHwQTxz8uYBTNzslfFAeWVIph8Og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:49"]},"IP":{"Case":"Some","Fields":["148.251.85.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:6096::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["z0mb1e"]},"Identity":{"Case":"Some","Fields":["d54lxirZO8i3xrWkKmJQ5IJVYxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UEzMDxCFNvioJS7lut0K6qyqZIoH+rcO4UlSdec12Kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:37"]},"IP":{"Case":"Some","Fields":["68.134.162.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["d2VC1hFmHW/jg5/i16+5KkNcXYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FaL4rtIfhd8tvMFgpVARwgDpY713vNnCA7IBkvhCQ+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.40"]},"OnionRouterPort":{"Case":"Some","Fields":[10040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::40]:10040"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute09"]},"Identity":{"Case":"Some","Fields":["d2Hdx+sb4m1BVfdKFfEsMqNv4PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZfiyXNYlshIMektizSNbp3yd0nYpuQk1vYc5QTHrx18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:09"]},"IP":{"Case":"Some","Fields":["162.247.74.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoinSearchrCom"]},"Identity":{"Case":"Some","Fields":["d2Gp16asfhikwEBEwBPEKA3OnRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zd0MxJF6NkRZeV6uXkqeNhLzYdhEAAC5QbmWn8HpWgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:51"]},"IP":{"Case":"Some","Fields":["209.141.47.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay04V6Rocks"]},"Identity":{"Case":"Some","Fields":["d2BhkwBW+IBQwCHTAA80C2LT/OE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6UxlKlXlfPXe0K9vtgLpcPaUcsNyV/JX5aQfDpl9i10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:51"]},"IP":{"Case":"Some","Fields":["188.68.48.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d518::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presidents1"]},"Identity":{"Case":"Some","Fields":["d1HjcBf3ZmiD2vJQOzAUGCgoU2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["chxzY6ycrzM2SQ62yyar7JcFp3p6XisTVUtimTM4o44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:00"]},"IP":{"Case":"Some","Fields":["45.58.152.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlavaUkraini"]},"Identity":{"Case":"Some","Fields":["d0pIBAPmU7oZ5D3Qahxy8pVQouc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e48LII6vSffdIlsPrsCWQqjv9c2/QzzBFP2tlOvaEg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:37"]},"IP":{"Case":"Some","Fields":["167.99.220.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1293:b001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FASCIA"]},"Identity":{"Case":"Some","Fields":["d0o20gqqbioSZatuH/ybUMlYcqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3dyh/oF1IyfbMYimRuCF/OHcG7N5rRwAl8GRXv9pS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:00"]},"IP":{"Case":"Some","Fields":["95.217.135.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:7573::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["l0kz0r"]},"Identity":{"Case":"Some","Fields":["dzfyRkD59MdywibKp3gJPzSgPng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QQfGxrqUUMq/MMqZKZ/0i3svOjzxPb4Xlx88UMrjht8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:15"]},"IP":{"Case":"Some","Fields":["104.244.79.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f868::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frankovich"]},"Identity":{"Case":"Some","Fields":["dzekAwUTGti15gz7kSbku+Htf3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["laH9iAIavki/iY+KLPvyFP3dANpSh7gFXVc91cVcJvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:49"]},"IP":{"Case":"Some","Fields":["46.23.72.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dzE8MqpIq2WCmdoDnfbGJ8Em9XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oapYqi7GveLu0hiweodo3coSPfGlvsWfXv44PVZj5T8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:19"]},"IP":{"Case":"Some","Fields":["46.38.254.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:2:44cc:3dff:fe89:3297]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Morgana"]},"Identity":{"Case":"Some","Fields":["dy+C+ExCGWunGje/4Ctjh2unqBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJHlKlv07VnZHfX3al2zos/Vo9XTz/riwUZ8bRQEPlI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:37"]},"IP":{"Case":"Some","Fields":["45.9.62.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrx"]},"Identity":{"Case":"Some","Fields":["dy1Ql3IHHTCCuq8ceByPkXAT88s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWbhd88yiwq9eYTSxtMqCSX+J35r5c00TjQZ2xqd2BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:37"]},"IP":{"Case":"Some","Fields":["94.16.113.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:97e:84fa:9ff:fef2:cc0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitVIF"]},"Identity":{"Case":"Some","Fields":["dymctmiMSs4P7gbNyOxMkil4x/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H3bLjczatSe2yvoIriG7WZy+tIWcLO5kFbHyqun9p6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:37"]},"IP":{"Case":"Some","Fields":["216.239.90.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f530:8002::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ntfshard"]},"Identity":{"Case":"Some","Fields":["dx4IJO+C2F4E2AEWVUER439+t5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BJtrLFMId2kHmPmMvmpvdpuHwLJXfqcJGio6ubmtmSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:36"]},"IP":{"Case":"Some","Fields":["92.242.95.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["T0rNode555Nose"]},"Identity":{"Case":"Some","Fields":["dxKhrCHUuW4nc/TI+Xli4wTsdig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UHeDgdLA41T+5MUXhdxfZDCj7LCOXa1kJ5MK3B0/IXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:20"]},"IP":{"Case":"Some","Fields":["185.119.117.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:148::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zivlimarinadir"]},"Identity":{"Case":"Some","Fields":["dvnkMuhI/VA5AVXhwIRm1l1Ke1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["metI4uc5l60OYB6C7HN4ow7pL4mXPzBGIzZwJKSTwXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:33"]},"IP":{"Case":"Some","Fields":["45.180.21.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stalkr"]},"Identity":{"Case":"Some","Fields":["dvOoGgeE3PU29t4Z+Y6usfid7M8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GNoPQLS/mT6PhTMqVRTEwrCUbc2hrBTwpl9DP2o+PNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:57"]},"IP":{"Case":"Some","Fields":["51.38.54.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:1830:14::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarysSister"]},"Identity":{"Case":"Some","Fields":["dtPMGpBnMsi3+Q6bWg/zvkpKUt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmXg5RA4jQmulvdIMfu0HOZT5d9/ukbfGxMA5C6sI68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:09"]},"IP":{"Case":"Some","Fields":["185.225.69.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinselohrkatze00"]},"Identity":{"Case":"Some","Fields":["dtLrqCu8yj358lSpqDcqEKJvPRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggCO0Em0mUsplS8Kc0y5j/5w/6BalifjISMCV/Zrw0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:41"]},"IP":{"Case":"Some","Fields":["134.130.172.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra81"]},"Identity":{"Case":"Some","Fields":["ds75J3DrnRu6gCXuThdRpCCwCHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tk0c3lMprnFTexwp8peGLv0giaRxzLCJVf2u2EeKK68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:26"]},"IP":{"Case":"Some","Fields":["45.61.188.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedManning"]},"Identity":{"Case":"Some","Fields":["dspjbB0z4+hjC3rCKh0HQg/Oh2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YG064ehAvB8vBbwxohQtYehAtPtJeCMNO6y+XkLj8W8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:53"]},"IP":{"Case":"Some","Fields":["23.154.177.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dspBnGhQL/xNlQ0WfiXuCtOgp2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l35fazSp4oud8goEJ2iUs8RtU7kH3k4NfS5Ii8Y5TJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:55"]},"IP":{"Case":"Some","Fields":["185.183.157.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NFSGmbH"]},"Identity":{"Case":"Some","Fields":["dsKhZHHa7oFVORDH6M8XJu40qnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qcZGiI1/a2eJYZeoeTFIHSErgfI02wbkRtIfT2XyBtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:19"]},"IP":{"Case":"Some","Fields":["179.61.251.219"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["drYla4vpKI0iSAoleaFkER7EU6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/QdfFh0rR2rpNL2IHrAjd3LDK3ti4G3/4VnBFN+C3/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:05"]},"IP":{"Case":"Some","Fields":["203.118.152.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2407:7000:989a:5254:ba27:ebff:fe44:d9dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vladimir"]},"Identity":{"Case":"Some","Fields":["drT+3QaW2SSkB8+rULbldLKMzco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4It6KGHi/pU0QxxxXNHtbmJLG33IMgOZVXp45mrQklA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:42:33"]},"IP":{"Case":"Some","Fields":["158.255.1.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonlolth"]},"Identity":{"Case":"Some","Fields":["dqtQw+wEcqY6+5qDOlNfpr1pFHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VzCzqd/Oudp46dIYGDTt3dWJMRwRvL6HrNoho8xbJjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:08"]},"IP":{"Case":"Some","Fields":["185.220.100.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:5::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDotTeitelNet"]},"Identity":{"Case":"Some","Fields":["dpWZAThujJCPUCNdmJQAeIa2fC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaBhwaRphDPE0aP5eFsh9E1pCEwDJLlQF1PFvQjtKj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:24"]},"IP":{"Case":"Some","Fields":["198.98.51.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:58f:8768:8283:1a62:bdc6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber41"]},"Identity":{"Case":"Some","Fields":["doxQ4ZfTy+JWsw/pSWA/0jESiQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59TB1FxX/07oNVH5j55P1/4ryigVirEbp2i9qDtpgNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:24"]},"IP":{"Case":"Some","Fields":["185.220.101.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::21]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node1"]},"Identity":{"Case":"Some","Fields":["doOVzA51fgvN8tULYGp8DuFj0I8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEUGdSmN3Rya3vKOpAONMTLL9cRfxDiWt6cZtiJqpN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:07"]},"IP":{"Case":"Some","Fields":["152.70.181.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:299b:7aa5:73a7:9bb2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qtornado"]},"Identity":{"Case":"Some","Fields":["dn5ETh+h2nXzt3R521ri+j//dcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Kxr9vAvf/pUFWcYEznbm+3g72DEwx3zDl62mBet6+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:29"]},"IP":{"Case":"Some","Fields":["95.216.35.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MegaPint"]},"Identity":{"Case":"Some","Fields":["dn20ALdDAkSJ/wt+skH1841YF3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mumgTaa3LafA3Y6ELIksneOvvjHU+C0V+59r2wYUAAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:00"]},"IP":{"Case":"Some","Fields":["178.62.241.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORfrance"]},"Identity":{"Case":"Some","Fields":["dlQ3SVEM0Ayxbh3UlAyqj6xyf1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBOJk+uY46xt5FzpYwE7ERvw35xn/v0xsPOGQ1q3nwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:57"]},"IP":{"Case":"Some","Fields":["94.23.29.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:1ecc::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex45"]},"Identity":{"Case":"Some","Fields":["dkv4oDho+EyPMjwaZ2qiVLgNw78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FffpDwWYmb8tlyIt3ZZT8/yZzNvtxaATBuwOxQc/OOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:44"]},"IP":{"Case":"Some","Fields":["199.249.230.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e644]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dkS1fdhjBfO4Fy/vbO6Fhk0Ii6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtymWBjHEpcwHnrg/yVs99PFxznTLP9O7X4Yt3MKJAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:11"]},"IP":{"Case":"Some","Fields":["5.45.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fenchel"]},"Identity":{"Case":"Some","Fields":["djt9Z6ay0Zs+nqV9H73EjzuFtVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2TCHtItTA+EmNbIxdp42/AvlZErzCJkjKBe6krW0IuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:02"]},"IP":{"Case":"Some","Fields":["109.70.100.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip6b"]},"Identity":{"Case":"Some","Fields":["diIT0yewp2BX9LYc1YftQjjNkA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEhx5iB13rEr/Mq3yyUaZ9QN1q7YsZSV6eI60GGldlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:32"]},"IP":{"Case":"Some","Fields":["185.220.102.253"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::253]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot62"]},"Identity":{"Case":"Some","Fields":["dgBoAkmiIIDsxhc/u/ZNb88zCmE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LkfWSSMRDn3O1QjrieqUFSzuKaeYspjTftPL9T1K4hE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:36"]},"IP":{"Case":"Some","Fields":["212.83.43.93"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iPunchSharks"]},"Identity":{"Case":"Some","Fields":["df5SNuZ/+kpEwRUsNeqzY2Dk198"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XjFD0d/rG4K55xbyohTFxDUqzErJiL53IJtc1aFt9V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:35"]},"IP":{"Case":"Some","Fields":["87.104.37.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cornnation"]},"Identity":{"Case":"Some","Fields":["deIUJYzFiJ4NbtWFJm83vi3TVo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noIEwofgQVwsCAh4+XqPuEeBh07eZpa9N5jOSDckBw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:45"]},"IP":{"Case":"Some","Fields":["45.61.184.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE73"]},"Identity":{"Case":"Some","Fields":["dcyifm6anSCO9xrmD0PhKUKFde0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R5EB/zibQpikz+nSth99B1MBywqSiy5GeN7Dqu3KDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:03"]},"IP":{"Case":"Some","Fields":["37.221.67.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:103]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Buri"]},"Identity":{"Case":"Some","Fields":["da8fgSQ37+UcUEzjrC3H7AO2wBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOUFPratBf2DEonjEoFIB3AtUS1Yz6duYz9JI5IT7jY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:11"]},"IP":{"Case":"Some","Fields":["83.137.158.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9019]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tiberius"]},"Identity":{"Case":"Some","Fields":["dakxQERTAwghxUek+qkJSgbEjHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PDsCltcrYFIg14CKKE3y3NmFdPWDvYBIwpUipeiopoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:02"]},"IP":{"Case":"Some","Fields":["46.101.183.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galates2"]},"Identity":{"Case":"Some","Fields":["dZuxByTGIrEjgYT+Q3c7ZIGxrUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YB8R7a1QXrgA0QVFlygqH9pLENErGXTlAeYjZ/un9/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:08"]},"IP":{"Case":"Some","Fields":["94.16.118.23"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer70"]},"Identity":{"Case":"Some","Fields":["dZKxBdS5EKeYmVlBdrMjVN7AO/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9xMRLDLDooIEu1epasSuymjIJ/ZfjK4c50/P3P7WCeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:21"]},"IP":{"Case":"Some","Fields":["185.16.38.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8270]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["010101"]},"Identity":{"Case":"Some","Fields":["dYZwOow1fYllEa7VeYzay7LCvZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K023l4V00bAvJSFfxVwhfJYaU4WOVsIgG9EmW5fM84I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:22"]},"IP":{"Case":"Some","Fields":["188.154.244.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cebolleta"]},"Identity":{"Case":"Some","Fields":["dX9KEnAazXOlNSBU6k81fMS0R2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z9abOJvYjQcTF6ZnFByYhTkiRuxoaMJebqrT2JPiZec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:35"]},"IP":{"Case":"Some","Fields":["212.227.149.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:1d9::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smurfix"]},"Identity":{"Case":"Some","Fields":["dXSXW6dt4HJiMfyRbdcLCbOCTOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAi47b68+dZCMVZuhi88u7CjXbIx2JjZ/Ir0qq3ZmUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:07"]},"IP":{"Case":"Some","Fields":["213.95.149.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:780:107:b::85]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["courage"]},"Identity":{"Case":"Some","Fields":["dXQLBBQ19ZAbqyco1vrcLvxLJ1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WhMhB5pmuXey2BngU0XiWF7F1DK0AaqN0SYbOQQKfzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:31"]},"IP":{"Case":"Some","Fields":["94.16.123.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spookybird"]},"Identity":{"Case":"Some","Fields":["dWw0u9x3FqX+g4UH2LX9HPJPMDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OQisHloPEdawRXWNO3MiRbmAtTbj7TRjoKGPoZzUEyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:06"]},"IP":{"Case":"Some","Fields":["167.172.237.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:c1::84:a001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["screenslaver"]},"Identity":{"Case":"Some","Fields":["dWV2z12jh83X6rzKP46u+TPLRIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rCcb/f3M1sbogLtoN3yQEcppJtXxVwk2XbWILqPgFmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:36"]},"IP":{"Case":"Some","Fields":["51.81.208.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["intercepTor"]},"Identity":{"Case":"Some","Fields":["dVug5/T+Ghl+3w2DaB0lcq85yy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lWYDbKh/kvfDolqFHtOYL/58ZRyI+vzamvh2+yLtK80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:32"]},"IP":{"Case":"Some","Fields":["92.117.164.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gbhfmoldrelay"]},"Identity":{"Case":"Some","Fields":["dVXb2XMu9m8PCExB39pAG20DZQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EV4dgqjjgDvhxYjFnRZ9JelxaPJtdpfO8oNxzgLh4vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:32"]},"IP":{"Case":"Some","Fields":["91.208.162.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adrian"]},"Identity":{"Case":"Some","Fields":["dVHBRG26e8+DlTiaElRF5xlS1Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Itgtf5NUy/WpN37gteL5PLXaAbKEfwrnEZMxM31Pcu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:12"]},"IP":{"Case":"Some","Fields":["135.148.53.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq04"]},"Identity":{"Case":"Some","Fields":["dTOr2pAn9Az4f7YYmuux9DoTKgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GzdOfS5WGrXY03b9TzuzQNIrKiVrWCVBLaQ433yg9yQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:44"]},"IP":{"Case":"Some","Fields":["193.32.127.154"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetWorkXXV"]},"Identity":{"Case":"Some","Fields":["dSvDYWIum8Lb85UjVDGivvvnkTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2GKd7nKacpJoUmcSNWIf54I3xuxD+fCJ/72TMNlab8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["178.254.45.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:23b:7777:7777:7777:7777]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dSWOdVBkqiQSvGuriFdWoyAfjHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+liWmobh1vmAOCsSn3N5ZC/60yd3xjhK+UOr5NT7FY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:41"]},"IP":{"Case":"Some","Fields":["108.161.133.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnlineVrijheid"]},"Identity":{"Case":"Some","Fields":["dQ6c37QGYDnQHMI2la2BOhPd6yA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qnq4m3sML4X8WqJUava6y6v5c/c0ceLUZyUWw7omRDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:53:28"]},"IP":{"Case":"Some","Fields":["135.125.205.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["O1G"]},"Identity":{"Case":"Some","Fields":["dQk6lZ80S8azBO/+3hAZ9GVIo8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/ZG8bVrnng29OceexYTwTeqKOGok67BY0e3p1tlRGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:20"]},"IP":{"Case":"Some","Fields":["79.143.177.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2023:7000::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pfefferoni"]},"Identity":{"Case":"Some","Fields":["dPrjOyH//9xvoROEZkAjrI392kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EmL1x1/aT/Nc387RwGKV7Ya9SOg3LlcdNCby9F5yYZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:13"]},"IP":{"Case":"Some","Fields":["109.70.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::15]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsTrenton"]},"Identity":{"Case":"Some","Fields":["dOi2gEKid0iEu/Z+Q6vsTZ5d9Zo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S9nz/+yQiFzj0p3Cg9Cny5AKzqHUPc5WFfAimI2ajmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:42"]},"IP":{"Case":"Some","Fields":["195.15.242.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::3ab]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypnos"]},"Identity":{"Case":"Some","Fields":["dMS/brrLTM59sDy++O7XdGN5Pcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaQXPofcNDN/z4RHeyAw3Ee+HMukI3EF4RNYhvDAg4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:32"]},"IP":{"Case":"Some","Fields":["46.89.104.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FOXACID"]},"Identity":{"Case":"Some","Fields":["dMQpocDj7eA7Ot9hvqg9VUAjKmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DWcXtJo7tcgBx/DdQrRwvjlm6QHjRDjqUEshNC+0bMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:23"]},"IP":{"Case":"Some","Fields":["95.217.14.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6b27::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLXicebeer02"]},"Identity":{"Case":"Some","Fields":["dL0yEJ17Dyw8dIjr+/3fGpD5ztY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mUTi2IiVvojuZeqLclCPSRFg9mux3BIbXtDN0eNmxXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:45"]},"IP":{"Case":"Some","Fields":["95.214.54.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5116]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:365e]:5116"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rulers2"]},"Identity":{"Case":"Some","Fields":["dLAFXYVARYQC/g9Uj8aoRLVDGpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gG5keg24EPhuaIhXvsEIFH2KWuX51ZFFFytH7Q0a9NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:04"]},"IP":{"Case":"Some","Fields":["45.58.156.76"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["dKvcO66AuXai8/VtIBf6MRIsB5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GR92wCRWcJAAQ/T6foV02bdGz3f3bnwFp10mBSr723Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:50"]},"IP":{"Case":"Some","Fields":["51.158.186.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["longclaw"]},"Identity":{"Case":"Some","Fields":["dKkQZGvO77zS6HT8HcmXQw+WgUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AW+ra50UXKZaHNd3eTeKfYkzWR1u8+W2PnC7Sji62Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:19"]},"IP":{"Case":"Some","Fields":["199.58.81.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay37at5443"]},"Identity":{"Case":"Some","Fields":["dGvhbDF5HJp9FUYfc08MAX3cVe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E4oSaqH1AJgAbCm6z6GQzuLpdxaFrx3CB5NsIfXaf/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:46"]},"IP":{"Case":"Some","Fields":["140.78.100.37"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra35"]},"Identity":{"Case":"Some","Fields":["dGYFdCYBjEHt/BRlvn8B4nFVz78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HI84v9laTTZ9Z6NGj3QcKKiz2YbtDyNfp1GJZWFXGhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:16"]},"IP":{"Case":"Some","Fields":["213.164.204.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bhsdztorrl01"]},"Identity":{"Case":"Some","Fields":["dGHJPYHNUzngx5CQdFoUzsffynY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eN0FmBZr3b7Ujw4ahuA0tfXWFZSJOnhrYNd64TW9ZSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:39"]},"IP":{"Case":"Some","Fields":["54.39.234.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AOP"]},"Identity":{"Case":"Some","Fields":["dGDHdBLoyOZavheXxlIWH+kD6/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NuapfAcRr2OaxKA8AKH8/zv0i1xX0y0jXq76LV/GmuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:22"]},"IP":{"Case":"Some","Fields":["147.135.31.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shalazarthewizard"]},"Identity":{"Case":"Some","Fields":["dFBI9RqDT6kVL2ICFZPyzWLDGro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W01EPyC/XBt1epu0LJGHuErVQjpBJLGruc+b9GolyX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:08"]},"IP":{"Case":"Some","Fields":["23.239.22.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:92ff:fe37:163e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeLoveNotWar2"]},"Identity":{"Case":"Some","Fields":["dEhVv8nrMW01h5covaV8mpTjklc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpO9ueTmEC1GsZDs0ullyT1ow+DNICodP3rz9XGsBbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:04"]},"IP":{"Case":"Some","Fields":["5.255.97.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tionverphous"]},"Identity":{"Case":"Some","Fields":["dEd4X0SFUkse7fT+WncORaQ8QKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q1yavdh7ZuVB2Sy98mNS9R3Gdgg+DGsxOEv1JcZ18N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:53:32"]},"IP":{"Case":"Some","Fields":["45.132.74.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhyNot"]},"Identity":{"Case":"Some","Fields":["dDma02ZbMUuGzAKec11dGs46Tgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAjJESAdFPwZ9xW3qX01ncQUwbJPTFH0LGNfH72zM5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:37"]},"IP":{"Case":"Some","Fields":["82.165.243.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dDZ7YyOW6M5qXdQQ6pYH5GeqvNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KsFF9cYEHQSsQLZBz/7YpaPN6IWIwbRx9JMBVZGZxLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:22"]},"IP":{"Case":"Some","Fields":["61.4.102.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv126"]},"Identity":{"Case":"Some","Fields":["dDD2axyry1LVg8nDA17hmj6Hoj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sG17ui5Mr71E0Lm/q/+sKj/erX1102oMoaS8dPIrO04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:26"]},"IP":{"Case":"Some","Fields":["192.42.116.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5526]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitMoldova"]},"Identity":{"Case":"Some","Fields":["dCxF8tkASq3gB35SikQYpqgbwro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VovUb8/gwvbdOkYIEGVSYQgXWQMIwx8XHwCZFvp4OVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:35"]},"IP":{"Case":"Some","Fields":["178.17.170.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:15::45dc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["08eRPfaL2Relay"]},"Identity":{"Case":"Some","Fields":["dCRaDsnwQ3sjhKfb6QCtaG/wr3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uh6BGgIViim7rAvIi6GlWVESMpE67cshLjdg62PAv4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:29"]},"IP":{"Case":"Some","Fields":["188.68.32.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:9e9:28be:caff:fe2d:d725]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay17at8443"]},"Identity":{"Case":"Some","Fields":["dCQl9zeBpaUJMsCe6opaWWmVIX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bRGYL8H36JtOR6Lwy/xHjo2bJ612gaiNUX8h9b0Z6A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:57"]},"IP":{"Case":"Some","Fields":["140.78.100.17"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["effiorgoulu"]},"Identity":{"Case":"Some","Fields":["dCCRSG0Ec0xX2XvO+1PSLtC3eIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nQQEGvMcqnadn6pDIlBqtUCApOY8acCOqOG021liDFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:13"]},"IP":{"Case":"Some","Fields":["185.67.82.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer18"]},"Identity":{"Case":"Some","Fields":["dB3kdfVHRGDqNHUu4zd5DSJEV7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R0Na2TKPbluELqX9HYIcdp2Ckf0J64urY1J3xt+VL9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:27"]},"IP":{"Case":"Some","Fields":["185.16.38.110"]},"OnionRouterPort":{"Case":"Some","Fields":[8118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dBNnXtJSspOVVu0AmMOYPRrzGRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qXXH+h9PZ/0n7KiutIuujdVF2qAY2hQB/a7+uLZGwj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:03"]},"IP":{"Case":"Some","Fields":["91.132.144.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:3:e842:2ff:feb9:c49c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MinchiNodes"]},"Identity":{"Case":"Some","Fields":["dBKIuSvJ/xTLSBAvxlknNp5LCxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqyWkLbIWdd+ycWwMFqX7XeaSmvw6fn236aO6FKJYSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:08"]},"IP":{"Case":"Some","Fields":["142.115.34.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dA5MSELkwZDf7CeOwf11T9JhqGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pM7cqJd+7uX3vGAVhOLgYOhYs2QbT+Uj6nlSPTkRnpA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:24"]},"IP":{"Case":"Some","Fields":["85.166.159.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:4646:54bc:10::56]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["macaroni"]},"Identity":{"Case":"Some","Fields":["dAg5d1eMB0sSSubIGlj6PlcQ1PU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IoO+7e4AWjnVwIALn0WygFghAJOWWAzrq4Dc/9/4sCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:33"]},"IP":{"Case":"Some","Fields":["23.253.203.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4801:7825:102:be76:4eff:fe10:552]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BrownFox"]},"Identity":{"Case":"Some","Fields":["dAeQQkbA4oOPqBdcOqGjytnfOxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WwRycbcoMYq8IeW5IYlZVcPmwsMqoAeULb63Vh6fgHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:30"]},"IP":{"Case":"Some","Fields":["66.229.163.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pkswitchtorronto"]},"Identity":{"Case":"Some","Fields":["c/a/ReFMcsR7iz01aPb/GVuWehU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gat7+qmQaLWmdtVUMlsqS0NvlhVJXUNfQLlqMssu2wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:17"]},"IP":{"Case":"Some","Fields":["159.203.27.5"]},"OnionRouterPort":{"Case":"Some","Fields":[2568]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::4f:4009]:5201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay29at8443"]},"Identity":{"Case":"Some","Fields":["c/NM3FklhMBRmYjkQ+b9+6cseQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4aZCqnY7WUKOpezUt8in9Ynop74X/A7ob95vYh68Y6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:12"]},"IP":{"Case":"Some","Fields":["140.78.100.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n4lksask972137tor"]},"Identity":{"Case":"Some","Fields":["c+ilWxWP51Cq9xG0AtNwLj/Dle4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TU6B2Hmo7YPTdefq92gFuxYIClBpZXC87PfpzASBuFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:34"]},"IP":{"Case":"Some","Fields":["62.168.3.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyrexlinuz"]},"Identity":{"Case":"Some","Fields":["c9Xpw8haNus8Gmojwv8Av3/gNEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XqxVJDfO0+gPdAE9gzEDZWMarDQfDj3s97zKFI9R/80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:39"]},"IP":{"Case":"Some","Fields":["91.151.93.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rspn1"]},"Identity":{"Case":"Some","Fields":["c88VmN4BekJOGRnN8E+f7EhvWIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D11W+0ufOoOFkLT6aJr1N7aFnfvb9DPpmTgl9JNuEvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:16"]},"IP":{"Case":"Some","Fields":["65.21.180.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9d66::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["None"]},"Identity":{"Case":"Some","Fields":["c8bWFiHfjChX/EozZlOR6a1jvhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2g5zln4Skvf41ww11JjndLG6FgvtLJcJqap1GIwrHdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:49"]},"IP":{"Case":"Some","Fields":["176.142.80.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeliosTor"]},"Identity":{"Case":"Some","Fields":["c7YVE1wW5Q5WaCb2RD7Ia3BEoPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cuKkvxdVdXuW4kArhafdkGnLVjxxH5Db1Eecxo1dt5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:24"]},"IP":{"Case":"Some","Fields":["184.75.221.59"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torcow"]},"Identity":{"Case":"Some","Fields":["c6YrWQzE8pDQaPogoS1kCKDYtgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rTSkrDQGIgTiO667RKS6IPoXxC+X7j/YrB7RJammMi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:23"]},"IP":{"Case":"Some","Fields":["174.93.174.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird33"]},"Identity":{"Case":"Some","Fields":["c6WoFoi9U2v7q+GGMPW9YwbJrI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q39T+TVKhsvboWTqVGQvoGIz6ypGN66pPdZcpjEzx5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:38"]},"IP":{"Case":"Some","Fields":["5.44.101.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:fa40:3aaa:1::9b30:deb0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WildRumpus"]},"Identity":{"Case":"Some","Fields":["c6Mr4AG1CFww3r3Qaycouwq2Q2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWlNGiVrju9l+GhOhEo+/qxs71XN5JdOlM64Qwouf2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:14"]},"IP":{"Case":"Some","Fields":["51.81.93.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["c6JVfSiHh4rWf0U3LNLRRGuS3sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u46aTJwe4LdF10XY00X62LE8y60EfvheRCquneetHNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:27"]},"IP":{"Case":"Some","Fields":["195.60.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneDEicebeer01"]},"Identity":{"Case":"Some","Fields":["c6CM60miE/xz/9lziWOEh9Txu3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xG5dd9mBd7bhWE5jrzOlNd/DIH81EHBrxJ7TE8wc04A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:31"]},"IP":{"Case":"Some","Fields":["89.163.224.65"]},"OnionRouterPort":{"Case":"Some","Fields":[3092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgarath4TOR2"]},"Identity":{"Case":"Some","Fields":["c5uMurThLHLjlZDmj9cGzlYyfBQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WqOQxMOlDPPb6+9xvBHeKeYdwWSOmFYgz5GmlQK21f0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:15"]},"IP":{"Case":"Some","Fields":["213.65.114.38"]},"OnionRouterPort":{"Case":"Some","Fields":[63456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapSFO"]},"Identity":{"Case":"Some","Fields":["c5RLZ7mD9BSoE7KgBvx96CgrQFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZDUU+CyJv7pab6VpAM8/eLOFijv3pyhZriKP4GnjVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:12"]},"IP":{"Case":"Some","Fields":["138.68.43.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::742:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowball"]},"Identity":{"Case":"Some","Fields":["c5LjMzE1W9xvWvJfwmjOapFr5GM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nq9a1Y9E1+8J2vd1vAo2CWTYxz97De3eEcp+RLmquys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:09"]},"IP":{"Case":"Some","Fields":["80.241.213.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["c4Vhku4h3/w39pUYYfsZWWeaVVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDLkrSiLkS7tIRBcSzt7uryEd4XR6ydZFmqvV10nFO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["37.120.185.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HYS2"]},"Identity":{"Case":"Some","Fields":["c2TvsVf8qAnEa0GmHY5qQ3GLioU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rjAuDa0+kWEfQj0SafBDNx8RmxcRrvG4qKvMnj5n6fA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:07"]},"IP":{"Case":"Some","Fields":["179.43.160.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber37"]},"Identity":{"Case":"Some","Fields":["c2KL7jRuUMOmDs/zCjXURS0dB0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LYlwuAsuRpGjwXbq5u3am9/SmTCmUnQF5N/FWJ3L4YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:19"]},"IP":{"Case":"Some","Fields":["185.220.101.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::19]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["c2J3DLpbVMMSPPskPYIXUx4voDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fg4A1F08tnpF1ceZlwe3ywOwRJvjGlNQuVzC01EoId4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:41"]},"IP":{"Case":"Some","Fields":["185.229.90.81"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:43f::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["c15z3m+z5E5bbpxOrrLbnNdXKjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ROovTErP8por8afnAY+b5tsSGaefav+D7xwe4QdIe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["45.12.138.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::1fa5:48d1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepGreenResistanc2"]},"Identity":{"Case":"Some","Fields":["c07d8K+yjJHOh1EcfwgI5IO1oZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GjH30SSSb86ga00LahzFTLS/+CxI8AVzHNe8qU2PlY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:27"]},"IP":{"Case":"Some","Fields":["185.213.175.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:232a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MoldEraTor"]},"Identity":{"Case":"Some","Fields":["czKgawDWr1SqgE8DxiTfu8nmYXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QzCpO3j+3eH5SSl7SizemKKSkszUPYJyXkJoy6K+lUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:38"]},"IP":{"Case":"Some","Fields":["178.17.173.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:2451:10::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay29L"]},"Identity":{"Case":"Some","Fields":["cyg8TevAHT5KX9G7HytQ2Sc3n1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HANFQi6rPXuj9/qj2W/FTozt4oXsPD6Zfibn26j680A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:57"]},"IP":{"Case":"Some","Fields":["217.160.56.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:867c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["cyeHauecmX3+MRp7FbT6h1c2u9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dCrjCifrDfmpvj6X9kfz8VcnSbVckhoebGyehztQz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:16"]},"IP":{"Case":"Some","Fields":["185.220.100.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:1::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ByeByeBlackbird"]},"Identity":{"Case":"Some","Fields":["cyCK5boVJRKrjXrZLgvx4PQgSjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CTsHnWOAMHWZLL76VCyHoegLklRl6CjKnjuE0RLgfrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:56:01"]},"IP":{"Case":"Some","Fields":["76.103.212.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cw1vDrj4xmbrOHQDmDGmaoXkvM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GitM6falLi+nqXGTOwF1MENKiTjZZh1TIuMDKNBegoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:04"]},"IP":{"Case":"Some","Fields":["23.128.248.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::40d7:6aff:fe81:86fd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["huselRelay"]},"Identity":{"Case":"Some","Fields":["cv2U+jXTLib9mGdxf1deiDrZ5as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eshM3YUthFzed4r7i3opn8L3o+s41abhD3UGshnY3Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:30"]},"IP":{"Case":"Some","Fields":["92.209.84.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9382]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay330CT"]},"Identity":{"Case":"Some","Fields":["cub+Nz2KlRVKNmJxXp4QtWRHPOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ak9/qZmwvzgGx++CwTXNplqHeo0Iajy2BwCKWKQjsYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:47"]},"IP":{"Case":"Some","Fields":["98.250.174.4"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt29963"]},"Identity":{"Case":"Some","Fields":["cs8v4Vb4Y3ohrLfRY6mjldDAIEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zS72SPblJp+S14yC9+feQDPfgxKGUcAZ6IiwEAed8P4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:18"]},"IP":{"Case":"Some","Fields":["185.245.60.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0185"]},"Identity":{"Case":"Some","Fields":["cs3neT8ClSNQlIRDmjWgWBAwHQ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLtomQsEtXYlLZ9XxQoCU6fkxDlypSjmxGTFfJ+NQ90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:50"]},"IP":{"Case":"Some","Fields":["185.220.101.185"]},"OnionRouterPort":{"Case":"Some","Fields":[10185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::185]:20185"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedomRelay"]},"Identity":{"Case":"Some","Fields":["csS/FHGnasZRSEOvWkTb4ntNRwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYNSugCFWvgB1JGSXLfy1QRkAaMbAs+cCWihuErYKh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:10"]},"IP":{"Case":"Some","Fields":["78.47.153.136"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Omoli"]},"Identity":{"Case":"Some","Fields":["crOTmlfKM+IiL6Lacxlox+pnBNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WdbVjufrrbVACauhWc/JGNS4jbcMPQpnQniIKr79O70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:24"]},"IP":{"Case":"Some","Fields":["216.197.74.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:e439:2::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["cqpM+JFokzLZRzpOAUD4PbIhBUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC21TqgpixgXp7x72/y7HfSO33zXlwdg5OfTLSxEi/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:04"]},"IP":{"Case":"Some","Fields":["188.68.51.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["absturztaubetor"]},"Identity":{"Case":"Some","Fields":["cqM+N03lrR5hc5SJbw/YsJLT58Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JjRoM1Et4FfoDBmxprsEF0t6Q6vxnV1oAkZe1TsN8kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:34"]},"IP":{"Case":"Some","Fields":["81.201.202.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zai3Pheevoa4oiWooz1"]},"Identity":{"Case":"Some","Fields":["cp2qCfHiJduq8vQvPIL9O7561d4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jBfEU/ZQJepbEEap4U5asGMHxODWDbJE1vq4tJ5hz4E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:05"]},"IP":{"Case":"Some","Fields":["185.183.194.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisLatrans"]},"Identity":{"Case":"Some","Fields":["co+X1byxMWmIFNjHE8IiDG5yZ94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpUTiC9lDnsRXoDAjbE8965SeUpead56B1k3AyJhVxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:59"]},"IP":{"Case":"Some","Fields":["135.148.100.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pembs3"]},"Identity":{"Case":"Some","Fields":["cooH8BQqxbL4c9NtWQhNudyDq24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ds8EZEXb2hBfKrnvlgcKKbiu600gBbUo+etb6MOWLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:39"]},"IP":{"Case":"Some","Fields":["195.177.252.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mamba"]},"Identity":{"Case":"Some","Fields":["cms6erGVQ+dIMcusqYHOGM3WonI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["quxCf+olPFtAA4W6+hbhlRdZmmBpp+LIkXzvKdZRFyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:53"]},"IP":{"Case":"Some","Fields":["45.95.235.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baronCV3"]},"Identity":{"Case":"Some","Fields":["cmUHXWIFHYElZhMJBiuSrhNrshY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qId9RemMeO9+J9pSyrGBB4kDESN+nDTsvqG+DrWACk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:15"]},"IP":{"Case":"Some","Fields":["212.38.189.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bornhack2"]},"Identity":{"Case":"Some","Fields":["cmFMFsV41nMqnZB5oJBegVm8ROQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EoOm29k3Vl86DU2qcXsFTjb7/rYt+tJ/cUncxxfKj2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:17"]},"IP":{"Case":"Some","Fields":["95.216.212.222"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:2697::1]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei05"]},"Identity":{"Case":"Some","Fields":["cmCUlFnC1NSlq8OsEMGtaTnmUlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hE+S0SCU7MCQrvqbCrMetDQsAcyvRJcBDAV/XTVvdf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:59"]},"IP":{"Case":"Some","Fields":["188.68.36.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:7c3:a401:f1ff:fe45:7ffc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gamblo"]},"Identity":{"Case":"Some","Fields":["clCFLO3bp+Bl7zICiC9HFzGEZdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oiLWjNERtCCkpqWura28Jc6o7IGfoDvYPe7alrqBOXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:47"]},"IP":{"Case":"Some","Fields":["5.255.99.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:31e6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VoxBox"]},"Identity":{"Case":"Some","Fields":["ck/g2b0HN/510epX+EoWNXnhdls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0kZ1nzMVF78IDkXLXNLpRFftXzl4TYo2IE1Z4R6phps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:59"]},"IP":{"Case":"Some","Fields":["104.244.78.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cakeallergy"]},"Identity":{"Case":"Some","Fields":["ckqWIbDqtpNZ+d7PXaQ31VXW180"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAssk5c4Nj/9x0+bThooZqGWNEUKKzqkHkdEntmrnLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:25"]},"IP":{"Case":"Some","Fields":["45.35.33.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditheconfigmuch"]},"Identity":{"Case":"Some","Fields":["ckEaLObrJNjNqGiKazpVzBKQ1EE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nzTitnR0DSh/Mce5Q3OUwXnGeYzvUprIm0laT/UDErU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:20"]},"IP":{"Case":"Some","Fields":["37.201.143.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveTeotihuacan"]},"Identity":{"Case":"Some","Fields":["cj4h/W+RkF6E5YPUYZotHigrgYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKKTw1GPR7BpwQJdQS1AcneWOVpEjK3RiPxzgb0uG/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:14"]},"IP":{"Case":"Some","Fields":["65.49.20.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM14"]},"Identity":{"Case":"Some","Fields":["cjjquR4QULbGvt38/XokQIabEUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["np7Xv1mcO+BNnILEB979MFalgTN+dRd+aYncVKRDDBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:35"]},"IP":{"Case":"Some","Fields":["185.239.222.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["perseus"]},"Identity":{"Case":"Some","Fields":["cituO3rSrlB6huWanzgLNXD0Z88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GdQkf/L+DAYPvdKRqXDY4F8eEI9Aw7/qKTc0KWLqCbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:16"]},"IP":{"Case":"Some","Fields":["195.154.232.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giesskanne"]},"Identity":{"Case":"Some","Fields":["cicOtY7evnJ6op5nQXYo286In64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aL1tgzfko+0/TZA6zxD3OCLMVTP+LJ8ChM898U3dykg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:41"]},"IP":{"Case":"Some","Fields":["95.216.146.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:a48::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5bd84798b7"]},"Identity":{"Case":"Some","Fields":["ciA7P0KQFzPsUCR5udmo1RNp1DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2BPXULu3GtfpxhOLLCeYiRcmnKaDAw326tNtNaXIrdc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:24"]},"IP":{"Case":"Some","Fields":["94.16.107.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["cholFli6IkDu0RDAeDNKst9sMJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E8asnspj4lMXm6ZDimBFKRrAkHJYpfXAE261l18LqJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:52"]},"IP":{"Case":"Some","Fields":["185.177.206.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::132]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slotor02"]},"Identity":{"Case":"Some","Fields":["cgq+RVTFXub2CZSRylXR9VUFEsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6kaxGqn+gqxayEmycXD6GGLB3Hi+pCleGjsd48sb6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:24"]},"IP":{"Case":"Some","Fields":["135.125.202.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Love4Ukraine"]},"Identity":{"Case":"Some","Fields":["cfnZaEjURVL3O8ShxdWXUbbQdGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+PpoQKqNSdiY0dVT+6jAP0dzwxyzwFhiXQhzwZXKbK4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:56:23"]},"IP":{"Case":"Some","Fields":["144.172.73.66"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HCCSRV02"]},"Identity":{"Case":"Some","Fields":["ce4/59zD8Igwk2Gk41hDtggMnqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xNuEd0FWHrnmJJAOqdEPvDHtJO7SBPK+1u9Isvco16E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:21"]},"IP":{"Case":"Some","Fields":["49.12.230.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:f4b0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marko"]},"Identity":{"Case":"Some","Fields":["cezBfuutu6dbH6Pb3cbvXPRPKDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJ5b/vGz4SIW8j6/SyfxoEv+ocCTi57H82XBGIrJ+0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:33"]},"IP":{"Case":"Some","Fields":["213.157.244.223"]},"OnionRouterPort":{"Case":"Some","Fields":[8201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv06"]},"Identity":{"Case":"Some","Fields":["ceipZz3Gi9P3Xt2T6Y8ADq0qplE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AA1HkPenN8QYdxNpMeKF62kgjIWTxriIS1FSjHNLY/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:22"]},"IP":{"Case":"Some","Fields":["162.248.163.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KFCCrazyThursday"]},"Identity":{"Case":"Some","Fields":["cdJSgohbmkO5IFJhi5GSuECCDQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z06mleewcB1xkefKn2sBNPONuATIYJnjHRcMrF9hric"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["144.202.113.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:4a2c:5400:4ff:fe13:81e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["nodebyCyper"]},"Identity":{"Case":"Some","Fields":["ccoKjDQ1v0jR+5ZCQO/AeWNtvl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZswuVxAx0/ozP2kplB/IxYEd5MkTTYDgrvBYPGZ3HRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:59"]},"IP":{"Case":"Some","Fields":["78.46.162.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:82b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torontot"]},"Identity":{"Case":"Some","Fields":["ccLSwkvEVHx64YdEgoGbU1ll8jY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s9T1GY+b3S2H4epB3EaJod7lEhAIGiqLkWCOVGWx8Os"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["54.37.180.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["cZ/Q+jJ/PMvNoNTqdMFeoRAziUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HKNdzsSOqXi5UWoaUJIKOEekyqcicf7pE9IT0Wifj04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:28:53"]},"IP":{"Case":"Some","Fields":["185.220.100.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:4::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapSGP"]},"Identity":{"Case":"Some","Fields":["cXSvsmp7hOldrslGLBGgRfq3jLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FHWerlDF3DcxkTwHr75ei4nG6V98MmRlRMcFEbgg6Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:26"]},"IP":{"Case":"Some","Fields":["167.99.69.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::11c1:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cXP96R/6JBXd2W/bXDGEBbKHu0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zF6TAv056l/6g+lZDCyz6E7M7htNEe38JUQ6LMHJuG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:05"]},"IP":{"Case":"Some","Fields":["111.216.95.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViktaTor"]},"Identity":{"Case":"Some","Fields":["cXJWc6bMMd1nfxz/88gMUgG/8lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FCMCw5snpBKWoakiRthcI/0w5BIdSHqLdydDW+rnz20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:53"]},"IP":{"Case":"Some","Fields":["79.121.49.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["winterwonderland44"]},"Identity":{"Case":"Some","Fields":["cWhTHGntZRoS0gsqwr1hwbx/XMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/szLCyS+tSwhUU63tmrX8W6/Haj5OmqPDS42+mUt0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:37"]},"IP":{"Case":"Some","Fields":["141.39.250.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cVXekMHDyb9NY3WAx/An5XInvTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSoosqM+IQS+q1bcxeuVuh5+TzjN18Q735UcS4gkAPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["89.147.109.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tordel2"]},"Identity":{"Case":"Some","Fields":["cVWQoeFlS4l8bqx2mcyafKnvAKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r0X26j42eT/vRUMdMiYd61XYxCpHUkYoDdBDrc+uxpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:20"]},"IP":{"Case":"Some","Fields":["5.181.134.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission05"]},"Identity":{"Case":"Some","Fields":["cVOdGRHsuCYGmk0VZ3GsT59GMqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/Kuey0uuuAhX0AK2fzNcYgwwxEDGMo3nNmvIzSmKhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:44"]},"IP":{"Case":"Some","Fields":["37.59.76.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangeneis"]},"Identity":{"Case":"Some","Fields":["cU1+2c0rwe4+35xqMWD9rmCKpbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pHbKfbrFg/Ha7EPr8vY0d2CYD6Ci8Zdj0phoEcTwqsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:49"]},"IP":{"Case":"Some","Fields":["89.182.40.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:560:53dd:d500:ba27:ebff:fee2:a46f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.6-rc"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vps603203"]},"Identity":{"Case":"Some","Fields":["cUGLailM3EjpqdsNqZ4Xi1Wv90o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["axeCZjZP37YMFqpNLxrs8V3e2UzLLpxZJkq4dzH/AzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:19"]},"IP":{"Case":"Some","Fields":["51.75.125.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburgo"]},"Identity":{"Case":"Some","Fields":["cSsKrbG3jVQBF8BViqK7Iq6gP7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yuOQ7dkq4vg8uepyOX1rrwGgEHlkIOdHwDpK49gNKHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:17"]},"IP":{"Case":"Some","Fields":["77.8.132.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["cSkVDn/ILtkm2sZsHd6lHEMaBUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e0ayvNPvSd9Zw8qXNVbO1kY+rlhu/WFKgIa94bH6AiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:23"]},"IP":{"Case":"Some","Fields":["23.128.248.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode4"]},"Identity":{"Case":"Some","Fields":["cRa8kpwFXfA8ztn97qj5Z1tlFSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkd54WbrSDATV0YtioyaycbVvtVebglLo+8LMbhxWJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:27"]},"IP":{"Case":"Some","Fields":["184.105.146.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::91]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv122"]},"Identity":{"Case":"Some","Fields":["cQJrmZ4V7MC8yla5cuIQzKdq2Wo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVaA2FoKVJqGgWvapGXbJgaAYkLWOODRArUVP0XNrFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:41"]},"IP":{"Case":"Some","Fields":["192.42.116.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5522]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["cPlhNQpBTwhqo6dnMlcTyGyTO0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d46LXO0Kj03OkrtO9T5RmIBMI3EeMO3kTUwPZO5zuZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["188.93.233.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7a60:1::f9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay4312"]},"Identity":{"Case":"Some","Fields":["cOWXPgfYr8TyOWOLbGeB8IcO/Hg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v7FTPiqxeOKhc7V+bWN08GXGR11MaBk9OLyB7a8YhGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:16"]},"IP":{"Case":"Some","Fields":["109.200.109.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cdn4ukraine"]},"Identity":{"Case":"Some","Fields":["cOOfeqGoO3pdO207fmqk8dJuI0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Alf9LzKwrasQuhxgYjrO75tUvjlbaG+w7AlvOnDbA6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:07"]},"IP":{"Case":"Some","Fields":["198.98.49.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow4"]},"Identity":{"Case":"Some","Fields":["cMIgRXShtCTwB5OM8EpmYhbhs90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXKwa3TdbBqocZq3IVRSDf15L8ikoYRn4NBJfAVkRTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:53"]},"IP":{"Case":"Some","Fields":["51.68.153.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["cMFpqra06CyP4OzivvtKf6tGCho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+jMjpoOsSmO4hfKRRJbMp7Ywfb+Xblj5BD8ahb/XG0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:08"]},"IP":{"Case":"Some","Fields":["88.208.225.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:19a::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["cL1Bfvyg2HTbVtPZPo/fWLflqEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iw2SBkg/V56HbvN2OXnilIr41fY9zTR59KnJ147KT0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:42"]},"IP":{"Case":"Some","Fields":["220.120.114.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["secureprivacy"]},"Identity":{"Case":"Some","Fields":["cLg8wC1O+3lT65ugay/oJZHLGig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+lxAtLZdjkz0GzfgXM1T9HfdoCf1XI4CKz4zbTyzvj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:46"]},"IP":{"Case":"Some","Fields":["5.255.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["myrelay1"]},"Identity":{"Case":"Some","Fields":["cLVHM2xqxK3WdOrOtLnMqMAsBPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/80npcawBKiqtZODWlUK6UFPUy59DfFPKy+EHVITsZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:17"]},"IP":{"Case":"Some","Fields":["184.183.68.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp1"]},"Identity":{"Case":"Some","Fields":["cLUeiFdgHh25AGuXRkLWz+goFYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+1cg82xO58qme5WdcLl+cMMZLCeWR+MfMY0WRLhDTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:19"]},"IP":{"Case":"Some","Fields":["185.220.103.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay26at5443"]},"Identity":{"Case":"Some","Fields":["cLLYO/ypUC436vSdxoUWZxjq3v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zlrmosIztcVXnM/vHR8n4OCjmWa9xXsbxvWpMch4Nnk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:31"]},"IP":{"Case":"Some","Fields":["140.78.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute21"]},"Identity":{"Case":"Some","Fields":["cKygfZJ2J3uC6QnBQ54ZzKL7Fsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9C26qxdYmTNCmbuDQOB63aF6mAjEkPKwdZWUGPec38"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:31"]},"IP":{"Case":"Some","Fields":["185.220.103.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["cKZECx5ti2lcHGEeKTvM3P5q39M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CGP8COKJjcisHKle6dHGmuljjVTawQGGVQWYH2EvwjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:58"]},"IP":{"Case":"Some","Fields":["23.128.248.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyIsFreedom"]},"Identity":{"Case":"Some","Fields":["cJ1f583SNWPFkwH7sBPh46Xs3ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VdStp/Zo/f/awqAhEepBKR+Tc9qRqqzv58POY6CYz68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:02"]},"IP":{"Case":"Some","Fields":["45.76.24.29"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5c01:1c7f:5400:3ff:fe54:2f45]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay15at8443"]},"Identity":{"Case":"Some","Fields":["cIgrEWxzvjIwNtgkMVoFDueWxEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7ay25eyHWDGdpC9NDZBIRrRrqoP+2CUmPIcHwNzDvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:33"]},"IP":{"Case":"Some","Fields":["140.78.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["steigerwald"]},"Identity":{"Case":"Some","Fields":["cIBfFVHoQMc3a4c+WsbzAymT54E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sjfw1LLlEly5UrC7DJdUFVySc7qw+MOEkHbRwLXYW0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:11"]},"IP":{"Case":"Some","Fields":["213.54.162.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopetohelpdoods"]},"Identity":{"Case":"Some","Fields":["cHQPHxYgVXvFTH4PyZS0NG7tziY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oofMJ/OLYZd85EeW5VVvcTAwS/esZPV/0izkcLkRrjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:01"]},"IP":{"Case":"Some","Fields":["24.99.81.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9074]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fourwinds01"]},"Identity":{"Case":"Some","Fields":["cHNZ66X0VY1TOrJnOlk+kzhczMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AZ3qDFTQbc3EP3UdXS56gOcCH7fCrhnvbjWvgXktyd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:42"]},"IP":{"Case":"Some","Fields":["94.16.116.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:8a9:887f:9eff:feed:9e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex60"]},"Identity":{"Case":"Some","Fields":["cHAZnvYLWxrk6i77SIH5+Qtvqe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gFY1q+ZZJ1f0iLPU/ioOfGWThEBN4Wld0ZNWUI7Z6M8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:55"]},"IP":{"Case":"Some","Fields":["199.249.230.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::149]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor04"]},"Identity":{"Case":"Some","Fields":["cGp2dKIXupBf5nfoIja3uWiiPbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gVA/aQ13Ci0byRMuyObnZbGC0BvQZnyUPg00cpum3V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:16"]},"IP":{"Case":"Some","Fields":["83.136.107.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:7760:bbd6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drivetbuyvm"]},"Identity":{"Case":"Some","Fields":["cFqDGxWcS7OW5rC6rUJw96P+mqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lPeM8RQ73jOEv1/LxYlqtkplwp3NBtGfyK/XDcw0+D4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:37"]},"IP":{"Case":"Some","Fields":["199.195.252.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["L29Ah"]},"Identity":{"Case":"Some","Fields":["cESVWk17BM9wAR1ztGexPOXmnUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZvkbq8DzpcfP7zU+LKcjkmLc0ZOADfPXHTTp6V1yYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:02"]},"IP":{"Case":"Some","Fields":["94.242.59.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:35:100::e928]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorUmidanuki"]},"Identity":{"Case":"Some","Fields":["cEDB9XKHRsX7XhKEUQGibuhjbX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MyWJKK9RtPIT54LWcaG5lBVmcEGy3ZPGfxd0cg80L+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:34"]},"IP":{"Case":"Some","Fields":["144.217.90.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::5b0d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomOfSpeech"]},"Identity":{"Case":"Some","Fields":["cDJmYwCjjtYk2US/gdzLFZFFtwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qkuSJQgDIK6l207Y6d15P2diiBbiqe8pQwTK7Dd89jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:40"]},"IP":{"Case":"Some","Fields":["185.194.142.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:79d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["cBoK/GDZjQOGNgMKUXFF+nbjQg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftv4N7N20XWY7Orq04/8bd49yQb7gcNXTJxdly1XEZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:31"]},"IP":{"Case":"Some","Fields":["23.128.248.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OatMeal99"]},"Identity":{"Case":"Some","Fields":["cAkOn4X74ATuv1hGH9bt1b+KUj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jQTd7LCCqDW/jQRT7skgXfoBmT9rytOwGUyN8S5zI00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:48"]},"IP":{"Case":"Some","Fields":["80.66.135.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["cAZWVw33PE/EBZ/vL33giych5Ak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/gseEmz/KlZ5tt6u4XS5QqT44IB4vwNpLlIxivru5oQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:41"]},"IP":{"Case":"Some","Fields":["185.220.101.48"]},"OnionRouterPort":{"Case":"Some","Fields":[10048]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::48]:10048"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atlantis"]},"Identity":{"Case":"Some","Fields":["b/RA37HQaXuUI1fXR5AMwwjdV8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r/neYdR+JBMPyKRXdX/SmiOHfKhwemdAMLDLkpFb/0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:39"]},"IP":{"Case":"Some","Fields":["85.25.43.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["b8pc5h9UXRgs1GM3NUdKmoFMbkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ohAwj6BZNXuqtlvZj9bhiUPKQZjH5o6OkRmPFVsHNrA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:46"]},"IP":{"Case":"Some","Fields":["185.228.138.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:785:3494:6ff:fe3f:873a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jubei"]},"Identity":{"Case":"Some","Fields":["b8jTsVIFSQZBfLHuBkImV0fH9ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wsYFtwhIAbvQ8ny/V44XdCZtBXn13OuHnULEDU5N8fM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:13"]},"IP":{"Case":"Some","Fields":["72.83.64.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:4040:209f:9101:21b:21ff:fe36:fd2e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmallTownHostingTOR"]},"Identity":{"Case":"Some","Fields":["b7aWCCYnhDlJqAjOw4kD24GQ+BE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZrX7Bhzlt+vjqmfVebJKaVzxLoSEvtGP0oG0uxvrWeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:38"]},"IP":{"Case":"Some","Fields":["12.208.119.235"]},"OnionRouterPort":{"Case":"Some","Fields":[1500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harik"]},"Identity":{"Case":"Some","Fields":["b7TkKuKgFH311aCkKDyW9fukM7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CoAeAFR13Xd3jRFLKQgR7J1X8Tw7fL6k2q7CactzsUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:05"]},"IP":{"Case":"Some","Fields":["193.189.100.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:258::228]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun01"]},"Identity":{"Case":"Some","Fields":["b5XmxRi9CepJoxAlp7Ef2FT6ap4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9KuEOmVXPoj+5wIhVg1KO5aq2v3EWqwpH/tDHWcV9mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:16"]},"IP":{"Case":"Some","Fields":["94.46.171.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["b3fpXvMQCork5g1S8Fkxp8kOXAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6mmuUkHJ+waSH401uPrPbjRMm0eJqAJkmabMXFo2AdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:51"]},"IP":{"Case":"Some","Fields":["179.43.159.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Demonsys"]},"Identity":{"Case":"Some","Fields":["b3V0R+TydVHlkjPQ7Adtcnv+Wiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+tkkbE7yrgTrQd6kdHgID+fQCKj4izzzc5A+feZQliM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:53"]},"IP":{"Case":"Some","Fields":["39.109.151.40"]},"OnionRouterPort":{"Case":"Some","Fields":[33701]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3003:2006:2f59:62ef:1332:cc8b:5ebb]:33701"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE75"]},"Identity":{"Case":"Some","Fields":["b3KYcYfrSCI5lb76chdVkyZg0Nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2muBKhQRcaa/dS84nbm4pg7Ok+CPCLfj4H7tsqCkDKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:18"]},"IP":{"Case":"Some","Fields":["37.221.67.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:105]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brotherjacob"]},"Identity":{"Case":"Some","Fields":["b2WG8WMcrBEVuVYWVudmTThrf0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qGMNLMIYNJBb7xsN3g/0SY3XrI3wQqajlrMvn+PRok0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:42"]},"IP":{"Case":"Some","Fields":["46.4.55.177"]},"OnionRouterPort":{"Case":"Some","Fields":[1723]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["y8Z5zJT2Fadx8m"]},"Identity":{"Case":"Some","Fields":["b1q7xFXNAfSB0vNszRpgz/6x7V8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cIV1gCW527Bgcx5d3cIfjOtEmfKg/AuewQmT7IfXUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:39"]},"IP":{"Case":"Some","Fields":["91.208.206.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5130::aaaa:12d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute06"]},"Identity":{"Case":"Some","Fields":["b06f0A1CUdmL6W+xqlRv40Z2qVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jERKbW5a+9NVSXeCy7Ds/K0XD2pfk/Ml+dsGWqjM+O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:13"]},"IP":{"Case":"Some","Fields":["162.247.74.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["b0ddorgdtqeQKJE2so4jupToSyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPnDlgdGeQXcIiZLCrPnkxXUAQehTRylLVNYWZ/5GYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:45"]},"IP":{"Case":"Some","Fields":["185.241.208.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["badc0ded"]},"Identity":{"Case":"Some","Fields":["b0LW9REjwJiGRkqVn38E1a1JTpY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nhl5NrP431/jrYsc0dtT0SzYajxZ8YOk2t52tuGwFBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:08"]},"IP":{"Case":"Some","Fields":["202.87.163.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JonDool"]},"Identity":{"Case":"Some","Fields":["bzD3qUym22Cb7O+F42JlyCCtUB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4n6JM7TYVQARlFYTUnNfPupvc4n1pSPvVMtuIHux380"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["116.202.104.202"]},"OnionRouterPort":{"Case":"Some","Fields":[7193]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterrydavis"]},"Identity":{"Case":"Some","Fields":["bySjXFbDCiMd4h5w6KDISuCSfQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vu3mO3yJW34Uf/H7E8zpnJP4dHIdFxHGTEE1KnrJ/+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T21:26:38"]},"IP":{"Case":"Some","Fields":["90.178.65.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohrly"]},"Identity":{"Case":"Some","Fields":["bx0bgxUtYYHKwscm63VHt7m7e38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Of7SrA9GkJBCQCODuKPE1pwpudc3xmCBuh4AtRr25ZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:34"]},"IP":{"Case":"Some","Fields":["79.225.81.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ByrdeFoundation"]},"Identity":{"Case":"Some","Fields":["bxtKYrAp4VE5GUv+NPWleTaUtJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f+mLck6ClIVSn7G1JiNpptm6pIN5J49SCDlmmVfpyqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:55"]},"IP":{"Case":"Some","Fields":["195.3.221.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:26::c303:ddac]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Petibonum"]},"Identity":{"Case":"Some","Fields":["bwz/Y5pp8y6UH51RU28xDghyqrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["upg9cyELy5lcZGdrJ+tjNN/Q7MvfcVox65e/vQdgT5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:58"]},"IP":{"Case":"Some","Fields":["86.248.89.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blindisland"]},"Identity":{"Case":"Some","Fields":["bwfUvI8Ma0hvucGMDh9xn6YBxBQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYS1K/4tA5eAaePLal9gMAotG9qfdCr8rlEJOCmiNTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:34"]},"IP":{"Case":"Some","Fields":["45.32.66.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bvrDM2zf0+vUXjfKGZXt+Dv38BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhBjeV2FRFYd8dc71jF1Me78SXEu9Q/o9KwpxKoqZEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:14"]},"IP":{"Case":"Some","Fields":["23.128.248.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::9835:eeff:fec0:f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoertetor02"]},"Identity":{"Case":"Some","Fields":["buC+AbUcZKx2LVMvUzcA+zgeIOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QOnfsjXgYPJQV6nugpW8kmVCvgF7Fh+EYTHZ92T3xrU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:33"]},"IP":{"Case":"Some","Fields":["88.198.209.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snousage"]},"Identity":{"Case":"Some","Fields":["btwKebCD7M4NG3l7EB7YjrPtkNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnpZM/+Jq3SpECaJ0fL728liyU4rsaHvBloQ5QpCRH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:02"]},"IP":{"Case":"Some","Fields":["141.95.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h2961181"]},"Identity":{"Case":"Some","Fields":["btdrK57ekyyHhhobGg+S2MxtKX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MMqtTdACPG19KHfYqo23xJWz9hv6OEjHi4BYATGterc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:55"]},"IP":{"Case":"Some","Fields":["81.169.166.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:424c:1900:a87e:747:8f75:a70e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatconfig"]},"Identity":{"Case":"Some","Fields":["brMAITwnxFNnuj8RMqY+p2d/7U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uMKj/f+DrqFIbaX/H/IRynU7ER/DO4HLqzRujuKduNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:49"]},"IP":{"Case":"Some","Fields":["213.206.184.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:beef:2041::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber09"]},"Identity":{"Case":"Some","Fields":["bqWn6owvGSw33OsqrUgdx+cuZd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wRuzZnen/2kH3vefrV0ZVKIUiDw5Nn8FDo2rcBSyGRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:27"]},"IP":{"Case":"Some","Fields":["185.220.101.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::5]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GirlYouHawtSauce"]},"Identity":{"Case":"Some","Fields":["bqUXfBwgR7I40yCAG0so5B3Iis8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cimfPXBolz1nLBxBSfooKbjhcUcaDFJVkXTzB+mOz4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:12"]},"IP":{"Case":"Some","Fields":["173.205.92.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveMenkaure"]},"Identity":{"Case":"Some","Fields":["bo5cqbb1Z0Fq2iHpkOd0a8IjsMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CiAM1cT5IojF5loTBe6NtY52D4VE/3Cqs0IP39kp5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:35"]},"IP":{"Case":"Some","Fields":["65.49.20.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo235"]},"Identity":{"Case":"Some","Fields":["bog6h4+cMz/I0WwzBLLmOwAUPZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8iCDGFKWdX6jrEmzir3szztriIXv99VqzC/f+oGNyaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:17"]},"IP":{"Case":"Some","Fields":["179.43.182.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["bnNv9LooRTgaL+5N7mzFZcWn14E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7xJnbduMO9cW0vnRaL2jHauW6SivARcoY0U7vs0RWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:35:25"]},"IP":{"Case":"Some","Fields":["188.68.35.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ServerAnoynmous"]},"Identity":{"Case":"Some","Fields":["bnM0NBjlLN5N3BTlUMnU750z0uA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKo9KJsvb7MQw3l00fmZ9B6jmIddum0qNLJm57AFA1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:30"]},"IP":{"Case":"Some","Fields":["79.192.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnstableDebbie"]},"Identity":{"Case":"Some","Fields":["bmcy4Aw/iRK9yoDPzyPQ0mhqw4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ryLzf1X797I1qhvv8gxyLGZH7XAfT3XzyD5aHyuoKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:47"]},"IP":{"Case":"Some","Fields":["149.57.205.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongUkraine4ever"]},"Identity":{"Case":"Some","Fields":["bmZmIae9OYp/DGf180S88VnyLoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["79g5J7Ud0+psYjDVYKN5CzGAr/pCarfintnKxRWkPBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:27"]},"IP":{"Case":"Some","Fields":["91.219.245.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Minotaur2"]},"Identity":{"Case":"Some","Fields":["blhsj2LQ4VN5IJWv2lXU4uPzQh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lhCskNRdkFroNZGrM6+SEWA1qxUqQn8rdPv1jS+IuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:23"]},"IP":{"Case":"Some","Fields":["208.109.215.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["bkGLoKCaTdevVAgjzgJMQmgbl/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TUFv4BK+j1fTfx7h6z2dxXY9rQYJ5MhB3JIT0JNHBX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:23"]},"IP":{"Case":"Some","Fields":["151.115.42.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber34"]},"Identity":{"Case":"Some","Fields":["bj3SLPQEmfZ8ytxcAkOXdIwOY7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bQNHx/Xt7nnW0r/HZk5C4ws9oAPQeciH8N1T9t5KSUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:09"]},"IP":{"Case":"Some","Fields":["185.220.101.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::17]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bjtIITBdlvFnw5Lb5aEyQNbM4CQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a2+Ms7Hz6cGwL2U6oqTN33ZcvCZnfVA90s0YvSp6JlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:57"]},"IP":{"Case":"Some","Fields":["95.216.201.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3880::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VenomReaper"]},"Identity":{"Case":"Some","Fields":["bjUvY36dXYgs26RUcz4WkfTWhf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9aTcfW5jsv4GqlhPbYHLRnn3qabGedPtC6LLKYxzQNE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:11"]},"IP":{"Case":"Some","Fields":["65.108.231.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:f500:0:d0d0:15:dead]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay21at5443"]},"Identity":{"Case":"Some","Fields":["bjUIyyN01BHNQf7o7N9w2joveig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/m/GniTRzyYGcL1U19vfymaCEfdTdls3AQt8NMl9nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:14"]},"IP":{"Case":"Some","Fields":["140.78.100.21"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LuckyBrezel"]},"Identity":{"Case":"Some","Fields":["biF0uR8lDOBey7bJo3gf6zWWw3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixK3r+qbTvJni5Ftr6vJyhF0WwnEj2++g+P/85FcZMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:57"]},"IP":{"Case":"Some","Fields":["217.160.242.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:717::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bavariaboys"]},"Identity":{"Case":"Some","Fields":["bhztxh83B8VJuI+5OA5KdQYh/Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ew3wZAuSuI63YtCiEf05fLBFJ1mC+8MCe7UCP8DI8uo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:39"]},"IP":{"Case":"Some","Fields":["136.243.92.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:501::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bhbTjFrBcOVgiBe2ZiXF808h2W4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KSmDA2Va3T/izIclc5MX6DTJRxXkthK4YfMWgKQFDes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.59"]},"OnionRouterPort":{"Case":"Some","Fields":[10059]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::59]:10059"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bg3wpbfz//tF4aoHjRNvXevSKKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Wi7Z9GzyCvnFciZBXCRXO46baALKT1jFnUT3cn4vX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:46"]},"IP":{"Case":"Some","Fields":["185.220.101.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::199]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Onyx"]},"Identity":{"Case":"Some","Fields":["bf60HATM6EaHEzjoXdWs9c+2wd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wtXRSdgSN5TdqT7W8jT3vYb1SUas0skT5jQs3FHSKpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:48"]},"IP":{"Case":"Some","Fields":["192.42.115.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:102]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG1"]},"Identity":{"Case":"Some","Fields":["bf6yv7+p2+3OLeky+dFu5+BTDtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D/coL7WHA3+Ziqp8TD6th/Ehcn9lHOwvtIx6a841Hxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:52"]},"IP":{"Case":"Some","Fields":["193.189.100.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::194]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknb"]},"Identity":{"Case":"Some","Fields":["bdSKXnJhvWuLPqPQUh8eg+lsoTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le+Dl8hJyrByviKZICtPEBnsKnfizEiYPxsRtkDqVNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:33"]},"IP":{"Case":"Some","Fields":["123.253.34.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chenjesu2"]},"Identity":{"Case":"Some","Fields":["bc7YK3AdMjEggR31jTUN0mv5yyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LSMzuJNC80Xz7mdiC9t0UtkY8Mm/Ns8BgTEsD9RDop0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:46"]},"IP":{"Case":"Some","Fields":["54.36.205.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["someonesRelay"]},"Identity":{"Case":"Some","Fields":["bcykSPjtx5VTzmDo4hAw6ULMw7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0el5NQV10tSe0W+n32Qq7NYsdwfDTCRrru02CT+R6A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:23"]},"IP":{"Case":"Some","Fields":["207.180.234.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2023:2621::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay16L"]},"Identity":{"Case":"Some","Fields":["bcbNxt2pmRXrAjIHHG3SyHhKGR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gHjFDEotESrT4qp4xEA6Iw3g0I6SrTS7sKtcPaH+UoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:26"]},"IP":{"Case":"Some","Fields":["195.123.238.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9401:0:acdc::191]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor4ATL"]},"Identity":{"Case":"Some","Fields":["bam5DjdKx6NQ6x0gR0uvVkn1gwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sQki9f52/Qzvc4eg4VNUsx5BlEJSp7GWLu2AAXfArkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:34"]},"IP":{"Case":"Some","Fields":["107.173.164.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["bZz7PtdpQpcT8vKMgTADTO5mezI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnIgb1W/74jj3fqMq6rCfNirlYCsfKN/tNI1u7IsiLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:23"]},"IP":{"Case":"Some","Fields":["91.243.85.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::26e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SysadmAtNbg"]},"Identity":{"Case":"Some","Fields":["bZNQPhUElrsypJEvkExOLbIFJ40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dIYnFdvbV/mCl43lGbikX1qFcBEr7nlMet4MJrqMv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:54"]},"IP":{"Case":"Some","Fields":["91.45.217.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:c2:c70b:a800:329c:23ff:fece:a96c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["bXWh7aaVaVw5lKAAg6dRD4Wi7/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHKqPVNQ8YsH3ruaB73c+4wNvQaQ0XTmREzj6pbn3Q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:13"]},"IP":{"Case":"Some","Fields":["95.214.52.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bW7CouLti/8tSDT41mnYL8Kp+o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["38FtystG+NEr6DxSYdGQ8o2fEdn8ajLpI+RhTsxy2qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:45"]},"IP":{"Case":"Some","Fields":["185.220.101.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mnlabrelay2"]},"Identity":{"Case":"Some","Fields":["bV2kS2ZIYS2c3/i2nWQNhu+jggM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IybwbjOc/qDOJOTtSehKc/YsLOpu0mCu/rRXxret/FM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:46"]},"IP":{"Case":"Some","Fields":["49.12.224.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:6c6b::1]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Texas"]},"Identity":{"Case":"Some","Fields":["bVyuW4xpe5XY6fT+olZ/3tyZgLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wN0jLbUs19BVaJE33Q0uioyKhQeb9bjW6/qc3wjIBU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:49"]},"IP":{"Case":"Some","Fields":["185.70.185.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["bU4Qme8gjER5/2bL/mq5WjoxZp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TW75SlkYKy3XWi3NjVIroXl2cuubA00SByYMjESkCcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:48"]},"IP":{"Case":"Some","Fields":["100.8.33.13"]},"OnionRouterPort":{"Case":"Some","Fields":[49441]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange026fi"]},"Identity":{"Case":"Some","Fields":["bU1Rk6DikMAn/mtmcxEz9wlGoVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Hdf8m1tu/s/hHKjRdnBzZcqnR0l9tnjs+hV7I5OEB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:10"]},"IP":{"Case":"Some","Fields":["185.103.110.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu2"]},"Identity":{"Case":"Some","Fields":["bUNURg2Rc5TIK6cyk588xVibK+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0S6BG6IsExCviGr3AgIP5uL+yFojuGcSaGfsajv+K8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:31"]},"IP":{"Case":"Some","Fields":["65.21.91.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:4367::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeacLoveJoyServer"]},"Identity":{"Case":"Some","Fields":["bUBveCAjayr1FU0ssnAR6Bs5bBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJkPHk/hPq1sKecZ8CkA2WS0kGfKQdwd10RxTQrYC2w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:16"]},"IP":{"Case":"Some","Fields":["107.172.209.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LondonRelay"]},"Identity":{"Case":"Some","Fields":["bThlnBf2yRTksBfPPuneNjevgSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gd4JKBhrfId/Fnmr0j7iAWZjfm0J1dPy+8weEslp0sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:15"]},"IP":{"Case":"Some","Fields":["46.101.85.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["bRAO4gqDAl5ABcZVlz/1nfINkhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MyZxWH4Tho8/9Nc6Pj9Av1T46k3EBv7pk66fhXqO9cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:58"]},"IP":{"Case":"Some","Fields":["185.177.206.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::133]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bQ1hDWPTNYQwjKZySE2mmf8moqM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DkobXZHfki3RqvOIgDSlHhVuzTRYWSQBVs926gEDdq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:23"]},"IP":{"Case":"Some","Fields":["51.15.122.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1f0c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charpini"]},"Identity":{"Case":"Some","Fields":["bPxHtG5CqddtR7kR+3GeZTCAFO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7xBwLIV25IjZgUcREK0vl9o0xdW6jLPdhHN1Tupg4LQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:35"]},"IP":{"Case":"Some","Fields":["89.187.143.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HHrelay047HH"]},"Identity":{"Case":"Some","Fields":["bPBY8VcxbD5kMzj88OmwggoUa0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DB6zhjrtQaWzZrn7wNColWhDsaJyj416SJ2OyL7a8Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:24"]},"IP":{"Case":"Some","Fields":["66.150.66.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:1a:1::bfda:62dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Huntergilp"]},"Identity":{"Case":"Some","Fields":["bOMeUZbjlxmvDlUV7VlvI3Cc5ng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h8MtGZJ2eXW0LHRajHYVbHjve9jtFQCnafDnVSc6Dzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:28"]},"IP":{"Case":"Some","Fields":["82.165.107.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:68f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsq"]},"Identity":{"Case":"Some","Fields":["bN4zY/n5rVpupITe+1ghfMloXjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+a83zGHWNGD+gTdTmm/Dq8+5x6Rj72mQw39IBWgB4iQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:16"]},"IP":{"Case":"Some","Fields":["157.230.112.120"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:e0::374:c001]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["raptoractual2"]},"Identity":{"Case":"Some","Fields":["bMdEQA/Su0yBG3tYZLWx+qelYxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fdMgceW4jV31a6RDFWtiyzMlT0RCTzdmxCoKhEySfpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:26"]},"IP":{"Case":"Some","Fields":["192.184.162.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spicyavocado"]},"Identity":{"Case":"Some","Fields":["bLqQ4xGIpl4rasHuhBLo3lceytY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BL/tQFrIJSGk+8xcvU3bQ29zQBbBV5TtJogwr3gfDAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:21"]},"IP":{"Case":"Some","Fields":["142.132.204.165"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:50da::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra25"]},"Identity":{"Case":"Some","Fields":["bLGAmPUIGd6rIuNp7DpWYaVSpmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9IgKELEUQ+cKkcDUtfRwEVvMKl5rVmW7/taBqqorYog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:26"]},"IP":{"Case":"Some","Fields":["104.244.77.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["bKUbq5SEm5uTpdAzcjG0CLS1Nnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gssWFpKNkoJgjQaPHtvFdavuceAphcWaZ9H7B4VQBDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:20"]},"IP":{"Case":"Some","Fields":["23.128.248.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["bJXoGoa0jbg1rhQxJ3owExhCKhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlhDlnoc/86vsuIkFaKZ7yHxrCvbm4t6b+fQOqJctY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:58"]},"IP":{"Case":"Some","Fields":["94.16.117.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheEpicOne"]},"Identity":{"Case":"Some","Fields":["bIgGMLQzVFFASdz+43oF2Admpy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJtHkyxf0jmj1nNvnwMVNnk7DV6zlFR6IDPWlMqcvpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:09"]},"IP":{"Case":"Some","Fields":["99.47.29.66"]},"OnionRouterPort":{"Case":"Some","Fields":[2874]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EVILGRANDMA"]},"Identity":{"Case":"Some","Fields":["bIHq44QgvfwoDbhftwiVnM8EE8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByD2QvluulItBCHpuwbEgj3ae6Ay1D5kAO5mVWZP81Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:06"]},"IP":{"Case":"Some","Fields":["15.235.130.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bGl0ZEOPZN8PxWUbFnrDzqIxjdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6u3+tia5EiGaKLunnhCzid99lcJ8atPVVEq/bRtSzYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:06"]},"IP":{"Case":"Some","Fields":["37.228.129.163"]},"OnionRouterPort":{"Case":"Some","Fields":[49980]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber03"]},"Identity":{"Case":"Some","Fields":["bGQQDY9wUOdvQgzkBAMeq8cQESQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M89zixULOAuqLam7VloUORH9qurd2BSIrM0iif96MxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:29"]},"IP":{"Case":"Some","Fields":["185.220.101.2"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cerberus"]},"Identity":{"Case":"Some","Fields":["bGIMNcDqFmV5YIgt6Isolo68hok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uPaZ81iKSmcv6oZeJZOGDBp4bGu/MNUwyZMBMAX0C7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:24"]},"IP":{"Case":"Some","Fields":["205.185.119.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:ae6:e6c6:d90:fee8:5ad5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OdyX"]},"Identity":{"Case":"Some","Fields":["bFh1q5LIl50NZslS0BfphmFI3e8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["txJWzwncK8igjFApc5aakInVcKmjaeuneFskCDtb614"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:31"]},"IP":{"Case":"Some","Fields":["194.230.141.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uqtilephataz"]},"Identity":{"Case":"Some","Fields":["bEmq3qV9OdyP96d6oy8mj9xC4qM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vTbVx+dY8TIWzPlXCPWh6YNSahcbRoiZuos8yDFF3Pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:54"]},"IP":{"Case":"Some","Fields":["62.212.239.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charmingpi"]},"Identity":{"Case":"Some","Fields":["bEcT9SbSh3nX/P9P1A2JBEzhr04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tl0eV+Odx0viL2YgCShttHC5Gwt2FbKfzXwzX83vUw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:56"]},"IP":{"Case":"Some","Fields":["104.191.57.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["bEGwjnB2Yu60tDbwjLn5M31SCQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9bunH1Jq/+3P8zIzJQTqpDFOzLD1Xh3Z5x4KtoP07U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.54.80"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3647]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bDogiARF2MYhTQY/e+PV9cRMHvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nY4Ad+vATZHIMdlNhrLx/bF4PKBAlyaa7T5xNbHmPRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:07"]},"IP":{"Case":"Some","Fields":["45.129.181.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gensokyo"]},"Identity":{"Case":"Some","Fields":["bDVciWcLtzySpg/rEKbQS85y478"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1gZg/FUNHaW+DYgKX71ozo/7skBSKsuJGlWCgkKX0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:25"]},"IP":{"Case":"Some","Fields":["118.27.6.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8500:1801:403:118:27:6:60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["czechmate"]},"Identity":{"Case":"Some","Fields":["bDM7W9uj3+enguQMuXDCcav+0Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xaYPhce0TWxEJ7gn5OG1/lMBL8Xt/SOze0tqQyzeslc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:41"]},"IP":{"Case":"Some","Fields":["85.17.127.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schneewittchen"]},"Identity":{"Case":"Some","Fields":["bCgtNcZ0oDa3m18w6Q0Zs2PT2rI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8QuvSs3j3gwoLFTe4vujpeg2GS7vnTrrFrvUOFQcDNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:47"]},"IP":{"Case":"Some","Fields":["37.252.191.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:10:41::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigOnion"]},"Identity":{"Case":"Some","Fields":["bBsojYc8daaW63Dp/3E7eG030ZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CdukHPbW0x97IXUuz1J00QY7NS3GTh8OBYGT8O4vXAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:46"]},"IP":{"Case":"Some","Fields":["188.68.38.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:aeb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RespectHazelnut"]},"Identity":{"Case":"Some","Fields":["bBinbgX0SFtZ1ToEeGOvgWJUuWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nmlK4fKJpQOWg1xyGuRh8Dla3ivkTlcrTyF2FJXUpF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:29"]},"IP":{"Case":"Some","Fields":["75.164.222.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute11"]},"Identity":{"Case":"Some","Fields":["bBQ3IP/4Rp72pcW0BmNmNAz2wNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iqi72kHDZLaVOeZJ9N5hPstbUPN5WITjek8Aub8otXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:16"]},"IP":{"Case":"Some","Fields":["162.247.74.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["bBFGHhiWdLhqde/ioeKyJxOkbow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DV+3mIF7Qzc4fwyPgj4prS/UgUb1oKjPmi+ys8y0QYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:07"]},"IP":{"Case":"Some","Fields":["195.90.201.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:39::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra4"]},"Identity":{"Case":"Some","Fields":["bA5OIjscfkNm/6ujO/AzY2qGeGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DgKPyHkCh/myOfhakABxxitNxksHL7Br4En5jXvsPq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:16"]},"IP":{"Case":"Some","Fields":["213.164.204.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeProgramThink"]},"Identity":{"Case":"Some","Fields":["a/rmIrVcg702gC0YzE7x5h6BNDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WLFe3e5vHnxTD7b7LtMZNQPqeWcNLpM1fJrmADMt7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:56"]},"IP":{"Case":"Some","Fields":["209.141.61.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop5"]},"Identity":{"Case":"Some","Fields":["a/OofCG+7l6q+H3LNRGqOm9eMjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXgUn9Xev7Zlz5ZxH8yO0hShupp4BZXCHFEDmU/y4BE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:09"]},"IP":{"Case":"Some","Fields":["212.227.214.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tormaumauhosting"]},"Identity":{"Case":"Some","Fields":["a+WqNKXDkXJGd6P9wqp3s3aPbiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jGxsuI5HN0qwSxBSDYQAHj6RgMW5VU+Pz22KucFhs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:19"]},"IP":{"Case":"Some","Fields":["51.159.184.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:4137::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SteinchesTORGateway"]},"Identity":{"Case":"Some","Fields":["a9OhawoM/mST+ce0Ioz7GSRo84o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZY7XP4dP4fJ5PVUChQeGXSJ+wuqOUOGRWL0iHrYwj3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:09"]},"IP":{"Case":"Some","Fields":["95.88.108.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:810c:a40:3997:a459:62ff:fe02:9c60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["a8uWSrdOI/iYa9qQVpfTpr4Iryg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cg/xz/4+xizKyujeI8NgOq1e2qBPpWwEGP5Xie2+Ha8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:55"]},"IP":{"Case":"Some","Fields":["185.220.100.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:4::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ppebDebianRelay"]},"Identity":{"Case":"Some","Fields":["a8fUt4QtZUwqG6v6ygjSdVNHlOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WD7MhPy0UbIiVFIOY9kgK7hpSwHXKVEjpDKY7GqMuxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:56"]},"IP":{"Case":"Some","Fields":["97.99.232.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP10"]},"Identity":{"Case":"Some","Fields":["a7C8NQitTGvfNoa1ZgOeTkNciiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xHDcPj6Tls/0vfG4CgPPsdzpPcWzhtVTYb3ZeLIYJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:24"]},"IP":{"Case":"Some","Fields":["15.235.29.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raspitor2"]},"Identity":{"Case":"Some","Fields":["a52WXGFJ0J35cMHQhqyPV1ZD9Yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2u0Fm3lUMCUw09qnh6nTg436lTFE4H8NjfG4Obk3934"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:26"]},"IP":{"Case":"Some","Fields":["77.171.80.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:a461:156a:1:96e1:cccf:8a69:d088]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AMDmi3x1"]},"Identity":{"Case":"Some","Fields":["a52DhD29aG27gGaYm/zJAwP2ewU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vf7Cx4+NYfFh7NL+D1ReRrJol/kOBDntLlM2PuAD1cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:15"]},"IP":{"Case":"Some","Fields":["185.125.217.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:9300:d1::101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EnterAndBeFree"]},"Identity":{"Case":"Some","Fields":["a5Z5b6mEqtN4u9+WNhkTMPTpoyI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NgZ13jg8KJ1i/jJm5g0xMLH0XD3vCujWO8T3s8O0gYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:46"]},"IP":{"Case":"Some","Fields":["185.109.91.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slacknet"]},"Identity":{"Case":"Some","Fields":["a4jiD+6OtH8ajjAgfzJwBcYaAT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8en1mB7l0sBlBHuH0l2O3IH6KgNmoKaTnH76qAyZ5CA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:16"]},"IP":{"Case":"Some","Fields":["144.76.216.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:8261::b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv15"]},"Identity":{"Case":"Some","Fields":["a3ZKns7qp3Mv63TIOhPwfc6eAWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDZGMfUtC+Ifnl2YFg+bdvZnQa6wcX2Ge0VBfOA9Ml8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:48"]},"IP":{"Case":"Some","Fields":["162.248.163.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber21"]},"Identity":{"Case":"Some","Fields":["a3YvmNFAk+w2/VBViX5JMx5XnW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xmjal1u/KcIxKmFfwHfq7bUYqvhtvlL4ylGHnibN/rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:48"]},"IP":{"Case":"Some","Fields":["185.220.101.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::11]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["back2bsd"]},"Identity":{"Case":"Some","Fields":["a3KEekrKmQbu1GAsLjifK6t/3eI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TBQkA8IW7N3BWj5nxxH9ND+xLi7P/p8Yuiuij1EN0Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:45"]},"IP":{"Case":"Some","Fields":["213.232.235.83"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wts"]},"Identity":{"Case":"Some","Fields":["a24QWSW5Fkd0lGjiPn7hUAggHMI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b1LCSCdrGULIhvFvyqDBZZ2F1SodEE1cvxRzWLlTTj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:27"]},"IP":{"Case":"Some","Fields":["5.100.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip6a"]},"Identity":{"Case":"Some","Fields":["a2Hv467eszUf08kQRD2VVWMW4Bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gnx59y5VLoAwqV6SERZ31A5ICslOC7fGIPNm9EvIb+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:13"]},"IP":{"Case":"Some","Fields":["185.220.102.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::253]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1167"]},"Identity":{"Case":"Some","Fields":["a2EnEoFK7S8cMH3Q6H0sz1w95NQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ePA0nDG9SJX8XIlb86MO1x6Q2JpQN+DIL4fh5EYSkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:23"]},"IP":{"Case":"Some","Fields":["185.220.101.167"]},"OnionRouterPort":{"Case":"Some","Fields":[11167]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::167]:11167"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber14"]},"Identity":{"Case":"Some","Fields":["a168eFcuO12xmxOazh17/KLreG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+c9wOuwhe0qYomKBPy3syLiGmXHLH1RXwVp2EiFYU8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::7]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schattenbahnhof1"]},"Identity":{"Case":"Some","Fields":["a1Scu2FUI81X7O8O9KcgVP4IjCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyoUR0EsF9uGbYEcMWS+LpUM5UwPhCDJQelsF4Ao80s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:35"]},"IP":{"Case":"Some","Fields":["188.68.53.92"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e34b:7cf3:194b:368:22d]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["delfin"]},"Identity":{"Case":"Some","Fields":["a0rLcxn6yylJ1OuB9zxN7NzS37U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fdl3KArqdmhkke8eX2Q4YiZQ83As5rYitYoahOgutz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:15"]},"IP":{"Case":"Some","Fields":["109.70.100.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH110"]},"Identity":{"Case":"Some","Fields":["a0bnhEMeMJq6EDiPKP50Jca4Kvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eSOf/VIKAbNHQcQszOlg/z/JejIhtYJm/T+iKwyOzSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:36"]},"IP":{"Case":"Some","Fields":["192.42.116.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4icebeer35"]},"Identity":{"Case":"Some","Fields":["a0T15iVbNzExIzd4I3ndCC//4kc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CjSg5Cdt0EFhaBuTsGyf4BiT/bY97tiHQL+zCejVPQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:23"]},"IP":{"Case":"Some","Fields":["173.208.190.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8192]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tr4nquil1ty"]},"Identity":{"Case":"Some","Fields":["az4m51nZaPoZkKOQilqMF9G9dIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUsbqaLsAuRexdUNs9ky1eCAT8AtAKwDSLworizsyf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:27"]},"IP":{"Case":"Some","Fields":["5.252.23.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FalseSolomonsSeal"]},"Identity":{"Case":"Some","Fields":["azCcaawsYuWYAamhlnILXtTBgrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yob23vVpypT8h0tolfNwJiO+QflWwg0qhRGCY3G7rdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:30"]},"IP":{"Case":"Some","Fields":["51.81.236.225"]},"OnionRouterPort":{"Case":"Some","Fields":[56392]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ayzzHH+TUiS8IoXR+Kk6IIxxnEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3pMmpkpdnchnDdUOdTO16fPPOX7eIAR6Q9HtRh4WDWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:24"]},"IP":{"Case":"Some","Fields":["89.39.105.228"]},"OnionRouterPort":{"Case":"Some","Fields":[53114]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RndSmallrNode"]},"Identity":{"Case":"Some","Fields":["aysBDJ1fn7g/0np731EVyi8QcBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S56b8hn6ZvkI2gx2SXs/DD+YA9n6iXKuRLSe5EDMLPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:15"]},"IP":{"Case":"Some","Fields":["84.42.171.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParckwartAykut"]},"Identity":{"Case":"Some","Fields":["axhd7rJJ5Lphguygd1MMRemKbF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1uG2NBWJxy7K+YrSUe2SFJQ1/2nOj2gfx6TfSpLl6IU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:41"]},"IP":{"Case":"Some","Fields":["79.251.249.46"]},"OnionRouterPort":{"Case":"Some","Fields":[24107]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatarewedoing"]},"Identity":{"Case":"Some","Fields":["awKPWKU2akU0J/+z5pPkcOZDG8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SPscJk9ahtrG+tmkXqAatld7S4q0wyQpfqkdbTBs204"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:31"]},"IP":{"Case":"Some","Fields":["172.107.238.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ACABenterprises"]},"Identity":{"Case":"Some","Fields":["atsGPcMTszDSK61hxfo8A3xqhbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KxZCqGt+c701dPR4JPPN9kMsx0hGs10wbKtuRvtXfZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:55"]},"IP":{"Case":"Some","Fields":["50.197.11.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrphanOrOften"]},"Identity":{"Case":"Some","Fields":["atPqVbh8gJcfNT66cQ9lUCAqk1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bnz3ekV+1IVT4H8lsFTkHeEjpLcPC0qiJSReAdmAHdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:09"]},"IP":{"Case":"Some","Fields":["71.19.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:1:1008:bdcf:70a4:ad52:f4e8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cg7dXjHfQs4"]},"Identity":{"Case":"Some","Fields":["as1YTy+qddlezPVMpQRCK654pUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yv8SRV3X0qW/BPL9mrc0lWQOiDufwkAvo+5EP2P7p10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:43"]},"IP":{"Case":"Some","Fields":["91.170.133.183"]},"OnionRouterPort":{"Case":"Some","Fields":[39138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb08:8a71:f802:1e4d:8817:f93c:9b26]:46101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["asrsz1eMROqhYFnD5sIGz6aTPTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvKvVltnxufmW6C0cf50z6hzsyWTLbb4aK85OpI/TSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:54"]},"IP":{"Case":"Some","Fields":["213.32.104.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OgresHaveLayers"]},"Identity":{"Case":"Some","Fields":["ar/JBjGozaDC1D0maHjb+dxbpIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvHNIL5fVYjqXhScZ1edOrZzctREQOs/ybbutMvBv3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:19"]},"IP":{"Case":"Some","Fields":["104.192.3.74"]},"OnionRouterPort":{"Case":"Some","Fields":[41040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeryKawaiiRelay2"]},"Identity":{"Case":"Some","Fields":["aqnJ3XNAjdaOWjten9G1PCwZkGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A1xCQlkYMrQ3Ia2uID172NFfkZ5VG99v4QSSpllJ3n4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:07"]},"IP":{"Case":"Some","Fields":["132.226.207.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8001:af00:51de:63da:55f0:e2cc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortisserie"]},"Identity":{"Case":"Some","Fields":["aoTB20xQk0pX4T/H+T6lIXug2rY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pzoFe/wHkUKWJqoNah3Y9hyD7zPKUvVMPD/iy90lOJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:08"]},"IP":{"Case":"Some","Fields":["176.9.57.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortedabo"]},"Identity":{"Case":"Some","Fields":["aoQEEY3qKsh/MyZBmiG9413EP8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kMNwMPjcXak9uUiWg+TzJDhyIvFt1OXe+dLRgzT1xHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:39"]},"IP":{"Case":"Some","Fields":["51.195.29.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMachine"]},"Identity":{"Case":"Some","Fields":["anVR7uGPeKmBMJboK/hPdA0yuRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fGzGJjNL50fAMxFyFJ1dEQ4WYi70jSqjT20ncs93na4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:31"]},"IP":{"Case":"Some","Fields":["95.217.16.212"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:609a::1]:587"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frogger"]},"Identity":{"Case":"Some","Fields":["am9t2gwfB/7Doh5EAe4jUzbsbtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aRDgoTOSyX7IbVu/k5y7YzxYu2Z/OdHaAWU64mR0EV4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:33:04"]},"IP":{"Case":"Some","Fields":["198.24.168.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["amo0tV3xsKHZc3ZyHnZpomrNRHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w7mbSCJCszZWk82kB6Kqsdk33lzK1eNfgh3VCzfuWtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:45"]},"IP":{"Case":"Some","Fields":["91.132.144.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:3:e842:2ff:feb9:c49c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snub"]},"Identity":{"Case":"Some","Fields":["altlC4MPQIKG/4cHGNPQC1aLcEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3VFE0lwgyY47pqeUNNuuEkjVzahUflfNON1EaYoK9UI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:49"]},"IP":{"Case":"Some","Fields":["205.201.63.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fce8:1::74:6f:72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nnvr1"]},"Identity":{"Case":"Some","Fields":["akZonG52eGif/WUGyzm5ew9Eh6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OqpaKlVT2tlQCj+oAdP/IeDo4582eGLA7vbSKQ8tz68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:59"]},"IP":{"Case":"Some","Fields":["89.39.149.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ce0:61::4fb:0:2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maxomeister"]},"Identity":{"Case":"Some","Fields":["akEqCe79GRreTuSvC5hhHhChVAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuI8YPujS7VrTVtLP49IGeUEQw8Cf+mQrXfck3pSlTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:42"]},"IP":{"Case":"Some","Fields":["193.218.118.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::160]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["magritte"]},"Identity":{"Case":"Some","Fields":["ajZYcHWKHj56nuDoK8wNYiap6qo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pQl5toACHNrvjM44Yui0GTAPrdiGlVqwooARHYG20yM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:42"]},"IP":{"Case":"Some","Fields":["37.221.195.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:503:48d:bff:fe2a:1010]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ajL3S4UdKD2ps9J+qzDGMsVThdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ug5FxTBZLtllerEcEvkEpgBpJZcPOPgYa+ZO8zUD5gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:09"]},"IP":{"Case":"Some","Fields":["188.166.91.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangstatestOn175"]},"Identity":{"Case":"Some","Fields":["ai8MBVoc3nd0G6fZPY+uhWyG9Uw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GeJ1zk/GS7iE0utmyYbEah5iMCSvLp7TGs8Ot1pyrqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:45"]},"IP":{"Case":"Some","Fields":["31.214.144.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:6d::175]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurodump"]},"Identity":{"Case":"Some","Fields":["aiZ22sr9vQDFuUvTQ2kJV6Ert1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["neg92ALjaFrmZqKiU73zs9KyYhI9/Vacvcei2ZlNHKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:42"]},"IP":{"Case":"Some","Fields":["116.203.93.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:86ca::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infernx"]},"Identity":{"Case":"Some","Fields":["ah8EL2HkAbwePybt5yKr/mf+WQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5XTkQNZO2Y9Vr2Ihtvb+ttb6lWNvMJ4iWb6RDJlwnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:29"]},"IP":{"Case":"Some","Fields":["24.96.60.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["minty004"]},"Identity":{"Case":"Some","Fields":["ahr1xVmFoy5ERi0/XP6xcBQY2dw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bkxdxweif7LYyNbyi8efS4vn6Gv3exdrEYaO8x61U6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:49"]},"IP":{"Case":"Some","Fields":["91.250.81.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:488:67:1000:5bfa:5134:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ready1"]},"Identity":{"Case":"Some","Fields":["ag8ajc3BXF778wORFXigCaNtEe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oNcQOe0x8z2sJCepDqPRhBLvGOM6FLQHfPjIXO48TsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:24"]},"IP":{"Case":"Some","Fields":["174.128.250.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber63"]},"Identity":{"Case":"Some","Fields":["agEVDqsEAH4uCNnGA7FGcZOAWwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTSYxPOhjfQYuLv85D6U6//4MvkjrTZqbCwwirAxuMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:56"]},"IP":{"Case":"Some","Fields":["185.220.101.0"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4t01"]},"Identity":{"Case":"Some","Fields":["afi9QZk0FoUp58oVg5w4uRE+fbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pgy+jT1P3+Rx1EsVH8dRQoIDTofTqIlZbSMcBhmFdwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:38"]},"IP":{"Case":"Some","Fields":["178.63.41.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv22"]},"Identity":{"Case":"Some","Fields":["afg6FzcYRqC0unobjL0OHJueotQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+3+x6b2+dHC9h7AigeZhEkTr5bddN7ERkiWlu8fhCuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:24"]},"IP":{"Case":"Some","Fields":["45.62.224.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["afbH7TuA4Rcws8JZjjWUjoxiEns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["obB4RZaERz4EvSeHHu0L0cN2Du4yn42SsD4l4f/Hnv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:38"]},"IP":{"Case":"Some","Fields":["62.182.84.46"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Orodruin"]},"Identity":{"Case":"Some","Fields":["adnl8g/jsMhyk2veQdE2oPJNaZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["adkLkqIdhZg9wCMWoXIi2p7Tu+nBCIKkFFCnShAgWBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:06"]},"IP":{"Case":"Some","Fields":["135.125.25.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d1bf:b0fe:3472:9c9:60dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay22at5443"]},"Identity":{"Case":"Some","Fields":["adf++bACY5PC/XPol8ccECq6ylw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LRrW2vsw1uCYC6ex3PkmN0jPUl/oGk3tU1145jDaZ2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:04"]},"IP":{"Case":"Some","Fields":["140.78.100.22"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlvnCoAlpha"]},"Identity":{"Case":"Some","Fields":["acwlc19+ndPYicEb/z9pUBpSp34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p79vzGCGsQRSjLgdp7HDZhQv99eJMc35+o8ha+MoAFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:52"]},"IP":{"Case":"Some","Fields":["172.107.176.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["acm/oMIor6BUip/5t8jCKbaqn6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/3yAe0hTTZvXl2iUUjKNArrS+6/X+l6KYDO69yLnif0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:20"]},"IP":{"Case":"Some","Fields":["51.159.158.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fortherepublic"]},"Identity":{"Case":"Some","Fields":["ackSU8+rViOebD71WBYJxvH/i5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HZsB1LQE+jJ3oETpXLmTaRA3TqtAa6aQHM26OJWCd40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:18"]},"IP":{"Case":"Some","Fields":["148.251.191.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse02"]},"Identity":{"Case":"Some","Fields":["abU6WuUCXaiUf3wy9pypA3XtKk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdOZjOyj56exl1VhVDiWH1bur54Hu/sPA8/GzaaABNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:35"]},"IP":{"Case":"Some","Fields":["185.225.68.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etai7ieHaigh5Hug"]},"Identity":{"Case":"Some","Fields":["aabfaBtkmo5KvXr56IP2GEJvLCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJjNPXGY45xnOmx3CH5WJWyoTMHU3nd7CoOZctWnE0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:19"]},"IP":{"Case":"Some","Fields":["83.250.228.119"]},"OnionRouterPort":{"Case":"Some","Fields":[5574]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakeSARGE"]},"Identity":{"Case":"Some","Fields":["aZcBPLd7b1MFQDMmJsI6z+UsUJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEqDiE4/xyzVSiCVv4Qekhfv+w1oeI+8euSd+bgkoMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:36"]},"IP":{"Case":"Some","Fields":["5.199.162.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sovereign1"]},"Identity":{"Case":"Some","Fields":["aZZT5d8JS1Z3UnX4pPS/p8W9Xi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kndb+FzVXIfTTA6C2aqgCSV5aepaHD9wHJzySJGVMH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:07"]},"IP":{"Case":"Some","Fields":["178.170.10.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::506]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greenlantern"]},"Identity":{"Case":"Some","Fields":["aYuHCM9OoC0nygknTzNRtPZqWDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYNHGufEQBNM7PVmvkW5gdBDAsmA+RFgw8A6kt/Hn00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:27:42"]},"IP":{"Case":"Some","Fields":["179.43.158.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2lhvmct"]},"Identity":{"Case":"Some","Fields":["aYLXidOHXCFDPW7hCDisX9xrqCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gnG3CxJBSnkoc/Q1s1EARYd8e89Q35Pb9gR+znzzqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:14"]},"IP":{"Case":"Some","Fields":["78.31.67.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc12"]},"Identity":{"Case":"Some","Fields":["aYDG7aQduHLMrL3bIt+sxmQnRuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r5K6k5uWALUUPeuEx19TWg2Fa/RFIzYp5UkGkIssFjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:37"]},"IP":{"Case":"Some","Fields":["185.100.87.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgUK"]},"Identity":{"Case":"Some","Fields":["aXTR1l5CF283nlQ65XiN6FWZ40s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWdT8z2XkOR+8eAn10fG9L2wjcyBSzC/dLd+ZHfRxr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:50"]},"IP":{"Case":"Some","Fields":["77.68.29.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["aVSNT1EjqzmAjMnjtOXBw2M1M1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWGN42ks39MfCRMEcyPCrsh/HcjXUge9TorPfY5y/QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:09"]},"IP":{"Case":"Some","Fields":["163.172.39.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tron"]},"Identity":{"Case":"Some","Fields":["aVKmx6E3u63MtdxGmwpNBkcxLlM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WabPDRRRhzrLmR9iEU3oW+WDqrLb1knSRDXPtcq3qWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:23"]},"IP":{"Case":"Some","Fields":["192.9.249.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c001:207e:2b71:7031:c7c7:abec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["octavsly"]},"Identity":{"Case":"Some","Fields":["aUlwNmUxiVMSB3RrPQ5Oy1aIjzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VYt70xBYycs3p5Y5+4tlxYjAauGOt/Fw3s6x1SHgkN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:18"]},"IP":{"Case":"Some","Fields":["82.168.32.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor"]},"Identity":{"Case":"Some","Fields":["aUAkfgTIOdJoVD5/YlZqkeQFZ+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e6x9IhCQwoZxG7LAIOoHn+L7+eYJwdsRMQzZ6Vj8JUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:06"]},"IP":{"Case":"Some","Fields":["136.243.229.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:ff99:0:c:1337:ffff]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["m1an"]},"Identity":{"Case":"Some","Fields":["aRbXEyuwN2WAkUeGfjMDU41Ks9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LFJkCb4xozW9a4e9cVlPz/5WeGPvKMuzrdNRF3BzxEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:34"]},"IP":{"Case":"Some","Fields":["178.254.38.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:382::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["URKIGOM"]},"Identity":{"Case":"Some","Fields":["aRIiltN/x9M4dT4+wZvGZqEFZqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlN50kdh4ukgPORPKtdxuuzgqiqUSI37AixWwZ8zocs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:25"]},"IP":{"Case":"Some","Fields":["82.165.67.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:80b0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomretorng"]},"Identity":{"Case":"Some","Fields":["aQ2kLJxHV3o4M5TOSvYb5iiCTiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL5u1on2a/qbJVmkv53+KnO75um1iWNFWNrhz6Kjzjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:35"]},"IP":{"Case":"Some","Fields":["37.187.138.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["aQQtazAfCAEF0RR4pbyEjrC11ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HUYXZPM572GY26sqcSii9SCDxRoRSx4Sg6uGN2V5ZH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:03"]},"IP":{"Case":"Some","Fields":["185.244.195.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:747:4804:22ff:fe7a:e606]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor02"]},"Identity":{"Case":"Some","Fields":["aQQtDcM72BC9CK2tvH6Vo8q672Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlB/P1jUtWaro2fRV/q02p+M205OCr0N/RTvf09qOpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:50"]},"IP":{"Case":"Some","Fields":["192.210.233.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etam"]},"Identity":{"Case":"Some","Fields":["aP+l42uVJXb5NODAlC8+Z7L9IRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HH6gYL9c5Swp69POSMWPBQmPjG9lBm+7npSgPvsyjZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:18"]},"IP":{"Case":"Some","Fields":["80.72.43.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c90::25:2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORminion"]},"Identity":{"Case":"Some","Fields":["aPvnKw1BHDFOx/Jyy1s/FMJCkkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M9JeNzH6K6s+wY115KK/OOiAAZLxnnmeOHjzanv7cCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:01"]},"IP":{"Case":"Some","Fields":["195.154.255.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Caribbean123321"]},"Identity":{"Case":"Some","Fields":["aPmqLZvTCT38MPwtyVbJiUeEo/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BnisfzM01Kw0AfDilovjcTgmlhKw1mRoQUxMvpsLbYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:42"]},"IP":{"Case":"Some","Fields":["45.79.158.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:93ff:feeb:5a7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pichincha"]},"Identity":{"Case":"Some","Fields":["aPF1zKvnJ6otIwm82HiUmc7jbtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7aldw47rMCx834bwYfGEoiaBfkkxUNwml4WmRil7vWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:53"]},"IP":{"Case":"Some","Fields":["163.172.139.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip2a"]},"Identity":{"Case":"Some","Fields":["aOxlfcilh7ONXXdj1ccuk8LNRWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DjjtMYTjsAOTU/J60Fv2NlpMAMISBm2Z87GDaYIMsLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:15"]},"IP":{"Case":"Some","Fields":["185.220.102.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::249]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sFtor4"]},"Identity":{"Case":"Some","Fields":["aNKr2TYjOlaeK0bWIogWFJoWtPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yyYp3A4haKibKWtQ5wuJdOZlCiCEJ3eU3stgjG6vTN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:40"]},"IP":{"Case":"Some","Fields":["88.99.31.186"]},"OnionRouterPort":{"Case":"Some","Fields":[34746]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["aMO1QOXRUUYaN8se2ShWPsO2zcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vypZHwE+v3kvicmerMpjABGT1Rnr9rxJUbM0OBKC/x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:51"]},"IP":{"Case":"Some","Fields":["188.68.41.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vpskilobug"]},"Identity":{"Case":"Some","Fields":["aKnw3/x8j1ez3qOAHWzwAWUqgJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UOqeKt6zrRqA39j1mgWe+wivNtbVmpY7rFVY3YzeVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:57"]},"IP":{"Case":"Some","Fields":["213.164.206.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["aKVOGA93iv6Wx5BqUose/t/UKkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9gmSPz3QxvIsoy6re7IYpiGtEIAnETOgAC6cZn+A/LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:27"]},"IP":{"Case":"Some","Fields":["179.43.159.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thedevilskey"]},"Identity":{"Case":"Some","Fields":["aIPHH6t1fmRz84JiSQrkNv/R6Og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ojjK7r30h1vclbVw59/gJSEVM889dsfcU18FXQ/urwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:18"]},"IP":{"Case":"Some","Fields":["46.105.54.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CompassMetal"]},"Identity":{"Case":"Some","Fields":["aH0Dwtvf8KnJ6PZFFRg60iZr4Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsU6R/g5PUbE5lj3+sdFREeTB6XnHIYVIIar0C6ZFk8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:05"]},"IP":{"Case":"Some","Fields":["37.120.187.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:80e:4860:48ff:feee:9d88]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit9"]},"Identity":{"Case":"Some","Fields":["aHhUHiYTlG3OHkVDaRkCY9RzunM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdXBi2tzo3haWaHGELEFcmnP1m8G9ThAnt0BIkDMFIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:09"]},"IP":{"Case":"Some","Fields":["185.129.61.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kyu"]},"Identity":{"Case":"Some","Fields":["aG7sO1EFi4JDCTxN5HMZIyy/3MY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eAC8rai8EGPKbrP92E8++ds5ZzObmb4VXH568Ck2lrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:00"]},"IP":{"Case":"Some","Fields":["188.240.210.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:c1:7::fc6:f87f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tortule"]},"Identity":{"Case":"Some","Fields":["aGxqdE3Z16DAfP05W0WnILfHR4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qx0Qf0RfjIw53NEuq0wgQIK5lVYxXw3WoVvWktgrpoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:57"]},"IP":{"Case":"Some","Fields":["109.130.20.208"]},"OnionRouterPort":{"Case":"Some","Fields":[60501]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Plutonium"]},"Identity":{"Case":"Some","Fields":["aFnXHj4TI/lZ+eBVnoOpCIxGJoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k4RvSFiC/rKKAein9JDTcBhEjxRGaYNpod7xuOXGUTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:38"]},"IP":{"Case":"Some","Fields":["23.137.249.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:1fa2:23:137:249:143]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nevrlands0nWgcTYg"]},"Identity":{"Case":"Some","Fields":["aFa8nneq4OcsTg+PxMjhutcAf5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1N6TWhmmATUrd7DEM8eMs9GrMxSWjsvUcnE6x8Lj58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:57"]},"IP":{"Case":"Some","Fields":["89.58.27.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0147"]},"Identity":{"Case":"Some","Fields":["aFS+H/Z2BuKLalAMJb48/OT1PdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zasb+FCbMljM1uvP4hQTCJRbJrk+XYBDycPmH/48rYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:11"]},"IP":{"Case":"Some","Fields":["185.220.101.147"]},"OnionRouterPort":{"Case":"Some","Fields":[10147]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::147]:10147"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nixytor"]},"Identity":{"Case":"Some","Fields":["aDpC79TWULg5iECjoZyjnNlhx+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OzZ4qMJ1uLHQhCyjGacmA31M236a59ArOI4KPglgWtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:28"]},"IP":{"Case":"Some","Fields":["45.79.144.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe24:47be]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CytraNet"]},"Identity":{"Case":"Some","Fields":["aCx4MVdXXWDWV/i2BSvMjnhUGCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["08BHyjoklf5V3oYL6yPWcXOEdgLQjYwdCnzLSWGHpPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:26:37"]},"IP":{"Case":"Some","Fields":["162.251.237.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["aCfidzuOtLeGC3d1qQup1Y1Ho/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FqGDyl2hXAP2yq/kzgdCSo26BCUmL1lG+UG3zgV93Bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:24"]},"IP":{"Case":"Some","Fields":["23.128.248.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer23"]},"Identity":{"Case":"Some","Fields":["aCfB6bsFCVeLUocZkLPQZ1hq7/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x19Q6bvahXAVwpS2lscusz07SOGP5nJODoMG9R0iFYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:03"]},"IP":{"Case":"Some","Fields":["185.243.218.46"]},"OnionRouterPort":{"Case":"Some","Fields":[8154]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:46]:8154"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a9"]},"Identity":{"Case":"Some","Fields":["aA8hKt4jMRxljMVg2vgNtC/rhd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YkxXNZ+gsxTaa/k2MSY7O3CrAjprTmycp/z2kKBgQIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:00"]},"IP":{"Case":"Some","Fields":["5.9.12.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:160:82d4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi"]},"Identity":{"Case":"Some","Fields":["aAW9inFLpbW2yEMkfgDtjtV/YfY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PbEuFxxxmJP9cIOCNkWW9Vi5FV7yp6zuSDgYkLpcUYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:58"]},"IP":{"Case":"Some","Fields":["46.28.107.138"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:0]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4punk7e2"]},"Identity":{"Case":"Some","Fields":["aAV/0wKw+DwO0AttcP2ta+7yAFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjDTkop6xcBJ624o6q7Fbu06FEwQfFZ9hsyC0L6Okpc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:01"]},"IP":{"Case":"Some","Fields":["193.31.24.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["getrekt2"]},"Identity":{"Case":"Some","Fields":["aATUElW2X3DNN9/07/Obrm6u6sg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+I9YDNMM0NpVD/Z3rP42AA+4GVb1xpMP193fZqZFiiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:38"]},"IP":{"Case":"Some","Fields":["37.120.137.217"]},"OnionRouterPort":{"Case":"Some","Fields":[25263]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eatMyCannoli"]},"Identity":{"Case":"Some","Fields":["aAKx96rcFp3YZ1Be934QOqKprvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yhxUk7G3nMWjxnCVlmjAxfIU1TS/r/AjdQ96dIzkV1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:04"]},"IP":{"Case":"Some","Fields":["5.13.201.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG2"]},"Identity":{"Case":"Some","Fields":["aAFqmsR3rgObjuB8Nsq8BEASamc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ovF8fYyEnyWwFJrRGbbErJtkRUpmyyhGwArk1nKtYGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:51"]},"IP":{"Case":"Some","Fields":["193.189.100.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::195]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hubble"]},"Identity":{"Case":"Some","Fields":["Z/WsNduiDSKgF4v7b0rAdsOxaCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AOLr/2dYPdK7TJaReF4z4EDSuJ3ykg0ybxnBbclCMbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:48"]},"IP":{"Case":"Some","Fields":["72.89.32.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet2"]},"Identity":{"Case":"Some","Fields":["Z95ychWc/mKM3xfSpxmm45W6pMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gkCSwfhHajCpYtfBNnpcytLBWYwl7/n2K+YVGFGT56E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:04"]},"IP":{"Case":"Some","Fields":["185.246.188.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:3:19::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlockHouse4"]},"Identity":{"Case":"Some","Fields":["Z9HYhb+IuvXcbTHO6IGOxfvjs9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aQOp+NUmlSs31xmveL+tSkmd2yjM5B0pxedW4vQzkT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:31"]},"IP":{"Case":"Some","Fields":["130.61.98.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["khao"]},"Identity":{"Case":"Some","Fields":["Z833pNBumOVarllbvr845kxMy/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ODpSl5DUN42wPWUgG75IVZKAGFxolKVyL3+J3czqNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:16"]},"IP":{"Case":"Some","Fields":["87.236.194.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rotkraut"]},"Identity":{"Case":"Some","Fields":["Z7dR/xVudva3Fb26LyPPLTvkPPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["py2mcnrPUH3UmMFeZhqj2Qe213d1MoGTOYZZ3VrLO+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:03:30"]},"IP":{"Case":"Some","Fields":["109.70.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::7]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckfbi"]},"Identity":{"Case":"Some","Fields":["Z6VO232t27weigfx74I2S9qolrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jk8rhTSvpTzZch3KkJt+zQKr50/F/OA7j80oFggB1Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:18"]},"IP":{"Case":"Some","Fields":["148.251.51.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:1139::2]:9993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["420690RelayOne"]},"Identity":{"Case":"Some","Fields":["Z6BQsoVQOvE9Oc+1Bqkrh+h5qlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mrCk8M2r2qbazFvBlh7Q+o0EkRabrNyl20ut/y74cZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:42"]},"IP":{"Case":"Some","Fields":["208.87.135.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:10:0:1:43:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonfrazUrbluu"]},"Identity":{"Case":"Some","Fields":["Z5blMWBxTZCLObywBYz0iP+UAzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v2DpJwKA3PrrcQBwI4AzDHG0RsxXCozEkySegwNoknY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:39"]},"IP":{"Case":"Some","Fields":["185.220.100.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:6::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyPiRelay"]},"Identity":{"Case":"Some","Fields":["Z4xGdle8/u1MPVsSgzJmwXyx0ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UE5YgcQOO85FU+bW7NpCxtOmEP0tYaz3PlNbj+7N8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:17"]},"IP":{"Case":"Some","Fields":["85.228.41.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["abnormalbonus"]},"Identity":{"Case":"Some","Fields":["Z3NHRB/dKuoivTZKcXTSd+kpslU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYIzoaVr57QSI8BmYBolptZZR/3Lq1YNr9eLIoOrGhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:35"]},"IP":{"Case":"Some","Fields":["194.180.191.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde5"]},"Identity":{"Case":"Some","Fields":["Z1z6w4vjyaJsOi3Xy8DmFvaGJMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1O1JNE233TqnOf8pTHBQW/kEv3jdTK9chc9cX0BRZVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:15"]},"IP":{"Case":"Some","Fields":["136.243.60.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:212:1b8b:3::8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torshark"]},"Identity":{"Case":"Some","Fields":["Z1ScdD63qdBqdeN764JBfrsi6X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HAnnDeUIc9nQGsg2o5LqPZgr8tL8bQejE78IiT+buNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:27"]},"IP":{"Case":"Some","Fields":["195.154.252.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomHub51"]},"Identity":{"Case":"Some","Fields":["Z1GsD2/BHbX6jLL2DPUU9H6SlwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCvahebX2/7jB/HUNSQoYyhuxzvN684+Bez6D938NrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:34"]},"IP":{"Case":"Some","Fields":["95.217.14.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3b44::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mainframe"]},"Identity":{"Case":"Some","Fields":["Z1EOU0GRyRFfCAxFZbLx80jN+ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SYZfRx/yiw2ebVFlaeKx88W/yBG69u23GOQZd0nbyOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:53"]},"IP":{"Case":"Some","Fields":["79.201.240.5"]},"OnionRouterPort":{"Case":"Some","Fields":[24192]},"DirectoryPort":{"Case":"Some","Fields":[22154]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Z09m19jG8N+Zl7PJQjqhU8mI/nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEIEZdmY9zAeHrYuE0ZZMG03G0h/MdEYCls4xCTPYkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:46"]},"IP":{"Case":"Some","Fields":["185.220.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::200]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex91"]},"Identity":{"Case":"Some","Fields":["Z0i6UxCXqTB3b5DiC277o1GaI8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzxVNJlNqEONIIrJf8heTipgHEGsW0dyWme0aXSmcZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:04"]},"IP":{"Case":"Some","Fields":["199.249.230.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::180]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elc4"]},"Identity":{"Case":"Some","Fields":["Z0KzTnNcDd1nuQkg7yiBlzi2PsA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+32In4WjIsPNNP0edTidnPUVHihUK4GoaLMFDm+wDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:30"]},"IP":{"Case":"Some","Fields":["176.31.35.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:522c:24d9:6a97:78db:2bcb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute20"]},"Identity":{"Case":"Some","Fields":["ZzwIGpUC1dOrk5X/QlcnS+THqKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5R0eh84EDHUnbDO4cjnMc64xWlEGiWHVmWni651kZHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:23"]},"IP":{"Case":"Some","Fields":["185.220.103.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Zzq1sQHHrrQE8Q6d9ig8UN5Owvw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cBNJtUtPVenWcSYGEHlBVGiUr3L7GdlwvvLPWhVsfW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:58"]},"IP":{"Case":"Some","Fields":["46.227.68.55"]},"OnionRouterPort":{"Case":"Some","Fields":[17497]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recklessbolter"]},"Identity":{"Case":"Some","Fields":["ZypWpYPGWDcuY6zrQ+f3kcKBlUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yv+3A11/pfQBm+6u1qpK4QcQBLnp9gPGWHj0aK0sUTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:57"]},"IP":{"Case":"Some","Fields":["80.253.94.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BKDRwUuF"]},"Identity":{"Case":"Some","Fields":["ZyV8otPvcnroM5phhLHVaz/bL7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQ3m7TOJ83rRNdsX0nW3KkOGK6Pka3l24DPfDqs9sck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:03"]},"IP":{"Case":"Some","Fields":["82.64.162.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CaptainMarvel"]},"Identity":{"Case":"Some","Fields":["Zxpoq62hQC+wBnYFX0jqEjubBgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nL0DmbQldrk3AgbV5c+TstGECQGhP9GHDtWqzaiOx7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:44"]},"IP":{"Case":"Some","Fields":["212.162.9.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node3"]},"Identity":{"Case":"Some","Fields":["Zwx1F/hSXox4edbdd3pbZkdbgEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["revdlcSdQzNZSi9c5eoNwg2p/McPZ1wSRzzCTzd5/co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:22"]},"IP":{"Case":"Some","Fields":["141.147.62.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:7b4e:e634:7e58:3aaa]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FTMNET"]},"Identity":{"Case":"Some","Fields":["Zvn9uINrvDtENqCNVoMn0b4JINo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["09L8/1U4XtuYMXu4H8jAYGjWrk5aBqEg7myANhjZ9fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:35"]},"IP":{"Case":"Some","Fields":["94.238.241.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH116"]},"Identity":{"Case":"Some","Fields":["ZvhaY3+yn6kJ8HfH8QpoVAI/iEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXKcMLSinWqyLN96oZlIr0/ANEO8+/xxMXjqtBlEfew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:23"]},"IP":{"Case":"Some","Fields":["192.42.116.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jehovax"]},"Identity":{"Case":"Some","Fields":["ZvdB9TvlEkOEuneJUVa26ZdtP6Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/ZPBScYYUUB9FgnQQLDuNzHM6557l96OHPhi9hXXz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:30"]},"IP":{"Case":"Some","Fields":["5.2.76.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt56166"]},"Identity":{"Case":"Some","Fields":["ZvRcnLkB67TPJDcKpWomJVB8yVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9b5qoE33yR5Q3KeoL5YBrVnlPfB3NsDn06vT7UqRkg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:22"]},"IP":{"Case":"Some","Fields":["185.245.60.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex37"]},"Identity":{"Case":"Some","Fields":["ZuGejEdzCG9mmh4Go/jCO2wHkSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jcjh4STvjI69BvS2uLjmU09+2Z/Tgb0hunHpVoIewQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:58"]},"IP":{"Case":"Some","Fields":["199.249.230.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e656]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Seccom04"]},"Identity":{"Case":"Some","Fields":["Zt/FHnJOON3LOrZ930wLsPH0nAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ki2MHufPOPbiQMOeW9Mi2t48thH3Zf3NGAn1ueF38Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:37"]},"IP":{"Case":"Some","Fields":["51.77.111.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:1000::db0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ZtxyZm57+OPn6z6YDU4mXFQ1r7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EU2LBRhgV/SBzZN9KvI/TO1XUHMGYL7wpuTsaGoAm2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:46"]},"IP":{"Case":"Some","Fields":["185.220.101.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::32]:10132"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EFlat"]},"Identity":{"Case":"Some","Fields":["ZtuDEYUFZT5xEMRSDfFDtbc2WK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gvv5ImGm/m/4US9y5MpQiYIUmQL7LgHoDnStKDYQlN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:06"]},"IP":{"Case":"Some","Fields":["51.195.166.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["globohomoEvader"]},"Identity":{"Case":"Some","Fields":["Zs74BYlZNqpVHgWpQjTLmlmYGvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IUAHZS437RL4t0Nl+tmpN+k/1hsZg04vAgY53mYUC8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:02"]},"IP":{"Case":"Some","Fields":["86.128.226.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c5:ed96:1501:6066:7572:d5f3:6c2d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kbtr7lv"]},"Identity":{"Case":"Some","Fields":["ZsEC+l3fSMnu6wSMFjCTO2bFDsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vRK1U2gvzbwsGlhh29nYgNaaxgBnpF4VGK2KO6n3HzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:57"]},"IP":{"Case":"Some","Fields":["94.140.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hilda"]},"Identity":{"Case":"Some","Fields":["Zr05/oBa7UFK3kAMqthiycw6w04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DPK8HhOT6kNfEgkk2wbXC2iB+12b2Wfa76kXjuDj5qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:35"]},"IP":{"Case":"Some","Fields":["109.238.11.185"]},"OnionRouterPort":{"Case":"Some","Fields":[51101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f12:372::2]:51101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor4"]},"Identity":{"Case":"Some","Fields":["ZrvNDVj9uJGths4iomE6m+48onQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iSSBOJGuDWmfOf02wDmbqpJr8wvClAVs6TRhZKF3js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:06"]},"IP":{"Case":"Some","Fields":["51.15.113.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:935::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedcDc"]},"Identity":{"Case":"Some","Fields":["ZrrEiL7iBGX1aek0PUQcthldesI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xSIykaJWqva6gjOD6Ov62IVTkiGp/AHbTf8pBPKfMLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:03"]},"IP":{"Case":"Some","Fields":["23.154.177.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daytoner"]},"Identity":{"Case":"Some","Fields":["ZrBtWb38kOvG7eecVYJ18s1HmbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9XJqLCCwPLKymUpvR/7QmlJBwVTAQ0KKdM1+mdjAwgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:56"]},"IP":{"Case":"Some","Fields":["212.74.233.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AxxoCentralRelay"]},"Identity":{"Case":"Some","Fields":["ZqtcDJYifhac9VdsAL8adHacP0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+FVsUoVkShXmjnpGcrBFJyqCrQXuAkrnESE0MhAtTJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:01"]},"IP":{"Case":"Some","Fields":["85.239.33.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5140::153]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HRMB"]},"Identity":{"Case":"Some","Fields":["ZqmKUkW2s/W0FA4E+usSCF/GpQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6484p5qmikAqspwGSLMPXBW2KqT6qXnHhbRUKBZr4MQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:56"]},"IP":{"Case":"Some","Fields":["94.130.239.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:110d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionsalad808"]},"Identity":{"Case":"Some","Fields":["Zp+7+V0nPb02lrZjegbhK4sYQmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dWS+OvaYJ+ERIx5ggMAckRVYNR7M5yHes3hrS5iDT/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:59"]},"IP":{"Case":"Some","Fields":["5.147.111.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnMyMomma"]},"Identity":{"Case":"Some","Fields":["Zp84sFmCUOJeIhvD9meC6NXmaa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tiqqU3mqcj9Rb4gMBQ7wXVa3JQMTf0IQepSm+HLUa1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:44"]},"IP":{"Case":"Some","Fields":["45.139.122.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justanothertorrelay"]},"Identity":{"Case":"Some","Fields":["Zp5QNLbeLix8+8+erI2fWkd1eZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["52KLeNfpkUe8CIZTeovcCK/BKuOWCLE6BBjXv70vLO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:59"]},"IP":{"Case":"Some","Fields":["93.180.154.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::1d4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZpE5yMkAAtxaCyQftDKQxVKI64E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GJp0QXXfh2XMYL+YJXDDxTfp4X2SO+OO0Rc70zfy9DI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:39"]},"IP":{"Case":"Some","Fields":["150.43.61.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quiv"]},"Identity":{"Case":"Some","Fields":["ZpEC5vqOEWrAX+gjsGNLREmZROM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SCfvu6Qkfj4jYeOrlroWCSom1aGDSPzj0kHHTngvyMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:58"]},"IP":{"Case":"Some","Fields":["94.100.6.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["getrekt1"]},"Identity":{"Case":"Some","Fields":["Zl09NDizJqUZbK0xP5VKj+DmP+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fx8/of4+2ibhUbTOfXw1TL6YJH96+jQvrbRmjerdQDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:10"]},"IP":{"Case":"Some","Fields":["178.254.40.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tainisia"]},"Identity":{"Case":"Some","Fields":["Zi21Ulgca2yALxgvF+vUvMNZASE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LqGoH8sJ1Dww38/NFi3GsPin53uftubqRz/jOtTqCw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:12"]},"IP":{"Case":"Some","Fields":["130.193.15.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tacklinfuel"]},"Identity":{"Case":"Some","Fields":["ZidLtIOD+ElDAzmS4hgN1k4l9QQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m2lZvJUEv1SxsfnGLzHlbRckYVFTnODHxFHACAXnQig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:40"]},"IP":{"Case":"Some","Fields":["104.225.218.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:1:0:1:1df:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber16"]},"Identity":{"Case":"Some","Fields":["ZiTm4MV6Y7aG1FFQeH3VbD2e6Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdPtVA8bFyOOub+13ISpSHd38RBgj9oz4nizgcGj6C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:26"]},"IP":{"Case":"Some","Fields":["185.220.101.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::8]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ExwMiaTigriMesaMou"]},"Identity":{"Case":"Some","Fields":["Zh4IU0+r2+CbpQX3pzhINxxu9zI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A1iJwu5Z1mLEsRawYRXbDQSTVfBbSYcZiqJDW1JH2Gg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:45:46"]},"IP":{"Case":"Some","Fields":["83.212.72.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:648:2ffe:501:cc00:10ff:fe8f:490]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["ZhDcGvf0YY9br7zcqHAncrJBG3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eW9vvJvgADkTwP68Q33+US1bBIuzbLzVvSZyBBF4iUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:08"]},"IP":{"Case":"Some","Fields":["23.128.248.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::227]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stimorol"]},"Identity":{"Case":"Some","Fields":["ZgDFYOfip2Afb0sBmULJ5NR4cs4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlhWrpK4AxQ6TrWzdA60r2ZWsuIgXvC7aBuN/mPuuYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:59"]},"IP":{"Case":"Some","Fields":["185.236.203.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse03"]},"Identity":{"Case":"Some","Fields":["Zfhv2LksOsAYh9hrIXHmV9XBn3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K+rwXWV+QdW2Q3UucyTeSVGhJTp3FzP/IWWL3F8Exe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:46"]},"IP":{"Case":"Some","Fields":["90.146.176.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schnurpselpeter"]},"Identity":{"Case":"Some","Fields":["ZfOcoeTO9LtepdJvaHWZIFr2FQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aNMs4MCbu5ALvt1x0je7sk0ak0IsyBaIq28+B5fQ3rI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:16"]},"IP":{"Case":"Some","Fields":["87.106.229.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:61::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emankciN"]},"Identity":{"Case":"Some","Fields":["ZfJP6n5TFRvM3C+lRkUwBhhd0GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lZg0HM20SmBU9hHjDG9Tl+QF8aNvXI6uzNujgsTRric"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:57"]},"IP":{"Case":"Some","Fields":["37.75.112.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow006"]},"Identity":{"Case":"Some","Fields":["ZebrZ2YzMoreO9MWilkTTN3SHhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DD2VuuCj2yiu7uefmUEYHzXR6gXUqz0fUNM7p9kqNTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:59"]},"IP":{"Case":"Some","Fields":["185.195.71.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fangio"]},"Identity":{"Case":"Some","Fields":["ZeQPft0o4s8oaE4w4Lq3cGgZz8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YqvZRbCmu221VC4JHU2dVcU1dilNk+B8mX+ZSyg9qJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:43"]},"IP":{"Case":"Some","Fields":["179.43.169.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORRelayCAN"]},"Identity":{"Case":"Some","Fields":["Zda/sxl2LzSgFaXGieVuZUS8elU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le9rbGroI5J8uY76rBWqevDxN7hWTqHi8qWgQWb5um0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:10"]},"IP":{"Case":"Some","Fields":["192.222.169.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayTexas4Tor"]},"Identity":{"Case":"Some","Fields":["Zc1F8/q2zOjXGlqdLuAQpSs2kGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ooOmL9eqoLmtvsSZi1Itp8wofuCZbLYzALMjjP0BHKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:29"]},"IP":{"Case":"Some","Fields":["144.172.118.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:34f4::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZbyluV02MXca81jMc5M/hbaN36Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EgYs9XUsu5FTPre/oKis2zyIOwVXPnPS3D3LRLHuYHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:14"]},"IP":{"Case":"Some","Fields":["45.79.197.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["ZbqUOZLVwOUxHqoWoW3ipV8WS7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lrf8ClbOKvmjvHslcyNHSXxiFqDmvStmBdGbTVpeYi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:24"]},"IP":{"Case":"Some","Fields":["108.175.4.33"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:80fa::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldsworthy"]},"Identity":{"Case":"Some","Fields":["ZakKuBxE3X2bc7VSmxFReYU0r3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["myzRM2GTvG8SoopQi7O9xkUZgRuaXj6L9n652g3FIKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:26"]},"IP":{"Case":"Some","Fields":["160.119.253.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ZaOY6aaXpGRZN7CGzaHZpcV7lQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTgCPcHsJMHwRt9UIVKT1qV8BzKZAwQorMueI+y9ncI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:00"]},"IP":{"Case":"Some","Fields":["77.68.75.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:d4::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leberkassemmel"]},"Identity":{"Case":"Some","Fields":["ZZmwPffyBUCcgRE4xnY2EquugLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XvNiYImu+dNxSI2ii54LfMNXZEZ1l8wCPuJtGXpqGO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:39"]},"IP":{"Case":"Some","Fields":["185.119.117.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:162::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZZfIC4iub7AvVE8W2JekmhqRd4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ebFqZQTCr7paPz2DEVCq183ESqjtxb6MKuTEAm95vqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:54"]},"IP":{"Case":"Some","Fields":["88.150.107.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["castleworld"]},"Identity":{"Case":"Some","Fields":["ZY75F4eJ2yb6B4qgYF8n4VzqhBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pU0q+cWm+naH7jQ6EvjBR9QrLR4LmLGYIUr1lPLEGKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:53"]},"IP":{"Case":"Some","Fields":["79.141.175.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masters2"]},"Identity":{"Case":"Some","Fields":["ZY3CCXSLApLU7ekAgiVss+llhYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wq2l4AnzGeIqvYKU5WoNG1WlXhbldPoLb7kPsatmv3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:27"]},"IP":{"Case":"Some","Fields":["45.58.152.44"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noname"]},"Identity":{"Case":"Some","Fields":["ZYR8aoK7LQ2IrJkawiDYcc5S9yE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Woo4+I7LhO4OIFlLkcnMsR4XXzyBOpETs07Q7tSajNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:31"]},"IP":{"Case":"Some","Fields":["195.123.245.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypothermic"]},"Identity":{"Case":"Some","Fields":["ZYMsrdh98cXYm0WsG69IPRQH5ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lRKAYjtzlhGaLQnCHdDgFyUoLZaOIaSXxwsC3rCcIws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:09"]},"IP":{"Case":"Some","Fields":["49.12.192.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:6bcb::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZYDPyakRYRj1ERrR5/qi+fuO3pg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDJf63ia8RP2gYu9hbPgKxe9wgL4bahP7sqyjXh7ahk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:55"]},"IP":{"Case":"Some","Fields":["178.254.45.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ZWumwAsh2whmERcclGKIop4t9bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hQQ/YJfWfzngYR4yxBihFPAsbVF5kL741NFdt1Sp36A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:08"]},"IP":{"Case":"Some","Fields":["5.45.102.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:614:d803:40ff:fec3:832a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay27at8443"]},"Identity":{"Case":"Some","Fields":["ZWnXYqxEgSdmR1CwifgNFZfstwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4G1bwsCahxuIIP2AGMhPx1qjqU3LwXi+BzbNCA+vwG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:37"]},"IP":{"Case":"Some","Fields":["140.78.100.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oscar"]},"Identity":{"Case":"Some","Fields":["ZWXzHZ7Ax9/+oZIL47pMc+81tcQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OYeT6UPen95acoIjFsH/aJnnpT65/zoMruj5nfsETYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:23"]},"IP":{"Case":"Some","Fields":["158.69.207.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::dfc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hwds"]},"Identity":{"Case":"Some","Fields":["ZWNH66dPYyC4UZLuIvgFz1AJhxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["baKeOojngHBe+KLXdvYD5cb0Oc5v140bC2sCXHj8OFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:17"]},"IP":{"Case":"Some","Fields":["18.18.82.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex68"]},"Identity":{"Case":"Some","Fields":["ZU1jT8QoGxb6tyF7q9w/F5qPLSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQ275ewxoWqM9eN3NMkN86xTMUApAgr4Tp8540lF32Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:47"]},"IP":{"Case":"Some","Fields":["199.249.230.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::157]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StableCable"]},"Identity":{"Case":"Some","Fields":["ZUwiqSXQoMRTfYOYwnj5H5yYv0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AmXvC0d3eb+OPUOTQZPIISoGB0eFc9CAcx69jA+X3V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:39"]},"IP":{"Case":"Some","Fields":["185.252.234.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2079:4927::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imboredrelay"]},"Identity":{"Case":"Some","Fields":["ZUs2TCRXO0YxyK18OcFhxWjASjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["emewh0I1Xr9LmhGIRMBDQ2NXwX1L/EcMJzZSsNxlAKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:42"]},"IP":{"Case":"Some","Fields":["209.141.53.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueMold"]},"Identity":{"Case":"Some","Fields":["ZTee7UiFmbChUS6A1HQ7yRJcswY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJLYmzXUW6k6Mub6KqCNNPlg2Bef0UbHCwv/QrNXXM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:10"]},"IP":{"Case":"Some","Fields":["178.175.128.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:2451:20::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trns01"]},"Identity":{"Case":"Some","Fields":["ZSWwgVft35sf+tzdfaoPWRV+Tt0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["61XD1SQL7fyLAECNTIr9axxhahu5TTTY+UvMIq66CtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:15"]},"IP":{"Case":"Some","Fields":["100.12.177.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["santaMariaRelay"]},"Identity":{"Case":"Some","Fields":["ZPj5ioKeY2+/RDFKSGBeERKfmL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXpb7jyEZTdD/aisOJ5CNPe12aoCqEeF1/1wcpaw3lE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:08"]},"IP":{"Case":"Some","Fields":["47.146.69.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber47"]},"Identity":{"Case":"Some","Fields":["ZO6lEZhPLIYvCed3VdxlfsMeZIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q49gwPoesWxz8JZm5sLFm8GLvUSabCX89lGVtMV5YoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:20"]},"IP":{"Case":"Some","Fields":["185.220.101.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::24]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frigus"]},"Identity":{"Case":"Some","Fields":["ZOs8vM63YLn2R/obmkBTM5gwsCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpFZkGbYE8d/SOoaOZJAwGpW+AGIOUVePA1/yYBWluw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:44"]},"IP":{"Case":"Some","Fields":["212.111.40.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI23"]},"Identity":{"Case":"Some","Fields":["ZNdKqnTzDcLPs2NDzl1EUbmk26g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iEUa0UF7UPg9wfJjY5jL7kqfY8yZDqsaD8FSmZPkmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:27"]},"IP":{"Case":"Some","Fields":["171.25.193.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::25]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["permanentrecord"]},"Identity":{"Case":"Some","Fields":["ZMsrMsEK3UuT1yW33tI4zM1tbbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddnFTQmz/EZBrKt9BthMoe0XLwDNy3aeySRT6C6ZCFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:24"]},"IP":{"Case":"Some","Fields":["204.44.81.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:fcd0:100:4600::6:16c0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sleep"]},"Identity":{"Case":"Some","Fields":["ZLsVtileOkRZT0OM0OZ058TmC6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kwQZz9iwsKxBGS50iCIuaRZtIpVF2Bv4eHzMOnbdYFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["212.227.73.217"]},"OnionRouterPort":{"Case":"Some","Fields":[11142]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6bc::1]:11142"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["montserrat"]},"Identity":{"Case":"Some","Fields":["ZLBfmiEitdtK3LDm8IMZPzFwqQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NtzvJ+aVngYUlo9Ajem9ZfBQngGTD9spvgEmwknBjDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:05"]},"IP":{"Case":"Some","Fields":["45.90.135.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:7c7:2113::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneinfiniteloop"]},"Identity":{"Case":"Some","Fields":["ZKzETvvHG6509XB9SAqjDtK8kVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YYA//Qg3bPU+gVnHVeMKnB+sTrHaI8vUp2bdjiISd5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:19"]},"IP":{"Case":"Some","Fields":["2.139.28.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["janitormentor"]},"Identity":{"Case":"Some","Fields":["ZKiDepevcXdchN4O2pRVKq7cQk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DjKw2QwPWNNvcz40QtrVt9PD1+NJDVMlQLYdhG0yFMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:48"]},"IP":{"Case":"Some","Fields":["91.219.238.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ovhSwagger"]},"Identity":{"Case":"Some","Fields":["ZKLWOsTXLQOG7obG7jk/4xmi1Ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i0qUXO1mijSiqBc8yTIge/8VAO6vW0a5XJ0M92qjI2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:58"]},"IP":{"Case":"Some","Fields":["198.244.191.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::57a9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["newTORtest"]},"Identity":{"Case":"Some","Fields":["ZIin4czAwJ7A+QC4TSu4v9FKTGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cb6921zg7MY5YZJU8Kn6ErhOPNWuDe65UeI9wXFVXBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:38"]},"IP":{"Case":"Some","Fields":["139.99.66.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coco"]},"Identity":{"Case":"Some","Fields":["ZF3pv3ouhY+Ka0Xx9TA3EXbQI4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IACjUp3PMQ8qY4fbsI79gf7E6JVsyq1C6tZVkcEIYrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:43"]},"IP":{"Case":"Some","Fields":["144.76.37.242"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber53"]},"Identity":{"Case":"Some","Fields":["ZEVajRinibv9ZI1jsDhoYhjYMUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4wbWrMLHvpmxbd5Q01H3cP6rCIRIuIzQbXQFAn9HbyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:29"]},"IP":{"Case":"Some","Fields":["185.220.101.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::27]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay37L"]},"Identity":{"Case":"Some","Fields":["ZCmw1wPrkKGFKPn4uENQSqJ3ZcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEtg1tstmfvx8Q5C0qOvkerp17exvIHE9/+wKX4YPBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:14"]},"IP":{"Case":"Some","Fields":["185.225.68.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CourvixMiddleGer1"]},"Identity":{"Case":"Some","Fields":["ZBlDBwb3f0a5gDnIhdoExZXJ6W0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d55KfM9A/HRlDIWD/NkfGw3IyiyorbZxDMHKO0HhIbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:00"]},"IP":{"Case":"Some","Fields":["179.61.251.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:5707:aaf1:30d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["samsara"]},"Identity":{"Case":"Some","Fields":["ZBi6TPpf8pxrDmEVg4KxxSyfLhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slxb/FkOAX3FwWnttHWns/iiEJmapEkjlzYKYJn1J7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:29"]},"IP":{"Case":"Some","Fields":["5.255.99.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["Y/+/gWEIP4yuDCMZsnfiz//iV4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQFkVjzpo8Cq521/pm3KzRsS9u4RxDMmB9nB1d5r0Ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:43"]},"IP":{"Case":"Some","Fields":["193.163.86.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:500:c1a3::56f7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv115"]},"Identity":{"Case":"Some","Fields":["Y/AEOBlGj9hsdh6uRbS3Lbmnlbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6mjItPTUopWlcWHFIUuNvZC61kYi6cd0c+wWt+Q/g/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:49"]},"IP":{"Case":"Some","Fields":["192.42.116.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5515]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emokid"]},"Identity":{"Case":"Some","Fields":["Y+9DIZ1/uA2jTIDVBzlail7nmT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyIciqEl0dNzZfImO5cmZziJoU34RQAXuxWc/o5u5ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:38:20"]},"IP":{"Case":"Some","Fields":["104.217.250.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ESCAPE"]},"Identity":{"Case":"Some","Fields":["Y+CUpUR3mWc8EUETQFj5SAdOqmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BwFs8OFvDurs0FCfmijaTUIc0d4ZpdFJxDs/Wbmgf1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:51"]},"IP":{"Case":"Some","Fields":["87.120.254.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit1"]},"Identity":{"Case":"Some","Fields":["Y9jlPjDjrxQOOyBes8hoxdbtiQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d1DmUX0b2kMufyMquU9pibl8IaizIZthqAwglq2XKds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:49"]},"IP":{"Case":"Some","Fields":["80.82.78.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6c8:8000:26::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontpanic"]},"Identity":{"Case":"Some","Fields":["Y8gbyoNVcAaaf81IMS3qcH9suqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jZHFHPmB5EKod4tYjS0kxS+wtXEPD0G6sVSUVcCuNfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:39"]},"IP":{"Case":"Some","Fields":["5.189.181.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:c207:3001:6426::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["543f24423c684e64ad7"]},"Identity":{"Case":"Some","Fields":["Y8VD7OJQEY6SBDej15ZePqk9BMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iY4DA3WinhUWj9hBKlWDCA2wqYY+i+KOYEqAVWvsuW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:51"]},"IP":{"Case":"Some","Fields":["46.39.97.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["toralf"]},"Identity":{"Case":"Some","Fields":["Y79Gpj+cIf0xXNBhs+qj6wUoOgo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WFuft2TpFisaC6pRurQCSY9sqIxX9kvVET9kcr9FzZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:19"]},"IP":{"Case":"Some","Fields":["65.21.94.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:468e::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torte"]},"Identity":{"Case":"Some","Fields":["Y7MvflOJ6NvF4bzv5IMS2nzO9dY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbkulHNG4rr2mkLdiUypvxsdQ9ndR/D3B/alhs7jINw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:12"]},"IP":{"Case":"Some","Fields":["217.182.196.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay2"]},"Identity":{"Case":"Some","Fields":["Y57baD1X4bB7qqVNqaGkPgriLJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZDtAWaEwbHfVughkWEdjeEVFpNMJXlhE7MOWZ9gPIw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:09"]},"IP":{"Case":"Some","Fields":["74.208.235.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra75"]},"Identity":{"Case":"Some","Fields":["Y5KNNwuSnr2lTvKr3UpjCCCFv2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OAaBG/5PC9KgNb+qnQAO92tk33yczGNtlSqe603DwBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:13"]},"IP":{"Case":"Some","Fields":["107.189.2.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["avocado"]},"Identity":{"Case":"Some","Fields":["Y5H8CPoVh/R0rqhU2Rplb163ISw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LIT3NlnrDIgle4Qa+mCKFeJoU4yzNyaZ20C+PZ+mRSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:30"]},"IP":{"Case":"Some","Fields":["109.70.100.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::6]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashLizard"]},"Identity":{"Case":"Some","Fields":["Y4nstIkTNLhGMA/dimglDrtbfFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8Dq2J/aZCo+C1HohQv3ZV60T6do0JnbYX83foWwD9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:34"]},"IP":{"Case":"Some","Fields":["185.82.219.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27aa::505]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LehmansRelay"]},"Identity":{"Case":"Some","Fields":["Y3ke4B6g5E2NpstdOkUXQxKSet0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c1P9g+S6mOgJ7hcobU5SFpdPJmT/5Dkq9EfLZepDxVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:07"]},"IP":{"Case":"Some","Fields":["87.92.154.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zollkriminalamt1"]},"Identity":{"Case":"Some","Fields":["Y2ma71mMBGwsdftZjRbZP1dTYbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["psmqWZM2nmgVCdn/sbEjfd71VIyzDmIOB1zTJYSRzW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:41"]},"IP":{"Case":"Some","Fields":["185.188.250.127"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:3867::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi4"]},"Identity":{"Case":"Some","Fields":["Y1Skam6C14S58xS4hk96n0iF5eE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NvMW9zGvD6EHCmx+11A3JysiAJOtlRCp+ygWDX93I+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:46"]},"IP":{"Case":"Some","Fields":["46.28.107.15"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:1]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneDEicebeer02"]},"Identity":{"Case":"Some","Fields":["Y0qICMqKZAmACH9/fqZoW4cdo94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4S7XDXmIoDxQeH056x9JgfFpOIndFWO6puL5VxRhdm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:30"]},"IP":{"Case":"Some","Fields":["89.163.224.65"]},"OnionRouterPort":{"Case":"Some","Fields":[5122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiotnos"]},"Identity":{"Case":"Some","Fields":["Y0TtnGcoOZP8IYBetb/8fm29J6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywGXV6lUnIwxZ/D2dC37y9IaaVDXuHGZInmrr7mHCA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:37"]},"IP":{"Case":"Some","Fields":["217.160.49.94"]},"OnionRouterPort":{"Case":"Some","Fields":[44321]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit11"]},"Identity":{"Case":"Some","Fields":["YzzuDc6k/xgm97hdKL1yQrOlbM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mPzjSPQ7ISVKZ0paEHDjJecYuW6N5cs93zqzS8LdxGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:20"]},"IP":{"Case":"Some","Fields":["217.146.2.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1f:1::55]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenQasr"]},"Identity":{"Case":"Some","Fields":["YzyRhQ8DzI5PPCgDr8XOobAKh6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ey2BqRK+3LZWITEsk8/Y/186ELyk/VL9EkLkkxyWlfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:25"]},"IP":{"Case":"Some","Fields":["140.238.34.159"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a1]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eg9522alpha"]},"Identity":{"Case":"Some","Fields":["Yxy92vm2yvS01p0ecrNZcEmdlaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDTB23UqzbxrWTA0QAT7e8GeD//t417pT6BD7eYegBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:24"]},"IP":{"Case":"Some","Fields":["158.101.146.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed314"]},"Identity":{"Case":"Some","Fields":["YxUnipFxAGLZCyiBme+gbkqqno8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9OJZxfwEjLJvPTlWVKVscdZexAhKgZsSSCmocFWYLQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:13"]},"IP":{"Case":"Some","Fields":["213.136.81.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:c207:2006:2287:0:1:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra79"]},"Identity":{"Case":"Some","Fields":["Yw911a10GInBvEbcNUpjIBUqezI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrQLuJdXsWCq9dCy2edpFiFav6IpTv0IKjof6bz20bA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:46"]},"IP":{"Case":"Some","Fields":["209.141.34.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG10"]},"Identity":{"Case":"Some","Fields":["YwR4HqbI0KhjitGnRczP7nfr5V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nc8nVk42Jex4Bdhi8iplwkatw+oTFA+wLpgn8kYFsEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:51"]},"IP":{"Case":"Some","Fields":["193.189.100.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["YvSZTG86Wz5ZCu7OUiWRaWyN3uI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rZp3Ty+n1h6ZmUmBLL4ks/5dMEQzpPuMEfANp2kLYLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:59"]},"IP":{"Case":"Some","Fields":["185.220.100.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:15::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raveena9002"]},"Identity":{"Case":"Some","Fields":["Yu1TsCABjkExaQPP4bjDd5ts07U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SqM5lf4ezuhwUqWl28KjZB4Le9SQsqnsW4QDIItm2U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:36"]},"IP":{"Case":"Some","Fields":["85.215.228.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WdTor2"]},"Identity":{"Case":"Some","Fields":["YuoxPIvAPXXjGdOgtH04iHSdAjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o849VW8x47g6zr7vJJbsp1UgrEHaJT+BInqnuez1Mvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:17"]},"IP":{"Case":"Some","Fields":["65.21.75.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:505d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Yt/PQPhUd8BUMgrmZpzihuRFgHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URFZOoydRsm4ZCF/1cwF6L+sXktPWWvWYjztzMi3y2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:59"]},"IP":{"Case":"Some","Fields":["95.214.54.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maurice"]},"Identity":{"Case":"Some","Fields":["Yrq3UWoNPx5rK8lHZ1knkfa1j7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2lB2lrwiiyL3FtomBXdf7LOXKS6XW2UjT20BeBzHTgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:18"]},"IP":{"Case":"Some","Fields":["137.220.127.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xyphoriator"]},"Identity":{"Case":"Some","Fields":["YrfNGj50DFpRX634IZqTNrA+caw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cRybjWtYbw/AvvufiSk4B+9XSKwm7BiMUdvEg9EQjbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:08"]},"IP":{"Case":"Some","Fields":["24.112.149.188"]},"OnionRouterPort":{"Case":"Some","Fields":[49152]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privator"]},"Identity":{"Case":"Some","Fields":["Yq/jkwIMw6o6owyniQL11A52CSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVyxVFdyVGLTfdwqXbxqgfXopF5frYVqo1Y9aiP/7Vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:43"]},"IP":{"Case":"Some","Fields":["217.160.49.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Yqayx1ByX/3pRX9kHvVm1WdzwxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5rGr8dFyXfve2TXIkry1tzsnoCSsbQHj4KjGutODCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:55"]},"IP":{"Case":"Some","Fields":["80.64.218.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::dbb:77db]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PwnedNode"]},"Identity":{"Case":"Some","Fields":["YqYBWKLDAuPaeS16T1M59BMh5dk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ksj1cZeQD5TsyTdxO/NESjZAnxlGeviaVhMmQFA+4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:46"]},"IP":{"Case":"Some","Fields":["213.232.101.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit8"]},"Identity":{"Case":"Some","Fields":["YqTmv+h1Q3h563mBw/wDENNQavU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CvWirYd1gGdYdZrFHEWMYSqTUMrWUTEwW6dgD7WMtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:37"]},"IP":{"Case":"Some","Fields":["185.129.61.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pltorrelay"]},"Identity":{"Case":"Some","Fields":["YqLODTvkb9UQmnIHTLvGvGxkfJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVe8YnJ0wF7TSUaqVQ2GPHRl/pA1FgyD2cRgRwzvDH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:50"]},"IP":{"Case":"Some","Fields":["149.172.49.204"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilatus"]},"Identity":{"Case":"Some","Fields":["Yp3hHRW3YFIeE5Gy0HImmP3BA98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BLfoDdCj/6XLMmUOU8rkjmZmhBL1SjR5fdR82EiL2n8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:10"]},"IP":{"Case":"Some","Fields":["138.201.196.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:3e5b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow002"]},"Identity":{"Case":"Some","Fields":["YpCi0I5euJyAkiPFx79SWXaQdR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUv/Zv+gvjoUlqhde8tsgtoPG9eq5+0qC+caRyZILD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:42"]},"IP":{"Case":"Some","Fields":["185.195.71.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlUA1"]},"Identity":{"Case":"Some","Fields":["YocSnLnsR16Bag0oP+TkXWMqSks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIU3lzc5YC8XOeTk1CRduRNpFub3TcsFyXZ3AWR00Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:24"]},"IP":{"Case":"Some","Fields":["217.12.221.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalcat"]},"Identity":{"Case":"Some","Fields":["Ynr+jKgRwNmD++WHa5KL3kxPWTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYrT9MVWRO/gMSrXvkPFOgVMZ1aXUDYW3T/WDf1Dl6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:30"]},"IP":{"Case":"Some","Fields":["23.140.40.2"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[110]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission01"]},"Identity":{"Case":"Some","Fields":["YnErLCShabJDNs0v4r5V2mdHbIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mh7ekWZkJgjwXP3TXLNVfqX/tz8y1vXJCChEq4vIFq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:26"]},"IP":{"Case":"Some","Fields":["149.56.94.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["YnEY9uPYXNbiYpe9ZTjEXOmKopk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ztctH5N4wPZpD4VkSoheA0x/fQ3gSlMKzeGc278Sc/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:03"]},"IP":{"Case":"Some","Fields":["185.14.97.105"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::4fe]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["testrucensorship"]},"Identity":{"Case":"Some","Fields":["Ym/zKgTmNvT3q+pMqdyvJgHWqwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yo2rEArlSv15R7nMhs4QhubjP4Arx/aN90QLmEalx+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:08"]},"IP":{"Case":"Some","Fields":["51.159.161.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:fa0d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay3"]},"Identity":{"Case":"Some","Fields":["YlT006z38+v/GukQx2KlefHBqkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MkUEAKFdZMjbDpL5ODJjuExGOaNBd6JNcIO8gI1I/ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:22"]},"IP":{"Case":"Some","Fields":["188.68.59.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f75c:28a7:40ff:feb7:f710]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrueRangers2"]},"Identity":{"Case":"Some","Fields":["YlAmr6x8XpyS9ZehhDQyR+0BGXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNg9vcHJNI5soIE0J/xNe/ZHUqMSB01cKgLQm6YDULE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:49"]},"IP":{"Case":"Some","Fields":["185.175.158.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YlAKtAH5NVhnfB6MYeckvUZs6KA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cBYnVOWQ3k0N0RBp4pgexepR2lGCZRY7kmc9heURKp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:42"]},"IP":{"Case":"Some","Fields":["185.207.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie3"]},"Identity":{"Case":"Some","Fields":["Yktzkbl5DnzSr2pyOCObo9aSilc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9r45Ar9ff5fjTou/GiGHDlTV79c+hiYZFvfZjUTWaZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:20"]},"IP":{"Case":"Some","Fields":["65.108.136.189"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::3]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wildy"]},"Identity":{"Case":"Some","Fields":["YkXchz1vYTx5XUhmPWW9iiJmyvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6zlm40WoHYhdKy7tzmnaWrkVxO2f1ARMEQDVIZXjJCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:42"]},"IP":{"Case":"Some","Fields":["92.222.103.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:8c4f::1:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode2"]},"Identity":{"Case":"Some","Fields":["YjzMwaE3BwDdAwRqhdlT01yrXCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZW74UUfShxUHYU7PgG+adS6pm1R8/N81IzfCZ2vfyPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:37"]},"IP":{"Case":"Some","Fields":["209.141.54.195"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongreatmother"]},"Identity":{"Case":"Some","Fields":["YjL980/5B9wlonMn0cBa03D7J2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vHfQs2Kv73VpXf7t6nwoN4oT/75yTjFb4+1GUEaVSUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:42"]},"IP":{"Case":"Some","Fields":["185.220.100.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:10::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theunion"]},"Identity":{"Case":"Some","Fields":["YirVMXdx0PmlTcb4bszKSg7wUSU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cdAt/hC9nPC5SVF+mnkiKf9HPwxIM5+bvBwpSEmZX7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:33"]},"IP":{"Case":"Some","Fields":["185.140.248.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH111"]},"Identity":{"Case":"Some","Fields":["YinHBKMSIzzTM9UZb4Icf/1bL28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xt+CKpva+Q3rQBNWcsfmj6+12QqpI8yh+1mgYMr9gwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:28"]},"IP":{"Case":"Some","Fields":["192.42.116.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrg"]},"Identity":{"Case":"Some","Fields":["YihCrl7P8ICbTJhtUsp1w0ntEeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mM67vL8R1XX3jN/6wU0z9NzAEHCiXKtRnuCc+BWrGDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:48"]},"IP":{"Case":"Some","Fields":["54.39.66.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:93:12::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["michaelgill1969"]},"Identity":{"Case":"Some","Fields":["YiOa5ZqI8qxYFzdy0cgiaQLBguc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0xOAFpzFD3DKQbQYrfk5mcAIUILafIsUiAeIPxfnPps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:04"]},"IP":{"Case":"Some","Fields":["45.79.188.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:92ff:fe81:95e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["YiKYJ/4WEwA8CiqHY9gcCxcP+tk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+/URgI78CYQpcnvZ0XNK6ayEOgCh1Xn0/M0yFCKaxFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:06"]},"IP":{"Case":"Some","Fields":["23.128.248.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::215]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation57"]},"Identity":{"Case":"Some","Fields":["YiIzRlkRHZnenSaXCsxAIrKQ39A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSkkrvTFC2c67Dq24NX1ynu7b6PnbItBHowos1nCtco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:10"]},"IP":{"Case":"Some","Fields":["51.89.143.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pbranenettorrelay"]},"Identity":{"Case":"Some","Fields":["YiHKqfSmctthRNcSjRhN21NQg/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4k4AD1/yOflCMovjPUMpdvg1eeBmlMJUHOHQct/09I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:08"]},"IP":{"Case":"Some","Fields":["139.144.60.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:93ff:fe97:5166]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["Yhx8cD+QR4uCuvcBmc/DCy5N4vQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xA/u5iGaPnd7/KA10CFliN4vSkak7W+iHC9pFwQXJSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:47"]},"IP":{"Case":"Some","Fields":["51.158.231.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra12"]},"Identity":{"Case":"Some","Fields":["YhM+22Y8HAQ7Ki3CShnDUQiOvVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEC76WQ6WsM9UPluDDJtbXjQXD0bzLhBcoRdr808hRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:43"]},"IP":{"Case":"Some","Fields":["213.164.204.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1144"]},"Identity":{"Case":"Some","Fields":["YgnV5zRei263oQKBRuSCbMbGQig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tXjcSH/iFInZUHDrfzR88YBsmNeb+GQwG674pYDhLRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:22"]},"IP":{"Case":"Some","Fields":["185.220.101.144"]},"OnionRouterPort":{"Case":"Some","Fields":[11144]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::144]:11144"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay631588"]},"Identity":{"Case":"Some","Fields":["YfBd6av4/OHWE6PP46+BsCfyee4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPFMXikOpNp1hIIC2Wpll3JksFW0JalYLn9niRgyS+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:01"]},"IP":{"Case":"Some","Fields":["88.209.77.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9845]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LukeCage"]},"Identity":{"Case":"Some","Fields":["Ye5n4Y2N88OgYTPfVOpaKUyTedE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lr+jsKV+61AQaqfu+MA+vXhwozK03uDZjim6m4xtZc8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:57"]},"IP":{"Case":"Some","Fields":["216.73.159.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay38L"]},"Identity":{"Case":"Some","Fields":["YeQx7AdIgMTKrpjx5SXgEodi4GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1m9kYKJEDK0HbQeEht5FgMWokwSgwlSB50WVFvQ59cU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:00"]},"IP":{"Case":"Some","Fields":["212.44.103.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gare2lest"]},"Identity":{"Case":"Some","Fields":["YeQbV1kej1LHE1ysQND9mMXLq4Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubLLbrge1MqH8JlGW17fRxyynXaIwQZqr8u15jANGTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:23"]},"IP":{"Case":"Some","Fields":["90.126.124.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thatismyRelay"]},"Identity":{"Case":"Some","Fields":["YdI36EJvhIQg1KZIs1T6H0WrrH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GixycUD6wmk+mdyDj7EcRPG37wc8RfKB4AmC9pvYiXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:49:29"]},"IP":{"Case":"Some","Fields":["130.61.189.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kren"]},"Identity":{"Case":"Some","Fields":["YdHN+SoF5ZoGtuIKOSR2lnErAAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSaG0eQ1MAzAocZAj8XLK3h3cWQD0QbCFSZdru6vMLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:17"]},"IP":{"Case":"Some","Fields":["109.70.100.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::5]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artischocke"]},"Identity":{"Case":"Some","Fields":["YcA4J/2ZFM3LLqgJqCSkNa6gGJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3d0DzlWEur1ZIJPoQahF88yD1PB77CvINR2kTlZM1b4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:36"]},"IP":{"Case":"Some","Fields":["109.70.100.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::11]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whoUSicebeer48"]},"Identity":{"Case":"Some","Fields":["Yb6yjL+yWMA5w5f7q3/Wb6HzEgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VYdtJRmJ+MXiCmKPrPVTlZ3kzVJhJrnruv11YBIW2/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:19"]},"IP":{"Case":"Some","Fields":["173.208.190.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8034]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["YbpcUI464Uwt/43Wd7EAmEyj4J0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["heo0OSgYEx9/993ylg1uXHBNYcGTIM6zjixn8Q+seiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:24"]},"IP":{"Case":"Some","Fields":["74.208.212.42"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:24a::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pecurina"]},"Identity":{"Case":"Some","Fields":["Ybi9yRqnvJoF61o9ZS//iMmOaRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hRtVUDuSj7Nq7KgSh1YfjWbJiFoXzLt+zjvbbkd4IaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:28"]},"IP":{"Case":"Some","Fields":["78.31.65.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YaIQTX5phnw/PvmBB3Jm+WjBdSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdO+3fNRYnWDkaTaqwv+Pq5XzaO76hVM7rZlqC7qNZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:28"]},"IP":{"Case":"Some","Fields":["188.68.41.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seeidideditit"]},"Identity":{"Case":"Some","Fields":["YYnwaR2K0cuzc8rTkG5yI4rENk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qywVrF+JNW+8+47mHCbZaLohj2T3Gwj7psI2odbBV7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:42"]},"IP":{"Case":"Some","Fields":["78.194.158.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e34:ec29:e1e0:baae:edff:fe7d:7bd8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra94"]},"Identity":{"Case":"Some","Fields":["YYZhYszf5lGw12qlfsqQucx8gN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cjflFLwYVlghqlwwLL5ApFufFeJAajKVhHO13oVnZRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:12"]},"IP":{"Case":"Some","Fields":["198.140.141.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:30]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YYO0k6z/QbKHRc8DIuda173kpIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aI2uw7GqaB21FJg91S4SnxI2kNT+WFePb2J19cRt2sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:44"]},"IP":{"Case":"Some","Fields":["185.228.138.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor11"]},"Identity":{"Case":"Some","Fields":["YYFjv8TsJLaqbh6EHSHoNZF20JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AIShRveqg9goddsbSDX0ilyS/6qxO71uLJA8Q4jMhu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:54"]},"IP":{"Case":"Some","Fields":["31.6.70.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::132e:e173]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange030us"]},"Identity":{"Case":"Some","Fields":["YX6x85lOE+/iDU1qQnO3JHdtBdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/EHJftWRRQo5UlpxByyOL0p1rG5xjG2zgXP8AB6+kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:38"]},"IP":{"Case":"Some","Fields":["45.33.198.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["YXyV/PXwDpjnPjWnHAZu0gYU8m0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RGlTerl9sCNI5fTtZBkbEPU5OM7eAkp4BULuZs5AKhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:38"]},"IP":{"Case":"Some","Fields":["179.43.159.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mirokko"]},"Identity":{"Case":"Some","Fields":["YWynMGMXZUV1CX1OpbxrZibiaUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hWrrR064lkw4YoAmaD6qwFTuCb07QJob5NTF19RivOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:54"]},"IP":{"Case":"Some","Fields":["185.235.218.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeoNotOrg"]},"Identity":{"Case":"Some","Fields":["YWo8Wzs6sJVHdowGPS0ySxnPJ0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcW7GoarJOORxaequCL/RVEGkMl84Cj8OhwhZrZDA8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:22"]},"IP":{"Case":"Some","Fields":["148.251.208.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AquaRayTerminus"]},"Identity":{"Case":"Some","Fields":["YWCB7IKVk69CMlUN5v+qHXWzepA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4Ve0uNLFeqiIfnuWJRUqzajgNMd37SOYj/+HP7mqEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:31"]},"IP":{"Case":"Some","Fields":["95.128.43.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:ec0:209:10::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PostGuard"]},"Identity":{"Case":"Some","Fields":["YV1UGUZnLQLzGZWkiomlJsfsNSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/ZUsPNuogSMS7VLha/s5xRHtDtKTFCe76g6fYvFpXS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:35"]},"IP":{"Case":"Some","Fields":["37.221.196.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:635:c48e:47ff:fea8:490]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cloud"]},"Identity":{"Case":"Some","Fields":["YVq+ot526zdgvFHnMGuqWfFc2PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoUTFk7iiFoKlFhh+sotoJ3ekCJU+Ly187QXa17f69M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:02"]},"IP":{"Case":"Some","Fields":["46.166.139.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaygermany"]},"Identity":{"Case":"Some","Fields":["YUaQ0BEbsWQouBbbnpmMDl6j9JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xN//P6I+h+4VuDOQa1GC20aFEgX6O4Z7gto7Ei9Wd9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:03"]},"IP":{"Case":"Some","Fields":["217.160.214.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6e9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBoundTome"]},"Identity":{"Case":"Some","Fields":["YUZW0SbsNDQEZHbbb9YxtxEk2rQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VhllzY+lH/fYIez3AGzxV6JEhxYxuJmnMai6iwxVJVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:41"]},"IP":{"Case":"Some","Fields":["82.118.242.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["invaAtMoon"]},"Identity":{"Case":"Some","Fields":["YTT1tm8nvdvCv4DU8sV11iOOXjQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TsEGIlHhHpwrQ1zQvv3Hm/8HhFdLbFqQDiuLBVYKO3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:18"]},"IP":{"Case":"Some","Fields":["188.124.94.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neverDie"]},"Identity":{"Case":"Some","Fields":["YS9oLW+CxHnXih5Sdwo8Qxr4BdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mvgb5Glq1F7djhDf7rPaEZ8MNvgVONx03GvuEERFHOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:00"]},"IP":{"Case":"Some","Fields":["185.193.127.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:1337:127:0:b9c1:7f8b:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedHat8"]},"Identity":{"Case":"Some","Fields":["YSv+bTylv1UsntbgmUM3edjFIdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OjJx11Jl52T1FgDFAyoNzreZgdBFR8kqI7XFQo/ZaMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:44"]},"IP":{"Case":"Some","Fields":["5.188.206.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazerpi"]},"Identity":{"Case":"Some","Fields":["YSWm0nf3/0Cmh1qSgUcs145A9Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/lfuvp9Z5DMeos7my55EATGR9xLcVuSYlQvhZ88SzZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:18"]},"IP":{"Case":"Some","Fields":["79.255.156.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["YSUdO0fwI0WHS7fytNbvMZgU3jQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AdG4b/9D7BhfKyE2WbFIjw+hynyYJnV7la9KGn7gSnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:06"]},"IP":{"Case":"Some","Fields":["45.90.161.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::f05d:92ff:feb5:2932]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DevilHunter"]},"Identity":{"Case":"Some","Fields":["YRjdtYDu3W/l+NPMDfHuF9iipMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oCCBCN045JPxAKWKBGGaTloKiSWcpf+3ituy0pRuggQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:28"]},"IP":{"Case":"Some","Fields":["94.16.123.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:3ba:840a:fff:fe2e:3fec]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["janus"]},"Identity":{"Case":"Some","Fields":["YRczdja4y5efCbZ1MEd9/8phv4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oqJm+LU6jNcy0v1wjiUtguTkzl9VOdZSQEKbaBFMvEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["91.121.143.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jsRelay"]},"Identity":{"Case":"Some","Fields":["YRHGAFq1ZJi+XjVmayUizr4X0U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gIvF5b2LWNZensih6ew+h7sVa4Q/uTZmeDJ3BvQNHN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:55"]},"IP":{"Case":"Some","Fields":["98.113.139.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay4"]},"Identity":{"Case":"Some","Fields":["YQfR+W5mKTZgJa6Bh3XHzyqahLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WGASnZduOnyObkSes5ubYNa7HRd8YEFO/DyTpNsUN+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:32"]},"IP":{"Case":"Some","Fields":["84.49.151.188"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["swlt3"]},"Identity":{"Case":"Some","Fields":["YQHss9oR4M5t+LRXAU2gmYB83k4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Icwimyk6ssns736HPdLewCcVx/4qAq2wIyJPfKgIb7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:43"]},"IP":{"Case":"Some","Fields":["49.12.233.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:1849::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["n0trace"]},"Identity":{"Case":"Some","Fields":["YQBBUscJZy7nOfJme1bvVVClEzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxUzsHbV0DQSUs2oYARG2dNQqZgBp23DsXrn5dkTX7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:23"]},"IP":{"Case":"Some","Fields":["81.169.255.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber17"]},"Identity":{"Case":"Some","Fields":["YP54LfkjaYVGAjxvFP7AiEYk81w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uIF/tppVNIEfOq7GD984KeYPENAWVRSwuWxEsEUITU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:54"]},"IP":{"Case":"Some","Fields":["185.220.101.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::9]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor"]},"Identity":{"Case":"Some","Fields":["YPITnqPgZBCgXL1uglTmCpBjrZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LThA48ZMUlC5TncZoZg8CNM9bs9ynnE1hEIjmPQn4ck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:10"]},"IP":{"Case":"Some","Fields":["147.135.6.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Washington"]},"Identity":{"Case":"Some","Fields":["YPD5HUArY2kyezD6iXa2cO8FxPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oavOPTEOY/ncbsQ3fGE0klVcda7ZZa+zLp0Ds1/EHX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:28"]},"IP":{"Case":"Some","Fields":["185.70.185.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YOUhtjLYOXHs+NRUr1WPLCOLyaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["STolzmVFfws5dSXI0+nGQ5GOO7gbFDlqxnKBuCixfeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:03:19"]},"IP":{"Case":"Some","Fields":["185.207.104.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rgiad"]},"Identity":{"Case":"Some","Fields":["YOTF4wbS2yKJDuJKCfm2wwrzlqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHnlRwZniKiUZAzILcT0i4Fsu4PU455E67jgWqcEN5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:40"]},"IP":{"Case":"Some","Fields":["198.180.150.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:418:8006::9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN6"]},"Identity":{"Case":"Some","Fields":["YNNmf1auxcac9+j1V9sh3fbDYGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7VAWQ4zB9BQAV8qTGrlypMmklYSODN/U5VKddljgOl0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:54"]},"IP":{"Case":"Some","Fields":["199.249.230.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::117]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["YNErfXpgFiJQT3TJpOt8jzP+XIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bD22nxg9vH/8to/CABRfFWBF0yRzCmpv1khyGxxM4DE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:14"]},"IP":{"Case":"Some","Fields":["134.195.89.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wehrhaftedemokratie"]},"Identity":{"Case":"Some","Fields":["YLbz+vZcRDT3ofaCFiBr6AfOgHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6W2zwyS70UxT5QyOpDhaXSu9jRAIAXCXMC+O2vk3nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:10"]},"IP":{"Case":"Some","Fields":["89.58.28.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mosquitobait"]},"Identity":{"Case":"Some","Fields":["YK/oZvU/34OAigLykJ4otSIstwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ozHwBGKFtxTRst2dMtZCVdiI+lNrWzEK2pjv4oc0Uas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:38"]},"IP":{"Case":"Some","Fields":["23.105.171.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomeTorinAS200462"]},"Identity":{"Case":"Some","Fields":["YK7qI6hbg6QHMStWCmBIKlAaa4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEEYxw2QdDtwVkAS7HkiueMId5HMIrPk/F8gk+G/oAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:55"]},"IP":{"Case":"Some","Fields":["2.58.52.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HotPotato"]},"Identity":{"Case":"Some","Fields":["YKVUeyID3S4Ujvm91v84kQgcXfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gjk5yyqFzG0kJmmuewKD+WW9DDcHGm1DLm0OloCgtwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:12"]},"IP":{"Case":"Some","Fields":["96.126.105.219"]},"OnionRouterPort":{"Case":"Some","Fields":[5353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe93:5318]:5353"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["misaki"]},"Identity":{"Case":"Some","Fields":["YKQ/LpZFdzypsXImy8TCDcMXTQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1nz+rWCvHNEgZXkyvlP7T44HBM//BKElLxrAAMQs3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:55"]},"IP":{"Case":"Some","Fields":["134.195.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:feda:30:cafe:20c:29ff:fea3:9936]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Handlebar"]},"Identity":{"Case":"Some","Fields":["YHjzALN52N688C2+gIgclHd+JL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbEcP9jxJgVvbELuHjB1VObd5lPhDTdFC8m1zJz7lhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:33"]},"IP":{"Case":"Some","Fields":["198.255.21.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["forabetterworld"]},"Identity":{"Case":"Some","Fields":["YHY+YwmIBS1ga48qvITUHa9vp+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QvBuseH6V/uDry9jCMRxvCNSOAZNYe3rFNmvm/7g0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:25"]},"IP":{"Case":"Some","Fields":["159.69.241.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c17:e5ef::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arcanum"]},"Identity":{"Case":"Some","Fields":["YF7kN17kw4IVyJSfWAiGN0n9T0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NKyog1BakNTlCP8yGEv/hLMTAuaZhqB0EgMVs7BOcNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:41"]},"IP":{"Case":"Some","Fields":["5.56.216.42"]},"OnionRouterPort":{"Case":"Some","Fields":[4020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vaseline"]},"Identity":{"Case":"Some","Fields":["YFtfonRVoOeDKdnZc+FTrZKYvf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gXs0vkqfJajji+SHf1ZdGJ8c4SlsdTTrY50feJLaI4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:01"]},"IP":{"Case":"Some","Fields":["68.71.16.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["YFfO63OEfShu+Sru0pPvDNDeJcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e+z8qHnGUL17QgqV6OzGl8R6vTWLV3PHxXSjZin4VSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:02"]},"IP":{"Case":"Some","Fields":["23.128.248.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::218]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elects2"]},"Identity":{"Case":"Some","Fields":["YFX+kMGN1LJZOp0OAt3E1o6bpi4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AfMTsmTKPD5O6HX7gG+t8Fk7pn3Dv5j1k74ATryw8Ro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:12"]},"IP":{"Case":"Some","Fields":["45.58.154.222"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skewed"]},"Identity":{"Case":"Some","Fields":["YCog+Q4g0bnqTdh66Ui1kMYfipQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z0oUr03booluRhiLK22y8EfhVnCUsQyBswPlCiTtoUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:40"]},"IP":{"Case":"Some","Fields":["49.12.93.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noTORious"]},"Identity":{"Case":"Some","Fields":["YCYA10fxIlWpBPWsudvR1PIuRII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ysm6fgKpvZcH3b966Gdl0OEXZXu9l9vv5Tcd57upR7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:03"]},"IP":{"Case":"Some","Fields":["109.248.144.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1wllmkuhrt"]},"Identity":{"Case":"Some","Fields":["YBDqh71K7MJAsMVW95PR29CFy0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RC4C22zj8/VRe6tWurpTqvENPwcxlKusIRzE0YbydWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:11:12"]},"IP":{"Case":"Some","Fields":["95.215.207.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a2704f1ae50d753145e"]},"Identity":{"Case":"Some","Fields":["YAkCMwP2iBQZ9M7fxLf/j/3y48M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXojpVK9gZTJKOTpI+A9pvhHQi6xMf1dGYcCs3cNdyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:58"]},"IP":{"Case":"Some","Fields":["62.65.40.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["YAaEqGPciTaS8dd3hmAFNszoCyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2S+uYnTb/ySnVQL6Tgun+vUEE8vtZKThU9NrY0sulw0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:41"]},"IP":{"Case":"Some","Fields":["23.128.248.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::46]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["YANyOAJKnzBdtdyXUG1kLPodZro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSZfriAPZj4gpFDF3yuAdOMozh2d0sDrQ2TGwhqupnI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:23"]},"IP":{"Case":"Some","Fields":["172.104.79.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902:e001:116::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ashpit"]},"Identity":{"Case":"Some","Fields":["X/1rq7cbtWNyyDEXx+Ukjrv6xpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["76TmjFK2ITePCdhJf0DFJpgYM1uElFrSp4xB3bNogcM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:02:49"]},"IP":{"Case":"Some","Fields":["87.106.192.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["riseup"]},"Identity":{"Case":"Some","Fields":["X/HTo+OONky+JiL8Mw8rEMrBNj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fy9rr3wb3SVoNuV7qku0DEMdXUvVJUQfh3DvNZ/CuXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:00"]},"IP":{"Case":"Some","Fields":["144.76.162.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jJbzwynG"]},"Identity":{"Case":"Some","Fields":["X/AtQRPwpoiNCi7mxXxhoVi3VQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7LKM3cJt9aXVTHWW/svOE678c3/OzTa4A5cF2PcnmFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:04"]},"IP":{"Case":"Some","Fields":["37.187.96.84"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:2054::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0294a90e"]},"Identity":{"Case":"Some","Fields":["X+vA2KbVEbrGnc6v4M8rjfvUfp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AmvVjbRNI33jTvdTVMteEBA0c13LuazzcOjp9wyOEQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:20"]},"IP":{"Case":"Some","Fields":["90.212.217.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr238"]},"Identity":{"Case":"Some","Fields":["X+ua7CiR1AQ1MUV4enje1AkxptY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbQDj0loC1nehR1Z7/jJaRIBqjwMlOMrxxwwVOYbQgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:23"]},"IP":{"Case":"Some","Fields":["85.208.97.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kohlhaas"]},"Identity":{"Case":"Some","Fields":["X+g60Qa0mNWj6npI+3N0mvKJfls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S4VYJ4DZlPP21dlP24TS84J+opbMnP87iTG3a/9v1WM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:55"]},"IP":{"Case":"Some","Fields":["46.29.250.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["linsaac2001"]},"Identity":{"Case":"Some","Fields":["X+YTjWDgk6fP15pCDcGywaLBu+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZFtnfB37y0VqY+qjVgFEzSZWm1hRzFRvf3SuJ4nOMv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:31"]},"IP":{"Case":"Some","Fields":["172.105.185.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:92ff:fe9e:7fde]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["zer"]},"Identity":{"Case":"Some","Fields":["X+R/v5GhM2ZJvnsP98HZgfES988"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cI8Iz8EJ6zT10tsHLZmBvv35PcpProKeub65T4lVlpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:32"]},"IP":{"Case":"Some","Fields":["167.86.122.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ji4ka"]},"Identity":{"Case":"Some","Fields":["X9wMrYiyZ2B6N+w8BlTG0d02Oho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPOjqgCo03o6bTZM8jDYfaCzEYje6BrAtZB5Ly4aTRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:32"]},"IP":{"Case":"Some","Fields":["78.130.248.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["exittor"]},"Identity":{"Case":"Some","Fields":["X9Gk5Vfb2vJW3KfX3QRBZEDyZz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yZVS+hrx868DMnvt3rqKKcItwwRalXlKEHHSU3BL6WY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:45"]},"IP":{"Case":"Some","Fields":["101.58.180.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:410:b4e9:0:c5a2:31e3:a45f:116a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nuker"]},"Identity":{"Case":"Some","Fields":["X64oz00cUgNB7hBL9yUW9DCLlIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJUx2N39ZWnolV4blq5zpa3BgDCoQ4dQ0mwGEqhshRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:20"]},"IP":{"Case":"Some","Fields":["148.251.236.209"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:34d0::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bananenbakker"]},"Identity":{"Case":"Some","Fields":["X6eUvzAa815K7Rhek5y6nSz8I2A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["exQnJohbc4M/pa+M/D8dITfeoENYtgTZaXRfjKHkUfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:20"]},"IP":{"Case":"Some","Fields":["192.42.132.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:2132:192:42:132:106]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq02"]},"Identity":{"Case":"Some","Fields":["X6dZb7K6LIiTN/i4LdcSe7skDU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7C4DT5EVXLEd3nnBppvq1/5BvNKF0LD6AvDPxfPOBWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:34"]},"IP":{"Case":"Some","Fields":["193.32.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["us1surveillancelink"]},"Identity":{"Case":"Some","Fields":["X5YkHK/2DutdT5tsBNYp7+8VWCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/fQoxKS5RNx2CkCSNCS8AE4TvjEwiFqZ4xd7RGM8/rs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:05"]},"IP":{"Case":"Some","Fields":["71.19.144.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe1d:5257]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vandergriff"]},"Identity":{"Case":"Some","Fields":["X4dc+34u0NJOhaWouJBKNlCrHtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HTTQDtJjSYEz+pcshCK03JAlTw4AkQg8DkIy1NPlMsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:36"]},"IP":{"Case":"Some","Fields":["185.100.85.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schwabentor"]},"Identity":{"Case":"Some","Fields":["X3RIxbZdrwOeeAe73UjY+pHIwCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pqynl9gvC4dcBtuwEdJKx024e3cQe2KKDc5l6d2CMC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:59"]},"IP":{"Case":"Some","Fields":["167.86.119.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Poseidon"]},"Identity":{"Case":"Some","Fields":["X2w5qU9VN7kZWt0b3kXRj9TH8jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["amVk9S+jfPwgcHakisJ8vEmEbtR15Q7FnUWd5RaGbzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:01"]},"IP":{"Case":"Some","Fields":["100.34.142.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PsyloNet"]},"Identity":{"Case":"Some","Fields":["X1pZ4+ywmHQH2RarveYGE/g+oek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BydLJDNpeC0axh++s1womeLqzYoDJ9NWA76VgYtUKA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:07"]},"IP":{"Case":"Some","Fields":["78.37.138.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN7"]},"Identity":{"Case":"Some","Fields":["X0zRIJmvIPr5rf3OxlMWo3bQIBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y4XZgaqvrH4TAXxHDxzLMi7ZNeReNZCb2VfJ1GURxWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:00"]},"IP":{"Case":"Some","Fields":["199.249.230.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::118]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Boro"]},"Identity":{"Case":"Some","Fields":["X0vLxuIK4HQ0DQp0Pm8upLUbCcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z4v0us7K54boT0rep6Hf1Jk1r3yS4jm7CdgvQ06vjv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:08"]},"IP":{"Case":"Some","Fields":["87.120.8.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["Xzdhna7klrjTfVs41cUNXkFpJD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wDFAwT/sdnGqGkB1TN4pO9GClO7KSKYjxp3LMPZsKDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:16"]},"IP":{"Case":"Some","Fields":["88.208.215.96"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1ee::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solace"]},"Identity":{"Case":"Some","Fields":["Xytu55mcajmS0+XIKYmSxcKN6zM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OIliiLouILAnD+iz4FE5n0MyTPRdQhbUUVy5kkHJROA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:33"]},"IP":{"Case":"Some","Fields":["195.123.214.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire61"]},"Identity":{"Case":"Some","Fields":["Xydqb3qnSvsq8QDq2ijHpvSLpQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wi8OYrwNZKbdFPwHlzCs4homsvUrtYy+0FpcEu3PLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:36"]},"IP":{"Case":"Some","Fields":["91.143.81.212"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efb]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ooty1991"]},"Identity":{"Case":"Some","Fields":["XyTyfHba0DtXcX1cTf40GlEpSuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9HdWwIA9H3OgyDlp83VKtOB80JGjcJPLXnE+vMs3ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:33"]},"IP":{"Case":"Some","Fields":["38.100.216.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:a:535::2]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Meganero"]},"Identity":{"Case":"Some","Fields":["Xx3JEYY0JpSe+EGnYGeDbyaS4Z4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z0a0LvWFQn2sbHKV7cfoiTafXRzrxJNCvU0y3L7WH24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:46"]},"IP":{"Case":"Some","Fields":["93.95.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber29"]},"Identity":{"Case":"Some","Fields":["XwznxjWQsp5il1DpxbzfVsQNaJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r0+rIWw3eRl510e4QI1dmc513lxr302v8JpFALRcxWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:13"]},"IP":{"Case":"Some","Fields":["185.220.101.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::15]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["XwHyTWDZ5u6zWF1Pz6jt62zWHrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/0qNyxL+4z4RtKSzgU+adtaFV71nGw6xRnjPNVff1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:27"]},"IP":{"Case":"Some","Fields":["23.128.248.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::30]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClericalChanneling"]},"Identity":{"Case":"Some","Fields":["XvZFC+gca1Fim0fdabOC98tILCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJMZkRWY2WrMTVAhI4NFWmuE9UVJ2euOhByX9/vl0+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["24.53.51.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itrickl01"]},"Identity":{"Case":"Some","Fields":["XvJVnqulyiwygEZjVR97JDRfZ8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fll5Mjb5bAHBWYb0362LX9eL6GPihEw/IaqyWhUWzYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:53:36"]},"IP":{"Case":"Some","Fields":["37.120.165.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:4620::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XuAOgeKJ1IxmXVsER8PvAY9KDJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy9qPUA+0pQ4kMjaA95LATXgihBDZM/IuA+ifo8DwU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:13"]},"IP":{"Case":"Some","Fields":["23.128.248.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::d8a9:b5ff:fe30:737f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyNEtWorktor"]},"Identity":{"Case":"Some","Fields":["Xtt+u61XgvzBRxKVBckrmtFHXE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3dckk4taCSqQ9PtL+4KS9zyIfU9eRsZ8B6dqOTNGeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:35"]},"IP":{"Case":"Some","Fields":["82.209.247.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyRhino"]},"Identity":{"Case":"Some","Fields":["Xr9n9xcUZiq/db+LfmnzMPV6crI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9J/aZqy/P9VGNqwgtnB7VBs/lcfQVhAwJuXAsfneqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:54"]},"IP":{"Case":"Some","Fields":["172.106.17.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowDog"]},"Identity":{"Case":"Some","Fields":["XrpKn0g+B/1xe6gd1vc0SvgvfV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yxj0o+DsuwaMiEbopHswyKCczdBe4r7jB3gtcag2qqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:28"]},"IP":{"Case":"Some","Fields":["178.73.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1a28:1251:178:73:210:118:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=940"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNodeChile"]},"Identity":{"Case":"Some","Fields":["XpwmyDNLfMZPhJ7iDmxm7afL8dw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLpOdtzmIK7B6NIfEzamdwdt/aDyNDvOBWUTx09K93k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:57"]},"IP":{"Case":"Some","Fields":["45.173.130.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mhack1"]},"Identity":{"Case":"Some","Fields":["XpFWnfuP7CtazoudfQwXsse+HAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ok6IXxTTH+Iu1uIZzpklToX5MzTxFYvP8f2BMNuxt5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:08"]},"IP":{"Case":"Some","Fields":["5.255.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousOnion"]},"Identity":{"Case":"Some","Fields":["XotJtmG+a6Ysfjj7ar3pFRn9Ycg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1b4x3ZeVV5LwFrsBfAfICLLSAJcSxk5Tv0Vd4cZUtfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:32"]},"IP":{"Case":"Some","Fields":["87.64.17.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["XnlbGQYfYaE7JIh6FKHYHPja2Y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1I/QQaVL3Paf8DBiB+qwfRPxvf3TaEXxbe4PpPYz9t0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:58"]},"IP":{"Case":"Some","Fields":["23.128.248.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::85]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepThought42Bridge"]},"Identity":{"Case":"Some","Fields":["XmgN4pbEpiwSqq4oeskqJ0PgzU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSqlXEKipKfs3hPLixvWTJYPrlhIXPDMvMXElPttMcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["109.70.117.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mchxuhg"]},"Identity":{"Case":"Some","Fields":["Xmdonvdjc1ASLe58ZYf9rTdKyvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HFcVcXxi3LaYd7kYg7egVkQ2Awohuq0LhtFC0nTMkoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:31"]},"IP":{"Case":"Some","Fields":["77.185.112.133"]},"OnionRouterPort":{"Case":"Some","Fields":[8091]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondagon"]},"Identity":{"Case":"Some","Fields":["XlK+oiEwWY8gDQXEK7ZnCcJOj2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HdjzYtAbQQd7P3q7TG1/aws6HCsFMMEuNvrVPqRdPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:03"]},"IP":{"Case":"Some","Fields":["185.220.100.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:9::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Xk6+QHjfvmykZIxNMu6/5tgiyss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8kjM5co1EobngJWLyf4t+iyWZZIXoNbPAbZj3K7PEg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:57"]},"IP":{"Case":"Some","Fields":["185.194.142.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Xk0ebTFBPczBSKgFAiRXjLvxKIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNmu8wZQfgd5AFlDcdcP+t24wPD3RvZatz9Kkovj0UM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:10"]},"IP":{"Case":"Some","Fields":["37.191.194.248"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fec3:62f4]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["XkDlUpEKVhyS/qoEJ/OvByls6eA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4uwSl+cFMZdFyBKUgq1lFrOEVL6nCehNsFuRNsJh16Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:50"]},"IP":{"Case":"Some","Fields":["107.189.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["XiJAYfDkchQpAnoTDbYH9P3Q3+U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["45ESmSxI6PB8S7i4CUGa8Tm+kuDyYvQgiU8Ktj4v09M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:52"]},"IP":{"Case":"Some","Fields":["185.220.101.61"]},"OnionRouterPort":{"Case":"Some","Fields":[10061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::61]:10061"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frodon22"]},"Identity":{"Case":"Some","Fields":["XiE0zo06O3ql5Ze47+PmWbA8ArM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FPe+wxrOoRnbzXV2v6GWTZsfa0IOkY40Y6HCSOAvgSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:00"]},"IP":{"Case":"Some","Fields":["163.172.179.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47b0:14b::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TitounNet"]},"Identity":{"Case":"Some","Fields":["XhFK1ghCjCOzjMx32iLkzQwn8s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRgu130APWZI9o77duFVar01N0jRDpvcp4F7PH24gtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:27"]},"IP":{"Case":"Some","Fields":["213.167.242.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc2:55:216:3eff:fee8:6e97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TimsRelay01"]},"Identity":{"Case":"Some","Fields":["Xg1bK0warOR5YH6E7BvOmIkQq0Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mwLQBolWNc5XDr1qo103rr/XDgTuPF73f8evmCAGbys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:42"]},"IP":{"Case":"Some","Fields":["89.190.24.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DashRelay"]},"Identity":{"Case":"Some","Fields":["Xf3ooK4Tds6tqIgqM9PCsnuIIB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FG0Q7lSgoGNXycBQrwFShy07N2XU9YLmocBOd2b0v/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:59"]},"IP":{"Case":"Some","Fields":["78.46.47.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackHuckleberry"]},"Identity":{"Case":"Some","Fields":["XfGfr8XBxJ40ZzQrTDqA1P8jsEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0onHg6c4AQR6dmG5dFM1X0CNSTPaWLDhs9FHvA20TSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:43"]},"IP":{"Case":"Some","Fields":["64.180.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[50003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qTorantino"]},"Identity":{"Case":"Some","Fields":["XerYWNyWBhdoZaYrpPizjP2imBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HbShAdsORfNuQ2rjKLkIY8S3jq2BWXSp7bdU7YfWvPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:17"]},"IP":{"Case":"Some","Fields":["103.29.70.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:92ff:feef:9278]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlLV1"]},"Identity":{"Case":"Some","Fields":["XcQPU1ft9ICakBCCgXIHLJWnNRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wCkfv/OB1yAGeBEb0Ua6TS3RSEB9YLhWl9CMcBqw8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:49"]},"IP":{"Case":"Some","Fields":["195.123.209.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27ac::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chenjesu"]},"Identity":{"Case":"Some","Fields":["XbmuJ6ROt7R2zASmbGenHJegAeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O3tKCIbjW3795LQ3YFUh+xl9SfQiGcpoJggse+SK+N0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:43"]},"IP":{"Case":"Some","Fields":["54.36.205.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Xbhnv+5im70nRuc4GLohViIKueQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d8uYzr1YVZj9YAIz5qn12RYf0M9akn418EWg/U/Z110"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:25"]},"IP":{"Case":"Some","Fields":["23.128.248.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::24]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prserver"]},"Identity":{"Case":"Some","Fields":["XaabCGuDP8Hfzy2ci5w7AxN8fv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TsLJeJHMqDLCCevRHfcKR756lplHGltXjpDFqp/0VEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:52"]},"IP":{"Case":"Some","Fields":["45.33.13.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9008]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["XZioovYPJsZeNPQgW+dyGeEO+wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fiHOEaCxibU5JxnRhw7HlskaS1zCxpwBQRWB67b7cX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:46"]},"IP":{"Case":"Some","Fields":["37.120.186.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:23:489f:4fff:fecc:5244]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["XYSQDb5tY2VoSpZ1uBporOlXemg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xw4BuVQ6hx7YhR4fhnG7N5/XJI+qDpshAP5k1GmRoqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:28"]},"IP":{"Case":"Some","Fields":["104.244.73.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f7ca::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsaciabrb"]},"Identity":{"Case":"Some","Fields":["XXjX0qFva00xZv2dH9SnFbFKVt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PhWePeSN/SeW9NOdZ4iO9GDFydapKNTL8f5EAq/eL4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:44"]},"IP":{"Case":"Some","Fields":["96.234.150.200"]},"OnionRouterPort":{"Case":"Some","Fields":[8500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:e01f:700::20]:8500"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission07"]},"Identity":{"Case":"Some","Fields":["XXZXcLTbEQ2IeHRXl4q0AIz2XKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ccNLLOwY3mEw7VTAg0KhaO5WAlYm8yTmqHKeHSBQErU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:33"]},"IP":{"Case":"Some","Fields":["37.59.76.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XV+N5IZ4KYl7unwsWYKqdYEFuJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fOzgqX6iDKGs94cfXVmH71ihL/OkdSwJXu4xiMWMZdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:25"]},"IP":{"Case":"Some","Fields":["87.106.169.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:8710::1]:9998"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra43"]},"Identity":{"Case":"Some","Fields":["XV3f8puWzFZqp0ZjaGjrB/l95gw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bB1inlfoS+jRixJJhPmEcYtCmRRU1QwuS4+irqclSpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:32"]},"IP":{"Case":"Some","Fields":["107.189.30.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra93"]},"Identity":{"Case":"Some","Fields":["XVda3RCN278X54rYyyZ9bB8zggY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpAX38tMP4tczagvtp1FGO9CAfUagbPSAcSWtUQVI4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:03"]},"IP":{"Case":"Some","Fields":["185.125.171.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:199]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ziggy5tardust"]},"Identity":{"Case":"Some","Fields":["XVHJ0mnp1C6GMqvssYXmhAwUJXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VemSm+bB5wcY/tuZQ+7OPA5ECC66zLJl/ZfeZ9ef9RI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:08"]},"IP":{"Case":"Some","Fields":["84.243.66.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoveUsingMonero"]},"Identity":{"Case":"Some","Fields":["XTm8f7iHkrZUgqwu1Qe878vo5aI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ia6VxU55kya1w5+KnACBlt2ONUISaYwG0YYPGOpYw1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:00"]},"IP":{"Case":"Some","Fields":["141.95.22.152"]},"OnionRouterPort":{"Case":"Some","Fields":[899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MoniTor"]},"Identity":{"Case":"Some","Fields":["XTkHMcdwEXycBukdGh0nL8ShyJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h0FtY3Sb65x9Q8Jm0qEon0JYDjJ2FgvYmWtxqdVSbYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:58"]},"IP":{"Case":"Some","Fields":["195.15.243.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::7dd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theark"]},"Identity":{"Case":"Some","Fields":["XSqMqhGdBShyLCQ4NQ+rDI3gGrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M1BIvWgnvdpWqlVjtormvcreTH+MApoFjiu6t4Co1AE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:29"]},"IP":{"Case":"Some","Fields":["78.46.98.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:908c::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anduinExit01"]},"Identity":{"Case":"Some","Fields":["XSYwN/wXVZazo0QTKwt1Xrj7HRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GTKUJ2bqOqTTNGpWeFXDnidtfhUyouflPDclB5Qbd3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:54"]},"IP":{"Case":"Some","Fields":["185.42.170.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XSEg0Kecx0qALV9bv9OjBXc6Ay4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xEFsoFs0WIKxxZoh1OHesB6/Y7ukSWPuuxudvXc1iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:24"]},"IP":{"Case":"Some","Fields":["91.3.206.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber62"]},"Identity":{"Case":"Some","Fields":["XRcBS0DESN4EAwUzNXGZs+PEMR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tiM/VAGQvvkdjWDAueCnv+3+A8rSiWefKqOe5rUtAVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:18"]},"IP":{"Case":"Some","Fields":["185.220.101.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::31]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sabe"]},"Identity":{"Case":"Some","Fields":["XRXje5zifjp6Fbk6oWcPyyfUwKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkQSo8GlXBsHVR8j+rKKoHZNDFqnPrb5h34mHZ5y+f8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:59"]},"IP":{"Case":"Some","Fields":["185.163.204.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["XRQAr5gvjQ2da7dp3KOtxWC/jm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dk76IjWlc4Wm7jJrYR8sHwxqTfREqa4zdbixiawWNuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:19"]},"IP":{"Case":"Some","Fields":["176.131.113.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktor1"]},"Identity":{"Case":"Some","Fields":["XPNC271hcL7gDNUqy0B21VEIXn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ODRhC7S7++F4V3J1Uf+nBfWZAUPNRryLnFpukS/UBZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:19"]},"IP":{"Case":"Some","Fields":["95.216.64.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:cf::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["polizeierziehung"]},"Identity":{"Case":"Some","Fields":["XOOtitBK3mbAA3o89ff3pA1Iogs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfnbJnUZbf1vP4Z0oRT62a20aMdRLna3QD0tBxR0a+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:24"]},"IP":{"Case":"Some","Fields":["95.211.138.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kikimora"]},"Identity":{"Case":"Some","Fields":["XN7JQMFep9q7+o9YzYlFuHXagMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wVqlY97c7A63+hhZAwvyqSWOWTDLI4mBwt08GRowSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:36"]},"IP":{"Case":"Some","Fields":["23.250.14.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bred"]},"Identity":{"Case":"Some","Fields":["XNYAf7buSFR0QJaAuQ8DTmuSWjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X8jszPd/4jl4Y7i6yqeKmvxGr53pCunZjRfY5DnkNK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:23"]},"IP":{"Case":"Some","Fields":["107.189.14.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:efba:dead::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WaterElementX"]},"Identity":{"Case":"Some","Fields":["XMc4ULoZrzkNele78sHvS9MpC80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEK5oGJbGEDRaVTmWtHWkrvcHJ0dzWz9cb3X9FKB9Bw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:20"]},"IP":{"Case":"Some","Fields":["194.15.115.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH103"]},"Identity":{"Case":"Some","Fields":["XMCvNFQiC4JzkEgnZhsuUYMvrEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U8T1rW5y9uit35gGoR1mJBZVRVGyCta2pJBLzfMuJgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:54"]},"IP":{"Case":"Some","Fields":["192.42.116.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonfly"]},"Identity":{"Case":"Some","Fields":["XL1FOUVzgoKRyP6XgCMv39DSAt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h6kSVu5xOOXXBZ2ZyUH0oPJj2YAQFQFzKfuVyPhariU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:34"]},"IP":{"Case":"Some","Fields":["192.99.13.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:60:3e30::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor5"]},"Identity":{"Case":"Some","Fields":["XJ/8+ApQUZt/vXBpN2sWwvPLBX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VQkHjlg1ZvECaQMzv4egQf1RfeeP58Wqi7W225Wi7r4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:42"]},"IP":{"Case":"Some","Fields":["107.173.167.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["affectiosocietatis"]},"Identity":{"Case":"Some","Fields":["XJpm9Apj2cjflwDm354f1H2K0xc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y68do1ZPOJpPDiJTgnTuG/7JI/hVMew9MtW8pwkm4Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:38"]},"IP":{"Case":"Some","Fields":["91.121.160.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1:e106::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charon"]},"Identity":{"Case":"Some","Fields":["XIvIKcQ2cxtQ7YZXAZ6Ent92sJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qdl1OrP17gKzVR6QyrsLJ1Zx0oOFrqBNs1gqndZT7Gk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:02"]},"IP":{"Case":"Some","Fields":["51.222.194.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:6e5::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor1"]},"Identity":{"Case":"Some","Fields":["XIuBGId3jc9wXz058Z5AohiJRR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8g8btiwvhPVzI9G98COaBbal4R4J0nPyZaXFAJGySys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:32"]},"IP":{"Case":"Some","Fields":["51.15.50.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1125::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["XIagmUakngmtZKFGNt/5F0ZRUXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CabR7EstU1/zdA0O2H6Eq/jDyF4uwfVaOmDTDac8At8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:07"]},"IP":{"Case":"Some","Fields":["51.159.151.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DragonMaw"]},"Identity":{"Case":"Some","Fields":["XIXf22xyuqR1vnwGGMSBnw96NAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/VruY0yeDT5kXAkewk313wzZBJ5K1D0GpaAZ7IR8oQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["85.117.235.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700::6:243]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x67726579"]},"Identity":{"Case":"Some","Fields":["XIJEMVGj+apxtiPCi8bj0T9dDe0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0UZ/tlcRV2LnqBbR39gEd8G2XdGhb60MltoWfC2EdvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:46"]},"IP":{"Case":"Some","Fields":["161.97.133.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:3962::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Droutnutch"]},"Identity":{"Case":"Some","Fields":["XIDLVXyWytgO+OxqtVhlMp33Sxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y89BxFbfmMa+NsZpPvyNl3xAJ44u7lCy5HPkJ0jZrro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:30"]},"IP":{"Case":"Some","Fields":["88.99.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:670::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeldenTOR"]},"Identity":{"Case":"Some","Fields":["XFc54C3TN/sbcnGROTanbUl0Mj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQtFT8ad2YXn290Kvg7C5NXHtoPel/08gEfbaKeB9ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:33:33"]},"IP":{"Case":"Some","Fields":["84.188.98.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Computer147"]},"Identity":{"Case":"Some","Fields":["XE2cfZL7/S6glY8CQNzvb6COTq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SuraxkkryUcfdTz6ebMBYy8JY0g03FeDWlgA2nFW7t4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:04"]},"IP":{"Case":"Some","Fields":["135.148.54.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwell"]},"Identity":{"Case":"Some","Fields":["XD8yF/mdbPpxHZQVr+0QA5cSAa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L94ldk3rdB6yDKJxVf36MbadkplxBLSQRGcN4o/c+fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:33"]},"IP":{"Case":"Some","Fields":["185.112.146.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catapulta"]},"Identity":{"Case":"Some","Fields":["XDaTwOe1N1U7qzW924Hd0k4Ve28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6owsj00sNxP02pT59ncmXiYLo3ScojM3NQDRjACbY5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:58"]},"IP":{"Case":"Some","Fields":["172.106.10.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hunter"]},"Identity":{"Case":"Some","Fields":["XDNEsHjOTlQbkQy0FtQ6RdXMk0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jl1sxSAfOGi5+cZ6nw9b9+F/lKgz7tKwdGWIOWmERMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:23"]},"IP":{"Case":"Some","Fields":["141.43.203.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Teuntje"]},"Identity":{"Case":"Some","Fields":["XBJKJ//WWMt2FlcY2r/9QJP1yCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BsSoodSGOoRkhVAZz3Kyklx668zW1c7eQisL8Lfg/nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:51"]},"IP":{"Case":"Some","Fields":["192.42.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:113:192:42:113:101]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay20at5443"]},"Identity":{"Case":"Some","Fields":["W//o2uVrHaCQu7e678kRsQLQZfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JqVnQZbmUDhoSXR/TdawWllLeykL7Lg8hylAXiAptWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:04"]},"IP":{"Case":"Some","Fields":["140.78.100.20"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["W90GM+CsCXY+SWQdzRujqzohqoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hfSiiP4LG+9R294DUfHt1CaMpXVtOHkccU7f8kkInEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:17"]},"IP":{"Case":"Some","Fields":["185.183.157.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lonesomePolecat"]},"Identity":{"Case":"Some","Fields":["W9qt0Caoa7L49+yIL/qkMmshMEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rdrGqsjvDIBnr5SsSFQZAC2sUTdb1/zNvSsUV5poC4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:16"]},"IP":{"Case":"Some","Fields":["162.220.62.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["W9G4PkpoTH4NfM5Sra8Ew153heQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwkNhXYMmlNf9ihtPah3MPQMAQYKhBwv+c1ECiCwAXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:41"]},"IP":{"Case":"Some","Fields":["45.9.149.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0000Userzap"]},"Identity":{"Case":"Some","Fields":["W8xWmiTc2R8cUYo+CKzloFckOMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtuTc65H3c4wyF52qFtEEEj78TIuNXfgoph9nn2WUxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:01"]},"IP":{"Case":"Some","Fields":["46.38.250.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:5260::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PleaseNoFeds"]},"Identity":{"Case":"Some","Fields":["W8Y6vglaP1114KtNhUMJWhaShkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qciGSc3LuZ9RU23TajJCi+hF/b6459N36mQqYFGxzPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:07"]},"IP":{"Case":"Some","Fields":["194.166.129.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedRadack"]},"Identity":{"Case":"Some","Fields":["W8VCvsOOjTc9IcannMk0jcKL1iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ulE82Pvn1RSrk6U+RufcrX88uTrDP2Q4uZAHzbvWFwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:14"]},"IP":{"Case":"Some","Fields":["23.154.177.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xDEADBEEFCAFE"]},"Identity":{"Case":"Some","Fields":["W65Ite+nF6RkjzryZGfMu6O7Za4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J/x73vlybjmVPn0VDQpsNxGqHCxbFjqSL5KENbN0Z50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:09"]},"IP":{"Case":"Some","Fields":["94.140.114.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::4d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubflower"]},"Identity":{"Case":"Some","Fields":["W6PCPop/RfoqfR0oD/ireIpeoBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ehf+4Ed7DjbzNHTu8nI6Ngc2A/0EUwAgpF98itEQTC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:25"]},"IP":{"Case":"Some","Fields":["185.67.45.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gurke"]},"Identity":{"Case":"Some","Fields":["W6GbXVqwy5746jPad1hbdUSUALA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uN6dF35f0TJCaBElLcx+uL2CKi5nsYRyF8M1qThkk10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:30"]},"IP":{"Case":"Some","Fields":["109.70.100.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torneverafk"]},"Identity":{"Case":"Some","Fields":["W5er5EW0Cbd7Zn2e0Fre3dOGuSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlB77vazNajsl0AjEAy9isYMTxjdlkBJ1ToY7rZtOSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:35"]},"IP":{"Case":"Some","Fields":["31.24.148.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:678:3b4:100::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["W5CG1L+56jbJWJfa7XL8OXOEe0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q9DfCFxr8MfH2zRVpJxJwASFoMOw6VZkU7Hoq2tkXSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.243.218.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:27]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["W4PcmDQGZRoLT2rhlAeTzdam+S4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoE5/8jNGpFnBnrQYqUAzvPtyObGFuErquTvOxQpP68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:02"]},"IP":{"Case":"Some","Fields":["138.201.55.77"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:1045::5]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["W36p7e58FEq8KOuGxSwTU+dToAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JYJJ6xfZpRc1XtfWdOzy3tE4nfyNmQ+NALiowF16/p8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:02"]},"IP":{"Case":"Some","Fields":["185.220.101.34"]},"OnionRouterPort":{"Case":"Some","Fields":[10134]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::34]:10134"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra21"]},"Identity":{"Case":"Some","Fields":["W3xXfd68ayw5tVNk9OrWn+gYEGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8q4/4cTWqm56Ugvx0v4+1p1owvVAlLc1ntnrvEaLkBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:23"]},"IP":{"Case":"Some","Fields":["193.218.118.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::90]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dhrly25"]},"Identity":{"Case":"Some","Fields":["W3X/crmRlX+/HdGO1zTwhXC1qAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qG+btqBke/fGvV2atdaz5liKCGl0SrNyU/U6Y5IQBf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:57"]},"IP":{"Case":"Some","Fields":["212.21.66.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bf0:666:0:1c0c:49cb:1d9a:a032]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting23"]},"Identity":{"Case":"Some","Fields":["W3VM02sZ/DaLh/0/HOtSmwVUXwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["erDo4dIoO8BfOd91FYIj8FkfSsWO5FF/DMTn6ibChpw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:16"]},"IP":{"Case":"Some","Fields":["185.204.1.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mirondalse"]},"Identity":{"Case":"Some","Fields":["W3EMfTCTFgjutWIsJ52wa5ACPiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8V6aJM9XQLydw1Y0AwQKXcMHvuchnmnbkZn4ZSjRcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:48"]},"IP":{"Case":"Some","Fields":["185.103.135.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[9231]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["W2/M4Qm7uOOxpj7DRgKrbiQ/l80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OogJjrpj2gAMoMjdHynW2LoiXvos0nLBAYXE02yEcGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:33"]},"IP":{"Case":"Some","Fields":["23.128.248.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FatalUnicorn"]},"Identity":{"Case":"Some","Fields":["W22rFRbzMS5/Po2s+qvHMqXfZ8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lKy5MC+wniXTKWVhhWGNHExx4oiDYhxfiMxW5BePaFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:35"]},"IP":{"Case":"Some","Fields":["94.156.175.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LauchRelay"]},"Identity":{"Case":"Some","Fields":["W01rhFrDzJfrMWnQx3RGk2QyKUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rTXcYXihBbcELkE5kEmvieHbDOCZ2DkicVdCH4/FJy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:51"]},"IP":{"Case":"Some","Fields":["148.251.55.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:8174:dead::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorPi"]},"Identity":{"Case":"Some","Fields":["Wz8N3CW4oK2ikBOfwbE1WjInHis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZI5Th4EnjcDsuxQLFE7t7x1L6v3UntyNPs4+1nZ5AI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:46"]},"IP":{"Case":"Some","Fields":["152.67.205.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShinyTsunami"]},"Identity":{"Case":"Some","Fields":["Wzs+CbpfHrb3KgT+rYHZrLiPiTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TUwvISwUmpW0LN+eo8pxrgphbX2XokOQP/m/E3HqRYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:20"]},"IP":{"Case":"Some","Fields":["93.99.104.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["WzJtyPy/4ru84oBjmOV7bQVTnsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["85p2Il2wy9WRW2AA3BOncbW5zF62XjgKZjRv2rnhaW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:46"]},"IP":{"Case":"Some","Fields":["185.220.101.54"]},"OnionRouterPort":{"Case":"Some","Fields":[10054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::54]:10054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay03V6Rocks"]},"Identity":{"Case":"Some","Fields":["Wy4qPrBl9oQgoDqKjl40u0rPRNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fx/KGtr/NzXGIHrNQqd8PCvsIDeQCo0V5G2c88UhBfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:21"]},"IP":{"Case":"Some","Fields":["185.170.115.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ad1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WyVljhwlbN9M9s8Uvlxt8E/8O+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kv/rBET1dZWDJi0sKjv2K31M/TEXBG2+/cN2d9ml9OA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:47"]},"IP":{"Case":"Some","Fields":["5.39.185.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:f640:0:8::2:70f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fastlane"]},"Identity":{"Case":"Some","Fields":["Wx8NrzeKH6/P1fqc3GbRAj3AJ24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLzCGiFoHGoguh+PyBvYVMQbyjr2rKo3HrOwJz0zPcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:19"]},"IP":{"Case":"Some","Fields":["178.63.25.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:608d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisFamiliaris"]},"Identity":{"Case":"Some","Fields":["Wx5f1icn8CG1ruZVTlfuWEKQnW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rdcp47BkmikndhXlIajXZPgNYH81MJT8f+4TtXhAEpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:10"]},"IP":{"Case":"Some","Fields":["135.148.100.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay23at8443"]},"Identity":{"Case":"Some","Fields":["WwehzqQ7ypipceR2EcDw1hsYdh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OCT6BnEaN2bAo11jOB+kmZ/ggDMBpO+9DsaJTABG9m8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:56"]},"IP":{"Case":"Some","Fields":["140.78.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedTor"]},"Identity":{"Case":"Some","Fields":["WvtQLSYLzMmXTGV+lWuHjTNLzMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc1CT+3q02jMwXc9sJFAqqe3whDY6ZVWJ4t/0oP5ZrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:34"]},"IP":{"Case":"Some","Fields":["23.154.177.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whitenoiseRLY"]},"Identity":{"Case":"Some","Fields":["WvnpzFkD8R9taqYB6yEuVprmbJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8M+tczdjzU7II2oBYfePlfIb/kHc5jv9Cb8edl8JDYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:06"]},"IP":{"Case":"Some","Fields":["159.203.29.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::2bf2:2000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RedStar"]},"Identity":{"Case":"Some","Fields":["WvNjYwvf7t2m9Skne13TBZVhANo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dHhIKcJxKxyhJl/s/wnttn6hRj3M7hWsCGixIiLzUhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:48"]},"IP":{"Case":"Some","Fields":["95.88.176.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WuqjL+aWg/ixJx5KMx8Wohv4CLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0rQCDg+lr+6QwhqYIHVYpqt08vTUaPwLjmOB0jxVHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:38"]},"IP":{"Case":"Some","Fields":["2.207.47.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckDIS"]},"Identity":{"Case":"Some","Fields":["WuXD7n2Ys7ZM1R9yo1bhgUcdWfc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iU2tcYDbnWC+3mjox5ba2PUQQLAPdIGTaz2O7w3kaO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:38"]},"IP":{"Case":"Some","Fields":["157.90.226.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:aff2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra36"]},"Identity":{"Case":"Some","Fields":["WsxZ8xF/H2+tjIn0aYI8tIvbXS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEaG1WO0IgsUoulQW3sCZAqtc//nxuQffwLBS5VSx1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:27"]},"IP":{"Case":"Some","Fields":["213.164.205.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritoinfinito2"]},"Identity":{"Case":"Some","Fields":["WsYdwLUcg6wuZV4GtzluzX003Ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6E3JLFxKq9+K3tcwxy/rdOyU7bkidPERvl2LCdQSF7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:54"]},"IP":{"Case":"Some","Fields":["187.207.96.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9130]},"Address":{"Case":"Some","Fields":["[2806:106e:19:2f73:2ca:5aff:fe00:2]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllTheWorldsAStage"]},"Identity":{"Case":"Some","Fields":["WqY3AgWqYRztlnvbTY68udXbV6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YZSsld87V3Hzj0bMUIVEwI7o35iy4EqZ55E+b0ZbX9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:30"]},"IP":{"Case":"Some","Fields":["107.189.1.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ef7a:391a:8c71:a2f1:9506]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AcMNPVTorBox"]},"Identity":{"Case":"Some","Fields":["WqKsNz0TLiHxG/+ZFnr5K/HLfEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lrMN9fqGdDJLRT7Boucaa3M9GGK3r2OP9Ckv5Zk7Z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:36"]},"IP":{"Case":"Some","Fields":["188.226.222.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:0:1010::ee:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Wp7ShlOYBS85MVOloQtCqsOnt9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mDB3P5IvcqsDI+Y0mmreeyaZtCN1h/0TgeB9Gy2fGDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:56"]},"IP":{"Case":"Some","Fields":["93.95.228.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LanternRelay"]},"Identity":{"Case":"Some","Fields":["WpzSfwbwFPh0NZoBc9j76QG5MYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jjwBdZ7YiiFV//IRIGRbVmJiYDM5gyNZA4aZZdNt6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:59"]},"IP":{"Case":"Some","Fields":["76.189.140.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CryingOnion"]},"Identity":{"Case":"Some","Fields":["WpsuxMZS7E/3LIxnOTe+J7NIZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+lMi7eqE81lBqFkPSOdgmoBNWfndY/s35f4EM4aLv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:21"]},"IP":{"Case":"Some","Fields":["5.181.51.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:3f:12:9460:76ff:fe49:d419]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireElementX"]},"Identity":{"Case":"Some","Fields":["WpQEya9y2xKt6y/4EOfaEtPWbO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bFkXawXfyeo5jbsJTrqG4WyTtvVY7pXLiBRNAxd/e50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:24"]},"IP":{"Case":"Some","Fields":["194.15.115.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["WoKSkmxeWiRtNbhDpylC/OwjW6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0KQzuyteYGMuie8925KEQ/qf2Lv8Gna6nejlFOyCWUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:04"]},"IP":{"Case":"Some","Fields":["179.43.159.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["Wnm9XMbBKNfY37SWmwJGeU8Rf8Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jobER20BDzapZRSBQ0Tw7YWLE/2ip0UXzrG+u3BO4Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.54.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3647]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kinaugate"]},"Identity":{"Case":"Some","Fields":["Wm/hHbi/yts5W1NtFs+dL1hDbTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i10d7C6V3+pwfohYIAJK0Jk99Y/Lpvs1Z7GBzPU2ovo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:57"]},"IP":{"Case":"Some","Fields":["185.197.195.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCtorrelay1PL"]},"Identity":{"Case":"Some","Fields":["Wmwy5WKutyAlI4zvPSt2OiLlTtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8clu7PqA09Dd6nQWtosXTVcSlowKrclIGJRdP5H6RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:46"]},"IP":{"Case":"Some","Fields":["151.115.38.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1e00:3d17::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["always2"]},"Identity":{"Case":"Some","Fields":["WmrYv7p09kaCKZbsA/00hDU6QbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hoLikPOd8y3ahZZxXp3d6cnMWp9LI5q2ZTB2ywyUXgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:34"]},"IP":{"Case":"Some","Fields":["119.59.110.153"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goodaires"]},"Identity":{"Case":"Some","Fields":["WmSGPC2XDVxfe9eVZ3RxPSBTpYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oywTezq4LQfbhWeQ06eHAOQNmSdgfmUCw8lzraOg478"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:52"]},"IP":{"Case":"Some","Fields":["190.103.176.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterry1"]},"Identity":{"Case":"Some","Fields":["Wl21U6kme0WB3lLxrmMOIW5hXRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5EH8tfgZk1i/7iuYknPncNNyc75SDtcIcZl1Q/zT7HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:48"]},"IP":{"Case":"Some","Fields":["70.109.131.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelpTheUkraine"]},"Identity":{"Case":"Some","Fields":["Wlr4djk+YrLeGN2tOK85L09rHFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZRp8rqOhjhGxw/7PZNVqLGbB/aoTy3HTGTwAtcAyGZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:41"]},"IP":{"Case":"Some","Fields":["49.12.189.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:e546::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["russiafuckedup"]},"Identity":{"Case":"Some","Fields":["WipDE5ECbeFe6ZvReSWDETovgYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rJdfXSeShvSYNBSAB695q6How4Sh72DHybPCj9o05NU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:17"]},"IP":{"Case":"Some","Fields":["89.76.241.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl4tjdevde"]},"Identity":{"Case":"Some","Fields":["WiW7Q7sO5Xj95zWnXAKCJapKE+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvyqfrs67qjD7G0Ou1toFO1EXbwzhBEZtvly/m9RUIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:17"]},"IP":{"Case":"Some","Fields":["89.58.45.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Politor1"]},"Identity":{"Case":"Some","Fields":["Whf0fl9ExVCx83SahUl2bjTCwCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uyhszRzCaUZOfhG51IViH/wAgYVzhUfQnVqcj6JO5jc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:01"]},"IP":{"Case":"Some","Fields":["158.69.217.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::10dd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra67"]},"Identity":{"Case":"Some","Fields":["WgZD5FLhQ75Um6s7/ldfQN29Unw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNFQDD8JfxdPTbcs6NtUT+mv+ENg2jPeYdjIEk6L7dc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:18"]},"IP":{"Case":"Some","Fields":["94.140.114.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSouth"]},"Identity":{"Case":"Some","Fields":["WfoOadzN4Fv7QRCqO+r4P6bKZaY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2I15VpcIu14sAafVohB0Cc6AdghvAvYAF45RlMry2aE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:51"]},"IP":{"Case":"Some","Fields":["193.218.118.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anonymous"]},"Identity":{"Case":"Some","Fields":["WfhzEyMySzOCX/M84E8iGDkR5z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8sRBSSp4DulK3pXBrbb4aFGBRsk+Wst/ZB4yJNx5AxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:07"]},"IP":{"Case":"Some","Fields":["144.21.40.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raven"]},"Identity":{"Case":"Some","Fields":["We5b3AD9m0suhDa7bkq4kTrOoy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["86DGqgNY0tWLUnOksEYGY1o1xlaHZuba7Z9WDc98RyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:35"]},"IP":{"Case":"Some","Fields":["91.51.254.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toronada"]},"Identity":{"Case":"Some","Fields":["We3ROdlVGiW323zdgvEsDDeKksw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fr25OdPrOufXJRVlmJ8yUOPP9ZiJjVK++uWP7ybZaEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:38"]},"IP":{"Case":"Some","Fields":["79.158.148.104"]},"OnionRouterPort":{"Case":"Some","Fields":[50007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mriun46k"]},"Identity":{"Case":"Some","Fields":["Wefg0DIEmqAYMDXkm3xFQWcVTq8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSrbs8RTNuw8NGFT9lQ38scntLG5Na4qorzIcdZhJFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:28"]},"IP":{"Case":"Some","Fields":["114.24.0.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8008]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BananaSplit"]},"Identity":{"Case":"Some","Fields":["WdQbBi8jJNDPqAIkwOTNYpzu84o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqfN9+T+Msro3KHJIYchvGV2sqKELwd2aYIAZpuGSKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:52"]},"IP":{"Case":"Some","Fields":["81.4.109.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spaghetti"]},"Identity":{"Case":"Some","Fields":["WcqW582jCrNsWXtJnISL2EV0XqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1A6ZD7PO1lizr8Ck5L/CIwkESJY2dxzbUriEMjcR86s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:33"]},"IP":{"Case":"Some","Fields":["5.135.177.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hagardunor"]},"Identity":{"Case":"Some","Fields":["Wbo1WIpjNG/maujPZYgYQg3W5bI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEp1JFUld82bMLpgMnDKokjaauKBOCnAPvza0iHMCcE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:15"]},"IP":{"Case":"Some","Fields":["51.77.202.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["WaW6z+MrbKD49ntmIbPouJMSy3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COdR0VpOJmMpoag+Du2AkcXqnXx/xAPtxrBjYJCuQzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:42"]},"IP":{"Case":"Some","Fields":["5.45.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArkGuard02"]},"Identity":{"Case":"Some","Fields":["WZ9tVLtdyNr28zVpmvZpsh/RrzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hdWf8aZm7WI1TB2eQ8LpvAk7f+30nKe8IEdwCa/e3ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:41"]},"IP":{"Case":"Some","Fields":["65.108.247.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dunnosomething"]},"Identity":{"Case":"Some","Fields":["WZpW+rjoqou0Z6tzCtofEjgn5Ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXo+LgAq1ugji9xCxREDdza2BUzw2BHDC6+TUNV2UQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:49"]},"IP":{"Case":"Some","Fields":["88.198.14.190"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[49030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNuc321"]},"Identity":{"Case":"Some","Fields":["WXk4K1sq/lPTpPZY4huXHFRK1TE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QMkM25jX9UFe1PMHag3eeKN0gRPfm9vE0n9UGAIpTfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:22"]},"IP":{"Case":"Some","Fields":["85.230.122.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Playstar01"]},"Identity":{"Case":"Some","Fields":["WXWFi2ofN8zJYCa5RurPCOF3LQ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["natHk1AXIVuzL2abxn/uQgJ1DWodoEGTxGTyRJ5QYzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:55"]},"IP":{"Case":"Some","Fields":["192.121.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2af8:0:b436:f5ff:fef5:a154]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isnotsocial"]},"Identity":{"Case":"Some","Fields":["WWgDCABO0y8E4cVqucaLFMx7W3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gBJ8TLQ87FHK0KjegnXYs73EVqQska7NSkx7QJm6CCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:21"]},"IP":{"Case":"Some","Fields":["72.212.32.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["WWMyNesyiach+RJnqLwrF4p13l0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUSYioFsj2WZfe82lY11ZQTjUgK6FJBrUye/JrQ/eEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:41"]},"IP":{"Case":"Some","Fields":["37.120.165.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilkiRelay"]},"Identity":{"Case":"Some","Fields":["WUgWHD5TnZvfGKA/FxFGRV6R21k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Eiab/B+Q6wEsWe2HE5fAftws39Q02wB6KC8Ogan+BQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:50"]},"IP":{"Case":"Some","Fields":["65.108.129.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:188f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WUGT5R84LjQIDXa17K9ce2fPBe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KI0wz4h1BLwXwQKW04JXppc91fzaow1EJI6buxvUlNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:50"]},"IP":{"Case":"Some","Fields":["37.191.195.67"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe09:486f]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE77"]},"Identity":{"Case":"Some","Fields":["WTQHl4+I59K0UEVnbnw3krwsmZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ch8OgvwtI9G9ErwyG01i7dSeu4ZYg4Jy4u89ls3cHxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:25"]},"IP":{"Case":"Some","Fields":["37.221.67.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:107]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI09"]},"Identity":{"Case":"Some","Fields":["WTNHOjVjwGZsW7gzwdtVPB8pa3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lox05fQxIc6BhHje19+2Mtle0MZVHogEgGsb2KbP7jE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:00"]},"IP":{"Case":"Some","Fields":["171.25.193.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::234]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay28at8443"]},"Identity":{"Case":"Some","Fields":["WSq4A3LbA2X5ojV3AqyXwG5fg1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U7LLlaSKW2DVV5+f/TM+QQGAoCgwVFeofH8OhFM47Ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:05"]},"IP":{"Case":"Some","Fields":["140.78.100.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funfair"]},"Identity":{"Case":"Some","Fields":["WRY8aCHyqNs/omBHLbRmSfZn5a8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kANLXNfV4arqtUXLrVB1nbdU0ipNGMOw6gC7QiIwnBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:29"]},"IP":{"Case":"Some","Fields":["103.102.161.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra83"]},"Identity":{"Case":"Some","Fields":["WQ9u26Bjq6ywg5HKPXouw1/SAjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsqpHsqXg7JmD+c39A8ou+f0HbuQsl4QJvAc4ikSEKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:09"]},"IP":{"Case":"Some","Fields":["37.228.129.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft9"]},"Identity":{"Case":"Some","Fields":["WQMDdyqxOlVUgEL8NQHAKVKfUMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZdAIW12akLrQCEDNYStLjWi+Hv3EfkHcaRgtOfhWUEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:38"]},"IP":{"Case":"Some","Fields":["157.90.246.152"]},"OnionRouterPort":{"Case":"Some","Fields":[446]},"DirectoryPort":{"Case":"Some","Fields":[83]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:5fdf::1]:446"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slauthtertodeport1"]},"Identity":{"Case":"Some","Fields":["WQC3VzlIuHodoM1cCwbNy3Fl0gs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8xCa/Sx0bBqf61BEagloY9vv78JbCnO51YOAR7bbMw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:15"]},"IP":{"Case":"Some","Fields":["141.98.9.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlNL1"]},"Identity":{"Case":"Some","Fields":["WPwqqzeSrDeJfTQzH09OADQd7Aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+OPwxgEh3nCjsgWPRrS9xOWWCsyb+zXmsrh/ZXl5Gr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:01"]},"IP":{"Case":"Some","Fields":["185.14.30.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27ab:0:2::22]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaymirror"]},"Identity":{"Case":"Some","Fields":["WPPilW6ruB9nPi+5DhbgAdtKw64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XewSbVY4BPLAbyUOwXbTDLoWuxbGgghl2FEarbf5aBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:03"]},"IP":{"Case":"Some","Fields":["85.195.230.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uncreativeGuardian"]},"Identity":{"Case":"Some","Fields":["WO+V+YsRmwoLKir9Wn/GtUzGmGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j2q9Bwp/WBuTA7zat0iX5XyGkzeeb8Pb2OXGXIz/Noc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:13"]},"IP":{"Case":"Some","Fields":["178.12.22.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion252"]},"Identity":{"Case":"Some","Fields":["WO6WiiRwDAtR10lrUnOtvidOxLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BZJG5QMng+JW/VyU1rFvPrUfJtsutu2ynSVPx0im07M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:35"]},"IP":{"Case":"Some","Fields":["38.147.122.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamAAdams2"]},"Identity":{"Case":"Some","Fields":["WO2cnDXkM+5Ydk1iiStP/VGKPNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QimvA0Xc8peq3ssxa/kOLh5ucNnA1cavZOhiWK6I35Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:14"]},"IP":{"Case":"Some","Fields":["185.21.100.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:2:cd00:0:74:6f:72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enbyfaggot"]},"Identity":{"Case":"Some","Fields":["WOwMpz+r9ut8tBoHAINM1eGqHfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tz7fEaj4T4a3d94ybdzmdLKx056qWD/ZhkM9l5L0WBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:03"]},"IP":{"Case":"Some","Fields":["78.45.4.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["WNkoDUe94hhONGckpFFn4gKDmbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vSxnUGiefV9Bkk7cuERpOvW5dI6U7NKcULf6bENOvFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:58"]},"IP":{"Case":"Some","Fields":["2.58.56.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay20at8443"]},"Identity":{"Case":"Some","Fields":["WMvXckIq76hxkFYMGTwOjAO9pr8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAc02IMbv1Zv6gm+4PdoqdpIknijcazbHtfTZWb5O/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:09"]},"IP":{"Case":"Some","Fields":["140.78.100.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl0tjdevde"]},"Identity":{"Case":"Some","Fields":["WMrf2K7dn4hbRcIonIHRnZ2j1V0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FEHzUH50rLx7XcYrsAx9HrrdZHdTyhG/wMTtm4z+ySg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:16"]},"IP":{"Case":"Some","Fields":["84.252.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f50"]},"Identity":{"Case":"Some","Fields":["WMLpugKsCjmwiwrnA/XDGDVLUxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SRiec2YoLq9XDLm3Cpbhv9w6s3mRyYeLJ/d6jyeUTGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:31"]},"IP":{"Case":"Some","Fields":["116.203.17.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipba"]},"Identity":{"Case":"Some","Fields":["WLws/6eJT8j0zF2Kd+OP3P2x3A4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q5/MOkUQOFZNDugqeWDm8eyncTOiPq6GJzCVT1iguto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:50"]},"IP":{"Case":"Some","Fields":["185.220.102.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::241]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iblech"]},"Identity":{"Case":"Some","Fields":["WKmSHdChOJNWY0YlxbFKzBGUqVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftiWVANM3KhxtQk9X8GaVKw/aiOVVKtHpLxsMSoTBJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:59"]},"IP":{"Case":"Some","Fields":["79.143.177.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3003:5755::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["serpico"]},"Identity":{"Case":"Some","Fields":["WKcZlxLA5Ss8Xy+Oiye1pivli8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0EWT8gfvz8YQ5VjTNnmn02GSXE7q0l7A69DUloV4TME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:27"]},"IP":{"Case":"Some","Fields":["45.141.157.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WKKg6Enp42kvexNiI1B+k8sJkVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["musaWRXq0iZl8x4YpWfIsgpXy/N10MLA9JaO1N3Huyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:55"]},"IP":{"Case":"Some","Fields":["188.165.26.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber44"]},"Identity":{"Case":"Some","Fields":["WJdSLIvMiGpZ4wMhJd2x0zoVarM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/+vyZZPRfcnIg53s2gzgvCD4saEpLg6mGT+rnQZJMb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:29"]},"IP":{"Case":"Some","Fields":["185.220.101.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::22]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Asen"]},"Identity":{"Case":"Some","Fields":["WIpsHsSHWDD161foljGvsocfWFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLshQOGPXMBZk5Cif86MFOHte7j4h5xDywGA3SS5BqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:45"]},"IP":{"Case":"Some","Fields":["83.137.158.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumpet"]},"Identity":{"Case":"Some","Fields":["WImlTM1owxn2+Kzv+B4GPm6Eub4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nQ3WqHYpVzAfa4mzuX3wGju2vNS0HzhWYMzylvf7Ug4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:12"]},"IP":{"Case":"Some","Fields":["147.135.64.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu"]},"Identity":{"Case":"Some","Fields":["WHserx4i4UjvsBDaozes3NTbXLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WOkSzEWRcxqt39gVfexenCSbDo8Q4Dz0soi4pnaRjn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:48"]},"IP":{"Case":"Some","Fields":["198.98.62.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9941]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:4b0::1]:9941"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CarabineroDeChile"]},"Identity":{"Case":"Some","Fields":["WGmMXlGNQo3KTZeArYN5u2O1e0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VjCvZQFkPVR6U8Q1J9YuzCgPgIiCIC8lDY7iQDLufHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:23"]},"IP":{"Case":"Some","Fields":["107.189.8.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f623:5a78:29a6:8492:27b0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guenthergraubein"]},"Identity":{"Case":"Some","Fields":["WGgDt+354o2ZtUCXckKH+3EJdxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSkZH7nRk8ovP+IjOwYrmLdms1irpYC8gqk4kmB0w4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:35"]},"IP":{"Case":"Some","Fields":["78.47.169.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:d4e4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchwarzeLocke5"]},"Identity":{"Case":"Some","Fields":["WE+qADOlLEpwkcPT/fcKLv9sc50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ABMeSORAYFxjmx7wRQqwHcRu7Zsodhpy7GKPMHWmYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:27"]},"IP":{"Case":"Some","Fields":["88.198.207.48"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:2276:1::20]:53"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transilvanianrealm"]},"Identity":{"Case":"Some","Fields":["WE56cU1oJmCDuHM3LXZll732eTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RavoP1zdtNOwXfzi92sTWqZ6WyJq1QGAkUp5TKXGSIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:27"]},"IP":{"Case":"Some","Fields":["117.53.155.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eeg6AiteuGha"]},"Identity":{"Case":"Some","Fields":["WEfVoBxHFmFD9zjHcDNEUXs56xA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cT14g5F41Bj98AgHvH6uLu4LwPI+gJX3Zm9/rLyeaLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:26"]},"IP":{"Case":"Some","Fields":["5.2.72.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokisboat"]},"Identity":{"Case":"Some","Fields":["WCLNjoFKgQCE+zOf+4V1/HEMfzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3DVQXIoDWSy12X8DqNlKZLJuZmkChJUnzfsbTkA/iE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:42:37"]},"IP":{"Case":"Some","Fields":["188.68.50.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d009:2844:1ff:feec:de5e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TradePath1"]},"Identity":{"Case":"Some","Fields":["WAfTykMh38LcS8F8GXZa27AbSB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKC8R6AP2PJdqa/HJlxoIcWY+lbUGiMVdGeNLsG7QmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:52"]},"IP":{"Case":"Some","Fields":["35.136.7.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kricklen"]},"Identity":{"Case":"Some","Fields":["V/ySfxza3skzgOJH7pSaN4eg234"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hox9ZbNrA9vSfTZYr9RlJJ3wbVe/yh+4HBjma9nx+28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:08"]},"IP":{"Case":"Some","Fields":["5.63.55.93"]},"OnionRouterPort":{"Case":"Some","Fields":[35278]},"DirectoryPort":{"Case":"Some","Fields":[35288]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TachibanaLabsRelay1"]},"Identity":{"Case":"Some","Fields":["V/GAk6b5UrHF92cqnOfHlhPB2RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlonvJMoK57d9n/utT3KtUOnqB/kl7knMI6uSKh02xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:53"]},"IP":{"Case":"Some","Fields":["65.186.37.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0161"]},"Identity":{"Case":"Some","Fields":["V9DKk7Bp3MwsNL7SvcvHGvjInT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F/2bJgMdNntzj6N3IUWOX9orIDPZ85WHyKerIcwjeNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:54"]},"IP":{"Case":"Some","Fields":["185.220.101.161"]},"OnionRouterPort":{"Case":"Some","Fields":[10061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::161]:10161"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber48"]},"Identity":{"Case":"Some","Fields":["V7wI8AxqCDYx7zI1LO/3Vk0qZq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nLt0kwCmtBEvejAeH7uq6yFmcfXB1ji78Nm0K6lD1FA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:38"]},"IP":{"Case":"Some","Fields":["185.220.101.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::24]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["V7aHPC3DYuWkKoCftWJM2joCVDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["es+XLm5qyFguBkRG99Srbdxl6QsVkGrJjN3/VDhmYho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:28"]},"IP":{"Case":"Some","Fields":["69.164.194.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privater"]},"Identity":{"Case":"Some","Fields":["V6KVN38xZ61VS1IfRhUYSUPDnOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CS8bNPTtPdgx1Dlo7J+rJdyKHtTtowCHmAUNjfV8Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:36"]},"IP":{"Case":"Some","Fields":["135.181.213.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3a:2b96::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit4"]},"Identity":{"Case":"Some","Fields":["V5b+HrV0TrNj/bSZ/7wveTPAyko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oCbe0BK+yZ4Ldn9Ei6oSxMJ5m6AuyrB/mOk2VaALBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:38"]},"IP":{"Case":"Some","Fields":["185.129.61.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StreamsofLifeSpa"]},"Identity":{"Case":"Some","Fields":["V5C2KtbHmhCSswmTqPD38jqWn9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIx8DnniTQTB6vd7zExaDXAENaoFLiS8A2sNwFAYqeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:40"]},"IP":{"Case":"Some","Fields":["51.83.237.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marylou1"]},"Identity":{"Case":"Some","Fields":["V44Afl5FNfv+93WNhYewe0yMXQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HBjXtmKdAsdd5L8P+miJ3GlnR565fO/rTpXHVeF0ntY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:03"]},"IP":{"Case":"Some","Fields":["89.234.157.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2608::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ruebe"]},"Identity":{"Case":"Some","Fields":["V4jOwKfF7iUfxyxVcwprH8rqHZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WVTLTwcMZs97uZiOnnGHB5HtCYdOhNeB/VD19jnGqh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:28"]},"IP":{"Case":"Some","Fields":["109.70.100.1"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicOnionDefender"]},"Identity":{"Case":"Some","Fields":["V37NshodG5LoN7cLmV92shUdgyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YGzcjZQJcah5ex9PI2Q9mrNNejrVzoE/fGl0FA/syYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:55"]},"IP":{"Case":"Some","Fields":["190.130.150.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["V1bZxAPYm3mv5p1QuwaCujGDGfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wScHOanV/8JOZCxQNtE2QKcvlWig02o/97DVr60Z6CQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:11"]},"IP":{"Case":"Some","Fields":["188.68.58.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pythonian4000"]},"Identity":{"Case":"Some","Fields":["V1FRQkm0p/pRhzY7tsT3YSZykTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SF6/CRrma/w7/fw+n8iq24eg3qkoC2pzEHQpNfpVncY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:04"]},"IP":{"Case":"Some","Fields":["173.230.128.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fe96:8818]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor6"]},"Identity":{"Case":"Some","Fields":["V0ZGHr1cle0q6kBTDJAUnTl8+3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8An6zMfvQdAJyjS4cZcXtH43AxLIAwVVCwOngXy4htM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:44"]},"IP":{"Case":"Some","Fields":["198.12.71.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay0"]},"Identity":{"Case":"Some","Fields":["VzzD2PHIRaozqkWTtoyg1HFWqjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQoCYhe63rGUPRfvjgfo+4pwFicyrmLihmO2oUrGvkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:30"]},"IP":{"Case":"Some","Fields":["51.15.98.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:162f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pishkin"]},"Identity":{"Case":"Some","Fields":["VzyIk79DlTXcZyQ8nLY9IEqUezg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfMRX+YlWljzMF28CkQ2aFKHMMfwbh4iaQCSN8q2X7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:29"]},"IP":{"Case":"Some","Fields":["94.242.55.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:3fb::c9a6]:9009"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["Vx3TBGtTRQeJdwPjNk4gbe9l0UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BZVljnhIHz5ynhEHDUMuXR5VnigGUjJKJ8s/wOsis3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:04"]},"IP":{"Case":"Some","Fields":["185.209.160.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk13b"]},"Identity":{"Case":"Some","Fields":["VxvnQ13J1mC7XuCjdlDiQhAHuuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4eUSD2OokH2zxRI1BitmUwrFmKQ9s5n/smhetnsVtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:50"]},"IP":{"Case":"Some","Fields":["51.15.44.251"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:190a::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deth"]},"Identity":{"Case":"Some","Fields":["VwZC05GXpyluOMnVIbbv28Z/uG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z55ANRdkN/w2LJX82gVJM14nxiB0UGC4Sr1+WvGUsVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:59"]},"IP":{"Case":"Some","Fields":["141.255.161.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop1"]},"Identity":{"Case":"Some","Fields":["Vv0s8rn7dr7FXIc/sQJNanGncRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q+PydosUdr3Ju/wSRszmQG6A82tkr+ljjF01qqWPOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:58"]},"IP":{"Case":"Some","Fields":["82.165.70.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeathscythHell"]},"Identity":{"Case":"Some","Fields":["VvLp5jlqqp3lTg4RxjcKRTh6vE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfTYGRU/YFcw1eOq2hjUM2KdzpJyOJfAGflggd9u2NQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:50"]},"IP":{"Case":"Some","Fields":["103.97.125.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DocTor"]},"Identity":{"Case":"Some","Fields":["VutxZrBdtlMfZj+DF84C7uWv7U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IjqMoWULiaBU8FJTMVUqPfkEJnPeTpigYrhIVbpqAW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:04"]},"IP":{"Case":"Some","Fields":["77.20.0.242"]},"OnionRouterPort":{"Case":"Some","Fields":[14353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iDidEditTheConfig"]},"Identity":{"Case":"Some","Fields":["VumIL8e2LE8qlRxeLVcNbnTxXG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i99jjuQOxmH1lVuI87zxv4t6Jh7Zr+5GbGf5/RzOay0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:22"]},"IP":{"Case":"Some","Fields":["155.248.194.143"]},"OnionRouterPort":{"Case":"Some","Fields":[26666]},"DirectoryPort":{"Case":"Some","Fields":[29030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torprops"]},"Identity":{"Case":"Some","Fields":["VtyommtBraMOiR72X9zAcdwFB5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWn3fV96lYmFlZQNPbunRUoP310pb8FE34F/BLGo5Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:03"]},"IP":{"Case":"Some","Fields":["45.19.142.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorKoumori"]},"Identity":{"Case":"Some","Fields":["VsXxbQbI66bfpcE576gr2mF0+k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDhAnKPDZ2ZMTr/g3/1lsoko6YfML+sbUQPishcWegE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:10"]},"IP":{"Case":"Some","Fields":["107.175.28.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Vrugqy7OO3XzZJXiYPQ+CEZvm28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3Xe4zRwcMTJh8Z374VbPmZ+iSH1hEkIwEpctfDBBhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:12"]},"IP":{"Case":"Some","Fields":["112.213.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:9400:2:0:216:3eff:fee2:cb2f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["auxacacia"]},"Identity":{"Case":"Some","Fields":["Vqy9jEx6sa67sTfDWlol4vAPXtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V5YvfGnQnbaKIs/v4Qki/ek2yHBDUDqaBz+Uw2QCVVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:03"]},"IP":{"Case":"Some","Fields":["45.77.70.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:13af:5400:2ff:fe26:aef]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Akka"]},"Identity":{"Case":"Some","Fields":["VpJ+YbUebzY/tVSYFQpt389wd/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8p6kbNyB5+mz9CgsXMZfiEHWg5HS8bKP33iw3oPCxko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:58:32"]},"IP":{"Case":"Some","Fields":["95.216.33.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:2145::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunBSD"]},"Identity":{"Case":"Some","Fields":["Vo5DT3JbeCjRfvKzPC9cyE8Y/OM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P3VmGB/RWNjUxK2aFJkLGzw0AdLp2b2fjCxsjD/AutQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:45"]},"IP":{"Case":"Some","Fields":["91.219.238.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrwellianNightmare"]},"Identity":{"Case":"Some","Fields":["VotpE65RI+26MEkJpWmv6PnnPEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fr95K6pwMfdnpcLpyaaNn+mASANbFUK0V0DOEvsHLQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:46"]},"IP":{"Case":"Some","Fields":["192.42.253.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:6b40:3::3700]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fisher42Exit"]},"Identity":{"Case":"Some","Fields":["VnhGCCQssVtw7Wy7j0Duo7Yq9p4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CDcxAeTomjg/59Sk5b5cJ38vwtQjkBYemOiZ6kKY+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:58"]},"IP":{"Case":"Some","Fields":["46.38.247.22"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:16:8:6::4]:465"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unprintable"]},"Identity":{"Case":"Some","Fields":["VnaAtPSsi5rg2TGzdJCM2OExgGY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9+n07RFuAP1GfdwhNQbpGW4LQx046Qn3T4GmHwO9tY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:47"]},"IP":{"Case":"Some","Fields":["116.202.247.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:448f::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeighborhoodSpidey"]},"Identity":{"Case":"Some","Fields":["VmYNviHnqd/zFjLgNTcugwZYKTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N7JnLZxQ2ywuk0BP5u9Lbbb8vSm3Uba/nuEZkK0THTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:04"]},"IP":{"Case":"Some","Fields":["23.171.176.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["VlAIiLSe0RNi4n/xiOAQx07MrhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RgdYRwXKIHs+ZTBo3hBI7cwfkPvNBnWIdPIf2bA02TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:07"]},"IP":{"Case":"Some","Fields":["138.199.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[61112]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN8"]},"Identity":{"Case":"Some","Fields":["VknLIVjalPt0dBXyZii+wH+ldhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwsDKb6ud5PK8OXDAQf2gZCmmTJFO66o2F/yz2XahN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:42"]},"IP":{"Case":"Some","Fields":["199.249.230.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::122]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5h4d0wNet"]},"Identity":{"Case":"Some","Fields":["VkVzno73LKfZ7h4SZ4tRpv+HEcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/vKJyHkcxgvYW/C+YpzxMad1xDsh0deQHHnOfzle0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:29"]},"IP":{"Case":"Some","Fields":["185.94.223.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh5d4h56s468r784s32"]},"Identity":{"Case":"Some","Fields":["VjRN7jTTNDCQ0ArYjOLVi1BxLIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mPi5RuC1TXd9Rdwqbv8p0AFgvILLNyQRzlw+eofRd4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:02"]},"IP":{"Case":"Some","Fields":["51.15.96.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:43::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondiinkarazan"]},"Identity":{"Case":"Some","Fields":["VihJXZk5qME53UQUAt5C9wErcJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlikN/VAQORcsBDJdbrYo/GJn8dwA1pAqME/duoW540"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:12"]},"IP":{"Case":"Some","Fields":["185.220.100.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:8::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["VhkFYeYI6wx4Nm0O04cZfmCjmJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KHuoaNkPNot1Js4u3TxeT/MYirtPXxg2vb30tQCcScc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:58"]},"IP":{"Case":"Some","Fields":["23.128.248.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leRoyaumedAmazone"]},"Identity":{"Case":"Some","Fields":["VhCVbYWd/cmGipHKas6i6ZIwxAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtNiOzsJ7OIXlZVUa4GLT45xMCbSU/0B2vCdwfzKAtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:25"]},"IP":{"Case":"Some","Fields":["185.227.82.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RASPdatenschleuder"]},"Identity":{"Case":"Some","Fields":["VfHO0+JZBFpDpHbLxtMPdsw/Ybc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VxOdICyOl/rfvnkd4DNK29fAdIshf3PTwqlE/AZCBto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:36"]},"IP":{"Case":"Some","Fields":["109.250.2.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sharingiskaring"]},"Identity":{"Case":"Some","Fields":["VcX0WxfO3kNN4xaZ+s3n8wYjA04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BLHUK19AJQ2Pslw4GD7emjIZvtLs9xFVKzgdCoFOACY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:58"]},"IP":{"Case":"Some","Fields":["69.62.163.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Boedi9Worldwide"]},"Identity":{"Case":"Some","Fields":["Vb7BAyo8Zq5avybRFQU1IxhzbUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/yiWGtB3NJNtdJlPg8IEL6Cijk1FA/+Z8bS3rw2ZzTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:14"]},"IP":{"Case":"Some","Fields":["37.120.167.200"]},"OnionRouterPort":{"Case":"Some","Fields":[12312]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:440c::3]:12312"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange034us"]},"Identity":{"Case":"Some","Fields":["VbWp25wrV8A1Q3o8xSprEdh3y90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TQhwB2sye+WN776jbOOcZnjCOQm6ulRvt07NJxuOFF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:22"]},"IP":{"Case":"Some","Fields":["162.212.158.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Vakr4qdsZKWg2w1PYdXco3tV7lI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mNYXU/8R48OlI3kNvbpXA+l17Wlm+hT0OHdREM8kCUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:28"]},"IP":{"Case":"Some","Fields":["93.99.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5e0:0:2:20c:29ff:fecf:4819]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R2C4"]},"Identity":{"Case":"Some","Fields":["Vah39vytwlqompQAM9pJEDvLEfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LcRRGlcrXL1Q8H8xWXkbNuzq8mL0eWDF5AT1QQ8fV60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:39"]},"IP":{"Case":"Some","Fields":["95.85.72.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:275::e3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Valinor"]},"Identity":{"Case":"Some","Fields":["VaWnZKByF3p0N2XBVQNkIZArN4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/iIivgxbCWwZtUO9Qeq0OLCRe/nQ0K444l5VGUvvjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:55"]},"IP":{"Case":"Some","Fields":["217.163.129.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeezNode3877619345"]},"Identity":{"Case":"Some","Fields":["VYBPnTf3snvQQms8sGxktND5VUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CGR1f54hFrOCDBSuqMD9XVdgwtDdYiMEKmvfkVSIgG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:02"]},"IP":{"Case":"Some","Fields":["88.88.16.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KUEXBON"]},"Identity":{"Case":"Some","Fields":["VXs5FG6xIcjPoixIrXi9vbyP86E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rKgUHd7cOOkRV3H75MA0dxaQTZLY9dZ1Apz7naer/to"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:53"]},"IP":{"Case":"Some","Fields":["185.86.151.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::e748:81a9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ogopogo"]},"Identity":{"Case":"Some","Fields":["VXrOyFD1Tu5lg5+Dys4rCCW+gR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bEyAY8EfDArj0gS5EPvVscmPifdfJGKK0+oz9Ocy0NM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:45"]},"IP":{"Case":"Some","Fields":["192.160.102.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::a]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["VVprfLPY7KN2tMtnAVlqeyEeIdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3/RWocVenT574B5WDd6h9YKTUG6lEWAwOjM4MCLRTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:18"]},"IP":{"Case":"Some","Fields":["185.207.106.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["magentasunshine"]},"Identity":{"Case":"Some","Fields":["VVpojjhd+YDhs6cslg4jg9nIrPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BfJWo/FkDh8iHAGqcU6miQ5AqKl2rrdsKWAZ8R3NmD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:15"]},"IP":{"Case":"Some","Fields":["51.83.132.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1864]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jakfrancjamoze"]},"Identity":{"Case":"Some","Fields":["VVj1RtKplt0vS2piohjfI4SEUuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75hxaqNwMFgBM2xecm3/XhYH1bgBW4ouw7aoW/P1tFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:21"]},"IP":{"Case":"Some","Fields":["5.135.156.12"]},"OnionRouterPort":{"Case":"Some","Fields":[4899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeilsOfTheOnion"]},"Identity":{"Case":"Some","Fields":["VVgNcbMXoHL0pNz26k7bAVc0ruc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UyXymXcWnevfuciTKULfj0C350rO9Y75WHZzRP1PxW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:05"]},"IP":{"Case":"Some","Fields":["51.158.146.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:213:208:a2ff:fe0c:8128]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodevotionn"]},"Identity":{"Case":"Some","Fields":["VUSQkpmbuMG6U9DRzWDgmZ2Mosw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ld+snNZSCefXkYeSmNCMnIufdiT3pWP1vaSl8C7zMS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:12"]},"IP":{"Case":"Some","Fields":["139.162.128.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:feb7:87d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrRelayPi2"]},"Identity":{"Case":"Some","Fields":["VUCgSCAmIMy9Ff2k/w1ZZ9LE5oU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["geF4XXhH66Wy1A6ozY52Dfzb+C6Re/MkCA3LzXtcQNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["207.216.25.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[9022]},"Address":{"Case":"Some","Fields":["[2001:569:5197:1800:e449:4f90:2cca:1ba9]:9021"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StriveForFreedom"]},"Identity":{"Case":"Some","Fields":["VUA7llOoH2jDl4fgAL2fl+HzslA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jpBw/8C+nUNNz2U01zfU0DK60SNThYeT02d7/BrvvEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:46"]},"IP":{"Case":"Some","Fields":["173.212.231.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["VSwuKv3Rt0CjjKl2jFHsARsq9wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+aN1EvnowQCvjYJ6PBqhJxrNZSN2GtZuXLg2+KF21V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:23"]},"IP":{"Case":"Some","Fields":["5.45.104.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1750:680e:2aff:fe12:6258]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinom22Relay"]},"Identity":{"Case":"Some","Fields":["VRveRh+vAs3Ox7kbJ0udOjNaL0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+Lf1E6mEiud/nRSPE5V8WKurdEGL31+CuSqSAgUZbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:41"]},"IP":{"Case":"Some","Fields":["70.53.179.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KiandChi"]},"Identity":{"Case":"Some","Fields":["VRJVdJH4fYiPxIX/ZIQmWnVKv1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cOL2KUZPMW6dPbanIDAFFtPWXfypjOB0Mak1axErIUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:28"]},"IP":{"Case":"Some","Fields":["82.221.131.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["undisclosed"]},"Identity":{"Case":"Some","Fields":["VQ+MI4029hF/MZgXzDvxbSP8hVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Y0q3U/7AEhAcd/FiJGQ2JZ62inkLC5IYyiv2v4WUZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:56"]},"IP":{"Case":"Some","Fields":["184.105.221.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:b480:fff7::248]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa3"]},"Identity":{"Case":"Some","Fields":["VP+H4Yz0s1G7B4pkCk3FJllpSF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4f613y6HWMjoSA0mVQWpo0q4Kks4Recn9Kp6huXGSJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:42"]},"IP":{"Case":"Some","Fields":["95.217.112.243"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::3]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nix"]},"Identity":{"Case":"Some","Fields":["VPXYAN2Xg/zyIA6A7z0ahno/bWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wmRu34jIR6HV2fF1W3W7CeyjvAjcaeXJE51VlIE3UC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:56"]},"IP":{"Case":"Some","Fields":["195.154.119.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["suesskartoffel"]},"Identity":{"Case":"Some","Fields":["VPM6Oha26kTy2zYn/FV1PObCJJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZed5noxdmErhruYYweZxHpcyAMLS/DZcvHyrtRAqoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:05"]},"IP":{"Case":"Some","Fields":["109.70.100.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::13]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paktindustries"]},"Identity":{"Case":"Some","Fields":["VPGz2NFI74y+B27znz+8FFmCEFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R6WkG1lGoy9Ot12UUtr8+snsfo3Q1MDVF7VrK+8lKPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:13"]},"IP":{"Case":"Some","Fields":["138.201.125.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:291e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["uzieka"]},"Identity":{"Case":"Some","Fields":["VN5j9FhwWLeRUqdaAjjX96AnkhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iqfJyTY+63xvUe/XMbqC3NQaBTRSdhKjAZr2TpWmDeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:16"]},"IP":{"Case":"Some","Fields":["192.36.38.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privy14me"]},"Identity":{"Case":"Some","Fields":["VNWf72c4fh7uhdTRFoU0LRVYKZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D5mRSaExtI9O2W3gohAGjqf8tjMXWY0nN+8v6MfvAE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:40"]},"IP":{"Case":"Some","Fields":["185.225.210.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBSDRelay"]},"Identity":{"Case":"Some","Fields":["VMrlBwjnCNSerY9v/SCUKLwhxBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkdJ5nqcUY32DwoiByQhMYCaqCRy8lQstVMEBxmlyYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:12"]},"IP":{"Case":"Some","Fields":["64.71.151.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myVeryNiceRelay"]},"Identity":{"Case":"Some","Fields":["VMFeDb2rq5E5eLv8cT76r3Q3xRY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wjbau0liKso80FeJT+CJ6uLgi6XONJC+E6DHpJaNXgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:44"]},"IP":{"Case":"Some","Fields":["136.58.85.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coolrelaysmileyface"]},"Identity":{"Case":"Some","Fields":["VLtYh2Bq8r0hPEFl0j51zLzz2E4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ANA2i8Zzsp8I5n22j+5P/AQ8nnzSY1X3rNHiPE9uzFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:38"]},"IP":{"Case":"Some","Fields":["167.235.133.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:3710::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0153"]},"Identity":{"Case":"Some","Fields":["VKyyeKoqvZb5FQq3KwioqLHkplk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5gzE2LaJU0LJr7FKCQXhrsMNupt116pGpHB0Avy4yRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:56"]},"IP":{"Case":"Some","Fields":["185.220.101.153"]},"OnionRouterPort":{"Case":"Some","Fields":[10153]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::153]:10153"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unlobitolon0"]},"Identity":{"Case":"Some","Fields":["VKpMz+gfTdc5HYN6uwiS11NV3zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH6Sdgj19FCA2Tdq/ArljXdSyfu0zVmPH9fL9GmSXAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:05"]},"IP":{"Case":"Some","Fields":["178.62.94.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::1c8:4001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv03"]},"Identity":{"Case":"Some","Fields":["VKZirjMEWLmmWlQaK0tbbDPjvy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4yAI31rJVU8LOV9E3Mrb9WWNAwQmt/za2Bins7QwLMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:19"]},"IP":{"Case":"Some","Fields":["162.248.163.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN22"]},"Identity":{"Case":"Some","Fields":["VKSCC0bmVQm/PiuJLmaTCkF1nek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iWYWyypDn2PsCXMEmR++FrFMUlqQmBE20lhYVNqdoIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:53"]},"IP":{"Case":"Some","Fields":["199.249.230.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64b]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ulula"]},"Identity":{"Case":"Some","Fields":["VKQDobAV9uWmQa0SFTCWa9hzE24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D8ulqsKA0G670AyFlSanJQ8zJ7WCiyKAJ6eGmeC9/dE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:08"]},"IP":{"Case":"Some","Fields":["81.6.43.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:169:200:d::15]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MKDDT"]},"Identity":{"Case":"Some","Fields":["VJ+k4wzQmHQgUrE87sz2Iezg6dM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["svYnrACsgwLewZB/m/TNFdf/sUJp5tng1RWTLyaQvLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:39"]},"IP":{"Case":"Some","Fields":["142.202.51.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["VJ7kn7qaSS+vci04Muar7ecnnS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lx2lDhA3THBRP87wi7OlCw1pFF+TROf07WKg9z+Zo0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:11"]},"IP":{"Case":"Some","Fields":["193.161.193.99"]},"OnionRouterPort":{"Case":"Some","Fields":[57207]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ShardsOfNarsil"]},"Identity":{"Case":"Some","Fields":["VJLnYGSKq7e+wIvIfo9y9V+7qQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXE7im8pU8nPSoSj1iXSbYlGIcu2piRLlLTNHDNqIAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:47"]},"IP":{"Case":"Some","Fields":["75.176.45.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv14"]},"Identity":{"Case":"Some","Fields":["VITF99mmAQVyhQqONdeLTTUnonE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MR+rPmIeT6ImPJBS/SafK/7G04IKZx8RVV70bKW/Zps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:10"]},"IP":{"Case":"Some","Fields":["162.248.163.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taki"]},"Identity":{"Case":"Some","Fields":["VH5uaK3htvSSxERDWIqTlhBAHfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FMxBS9ZVTPbuhkR2ENnMWJu/B6gBOoosqahXbeYbteo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:06"]},"IP":{"Case":"Some","Fields":["51.15.54.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:c0d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chaucer"]},"Identity":{"Case":"Some","Fields":["VH2lb2uItsWWs+MIaAPNpPDvjyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["26mfF8lMfqn5JV2IDm1mE5UswnVEENabcQSCDElbSBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:43"]},"IP":{"Case":"Some","Fields":["192.160.102.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::6]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["VHuYt2SwzH7kVN8b7lF9LFC2Ijs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZEhpgc0uwmHztpJn25dxddPx5faL7M7M+V42Kbq+8uU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:07"]},"IP":{"Case":"Some","Fields":["185.220.101.37"]},"OnionRouterPort":{"Case":"Some","Fields":[10137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::37]:10137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeUkraineDK2"]},"Identity":{"Case":"Some","Fields":["VHKgKXV1eGRh5KOpfJEzCpQc8qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhcX9QClu+USEbLZDvoiBVtSMckeU04rZYMMUm5zqhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:52"]},"IP":{"Case":"Some","Fields":["185.51.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:88::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anion"]},"Identity":{"Case":"Some","Fields":["VGgFtQEiCtdcToPxXKTS3BeclP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G5cvwScs00yve+e8k2Iq22nqcfSdUa/ynNkkZVHDPGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:39:23"]},"IP":{"Case":"Some","Fields":["193.30.123.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HKLBGD"]},"Identity":{"Case":"Some","Fields":["VEZcERUbBNbtqdQrJaODLZMDo8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIWiX9sIoFLD1F6r2He5z2K0KDCSs5a6upoY/z+3tE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:07"]},"IP":{"Case":"Some","Fields":["109.93.92.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE05"]},"Identity":{"Case":"Some","Fields":["VEIwrlVsScveEGeF/kEe4GFZiRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXuACNoT5d1w3fiBadqCkCS0rC/oeOSmqpoGb2KXTks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:38"]},"IP":{"Case":"Some","Fields":["37.221.65.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::4dea:101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OignonCA"]},"Identity":{"Case":"Some","Fields":["VDcdZPSu2M0e+O0bWMclxAY73kI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Hsv/UUVNIq/weOnOAEqFEH7/gPgmMLHxOkv0dZZSoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:12"]},"IP":{"Case":"Some","Fields":["144.217.75.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangeApe"]},"Identity":{"Case":"Some","Fields":["VCVov/w2J5zgyp1P9JcjMEd/heA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/P+Ia8XNL20YP52UpVFysfZaWEa7ouQXgUeklNXep8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:29"]},"IP":{"Case":"Some","Fields":["37.235.55.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:44:37:235:55:83:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNode02"]},"Identity":{"Case":"Some","Fields":["VCQRC/BSRDLYBgUJBjjZymNom6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wwE4lXL4SQ/hctrlY3UD70oNPdZfNZJC6XyjcytkMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:46"]},"IP":{"Case":"Some","Fields":["37.120.162.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:3698::11e8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange004auX"]},"Identity":{"Case":"Some","Fields":["VBLYYsdiXxReFtPYMfbTOp+vXuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRtDy1vHSpBTLm3V4Sqt8U4hpkEWhuw1am6tphxDwC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:13"]},"IP":{"Case":"Some","Fields":["139.99.172.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["VA5ktU/tS3JcX3vU1r/JXafxHxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UfyLj8l7WiBDTAGJp/AJvhWHizmk6U7+bmNJeS1CQow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:02"]},"IP":{"Case":"Some","Fields":["23.128.248.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE58"]},"Identity":{"Case":"Some","Fields":["U+6h3aGRnYj4o4AkkyMLXGToey0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rQEhX3/1x4MbCfA2v+LkqFL6nLm297EsL/Os10dr5E0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:28:31"]},"IP":{"Case":"Some","Fields":["170.231.236.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["urilikann"]},"Identity":{"Case":"Some","Fields":["U+jCobKkyHk9H8sP0igr/QyIvxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00obxtqGqzEUEMwuII3dhr1wFM1u83cTPreVK7Qj1Ss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:34"]},"IP":{"Case":"Some","Fields":["51.83.128.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::4dec]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapLON"]},"Identity":{"Case":"Some","Fields":["U+V06hl60mC0eRLzqdONs4deo8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oI1Fll1nMM47Qtq+Wm55bOXtFMSvfVW//gWOaKseH3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:03"]},"IP":{"Case":"Some","Fields":["134.209.181.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::1128:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["propsy"]},"Identity":{"Case":"Some","Fields":["U9kFaqakxWhnTrN+0BjJeNA0i5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UyTpoJuUSkyqiwnQqojbD4C1jpsDvg0Oc1SOE4N42wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:55"]},"IP":{"Case":"Some","Fields":["31.31.77.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:6:5019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis67"]},"Identity":{"Case":"Some","Fields":["U8n0lU56czK7DGEMW44EygZa8ps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0Pcn5ksfRCUgn83p+28uFAxTxfL8eltFi1d1axpqPCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:24"]},"IP":{"Case":"Some","Fields":["178.17.174.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:126::a5c9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jemaine2956"]},"Identity":{"Case":"Some","Fields":["U8YD6qOm6UTGjyO+pJDXWStXlWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pY5jf3cfMk9gbIQnBs0xhxGzrCWjOyzqPL4yTPRys8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:29"]},"IP":{"Case":"Some","Fields":["107.189.1.174"]},"OnionRouterPort":{"Case":"Some","Fields":[26485]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8f5:20c6:dcb6:3c07:1c9e]:26485"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2livebrew"]},"Identity":{"Case":"Some","Fields":["U7i1wqM8SJtUMA1Vi/7iw7EvOHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9DoSBLKTd9EyVTpM1W4Csao6pnmOUQdmCQ3bqW1XhH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:14"]},"IP":{"Case":"Some","Fields":["104.244.77.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:c084::b00b:face]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kuerbis"]},"Identity":{"Case":"Some","Fields":["U7HG41cGyewwuUaLYd+7Z/Kb/C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BSDCf+hisGfi+j6TohMk2AhXuXIzO1mZrnrFfuQJG6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:47"]},"IP":{"Case":"Some","Fields":["109.70.100.3"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::3]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["42isNotTheAnswer"]},"Identity":{"Case":"Some","Fields":["U64XtVjfour1UbZQ9iYLPjH76tA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q0CQhrCF1wMPQCraPlcgWPNmQjUQlRNPsv4mBQPMVzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:46"]},"IP":{"Case":"Some","Fields":["46.165.253.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["0x539"]},"Identity":{"Case":"Some","Fields":["U6mXIwZAwEyZih3j9dPNMDxEgbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QY10ZlqU08dTcYMvKKmfZWrRsjDTgZs+A03EEq6CbmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:43"]},"IP":{"Case":"Some","Fields":["185.107.195.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:bbc0:1:9::eb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Apollo"]},"Identity":{"Case":"Some","Fields":["U6NhRr8eHq4y8CYzA2YJT8nks+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8VK8Xim53KY7F67vly29mVbTWtnHh0s6vkJAMhNngNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:58"]},"IP":{"Case":"Some","Fields":["69.30.239.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3bc:224:1dff:fe70:b203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EinfachOhneNamen"]},"Identity":{"Case":"Some","Fields":["U5xXFioOyLu0Owf5FrkOxGyLzTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H9usJ5yRArKHUUY5zwIJfbh9+s7OKFGR/KEY+6/uDbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:25"]},"IP":{"Case":"Some","Fields":["84.144.60.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moonRiver"]},"Identity":{"Case":"Some","Fields":["U3NFV/2UKmnPPvzO+JAnjFmUP1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["olADTUAOkp9omHQQuAOLGB+/ckwP5KFlXPyNP6TtKRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:01"]},"IP":{"Case":"Some","Fields":["172.106.167.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion253"]},"Identity":{"Case":"Some","Fields":["U3L3ghdK0nexfp680fh08MvxF1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQckJGGmpzhw7+7eLKPR1zBsnj52ZNe3hcWH0VT55pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:31"]},"IP":{"Case":"Some","Fields":["38.147.122.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["central"]},"Identity":{"Case":"Some","Fields":["U2/EENKmn7J2N9GOBpjUyDKlatQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xJhJRGYbvdU4LLr332mC0B+z4z/hcHkZlcFKLUMiZvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:38"]},"IP":{"Case":"Some","Fields":["163.172.188.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:14::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazybear"]},"Identity":{"Case":"Some","Fields":["U252dMgnmAPt8cwQtvZ7OVmwJcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N33akRSi623L/Y9Cj/JOTBZlUc/KA2n/z5gDfmFmHHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:45"]},"IP":{"Case":"Some","Fields":["31.171.154.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nemesis"]},"Identity":{"Case":"Some","Fields":["U2W6fJj5s0C4EA7CYxesE0s2PVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gu0LrRWfg0A73sZXk5En27unrsrTMJO24ZLH+89UIPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["70.63.170.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ethergeist"]},"Identity":{"Case":"Some","Fields":["U0EtzFVTNbQA23J1DtC+CNA013k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXscfDqtcLU4hH55qTqLvPG0PJC+6GpPjEJrzC6ouy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:01"]},"IP":{"Case":"Some","Fields":["176.9.123.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dlecancom"]},"Identity":{"Case":"Some","Fields":["U0EIAx+8bhmC8aFAK2l72bRaJMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bJYQgVcuMdIWlDhGUfDlO09HMOxn1KR7MGBgtpbc/8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:42"]},"IP":{"Case":"Some","Fields":["51.158.99.6"]},"OnionRouterPort":{"Case":"Some","Fields":[20443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:2630::1]:20443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fabulous5794"]},"Identity":{"Case":"Some","Fields":["UzmsfeDyTu5Mh7+Fa3438979ksk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B5bcPZG7DIUpEK+xH/N7gvWnWlC3Q03BELXIFOUfa3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:49"]},"IP":{"Case":"Some","Fields":["217.138.199.102"]},"OnionRouterPort":{"Case":"Some","Fields":[54918]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ac8:33:42::a05e]:54918"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission08"]},"Identity":{"Case":"Some","Fields":["UxNNljfZ++Vl+h46+CsjzJZMVtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+zqqDxYxCrgLGmCYDcwhWBCGOp5qKS6lJAlI/mER4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:21"]},"IP":{"Case":"Some","Fields":["37.59.76.255"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spargel"]},"Identity":{"Case":"Some","Fields":["UwJ3hmRmoUJfQ6c9v8tfx0EMmFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNfEWbixUA0iwaImlS91jpk7nBr1p/nOpRNiqME1L4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:23"]},"IP":{"Case":"Some","Fields":["109.70.100.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer02"]},"Identity":{"Case":"Some","Fields":["Uu4c4mQRHQU2jOdfRBEJHstpRcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yfNwzjtoP94o6jzgFr/seCjDkSmreC/K9440Bd6xgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:31"]},"IP":{"Case":"Some","Fields":["104.168.87.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipaa"]},"Identity":{"Case":"Some","Fields":["Us2YkC9jduhN8kFbkG8UJtWFVk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VF0UfhCZSH9oNOuREpfHqAKVCm4YCB5F9wLjXW5xFvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:58"]},"IP":{"Case":"Some","Fields":["185.220.102.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::240]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SussyRelay1"]},"Identity":{"Case":"Some","Fields":["UsP/ccoHGnfRxMU9ICam6tpYU1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S3uoN3FfRuFyiwNzMEjZLAdg1/PPwv92bCSzAK+7sB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:28"]},"IP":{"Case":"Some","Fields":["94.140.114.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy63"]},"Identity":{"Case":"Some","Fields":["Ur+tqL6qAbpGyPdn+DwY4v5Qwbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJ9t/CT8zzca55Jx5sPeEmjmKGJzjI4Acld1qWKsBCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:48"]},"IP":{"Case":"Some","Fields":["212.83.43.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AmirTaaki4President"]},"Identity":{"Case":"Some","Fields":["UraHZOJssE2uOr4foBgm7yc3bGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyagt5DYwfeDm7MzrU/lPoVo4GJqanpV8zupDrqO0qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:47"]},"IP":{"Case":"Some","Fields":["46.101.178.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI14"]},"Identity":{"Case":"Some","Fields":["UrMq8lb8SRkTJ46V3CKaE5jZeHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fJNyOkNRngc7rGbuo1sKQgbwSN8cqFB7ucw+5InY4eo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:36"]},"IP":{"Case":"Some","Fields":["171.25.193.20"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::20]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["UqDHKbukoxpcQ1+9EHjR2vvJy40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiSgAE9MuTItyNPjJnTZ2s5OrT+j+HpQzRLgVAjPXyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["138.201.55.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:1045::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hochwanner"]},"Identity":{"Case":"Some","Fields":["UqAi8W2M2/AZ4TLxU4oXmPFnlzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RcTel62qqXc5hvpk/4kusMai3OerX1WiXaQTEnwu63g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:44"]},"IP":{"Case":"Some","Fields":["51.158.170.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2433::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeedAVacation"]},"Identity":{"Case":"Some","Fields":["Up3RHDUA27tjbdSleVKcXNpQdOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E9rN+Yae98wm31tlJ9RuVzOIbdOFqgsMNv0UMrt+h6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:57"]},"IP":{"Case":"Some","Fields":["172.106.112.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["morata"]},"Identity":{"Case":"Some","Fields":["Up2chODWphQdQJwbAtuBsrjo6XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDZ6lAYl3EXN7zQYA0MBS+u1opmjuw6bbxqzr/oowoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:30"]},"IP":{"Case":"Some","Fields":["103.236.201.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["asfnutt"]},"Identity":{"Case":"Some","Fields":["Upyj6witbsF5G1EQqjVApM+hGX8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jMsNzUObDINugxv5G6oSE9jqufZrK1mRahQJE8T1XY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:17"]},"IP":{"Case":"Some","Fields":["193.150.22.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:24e4:10::27]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vetustlex106"]},"Identity":{"Case":"Some","Fields":["UpkwWpwtcHhNQSKD1DepBu6exfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["07dbt0j/0Bk8E2HIwiPG1u9Ny/6EXKzR3Sp0a6kqxco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:05"]},"IP":{"Case":"Some","Fields":["198.98.54.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:cd9:d4a7:7c57:a1fd:d9c8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["UniwPIijqZI4e0thUWG4AGxKZa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RlEk8P52mb1D8TU4eB0r6uCAf97tPEWxf6TnP7y3uS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:15"]},"IP":{"Case":"Some","Fields":["185.220.101.204"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::204]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["UmrVDJ3mr1M96+j5u98Um8H1q24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyPyd7kHQT4aIoIYDuxR/0e4C1KhgeKnj9FtJ/ypWLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:00"]},"IP":{"Case":"Some","Fields":["88.208.226.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:5f::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Theoden"]},"Identity":{"Case":"Some","Fields":["UmJVbUSn8kNJkP3hrnlzxn30nlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tIB8JtKPeiIP0udzZMQWC4Y/fJ/mJUAI6F8LBX53GQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:14"]},"IP":{"Case":"Some","Fields":["176.223.141.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:b0df:8d6a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t1r"]},"Identity":{"Case":"Some","Fields":["Ul7jTBp7iaud9YUkbeMOMnApE/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pzcIHUQ8aH3CAM4pqO80Oq6HGhsrfbCRVO4UOzT2tTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:12"]},"IP":{"Case":"Some","Fields":["144.91.125.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["Ul5JX9BAlpK9qcI6ITfJb15TiUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oai3vVXJrJRtmEJNKykPEV+OKRwsOIPIOOcdDnigbSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:11"]},"IP":{"Case":"Some","Fields":["178.175.148.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trolli"]},"Identity":{"Case":"Some","Fields":["UlkLPCh709jGyp4HYc0XdY/3Dng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0jenPE8Afr+NjBx6tEuGOzp+t7cHrffT23y61ospZ44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:31"]},"IP":{"Case":"Some","Fields":["130.162.54.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ImGrund"]},"Identity":{"Case":"Some","Fields":["UlTuBmXR0QafopZ/f6lw5cVEF3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BgxkKkQLvsaN/c3XVegAlqdOASVi6wFl82ukfG6J3vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:15"]},"IP":{"Case":"Some","Fields":["217.252.144.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=780"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["reRelayJI"]},"Identity":{"Case":"Some","Fields":["Ukm1F5fjc0Szz5s94p9JndeIO10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rMW8e+WYe/ywHIORUMimPLbsVt3z2hOkqepjN74Udw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:16"]},"IP":{"Case":"Some","Fields":["153.92.127.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CCHE"]},"Identity":{"Case":"Some","Fields":["UjdKbFkoDT36Eqf7UMyoNZy1avc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCvH3OpZNTuRD02l9p+oALv1E8Lk1ZBZMcn9LhZaESw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:21"]},"IP":{"Case":"Some","Fields":["78.133.85.105"]},"OnionRouterPort":{"Case":"Some","Fields":[8832]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI24"]},"Identity":{"Case":"Some","Fields":["UiqA7KjIRvYM7mF/JD41RtUhmDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eOnQ7fHzXnoi3N3siKGHt3wsEoOEKkF4XKQ/GE6fSWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:01"]},"IP":{"Case":"Some","Fields":["171.25.193.25"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::25]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex100"]},"Identity":{"Case":"Some","Fields":["UhwwqWh0OxPhfiLjm+UtoCD7kuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ugoM3ZzdWHNi01bxRp6TwpZRtiol3W41KRmk9HlMCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:02"]},"IP":{"Case":"Some","Fields":["199.249.230.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::189]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["just4fun"]},"Identity":{"Case":"Some","Fields":["UfMQOBV2Wk+Wv5XO1UIFtYzuhwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ILJztHr12sdfeEVauqeB52jX2MuGiFTtxxg8xhepLto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:35"]},"IP":{"Case":"Some","Fields":["45.95.11.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked01"]},"Identity":{"Case":"Some","Fields":["UfDRPZGmDwtFQPFX22i3DH/bFDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sxFNKvC93twQhX7IjT+6a2j504BHv4ZXgi68Fq0h5D8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:57"]},"IP":{"Case":"Some","Fields":["51.255.106.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobo2"]},"Identity":{"Case":"Some","Fields":["UecOkQTyz8XzH0/YC8HS2zd2kUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WVONO4EgdHTFwxp7z/qIwfeuXI29dB/3Ea8ZehUY+cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:50"]},"IP":{"Case":"Some","Fields":["89.58.37.132"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["UdstiSI2xR0td1IU9Ok3Qe6duoI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0snzJQGKC69FFFxP7//8dk5oX9Ek6+PVZqssDooKwzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:45"]},"IP":{"Case":"Some","Fields":["47.200.163.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alpha"]},"Identity":{"Case":"Some","Fields":["Uc2dsANXQF/EGvD6UTaI0CvaDA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WQOk/VJdIbO49U0HlOKO4PWKwlWRr/c9LbuhstM3vcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:33"]},"IP":{"Case":"Some","Fields":["31.131.2.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire65"]},"Identity":{"Case":"Some","Fields":["UcNnWCmT1o+CFWELhamZAslFMks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1s4NsnMPeGUp3HsKKBkZP/nZwmTRnqqQkAnh32cvTio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:18"]},"IP":{"Case":"Some","Fields":["91.143.87.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2eff]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeCarefulOutThere"]},"Identity":{"Case":"Some","Fields":["Ub0l7gbEbkRmQn1Kv5TylkUU6y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aheaXgW3oTo2CLm+/rUFRQkN3Qjex3IF9kxyH9CydLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:34"]},"IP":{"Case":"Some","Fields":["205.185.124.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:c3d::1001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wobble2"]},"Identity":{"Case":"Some","Fields":["UbP8yrcUAR4xdyP6rLcY3Oxu5ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4uRPrYaV8IzFbn3H17+GkxTlnfdx7yne7rj60ac35Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:23"]},"IP":{"Case":"Some","Fields":["192.111.150.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["notoriousgib"]},"Identity":{"Case":"Some","Fields":["UaiiKUTyKOotYBQ00SeGSxsLD4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jeVNTM3eo20FXJE892yXKiY5LiPZHJFDwZtr2n7fgqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:40"]},"IP":{"Case":"Some","Fields":["103.200.210.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ready2"]},"Identity":{"Case":"Some","Fields":["UZf8ifehYjypDW4CVKvMvG2FqG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lh93LsMWvETQdE1HnMh+cgtQDlVibXe1sjVbBLx+S6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:49"]},"IP":{"Case":"Some","Fields":["174.128.250.164"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigman"]},"Identity":{"Case":"Some","Fields":["UZNR49VCApM/heYI2ISEpdxOTvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c6yYUIwuH3aIVa3tRrJOA/AcTEUGLq1S8nw0OXnGpTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:59"]},"IP":{"Case":"Some","Fields":["130.61.174.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twincaravan5"]},"Identity":{"Case":"Some","Fields":["UY7xU7t2dpQ9PfvKRpz1ua9cXzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRjRZBx/yxJMnoisTp9F9yxH6/8aI90xlBUR8IdXRnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:29"]},"IP":{"Case":"Some","Fields":["172.107.241.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrozenChosen"]},"Identity":{"Case":"Some","Fields":["UYsDGj31A+CPb4FdsZTb17FcnFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3lcjQnkLSpP5A+ovohqQX6wt+algwSDZ+Up5fvM+Whg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:42"]},"IP":{"Case":"Some","Fields":["172.98.15.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UYAK84sw7RRU3XTLQSutztX2BZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQS4Vk4nhOzbIm3aKC8mMBxa4FcZoN9RfAnjdbCH87M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:42"]},"IP":{"Case":"Some","Fields":["37.191.206.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:feab:5d7e]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1163"]},"Identity":{"Case":"Some","Fields":["UW+RynB4EG4fCNnrrLdxXp+FDls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cre+NLd28EX7HLJWohxomLssa5drEVx/B6mrd1rUpUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:08"]},"IP":{"Case":"Some","Fields":["185.220.101.163"]},"OnionRouterPort":{"Case":"Some","Fields":[11163]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::163]:11163"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UW0ilNUfvkeDfTQZR0BGADIRCcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L0KB1MlYRbaaRJUTq+ff32zljiIziaXGZLczj3lSeTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:46"]},"IP":{"Case":"Some","Fields":["23.128.248.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::d8ba:d0ff:fe97:f61a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["UWzFTTDsbHt05SgFN/aUPveK2U0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uy+klSBUO2/yLVX1hzWmB34tBDqaUTHb+IDwBLEfbB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:41"]},"IP":{"Case":"Some","Fields":["23.128.248.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::35]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UWA0/xXJbOhB7M2HbvYEgCqlxlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UartxoXuC7E2nwfnJyRMHpXFvygizE2fMDvKe7gcuhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:26"]},"IP":{"Case":"Some","Fields":["89.163.225.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pi87"]},"Identity":{"Case":"Some","Fields":["UVEA7eGcD14MrdOR3jPg3hSwD90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2cj8ywFYWw/u0Eql41VA1QWbcmD3Dg+4Tn5OHjIRYEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:17"]},"IP":{"Case":"Some","Fields":["99.45.175.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:6972:1200:dea6:32ff:fec5:ff87]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stellaranomaly"]},"Identity":{"Case":"Some","Fields":["UTdMjaRZxnMp/9XHUCzK5BlJEMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEZgaVWCU/MssU7NKdYMKrqcLLW6Ro1tRx266r1GbEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:16"]},"IP":{"Case":"Some","Fields":["96.65.68.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra58"]},"Identity":{"Case":"Some","Fields":["US8n3ZopN6jj1l7aE6iK6Ug+mso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LnA7vKaVKB/Y85C8L8JoDf+PW8XK/DUSY0EgTPwTx9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:03"]},"IP":{"Case":"Some","Fields":["213.164.206.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andal"]},"Identity":{"Case":"Some","Fields":["URyzj4fACAscSdYUSeJB+b2iw2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jxtGqjzbZULlOHmCnQFC2rI/kJrvXnak4os/yefZ4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:56"]},"IP":{"Case":"Some","Fields":["80.131.230.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IsThisJustFantasy"]},"Identity":{"Case":"Some","Fields":["UQ3VmHSDlHSHxkYqZtMTPtBwQOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FouW8vMC3oJvxwY/Fuzhz1uNOzsk5AbpsVf7uz1gDl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:37"]},"IP":{"Case":"Some","Fields":["144.2.122.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who9USicebeer24"]},"Identity":{"Case":"Some","Fields":["UQoEy7nEEPxX9YWrHY20XArZzxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s0eaTJTK9MLrX+ONSIZ0OpHwRCRxUBNtP/VjmdI1tXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:45"]},"IP":{"Case":"Some","Fields":["107.150.32.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8126]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bmwanon195201231"]},"Identity":{"Case":"Some","Fields":["UPHTKyCKLZfxJIghN8CjvbdO3Qk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7qAzBWcEISYu9FX9Ae6iN2i8Drm7mUWA1NPzW6jSqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:06"]},"IP":{"Case":"Some","Fields":["195.201.23.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi3"]},"Identity":{"Case":"Some","Fields":["UOsrBs1v0wuYw7ilDd75W88h0r0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bm0GDrCa+5lk7BLxQQXQey9kb3KL/WKrtso3rl1Yqxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:45"]},"IP":{"Case":"Some","Fields":["84.54.13.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TERRAHOSTrocks"]},"Identity":{"Case":"Some","Fields":["UOI1BuXchXbrTo9gdRZENko+E84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1pCUv3ekJwYEwIDX8SM3z0vQsjwRwlYudvow91cBraA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:43"]},"IP":{"Case":"Some","Fields":["185.14.97.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2660:4819:623:8331:4852:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["UMNZd+PoLAESm7IstqsNZ0dz1YQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E/9IGfQq246T3yEwKqrDJCogeckegLnl5CNyc+F95R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:59"]},"IP":{"Case":"Some","Fields":["185.220.101.205"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::205]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChristopheRelay"]},"Identity":{"Case":"Some","Fields":["ULrU5IZGeXeWEH7PAZIXhJUkcgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bP4sKCXVnweaYym2YcqPGSzvMOJ2GfsVCtSzoua9Trk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:53"]},"IP":{"Case":"Some","Fields":["24.212.140.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jaifej07"]},"Identity":{"Case":"Some","Fields":["ULih63FEfouqn+8qJZzrfiy790k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["55SHjpADStfZFpj+o7qZk4xJY6fw26nZq6JuUoz+kvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:25"]},"IP":{"Case":"Some","Fields":["95.216.9.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:95a:5734:66b:b49:52c3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["UKqf6mo6YJaGJ2xM8MKhr7Lsyhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zWmJ464csCuF6PLFsA/v9DRGTgAXdaY3boAJsFA5/E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:23"]},"IP":{"Case":"Some","Fields":["185.220.100.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:15::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarthVader"]},"Identity":{"Case":"Some","Fields":["UKnQelkVso7JbSTQ0NE/9W/IzNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sETVKNYMjoPHzVQITER7SNfvqU+flv0JqPwaJml8R4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:40"]},"IP":{"Case":"Some","Fields":["45.32.172.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toralf2"]},"Identity":{"Case":"Some","Fields":["UJ6rTF0QyamiS06gzkAsBHotZOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3JJKdopusDx7/siTGx3RTaJWevfUrYPsGQDo2l0lZwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:19"]},"IP":{"Case":"Some","Fields":["65.21.94.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:468e::13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sashaRP3B"]},"Identity":{"Case":"Some","Fields":["UIEuCNm49YgQiSNz2AkGOExyKOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8aFU1MlsTWvCN9h6h6o02hj6qdNij2tdrW7eEduYVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:36"]},"IP":{"Case":"Some","Fields":["5.147.146.222"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UH6WZaqD/WaXxB4qZIsv1A8lqHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8jaTXu0+dsuPMVssUTWRUCKdX2Kct6FgWeZMrGAVQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:01"]},"IP":{"Case":"Some","Fields":["23.128.248.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::1cb0:9bff:fee0:ea6e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk5c"]},"Identity":{"Case":"Some","Fields":["UHyhsBE/lhE/ch+iHp9//qS2eyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ri8FihH3Bc52nzemYSxlMZsdWV255kXXc6CnqwAyBcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:22"]},"IP":{"Case":"Some","Fields":["62.141.48.177"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UHwoxl67PRnvMfE4A3B3nhGYXQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["97iccf/ESe/a0v2Zhduc1V7yBle423mJ6L6KC5cvYI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:44"]},"IP":{"Case":"Some","Fields":["159.203.22.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gr8eight"]},"Identity":{"Case":"Some","Fields":["UHtd0dsW/KgAuc3BPOCo7bmoMj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+L9A/kALlXYbRhP+yapGXy+3Vt0H84NR+zGDqwvOXuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:47"]},"IP":{"Case":"Some","Fields":["70.32.0.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra37"]},"Identity":{"Case":"Some","Fields":["UFjnE2KDtM4T8Yl4cfkxzEH0HMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNNH7AFU3WinIaRy2CAYiIPGifd+YgczchB+mCd0m+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:05"]},"IP":{"Case":"Some","Fields":["213.164.205.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whiplash"]},"Identity":{"Case":"Some","Fields":["UE8j3HNEWdu6WLLxGkeZ65RRiKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s//Y+S6LEfSFP0zhOTrCD0A31Evd/hXyt8D4KqcUOns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:06"]},"IP":{"Case":"Some","Fields":["93.190.143.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MoneroMoon"]},"Identity":{"Case":"Some","Fields":["UEv1EvOwz90KsTS6BIiRfDZdMzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Be1Irz+XBlbLayK+ETYxwuCobNynMmaGLRQRewiMv14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:46"]},"IP":{"Case":"Some","Fields":["103.91.65.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["d2d4"]},"Identity":{"Case":"Some","Fields":["UEheA8o505O9VNMVzrpl5t0P3bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7oDxoIAq1EN2M6al2p2ZtgMH29mSSFe3BA1UqXKFuEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:47"]},"IP":{"Case":"Some","Fields":["185.129.61.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:666::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sunflower"]},"Identity":{"Case":"Some","Fields":["UDXrBiEIFvLKzXTR9Bo9XuKPvrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pZowcFJLoIj8FD83io3nv3HaIbwxxk6P+guW2JQ5Amo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:06"]},"IP":{"Case":"Some","Fields":["85.214.139.182"]},"OnionRouterPort":{"Case":"Some","Fields":[2022]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParckwartEfatsum"]},"Identity":{"Case":"Some","Fields":["UDQx+U/4+2nxCtWd4x87LDRJ2ZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1miUw83Twu8LPz2BntvoMzSPqSxgWyLEl9YYtwagXx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:10:47"]},"IP":{"Case":"Some","Fields":["5.146.177.130"]},"OnionRouterPort":{"Case":"Some","Fields":[15827]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tororist1"]},"Identity":{"Case":"Some","Fields":["UCe3kZNg8QQU/r2VrKC3i0FvX/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJkCB4UXT/v+DITtTkwTG4QY4KzeQhmbfQuujhcd2ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:17"]},"IP":{"Case":"Some","Fields":["89.58.4.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:c43:a44a:80ff:fea4:2939]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galates"]},"Identity":{"Case":"Some","Fields":["UCd0ugRm066benoOoiWcxiuDmKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zerbv3wlQN+LaHw0sywS/umJknWquRTT2PqwTOe/VW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:19"]},"IP":{"Case":"Some","Fields":["94.16.118.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex66"]},"Identity":{"Case":"Some","Fields":["UB9cSqyr6/3GojVDN58ZsGY5aUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MlByJ1GPWY+ak09pNzQMZE68rNTs+vBPP27av6ifowA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:14"]},"IP":{"Case":"Some","Fields":["199.249.230.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::155]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute04"]},"Identity":{"Case":"Some","Fields":["UBs9vyULCUoFyl28QkrUw9RnIaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIOUwCvPnDOvPyZMYEy/JvYLX7Ro68rplyQEWeEeVtA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:20"]},"IP":{"Case":"Some","Fields":["162.247.74.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perseverance"]},"Identity":{"Case":"Some","Fields":["UBYf9CsRuHxM3SEM+ctJCnsIjbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3o0vUV+0HAOozGjWPBFIk2GuBoktgiIWiFHLTJMhNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:37"]},"IP":{"Case":"Some","Fields":["87.236.195.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iSOcHTorRelay"]},"Identity":{"Case":"Some","Fields":["UAjkmVSsDKBWX+ivYdYWFyEqy8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFc+0H5S9KmYZHr5cwqka/l/N2+/TfxLuU/vV4VZBeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:00"]},"IP":{"Case":"Some","Fields":["5.9.158.123"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:5176::123]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilliamTor2"]},"Identity":{"Case":"Some","Fields":["UAieidVpN/qyoG8J0a+7h263byY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nTKTuR/rDIOkxdl6mAtCCbPLBt+0rk9+UVaEC6H0nDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:22"]},"IP":{"Case":"Some","Fields":["144.172.118.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UAdeSGMsQMbOrlfr2g3IUtFg6/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhsGokm+TBvbCHCL0iP0HR3aQndwzkutd5u0/ExHi94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:53"]},"IP":{"Case":"Some","Fields":["124.148.229.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShaiHulud"]},"Identity":{"Case":"Some","Fields":["UAZDiZWqVNod+OSQNVUmIiVgGp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HdYGYdJOkwm4NDFriW5jjThi7BoQZrO0zZ+gQRH0+rU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:57"]},"IP":{"Case":"Some","Fields":["140.238.215.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForMyFreedom"]},"Identity":{"Case":"Some","Fields":["UAS651psm9oL/FoeiGYgTCcfHeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5wTu+KCt8LPj1K5dTnYU7/pISdjxJuKuJtQOS4SGIMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:25"]},"IP":{"Case":"Some","Fields":["185.10.68.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:b::44cb:d7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNODERELAY1"]},"Identity":{"Case":"Some","Fields":["T/x0wijaMWXgJQeUly5yFhUs9RQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cyxoUhYqTtV9Y4xtNFfJXUiR5HFx7nX667rFeFjd0rA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:34"]},"IP":{"Case":"Some","Fields":["109.202.206.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doNOTbeEVIL"]},"Identity":{"Case":"Some","Fields":["T+kF0Hb8I5VSr2qt4nEV/oNHaLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34EyVnpbmG3Yg9v/oUr312wItIxcxysIIe/w3IxHS8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:20"]},"IP":{"Case":"Some","Fields":["84.155.116.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:d5:af24:1000:11:32ff:fe28:520c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cicolina"]},"Identity":{"Case":"Some","Fields":["T+P9Z/LwbYrZKSF6NX9iP8fGktk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Qn8MAz85olDq5qeU4+ilh5mwkzUhxO7LZxnQer6hs0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:28:06"]},"IP":{"Case":"Some","Fields":["46.229.238.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay25at5443"]},"Identity":{"Case":"Some","Fields":["T97EpSU4qpEiDQT8Je5K4sclwv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o6Al2anwZ9Y77vcQ9iUvU6AC5U3xpC5xlu89LNIv+NE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:05"]},"IP":{"Case":"Some","Fields":["140.78.100.25"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx3"]},"Identity":{"Case":"Some","Fields":["T9361Rsk3au2L7WQcfTcQh52xoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wIPDuR6Y3CB3njpRP2rDV/agc+TmYsFxZmMP3n4q33I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:12"]},"IP":{"Case":"Some","Fields":["159.69.207.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:6cde::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ashP"]},"Identity":{"Case":"Some","Fields":["T9mgMMncmPokB2Bxy7b9hDvGLX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SahTKR1zrU5Yu5x3X/MVLLkBd7O/CnCfEy1gOvgJZXU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:26"]},"IP":{"Case":"Some","Fields":["172.241.140.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skynexF"]},"Identity":{"Case":"Some","Fields":["T7osbNXWTFHcCZh+qa65C+xHHo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SqDQuOZYjhAbpV6e9X5ExeZ34K2vP3TeWlHiZZkcAD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:05"]},"IP":{"Case":"Some","Fields":["78.47.43.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2586::1332]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer87"]},"Identity":{"Case":"Some","Fields":["T7LBtuViQ0ADOFHdo1B20r5J9e4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oyvbUyLoXi75hgQBAa63uWCbumGnU1JFBrdMFGvAHqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T21:36:46"]},"IP":{"Case":"Some","Fields":["95.214.54.56"]},"OnionRouterPort":{"Case":"Some","Fields":[8187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zhizhi"]},"Identity":{"Case":"Some","Fields":["T6mP6VaNhQtnXLgouehN4uKztFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3OCBMrtw58IeR5oP/dkv/X6VjTzBxZyfUi6arP9g6SY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:53"]},"IP":{"Case":"Some","Fields":["71.76.67.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allcats"]},"Identity":{"Case":"Some","Fields":["T6H0AfjD6DJgMeeZQEW+Z/NgM6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Udt7mOTXMHCWXUtvlfa0hkhVxozFq0EQmORV1fzQAng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:45"]},"IP":{"Case":"Some","Fields":["198.96.155.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["T57892iQhOTI7pk+Ej4yt1NogEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEg9+Xm+ka9ray2VKztP9DTU0ZSIbFEJSHjc6NhnH28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:34"]},"IP":{"Case":"Some","Fields":["107.189.29.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f24b::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ajorcel"]},"Identity":{"Case":"Some","Fields":["T5W3MTZ57MAA84+HDPDPOcc4bFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fM3WkFVtIYZeUkuXtH7C7B0fZhDmJIWdIcWNR7IbU/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:04"]},"IP":{"Case":"Some","Fields":["82.64.163.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv23"]},"Identity":{"Case":"Some","Fields":["T4Z/g/wbDMaWqKxF5uk6V4AJmRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["316S9nwqL2j3gQ6hL2HK8yTCrV4urQKuw1ohymVoWT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["45.62.224.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipid"]},"Identity":{"Case":"Some","Fields":["T30hAUgI2b2V6lB6G8ZTtilX3f4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JmblR9/7/QvCamt0GNH/LbQnC6nZaouGDl61mWOGCOw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:56"]},"IP":{"Case":"Some","Fields":["38.242.238.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sobit"]},"Identity":{"Case":"Some","Fields":["T23753B1N9r7f7BHYJiRGCHp0UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IoocGWx13NJiGLoIeguMosb20NKldykLjYSaGvmiKG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:23"]},"IP":{"Case":"Some","Fields":["173.70.63.172"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra10"]},"Identity":{"Case":"Some","Fields":["T2jxsj/O2dF4Uv/94hY3woS88Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L1UNvFiccKVqSlBCdsYvISd7PzypcOk6BkW/4qI8o4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:24"]},"IP":{"Case":"Some","Fields":["178.17.174.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:54::a46d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0179"]},"Identity":{"Case":"Some","Fields":["T1beds3Copa21jeUkgf5BOWiDCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4R88J9XimWuygFjV/nIAraIBFLbVtoEh9de/sqJL0Fw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:42"]},"IP":{"Case":"Some","Fields":["185.220.101.179"]},"OnionRouterPort":{"Case":"Some","Fields":[10179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::179]:20179"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc15"]},"Identity":{"Case":"Some","Fields":["T1XE5qAkieTWkAVHvhwtZLfPcwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tm35uZoVTZxkSniTIR6EFZiXTDRULBcLsmrR2ltx6C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:04"]},"IP":{"Case":"Some","Fields":["185.100.85.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IONOSger101"]},"Identity":{"Case":"Some","Fields":["T1Dv1T3ING1lyIHYMhcHWlxc48Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RREHvJp/SPyJR43x8CpV+2q5U48rQ7iUfgYh5LXG2dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:09"]},"IP":{"Case":"Some","Fields":["82.165.77.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission03"]},"Identity":{"Case":"Some","Fields":["T1ABV6v3ChqUY20minQqiyJ7i/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IbEfRcXk8AL1FrLuu7/Ji7zbQCwAXh/dO4ztrfiSsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:32"]},"IP":{"Case":"Some","Fields":["149.56.94.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast4"]},"Identity":{"Case":"Some","Fields":["TzXHymJ0CkOsakajVVFrhQGKyKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O5r9aCGVFSHvq+cg+8lRc7DfeqTbDsWcg1p469uToSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:06"]},"IP":{"Case":"Some","Fields":["5.182.36.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pingrelay"]},"Identity":{"Case":"Some","Fields":["TzWz7JB3tY0IEpQjy5sYJe22/cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hIu+67LepmutcfszNCUaVE56s5Ltdnyoghxr9c9BgRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:17"]},"IP":{"Case":"Some","Fields":["178.215.228.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:5440::25]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CottasRelay"]},"Identity":{"Case":"Some","Fields":["TzBW6dS6w47CEABjdFIhVTYw7Ms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYAggGCtG35rUXMGXfwkX4QErmH4lc9iCA55DgfKDwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:35"]},"IP":{"Case":"Some","Fields":["212.186.71.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VivaLaRevolution"]},"Identity":{"Case":"Some","Fields":["Tw6DGpmLZEK69Btvsz0LRF5qsjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmxOB/b4JI2bwbR/qAIb5LGXAwzHDeOTzrUZaHAUsjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:38"]},"IP":{"Case":"Some","Fields":["51.81.57.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Tw5dThhMQOK5qJZkAFswih3uN1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xw1M5WcaZzd10tROZaOJQhBEllskkg+BEgfNWzPNBuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:01"]},"IP":{"Case":"Some","Fields":["51.75.143.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Binnacle"]},"Identity":{"Case":"Some","Fields":["Tw235of8fArlXI8kPaiw6yf78fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ccjon0VOMuyWfqyR7Sy28Qt/fSeYIuQkxaj2+KIJFUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:03"]},"IP":{"Case":"Some","Fields":["108.53.208.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt31142"]},"Identity":{"Case":"Some","Fields":["TwFowYzK3qsS/PJNGmm8ewWV0oI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/+ClEsAI0EB6hWHylPwAb2N1FRVAEvZyj+gzcZqFuOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:44"]},"IP":{"Case":"Some","Fields":["185.245.60.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Tv89DJ3lOc8eJ7/Fs+I7x8stQak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e2L3f04fBKFtjv/F58oqZLV15LhrZ3CoQ4Ov7o//WOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:12"]},"IP":{"Case":"Some","Fields":["77.68.26.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:31b::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tazzwei"]},"Identity":{"Case":"Some","Fields":["TvKPCsun24P1Ms9knbE6AML5/fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["johU5a9cUP/a26Wy97/RXKSdVAWZDKn+uQ1xTMD4nfo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:16"]},"IP":{"Case":"Some","Fields":["193.104.220.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex63"]},"Identity":{"Case":"Some","Fields":["TuSIrAdCvGt0e7Y3pWNc4U6Hfzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3NJ0ELWqD9D1bItwkhv5xj9eCg9Kvlm8ER1jvp4rguc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:55"]},"IP":{"Case":"Some","Fields":["199.249.230.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::152]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsRomero"]},"Identity":{"Case":"Some","Fields":["Tt4pdlLK3ctYw8QaOxYkD4v/hzs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qVjPtZECJga4lUVUxrnSiJzy+krz0VZXf1W4ZHNnx5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:28"]},"IP":{"Case":"Some","Fields":["195.15.242.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::226]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bedrock"]},"Identity":{"Case":"Some","Fields":["TtM0FZUvpS25VBGh2oZmPsGxCbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oRdPu1OgD38BHO2kvQCIG5FAXCp3lbiVRjlzNAd9mQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:53"]},"IP":{"Case":"Some","Fields":["173.255.228.134"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fedf:407b]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE13"]},"Identity":{"Case":"Some","Fields":["TsDk4yNBc/nX4C7yANa3SARvkOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i3lCmmZ5isRTCz4tO2Ekc+Vkz9jes+a4iugKjz9Jh/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:48"]},"IP":{"Case":"Some","Fields":["185.99.2.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8620:201:42d::a427]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex89"]},"Identity":{"Case":"Some","Fields":["Tr9FmIAADatv3a8K5RItAUkJdVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FaKvZ6Ej6abyNFSSjRVF6XTj1zEOz2eKAPuzDz5xaRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:26"]},"IP":{"Case":"Some","Fields":["199.249.230.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::178]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uKDbRBw5GFFLYfg4"]},"Identity":{"Case":"Some","Fields":["TqjDUdvJux+1oErAAxS3FlIy31g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TFRca9Dd9HnaKjZaT5oFy5zeDTn2k+Psg+D6/uoVOtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:56"]},"IP":{"Case":"Some","Fields":["185.38.13.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summalummadooma"]},"Identity":{"Case":"Some","Fields":["TpiqKVtxcZltGN0fahn2SrQDa0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uYY8M2BN2x31TwOi4iaMy+DGHjJqtSp0KIFlbVjRz2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:36"]},"IP":{"Case":"Some","Fields":["213.239.213.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brwyatt2"]},"Identity":{"Case":"Some","Fields":["TpeWSBwedfddV+jB/IyO0RFDMxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5b4pvpnW0KfYovRW2xenYOOInBea/CunTbkbI+xM2KI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:44"]},"IP":{"Case":"Some","Fields":["172.92.148.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["makeuseofIT"]},"Identity":{"Case":"Some","Fields":["TpG2ZWHuAbFlPhgD/lO1xADZZ9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZqcxbY8F2Xc7EqICsc3eUN44Y55KaJaA5I41TpAbcCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:34"]},"IP":{"Case":"Some","Fields":["87.154.214.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bv0002w"]},"Identity":{"Case":"Some","Fields":["To/PnQwTe+lQUrGpjdMX9fnbdKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qumXouim4VuGZ2IeoLURMvdFuP0p5Y4l8jM1FGZd+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:01"]},"IP":{"Case":"Some","Fields":["77.172.70.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a469:a88b:1:5a9c:fcff:fe04:34c2]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scarlet"]},"Identity":{"Case":"Some","Fields":["To6K4p0SANvjFIKVxMDDzGjElUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+ZR3aNtzoqIT1GIoHSnOoyCMuXnQsvc2E9F/kljrN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:33"]},"IP":{"Case":"Some","Fields":["172.106.200.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ymkeo"]},"Identity":{"Case":"Some","Fields":["Tozm9WUec0LB5+XtAx6CB4E0+w0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w8P0JQraS/IH3nZ0sNS/dvJrU6zConBFyPwVGWoUZm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:24"]},"IP":{"Case":"Some","Fields":["185.238.129.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:116:1:ff:60ff:fe1e:4473]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cotto"]},"Identity":{"Case":"Some","Fields":["Tov3ObXng1d27dcs+cqkAqzgAFU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TGT6n32DpXexPhUkW1tLHsl7XZ2XPC/SgYp7lLViM6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:35"]},"IP":{"Case":"Some","Fields":["157.90.112.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:e8a0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rasengan"]},"Identity":{"Case":"Some","Fields":["TolgccpqcS+py9DjabdZYmVMDRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S0d+wj6V2Doufmps5Qr1C4LPoCGzuc5+P2nCxxeciiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:38"]},"IP":{"Case":"Some","Fields":["139.162.66.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:fe7d:e808]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fento"]},"Identity":{"Case":"Some","Fields":["TnN7v8y+RakjzoJXfpnc/6vFv/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yCv4B211fUZvNmiHouDc5pL9cfaPej8lLFP1Wualkzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:39"]},"IP":{"Case":"Some","Fields":["81.17.30.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobbs"]},"Identity":{"Case":"Some","Fields":["TmP+vQWbTRo4vAMl3ippSIP9DhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fTEUxHsZ2gPVk+xTe9w0HdMzWGFkXkmLighuDllmN9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:37"]},"IP":{"Case":"Some","Fields":["46.228.199.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:1267::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhult2"]},"Identity":{"Case":"Some","Fields":["TmE1F7Px1BlgdcFvvVOEPtnlQgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubfIz9trW43KOgUK+vLSfQngOfJm28LHDsomjJLzXio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:02"]},"IP":{"Case":"Some","Fields":["5.255.100.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:4dfe::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["woothoot"]},"Identity":{"Case":"Some","Fields":["TlUdk9VvIm2ZFON2SBEGOuusTvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VgjTbPm7p3ygkzwsln40pyP2ljEB5pUOEjTRnAT/FWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:58"]},"IP":{"Case":"Some","Fields":["136.56.58.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["burnigHell"]},"Identity":{"Case":"Some","Fields":["TlTtlAVjZj9K68per1QfopbHDhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7y2nRt4amJVDpuC6hZRAKXRwLU7VZ7Fu5xngi9Yp6Io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:45"]},"IP":{"Case":"Some","Fields":["192.164.137.158"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hBridge"]},"Identity":{"Case":"Some","Fields":["TlF/RuvtE5OspgYOZMsv0W7cFXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["taY0/Tq6YBpoBcwh6dfLTF5kHI43WvF+qdWqnqozv0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:31"]},"IP":{"Case":"Some","Fields":["136.24.227.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortals1"]},"Identity":{"Case":"Some","Fields":["Tim7cQY4V5lLzOcjU55TzDZUXsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uw6sx9tTnFuRx56MI/M57FztgJmJ/4VVoX/DuhSk4ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:49"]},"IP":{"Case":"Some","Fields":["45.58.156.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["minotor"]},"Identity":{"Case":"Some","Fields":["ThUImIy5SrjbPJO3yW+tVHdB6cM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9LT6hAdC2oAQdG3To7ugIcygtIzR6jqNLcb0My67Zlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:56"]},"IP":{"Case":"Some","Fields":["67.165.9.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SygmaQuit"]},"Identity":{"Case":"Some","Fields":["ThLjDZasFqmtZUy3/nfpz11MW7U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kt7OaiYoLi7ICc+rjh/ElJ8tAOZ1e+jJcBAekPNhbEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:56"]},"IP":{"Case":"Some","Fields":["5.253.204.149"]},"OnionRouterPort":{"Case":"Some","Fields":[38292]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OneMoreLinuxTor4"]},"Identity":{"Case":"Some","Fields":["TgqZV/26dBivgqPL/LU9i42X/I4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0kH0IrN98z9VZUZ7wYoUeqKk9S2AnaY0TzzjJMrjo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:03"]},"IP":{"Case":"Some","Fields":["91.136.165.196"]},"OnionRouterPort":{"Case":"Some","Fields":[12222]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zikonio"]},"Identity":{"Case":"Some","Fields":["TgmHyjp/00VEvko6JKK1RWzUErU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P7aTSoto7DPF1E0clBZi+ywUP3Yhqi8yyW6Mg05iDjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:16"]},"IP":{"Case":"Some","Fields":["89.233.108.125"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1129"]},"Identity":{"Case":"Some","Fields":["Tgl5gHRHTM9R8da0YUHBUGWHAgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["leUf678CjQPbDlA2/0c4GUIeXD4eAECHzYzm+HskRPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:51"]},"IP":{"Case":"Some","Fields":["185.220.101.129"]},"OnionRouterPort":{"Case":"Some","Fields":[11129]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::129]:11129"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torfu2k22"]},"Identity":{"Case":"Some","Fields":["TfBjWWOStd9wZJlL6cElLkml4F4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DMVQ8Bh9aOUT4YaZ1baSeOAzLHzbkJolPaJHQdG1/+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:19"]},"IP":{"Case":"Some","Fields":["172.106.167.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who10icebeer45"]},"Identity":{"Case":"Some","Fields":["TeqiFnXzVtpELiiMkFyQqtbSTEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ovbcLcYmMpnzqn/3EoKjeo+lZI4yI+pvM3kMuK2PZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:35"]},"IP":{"Case":"Some","Fields":["63.141.233.118"]},"OnionRouterPort":{"Case":"Some","Fields":[7322]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["floppydisk5"]},"Identity":{"Case":"Some","Fields":["TeT5+hBDLmJMCCdawmRupWmPmmE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qlvuzg/ZXgmQ1N9aHq9L2t7j6u9poVkReFlOJvWNZC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:54"]},"IP":{"Case":"Some","Fields":["185.213.175.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:3a30::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainboweuphoria"]},"Identity":{"Case":"Some","Fields":["TeGV/g1elv2K/aJUlXhdJ2s2d3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IfMdZDaYpiuwfLFGnUJdIpaGJwD87rYDRLYD2tOzBvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:20"]},"IP":{"Case":"Some","Fields":["77.83.198.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diodeOnion"]},"Identity":{"Case":"Some","Fields":["TdEcPxH14okdV++fffQ77htRT84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CQJ3lttbzrAn54U9TpS5nMHe2g7FuYR/FabzrBkZrMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:32:14"]},"IP":{"Case":"Some","Fields":["99.149.215.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sweetnode"]},"Identity":{"Case":"Some","Fields":["TcvJVujw0sqJ+CqFdHb1/fPN0kQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZaLU/Detzx7JOsWqwS4oyoyq8taiXjWTEzZE6wEbR50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:36"]},"IP":{"Case":"Some","Fields":["51.77.245.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProphetNode"]},"Identity":{"Case":"Some","Fields":["TciLXKkzIKtTm6Yc6aGtc8UYOtI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hiJnt1IJ5ZO8WiaGiFsSZj7JEvFcvp75YEExBtmBy0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:19"]},"IP":{"Case":"Some","Fields":["62.171.135.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2066:7989::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cannoli"]},"Identity":{"Case":"Some","Fields":["TbBJCgQggJqBSed4u6yPHpNJ2ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TL+9e2BGBs+/9vobcxG2370LDzXz3TitGNXUqgbl/z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:25"]},"IP":{"Case":"Some","Fields":["80.211.185.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thunder"]},"Identity":{"Case":"Some","Fields":["TaFu1OPfwfxNTHsSZSbErHtq2Ys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUeoCjVVsipgnDLXs8kKg7pdAIuUEypFK3wMEsJYMA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:25"]},"IP":{"Case":"Some","Fields":["45.77.160.51"]},"OnionRouterPort":{"Case":"Some","Fields":[23352]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["SixFootHotLook"]},"Identity":{"Case":"Some","Fields":["TY3jlcSnk0Vkap79wFokHAPAR2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cs8O5ukT0uSTFXkLv7kfc0R/OfJT3W92tRE9mDZG8D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:49"]},"IP":{"Case":"Some","Fields":["178.249.211.100"]},"OnionRouterPort":{"Case":"Some","Fields":[54993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6ea0:d509:3::a11e]:54993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["TX4rpN601w4WoThi5vk4PnwUQsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l+jMVLArktUiKvNAxVgRUOev7h0K8cpqIpzAZMvrpJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:31"]},"IP":{"Case":"Some","Fields":["146.70.124.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themossyboulderspa"]},"Identity":{"Case":"Some","Fields":["TXkWlji12vghswYkcl/TQY+FCt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9kV28m20xuCWul5/tb9x1XLlrf2jSok8Knmx5RDqQ9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:43"]},"IP":{"Case":"Some","Fields":["45.114.130.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pirut"]},"Identity":{"Case":"Some","Fields":["TXjFShRZEcZ8kAP+XVMUcmyvlCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ipeNu2ri5kSxd/tFNsOVLQo7PH7AIvMXht9et+sCX7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:36"]},"IP":{"Case":"Some","Fields":["172.106.19.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa1"]},"Identity":{"Case":"Some","Fields":["TXDwXdMIoupbZx5ECHm/rayShg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bcoMI067n419xg7Qp2zQJEmfA0bXlCdbgXOG1BjfFAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:01"]},"IP":{"Case":"Some","Fields":["95.217.112.245"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tun"]},"Identity":{"Case":"Some","Fields":["TUyCzZ6Kq8s03IsNQ/ETgzgpM5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Mp1zJ4lzyJAnW8KgXCdpoqJLg3U/DcJZcCT88bZzZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:20"]},"IP":{"Case":"Some","Fields":["222.252.56.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carrymethrough"]},"Identity":{"Case":"Some","Fields":["TTo+P5jOrvLiWpV1dBkMHqan99E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XrFcUX0Q/OgT6RmuLzCqhmpwaB4bJMd0mIO4V9V055I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:52"]},"IP":{"Case":"Some","Fields":["58.185.69.245"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LTUFREEDOM"]},"Identity":{"Case":"Some","Fields":["TRkuXwekkZJidO49Idns2GrT5/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rK3WyHC58HsBc6x17HTMt9v3IDf4/dq2APJfH7WZX9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:57"]},"IP":{"Case":"Some","Fields":["78.61.137.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["honeycomb"]},"Identity":{"Case":"Some","Fields":["TReT1CP9sZaOqnRV68BwoOSLM+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dOGCqawYt12SvtkxNgqtUhOVjkP/72hHkULxahrWAOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:59"]},"IP":{"Case":"Some","Fields":["104.168.205.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev8"]},"Identity":{"Case":"Some","Fields":["TQ30aNyBb4CWcCwtosb9Z1Yfgcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uoTzBDXSBjz/AoxIkT7jkArWv/FBGBEJvQ+Pjzo0loI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:32:39"]},"IP":{"Case":"Some","Fields":["46.232.251.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:66e:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freiheit"]},"Identity":{"Case":"Some","Fields":["TQxvwcenmsrtkMExv2VD2xkgQek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mYLSw+8ZUx5qvmWbMAuUQcuOg9J+3uf5GNcv2Uizj/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:06"]},"IP":{"Case":"Some","Fields":["185.225.68.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpaceJam"]},"Identity":{"Case":"Some","Fields":["TQLSfIjhvucm08RMe9eEPA6SrbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+x0NdFB3/93czt6Us6NOEdZxm4B/JqQhJHBB/N21EnE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:30"]},"IP":{"Case":"Some","Fields":["139.162.245.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe9b:277b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOneAndOnly"]},"Identity":{"Case":"Some","Fields":["TPJpJBUa88e5puCFdJbUWFGM1U0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bau25CyEWLrcJrH8NFkKxKCPaAtMm1xV9dsDMAe8BDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:50"]},"IP":{"Case":"Some","Fields":["5.150.239.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1138"]},"Identity":{"Case":"Some","Fields":["TO6wzpD/cMtUzuN+r84XZmEjFRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n8hxZ2O5+CYomadQPmyow2/DJBJb74TehsApQXGFJQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:05"]},"IP":{"Case":"Some","Fields":["185.220.101.138"]},"OnionRouterPort":{"Case":"Some","Fields":[11138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::138]:11138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QOnan"]},"Identity":{"Case":"Some","Fields":["TOr85YQcDa4wFktPWUUvf02Bimc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["weCWmpoX9n8jklnysBmKFYOpeWQ2ZCmRIhXKi+Shc74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:41"]},"IP":{"Case":"Some","Fields":["185.183.194.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:425a:6fde::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["TObYP/qK0kdnAH6Mly83HyRo8Jo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HrEz8wdOGPF+DaxOlm6O5tHhIVGHkJoV4f7NsKpiTtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:56"]},"IP":{"Case":"Some","Fields":["185.32.222.237"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:ee80:e:fefe::40]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["TOQiRG1DsKIfD5yhRtkHVYNAIQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OR1w/v+Rv6hTuROd2oZmktPZDraKz0JqbnTvcfHmKnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:23"]},"IP":{"Case":"Some","Fields":["185.194.142.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["henkdefreumel"]},"Identity":{"Case":"Some","Fields":["TNTf/vOXHJAqIhANkRysY5vi71w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3GckLyQAQpiUENtlZDjcDqw5z0dbVOxaGvP9TccT+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:26"]},"IP":{"Case":"Some","Fields":["143.178.111.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CodePoet76"]},"Identity":{"Case":"Some","Fields":["TKeCzgCtvN25PeP8rPhERTU9d3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1dvDxKoQkymHlOb2boribwF5fNiIhNIZJ2g/zqk0vc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:25"]},"IP":{"Case":"Some","Fields":["50.53.115.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atlien"]},"Identity":{"Case":"Some","Fields":["TJ9xfz0m0eVrHNZ050rUsuwe7Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JAUkd/050oOj2RerrUUAFor1zuXq4mbZ/KRcOMkrBaA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:51"]},"IP":{"Case":"Some","Fields":["23.94.203.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blablabla"]},"Identity":{"Case":"Some","Fields":["TGeIq5C4bz+RDd9r0yA/ywpHAOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fl6PKnpGSUKoYW4BDg8L/RoBoF1QS1UYGXvgP+/qbgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:10"]},"IP":{"Case":"Some","Fields":["91.207.57.115"]},"OnionRouterPort":{"Case":"Some","Fields":[18049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MLaBnetTOREXIT02"]},"Identity":{"Case":"Some","Fields":["TD70sMFy8MEokVZuJ28W19wH0Ek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0WKDLzHHWTJd1LmoijEBeRFUnDnT3vkIA3oE3ujF76k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:59"]},"IP":{"Case":"Some","Fields":["87.237.165.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:a6c1:0:2100:87:237:165:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["specialsnow"]},"Identity":{"Case":"Some","Fields":["TDTnzgU0yJmU3vs5YA5t9Z+yu+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wP7FqjA3r6/PAiHaQhDMsxvoM0NlqQhgfHcKk+C1/po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:42"]},"IP":{"Case":"Some","Fields":["87.236.146.115"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a11:3b80:1:0:97::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk12d"]},"Identity":{"Case":"Some","Fields":["TCVUK3ZJ/ARy7b93Uh6lePmvUVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRzbOxa4qj2HUdS2mbJzDFJE/VseDPirXE5wsfzeJU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:35"]},"IP":{"Case":"Some","Fields":["163.172.182.26"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:63b::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yunmensrelay"]},"Identity":{"Case":"Some","Fields":["TBzpxdPY8h5zVC/w6HMSLeLa4T4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDfGcy2Uy2I3DVjKSQB3lC0aaLCSNHBuIEQLEp1vOv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:22"]},"IP":{"Case":"Some","Fields":["203.51.27.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["S/3nKC1jWXRfZTVyTdqtzSeeT9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s3rL+vTjr430qXIg6in1ELOW7ifCeB7oNxbPrLEwnaE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:42"]},"IP":{"Case":"Some","Fields":["80.64.218.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["karotte"]},"Identity":{"Case":"Some","Fields":["S/ycYxqT/0ujqoS8aTG0MQw4omM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P+c8Y59UIn445aXsHJfGH/wr+ALWsNdDpAevM5/Coac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:51"]},"IP":{"Case":"Some","Fields":["109.70.100.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["S/yNQVbrW79DNedA34THgS+32Ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/dGRc8jzmybryU0SMLzw+DQnl0r4GxpmeV6W8JsDNkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:45"]},"IP":{"Case":"Some","Fields":["185.213.208.47"]},"OnionRouterPort":{"Case":"Some","Fields":[7777]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay33L"]},"Identity":{"Case":"Some","Fields":["S/PSmbxQDDUIaPB4dJKRx2bHqm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lU+tHct7Wx5cDVvngT+e+Wxj39Pw8qqwBCoHiHRkWP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:31"]},"IP":{"Case":"Some","Fields":["139.99.238.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::3a8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["georgector"]},"Identity":{"Case":"Some","Fields":["S+1o356vbBEdh3jhnMmsev7E/AI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6kaodHpn1zZ2EifB5eDc2zGC52J9aTa255tHyWkYdEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:24"]},"IP":{"Case":"Some","Fields":["92.17.234.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ACABindustries"]},"Identity":{"Case":"Some","Fields":["S9q1a5aJocke6yUhI6/c9543osI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TEEw2hnCChN9wlhtnMC7NMvi107q8dyfgtnHPFEqDu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:56"]},"IP":{"Case":"Some","Fields":["50.197.11.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HexenRelay"]},"Identity":{"Case":"Some","Fields":["S8IDa+oz85cjKRKF02qjwa9Dbes"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XFUiFA8XWkNJRZSmgFElrpS3D3iErFAS/6DqN0Soh0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:04"]},"IP":{"Case":"Some","Fields":["217.160.191.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra15"]},"Identity":{"Case":"Some","Fields":["S6PBKwc7fj95d8Rq82OGhbuJST8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qdUmA/7OPdpTh5+QpNIvu2JMwCdX2OrCz5w71Qq49vA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:01"]},"IP":{"Case":"Some","Fields":["104.244.73.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yyzz2"]},"Identity":{"Case":"Some","Fields":["S5X5PNsW8SlvShMzeFwV8u2tg+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jpXSWiPSfmHHyssFt6N/iWWQV4C5W/2GO/h/GKa0Edc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:39"]},"IP":{"Case":"Some","Fields":["192.9.236.179"]},"OnionRouterPort":{"Case":"Some","Fields":[3389]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c000:e400:99f6:e55b:322f:463]:3389"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tagliafista"]},"Identity":{"Case":"Some","Fields":["S4G8Hj1ZNHJ4AZwOfneeP1ovAXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83jUSq2JJkCkNmG/Y09tRds9Kxq0SefsoqNeZIWKPtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:16"]},"IP":{"Case":"Some","Fields":["129.226.35.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORion"]},"Identity":{"Case":"Some","Fields":["S2jQ5Tku1vNGmjeIBjE1OpZVhjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmIlMIf5NiTWE0C7gR/kF9xRm2E2Qbp1aAu8JkWSNlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:58"]},"IP":{"Case":"Some","Fields":["192.99.34.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amersufi01"]},"Identity":{"Case":"Some","Fields":["S19If4k9a3dkbPgYWwtmowKsKmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUC4iTS8vb2B5RgwdA7BZ6VfMGy9gYvAfHhdWUbrKG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:20"]},"IP":{"Case":"Some","Fields":["5.196.95.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:fe22::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tubealloys"]},"Identity":{"Case":"Some","Fields":["S1gvP0u03lbXco3rIqolU1CHD5g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wqgwg90Tza3Fmt+t8v8HYshTJpSkrjQ6ZyVNlyO9dEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:31"]},"IP":{"Case":"Some","Fields":["213.144.142.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:ad1::24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sgtor1"]},"Identity":{"Case":"Some","Fields":["SyLEpW+AXJfS99dvCO2mlO7/wQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ZjpGUBKoa7u21q9jWtWn/u0Rfr4W5rkx5UhZuHQ7uQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["198.98.57.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurosuse"]},"Identity":{"Case":"Some","Fields":["Sx6gmDeaiut3debgIJQLMJm1vnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IA7SxiTJ3PJvoeVzzaCXULjPVSWxafyZ+8/ZkXT0VAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:51"]},"IP":{"Case":"Some","Fields":["159.69.27.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:2170::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZXSpectrum"]},"Identity":{"Case":"Some","Fields":["SxcwJUFjNG9DTeGFu6UbYtkHT8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8Ah/0kBQGYIfiHO9IWG3Ke1MSE3rjaJOhTmoUhDkKOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:53"]},"IP":{"Case":"Some","Fields":["93.95.88.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2780::e01a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["birnenpfeffimitzimt"]},"Identity":{"Case":"Some","Fields":["SxcEdtCUWTKEOPPmjtGVFsn3WoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bV2II3otq3vgEXNaqPvsSRelKV9aMciy8il/t45O9wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:58"]},"IP":{"Case":"Some","Fields":["212.21.66.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bf0:666::666]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SwqqR9kcWJLvLlw96dzIaNFmNas"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1fEjtPNuzunWc+PYwlhQZGO3lWK49e9QrPNkdrD+YE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:02"]},"IP":{"Case":"Some","Fields":["129.159.97.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["whatisyouronedemand"]},"Identity":{"Case":"Some","Fields":["SwQ2pgqEWFEVWBOYZbcqkSoNF58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I6NmOiLu9RKpbEZdSG1VPzkzrKu3KoP4VHjcvjdQSOw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:13"]},"IP":{"Case":"Some","Fields":["168.100.8.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["SviRYD97vcCFf8rOujOGzfDmGe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z9DbFcEUqYx+Iddm8dkPeruD0TchLpIgaDpC5gUZd1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:22"]},"IP":{"Case":"Some","Fields":["51.159.188.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allTheSaints"]},"Identity":{"Case":"Some","Fields":["Su9CLz1U3IqNdbwHH/1N4c+bon0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsZOr902l7TNIN3+6K/SqJGz4itAKosIOXTbTGBMLmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:21"]},"IP":{"Case":"Some","Fields":["77.97.245.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RonnyH182TorServer"]},"Identity":{"Case":"Some","Fields":["Ssv50daf1LZVdeEXvLKWrkePM8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ycJ2xQWdY5Erl6JJ4MAAhOvSWuWMUP3jFhBnmTRtgC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:17"]},"IP":{"Case":"Some","Fields":["79.192.212.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stellvia"]},"Identity":{"Case":"Some","Fields":["SsTxIMEZxyNWvJwzvxTibSvwUtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EEO0Nk4NuZYYAMcxttTGY4N2Uz7GCyuD/cmx1Hyi4xM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:11"]},"IP":{"Case":"Some","Fields":["37.123.163.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:28fd:bb03:7374:656c:6c76:6961]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Sr3V+VT7xiFiK5vY7zHtYOtlQIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIYdbPHzB8X3grWj2+JwC3XkSCeMUS9/T2sSLoidZBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:29"]},"IP":{"Case":"Some","Fields":["90.110.232.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb0c:7aa:3800:7075:73ff:fe74:7265]:9006"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["SqMPphAfO8w4b8pMIGXf9dDiquY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Li1wEFqqVNJ8FI3K2DiPdtDYcawX8zA8fu1w0aV5kFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:02"]},"IP":{"Case":"Some","Fields":["195.88.226.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ymir"]},"Identity":{"Case":"Some","Fields":["SqADVgTfQOW6INvojvbRFDJCG/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0j3D3BYHkrA3DFxq8xf0Su6ShWKdvzT48pj17+0Wrdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:44"]},"IP":{"Case":"Some","Fields":["45.154.255.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lz53"]},"Identity":{"Case":"Some","Fields":["Sp1h6OOdyDjVTEi5JeKF4Z7GUJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6qk7KFY2t0mjyBmilwfi8IZej9gvjxe5fCsfbib/PTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:45"]},"IP":{"Case":"Some","Fields":["173.77.121.34"]},"OnionRouterPort":{"Case":"Some","Fields":[18585]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sasageyo"]},"Identity":{"Case":"Some","Fields":["SplrAXNtFkbnKmAButCPJgfMJJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNRt500fLagc9Slq/wIhpfQXMw+knL9vHUYB9qVrIio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:52"]},"IP":{"Case":"Some","Fields":["82.165.2.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8193::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clicker2"]},"Identity":{"Case":"Some","Fields":["SnzDJCQQv0GFzvsogjmI+CGG0nQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLpzcki0WrER6Axy1A4roRArOUNqBJPEShun7IpO9A4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:11"]},"IP":{"Case":"Some","Fields":["94.16.116.137"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:91:2549:9:f370:a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SnTgCbb0isButJmYZufyWK+LH/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zpf4S27LRZQMzfuvOk3SjnMjc0j1npF4f45XvjAA62I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:09"]},"IP":{"Case":"Some","Fields":["23.128.248.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::848b:5ff:fe51:463b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Smn5ImthE7BoHVyTu9YNX8y+SBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rd4y5V9HvvNx2LjUHbMVOcJjsdbur0y0m89rQfIkqdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:57"]},"IP":{"Case":"Some","Fields":["78.35.85.154"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["SmkBD/NoMNaUnKRFaXToWF6SD0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIhdXVoBluyu0hj+7b61t+9Fu7rYFaZOnoTo6LIC96w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:22"]},"IP":{"Case":"Some","Fields":["212.227.73.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:46c::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["interestingnickname"]},"Identity":{"Case":"Some","Fields":["Sl6KDfzu4BIbJGR+vWPpFfAXc4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CuhYoR3uKQ4V0PA/mjHmV2J1GR6HEiLIjZrWyEW6Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:40"]},"IP":{"Case":"Some","Fields":["130.61.57.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lunabase26"]},"Identity":{"Case":"Some","Fields":["SluN0F/Ab17no1h0dqAPXM0Q0oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["idI9lvaNPJlmRJ9HAfEYcDbVSpPI+M0US4CymshUfhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:46"]},"IP":{"Case":"Some","Fields":["185.67.45.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labell"]},"Identity":{"Case":"Some","Fields":["Sln9NkLE2fRqjZFqybxkOQvLxq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A57JfvpttMOP4JYN5TdirSkQGmjFTvejbLEBaStj9lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:57"]},"IP":{"Case":"Some","Fields":["51.178.81.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber61"]},"Identity":{"Case":"Some","Fields":["SlMapxKj3wqQ60JxHuvpC2kYs3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PqQWFuAhdhkhVypbmyOGhpNU8RinntZOSBc0Wd6zihQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:08"]},"IP":{"Case":"Some","Fields":["185.220.101.31"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::31]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netzwerkspaB"]},"Identity":{"Case":"Some","Fields":["Sk77PpNHGJtquUU4RGksyh9GpMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["94a6aXMi1KI/RaQNfou/auknNitQdDuhu/lJ+wBD8YA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:51"]},"IP":{"Case":"Some","Fields":["135.148.100.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr262"]},"Identity":{"Case":"Some","Fields":["SkMp3rxhlR9GYyBJklPCKXNUpMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6boSdOUPpuBZ0zdOF+I4JkNXli1WUVmq6kOMWihGjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:19"]},"IP":{"Case":"Some","Fields":["85.208.97.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq01"]},"Identity":{"Case":"Some","Fields":["SkEd2Ou9U5qgCQowWFa5yDj38tY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7n7PjcOEnyYmzUtnD/s6ZkFDdwhm88bVol3u2eHqSxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:16"]},"IP":{"Case":"Some","Fields":["193.32.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tormachine"]},"Identity":{"Case":"Some","Fields":["SjuHTwGH8s8No8j3YGOwcPn3oU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DZyedbxAoNaqSkTzqg+onFoBwxPDdh7gW+HFxhjbdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:10"]},"IP":{"Case":"Some","Fields":["87.118.116.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ShacChTkH2R9AJ7EnSij0RYp2vA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6FOZc8NHMocZVv2FIsqksaJpvAZQtxYNvrfT79oUy5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:49"]},"IP":{"Case":"Some","Fields":["185.220.101.44"]},"OnionRouterPort":{"Case":"Some","Fields":[10044]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::44]:10044"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc13"]},"Identity":{"Case":"Some","Fields":["Sgj5eIUrPMXbMlUop3t15GuoKWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iE2iu6CeeybLKLtX4SUI7RCMJEMwpeOUoCI3MR9g+QE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:59"]},"IP":{"Case":"Some","Fields":["185.100.85.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SgeL09m1wORbVnl36vYWDcogAVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kdEAfMAixUyMRZ64Od6MaH7PBls0pinYCNEv7O8XZVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:43"]},"IP":{"Case":"Some","Fields":["46.208.152.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gslinx5S0zynC"]},"Identity":{"Case":"Some","Fields":["SfkG+gXard3KZ3tsS6GWyqEELpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a3vlUMv7MjitiHiEP0guR4MJTcjVZgZw6OJyzTh3WTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:37"]},"IP":{"Case":"Some","Fields":["101.3.121.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM01"]},"Identity":{"Case":"Some","Fields":["SeX7lXBF/dyMUyVc62umU+Hpql0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CtoRUtkEtiG3XXXrti9FErS12DbmhMU4UsCUCEgRKwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:48"]},"IP":{"Case":"Some","Fields":["185.239.222.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SeGcNwUFstlRlfN8Qwxbsb7Zt1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SESRm9pqT9VAPf68I3SIyQZ+pLjEwTZg0wDlzmDASE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:18"]},"IP":{"Case":"Some","Fields":["193.142.146.187"]},"OnionRouterPort":{"Case":"Some","Fields":[27551]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who7USicebeer04"]},"Identity":{"Case":"Some","Fields":["SeEE55VeVXUpkur6L2Wog66H7xs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRkIPWCjGJ1OcPlOjXvdfP1oPFlpzri/2mjl2t2vQck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:37"]},"IP":{"Case":"Some","Fields":["142.54.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8086]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlickWinkel"]},"Identity":{"Case":"Some","Fields":["SdwiKnSUrvjn2/LjyqvyNQTHe2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJKujQR3ntC178p3+rCsfMoiZnnYQAN+m1HLHflvr8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:30"]},"IP":{"Case":"Some","Fields":["45.142.232.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:29b6::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousLibrary"]},"Identity":{"Case":"Some","Fields":["SdE7NInmhWRBwrV5klqHLejBKgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IJ0khEhKI2/ROE/PfBtPFa2E/0OMQmTAIS7zJaN2NC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:29"]},"IP":{"Case":"Some","Fields":["107.152.33.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARelOnVult"]},"Identity":{"Case":"Some","Fields":["ScQdWT7hG9/NRMNeRzwgv+WBA0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Cg4a9VEbPPbDqYptkuftSNtbTsqrNcJa8N2ecAgWxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:17"]},"IP":{"Case":"Some","Fields":["149.28.136.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:4400:76e7:5400:3ff:feff:d84e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nicodeamuz"]},"Identity":{"Case":"Some","Fields":["SbTrjoF+XxtZQHSaJhCvD5lQyAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jl0sxjXTDPK34PBCukSIR4Kho+5fhyJkpj7Hd7Lw27E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:34"]},"IP":{"Case":"Some","Fields":["216.197.76.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HellGuard"]},"Identity":{"Case":"Some","Fields":["SZ+gFDMyBJEhYiWAH+BYnCULTW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pRAmTfHKuPvvhsYBbaaXcgwPo6vrlbtWjRShXXn5FS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:03"]},"IP":{"Case":"Some","Fields":["94.134.28.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI15"]},"Identity":{"Case":"Some","Fields":["SY86AtxVwhOs1+q9JeCMYUbXX1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I40yZN5qm6QKZ4+kqzb/rIBx+tjIaAmBsMmJDBQta/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:15"]},"IP":{"Case":"Some","Fields":["171.25.193.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ColinCogleEU"]},"Identity":{"Case":"Some","Fields":["SYzdO/neWaVnjoSI/qRQ4YdiQqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zKuKE8WRwYOsm2gZEHvwRCnsFXV6+RG4j9BkrgF4qGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:48"]},"IP":{"Case":"Some","Fields":["51.159.186.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1202:1324::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alibi"]},"Identity":{"Case":"Some","Fields":["SV8HyuzvcpkHwwax77AJTe/RO1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JkicCxJjI09Fvo7Lu4ZGWIwFe3M1txALXede2LMut7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:38"]},"IP":{"Case":"Some","Fields":["185.56.88.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnotherTorRelay"]},"Identity":{"Case":"Some","Fields":["SVtJaGfIS7ySM4MB2SSFDyJuddo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+DTMYa1SVVig1RVuaUkmqqf0U5SvvOF+L+6IEjaX50U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:18"]},"IP":{"Case":"Some","Fields":["5.135.162.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e531::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andr788k"]},"Identity":{"Case":"Some","Fields":["SVS1GvDLraCOS8OJ3x4+QZU1Flo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kvczBGLBpBNptFT+dlIUjGQkjx6GsFlQ84mFhxtgXDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:44"]},"IP":{"Case":"Some","Fields":["209.141.55.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:20:be7::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["configwaseditted"]},"Identity":{"Case":"Some","Fields":["SUWIJ0eegsohirGvtLcdKuJBcHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YN3BLmTPz41YlCet7twhAtslo2sFBnUzwFjBdcJTAJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:40"]},"IP":{"Case":"Some","Fields":["14.200.177.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ST4wZ+0qtUM+Kds4eXUB5dzPyz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cJMtYRPR2W3gW3rk7YW9MFKPjEXugRL9OdxIV7YwgI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:07"]},"IP":{"Case":"Some","Fields":["45.89.124.247"]},"OnionRouterPort":{"Case":"Some","Fields":[55464]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SSkEGj/uaYmQMUvWHQ32lYxCGxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Twtnss23Qyqv3W2NAvsdwf7bLbg8c9hLaMTFsq5Nqpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:08"]},"IP":{"Case":"Some","Fields":["81.95.52.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI22"]},"Identity":{"Case":"Some","Fields":["SRtOVbT9T97GOyKbCj5Zho/KHx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FppQoBrAIJFPVCcbVWpSgn72e5SmQZ9f/BGwDIweuh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:49"]},"IP":{"Case":"Some","Fields":["171.25.193.80"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::79]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VZFFNRMO"]},"Identity":{"Case":"Some","Fields":["SQbN7NqlthR7whyrpkw8Qmc+2wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvwdQHiR9OfhTtdQhRtJEHwjb+8s99wQukXGAC/TBBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:25"]},"IP":{"Case":"Some","Fields":["185.65.241.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6e1:1001:888a:51ff:fe8d:3326]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gotaRelay"]},"Identity":{"Case":"Some","Fields":["SQAOpdQ2j385Q0JfBq6G898sz0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6v938lhMLcO9GVNdlhtlonjZAT5An/n9i8nCUmzTCHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:03"]},"IP":{"Case":"Some","Fields":["45.116.189.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SOhIAHa8Jn/cQYJqqF2CLpriPnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLbEgEOg9JMMGsvklI2A+xfPMlOleFHa0nStUHKoY0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:20"]},"IP":{"Case":"Some","Fields":["87.142.105.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athekiu"]},"Identity":{"Case":"Some","Fields":["SN6DL0vmlVs/Px8GAxDzv9enkD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vww+4Gq+ToJMJHq8seeitshAGq15vJNIOjxNtXSTtJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:59"]},"IP":{"Case":"Some","Fields":["37.11.134.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["battaglia"]},"Identity":{"Case":"Some","Fields":["SNjFR36eOGSc881eKhfyAbykAx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PDZqFiQ/nlgf+9bIui/r32ZCqXdIbOMBLMoXbHoIvUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:23"]},"IP":{"Case":"Some","Fields":["160.119.249.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wohruo4aXaed"]},"Identity":{"Case":"Some","Fields":["SNU9NRc6TvGON2gvAiOilhd9dOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yFrkrAwHmgX0jQAzeryKzibJVrKPd/HzdLWRZDeHxBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:14"]},"IP":{"Case":"Some","Fields":["199.195.249.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golosa"]},"Identity":{"Case":"Some","Fields":["SLH7lF4I4/wPiAEQ1qdsh/rZk/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XY6U4kGX+MnpyzHmslZ8tVmoke7INdc7dasG6FCrWXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:17"]},"IP":{"Case":"Some","Fields":["176.58.121.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe78:b382]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["EarthElementX"]},"Identity":{"Case":"Some","Fields":["SLG9qvkiSx7Zk8QE4Y2pAxtQheo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZgvEBp0Cxz37F4UOq8dVBZ3Ud2/FUhedyYZLMptMZAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:47"]},"IP":{"Case":"Some","Fields":["194.15.115.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["SKfjoWn4bkWgAoThMDeTr/ph8eo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2DMjs7ZHF+cOlfbheeaI8822fV4+0g21VATbNQ+FwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:09"]},"IP":{"Case":"Some","Fields":["5.45.102.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:614:d803:40ff:fec3:832a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zapner"]},"Identity":{"Case":"Some","Fields":["SI5mO0qIwS5t5sEvemBT8Jv3pho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6G51UEsPse2chGnF5QO5BZWVEKv9QGlrgcZM1oCbrB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:49"]},"IP":{"Case":"Some","Fields":["95.217.6.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:516b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digitalmensch"]},"Identity":{"Case":"Some","Fields":["SIAs2XgeisBnEDFMesBgoVP29P4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E83dQx5GiY2YvNvErpnh0WABlTqOxJiNRfXCpwPC2+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:49"]},"IP":{"Case":"Some","Fields":["185.155.29.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:e5c1:105:feed:beef:2:babe:5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pecordPi01"]},"Identity":{"Case":"Some","Fields":["SH1z+2iRxQDnKabLVTxEdesrPNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RwN4iyesAEX1DhDUe8FbMkLN04bQckI7rlsbFGh3lMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:45"]},"IP":{"Case":"Some","Fields":["136.35.40.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SGvuZoYM5a/p2yxttVBr20Z/ItY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFNCbXEK0OfQM5LGfMYtP7xp7qeGVRctB9o+Ybi9tEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:07"]},"IP":{"Case":"Some","Fields":["206.0.94.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk1"]},"Identity":{"Case":"Some","Fields":["SGdANTuQWqRzH4LAtMwlghpixuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELVsHKbTXAVcAOi7TtXzHfXEWCUOzcoSMe/IOQPiATc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:07"]},"IP":{"Case":"Some","Fields":["87.139.33.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mordoc"]},"Identity":{"Case":"Some","Fields":["SFbJfcTyJxvIlt+cq9IX7i2GnWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AU0R2UWso+W2Cc/jJQDu9kI7WQvPylorpQ8/cyeClg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:15"]},"IP":{"Case":"Some","Fields":["136.243.149.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:17d1::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa5"]},"Identity":{"Case":"Some","Fields":["SFSSpCCv3/+8ygXf8xfNykMFLBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["otab08TCj3gYVeaFRqs/6DXv+hzQ+ZsT1n5QIHdqxas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:46"]},"IP":{"Case":"Some","Fields":["95.217.112.218"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["SFOnDbn5UgOhVEoCRdnSKfl7SBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+QwFzii+XCMrGI0rBddmIZkh1jkCcSDdqyJw+btYSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:49"]},"IP":{"Case":"Some","Fields":["88.208.215.95"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1f5::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WinstonSmith"]},"Identity":{"Case":"Some","Fields":["SE9mbEkbzeIrReDhnRzqWsxalhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tjXkOfX9r3XbjJq9+r6U+mA8p/ykf1/pv2LqMSSwjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:05"]},"IP":{"Case":"Some","Fields":["163.172.151.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:560::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["systemli01"]},"Identity":{"Case":"Some","Fields":["SDuy9ly+eAQUUHnnU9n2sI1/bEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mGg5BLAWpnadDfYVCnn6LB/YsI7wodZMHW1ONlEixWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:16"]},"IP":{"Case":"Some","Fields":["192.68.11.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:a40:7001:2::4711]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ITPIPRelay"]},"Identity":{"Case":"Some","Fields":["SDqvAyr1lraS/i7vAwR7B+S4c2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/q6OpbWMdp5tOXv3C7yHGhSJREsf6BsWcg3LLKSo+0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:07"]},"IP":{"Case":"Some","Fields":["193.200.27.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KherNl"]},"Identity":{"Case":"Some","Fields":["SDem3/yONoHXCtno0FfAKQk9ovc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RVWKBzAHpZzkE9f4vdYv8sKFrNQqoyERXzNJOlLRb3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:06"]},"IP":{"Case":"Some","Fields":["51.75.206.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::7cb4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasilNode00ls2"]},"Identity":{"Case":"Some","Fields":["SDbk88ivM0gEhG3QX9NplYwPmOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZbvCyBMpv0CfsXoPyPVEG9cLB7iXP6dYAwsu9gwtC1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:44"]},"IP":{"Case":"Some","Fields":["5.255.97.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:3c60::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rasptorMuc01"]},"Identity":{"Case":"Some","Fields":["SBwOtL0dIAi4KvEVcSf6cvS200Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDvnyk3ubQyz0xUOV7ZTpJiEhMElqH8lk4/CJoP6U2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:49"]},"IP":{"Case":"Some","Fields":["93.104.191.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tactback1545"]},"Identity":{"Case":"Some","Fields":["SAhf1ezhRFS8c0nkhGAst8EDbYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32KuJCY4Vt/+pRJN1LxWvRs/nXGWsQTXZluLYTAYFfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:28"]},"IP":{"Case":"Some","Fields":["108.18.209.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0171"]},"Identity":{"Case":"Some","Fields":["SAINQSZ0sTsIO5/wphIi0SHGeGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5TA95xOftt9sV8/g/B5zGGm3aqfsyOv5xbfT/B/Nn18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:02"]},"IP":{"Case":"Some","Fields":["185.220.101.171"]},"OnionRouterPort":{"Case":"Some","Fields":[10171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::171]:10171"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra59"]},"Identity":{"Case":"Some","Fields":["R/wZ2+K0K7SBxlGRJ2Zws9WJ8HU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CDmf+iDXs1F+2F3nYZ+X5AslKp2hux11SJ8ShSCzo90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:11"]},"IP":{"Case":"Some","Fields":["213.164.206.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sing1"]},"Identity":{"Case":"Some","Fields":["R/nR4BVQiZF/+nNO91kIkybDdho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZzmHNpTsaytNsju0FaJ0jnhUTTNAGN0muF4t56YPXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:13"]},"IP":{"Case":"Some","Fields":["68.183.182.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d1::705:5001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute15"]},"Identity":{"Case":"Some","Fields":["R+STGd1neE8eZbV5M3G+RnNll54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCg+R0FcEzuQ1w+iXCq65Snv+eXs8GG02sgtrAsEqys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:55"]},"IP":{"Case":"Some","Fields":["162.247.74.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GuardianAngelUS0"]},"Identity":{"Case":"Some","Fields":["R+QBxl20BXcyuDn6nkgypngrINo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M4ICjZpNWGwZhkR6QpzIPeQW74Ijz/beKb9gv/zvQic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:28:18"]},"IP":{"Case":"Some","Fields":["107.152.44.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MSchnellDS"]},"Identity":{"Case":"Some","Fields":["R9yr6KsGM+SiRTXTFx3fkWM4uf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ng9+F94YHm2hdk9oeZ6WgGo8H5vITAarx5TXHzO2GcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:54"]},"IP":{"Case":"Some","Fields":["65.21.126.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["updater"]},"Identity":{"Case":"Some","Fields":["R9GfhSFvEjlSlSHgJlCFOU3yAbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDfODBNFJhdyYVGzknziX+phq4uo8un/Z6RDSUqr//E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:19"]},"IP":{"Case":"Some","Fields":["172.241.229.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["R748gLbIMSEVJ9GNHYTidQ9BLt0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b9NENPD7vH4JEQSqGdMaNhIrMluRsOg8aQqGKqEvdEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:40"]},"IP":{"Case":"Some","Fields":["108.240.182.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9990]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed"]},"Identity":{"Case":"Some","Fields":["R7mqfiol9x/nWTWXvzr8vDHrm98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ww69/FjThYc3M8aj118IA1s2xbCnHRcGf+hQPBP4i44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:41"]},"IP":{"Case":"Some","Fields":["51.81.209.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorSJ2"]},"Identity":{"Case":"Some","Fields":["R7Sbtr6f94lDUHzCn1V1LWQSDoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7We+OAYzTqyFdPLmsuMOduUR3Tj5Vo2cNdtt/kWhv/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:16"]},"IP":{"Case":"Some","Fields":["192.210.206.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["R7F4t1yOQvL4r5qwfg+8k9y3Lfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHCLbT1d/dB8FHL4uDz072xQxr6dydpGtdOrMbiyQmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:54"]},"IP":{"Case":"Some","Fields":["95.214.53.216"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d8]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrazzt"]},"Identity":{"Case":"Some","Fields":["R6PQBSXwQfOCs5i/lbxY4OwjJ2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qVpaNy9gslLdhRZzf6DYeu4+sPr0sE4q1iZ83WQy7iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:02"]},"IP":{"Case":"Some","Fields":["185.220.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:11::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToolHaven718"]},"Identity":{"Case":"Some","Fields":["R5Ukrv3WD6aRHlqVU/vdzj7y5a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/9xYwSCmOOsewy71wmclba8zET4MOnp9wvjry1Ls+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:28:08"]},"IP":{"Case":"Some","Fields":["209.141.53.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1a15:e511:887f:23bd:a199]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["R5CdQELugabVgQX941yYmS/UV9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmOj1EZsRWoSmvZ5z78YDidp2HcisNTNQyoDS4X/9SE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:37"]},"IP":{"Case":"Some","Fields":["23.128.248.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mordel"]},"Identity":{"Case":"Some","Fields":["R4B0mZSyNVf3RYa6EotNwBpUZnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D3L1YYe147SuJFftYamvv6wXMyBrpISNcKbUBIyF4Eo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:19"]},"IP":{"Case":"Some","Fields":["71.19.144.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe39:574]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["R34riuOAvSTH7l2f9ayY2OAkk2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qbi9A7Q3IKmqD9kFM2aOFakcyBPB/YxrxZafbHpaVVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:52"]},"IP":{"Case":"Some","Fields":["188.68.34.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rastanet"]},"Identity":{"Case":"Some","Fields":["R2wyG0+xBwXf3b+AkXerX7veLNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PAsm5V2POSBQMrH77rwdFbzFur0BdoZp44Wh5asch14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:00"]},"IP":{"Case":"Some","Fields":["85.0.125.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["R1+9iflufaxit7eWe0gUpqcCQQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QpFR9ZgP4z312SNbW+d7p7kmJv9bbmBxSozM3PM2CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:40"]},"IP":{"Case":"Some","Fields":["70.44.88.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RepusRelay"]},"Identity":{"Case":"Some","Fields":["R1QsxLXjiZcJcVDEdU4X0kP2/wM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PEnYO4woM7fJ6mryZ/RnZXm/7BFMH9ONT6NLvoyJHTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:15"]},"IP":{"Case":"Some","Fields":["190.45.250.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["R0vo+ORnxbuWuKDvTI4j1oF9Ngs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jd+MsGenmDpGrRFgdGlNFMCUv40DMHMZm88Pp9uf18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:45"]},"IP":{"Case":"Some","Fields":["186.7.78.249"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllHailEdSnowden"]},"Identity":{"Case":"Some","Fields":["R0qwFMKEgDqWBPGJd30gysES4c0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t1uUgm9qWuFO4RHQjE/jbSxVFOQKxtgNu9HUNTGZSCg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:22"]},"IP":{"Case":"Some","Fields":["192.18.128.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode3"]},"Identity":{"Case":"Some","Fields":["R0WssWI0OF7xaU1TDhCfelc+MMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PyLLThAqRQL6zE4sO2mMxs/sDaLh0f7u00ePkJk8S54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:31"]},"IP":{"Case":"Some","Fields":["89.58.4.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:d48:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mclabs"]},"Identity":{"Case":"Some","Fields":["RyxBVfbh7QZ3Ud9EeLmRSHOT6Ts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nnFLBS9OCXz4pKbHnKkjztdHoRDV1F9f6gUG9gIkk5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:25"]},"IP":{"Case":"Some","Fields":["219.100.161.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9020]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElRelayoReturns"]},"Identity":{"Case":"Some","Fields":["RyUTMR4EEQqe9q8E5q2xqhzcM7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q5top2LnSeJm5T4o6hCm9Ejpay+j4DcaBgNEqexWSac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:15"]},"IP":{"Case":"Some","Fields":["69.164.205.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:92ff:fe25:5835]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TuxFury"]},"Identity":{"Case":"Some","Fields":["RyGvq9vilRKkepmOaDo+6s0URqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UDwyDpfbqMhk+CrKnlGYXx7y9sxxph3oE1SoYlg7T0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:51"]},"IP":{"Case":"Some","Fields":["93.212.36.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crivit1955"]},"Identity":{"Case":"Some","Fields":["RxhPP1wroDmcBr25ve+tiVDM9PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6J9Qi7h3HVcgRZ6Sbev54TJL8WZOKwWY0P1HZw56zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:54"]},"IP":{"Case":"Some","Fields":["86.17.181.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChomelesDEionos"]},"Identity":{"Case":"Some","Fields":["RxdepcG4MK1y8u0UwIm0Q3WDduE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VTbyoWEn/E6F3uGIiwQRRwlYzAGoMqs62TwMUN44FXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:20"]},"IP":{"Case":"Some","Fields":["93.90.200.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:374::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["runesandrelics"]},"Identity":{"Case":"Some","Fields":["Rvn7lDkXhY9hjyZIWV3qzZMdRAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qmzo5x7pxIa6rOUOils3H2iczYWWe3x3JmY6HZlu7rM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:59"]},"IP":{"Case":"Some","Fields":["54.36.108.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow010"]},"Identity":{"Case":"Some","Fields":["RvkO86NijBNNu0ZU0OT/frkUtpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kzJyNjrX6ebz7V0Rf4C0I6QaH4awz/UmYyewbRgrTTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:11"]},"IP":{"Case":"Some","Fields":["185.195.71.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ukraine496"]},"Identity":{"Case":"Some","Fields":["Ru6QwmDIGfIZvNi/DLRWc8jCpvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ODoeYaf/AWtsrEI9HVNumsNbDEe2Fe9XTuzCNkUs/mU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:45"]},"IP":{"Case":"Some","Fields":["107.152.217.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH100"]},"Identity":{"Case":"Some","Fields":["RuBIfu79aUzmJcxuEtAyOVwB24I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nplw/MysOMXrBXnzpFPkDjFDafMzPAqSP1iy1znXkII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:22"]},"IP":{"Case":"Some","Fields":["51.15.150.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mickymouse"]},"Identity":{"Case":"Some","Fields":["RtsEMjSZ3VNZVlMd8r97A+sqsV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N3J23FcFfvv2eVdGBWBWvAtyMCSckCNVTtud56ymBVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:40"]},"IP":{"Case":"Some","Fields":["46.4.103.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:94d6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bad10"]},"Identity":{"Case":"Some","Fields":["RrxlW3RgIw373C9HVMFjbsMlwZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3d6Pe7tUypV8IWS0XCT9LqmXrehQiYZct52zZggZ8gU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:09"]},"IP":{"Case":"Some","Fields":["69.144.171.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SORGaming"]},"Identity":{"Case":"Some","Fields":["RrrMzkvDyqY9L+dw2irjz0AbnPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FBCiJ5gKjl90dMXqvpo+1vJcwClApSwKVuVSb0KkLSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:50"]},"IP":{"Case":"Some","Fields":["95.217.83.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackbanana"]},"Identity":{"Case":"Some","Fields":["RqHo6cB012K+iWvhTFDksl/Vqck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+z/Z1tH6FZqMTOX2euWv7QErfDuPvAg1qsY8FvSRD9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:29"]},"IP":{"Case":"Some","Fields":["185.130.45.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:3:124::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JacksCluster"]},"Identity":{"Case":"Some","Fields":["RpItl41oJy+ZNEr94OKX13LriQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3NzuPEchwUmi+FVoMOJM9JUgfnsHDmutPRHuz2hWXks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:43"]},"IP":{"Case":"Some","Fields":["91.64.46.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9228]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DjMiddle"]},"Identity":{"Case":"Some","Fields":["Rn10F/+mEbwgIn/jR0lM5fYSGPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yoIx+6jWa2OxGN9u23z+YatIBeomiWgbo4jaKBqX44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:10"]},"IP":{"Case":"Some","Fields":["173.249.57.253"]},"OnionRouterPort":{"Case":"Some","Fields":[433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:8283::1]:433"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp2"]},"Identity":{"Case":"Some","Fields":["Rnn4Z2GOZmZ2LdWGrz8JjOzQHA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4YSIThs5R8ZvUckUDfb/Q/3qCFN5efxjzrLw5gQSIG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:14"]},"IP":{"Case":"Some","Fields":["185.220.103.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex58"]},"Identity":{"Case":"Some","Fields":["RnOpdB0rfPNnzjps6Qww4YIKr54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["42OMsiLkgmOjWSfzltcPnMzhlyQrBzt1DQ29ke+rpgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::147]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alzey"]},"Identity":{"Case":"Some","Fields":["RnNmFsWoldY2yT75+KKJw7yT7lM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q8M1/FVlHJi4gwBL3M6Q5dVs3Xv3Y9gleNBpQRoB3Uc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:40"]},"IP":{"Case":"Some","Fields":["89.249.65.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SleepyFoxgirl"]},"Identity":{"Case":"Some","Fields":["Rm8GAz7UOg9qqP1oxkfWeceGo38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQVKYJbxwGWn0l9qYH45Qkc8sHq/TERiHmwTn0pFevg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:02"]},"IP":{"Case":"Some","Fields":["109.164.34.111"]},"OnionRouterPort":{"Case":"Some","Fields":[6901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackwidow"]},"Identity":{"Case":"Some","Fields":["RmBY34fEXv7PB73J2CP/Eu17aJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8DoDkxBcB/HCega11rihsAa36+9hp0rC2JY/N6yIyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:59"]},"IP":{"Case":"Some","Fields":["62.67.28.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay14L"]},"Identity":{"Case":"Some","Fields":["Rl0XxvwpfjhXtcbxUgBqHiEpROo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Sw3KYt8J3iPTUZ00tHxLaMQDs2Bq+T7cVjYmGTX7FM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:14"]},"IP":{"Case":"Some","Fields":["195.123.245.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9403::86]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TVORrelay04"]},"Identity":{"Case":"Some","Fields":["RlkoETLD0Mn6VOxoclB8oAkqTcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ER7XBatAng93MglhwZOq0Q4H5UyqN9eFHCNlOOPZiFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:56"]},"IP":{"Case":"Some","Fields":["71.171.118.93"]},"OnionRouterPort":{"Case":"Some","Fields":[8902]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowexperience"]},"Identity":{"Case":"Some","Fields":["RjpLRAzFu1JM5v2Ie5avJnlDfPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SFtvegLCVSit5feB0d/LscEapFJ9WYUSh/XYLraG30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:17"]},"IP":{"Case":"Some","Fields":["77.83.198.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["RjDkp9CKvmEdrl/loUQRy2bm69E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G0Akw2Nb667VhyW7xXQUbXzWevGDpxdAeRCnQHYPfVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:56"]},"IP":{"Case":"Some","Fields":["23.128.248.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::221]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ceres"]},"Identity":{"Case":"Some","Fields":["Ri9Jg9+/tOVXcGhDCTybSXoj35I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+9u6zYkuWCW7wIZ18sYxoHEV0v9N6TtxzhE+NcIppk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:00"]},"IP":{"Case":"Some","Fields":["45.79.70.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:fee7:ec0e]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["gnosti"]},"Identity":{"Case":"Some","Fields":["RixMlxcN6U8lGkb0x0EDKGStG/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZ8cUlAM5RiBb3Syd9QRqutn3ZJ1LPRbC4PkAVfpsDY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:52"]},"IP":{"Case":"Some","Fields":["193.63.58.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoustonTexas4Torcom"]},"Identity":{"Case":"Some","Fields":["RiXzhcpTZM3WPHkYk5c7DK1JxOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ig2X+J96BAj+mna3v1EiQJ6bYfL7Y+Cbno2/3hGBrXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:06"]},"IP":{"Case":"Some","Fields":["144.172.118.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:1b8::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cotopaxi"]},"Identity":{"Case":"Some","Fields":["RiOp7FO/2DFVkp5W1ve1W15xjCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DKfcXqMEy1edEni7evxDiPKTpUDnCLQ2NLflirGyfV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:09"]},"IP":{"Case":"Some","Fields":["163.172.157.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["RhlBDjo7oah6wglsQGnauAU/eC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N7nvsS2FzDqiWVkneVIAuyl/4xLTi7MvuJ6vRQxJvoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:42"]},"IP":{"Case":"Some","Fields":["195.90.208.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:86::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx2"]},"Identity":{"Case":"Some","Fields":["Rg5biCdwwZdhvFdHVBkT2yrQHjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7FBiFUihsuWIcK7HaZo/6bmm+k+J3MP1rWnsTHBgNlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:34"]},"IP":{"Case":"Some","Fields":["158.69.63.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::34b0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NSDPopeye"]},"Identity":{"Case":"Some","Fields":["Rgy3KhGllI/d3gMmA92+uDevZiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IIxfyFQyW8rYIRDwIqan8GrbwRgqbs+G+g8Pi7Kp4UI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:51"]},"IP":{"Case":"Some","Fields":["45.79.177.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:fa::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["inboundystopia"]},"Identity":{"Case":"Some","Fields":["RgUAetWfl/E4xAHcCv6D/O2v77o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WOFIGCPBh+nEKf7E88leng0fe8p2TlDFYTJDoXjjjXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:23"]},"IP":{"Case":"Some","Fields":["23.229.2.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv17"]},"Identity":{"Case":"Some","Fields":["RgG3CWx2b8YpveN5UGqeQH9rDrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CIWI0I9XYxKD6xLJP2naV/VcLuOMsUK7D8gLi0F0QT0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:07"]},"IP":{"Case":"Some","Fields":["162.248.163.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apx1"]},"Identity":{"Case":"Some","Fields":["RekkCtTs4BeToZd8EmBQOywshh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/EzXgtXsFZUzQxuG6zgdw15A+HBq0GFj1goyc0SUyIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:51"]},"IP":{"Case":"Some","Fields":["185.107.47.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.5-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TotorBEx"]},"Identity":{"Case":"Some","Fields":["Rd+rnhvWXe8ybODLMA5sb0EKZ/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h8+ovdO2dXdLeRJZwx5G2BbFl3s+yuKkd50K4rBVfV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:59"]},"IP":{"Case":"Some","Fields":["82.212.170.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feuermagier"]},"Identity":{"Case":"Some","Fields":["RdjB7v8EQEOqaAbEuRMPjxie8xY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrQzSBXHCUASwt7EHFCWMXqCRw065cOlRSrRdpAFYWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:47"]},"IP":{"Case":"Some","Fields":["213.149.82.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:2488:4211:3400::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORPEDO"]},"Identity":{"Case":"Some","Fields":["RdZ+2/4KYfl4TzSojabV4Tw5d4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iU2Rs+ReNPmJIbol0TIy3GSE5bMLqAbRQSXUU11exHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:25"]},"IP":{"Case":"Some","Fields":["77.250.227.202"]},"OnionRouterPort":{"Case":"Some","Fields":[16357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit10"]},"Identity":{"Case":"Some","Fields":["RdJ21qUdrlxvOaZV7OZH3eqfrvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6rbIygIQM5oc81tkWARG4SmgFjp2X/6Gm8DfL2mjK9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:27"]},"IP":{"Case":"Some","Fields":["185.129.61.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perseverance"]},"Identity":{"Case":"Some","Fields":["Rby+LunJaxKZdaQsTihPS0wtFwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cC0QnIPspqi+gMXONaCqOCekl9rd+oagY/dvaWmOSr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:22"]},"IP":{"Case":"Some","Fields":["87.236.195.216"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snoopy"]},"Identity":{"Case":"Some","Fields":["RaUoZFS6VT+s9Wz0rl9MxtLQlbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K+Btk4HehrYSbkZSSRlixMewrPL6ET+6oC9bsto/yXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:55"]},"IP":{"Case":"Some","Fields":["81.221.150.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:26:58:ae9e:17ff:feec:6276]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arael"]},"Identity":{"Case":"Some","Fields":["RY4muau/Tg4372qm/RuwKVPvT7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["onTniIRXIEKpf+ZPafk5OuQuXF1sLoBBsTKpEYHwZNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:02"]},"IP":{"Case":"Some","Fields":["217.160.240.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:8341::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber64"]},"Identity":{"Case":"Some","Fields":["RYnvg5N+MDxPTAhREvcwYasjoZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J4zbr0Kn6dmGmdjfgSyVWfrCTpjvPOsA0WMQZj3pEp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:13"]},"IP":{"Case":"Some","Fields":["185.220.101.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chonk"]},"Identity":{"Case":"Some","Fields":["RWH8CFw/OnJx/pYDF/AtzR6cEYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RYGi975o4PzzZHiaFvYQiC6pdnNznMmx0iSw9D46JMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:05"]},"IP":{"Case":"Some","Fields":["66.206.0.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedEFF"]},"Identity":{"Case":"Some","Fields":["RV9XkQ7JKQQcYOQxHiY1KYvc1gQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ClRY+rhT9ykU0Ctaio0icv0HMBrXFU61/7bcjmWjivg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:01"]},"IP":{"Case":"Some","Fields":["23.154.177.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza1"]},"Identity":{"Case":"Some","Fields":["RVRp0cYQ5DSY7PiOg+KcCmlO9zs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hriZUFzg3K1fYO2LAwD2uGFkQc/tmZiZyxF3Fn9JhPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:18"]},"IP":{"Case":"Some","Fields":["152.67.112.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andorra"]},"Identity":{"Case":"Some","Fields":["RVJ4W6ymCrB1DwLjUl4riCDAKhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J3fp9L6FJ8gWwt8927ZAOxiOM0How7wAD1sT5jfOSj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:23"]},"IP":{"Case":"Some","Fields":["23.88.75.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FinishLine"]},"Identity":{"Case":"Some","Fields":["RT7hLX5z+ZNbkyZwCRytA9kcAG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Op9//6FaI16mttKqGvfzVN7faqUs3leMZn3ijvPy0Kc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:54"]},"IP":{"Case":"Some","Fields":["45.35.33.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gepg"]},"Identity":{"Case":"Some","Fields":["RT1pu4CfxZ7QytXYOZwnvAbetCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fttIraiUD6m+kPVOeoN5y6jboWRVlPxeDA8cgC9bpng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:07"]},"IP":{"Case":"Some","Fields":["109.250.97.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryonoxnet"]},"Identity":{"Case":"Some","Fields":["RRwUSjWq1Hr5H84wIbS5gvaBEzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aXVlhJJUcV0oj4QRt3DpJ8JqPXHPIWJS4AONrySlxT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:18"]},"IP":{"Case":"Some","Fields":["45.33.124.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AomoriDevRel1"]},"Identity":{"Case":"Some","Fields":["RRrULtslmLBq+HQD1vojvKFlv18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KqL4AQ7w1BsRWG2vL+/wl8X2zAzjcrSG++U4Vi5WBxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:05"]},"IP":{"Case":"Some","Fields":["144.91.114.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:5548::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elects1"]},"Identity":{"Case":"Some","Fields":["RQwHKenuAXYJSDCuELNk6FcWhP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZ8LBVSmRXHTqJmEpkg08SUqKsTECKtcTAwIJYb9I68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:06"]},"IP":{"Case":"Some","Fields":["45.58.154.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pi"]},"Identity":{"Case":"Some","Fields":["RQfCWCy/4oc1eFmB8EXFQjI+rbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gAgU/oMR670aa8S0tTWYbVu61aN6Za84YnEwxXgUxoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:49"]},"IP":{"Case":"Some","Fields":["148.63.180.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["RQR8eOH157d1sKQvEY1O1kUE0J4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xpZbAa5upItLitFAfPR6PxPZktZLNe3Re6VgQ2ma1xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:28"]},"IP":{"Case":"Some","Fields":["168.138.150.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:c003:3511:1::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freedom"]},"Identity":{"Case":"Some","Fields":["RPsx0KLlZ+LVKsksa82lnQP1tE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d/Fu/pN+qv49jxALPWvyixZmqfn5GglRo1aBEDAQzaQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:29"]},"IP":{"Case":"Some","Fields":["95.111.243.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onze"]},"Identity":{"Case":"Some","Fields":["RPrR+yKG0WgOWj7s5QaRV3GfAx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ydtrWOdHnKcBxywy3VE3MR6DsW3Ifi5pH7U69YA8MkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:20"]},"IP":{"Case":"Some","Fields":["172.106.11.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["RPo2qDm6NesV8+xctfs1UjijKrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OTaIxXEFfvQvomEHQhdQAMuvjXj7DrorEHOLH0QOskI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:41"]},"IP":{"Case":"Some","Fields":["185.244.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:713:4489:4cff:feab:96fc]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kroell"]},"Identity":{"Case":"Some","Fields":["RN8QB7VFtNgFfyeQJeuzPPmb4ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPPzn3Sr/eJe7ZtAGZVF0cj/tfXRQRoV99xDDveFMG0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:13"]},"IP":{"Case":"Some","Fields":["80.241.214.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3001:7714::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crimsonshape4735"]},"Identity":{"Case":"Some","Fields":["RN2M7Yf9/vCxydvPJnP0tf1fbLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y6JjBgLG1ghv8DUTtTvZ8QHUeJCfa1qYdgdQqbnNmCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:40"]},"IP":{"Case":"Some","Fields":["69.164.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe73:c4e9]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["currentlane"]},"Identity":{"Case":"Some","Fields":["RNwjZh4F3v2UOYk22TNJh6vLbl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qg+IXXJ8GccR+2V+h81k7aFDOSyh2kLRmExCy/kOT0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:40"]},"IP":{"Case":"Some","Fields":["148.251.91.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:7144:c49d:e29a:d44a:c6ea]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["always1"]},"Identity":{"Case":"Some","Fields":["RNkmKVP/jTCqZjiplfK806L5+sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mf66DmQzpZm1Ptibd7pABsb0PODlLVJjY0vnl2pTptw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:29"]},"IP":{"Case":"Some","Fields":["119.59.110.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alejandria"]},"Identity":{"Case":"Some","Fields":["RNMGnJ7jserzzmsmhYHEUQyunVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+7isHFgOvVXRgsgEgWVqN7fLRv7wrc6BdxmqQqidMR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:38"]},"IP":{"Case":"Some","Fields":["161.97.167.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["light0in0the0dark"]},"Identity":{"Case":"Some","Fields":["RM6oSXdud+kEVgB9BfGN8wdz4nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5zYcdr/jpUbOWnjrxIOJlACZHcXFNqEOHm8iom9UJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:09"]},"IP":{"Case":"Some","Fields":["46.38.255.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:19:e6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortimerAtx2"]},"Identity":{"Case":"Some","Fields":["RL5JScyWYDzP0ptveRU99kHp7ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lm0lWGliFDQoZRtKYGCaddrk7c+UNCKj708/WXiOep0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:45"]},"IP":{"Case":"Some","Fields":["136.49.32.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["almukasirat"]},"Identity":{"Case":"Some","Fields":["RLTJQKhCHdfs454834yZCupOiA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ig0ugWn8uHQ4Bs0xBs882Ng1yk7dFhOGnPXgZX2Hbuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:50"]},"IP":{"Case":"Some","Fields":["46.165.221.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen2"]},"Identity":{"Case":"Some","Fields":["RI+CEQjtKapAjygWJfZr4dS8GfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c9WMpz3sCQ//vzBZ8PtDX57sjzTxRHTukozuVOEXz8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:31"]},"IP":{"Case":"Some","Fields":["37.138.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RoshkeAS212000"]},"Identity":{"Case":"Some","Fields":["RIw5+UlwVCMUWqZc5W8gQb0IZz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yC2mXg2Wh5Gw61EP9OFmLZDDkrm8U2LOHZrDK0+A6aE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:22"]},"IP":{"Case":"Some","Fields":["185.244.28.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beingthere2"]},"Identity":{"Case":"Some","Fields":["RIMJeGf2REUz6qotOLVHm+HzZBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vKVXxkeUm9XZRr9ShIi3Q0aLptfK6jlaHWSRDgEi+l0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:04"]},"IP":{"Case":"Some","Fields":["207.192.70.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["redback"]},"Identity":{"Case":"Some","Fields":["RH2W05j340CzHUY0fbaOf+g/ilo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uo59kEvPymsv0tOPEodxTcwj8TYqRdN7FJbr9oBdtHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:16"]},"IP":{"Case":"Some","Fields":["62.67.28.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bloreRelay"]},"Identity":{"Case":"Some","Fields":["RHuzPsTRf73e7ZtR2pvPbYLY6Zo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P3w2OOlipK+T1OokjmbSeI37NkTV47hyBEGCDzWdxj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:09"]},"IP":{"Case":"Some","Fields":["139.59.43.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["m0rix"]},"Identity":{"Case":"Some","Fields":["RHok80AsR3TYnnqtLYdtC/ZOMmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1vB573Tma5f1C/DgmGccF2jr/N0965KKf1KQZIPSTWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:48"]},"IP":{"Case":"Some","Fields":["91.132.145.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:76e:68f6:30ff:fe7c:a4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedLightDistrict"]},"Identity":{"Case":"Some","Fields":["RHMLJFAhO8Pi2qSFRFjRNPBkT/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["99uWDK0bu/nWN+RID/HeEegjaxrxbaQiv9XXvdQ2gdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:15"]},"IP":{"Case":"Some","Fields":["185.181.229.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["RG4WsA1RMdrJZDqxATazzRmx6bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QHeyx1ZGBqTrDTWLllAqNtsamiFQvLOsfiUydMy+wxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:07"]},"IP":{"Case":"Some","Fields":["185.194.142.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse07"]},"Identity":{"Case":"Some","Fields":["RGiYKFMszrm1mOHavb4ovYFVF+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["isMP8tBxejWHMjz06TyYmy8W6V4rg74V5VGjkR5gaYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:14"]},"IP":{"Case":"Some","Fields":["185.241.5.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim01"]},"Identity":{"Case":"Some","Fields":["RF2JHObHrD2A4e3KYfkh06bpHMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OfX1KQguHlGmLNBsQQZt2duqC1phzsw63k6hwFVqo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:27"]},"IP":{"Case":"Some","Fields":["24.134.234.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9029]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shakira"]},"Identity":{"Case":"Some","Fields":["RFF8ct0Mcgbitun+ORdAauivMZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["df1jYi41L9yysTLiZD8ai9wrkdk6uRDdFAQMO0fCtUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:39"]},"IP":{"Case":"Some","Fields":["217.115.127.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MonsterEdgeRangers"]},"Identity":{"Case":"Some","Fields":["RElrGMaDVq86WKytg1Qpw3uUMu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1+v2gklubthh/yl9LMUPCAJRbeqwJfiEjnmHGEG8Z5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:32"]},"IP":{"Case":"Some","Fields":["91.148.141.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ihatethedmv"]},"Identity":{"Case":"Some","Fields":["REd7TdWkw8fSsd2ATxxXg09RGGE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smAGLrGbzQ+udbSvpQ5W/Zaxucz+d9V4BUJrNvcAMHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:13"]},"IP":{"Case":"Some","Fields":["192.3.254.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["RD6Zo4vHoYzSmj4YTw6yotZTrVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jTgaYmmtbgKPm4iHGeuRKmNlrkgDKxjFMoILfOw5CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:01"]},"IP":{"Case":"Some","Fields":["148.251.150.177"]},"OnionRouterPort":{"Case":"Some","Fields":[48567]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomNode2"]},"Identity":{"Case":"Some","Fields":["RDHxbyVh5wMvNnT6wJPPXFxQav8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6coAfZIyrmlIW4pT2fc5VvhuurGn+OQZiWmkDJAWcSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:46:48"]},"IP":{"Case":"Some","Fields":["116.203.211.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:cce3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kelvium"]},"Identity":{"Case":"Some","Fields":["RA1TlMsyWxLugkppYkWSgmWJAZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8GqmCvH4zekpx+ZLrD2YR4m8Xjhyp2BQUGDI5AqTIuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:59"]},"IP":{"Case":"Some","Fields":["141.144.233.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:2c8b:778d:d814:f249:a1a5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyFirstTestRelay"]},"Identity":{"Case":"Some","Fields":["RAoh5QduNeJyN4akW+i0QKlAngs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bN/TmwdRidb1aWapF9PKidH6gbIzX1WnyRH+xP2WR9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:09"]},"IP":{"Case":"Some","Fields":["205.185.115.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dummyRelayWeibsvolk"]},"Identity":{"Case":"Some","Fields":["RAMlhVY3AmDlPN8Lz7ghEhx/eI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6KTitJlJVwXodul++877JJGjJ9ov3jOISXJrfk36oXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:18"]},"IP":{"Case":"Some","Fields":["31.18.188.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc06"]},"Identity":{"Case":"Some","Fields":["Q/Ep7Pni0uoL/gSueBwvOKPRhaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rYrPp4gjSGMNi/wD4ZgDctsWqBI+RCc2EUeTALWFlLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:04"]},"IP":{"Case":"Some","Fields":["185.100.85.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Q+9RQaRBfQvxsKsq0sPXTCI1XQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8W/RuwQDXR26ntoH/4YHuK40SAgqd/1Qbw1T9L2S5JY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:08"]},"IP":{"Case":"Some","Fields":["88.208.226.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:5f::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra14"]},"Identity":{"Case":"Some","Fields":["Q+2EGSa12pSHAy14mjG150p1JeI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YVM4PMzv+1vQLFSd9Jmuv6+K19urTyc7oDpN5Q1W+Jg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:23"]},"IP":{"Case":"Some","Fields":["213.164.204.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeLoreanDynamite"]},"Identity":{"Case":"Some","Fields":["Q+iW02qrILW2MJS7xSytS1YOR78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aQVE8/KDPgbUCotnacnud5WT2YYLaobaTqBd/nlqcPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:56"]},"IP":{"Case":"Some","Fields":["82.69.47.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linode"]},"Identity":{"Case":"Some","Fields":["Q+GHuMc2H0fqlo7VOJQ1hl1/T+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jo6uqcOUoIjwuD/HwT9LqmHIAVV0vRHUtFITpTN2oxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:56"]},"IP":{"Case":"Some","Fields":["37.123.163.58"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:28fd:bb03:0:6c69:6e6f:6465]:53"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit6"]},"Identity":{"Case":"Some","Fields":["Q8n1wo6pChhYcn4qs4BhLqnNn0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+5pUqcVBmv4IUeuHiTynk6FrbHwfCVDSEUOuVQDy1/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:20"]},"IP":{"Case":"Some","Fields":["185.129.61.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer01b"]},"Identity":{"Case":"Some","Fields":["Q8St2PMYCtl9mQy+YRcX09wDf7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLCQLcwYrWcKx38LYdXRhghy/meWNqpVYXe8OVWdOig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:06"]},"IP":{"Case":"Some","Fields":["82.165.169.47"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra80"]},"Identity":{"Case":"Some","Fields":["Q7sUWosJCexUJzTqIwPU77rZfgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["As7hjKmpHXZ/wRBxhC6fN8kvCytZoCmDt0w8WaEUKSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:25"]},"IP":{"Case":"Some","Fields":["107.189.2.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DieYouRebelScum1"]},"Identity":{"Case":"Some","Fields":["Q68kBxtACRFinVvJ/CDeM1+d/AA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTT1oB3x0/wPtYw/vAspmOZfAhpf9ri/nsSk6T8vIlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:07"]},"IP":{"Case":"Some","Fields":["161.53.160.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9091]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrentor"]},"Identity":{"Case":"Some","Fields":["Q60zdnNbSiJ5IK0G0tm2lws8dd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ecmOqRVr/uL8g7J8MCCLRbAkyTs58/rFJTw3uiuc5lM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:40"]},"IP":{"Case":"Some","Fields":["78.94.74.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tallinn21"]},"Identity":{"Case":"Some","Fields":["Q5zRL4fOtJbSYBtdwf9Rhr2awtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyGrhvl4yrDgvstlU8L2AMPym9PkuYSL/QuUQUMdtbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:43"]},"IP":{"Case":"Some","Fields":["129.151.246.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Q5u0ks0kJHXL6G3XB4Jm53Zfwwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ss9RZOEsZlYxlulTUbnUuwCPn2v7OrBVAbHXm/coakY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:03"]},"IP":{"Case":"Some","Fields":["146.70.86.74"]},"OnionRouterPort":{"Case":"Some","Fields":[28093]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demie21"]},"Identity":{"Case":"Some","Fields":["Q5GdgR206vxeOsYidBY2JQEufZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+yTj5s6rtz9zskApxBUYsamztr2vdvrogcg6VrglHxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:05"]},"IP":{"Case":"Some","Fields":["95.118.87.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["dolemite"]},"Identity":{"Case":"Some","Fields":["Q48+pMn7DbY/U3ejJxq1Q1+tfgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X9r+b2fFSLsli0LI4iOM4pUtXJws9toAFRP61YuPwEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:32"]},"IP":{"Case":"Some","Fields":["193.108.117.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission10"]},"Identity":{"Case":"Some","Fields":["Q43JtrXFN10zK7M41+XBue9EiWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ptEhyVZzOiV/9onucYOxt8hfLQ9KiqifZTakhNhVltY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:33"]},"IP":{"Case":"Some","Fields":["54.38.219.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WarheadRelay"]},"Identity":{"Case":"Some","Fields":["Q4cxuO/tseWSyANJNKVfUy3quqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oDFNaeoTTAz53ri67ueeqh95V7Saio6AYmE9u7ten9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:35"]},"IP":{"Case":"Some","Fields":["142.93.228.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:f0::1bc:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4iphb"]},"Identity":{"Case":"Some","Fields":["Q4Hkcek1iuTYFQITAsfy4WUCvuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqfRBRUjBAJYsGFzznrqmt/2hN2qdtd+cyYQKyECcSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:12"]},"IP":{"Case":"Some","Fields":["185.220.102.247"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::247]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionsMakeMeCry"]},"Identity":{"Case":"Some","Fields":["Q3xT185qhmlLvVa39XBhfBzEdBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bfKOOf4JjNVPhqf9wDm17rCqLYIZ3mI/XvWv+B9LNTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:15"]},"IP":{"Case":"Some","Fields":["83.135.203.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MontAnAs"]},"Identity":{"Case":"Some","Fields":["Q17hA7TneYJp9Kr7SDmdutb5qek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqhL2bJ++s1A29mdQEDQbJ1BArZU3F6Ak3kKPIA86NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:44"]},"IP":{"Case":"Some","Fields":["131.153.152.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Q06h+5C/45fOrcIv15qWXG2EuwE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["19rKc4//f/e3CdO322W3nBAf9JgKJa7dCvthYzKYh5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:22"]},"IP":{"Case":"Some","Fields":["96.255.214.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Q0I968oljyAx7vPYrBwjKCRBSsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nmw9c3Tq0LEEdKL6GkicPssc6ViUf282xwDwtem0ljg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:10"]},"IP":{"Case":"Some","Fields":["46.38.236.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kgXuCTCWVMALFMb74Ld"]},"Identity":{"Case":"Some","Fields":["QzjIAm1Gi4EdPrEa6eQh4gibgjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y4yZYd9RHUNFZ/RtY+49Pg3xX7G17EOnNN/uRdXIm78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:20"]},"IP":{"Case":"Some","Fields":["68.67.32.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QzdpTjaA147271ZUUFe3UYC4zso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k8GBFwEuX8CWKPNk+Uu6gXc5eVqgKZyd1rhWgBQzqQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:43"]},"IP":{"Case":"Some","Fields":["62.149.2.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:6300:0:be9::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["layz"]},"Identity":{"Case":"Some","Fields":["Qy2cgTeP9U5QYAqPP2HhBMt3l40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3QH41gSDM0gjtDM4iwgBMIwDFljKe0ZY9tpgiGX9IUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:04"]},"IP":{"Case":"Some","Fields":["161.97.184.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SergalBig1"]},"Identity":{"Case":"Some","Fields":["Qyz7I4+/h4LBNdD16/46NEFgriQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/md/lvDw0FaTLLha389aghkgYmiX2WIyx9DclhgJB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:08"]},"IP":{"Case":"Some","Fields":["104.188.187.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0174"]},"Identity":{"Case":"Some","Fields":["QynGGbfqJ0pqn2EN0ihjx+FjR1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pndGyoCn2PAyJHKgDxEOe8xzlIZHonInXSqlu+G38j0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:29"]},"IP":{"Case":"Some","Fields":["185.220.101.174"]},"OnionRouterPort":{"Case":"Some","Fields":[10174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::174]:20174"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN5"]},"Identity":{"Case":"Some","Fields":["QyCfbVDGV6Vv55rwHKafnvGb0zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LfXOpmGfZqIHrEPiXc08kefkKhBBApEpTSTv4oX3pOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:15"]},"IP":{"Case":"Some","Fields":["199.249.230.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::116]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataSmuggler"]},"Identity":{"Case":"Some","Fields":["QxfLG+0MYJCr67RUQKBArWg4PKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d413dQvkqyMgmST8h3pctp0lz4ksBtZCdNXnLmOlkp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:07"]},"IP":{"Case":"Some","Fields":["139.162.191.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe9b:84b6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bituman"]},"Identity":{"Case":"Some","Fields":["QxcCs6aKYBX5lV3U/QEpF1tD6g8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ack7R/cKL8MtvduX35ga1Xv63TPOSLnNFsZlQS34l4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:22"]},"IP":{"Case":"Some","Fields":["45.132.246.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:48:182:74dd:c1ff:fea8:d21e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex57"]},"Identity":{"Case":"Some","Fields":["QxaGbVeLBtx5coiDyOXJYJ+DEdg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rAlTZhqa0euOV5Br5tt8y5YufQpqbuvZA3w/FSjCQn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::146]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH109"]},"Identity":{"Case":"Some","Fields":["QxVQAF7lK6gsqzqJDgfo6RrVob8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1tWUkRkR7KgX50r7pLPputY1FazPTSGZqvWxWkieqhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:46"]},"IP":{"Case":"Some","Fields":["192.42.116.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theaggressivecrown"]},"Identity":{"Case":"Some","Fields":["QxUpsn++1YF8aaIEuzypWjB+IkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SLJr6YRKgauTDAaEa+0q4QZo+fj6rwrdomae65uxnoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:50"]},"IP":{"Case":"Some","Fields":["185.124.240.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRandomNodeWw"]},"Identity":{"Case":"Some","Fields":["QxHbb8P9V/TRadrtgfZnWEuBduo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sXpWazKBLqTYoSTclRVbJrBzcrclmDz/3OZVHzfQ/3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:00"]},"IP":{"Case":"Some","Fields":["212.51.143.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8057]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Isidore"]},"Identity":{"Case":"Some","Fields":["QwZyzXFi+oirSdiRw4VneZ80YzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GRf2jo22D2FLW3GkE0J3advNs5Pr7ze+r1SxTxD2ExY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:19"]},"IP":{"Case":"Some","Fields":["52.214.94.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["QwKNAHHeBVGA2qgt4gC0L9ITHCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PSjfU52BxcaF7bhHUDa/NxqKvmyx2WZkeaEwLfNkCdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:45"]},"IP":{"Case":"Some","Fields":["185.220.101.209"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::209]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC2"]},"Identity":{"Case":"Some","Fields":["QvjnzoZEeMopLp6gXcEUgcKT+O0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqbprdAarVeX1Mp6sevthn32+oeC+kt5mA1C1Txn1KY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:22"]},"IP":{"Case":"Some","Fields":["204.85.191.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute10"]},"Identity":{"Case":"Some","Fields":["Qu2R3Tdo9qKhlNCUp0Msvo2gBLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/9SqlOTk5BAYK/xpYZGA2q+bUImHYbptYJpbzAxGyMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:22"]},"IP":{"Case":"Some","Fields":["162.247.73.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arecoque2"]},"Identity":{"Case":"Some","Fields":["QugXvgerOco716RCrwjgB/8uP1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FNBX1TyLIpyIgP7DzcqSJRSW9ChphxRpXrLlr3bG6lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["80.67.167.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:e701:1198::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poussin"]},"Identity":{"Case":"Some","Fields":["QtWDNTgbybuMntmNOQEJ63Tby8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSU3iuZZJLWADo6macnAFxE6h21jrlCZedeAqlVTqXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:39"]},"IP":{"Case":"Some","Fields":["213.169.148.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0131"]},"Identity":{"Case":"Some","Fields":["Qs/wyq9+tehrNY2wR9z+U7ZIVus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["czSrbJdBdjv9DqxzfRPXUP7a+oVTyjbRsyxQBIlgpPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.220.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[10131]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::131]:20131"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["QsUUoXnciZ6ZUZTF4XC5KHlPKj8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M5JaTQeDNVam2iPDAKjfBIgRfRSZSyplxB26EuVA/fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:42"]},"IP":{"Case":"Some","Fields":["23.128.248.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::224]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["node001sln"]},"Identity":{"Case":"Some","Fields":["Qr8zs86/btkaaiZ4GMxz1+mI8x8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqjfeJh1JzRRMk3W6IaAquRGVbey8s7qEBEO1p4crUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:04"]},"IP":{"Case":"Some","Fields":["62.210.116.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ENiGMA"]},"Identity":{"Case":"Some","Fields":["QrT1LFsR5NOYVfZUlVQlsNWgWYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YonHv6BLDqhry5z2PLI2vospdO86b5l3LWYLSF+bCHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:34"]},"IP":{"Case":"Some","Fields":["5.9.121.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ckaket2"]},"Identity":{"Case":"Some","Fields":["Qq7gJOtgzojlimVibb5FxcPu0j4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WdvFOlLp2syRhfhaApA9/qwH1cpBqwEmNLFgR4EJcEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:21"]},"IP":{"Case":"Some","Fields":["213.109.192.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:2::dcb3:f9ca]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["QqlVsJpOMn+/tGoI9uIXBSccyhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9iZTFoX2M0u9bwAx/EFvxKFOJhIrrmGMqghKAfWLdm8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:54"]},"IP":{"Case":"Some","Fields":["45.136.31.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:5ce:5445:3ff:fe6f:c7c3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["router"]},"Identity":{"Case":"Some","Fields":["QqjDrsr9A/AkLQn6LAIq7YSb+TM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le9AC8xd+Vcmk3uUv4/iU6+SA6QeRqTjasQgATj9UtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:54"]},"IP":{"Case":"Some","Fields":["80.110.35.15"]},"OnionRouterPort":{"Case":"Some","Fields":[55443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoySauceR"]},"Identity":{"Case":"Some","Fields":["QqUf/3qyovOWy5JLVmdvCby1IkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ovnLIA4A68Sqyz7vUYVpStEp5ntn//Mvx/LCSwvHSs0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:17"]},"IP":{"Case":"Some","Fields":["157.90.38.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Qols9pmg6dKLaQkBkltBDrItlKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fp6St01k9nAUO3ur1V+IMxiOpq8eCjciimClZj8WxnE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:52"]},"IP":{"Case":"Some","Fields":["185.220.101.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::195]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["QoIf8KuJYyFeFb+/pW9iJApIWLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/u0WAdgDIuF3HtPPLpHNB+TzmK2PFX8xjxoqh9grgRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:49"]},"IP":{"Case":"Some","Fields":["91.211.91.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra28"]},"Identity":{"Case":"Some","Fields":["QnlW4/I+66MZVMsJQq6g7NQ6AEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IEB+cFVq6XnvkLJsLWFkEO3dc4vma7mLzE0zi7IqsBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:46"]},"IP":{"Case":"Some","Fields":["107.189.10.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow000"]},"Identity":{"Case":"Some","Fields":["QnPm0WLtJxehz0IHolQATNP1MHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZzQU50KRwAGRPikhagNEsmAf/rhAVCeDoiCDQVTV4Qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:26"]},"IP":{"Case":"Some","Fields":["185.195.71.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["QnCKEoklBuvNiBvLNkjnjZPcJ4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fABFPV7Txvu5suwZk+mlVErOEqDz3H2ScfRa10lTdJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:22"]},"IP":{"Case":"Some","Fields":["185.207.106.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seyfahni"]},"Identity":{"Case":"Some","Fields":["Qlye/cq0nprrjf0ga6uD4yEfAOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wGsMz/0zSUvpvaqAKlZuiu0dzmCh7lwuplkxgEpjKpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:44"]},"IP":{"Case":"Some","Fields":["94.16.112.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:743:e896:beff:feef:1f97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Baritius"]},"Identity":{"Case":"Some","Fields":["QlYpLNH38e5hxRzqL434Esy3pqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZIlhytRE16ICd4+kxqKq4lqVwikoWcbcWnRE2KyTPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:28"]},"IP":{"Case":"Some","Fields":["51.77.109.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thetrip"]},"Identity":{"Case":"Some","Fields":["Qk+cgKJYQ6LmDtrM0wktMdMA/XQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VKjRNJLBvrIqChgvMWyC6qrBKx6RWNl22KzDQdRaOJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:23"]},"IP":{"Case":"Some","Fields":["202.61.255.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:55:d21::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes2"]},"Identity":{"Case":"Some","Fields":["Qkv4aSfoDZFlibsSJIvUaLtHBoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hux4h7ZVoY7doFEKv0CVdD+pr2AUvxE+QHOWXFEZtCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:25"]},"IP":{"Case":"Some","Fields":["217.12.221.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashSloth"]},"Identity":{"Case":"Some","Fields":["QkNHRvlgkg9Di/tPSsNeXIo6f8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tAUvFiRw0Bi6k+YdHrnekQFeZif58mDG8GKrc/OCVZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:21"]},"IP":{"Case":"Some","Fields":["198.46.190.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["h18"]},"Identity":{"Case":"Some","Fields":["QkE0jSoq6t4+6H6YgBqqsk6ibzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qrGJHBRBo7RZRYnUlchrH450mhPpxG+Vn94cDxi4DDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:16"]},"IP":{"Case":"Some","Fields":["87.62.99.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9232]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EndWarinUkraine"]},"Identity":{"Case":"Some","Fields":["Qjn/ROYxxaCI7fPfP6u6JOKC11w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kcWrICZBmV5e1InRc2rAQIvhzmaMxyFK7YtLFYpPfTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:10"]},"IP":{"Case":"Some","Fields":["51.222.53.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowedinn"]},"Identity":{"Case":"Some","Fields":["Qil3GrwubeMpeiUZEqnpFrme/IM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hZTR4TkupsiZR2/T9qz93dQ5YcPid9nZzu9o7E+2y3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:47"]},"IP":{"Case":"Some","Fields":["5.255.104.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wollwoll"]},"Identity":{"Case":"Some","Fields":["QiCsbrd8N4tb/DukE0b5c+nmEH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/TrALSZRxMEyuosRjt0vVlCn2XodM+DYRSAt6E3mT9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:17"]},"IP":{"Case":"Some","Fields":["86.59.21.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:858:6:2001::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notgoodatmath"]},"Identity":{"Case":"Some","Fields":["QhYr0NndAXXrgD85IKh8tVJi/zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t+77qQCf38kOkaiHk4cCiBAKoMJW4zxKlClzNowrKMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:30"]},"IP":{"Case":"Some","Fields":["135.148.53.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer69"]},"Identity":{"Case":"Some","Fields":["QhH+aqOZHP2c0cyJe9CcLPc88fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9QgK1vxhW5vt2u/vIAdntcadmJGioidPO1prn1OT+YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:44"]},"IP":{"Case":"Some","Fields":["185.16.38.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8269]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BASIS"]},"Identity":{"Case":"Some","Fields":["Qg/LYyJSBHVh18P2MkH6Qh9l0Uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy6TFKAZhZRuNGngyeZ2B4DDoF1oOTctx0QY+QTAVVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:32"]},"IP":{"Case":"Some","Fields":["45.125.65.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pozon"]},"Identity":{"Case":"Some","Fields":["QgjHGFQi9kqw0xPP5aiohrstc/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIMj6k6szsVJu3lymCs4X3Nf+zh+ZUwXUTbxmCLiZCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:01"]},"IP":{"Case":"Some","Fields":["147.135.16.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masters1"]},"Identity":{"Case":"Some","Fields":["QgaaUYPPUlrv9zehzJX2kzE4GkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6dsVxw+OIR1SEceXdwqPT7h+y9CJAIze92bedh9gyE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:31"]},"IP":{"Case":"Some","Fields":["45.58.152.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SIS"]},"Identity":{"Case":"Some","Fields":["QgVeOpAwtA5qLWXh9LxE9Rh4ArU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLRvEjbdkmYWVOr/j/PBWWZm1Okmom4mH9Qs6+lbYc4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:11"]},"IP":{"Case":"Some","Fields":["208.92.194.252"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[995]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Qf9KgpAn/9yjLMI9MNpJKrfh7TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kJXxb9/PlGRc/qquyoNfLGCfFQr7Mh8153sUcu3YcjQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:53"]},"IP":{"Case":"Some","Fields":["45.86.86.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RNVR217"]},"Identity":{"Case":"Some","Fields":["Qe7Ez6AeiYJkPxrzzYQxUynStY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KUZYb2kNuUzDTpLHPMCBvNpU3eIFWM6Vlf0rf0h5Xbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:41"]},"IP":{"Case":"Some","Fields":["95.211.147.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["Qe2Zbyng8SxfRn1nSDdTUEEm2DI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9FAkbK2Bm3eVvH3zwD5MSaxotTu8w8OWrE8vth3a7ZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:31"]},"IP":{"Case":"Some","Fields":["104.152.211.109"]},"OnionRouterPort":{"Case":"Some","Fields":[1000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeyBroM"]},"Identity":{"Case":"Some","Fields":["QeMZQH5nwAHYLlUjfmbmAEQic5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5itpZ3R/mLzr00O/YSNu0pcjsZCEU5HBGR1SfeePCRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:15"]},"IP":{"Case":"Some","Fields":["209.141.46.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["Qc1rkSLQCDOf2ZKc/wfthRircQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0zOQv7U1ePXFZ1qqHMCjVbA7DFWW3mx5K94Wg7x/SkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:55"]},"IP":{"Case":"Some","Fields":["212.192.246.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waxcs4edb69m7yh"]},"Identity":{"Case":"Some","Fields":["QcYrXH4aHxAS4w9sO4fuVBwWjuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6Y526yLhC42nOf8uG55AeB7n2j5xi+0jgEfR+KAhBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:09"]},"IP":{"Case":"Some","Fields":["144.76.104.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infinity1"]},"Identity":{"Case":"Some","Fields":["Qafw8MFbbRfjHzyQTSjYSlVC0zI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCSHZPztOKmkqxdhtbbxmBb7sWltcpaYD6lgX9vz0ZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:04"]},"IP":{"Case":"Some","Fields":["89.58.37.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor02"]},"Identity":{"Case":"Some","Fields":["QaPBYmnHtj2263QdvdtOH1hrFZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GulJ8a4V9wBcvFffNtSR+MT6va90B7hzaZNEa1WJirA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:21"]},"IP":{"Case":"Some","Fields":["195.191.81.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1908:fffc:ffff:c0a6:ccff:fe62:e1a1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RmbrViliViorelPaun"]},"Identity":{"Case":"Some","Fields":["QZE3Cbsse8PIfXlwVK4IIRbU/R4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yONLWVkhjaGNwTJT8PeWnWArPUkayxIKWkI6XHgnB9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:06"]},"IP":{"Case":"Some","Fields":["87.106.168.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gofast"]},"Identity":{"Case":"Some","Fields":["QYiYttjmCtPhzlV2T1ldn6VmQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AWpiLQn/xsnL47EGeG2cP0OXa/gqzi6T7RkvZ+RDmZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:39"]},"IP":{"Case":"Some","Fields":["5.2.70.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gentoo"]},"Identity":{"Case":"Some","Fields":["QXqjyNIm3deagEfX8heyHZxjwh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z2oabmUkoCuc8ShlvIU7uMw1WOWADtytjotJOxi4OgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:25"]},"IP":{"Case":"Some","Fields":["86.14.81.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:681e::c0f:fee]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zzzzZZZZ"]},"Identity":{"Case":"Some","Fields":["QWhlVWLdzxCs2YcVIB4Ym+Ftbgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4U4/vrJ7YX9pQE1AUhBVgoac7m0N1+WcE0zpYP1E01s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:26:05"]},"IP":{"Case":"Some","Fields":["205.185.123.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QWTB45sbhYelnh+0Fw0jKNKq6PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wiQ/fpoRnMMoEw/8tDlnIcfPOyOKBfLQQ/muznxpJ4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:18"]},"IP":{"Case":"Some","Fields":["81.39.237.25"]},"OnionRouterPort":{"Case":"Some","Fields":[442]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber46"]},"Identity":{"Case":"Some","Fields":["QVT5M5FgIghxZSMN1XdLwWjKH5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["441T24fWPYVvIkWVFPsAXoVlW4pB/CcddCORY1kXTaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:02"]},"IP":{"Case":"Some","Fields":["185.220.101.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::23]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jupitera"]},"Identity":{"Case":"Some","Fields":["QVObj9VflNxgF6Kc3MYjl38RijA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0HmmKOM1U+NTsOL/wuWWHfleAm/WnhLOIz0qZjvhL5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:12"]},"IP":{"Case":"Some","Fields":["149.154.152.121"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:149:154:152:121:1]:7654"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq05"]},"Identity":{"Case":"Some","Fields":["QUJ0SMQWQoMhMMLCmvH+rDs+7TU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tclsUOGzptoBPGDFUMqx7vu8LV0s4BLW/PQ18ftZ0wY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:33"]},"IP":{"Case":"Some","Fields":["193.32.127.157"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lamprlogin"]},"Identity":{"Case":"Some","Fields":["QUH9pVT1bp4k2kEVO1wadW7kMkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SabqgEbgF/rx4r/wJ/JUuztsP/R99UKoWRzHgrTl3D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:34"]},"IP":{"Case":"Some","Fields":["107.173.159.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams04"]},"Identity":{"Case":"Some","Fields":["QUHdvN2K/LlqAzFB6X4w/GtRhHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Izm1wRzeQPiLGfWvNfqR2RKe6YMVFz5nZ6NZ8Qxv8Wc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:46"]},"IP":{"Case":"Some","Fields":["45.151.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::b]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ei8fdb"]},"Identity":{"Case":"Some","Fields":["QUAA77rW68FD6EO/K2UcllZXikQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["55vGPVQake5Til1OFck+UTbODbUiK6RAP+SU+P/0dwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:39"]},"IP":{"Case":"Some","Fields":["45.142.176.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:d4a:8495:5eff:fe5b:6099]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["winterferien"]},"Identity":{"Case":"Some","Fields":["QSdn7LDO99y6+HSN26hXWGDdZ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gy3Q/Fk/ZbqR2MAQKFwllbv1uGo/Vj8D35AU1HChms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:21"]},"IP":{"Case":"Some","Fields":["59.187.250.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toreffiorg"]},"Identity":{"Case":"Some","Fields":["QRsWjBI4R4aomaqooogoa6rT2U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nsbudoWtOTD59xnMi/dXjER5dOVED1Fz0wqYCpEOHjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:44"]},"IP":{"Case":"Some","Fields":["185.185.170.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:5c81:4::27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torr1maiti"]},"Identity":{"Case":"Some","Fields":["QQ8HgbyilshmgipdA6jRHyRX54w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gaaE4c3ZDUpflH+ElVDqZTtMarw0Ci4gQjNSbYjwzhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:32"]},"IP":{"Case":"Some","Fields":["64.44.51.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffc8:1:7::bad]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CodeSpace"]},"Identity":{"Case":"Some","Fields":["QQ6L+QhaDXE3wZpwnAnxV2BQ5Xk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l94o6f9H7eBOYrlmtO6eJUTv/xxVbZgLhw6L+GK6qTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:26"]},"IP":{"Case":"Some","Fields":["185.131.60.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:768:3b04:515a::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W0LFF"]},"Identity":{"Case":"Some","Fields":["QQEY6HTSJj8c3NVn+Bh1qOOLKzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jISb9iAdnqRBvIY7oGjBE92a9TOOCA9zrlM8T5QqVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:42"]},"IP":{"Case":"Some","Fields":["176.9.75.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:7227:9000::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer22"]},"Identity":{"Case":"Some","Fields":["QP3rFEkV40UpCBVTTjcl272roLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3rOk9xFl9qPIh1SIyCwa0x5CBNL5B8wCm0A5GU0RIZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:20"]},"IP":{"Case":"Some","Fields":["185.243.218.46"]},"OnionRouterPort":{"Case":"Some","Fields":[8120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:46]:8120"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fennee"]},"Identity":{"Case":"Some","Fields":["QPrkVAz0wSaxsVwPXgSP29ZuLYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bgiCqbAWkTqgFLgYDqMSk9MduEeNfKgzdiv5l/iFXi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:03"]},"IP":{"Case":"Some","Fields":["50.7.178.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fatamorgana"]},"Identity":{"Case":"Some","Fields":["QPo//KcO6CrenSp+GES/SwxtvqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gCB9R9bBiB2XDNtuXq/XhVPWQ+mQlYutOsJQfBpaIlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:20"]},"IP":{"Case":"Some","Fields":["83.135.153.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Abeille"]},"Identity":{"Case":"Some","Fields":["QPoJwVHDiTtwGN71WphUvJdouCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AsW7OEjzsiv3+OEkCF36YM8AcLuz9GxrZdfvOhlZ9fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:13"]},"IP":{"Case":"Some","Fields":["82.66.61.19"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5d6:6de0:acab:3:3:3]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["QOgrPnuRZ7wri4uU+MxPSDF72sY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thL9gkHYrzb0cXba5FT4tXttfrhRr+0R8XZLeU3101E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:48"]},"IP":{"Case":"Some","Fields":["51.15.113.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex12"]},"Identity":{"Case":"Some","Fields":["QOfWzlCF5M3aMdUaKdFFfrU/Eq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ssBVpWNZnsiVZNXrlU0dHBIrEmewgRyXMGCHzu2l4FE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:07"]},"IP":{"Case":"Some","Fields":["199.249.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::102]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QN01bo88U/qSUbVhz5VjAnkar/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PEM/+KgRkZYqLTbjo5rCbUHg/BephlWGouGiUSEyq6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:33"]},"IP":{"Case":"Some","Fields":["89.163.224.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["okovita"]},"Identity":{"Case":"Some","Fields":["QNmXXoZMhMJs9zKrvmXXN6FLdoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQAI1DR9FFY4ky0/CNuXYySwaA//2fVF42XRYApQnZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:16"]},"IP":{"Case":"Some","Fields":["93.51.14.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b07:5d33:e4e:4dc3:9abf:8c9b:499]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QNPM7uW5viEoaEwV5XaY1Lodgm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wRmQ6zSueyqVAGDkDEVX6d5CzC33qDdza2fJl+zCIFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:02"]},"IP":{"Case":"Some","Fields":["148.251.211.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhNoAnotherRelay02"]},"Identity":{"Case":"Some","Fields":["QNEwlrvRGvGYzmHe5OrszlRy8uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tztDyr670vRCiRpLYcQC1czo2x844FxU4HK4K7NhU/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:21"]},"IP":{"Case":"Some","Fields":["44.242.33.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1f13:775:d400:ceaf:7673:2ab9:a777]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay43at5443"]},"Identity":{"Case":"Some","Fields":["QLM0Ey601oCsACAuAYbbtXv/F84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9vp11WtvbHB0AgfHbqx71YKX2DjDbFhyU7ULi9fpMok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.43"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moykr2"]},"Identity":{"Case":"Some","Fields":["QLE+hgVHRK4oVoOhOWFBPzM2gI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbeTOLau388njNG/iNYJrdPSttZ0ZgM51zTNSv9Dmuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:51"]},"IP":{"Case":"Some","Fields":["140.238.14.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8004:7800:a84e:59e4:dfae:415]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier3"]},"Identity":{"Case":"Some","Fields":["QKYNHx6K++0i/LMLP74uJ1oUz5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XkMyBzJIDeLwtBB13jtzEISgecGDpRfwezuaCG06iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:47"]},"IP":{"Case":"Some","Fields":["46.165.221.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loxy"]},"Identity":{"Case":"Some","Fields":["QKTVUbK9M8CfnWZA2XCOP9Vu06w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yycb6JNG0mvH1e7m4TPinxaXEF4huMLGclyc0ricbmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:34"]},"IP":{"Case":"Some","Fields":["199.195.254.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fedstookover"]},"Identity":{"Case":"Some","Fields":["QKG5i6P83EhqXyB+uVZL5iqauUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3dpniQMmRRvdAoyvCCOxkGesl/3Z12dJnc0rbEeyMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:38"]},"IP":{"Case":"Some","Fields":["195.170.172.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:87e0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa4"]},"Identity":{"Case":"Some","Fields":["QJ/bCjzqpP8g9Lj6f1KrDeQzj1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h69nBmodu7a4QruGVn42f0ElFxQ/8+RKW7DhoRo131A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:00"]},"IP":{"Case":"Some","Fields":["95.217.112.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["QJvVrsFb9dK5g8bwZNhSsK3gyL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BQ+8PgcSJ29zP/DhOjFnav+IJL357rzR687Ico09LwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:25"]},"IP":{"Case":"Some","Fields":["185.170.114.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arighttospeak"]},"Identity":{"Case":"Some","Fields":["QJnepoJope0mEHjeFzSJEzShRvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZhmY1RGOQS7B6sb68By0bpEDQkpP3JfFQF6h8f06ars"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:26"]},"IP":{"Case":"Some","Fields":["45.83.234.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1854:1::face]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benden"]},"Identity":{"Case":"Some","Fields":["QJHYCBKI3a6Mhu0bxxrKLwDQm7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o4tFTdDgKSLopMhFyWDOoCNSLaxm4gxZYzpH5Ypio4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:14"]},"IP":{"Case":"Some","Fields":["65.24.59.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionsoup"]},"Identity":{"Case":"Some","Fields":["QI83TxMbRdfWPbywDmL3a2R5Q9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTtcXnoMjK1TcQI9qKJJJt+S2FEpaRTmxOdl3V7R+wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:56"]},"IP":{"Case":"Some","Fields":["178.63.41.183"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:4169::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["muddybits"]},"Identity":{"Case":"Some","Fields":["QIydLxZT2e868TnBU8sn6P/bdhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkGh/x4t3xzezh6iIdi0dj4uYRY09PD916jiNIDNO3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:19"]},"IP":{"Case":"Some","Fields":["51.81.56.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer01"]},"Identity":{"Case":"Some","Fields":["QIbsrTSzhfRfxlS6/eb7aqbXXkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GYNVnP5oHDzA9935V3Gbb0aANtIIkLFe8YE7rFFM5uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:04"]},"IP":{"Case":"Some","Fields":["95.214.52.187"]},"OnionRouterPort":{"Case":"Some","Fields":[7120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["styr0f0am"]},"Identity":{"Case":"Some","Fields":["QIK6n0m88lpBNjDDV8AB9H1W/eo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9RtpVGSs4a4bBkyPRHGh0/5kMt9pGVX2lJwSTmHj8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:38"]},"IP":{"Case":"Some","Fields":["142.44.158.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:61:e9b:6019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AinaBrenn2"]},"Identity":{"Case":"Some","Fields":["QIB3PXMeZY6hzR3fJ9hqOlG+KUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VuXLFgS/67xMHIbR/O683u1MEJVxURpNZCvjiuDCW8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:50"]},"IP":{"Case":"Some","Fields":["31.14.41.164"]},"OnionRouterPort":{"Case":"Some","Fields":[4023]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknc"]},"Identity":{"Case":"Some","Fields":["QIAiLIuUQgG1FqxbFFJ15uzuRwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3RtLp2vQJwwHKLYy2e2dwjqI688DRU7sA5CIXsVav5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:11"]},"IP":{"Case":"Some","Fields":["202.59.9.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitRomania"]},"Identity":{"Case":"Some","Fields":["QGHFU8qIAhuDAvCBQ2UHCq5hcnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GJxp9iye2RiuJISYmRsa7QCr+XJlq/eVUBnS8Hrs8IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:57"]},"IP":{"Case":"Some","Fields":["185.165.171.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:50::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tobor8888"]},"Identity":{"Case":"Some","Fields":["QGGvgZpHCYmSIqHgQW253Rn9lAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BAw3j5BlfwGBSJPGNUrEsIcVLfsb21j/y/zSq5RYD0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:55"]},"IP":{"Case":"Some","Fields":["162.219.176.3"]},"OnionRouterPort":{"Case":"Some","Fields":[46410]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pissnisse"]},"Identity":{"Case":"Some","Fields":["QGE+eWK2OsGZMmYWQib/Z9ltucA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pFhtFg7Ph7QRUhSopZ4odjj5Xmgf6SRubyfJx6QGdIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:35"]},"IP":{"Case":"Some","Fields":["212.85.65.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange023gr2"]},"Identity":{"Case":"Some","Fields":["QFXN3/ez+ealBEdgmjAUdTqC6yY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kpdrk05nZNVI4TJYXi0jnd9nnc8p0DK3tYOiUrsc1no"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:22"]},"IP":{"Case":"Some","Fields":["185.4.134.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:110::2d49]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenNazareth"]},"Identity":{"Case":"Some","Fields":["QE2+D3LWZXaSVDKx5KKEJfouSCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LPhLDzejewiJQGmacS2BXwlVWFEQwxc/djwhYWhoB+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:19"]},"IP":{"Case":"Some","Fields":["51.158.148.128"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:1000::a]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bewilderbeest"]},"Identity":{"Case":"Some","Fields":["QEQdklH5QhNKVi2uK9lEXykkVBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H0w4mhGz4+QHza7d3i55XgS8lqFw1TPUOZbU5dEySVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:10"]},"IP":{"Case":"Some","Fields":["71.19.149.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8421]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:5:a800:ff:fe13:9cab]:8421"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wuwei"]},"Identity":{"Case":"Some","Fields":["QD2eHd2OZvqAgd6uF8lLLR0fYWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/uPvIdpMttvbWWz4UCzRcjqFzwibxg5CTqU7/bTLwVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:13"]},"IP":{"Case":"Some","Fields":["212.51.155.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plusvat"]},"Identity":{"Case":"Some","Fields":["QB6No2S3Jxer49S22z8RkrwfJMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QukIb1mZ5ruGcjNzzoQAdGH4gV5ze2OQM8nr3Td28oY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:39:52"]},"IP":{"Case":"Some","Fields":["141.193.68.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay24L"]},"Identity":{"Case":"Some","Fields":["QBpmdHcTA4zu9u0oyK/rcFcO68w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RWyh+sDz/3bO9sCj48dani/C4yQvBPMrYYoj9AJc+PM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:26"]},"IP":{"Case":"Some","Fields":["2.56.241.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700:2::1:27d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash2"]},"Identity":{"Case":"Some","Fields":["QBZR1MEwCQ1cosnxfC7LsHSPMPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gRitgCE/KbuNqcLIfesYoyULsiG3uLckc5/ZBdP6+6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:54"]},"IP":{"Case":"Some","Fields":["51.81.56.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ramhorn"]},"Identity":{"Case":"Some","Fields":["QBHhuw5bmiKvZltVO//d4ipRexY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EtV4wrm2RFsz9AoavoTWdDZExwZgqRZ8ldrXC3zA0s8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:26"]},"IP":{"Case":"Some","Fields":["194.88.105.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay26L"]},"Identity":{"Case":"Some","Fields":["QBCP36QO2wE/cpHztNo9QS7Tpe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eQL+lM8kd4rMSonMWslBKaOpPdWMQZqmk5T3kb4xwSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:54"]},"IP":{"Case":"Some","Fields":["195.58.49.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700:5::120]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI16"]},"Identity":{"Case":"Some","Fields":["P/vEHGWQIfiaUuPgIEslukzA/Lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8c4q+WdJhsZWgWEHYpdUswfOlbCwJLWybRQpmJdkHKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:39"]},"IP":{"Case":"Some","Fields":["171.25.193.77"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::77]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LimitedHangout"]},"Identity":{"Case":"Some","Fields":["P/mN6sIAwkoC+pJ4T2d/90qk5cg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsxaWdG9JcI3Jt2gCALOzSqjAJedSpSoGdSUX/MrRvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:24"]},"IP":{"Case":"Some","Fields":["145.249.104.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["remedy"]},"Identity":{"Case":"Some","Fields":["P+v7akkdMMrMLCmV7bQXF6b5TpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xK7xiboWYO6xTlOjI06I9ftyqcJzHgmV37Fii7HSr4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:12"]},"IP":{"Case":"Some","Fields":["212.16.170.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SemaTorRelay01"]},"Identity":{"Case":"Some","Fields":["P+GqFjRF3A4Gd7Uif1B5B8SHKjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9cCyAemoUTCZmwZx1yxUWoAqy5iIhNji2ODqi1J3rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["152.115.46.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:188:5207:0:152:115:46:132]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer07"]},"Identity":{"Case":"Some","Fields":["P9/sY14/EbTd1oX+FTcgX5KDQKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPKf/ZORNGr6mNM2VmZ/lDc44355N9X9MTGYei0rZ1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:01"]},"IP":{"Case":"Some","Fields":["95.214.54.108"]},"OnionRouterPort":{"Case":"Some","Fields":[5789]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["P8zFLabNLRjhSsHUc7Esvl1dBR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mKDu0g8vMAhdJAgbewp9v7+aA4SXNZ6xz3FwrmYLEFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:26"]},"IP":{"Case":"Some","Fields":["185.229.91.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:36c::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsalc1"]},"Identity":{"Case":"Some","Fields":["P8bwJuSfG2mH8A7CtPCnX81Z+wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+O5EwoFOwOxQEbBlgvPo0igwgIYCoTE8Je11QskUYbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:06"]},"IP":{"Case":"Some","Fields":["80.211.74.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d40:72:adad::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["moykr1"]},"Identity":{"Case":"Some","Fields":["P78uWqf60v08EkyjCbQIq6IPi04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zs7tQ+J0yo8KS+QXtPtR6pDdO5Zfov3OeCpvb0dmn9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:52"]},"IP":{"Case":"Some","Fields":["132.226.174.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8004:7800:430e:23d8:fc7e:411d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["harpianet"]},"Identity":{"Case":"Some","Fields":["P6k9QemnxMR7d8DX9heZm21dC2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMBUPTxOeKT2zP4sBiaislZrxQbDc+b08ArFcgiWcpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:09"]},"IP":{"Case":"Some","Fields":["143.208.84.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:2aec:205:4600:dea6:32ff:fe9c:c7ca]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarbarianParty"]},"Identity":{"Case":"Some","Fields":["P6VqEqCUqe12hWoGokAPT6+srPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btbSRQ+yhKxL4EtYla3nYwmSztL7UINFLmXSPxFZMII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:26"]},"IP":{"Case":"Some","Fields":["198.144.183.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacySvcsExitBA"]},"Identity":{"Case":"Some","Fields":["P6BNr7OcjC07s1aMS3+EGUaR2cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2j1ev2ggXLnW8JyFmzhStyyMaU+i/6fwrhFFFzF4S1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:44"]},"IP":{"Case":"Some","Fields":["208.68.7.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:6e:a009:705:face:b00c:15:bad]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TSFORT0"]},"Identity":{"Case":"Some","Fields":["P5+Atpc5MWcGbyKyAkwtq5dfdtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TLEnTgX34cWscktbmM7RXz+RC/D1G9nALnay0KSgt94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:39"]},"IP":{"Case":"Some","Fields":["5.255.104.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freyr"]},"Identity":{"Case":"Some","Fields":["P5hYDIgaPafvLpqJJ0ka1OXtaE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+YG3ca1DJkOM/YlLLgitLn7zymD8xd4HzcussVkKX5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:09"]},"IP":{"Case":"Some","Fields":["185.112.144.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex64"]},"Identity":{"Case":"Some","Fields":["P5HzhKv20RUIBjjlI4EjHRv7/IQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oyKM2r10FMCbhc78Cwxb9BiYZ77OziR77bZKWx3cxDY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:03"]},"IP":{"Case":"Some","Fields":["199.249.230.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::153]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldfish"]},"Identity":{"Case":"Some","Fields":["P45TXDoAvl5uSpkQ/zUTUX/Eaq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8V/L0XmteVkpS+OmLNqdi0d1Zj0Ipw5wamy0HbJNTS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:39"]},"IP":{"Case":"Some","Fields":["188.166.210.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::fd7:9001]:9876"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["0001Userzap"]},"Identity":{"Case":"Some","Fields":["P3kj8pcawP5ZGoVLryFHkCbcmpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzOv+erUFunfF9srZMIUJ3Ogd87vg5xARum9d4ftpXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:17"]},"IP":{"Case":"Some","Fields":["202.61.226.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:a67::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["P25m/aVLDO018BoWr10DTd3Y1Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j4TEW1kOXMg1ZIk8PpDpRfy3hJPkFA1gkqWGlWYuSd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:00"]},"IP":{"Case":"Some","Fields":["107.189.5.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f30f:6a6a:dfb1:73d8:fecd]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["P0R3Kwtnf/0/4PK4ogXAuxgaZzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mnBqRbHxRz88erNLTC4N5O4PX6Vc1Rp7mQ9w9IT5TeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:02"]},"IP":{"Case":"Some","Fields":["92.196.2.156"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa2"]},"Identity":{"Case":"Some","Fields":["P0PQWEomE8nbYxOC/0htxrleocg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WydFdOpmNUbncpZJlcn3WG6t43zt88ncpKDKn6E/RbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:25"]},"IP":{"Case":"Some","Fields":["95.217.112.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["PzjBfBG0NWJ2a1CpU2awIcvMeto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNd6hO3VOfiXMgjxInoXDS2fUNyEwnISGrak0pbjJjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:16"]},"IP":{"Case":"Some","Fields":["185.183.158.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["PzhOhlcT6dhoRzDHgmWAG3hxKow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qF7IlyJUuzw4h5XUCC/b5lXLRD1RcWZhIu/gUPLZyp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:12"]},"IP":{"Case":"Some","Fields":["178.175.148.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maybechimes"]},"Identity":{"Case":"Some","Fields":["Pxxdxg3ZhQQuQpFAGnq37Jan5AY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RUvIiW++JLIO8ubKYbU9Jl2JnHpHjpS7yq4xRs4ocl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:32"]},"IP":{"Case":"Some","Fields":["65.19.73.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f06:bf3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iwrs"]},"Identity":{"Case":"Some","Fields":["PxU9B8Hk0yh/IHJ8ZGPglitSZmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yzS1gJaZu1JEByP/8WslMPmk3R2Sx21+GPtSseFZzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:52:19"]},"IP":{"Case":"Some","Fields":["194.113.32.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra46"]},"Identity":{"Case":"Some","Fields":["PxTvgLyn02eUkes3yY7Pt4b2RK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLDcpSkMvAFhjWu6HiUTS6nJM6I31FWeyNmQfWKbIfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NYCBUG1"]},"Identity":{"Case":"Some","Fields":["Pwkphum4fT/aCbcfo6YCN4KFx3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d3naoQkGkOQmbsip2RVb82DqKeb6Qm40G/tjquFXi6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:25"]},"IP":{"Case":"Some","Fields":["66.111.2.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2610:1c0:0:5::16]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt61472"]},"Identity":{"Case":"Some","Fields":["Pu3IBsUk33pLAxzjFIBuP/bMJfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/BOKJEfAocBADZD7iqeuwHbu30iGY9/rQN5kAgV+6Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:57"]},"IP":{"Case":"Some","Fields":["185.245.60.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["PuYrZyJf0DCiN+TJSXwwPtPdGRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5zn4WKMDaks6BTDRXaVYXpVCU2gnEIq/cz9GNE2JRr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:02"]},"IP":{"Case":"Some","Fields":["185.44.81.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::70b5:bcff:fece:22c1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["PuEcRf3iPMRuPHvIr8rLg5WzdBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/A+RK0cCyvw26cpBCkJ8Pnlttt3iGp6/uPEBhdHNiJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:37"]},"IP":{"Case":"Some","Fields":["5.45.98.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IdidsetupaTorRelay"]},"Identity":{"Case":"Some","Fields":["Pt0oiU1Pz2Q7SFigUviM4l5liaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L5kV5LCc8xCTo0BICsFmIwnYQUrmzimzzxp/VicYgGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:18"]},"IP":{"Case":"Some","Fields":["185.130.45.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoface"]},"Identity":{"Case":"Some","Fields":["Pt0AJF2TZkozpyS6N3FQ5VMe0DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JaSemAFvorYRWIq100isy9lJzFdmNA59AJCag9swRpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:03"]},"IP":{"Case":"Some","Fields":["185.8.63.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inconnu3"]},"Identity":{"Case":"Some","Fields":["Psrx6qLuLGo90ZHIIHiMkzhsJPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aBFQPz4kxdjwnFdmbiTw8n8T7ek6HunBTSE5bTC5VYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:50"]},"IP":{"Case":"Some","Fields":["155.248.197.238"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoertetor01"]},"Identity":{"Case":"Some","Fields":["Pp/urbccE5fqvvq8loZcuPqwbm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OMsrdM10w2DQOoAxvMhp0FKZMXy/QGFfxNqGsgFbgMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:53"]},"IP":{"Case":"Some","Fields":["95.216.100.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["PmsZHXb9gbKp827L8j6GVCIPypI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nw6Em/LwfvjaLpgI3KzHNVawMrERH89azp100rKfvog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:19"]},"IP":{"Case":"Some","Fields":["23.128.248.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::34f1:dbff:fef8:3dbb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["squarewave01"]},"Identity":{"Case":"Some","Fields":["PmLMWedFX1Xevne5d3++pzky/4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ONHzdg90YFiKgUU7W8ki+BF0SsHo0E43D1cvT9rKmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:51"]},"IP":{"Case":"Some","Fields":["107.152.47.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:3000:11::c3d4:ce47]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra38"]},"Identity":{"Case":"Some","Fields":["Pllu2svpHco+fybwFox2SIItKgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ITyN6wIOmxRdsi9z0cSwgXNg2tDhSai1VEDKgi1vAfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:32:35"]},"IP":{"Case":"Some","Fields":["205.185.120.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tuco1"]},"Identity":{"Case":"Some","Fields":["PlkoDqZ8kY9a1cv3l4ZDu3CgwWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F4rb1vUSA0aiSPN6h+sMXRC+9b0PbL+B4low+WJ8R5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:54:24"]},"IP":{"Case":"Some","Fields":["193.187.91.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["PlPTl52wfv1zZmHJNKHe0UEntoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/xoOM0oMHGnD0ZaHY6CY7DgxAUz6xfKtc+0dTTmJVUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:33"]},"IP":{"Case":"Some","Fields":["217.79.179.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:fff9:131:6c4f::90d3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RSF12thMarch"]},"Identity":{"Case":"Some","Fields":["PlDLypiiD2N7xFUf1PEy0GLbmlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ9TWgXKKiW7F0/j0DbflFyHoILWY8Syyl7m7afrk50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:11"]},"IP":{"Case":"Some","Fields":["185.220.102.7"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::7]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse01"]},"Identity":{"Case":"Some","Fields":["Pk/BBJQ4LgJJ4jqe4A3RJlsfAPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLfCGS/2CiAz4EBYe6kYUQtOJgtxxZoai2dI9sLHfU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:28"]},"IP":{"Case":"Some","Fields":["81.16.33.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM12"]},"Identity":{"Case":"Some","Fields":["PjYWqUMtK4Ww2vyEBihjzimRfhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H0ZchrYacKU/fXTI4qOIFXZko2bb7dP7toLUgEAib08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:17"]},"IP":{"Case":"Some","Fields":["185.239.222.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["runcrypto"]},"Identity":{"Case":"Some","Fields":["PjEF9YgUewqG4oHurv2Yyl5Uk9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDrENTO2XNAHqT8acS8jmbNof9uIIAEwOrL64019vvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:03"]},"IP":{"Case":"Some","Fields":["135.125.237.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Phj+ur2UzcmGQWyVffMj/t6Xor0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8F79Eywg/2u8vCAuA56mRlDZBLh4+cg7mInMFkymNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:34"]},"IP":{"Case":"Some","Fields":["62.210.99.238"]},"OnionRouterPort":{"Case":"Some","Fields":[39819]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion254"]},"Identity":{"Case":"Some","Fields":["Pgmu8LROlBa8LYcDLTQWQx6CMdw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVNX+tqqCIpdhSvq6+XFPFKGuf33tvUuDv8AJBJ3qIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:30"]},"IP":{"Case":"Some","Fields":["38.147.122.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mephisto"]},"Identity":{"Case":"Some","Fields":["PgRQXTYqoyTm5OHIUWzNnvTUG5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwcBJpeALIk28Q9UQ03pWEPPed+ROVVGEGDbNjOTr2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:07"]},"IP":{"Case":"Some","Fields":["81.30.158.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:699::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rem0232"]},"Identity":{"Case":"Some","Fields":["Pf1hkKQDsJkoglQBpvuQZ51qSd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Euvay1wEJfkWluBR/uKstt6vUf/SKJOsp5qZ54mun6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:15"]},"IP":{"Case":"Some","Fields":["149.102.152.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c204:2089:786::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etraxx"]},"Identity":{"Case":"Some","Fields":["PfvntHPzjfCUIJCzSS0C2nDBcEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JarfVRayppsidZejMtlZLk2dhmS/sAecqUIMjI6kfjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:33"]},"IP":{"Case":"Some","Fields":["2.200.105.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tp"]},"Identity":{"Case":"Some","Fields":["PfHMRZmmEVhdrbAXOMyNo4cWGQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3I0WzsVPYgcUZk54YUtc6Ev/4y1SwXYLUV0YNhVwjEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:26"]},"IP":{"Case":"Some","Fields":["195.88.24.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xbad1abe1"]},"Identity":{"Case":"Some","Fields":["Pe28mvMt0ZAJEnD75kAgWsIjueo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XQbIX+kHfiRzgmJuXaBE9fICZspi3MYXBxaZy45OIbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:42"]},"IP":{"Case":"Some","Fields":["51.178.17.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9003]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quoo6voor9ar"]},"Identity":{"Case":"Some","Fields":["Pdrp1H73u/2uKtowpY+gow77jAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fa5deEGAFBMNhh+Ry0GcT9Hy7/m8WxT8Ga4CKF/hL0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:44"]},"IP":{"Case":"Some","Fields":["104.244.74.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mercury"]},"Identity":{"Case":"Some","Fields":["Pdo+b1bXelhbnR8I4xrjjr5j7d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W7bNaSkoze/np/mlyAd2Pwqsm9g7uVbM+FvGthEYSnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:41"]},"IP":{"Case":"Some","Fields":["45.88.109.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:e8c0:1:900::6d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM06"]},"Identity":{"Case":"Some","Fields":["Pc7K9wibHCzj6pUE7gXOdU9M+ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vae6R0w21rfMezN6CC5/CD+hL66KZK9tNA1ekfzxnbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:47"]},"IP":{"Case":"Some","Fields":["185.239.222.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChocolateLily"]},"Identity":{"Case":"Some","Fields":["PcdIwt/x+OnaVia7PLqv8x1wbBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7JrvKjloiuPXd047uHPdCFj+k2KIpDADBqniPQre/WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:24"]},"IP":{"Case":"Some","Fields":["64.180.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[51000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreggle"]},"Identity":{"Case":"Some","Fields":["Pbe0dWPz8qVd8elN8er9/wllo5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u8ajpikOjJuKt6umtlHwvmgSZLqUTCZOVQN3MT4Z+6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:45"]},"IP":{"Case":"Some","Fields":["134.122.14.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hKnYTKYgoYx4JmnAwu9"]},"Identity":{"Case":"Some","Fields":["PbcjEPaZlVXnGgnD/N+G6OmRGPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PrAwONBQtYGSVdynmsJFKFRC5gkIMp0uRJPC+RktUaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:55"]},"IP":{"Case":"Some","Fields":["68.67.32.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1150"]},"Identity":{"Case":"Some","Fields":["PbXu5oZbHxzO3i913Lj5ptmHveM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxA5A4qz0/cieCGC0W4DAjwhwBDeZ9tD0rgJGjcNizw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:27"]},"IP":{"Case":"Some","Fields":["185.220.101.150"]},"OnionRouterPort":{"Case":"Some","Fields":[11150]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::150]:11150"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapTOR"]},"Identity":{"Case":"Some","Fields":["PbXDqU7rpbiHCL7VIxJnMzKbDwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bLkMlgb0gPLIIVMEGdbHnQNgoWtyB5r5nfEWY7kjwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:48"]},"IP":{"Case":"Some","Fields":["167.99.181.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::be9:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hspaccaossa"]},"Identity":{"Case":"Some","Fields":["Pa/RmhVVdCghDJrjA7gHovyDsXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9F5fSSGahUFvghXiKWJJvu6MFMFtb4QHz9SxtGTEAM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:21"]},"IP":{"Case":"Some","Fields":["188.216.252.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vjayDuckdnsOrg"]},"Identity":{"Case":"Some","Fields":["Pa65MiMkeTf31Ihon3m5IDNx4Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tS0pwYwZK5mPm+lSCsRsXAmk8qSA4cJN/3T6mcrR2SQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:11"]},"IP":{"Case":"Some","Fields":["91.64.180.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TurboRelay1"]},"Identity":{"Case":"Some","Fields":["PYbuJXvMyScc5UzGc1l+zCBZLug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YygI76jhZ43Mf9CSaJK/pilrms7XDYCXL5FdR5VGXiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:46"]},"IP":{"Case":"Some","Fields":["51.89.216.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::3ce5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier2"]},"Identity":{"Case":"Some","Fields":["PWFd75fzh2MfUCAfr6bntn/fP+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7PON2IA9K5wy6XBOGXX7b9xaz2XaI7G1uW5zu5ka/uc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:46"]},"IP":{"Case":"Some","Fields":["46.165.254.40"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TorZabehlice"]},"Identity":{"Case":"Some","Fields":["PV1heMRFN+NpKFOzRDhfZXKlV2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SC0x5fOu2IMCygSWBpse986wmGdyTLXAFoQEDHJaB0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:31"]},"IP":{"Case":"Some","Fields":["87.236.195.253"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5f0:c001:107:2f::]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE62"]},"Identity":{"Case":"Some","Fields":["PVLAqoLl0OJlNJ/EikrcAwJ0xBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LV2jHJImVluwpOuXrHX0NP7ThaS0VGRhoPg24o+uGQQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:47"]},"IP":{"Case":"Some","Fields":["37.221.66.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:103]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["PVAZP5ua3JCKzGl3KmtEtQq8ZK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdEpmzK2p332UiUrAE/TVjauB1cMmUBmSLksN50EoGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:07"]},"IP":{"Case":"Some","Fields":["185.241.208.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["PUC8eQp8oFohdUFgP2CVFvptmRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OhgzTX95uk7h9J47jTs9w0YPs77c+CcTGQQe0xx1fVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:47"]},"IP":{"Case":"Some","Fields":["95.31.137.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashElk"]},"Identity":{"Case":"Some","Fields":["PPk1u0jCfqD+pNa5AlpWY2TDjpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["521dKGJ1MeYW/9xKpMN1xwVnU1i93fPOc9HyiQpR3ZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:54"]},"IP":{"Case":"Some","Fields":["194.32.107.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:220]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thanatosDE2"]},"Identity":{"Case":"Some","Fields":["PPkV+KlaPooG3PMp9xmy8/VCKss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/ZSLQtUbshFi+3xAHI0YhIjrtDvGc2857+fJSMoQvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:09"]},"IP":{"Case":"Some","Fields":["185.187.169.249"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionRaspberrySoup"]},"Identity":{"Case":"Some","Fields":["POpWuBdFXhPEsGPn0+dybChvfJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jF0cjwQbmGUVLp2XAMSpK0CUyaNZ9alxNF3yO3iBdKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:27"]},"IP":{"Case":"Some","Fields":["82.197.215.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurostar"]},"Identity":{"Case":"Some","Fields":["PNzXHaDIKWQdnaxgOw5cQxXxRSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DQGXeCIomSELeFuyAXEmr5YoqaHDV09ugzdc+4vxsLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:15"]},"IP":{"Case":"Some","Fields":["116.203.88.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsethforprivacy"]},"Identity":{"Case":"Some","Fields":["PM75aHGkmsBhSeSqjhTScNiB9tM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATdewJ9gjGNoaFOZCW96dDMCtGC2c9KxIpdORHucc1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:03"]},"IP":{"Case":"Some","Fields":["5.9.120.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:162:7018::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jujunz"]},"Identity":{"Case":"Some","Fields":["PL/hMpK0BcoCdU7ysnFnRX8hQF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rcimHD2yaDVIzysa6lJQ6yv3c6CX0RbzLypV2Avk7E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:07"]},"IP":{"Case":"Some","Fields":["109.202.198.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrous"]},"Identity":{"Case":"Some","Fields":["PL79jcN//qINXd+87ui+yalNb10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iQgt/bUo/WV5dDh2IcleOlTqujY13ltMk+Z1ViZDIbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:45"]},"IP":{"Case":"Some","Fields":["102.219.178.8"]},"OnionRouterPort":{"Case":"Some","Fields":[55959]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gongshow"]},"Identity":{"Case":"Some","Fields":["PLxUHyp2Ot1790KRkiklHiwGXk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kNM4CVGewPRw/KlPHEXztwEcFpG8f6gopwM7ObrqsqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:08"]},"IP":{"Case":"Some","Fields":["209.126.103.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor10"]},"Identity":{"Case":"Some","Fields":["PLQZPvTiOfztxNxDRo4LDWtnrMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOi80iqt07yDT6+LBPs4h33MoYcyahQghU/5bbn5VgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:12"]},"IP":{"Case":"Some","Fields":["51.38.65.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::f6e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NakaG55"]},"Identity":{"Case":"Some","Fields":["PKx4jRSHxZnlzjNuBFbK4P0ubW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7iutNpGqKJHUBaOIwouz3MUhSuVBZD+JSjWYUh0WCHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:29"]},"IP":{"Case":"Some","Fields":["153.151.219.170"]},"OnionRouterPort":{"Case":"Some","Fields":[14141]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lttlefoot"]},"Identity":{"Case":"Some","Fields":["PKhxCxS8TpFEgXjrMkwrRnwi+Mk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jYmvpCpILOO4zmhdXkCulvsa9knwZ4vP7olCz8RCJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:35"]},"IP":{"Case":"Some","Fields":["173.230.138.88"]},"OnionRouterPort":{"Case":"Some","Fields":[989]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:93ff:fecd:feca]:989"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN30"]},"Identity":{"Case":"Some","Fields":["PKDRVWcCTS4LVX3Azz6WKzeZmnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWS8QKBVPPboH+XM+e/lkOSloxLu6GVIxEG8OwrbBYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:23"]},"IP":{"Case":"Some","Fields":["199.249.230.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e653]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra5"]},"Identity":{"Case":"Some","Fields":["PJDKWFdwXXxsF21HXFkq8nif3ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["syR1NCO+P2cfprrSxlIijN63fVgZSaFLhwK3NOFfa6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:23"]},"IP":{"Case":"Some","Fields":["107.189.31.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["PInIDiaZ+2NYu7ZP3JVHr8tcA/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OLU0JLCRynRxfj4kAz2r5KG+tDVbXUhJTRYswf2ukek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:52"]},"IP":{"Case":"Some","Fields":["185.220.100.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:16::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carbonitos"]},"Identity":{"Case":"Some","Fields":["PIDTaPeW+zIYSBnrsvVaMaCzl/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ew4g0vxVqACKuzbxiulSRJbc/UZ+16MeqSuffEjSmq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:05"]},"IP":{"Case":"Some","Fields":["18.18.82.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b42"]},"Identity":{"Case":"Some","Fields":["PH1iCB51TY6yghvglri59Yv/zAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egj4tHuGddXrfL4zDdaR8rimWGB3CGKFbQP+8ieJg/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:07"]},"IP":{"Case":"Some","Fields":["78.196.33.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e34:ec42:1880::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HanseTor"]},"Identity":{"Case":"Some","Fields":["PHlwK8xKpJjLjp/silGnKuiRaeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zx2maGiwkiLegWHvJw7eyLuymrq+JpmBm9zDM/f3sWw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:18"]},"IP":{"Case":"Some","Fields":["79.209.234.37"]},"OnionRouterPort":{"Case":"Some","Fields":[51901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda1"]},"Identity":{"Case":"Some","Fields":["PGOPlfNmcfxxaQx7viUuIZIARNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BXKxtw4Al13qW9QsWG7ySJYsDqX9PvzPGRskyZNs2hU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:32:56"]},"IP":{"Case":"Some","Fields":["78.46.209.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:caf::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow001"]},"Identity":{"Case":"Some","Fields":["PFkVNI1zFQXEgRL08DI1/ee4yDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v9m81Fgak7zX+yTlJIj72Y4Un7vrApDApVZbURPeeio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:13"]},"IP":{"Case":"Some","Fields":["185.195.71.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer83"]},"Identity":{"Case":"Some","Fields":["PFUVFePuaX2+gQvj22e6UKPWeDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8drygDAbmrKDaqkXJfHhGfUylHxscWSqFMFlI3f2VDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:35"]},"IP":{"Case":"Some","Fields":["95.214.54.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8183]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iapetus"]},"Identity":{"Case":"Some","Fields":["PE6xIC5G4BA8ydAlelKJO74CK3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T3C3GsLkc0ijWi5XDFFreGWgCLHl+hEg6spQjeDprdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:21"]},"IP":{"Case":"Some","Fields":["37.123.173.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv07"]},"Identity":{"Case":"Some","Fields":["PEqoMWlDKBs3t2dUyxilJurryx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pfJP+/wbrL0/Lrt/QjiGXZyN7HJUQgacSPefNmMHzGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:57"]},"IP":{"Case":"Some","Fields":["162.248.163.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chad"]},"Identity":{"Case":"Some","Fields":["PEC9XCo7F92PzqI5ZVANxUD6oxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ercM+bEiH+oiHwq1b49TNtoSPH2rG8elANySkHqLS1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:38"]},"IP":{"Case":"Some","Fields":["132.145.78.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0148"]},"Identity":{"Case":"Some","Fields":["PDY8i0XSHtLGVqDtc7lH9UacUZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lJvH0IViIqRiyqGCoMJtbsQzQJbbNFN0lvkyYZbcH9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["185.220.101.148"]},"OnionRouterPort":{"Case":"Some","Fields":[10148]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::148]:10148"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JPxzAnychorianrelay"]},"Identity":{"Case":"Some","Fields":["PDI6HB56XAUhLAQhYOJZtnPfXQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fRZHOflU/NgoxTaidXGPm//lFEUxJ4QhSl6LRrwC9yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:04"]},"IP":{"Case":"Some","Fields":["45.76.218.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:1000:4508:5400:4ff:fe23:1a60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetxor"]},"Identity":{"Case":"Some","Fields":["PDGQXGUfXJSWbJI7vU4dvW2d+1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VebES+8nDRo0RrzodUXB2zEsRB4ECtdUU9dLyJL6EO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:59"]},"IP":{"Case":"Some","Fields":["91.190.155.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:dc0:4:18ac::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["PAtzOMV6ezByutUDtdhMFaqJcTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hx0sC0ybIhzAZdH+70HY+Y9khjbVhKwiFlbaUZUU6aQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:36"]},"IP":{"Case":"Some","Fields":["23.128.248.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::38]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsuperpro"]},"Identity":{"Case":"Some","Fields":["PAtFnTHgjpmOHpiLKC45ZLN7mkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sECtyit94ZkgHA71Nl9anGIjBFol+8N/UERq2MI9RqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:25"]},"IP":{"Case":"Some","Fields":["189.147.122.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicGamerRelay"]},"Identity":{"Case":"Some","Fields":["O9xIMPkackC0Lm0ZsfBP+UzzNQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gVqxotKz6VnVYTu7YrbCSh0pUjmI7zVWV6CcikPKtPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:19"]},"IP":{"Case":"Some","Fields":["185.10.68.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raspi53Tor"]},"Identity":{"Case":"Some","Fields":["O9E3bNM57axq7881WnA6Fq+RNJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IC3wYplA4/ldmXoZmumzUB47huE4429wEk6L4k9qf/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:15"]},"IP":{"Case":"Some","Fields":["79.226.154.194"]},"OnionRouterPort":{"Case":"Some","Fields":[1058]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sa1"]},"Identity":{"Case":"Some","Fields":["O8Upqgr6/w/LHbIQS2a2w8Q53UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RqSAexLFrNPGkg7MbOcXsR2M0A5jW+tdLInHAkPIhZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:24"]},"IP":{"Case":"Some","Fields":["78.128.112.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tiny"]},"Identity":{"Case":"Some","Fields":["O7+dmMfQWNfC5g9rpb1XTLTz/iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQZ/1kj8b94QhhKpIxtRw+6dOOMlUZd58poII5L0xpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:41:01"]},"IP":{"Case":"Some","Fields":["91.219.238.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["accidental"]},"Identity":{"Case":"Some","Fields":["O7cbqxc9u0+yS5CEPb1Q2PcEBuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kl5K0Y87WWNFmwEksaDWe9hGcKIZmMAk6v3ynBfLBfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:28"]},"IP":{"Case":"Some","Fields":["188.127.30.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venser"]},"Identity":{"Case":"Some","Fields":["O7NMzY6pyATFxTYbIfM3Z/IggB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aTmfdvQNzCFVUsC+3IZdTcXLlhW5EiqUb6I6ZPS+GJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:53"]},"IP":{"Case":"Some","Fields":["94.23.17.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:123a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kerly"]},"Identity":{"Case":"Some","Fields":["O7A1UU+CRqw2e1Nw9P4SC7EdjG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXTQ+h6KxUgZthl9nryxR5acZWxaY9U0xWzFH5CKLfE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:35"]},"IP":{"Case":"Some","Fields":["93.115.95.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebest1"]},"Identity":{"Case":"Some","Fields":["O6ufA9wvMqaqHGqg6VksGaBZ8VM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b+R+JjGDTlCe88TyUDjgFOXKNBgNPO3VIjI3+ASOyHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:49"]},"IP":{"Case":"Some","Fields":["45.58.154.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noxdafox"]},"Identity":{"Case":"Some","Fields":["O6Kowb5P1szrvORom2Y3KgUZ4Mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wQoGOhsg/bSzUAU/Y1AkKmGMmFH+3cQp/j9Ht3QCt0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:27"]},"IP":{"Case":"Some","Fields":["88.114.24.155"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paranoidtorrelay"]},"Identity":{"Case":"Some","Fields":["O5UyA68zLY/hRS4c58tQo7UpfbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wk2rIRTjGV8IapYj+wtm9plt5L2Lh8ULj/jivGXgKPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:17"]},"IP":{"Case":"Some","Fields":["104.244.79.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamicWebsite"]},"Identity":{"Case":"Some","Fields":["O5GQOl8+It7//lL9jajaMAAai5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9H3tqxzNqSDbvKjXPGGwD/nBjropwbvLxCzlb87/DSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:30"]},"IP":{"Case":"Some","Fields":["198.74.52.66"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:92ff:feb9:4fac]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MallsBalls"]},"Identity":{"Case":"Some","Fields":["O43pt/r8vUIfdjX6FwhbyrMSceI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DilSg1Wb8rG33PuTwKp3aX5h9zZcvl/lpoSfYe5C2Ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:42"]},"IP":{"Case":"Some","Fields":["101.174.32.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["grill"]},"Identity":{"Case":"Some","Fields":["O40psFpm5SUCS91phdWrDt5E0Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bBD2uIGST6UrEFSLbL+bxqp5X2SGlzgsyVLekR4nKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:54"]},"IP":{"Case":"Some","Fields":["144.202.57.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5c01:a8:5400:4ff:fe21:4663]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot"]},"Identity":{"Case":"Some","Fields":["O2ocm2WqOV0hYA+AWga5mViFSH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jeY0TseZFd1NVrYR/ZnzRkSP8Ms3NWYksU/rPgx46Yc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:21"]},"IP":{"Case":"Some","Fields":["121.200.11.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recyclops"]},"Identity":{"Case":"Some","Fields":["O2dfXbjDaubbWImujaGs313VGg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6XHrWF5oR87EvhOrwYbrhjQcUa2DL044ssglRJPPI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:20"]},"IP":{"Case":"Some","Fields":["172.106.12.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay1"]},"Identity":{"Case":"Some","Fields":["O2Qv9/45FcQuIERaHHJadbqgqeM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aHuyI47x9Xp/iHs2f/47Pe5PaNkvBcLTUzDITVTozIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:04"]},"IP":{"Case":"Some","Fields":["5.181.48.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:3f:58c:18be:1dff:fe6d:6f5c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForestIsland"]},"Identity":{"Case":"Some","Fields":["O1V+Pwwp1DOakErYxkH1ghUf73E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qfm7utFbI0xuJSEPNijzHRWL9CubceOy3Bts+6wzYWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:39:09"]},"IP":{"Case":"Some","Fields":["190.211.254.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx4"]},"Identity":{"Case":"Some","Fields":["O0xXKfgpyi6JW4Gvg0pj2zNtD/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G77yT2oKKaNxSmqxFJKkaKvCEhDpyz2yah5Plbild2o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:46"]},"IP":{"Case":"Some","Fields":["66.23.227.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Baldur"]},"Identity":{"Case":"Some","Fields":["O0XbAjaWny/SjftFwC3P+EtO6A8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P9pc2fgnSsY2GJ+l+U4Rt4BsUdE84NTGrUbT6ugOulI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:58"]},"IP":{"Case":"Some","Fields":["83.137.158.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9015]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeTheChange"]},"Identity":{"Case":"Some","Fields":["O0Rlm5pLOAURxeqH72Qest/e3Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9aR0opGHilZ5nCsO6eVYvjcCUcRWFRHY4yyCcaC3aDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:28"]},"IP":{"Case":"Some","Fields":["188.141.60.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast"]},"Identity":{"Case":"Some","Fields":["O0P7TyN+vjVwywa1AMoei0bur6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f0rR6M+MaKJLgLUjKdkgurCoDBuDi1ob5DkNPFgRIE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:24"]},"IP":{"Case":"Some","Fields":["107.189.31.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f6b7::1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange009de2"]},"Identity":{"Case":"Some","Fields":["Oz9FG9WPltwOjrfQHyCfyIA8M98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELe+of555fxOsga6wAX+2cUxynUfYLtLeHLv6oZMATo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:39:54"]},"IP":{"Case":"Some","Fields":["173.212.239.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2031:2233::1]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["millersound"]},"Identity":{"Case":"Some","Fields":["Oz7T+M+lAJ33mdCsRbUMQp1o+qI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQIw0SDCba1yoPtlY0iEwoNmGfGSR3VyaWwL1U7zUlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:19"]},"IP":{"Case":"Some","Fields":["43.131.94.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rix"]},"Identity":{"Case":"Some","Fields":["OzJ7pf5WMQ/auP+VC9beN9PQ+Xw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYCdaVlrvqYFnwZXJl+k590NQ0/VOSPDLhL4Mg6poes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:56"]},"IP":{"Case":"Some","Fields":["51.15.178.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9228]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chuckles"]},"Identity":{"Case":"Some","Fields":["Oy86SSl5p5zOTeByrc01TNoGrkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n90e9EwndN32pQWca8jJjITyqNQSsU9eUZGIBE0MdC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:07"]},"IP":{"Case":"Some","Fields":["172.241.23.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OyC10SCrjMF4D0MhbcnGBR7Vw4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N0HLcrhjw97d/+8ta0Jowuzj8sqIm04YrPI8FXc8WZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:29"]},"IP":{"Case":"Some","Fields":["93.95.230.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal1"]},"Identity":{"Case":"Some","Fields":["OxoF/6ZOU/4DHQmNrQxSdWOUV0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQEwjtzHQajigyvFZVYBBzWKMETcUhjgKhTV0B8a0tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:30"]},"IP":{"Case":"Some","Fields":["91.203.5.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay2L"]},"Identity":{"Case":"Some","Fields":["OwfFAKwX57Wh7mFmE+EEoJSrh/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h+UAud9Ds4WdLMqWUe5kYmzQQwySAobAlgAmWLFJ2Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:19"]},"IP":{"Case":"Some","Fields":["93.118.32.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:2c:fcb7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gustavienne"]},"Identity":{"Case":"Some","Fields":["Ovg5DT9LgQPaKXz9UUs1dAeBuH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXA+yTeF3XRMWWWR9QagjQrj3dVUZlSIPM6FBAuIA/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:37"]},"IP":{"Case":"Some","Fields":["51.15.2.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Ove+9yeUG0uQNN4IWAfOq0VNUys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkqAP6JkphZiYNAFgfwV4VSrzO6h3yWdKo0fliZXbS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:33"]},"IP":{"Case":"Some","Fields":["185.220.101.58"]},"OnionRouterPort":{"Case":"Some","Fields":[10058]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::58]:10058"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tordotcissincdotca"]},"Identity":{"Case":"Some","Fields":["OvbMaPy5cZFercHLZWxaxXiJy9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uywktiPKS3t9mxOe3sLfHloCwBTktGu6rMjeUSaKKl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:14"]},"IP":{"Case":"Some","Fields":["45.73.2.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lumipGoesOnion2"]},"Identity":{"Case":"Some","Fields":["OunyKOFUDW9zttye2BashM91VZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e1Zx4uzZxhZZiR8/un3B3ML8XgNzBodSaMt011L2yQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:40"]},"IP":{"Case":"Some","Fields":["37.120.178.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strypsteen"]},"Identity":{"Case":"Some","Fields":["OtK6sIXlILv7BdpRMTJ6SUTW/sI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pk6wH3tE+2zAV7H18XtNnZdn3vWCHqCSsucuzfb46wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:48"]},"IP":{"Case":"Some","Fields":["65.108.197.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:9904::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra18"]},"Identity":{"Case":"Some","Fields":["OtKf4SQbc1lfmbosbYMK8LaHQEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vc8WihlnajOA/J+CEHat+32JdLz9+unNt5LygGIYfXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:21"]},"IP":{"Case":"Some","Fields":["193.218.118.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::145]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OtDgmeoPZLYgK+47c3qf5dVUo8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jHWZ1DvLv7yvmuATU81bAHAgFlJAI8h5dfzM2wDL6lI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:29"]},"IP":{"Case":"Some","Fields":["185.244.192.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antifaRelay"]},"Identity":{"Case":"Some","Fields":["OqqeWWq6IqZ5ZY9FRE8D0SXK5Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJtkfKG3N0yfvqLbQwMGwz5iLt60AR2qnclEZSBe4GY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:12"]},"IP":{"Case":"Some","Fields":["2.58.56.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Baltic"]},"Identity":{"Case":"Some","Fields":["Opvu9am1hiFSqAe4D6jcuR0VtGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O91KyXFbgp756hxtUidU08TBBxbqtcA3gEytwtTUYCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:24"]},"IP":{"Case":"Some","Fields":["188.165.26.89"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[443]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pasquino3"]},"Identity":{"Case":"Some","Fields":["OpTvv0oiCzWpLQpbSoDWMkw8MGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RyRXRMstJiojol5eI6nRjj0jpQ8sqqBcKis+IuSRX9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:21"]},"IP":{"Case":"Some","Fields":["209.44.114.178"]},"OnionRouterPort":{"Case":"Some","Fields":[32967]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ellen"]},"Identity":{"Case":"Some","Fields":["OpLNV542Unya99sZ7X1BUS4waaY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BOIel17r3IwHucNo303mT8vodmgvAnzbDpTJ6hMVTDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:07"]},"IP":{"Case":"Some","Fields":["129.100.38.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViDiBox"]},"Identity":{"Case":"Some","Fields":["Oog2slScVb1ishN9FLdD7qTsBEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l5rtJnXPMWdL71yQeqePvcrwMhP0AfooT1BbC1vwsKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:22:58"]},"IP":{"Case":"Some","Fields":["46.142.149.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["colon"]},"Identity":{"Case":"Some","Fields":["OoVXsGf75T8Wi76qfRTRKYrlKlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7dXaC6Yn7mT+CqX8CUKdBX64X6pnBLDZMindKgyq8Sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:57"]},"IP":{"Case":"Some","Fields":["62.141.36.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:24f::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv18"]},"Identity":{"Case":"Some","Fields":["OoRFC4nBtkQxePmP8asvsELrazY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K9ttdEKHGSLGF/8PBFqmZ4sMPtQ0r0V9+Sa/5ciITbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:40"]},"IP":{"Case":"Some","Fields":["162.248.163.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0186"]},"Identity":{"Case":"Some","Fields":["OnsHSF4vTcRftXdhysWfosVWqv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4r/vyTfe0B8trOn3T7t6QOiVRDfyBhBrGLI6+TqAhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:57"]},"IP":{"Case":"Some","Fields":["185.220.101.186"]},"OnionRouterPort":{"Case":"Some","Fields":[10186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::186]:10186"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sotlar"]},"Identity":{"Case":"Some","Fields":["OnUoQ24N2WdfsSdQ8+3iPPdPSss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1FI16m3uH7VAYM+mpmYURYDAVVp24xmqHTowO5AxRGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:48"]},"IP":{"Case":"Some","Fields":["185.63.253.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RMK"]},"Identity":{"Case":"Some","Fields":["OmOCCgFFkTXSpmGIJ4GZEw9rABU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JNXW2gc+7LUss2Fh/3j99kBBC950/l26a5zkZasfcww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:27"]},"IP":{"Case":"Some","Fields":["46.4.101.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:935d::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["OmCPJ7TWVnWjGYYt1/joRB4LSmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bP4t09428z1DfM6K56HSf9h5wBK13N1TNgv3jiMyYK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:35"]},"IP":{"Case":"Some","Fields":["185.220.101.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::194]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYLABSUKTOR02"]},"Identity":{"Case":"Some","Fields":["OmBsaNgMJxV/9gQ/lZSWWmlb2ak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["74658hY/mzbmAqMjMadV2OuQYnucPp7aD/cJGup1ER4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:10"]},"IP":{"Case":"Some","Fields":["213.171.212.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FourthFantastic"]},"Identity":{"Case":"Some","Fields":["OlPh40/0yA13TGoMDB/4+52rcCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2UOfZX2avXCFmanhkjQI34XlPJS8ht9k/sO+sTcxQSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:54"]},"IP":{"Case":"Some","Fields":["185.142.239.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["40e62fcce23032"]},"Identity":{"Case":"Some","Fields":["OlHjKjA6Dgo6uKocy+mP+HkeI0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YT9586VTqa242AA9/xwDg3MIgDhiN5XElSwCTO07dEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:55"]},"IP":{"Case":"Some","Fields":["93.43.195.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lttao4532"]},"Identity":{"Case":"Some","Fields":["Ok/fa4iVAhLnTUx71A4CHU6qAog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kdrOiKErhHY55IatB7hIzfAHqWEwAz27KL3Okk5+wtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:28"]},"IP":{"Case":"Some","Fields":["172.104.148.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe39:a130]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Intrepid"]},"Identity":{"Case":"Some","Fields":["Ok5iA7FtKRp+Ki4mKwYtq3DlOOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GlGeaFa+P0k3iERO4VzsLuOIQXKv5zQF3UfsVe2WFtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:11"]},"IP":{"Case":"Some","Fields":["87.236.195.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritico01"]},"Identity":{"Case":"Some","Fields":["Ok0T9SpMmhOtYNlGFdTAsvX2njw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QbqvzyfYrPLqhu53hi+i7FCNaQo9cL4GCXcXPFQAezA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:15"]},"IP":{"Case":"Some","Fields":["179.48.251.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HexchainBest"]},"Identity":{"Case":"Some","Fields":["OjTL2anngTvUZwWRpjE3fBr87Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKEEWeRg7cr1oCoKU58wam5cO+AwR2b0Ua/LgwM1Wo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:06"]},"IP":{"Case":"Some","Fields":["107.189.12.79"]},"OnionRouterPort":{"Case":"Some","Fields":[20199]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3rcsRelay01"]},"Identity":{"Case":"Some","Fields":["Oirg/Zc4Ipa5r59UxSRj7sm3hfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iOe8jMRCHBKs7zadfC9Bgb9Dn4ibMq7hHbPj+ASgJQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:08"]},"IP":{"Case":"Some","Fields":["45.148.136.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::d912:7ca]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["commonly1"]},"Identity":{"Case":"Some","Fields":["OiY/6ClaK2r5vSWwu6hURk8fupI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ouwKXO2NRzh3xq+Wu6BzMd6gKmWGsbNareKKHS/+p0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:03"]},"IP":{"Case":"Some","Fields":["85.239.40.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex90"]},"Identity":{"Case":"Some","Fields":["OhvGXfA+zVD998/5xaTgSfy5wa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIrnzSlf55h92lX7Isue2bbCMoDKxrQc6gMuSaSzIEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:06"]},"IP":{"Case":"Some","Fields":["199.249.230.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::179]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TokenLow"]},"Identity":{"Case":"Some","Fields":["OhujsIE+H9EYM8n0MPNQdmKlj0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yiZd3RPhYGr53fjjQGgnfTRLrMLoan+9v/cayYUC3LQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:43"]},"IP":{"Case":"Some","Fields":["37.205.9.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc03"]},"Identity":{"Case":"Some","Fields":["OgXjW7HlnzGLaEp0cLdCeFrrB4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h24aCsHTSA/+nbmNi+VVgNbyTdCLN+3mXedl2Kf6fFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.100.87.192"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OgSsiWnlXfUcjRHEmr8YoMyEf8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWeWSz9EMhi/qi7h1r4gYBKa7BVaKtYogOdmXnSHInA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:42:17"]},"IP":{"Case":"Some","Fields":["145.239.41.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shhovh"]},"Identity":{"Case":"Some","Fields":["OfCWlh7SV2l1yGbUUDc6mROv3JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUSjOiiU61mQkBkalJHZHLecvkNMqdfPgJa5N7oCh6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:58"]},"IP":{"Case":"Some","Fields":["198.50.191.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ManInABlueBox"]},"Identity":{"Case":"Some","Fields":["Od8uaANyC8B1D6aYcqPj9DIQi6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PgGgDRozYf4qt6baBHrDIvTiUIYJB0Zw7GEMBOwjzTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:33"]},"IP":{"Case":"Some","Fields":["5.147.107.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay5L"]},"Identity":{"Case":"Some","Fields":["Ocb4M9SwlSR3DTZV34JaESE8oKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OMbTFerblttPSGtGGVa+niVQPqzAH8kSUDxjOW+yUPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:13"]},"IP":{"Case":"Some","Fields":["82.118.23.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9404::2ba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra13"]},"Identity":{"Case":"Some","Fields":["OcN6/JCNErt5s062KYkpvFHC5lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HoXAkxAmImFL3w7zMVHSWm84RkV7lpenl1cuBt8yno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:50"]},"IP":{"Case":"Some","Fields":["79.136.1.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viajante"]},"Identity":{"Case":"Some","Fields":["ObUhxfFsmEQA7sxOL4O/Juc/HR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7MMieqQF0aqPqTEzOb6LOBjKW16+f8nQlVqTm//4CLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:05"]},"IP":{"Case":"Some","Fields":["144.168.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["OatZB+zc/HVOlwwPoTLSkkDtD7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVpxfKxZCTOi+m4Ai5dkinR9B6MK9mn1kdPZYjTAmh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.57"]},"OnionRouterPort":{"Case":"Some","Fields":[10057]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::57]:10057"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet2"]},"Identity":{"Case":"Some","Fields":["Oas1TxK0l/zUQ7hb6rW69LORz6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BGX/8nbMdMY+Ifx6ZuEnEdGLjWsKZ6mMVU6yCUag+wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:26"]},"IP":{"Case":"Some","Fields":["40.68.148.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shentora"]},"Identity":{"Case":"Some","Fields":["Oag2pdTh19K57lrWhkzueZqmMEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z7YQTII4N7+HgQ3ntPqn1+uUEiE772LNzCgDwx5hDDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:34"]},"IP":{"Case":"Some","Fields":["65.108.7.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trixie"]},"Identity":{"Case":"Some","Fields":["OaVRzRiBURR9xNGVI9BqCbUofCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1L7r93NjOh+4/uQkFieb2oh3xgNF2I6zjswSX+mXmpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:17"]},"IP":{"Case":"Some","Fields":["76.10.179.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GloryToUkraine"]},"Identity":{"Case":"Some","Fields":["OaU5uOVFn3B+9RwuZLGvepRMe9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7d4vEA4hX+ws/CBnJGqYhYpGWlM+lVBp5enGNi+kLtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:47"]},"IP":{"Case":"Some","Fields":["176.36.151.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:d0:f04c:d1::5851]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis66"]},"Identity":{"Case":"Some","Fields":["OaGPMbMS5cshF4EJB2aTTBz9qzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yE6mhqYYMaAwHO8YefLUEzE8bVEwuunmyOoC9RaxvAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:18"]},"IP":{"Case":"Some","Fields":["37.221.65.169"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::3aed:102]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynR01"]},"Identity":{"Case":"Some","Fields":["OZBqip6TmA94vgkti1GVITF/zSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["62vGpQ6o825MKF7BxUd7OcTl01Zl7ATadQ8bwak4DLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:39"]},"IP":{"Case":"Some","Fields":["185.216.179.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:4000:4f:9dd:941d:48ff:fe68:323d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nanahira"]},"Identity":{"Case":"Some","Fields":["OY0sP931olQpnuZuUi8n6KK0xuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/r3Zb9qZ3c17VKTz2QdyRaJxrVbcCf5+I6BdjfFjAIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:44"]},"IP":{"Case":"Some","Fields":["203.153.72.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["OYt6xEfYxlmjXUGN/KQBP9pmU0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8CkFjqogSeTO6shYIskwx/yzW4QXMl6iKlLiykqC/uU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:32"]},"IP":{"Case":"Some","Fields":["92.38.152.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:56::140]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc05"]},"Identity":{"Case":"Some","Fields":["OXOmeMSAzuXpMmih+cJUPAOx48w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SFxV6bPqKCjA3Bz0yQDnmbqHuWfDyh40aeejBWcgsak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:48"]},"IP":{"Case":"Some","Fields":["185.100.85.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["OV8a1QfcJosUjcXilVgzky3DOmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o3aNSq3AdhzGuLudln0lNu8ctqsX1XmXWtfOcEKhWBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:33"]},"IP":{"Case":"Some","Fields":["108.175.4.33"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:80fa::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myLeek"]},"Identity":{"Case":"Some","Fields":["OVGjOOxoe4se1T5ld0CJAtFwkco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+QSiHVaNxwACUFCgo6bm3R7A5UAExvVcHd2eHyXaKlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:27"]},"IP":{"Case":"Some","Fields":["50.220.99.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DemonsysBackup"]},"Identity":{"Case":"Some","Fields":["OVGbTi3YZV9kw0kHOa7WbqI9b1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZkdiRypl5sghg70lD7bcl91S1clsdtxxFZNoGZNulVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:27"]},"IP":{"Case":"Some","Fields":["39.109.151.40"]},"OnionRouterPort":{"Case":"Some","Fields":[33801]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3003:2006:2f59:6574:1bee:6a42:530]:33801"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MSChaps90"]},"Identity":{"Case":"Some","Fields":["OTGhuIKdT2VgQAf1G342iZMYees"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LMwoEuNZs0eDT2ZSuXYQvPn1zygJTzPboDkPLlSt9KA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:11"]},"IP":{"Case":"Some","Fields":["82.68.0.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OSvv3LAmpWjgd3huef3lianA5FE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZyKlvgV40bCKRU/X4L+SV4vNTdYWJ9tdB+yWbuVgGK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:24"]},"IP":{"Case":"Some","Fields":["185.207.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["100UPSkid"]},"Identity":{"Case":"Some","Fields":["OSUF4RXUQVZ05zHWviFeKuXlbVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UdX7wAauwcJCqHTRiGsJHH/qil+aNZ7urXvBQbB3cRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:25"]},"IP":{"Case":"Some","Fields":["144.172.73.16"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra73"]},"Identity":{"Case":"Some","Fields":["OR8niytVVIuXQQrfvQVdB515jgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/CLgz6hVUI0rN07YIRSrjbZ+87fdbWd8hjBOOtYqEYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:27"]},"IP":{"Case":"Some","Fields":["146.59.18.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metamoderncow"]},"Identity":{"Case":"Some","Fields":["OR0onfr7Zzs2JkalGXNEfrcG38Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fffaENyAG2XiiO0PYpXmZmwP9xXDtwyuCNQehzjNt8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:21"]},"IP":{"Case":"Some","Fields":["159.69.159.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:a4f1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalcat"]},"Identity":{"Case":"Some","Fields":["ORDFygzFr+IscJ30caK1trSu3Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J1Sxity4YX+X/iWuryhn8FZRaSzevBKfQwum385pGdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:27"]},"IP":{"Case":"Some","Fields":["46.182.106.190"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[110]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mixminion"]},"Identity":{"Case":"Some","Fields":["OPcy3TSaLlkHhDRlEWKi9CAZNKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3mP4Gl5MEdmun35ygWGYB8fRZEQn0AxpA+UM5qlbYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:53"]},"IP":{"Case":"Some","Fields":["144.76.81.198"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:192:3c5::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElverGalarga"]},"Identity":{"Case":"Some","Fields":["OOznE+JZvdYQgOiffh9NOZtwXDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c7hWnjRYkwEPjbTqxY1PePIYdOblZxQJOZiHAWUvGHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:54"]},"IP":{"Case":"Some","Fields":["187.131.34.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ONB9EOMRWpKAB2p6R8FpeCxB45w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tCA5gAw7GeVayJD1uFxGcABMtvi2ZnRWGPlmXTtnQGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:41"]},"IP":{"Case":"Some","Fields":["23.128.248.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::4cb:a9ff:fe1a:b229]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TykRelay02"]},"Identity":{"Case":"Some","Fields":["OMyVqM6SpZHUpXeTWb7/uhP6G4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o9BT4KwDvEYzXeduRslCTNi0JcDfAHbDuau1uQt8VzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:54"]},"IP":{"Case":"Some","Fields":["95.216.101.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:151f:95:216:101:247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTISupport1"]},"Identity":{"Case":"Some","Fields":["OMoo2LmYDM2auDDTAGu2mM6Zsg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpBACh93eyr6SJ4GVbAkukhDnLtwn3mmLzjyI4Bkgjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:40"]},"IP":{"Case":"Some","Fields":["82.221.128.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captains2"]},"Identity":{"Case":"Some","Fields":["OLcV91jk9kKZB+s1LbbxVBlgFSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XET8EOIBXEHj6CMiEZG3nCZ34L8XzRpKclB/RzZWivc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:55"]},"IP":{"Case":"Some","Fields":["45.58.152.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToserBan"]},"Identity":{"Case":"Some","Fields":["OK27N7hq423OHA1rafZCWbrOJrU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eL/6u9Akq8HIS0asGhOzTZme2Uv5ew6F3UHbK5uH0iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["193.159.78.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["apx3"]},"Identity":{"Case":"Some","Fields":["OKQrjXwOY0b0pIIWF3QK7obqiFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ekFZbnuoalWe9TEKdbowKtSIXzfNFIJS4JR2QCjuiZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:03"]},"IP":{"Case":"Some","Fields":["185.107.70.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["folo"]},"Identity":{"Case":"Some","Fields":["OJ++lrpInZOvISTrmr4zn8THLxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bm58WZRS38qZ1MxTJEZs8ok0YmvhNtoe8D8h05ibgWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:01"]},"IP":{"Case":"Some","Fields":["185.117.118.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OJ0VcJCNF81qKhqCdpTyADrQlLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IOMU1sTHaR+KUbQ2ZhETUugnTKaM1w5ImVY7R6kg8bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:33"]},"IP":{"Case":"Some","Fields":["5.45.102.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["krf44relay"]},"Identity":{"Case":"Some","Fields":["OJlVw6/fd9AKQSaAf9HxxOTu794"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3RWFW8YC0xBM36iy+zSH1NvodKqu/j/aeR2H7bM+GF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:57:42"]},"IP":{"Case":"Some","Fields":["23.119.167.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Knowhere"]},"Identity":{"Case":"Some","Fields":["OI0GQT6VxshhvI5IKDCtkuV89Oc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UCEqNXPqNNEHztD3uYhDv3O7OIFIBrKLZ62xkTiDSM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:51"]},"IP":{"Case":"Some","Fields":["213.32.16.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OIobNM4AIx1IrbrjUf0jr1/Obb8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["olkofxBP0UHgMd1oP27PnnraCrnw8eQglCfn9j4cLwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:58"]},"IP":{"Case":"Some","Fields":["164.132.75.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["OH31PJQLihLFLSMQxNESm+S1SLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M2M8q6OXrGyuJ7FeITb/5meXP/ev8/595jDK8kkZeQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:36"]},"IP":{"Case":"Some","Fields":["23.128.248.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::43]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra48"]},"Identity":{"Case":"Some","Fields":["OHz8C5Dqz/5KgM2KoFfzZOnR1XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I/UnuJ/YlzuaHDMPTI4Y70d0dEhf9nfwr/VvpJ3BE/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:43"]},"IP":{"Case":"Some","Fields":["141.136.0.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OGP9U4ZY9mcWMeeM67JpP7Qt+n0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zYkRoXpKFxHaS5t/vHkdwbp0paMCO8G6eYT+QjGqBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:14"]},"IP":{"Case":"Some","Fields":["5.45.104.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Swiss20210824"]},"Identity":{"Case":"Some","Fields":["OGGzQsBOq9SjHfovnsvTudneHbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ir/xFLm/tKGmS7kVPgGOFlwQZQhY1Ushjxjt88Mv15A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:24"]},"IP":{"Case":"Some","Fields":["178.39.63.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[9080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rustlove"]},"Identity":{"Case":"Some","Fields":["OEcTlPBrK4ZAR2gZPJKTE5Yv3C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wx5wkIZZ5lQR+kf+2PaG942V6GzAQONEbBuOW06mE/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:09"]},"IP":{"Case":"Some","Fields":["51.38.81.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solatis0"]},"Identity":{"Case":"Some","Fields":["OEN1m1zgLf9+CKSjQQSGUZGEPKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HosFTQ00+oprd24oHEVCEDAjJhs62DwOpKK8/cA/8yQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:42"]},"IP":{"Case":"Some","Fields":["83.82.235.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1c02:1109:1600:c8fe:c0ff:feff:ee16]:9031"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torNodeCom"]},"Identity":{"Case":"Some","Fields":["OD1uNNm+qS6XCSsTSnCO70dt8uQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJgKquwABsY8k6L8j1bn9juftgjZuMlNz/83MQW8nr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:09"]},"IP":{"Case":"Some","Fields":["204.17.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OBlDgWxLZl4GrNgiv4YkIPeGmJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GlLy8PO15iNCia/BAxMPnp1Oh9MxTpFADdzv6G+fUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:59"]},"IP":{"Case":"Some","Fields":["194.5.249.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowMaster"]},"Identity":{"Case":"Some","Fields":["OBaysvbiOur473BwR29qtrlqr4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wABM7BEiULND0nNwvC6E7pNkyHyF4eA0K7ol07NAFO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:48"]},"IP":{"Case":"Some","Fields":["190.120.229.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["51Pegasic"]},"Identity":{"Case":"Some","Fields":["N/T8wyWkDK7Z9V5ks7tjptlegpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPJ1Zd+PV9ZGlqczekwrb28fTAvW9hf6bFrQcHYLM1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:51"]},"IP":{"Case":"Some","Fields":["188.74.69.163"]},"OnionRouterPort":{"Case":"Some","Fields":[5724]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["N+Wpx6fMTErcKl+aAP8DHRWvpMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["futYpGoFrsPapMXFOacHUCGotMgUh/tZ18MFVuxS1XA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:43"]},"IP":{"Case":"Some","Fields":["160.16.122.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MunkRelay"]},"Identity":{"Case":"Some","Fields":["N+EGJdRIUBgZZDEOJzddaktfgkI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubR4pTF1LqqMzdkjzVeH6MRv97hCqtcVwjxRjSGVUDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:40"]},"IP":{"Case":"Some","Fields":["92.32.139.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pKD9jZ19N1LiTvsjOF3"]},"Identity":{"Case":"Some","Fields":["N93xkG7j25YTCnF+pUZnxk2seN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XtzMEkWTpiSEq9bQuFbasjxUUWhz6ZgRDI13N/fAayo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:29"]},"IP":{"Case":"Some","Fields":["202.61.224.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:c1b::1]:9032"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blueblazer"]},"Identity":{"Case":"Some","Fields":["N92bZwlK52/V4hVL5yZMxFPrY/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zC3KDhMuVoLY+161AsDZqHgl5dW9+OCfNgCvawn4Udk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:08"]},"IP":{"Case":"Some","Fields":["50.31.252.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2606:2e00:8002:0:216:3eff:fedb:9944]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de4"]},"Identity":{"Case":"Some","Fields":["N9NU7msi1vsO6ZIYdMBXgFnWkBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orhqsV11XE7yn0KUcFyqzb4W06I+5pAW9tCx97Ym6iU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:29"]},"IP":{"Case":"Some","Fields":["45.142.176.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elefant"]},"Identity":{"Case":"Some","Fields":["N8JcHpyp9IctU20ITt2lf2a0NDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNC1ZYuZmucEV3qs29n+gOp0FOvTOgzPbiOExF90tNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:45"]},"IP":{"Case":"Some","Fields":["109.70.100.67"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::67]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsjeufh24h7"]},"Identity":{"Case":"Some","Fields":["N8HWZVnQx4hOPSH33rWMddebmKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDc2gpetTBEQvtetMjnwyu/rW+iPwv8mu7h90T74duU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:49"]},"IP":{"Case":"Some","Fields":["51.15.52.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["N7jsuVP8PD4Jciv7ju/QM03fRig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5GvOnYXKoqkK+Z4j1xx35pUVPYsi4VgrBoYqzbWKrS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:08"]},"IP":{"Case":"Some","Fields":["178.254.40.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:49::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra51"]},"Identity":{"Case":"Some","Fields":["N6idMqX9eD/8pQuCQo84YxQwp6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BPBo9zOr5HZ+43tL2IrkvnC/wF8l8hAEE1bpVC37QEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:12"]},"IP":{"Case":"Some","Fields":["139.99.239.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SharingIsCaring"]},"Identity":{"Case":"Some","Fields":["N6DS5IC8zCdSOH5p6JtAturhS4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cOl3ysTH8u+YtR5jI85eU2lxqp67yUi6GvXQDJJ+318"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:47"]},"IP":{"Case":"Some","Fields":["185.16.60.130"]},"OnionRouterPort":{"Case":"Some","Fields":[8430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra55"]},"Identity":{"Case":"Some","Fields":["N4rT0ImgHsgC8WWpNhIrYLWxA14"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1lejFKTRI1SGqiNn8SGAM9GbwhWAZXeXAwVgwsgi4U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:51"]},"IP":{"Case":"Some","Fields":["213.164.204.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhult4"]},"Identity":{"Case":"Some","Fields":["N3iPDAByikTtggJ4DYUyI+3KPT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["88sXCEAurYKAXKAmNNGNasIF2mcsyfZ+HtTLSCLdc2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:17"]},"IP":{"Case":"Some","Fields":["5.255.98.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:ba24::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pentium4UserRaspi"]},"Identity":{"Case":"Some","Fields":["N3PJ8Yj9kl5uxOkrAOx0mADod2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/xgZ35Zp8yJslMWlkOzJ2gEDxmz+wXAqTRnYuIHHpfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:11"]},"IP":{"Case":"Some","Fields":["94.199.211.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0b:3da::3]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woh4aegei7Di"]},"Identity":{"Case":"Some","Fields":["N3E89+F+AwJnYNHVUDxpgZ816+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Af9kioGZgZsoUt4IKfz1rBz1We+GyzbIlVEHwLUpiqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:44"]},"IP":{"Case":"Some","Fields":["107.189.29.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["N23HytWX06TLtlGZnPrQ533Jrow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G7WbPROtcbCF4q6SQifEnb3iGKs8LTRip6Omly3twik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:54"]},"IP":{"Case":"Some","Fields":["104.244.73.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f78b::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ebola"]},"Identity":{"Case":"Some","Fields":["N13LstvZTlJjvAwBXwyedWZpYX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ICIRNsveukeAE291JU0XtJ7FTWJ/5ZFRoZcP4aDD4aM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:35"]},"IP":{"Case":"Some","Fields":["64.79.152.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["N1wm7YvKjCY4Zkt6xE62hMs+GtI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4cDHrALVRd7a2o0BnTx+LvrLRi1l8cR6JChIlf/FW3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:45"]},"IP":{"Case":"Some","Fields":["45.87.42.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rasptorpipi2"]},"Identity":{"Case":"Some","Fields":["N1NUCRAt/+kvPayAnkcOYrwn8d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0cOKiYRbxd7D5jmfCE1EYMKXIhZc0+p0OutfKLzOke0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:06"]},"IP":{"Case":"Some","Fields":["84.240.60.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Katze"]},"Identity":{"Case":"Some","Fields":["N0nuy1Qy/JHOwuYs0q4JeAGs9Y4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t8UxBJLOhiUPlC7h2vi5mmjHCPUrM5p2KkqZuVOuntE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:39"]},"IP":{"Case":"Some","Fields":["104.244.74.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f71c:7d7a:8bf1:dead:beef]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["techToMeAboutIt"]},"Identity":{"Case":"Some","Fields":["NzvE0lVEOE1hN2rd9BUW79lOFDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ibdNyqPuNjhGClajq9vMLwsWKTAA0Tzy6eM5fpQsHoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:43"]},"IP":{"Case":"Some","Fields":["129.159.199.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1191"]},"Identity":{"Case":"Some","Fields":["NzRmDcb36hEWv8uA/CP6xWgL2AE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Auz2Zh8M3om8JWwfxBFEBtzXifevLg7aSF+WfbUkPT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:11"]},"IP":{"Case":"Some","Fields":["185.220.101.191"]},"OnionRouterPort":{"Case":"Some","Fields":[11191]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::191]:21191"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fsm42"]},"Identity":{"Case":"Some","Fields":["NyhlIYbE4YPyTO0G99NVRzI29DI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LuJvO08QV35JK2mToBTxn8XAbpD+aXolpya88uFjiDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["95.216.213.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:743e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["maupin"]},"Identity":{"Case":"Some","Fields":["NvpwhbjPcpPe+oKowCgeDuQ/O14"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9+kd8RZR0OxsfH4iFdRYXkJ0oYWw+P6emBpg4vZdko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:34"]},"IP":{"Case":"Some","Fields":["176.123.7.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BadgerMoo"]},"Identity":{"Case":"Some","Fields":["Nt/hxhbzokogO1nJerAsoYY9ASY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fbRCXEnUkORCbAUS0C7vSZKCZGXO3OBsw4b2Grz2WPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:15"]},"IP":{"Case":"Some","Fields":["51.198.204.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay1"]},"Identity":{"Case":"Some","Fields":["Nt0tHwU5OsMDn854NANM8Y2L+A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8uur1U855SoharigDJ5EhUqj2PNsWEQHTyI/jA1y0ZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:19"]},"IP":{"Case":"Some","Fields":["216.83.209.55"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0169"]},"Identity":{"Case":"Some","Fields":["NtigCIW8v+sXMSYHwId7/9kzDPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5dRwdD/eP8riCgNDrFWEr4l+Yb/OlHsJa/Q5KE7w1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:42"]},"IP":{"Case":"Some","Fields":["185.220.101.169"]},"OnionRouterPort":{"Case":"Some","Fields":[10169]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::169]:10169"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["only2"]},"Identity":{"Case":"Some","Fields":["Ntger2WKtK3MIft/TyqZskx0i7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t/RrYjDNxsZdg1DYTi1HQkWDbdx9jveWDwvGZ9UH1AE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:53"]},"IP":{"Case":"Some","Fields":["45.150.108.105"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex40"]},"Identity":{"Case":"Some","Fields":["NtaEeDZsuGJ4ZnV+vOf7PBf8HLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmYrJRGBuwvAXQwXGHaCcFQxGlABwsN3iodwM6T7kec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:10"]},"IP":{"Case":"Some","Fields":["199.249.230.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e659]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schmaller"]},"Identity":{"Case":"Some","Fields":["Ns+wfgcblKf/DnEuU1RSBsV1FpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aLM7rMRMYpaanLVqF6XIPmZiti47lC5PAbjMhC+WLKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:50"]},"IP":{"Case":"Some","Fields":["77.182.140.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beluga"]},"Identity":{"Case":"Some","Fields":["NszUgbPZ1yCXMjqK5p6bY9EkoOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58Jp3MvmNPFZwUVCWTrT4CTs4KGsRDGlpZAwHDtmIuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:58"]},"IP":{"Case":"Some","Fields":["45.35.194.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToRussiaWithTruth"]},"Identity":{"Case":"Some","Fields":["NrL2HZD1nGmqBSKLbdNkVXW2/7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y09FAjjnsqEuV85UPn/RFTXIIFORcYjaOwEntV5W0Gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:11"]},"IP":{"Case":"Some","Fields":["51.159.181.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:481e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["NrIVt4JpzEhjC/2inDLRIv0mT1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9sEC4FYDsKYh6dDTPaEO69enoxiHPR9JpxHyDnk160"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:50"]},"IP":{"Case":"Some","Fields":["23.128.248.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NqetFJjcysRxmgjIKib4VPPiJbE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy7wt6nnXhWkKV4cwTnurcUYQ1JQu/HiJXx6om3lPZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:27"]},"IP":{"Case":"Some","Fields":["45.88.200.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:45:88:200:0:95]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NqDlEXikJ4frVVgMnV8a+MPDuUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cazl1Y6oZyLJCNo0UCfxOzK7rc4u+rZoE118aayPpZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:17"]},"IP":{"Case":"Some","Fields":["91.223.3.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Augustiner1328"]},"Identity":{"Case":"Some","Fields":["Np4QpIsK8EZJiqSg8f+NA5VJu3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uz5xBGxUGA4gvYEnhl7VrwYsNcbjMyH76qDD2mP/juc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:12"]},"IP":{"Case":"Some","Fields":["213.164.204.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["begonia"]},"Identity":{"Case":"Some","Fields":["NpzA5yblO4Vm8l7renLk+Iohe5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g02mCZA0guMeAvJMsPid0EZjuEbDvpK0vfYn+1CRIic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:13"]},"IP":{"Case":"Some","Fields":["212.227.76.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:8678::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallylittleserver"]},"Identity":{"Case":"Some","Fields":["NproiiaGfFpV8RzD/ZAGvdzIy4Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rk7X8xUmV4XmjGsT/eiPzj2YV60N/x5famXF1dXWi9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:51"]},"IP":{"Case":"Some","Fields":["174.92.39.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["NogAHXVGkQH3Sl1VGkmw70EPDiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5G1Db62uvTDFgUcShULES2kiun0+JJ6y7qZMdEJLkdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:35:14"]},"IP":{"Case":"Some","Fields":["162.250.190.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:1b8::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex33"]},"Identity":{"Case":"Some","Fields":["Nof+x+c/Yaxm964lHn3ua72MAlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ypqqRMzkrwdVlF8bIgN1jwwy+8Et+n7B21urBx+W7y0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:27"]},"IP":{"Case":"Some","Fields":["199.249.230.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::113]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KZL303"]},"Identity":{"Case":"Some","Fields":["NoS4Zzowtz/tKANZxfup+VRpDUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KYcYhaWZspuENNSaJJKpR0E24lDiUSOi7lLvlGb9e1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:50"]},"IP":{"Case":"Some","Fields":["99.122.201.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["honestmistake"]},"Identity":{"Case":"Some","Fields":["NnknNaG5fCqMJNyM0wnPpigxhx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6Flvpz0rqvHn7px/VDkzq7SrIUAPacYC/4hDD6qjlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:17"]},"IP":{"Case":"Some","Fields":["78.68.162.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToRReRRoRR04"]},"Identity":{"Case":"Some","Fields":["Nm39586M4pWtU+Zv02UaVb2RNXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HB3QZoSb0Wc6jbANbjZIHiA2UcHkJr7+LfjkI2Fa2pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:01"]},"IP":{"Case":"Some","Fields":["141.148.42.164"]},"OnionRouterPort":{"Case":"Some","Fields":[12843]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1182"]},"Identity":{"Case":"Some","Fields":["NmvCtZDK2cUNwF4rvD89fI/SfvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EvVuJpBjoObvGp2ibsdB2QCd3kexGrbRiepZ4RGbGzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:15"]},"IP":{"Case":"Some","Fields":["185.220.101.182"]},"OnionRouterPort":{"Case":"Some","Fields":[11182]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::182]:11182"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bojoforpm"]},"Identity":{"Case":"Some","Fields":["NmqH1EH3xKbAjUskBNH38kr/X0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLybhAIcTZdvXOH8w4sjpdthUy6MAHA5VWKGoMA3bh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:40"]},"IP":{"Case":"Some","Fields":["212.85.84.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LechWalesa"]},"Identity":{"Case":"Some","Fields":["Nk4YhIRpOFxZSDdvr3eKxh1M+2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+hpcm12GKi1OZ/EHTzACdagVzxWcmuEZj7HD9umHfmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:11"]},"IP":{"Case":"Some","Fields":["89.163.143.8"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:c95::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torridness"]},"Identity":{"Case":"Some","Fields":["NktsSUg6eu1Pi6Z1bF5rKIGv3zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwGMjvTCs5QCfnSma5gyWtnv5tUfguxiKpUTHWb92X4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:22"]},"IP":{"Case":"Some","Fields":["212.227.190.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:86cb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yatr"]},"Identity":{"Case":"Some","Fields":["NkFAeMUhuhkWgmD23yPJeZWXYok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vix+3ADGDNk2V5/dHUF3nC+XRm3qIcPvgxBRZPAbETg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:56"]},"IP":{"Case":"Some","Fields":["142.44.247.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taine"]},"Identity":{"Case":"Some","Fields":["Nhm+XTjwfsCXkr/x4nlFXGyVyH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bbsfUq0sIQFX2qv3w1bSgqShdsUAAOcxMkgUMejq+yA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:31"]},"IP":{"Case":"Some","Fields":["130.193.15.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit3"]},"Identity":{"Case":"Some","Fields":["NhlvGt8z3W7qbF+tpp/EPBjQXFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdiOXCX2RFwJl0ZkQj6WEVJfOi1vu1ZTeVMHCwSZgUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:38"]},"IP":{"Case":"Some","Fields":["185.129.61.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryMay1"]},"Identity":{"Case":"Some","Fields":["NgpKoSDYst8eA/5hF/OnJdtJAvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH5VM4cuCAwOGmpxNhC6RfzjBqcvi06CZKa5fSA0G2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:03:19"]},"IP":{"Case":"Some","Fields":["46.4.32.184"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:3641::3]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fauringer01"]},"Identity":{"Case":"Some","Fields":["NfWgsvAX/Qn36/M6VlpT2OssknI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ub72JGxFuh5AKF709IqkEJP/Uz3z2sOJjJyl42+gtDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:49"]},"IP":{"Case":"Some","Fields":["194.13.83.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:43:26f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hakkapeliitta"]},"Identity":{"Case":"Some","Fields":["NemPsLWR3zs1f/7dPa2xDa0CfX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LqnsxgOU+eOrT16tiO3chAP5BxwFivLERCcdJ0brhzA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:05"]},"IP":{"Case":"Some","Fields":["37.228.129.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seabreeze"]},"Identity":{"Case":"Some","Fields":["Nek6WHw7ZbBoZWnuNz6LwFB/fg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hERtI4L/mZ2y/6lwNwRrk8asQFVSYHZUqYJ7Zx8jF64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:48"]},"IP":{"Case":"Some","Fields":["185.15.92.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b08:0:2::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berni"]},"Identity":{"Case":"Some","Fields":["Nd8nuimYKl9BjHUr64GCEmGIck0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVeAGBqr4Be5IyXcFHWfbGuFm+t7ng/Wpnw0/ylLAiQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:54"]},"IP":{"Case":"Some","Fields":["83.170.6.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b10:1000:8101:0:242:ac11:3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cryptocat"]},"Identity":{"Case":"Some","Fields":["NdoEqSY0ryOSy6avFY4AtViaHPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ezxZyegcZD7/chQNWHqum07G96vWWHSrQpnwEMmgX/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:39"]},"IP":{"Case":"Some","Fields":["91.64.0.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Goldenb0y"]},"Identity":{"Case":"Some","Fields":["Ndf0RhCZ4ukOrKQ1EcDK0AWRiFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bu8oArTfA5wwWjLC2TxI2KD3IE+6AYedlTArvatmxN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:19"]},"IP":{"Case":"Some","Fields":["91.172.215.29"]},"OnionRouterPort":{"Case":"Some","Fields":[16385]},"DirectoryPort":{"Case":"Some","Fields":[17779]},"Address":{"Case":"Some","Fields":["[2a01:e0a:335:c750:387c:20a2:a70f:33f6]:16385"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chilli"]},"Identity":{"Case":"Some","Fields":["NdVik7bX3uKkPpHYfrozEgtknZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ExIrLbwo0VbcN0hWKszQBCTsiaMr3klksbqTIPoor8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:04"]},"IP":{"Case":"Some","Fields":["109.70.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::14]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip3b"]},"Identity":{"Case":"Some","Fields":["NbUD+1RoFcye3pECJVW10O0E44k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PMnYcQS2v7+3cKwRWbI6L3JIv68IWcmPnmh859ItVEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:11"]},"IP":{"Case":"Some","Fields":["185.220.102.250"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::250]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anus11"]},"Identity":{"Case":"Some","Fields":["NaqTxW6ldpIZrDgJ+ewlhuE5+XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LoRo3GKGJqS1/p4cyNmBaieuItQuQ+YEzNZUJE8CVWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:25"]},"IP":{"Case":"Some","Fields":["89.161.26.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[9001]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["NZxSMawkUtNltkojwngXod/uVrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k6sYy4cYoIHSNMiuPAFpK3v6oK6FxewqpKQTzgpbHV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:35"]},"IP":{"Case":"Some","Fields":["45.154.98.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LibraryGhost"]},"Identity":{"Case":"Some","Fields":["NZeCx0peX593P6KQfSAjU2i0nnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WCggz/9yW6dAd9krlm+oiN5hDqeNRPgV1GrY2NARXfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:45"]},"IP":{"Case":"Some","Fields":["198.98.57.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NZN2geIRaWaq1r35qjXFXYxRIiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MiRLDkUZSn+k0ffQomfqVlVKeHG4GCgCXR4clPTu/nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:55"]},"IP":{"Case":"Some","Fields":["23.128.248.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::585f:f7ff:fe14:4acb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taz"]},"Identity":{"Case":"Some","Fields":["NZGeGXxsfzcqJsdH1mrKajlkKz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nMmAAXQNt28MHbsGA/MJrAUF36J3dh8nw/X3GrVxfv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:48"]},"IP":{"Case":"Some","Fields":["193.104.220.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:13c::35]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["NZBowDF2WJJCCmcvKNUGxBNBqnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h2wyDuKMxzYLAfG6lFNR+T9sjhTM3mSomxNRAkeT+KI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:07"]},"IP":{"Case":"Some","Fields":["185.194.142.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowjackets"]},"Identity":{"Case":"Some","Fields":["NWmGFZaJb6zYhg/2OK6JWRBahsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bw4sx26KzcKGJrWM7ab/uSCrKanTXsUAJnw4oAWSBsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:04"]},"IP":{"Case":"Some","Fields":["104.217.249.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NVaWKelAc4/dsLGzfIZE3svk2Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GnFaEeJ4l6zYMmxX4OccmAxxkMXZQylsTNDa8zwMjuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:50"]},"IP":{"Case":"Some","Fields":["109.86.70.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[14823]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flatcap"]},"Identity":{"Case":"Some","Fields":["NVNAJz542sZksjKOxG1hmY15cUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jFzvsbfatv3OMoQhrvvE2uPzw+HCvOTFoLBGku83Bno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:23:58"]},"IP":{"Case":"Some","Fields":["178.79.161.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe93:4455]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Speicherprojekt"]},"Identity":{"Case":"Some","Fields":["NUf699ZSa76BzAf6ytYSqZvdmHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aDt2UYJAeXmUUEsr8bR++ihdyk1WbTRDcsP/zfRFo8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:37"]},"IP":{"Case":"Some","Fields":["5.147.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GuruKopi"]},"Identity":{"Case":"Some","Fields":["NUSes9AlzCRgH7Q4hPlpk2fWd88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpPynoJlzegrYcnw+d0TRFk53og7p15A+Gdq+WBqjxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:55:26"]},"IP":{"Case":"Some","Fields":["118.163.74.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["BadExit","Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imherefortheparty"]},"Identity":{"Case":"Some","Fields":["NUCk3Tnc8xiEKylc3dSRGJJPKlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aUNeZjHZeQ5iXPmJSnna6bUGMdImyX0q69k9h2DpBuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:08"]},"IP":{"Case":"Some","Fields":["212.7.160.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeLoveNotWar"]},"Identity":{"Case":"Some","Fields":["NT8IDzoQJ5OtO+PNt9AFKfFvI/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zDvyLGflxdd7PhyXsduMA+NXDoOSFyp84BaV4tOHjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:39"]},"IP":{"Case":"Some","Fields":["5.255.97.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fogbank"]},"Identity":{"Case":"Some","Fields":["NTn5b8zcZFx4AQBvkoZMuv1KjrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zzTUQmcUxWgWnoj9YNWUL4KDshrnnfvrFxfl/xpyFic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:16"]},"IP":{"Case":"Some","Fields":["213.144.142.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:ad1::36]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KarnRelay"]},"Identity":{"Case":"Some","Fields":["NTd0UILjtNvz74uAuu+i5nXTbaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QMdnhEfXcBsmd187TyDCZtUbw4YzBwGRf/irQuPgkHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:57"]},"IP":{"Case":"Some","Fields":["101.182.5.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privy14you"]},"Identity":{"Case":"Some","Fields":["NTNatYOSECY314ZkEzPH1d+smGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmBTIpyURh4RyQoPP9UEl/0o74pMZ1dsfXC0RCyrrdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:42"]},"IP":{"Case":"Some","Fields":["185.225.210.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasedRelay"]},"Identity":{"Case":"Some","Fields":["NRLAyvd/hLxXANaOnU0OceJctK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLiddaFASujQRkyF3uLZK2gCIVsAhL+aDJpy3kioCj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:18"]},"IP":{"Case":"Some","Fields":["199.170.132.74"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:31:6969::]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchierRedux2"]},"Identity":{"Case":"Some","Fields":["NRFvGiwLAEcjYZL7nbcNBV1x+Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Un7vAX5GdL/DuHZLJZQBHhDP0Lc5aadj19OWIqKKEXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:43"]},"IP":{"Case":"Some","Fields":["107.189.12.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuchur"]},"Identity":{"Case":"Some","Fields":["NPrnP0ExTm36IYHifxzNQOKTv8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6Fl0NmfC9VF6Hw2+wiILfjIfsrJArwJDOYU5zItw4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:56"]},"IP":{"Case":"Some","Fields":["37.120.176.124"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:85e0:d875:d4ff:fe5d:c267]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theeldertroll"]},"Identity":{"Case":"Some","Fields":["NPSqlz18lJ8vTGUhNCmi0Pe3IWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WPu+0I1sl/5iyWqS6641xuqS13lAhD2i/oe89DLNkgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:45"]},"IP":{"Case":"Some","Fields":["164.92.218.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fulcrum01"]},"Identity":{"Case":"Some","Fields":["NOZRC9aeiaacgufAZaagYv/6RqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lWgYQe9aMFHOFxe2cn0rgcsSlXacIDHgnzbsfQXrUng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:03"]},"IP":{"Case":"Some","Fields":["78.150.231.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ishouldeditheconfi"]},"Identity":{"Case":"Some","Fields":["NN5/kCilPVI413mwDa90OP3h16A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B4bSmuLulD8F/yMf0LG5TziVlIMrQ42XUFJdLjiaJ3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:17"]},"IP":{"Case":"Some","Fields":["195.201.33.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:9640::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["NLgNcD9NY1AUa2hOZtliojqDARc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ZnLnpWWOjwZCmqcOZSldehmmy+kSZI9e9tasmHxzEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:30"]},"IP":{"Case":"Some","Fields":["185.183.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigitalBordel"]},"Identity":{"Case":"Some","Fields":["NJX0iNGLHV+IqjHm5IR/0ZQ8bxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9V33zBMGJuB8qcmkNi0CFS0NOQxjCwvo5ZY55EhbuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:06"]},"IP":{"Case":"Some","Fields":["5.39.90.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hecker"]},"Identity":{"Case":"Some","Fields":["NIQ59KPZWebRSBBw2oGhNTQ0Gcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5hf6J2mDxZXKA84yub4aQQjUuSRQ5ZrqS/zaARA8MdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:30"]},"IP":{"Case":"Some","Fields":["89.163.143.8"]},"OnionRouterPort":{"Case":"Some","Fields":[445]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:c95::1]:445"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["NHJT0dUkbLHEz4CIxpgv53z3q5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6hn/d2yvQtdQy9gO7wnhPE6vEPhPTF1RbSVbLgwNVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:07"]},"IP":{"Case":"Some","Fields":["86.59.119.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:86:59:119:88]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aopelrelay"]},"Identity":{"Case":"Some","Fields":["NGA1JI/6TMbJHFbAhxafcY6OBsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kYSAferfRWUoV0ikEWVBILOEBXgBFa0bX2PYW0Y9bEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:31"]},"IP":{"Case":"Some","Fields":["134.41.181.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mewse"]},"Identity":{"Case":"Some","Fields":["NF4Dzvt78EYT/KFFMvONG7ntvUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7cknRtlpEXjl3879/NQBfRIV0t6y1SMQfk6MogFU9hM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:56"]},"IP":{"Case":"Some","Fields":["45.128.133.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedPlayer"]},"Identity":{"Case":"Some","Fields":["NFVhbzyte9XxCTxiqXWe5UiTOcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y1I7cT+Po1+diHE+d/Ac/FS8lnFikZTiD7XP2EKsNe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:03"]},"IP":{"Case":"Some","Fields":["81.95.11.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4a0:72:1a::2579]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SilentOwl"]},"Identity":{"Case":"Some","Fields":["NFIv0LwR5Up1o96lYvYqrWcXF18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xt7OQDtDKvTqUeVjfZuTFKvLtuxl9LEnNXWwRJ+SM0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:06"]},"IP":{"Case":"Some","Fields":["195.201.36.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:5fec::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DandelionSproutW11"]},"Identity":{"Case":"Some","Fields":["NE/nIKT3cwqhXUkNO3/5hg98384"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVfIobsGq6EWfeq6O1xTqQ75We4NON3ie9YPa6w24ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:48"]},"IP":{"Case":"Some","Fields":["84.202.47.23"]},"OnionRouterPort":{"Case":"Some","Fields":[36499]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4652:5f5:0:bd84:5904:79ef:3fd7]:46489"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EMTR135"]},"Identity":{"Case":"Some","Fields":["NE+WavkCmGIn2mwvUj1Tu9YEiSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it1AUYxvQpovcVf9rVZwxxW96+qQxLF78JyF5TXF5MM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:27"]},"IP":{"Case":"Some","Fields":["130.162.208.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NEqLxP0CgAgCk7Jlku9j+KWSef4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wqtfoYaWHEAZDVNALYynCNb/CBYbS5Uas5t8esm28Ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["94.130.15.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9119]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:1386::2]:9119"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxeneu"]},"Identity":{"Case":"Some","Fields":["NEer6LtJMDvzb+AAezyK2IvcTTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/y0Qh5vVPm05BI3LM6Ju4ngb+P7RfiT90z+oWem4yhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:54"]},"IP":{"Case":"Some","Fields":["107.189.10.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MiRelay"]},"Identity":{"Case":"Some","Fields":["NELxgTnktuOryyWY3yV5CesQaZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["79HVWTACE+4x6bwPAiAP+0pFcGqdiqvaFlsMNM/Z1QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:41"]},"IP":{"Case":"Some","Fields":["24.247.81.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BringMeToLife"]},"Identity":{"Case":"Some","Fields":["ND7AN9YzFQr/zIRx6AWquuGx2HE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/kvUjVuz7QEQm9/a25Hz/iIHIw6fZwmC8lOfZyF1gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:33"]},"IP":{"Case":"Some","Fields":["66.168.117.249"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay15at5443"]},"Identity":{"Case":"Some","Fields":["NDT2qNKdFH2QH8zUa8oDp29Rga0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZBLFlEbfUGbRPO0kUiWWCR6HErz3TAZ8KbGgIvpjsB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:16"]},"IP":{"Case":"Some","Fields":["140.78.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nerdbyhetzner"]},"Identity":{"Case":"Some","Fields":["NDGUDftGQ6PuP0Rlv/JlXKm965Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlDPzHsoYTO2tFtnZmiQ7939zOBlwsUJZBxcNps1yvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:40"]},"IP":{"Case":"Some","Fields":["95.216.154.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:121f::8443]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aergia"]},"Identity":{"Case":"Some","Fields":["NCoax2TYkkjmZFjAd8/2aNBf/zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["saUgxAtAWjJrgfw7crvGQ1Bq3pP0YDs8wsBl7zFi2qI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:14"]},"IP":{"Case":"Some","Fields":["37.187.98.185"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[49030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:22b9::1]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["NB+s5SqbV13YkgQIUkxenLY858Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s8CcwD9A4IdnYi25JKMLzX25CS1BWOJKDIMxCoIeApU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:07"]},"IP":{"Case":"Some","Fields":["23.128.248.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::28]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hector"]},"Identity":{"Case":"Some","Fields":["NBxkuVFieiBSxMlHUw/q7k+/qG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VegVcBaXTJGdZwCpfkUBcoxfTlBAc4vO31gfTJORtBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:06"]},"IP":{"Case":"Some","Fields":["65.108.195.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalsAG"]},"Identity":{"Case":"Some","Fields":["NBfx8kp8pAM9tRRhAyGhqfQQzDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r+0wIwwElSROTiRXTOI/YDIEGNFKUea5fop2UeIcTYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:48"]},"IP":{"Case":"Some","Fields":["93.95.231.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harambe"]},"Identity":{"Case":"Some","Fields":["NBM8wxks91OAibFFEUAN8huloHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CyRPoB7PN2smAGS6S/vMZ3HqCpUuQMgGwXrD9DbG7dM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:02"]},"IP":{"Case":"Some","Fields":["71.179.6.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NAxZVAJJ0U3+VHeTwIcIsJhsr2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wBBff/i7Lj/FBhkPvtQcfAVprvltumnKBHFLpAeyd1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:40"]},"IP":{"Case":"Some","Fields":["144.172.73.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange005nl2"]},"Identity":{"Case":"Some","Fields":["NAsJrM9FqYcRq7Bngg4lovIUUsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZnKUWrcyLYlbbjr2+eWdUSUeG+qVHx4zMRsyENpeS2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:16"]},"IP":{"Case":"Some","Fields":["51.15.4.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h0mer"]},"Identity":{"Case":"Some","Fields":["M/Ih46kwb6CKhX/iZuviNyDrYCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mzaNb7EFO3h0GZQE+Jn+61iJa5O9IkyIBmRxLnFnTuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:45"]},"IP":{"Case":"Some","Fields":["178.17.170.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:20::eda9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["popular1"]},"Identity":{"Case":"Some","Fields":["M/F/H1EuamkPB85iFm5Aa78szf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OsZJ7xkKeOoUS9EJNVuKxcYxe+qpqGooys+79Fnn+70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:14"]},"IP":{"Case":"Some","Fields":["45.58.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["M+mzb0jbIPQ3V4QzlzFW8BhUQrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nrD2gnrNFBg3SWoNxtmfH3zmCOVW9I0Ys2MX6EzVu+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:41"]},"IP":{"Case":"Some","Fields":["194.26.192.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["M+b65QLaPwz8GFDkKb93m+6O6CA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WynQLe5imStQ74ouOWJNiiowh/vHhMNj+RNzYCSiTS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:29"]},"IP":{"Case":"Some","Fields":["220.71.7.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2HG"]},"Identity":{"Case":"Some","Fields":["M9ujMEM+KRW9DuZnh6SIY8gYwLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["deGRjNVTDAA7ZO0TvqYLkBLDo1+OM38gerlU8NqlPSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:13"]},"IP":{"Case":"Some","Fields":["163.172.68.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["M9ajqL2XdyP9TAUxUfeNhSrGJ3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["blWXXXV6sGVUIu+FFlPlWapJVH+Wq8+4jHVe9BONlDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:43"]},"IP":{"Case":"Some","Fields":["51.158.231.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mischmaschine"]},"Identity":{"Case":"Some","Fields":["M8McIBEnHecf+iiPN6OtJKZRnEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SXIf2E7eAhLvtcnQ+kY0F0N01XRRBHrK8tPIdBcPIx8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:16"]},"IP":{"Case":"Some","Fields":["188.40.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:543::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AGoodTorRelay3782"]},"Identity":{"Case":"Some","Fields":["M7+Bv99Zc66qMe5EX1GIv3eQXp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UyTO5fW1MixmKwWYasM9HbPTjzKdvAb3I5ikMG/gqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:09"]},"IP":{"Case":"Some","Fields":["51.81.86.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::1147]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["M4hjoYUgB8IH7UXK5KRnq0cOCiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJ1TglZ8REzZwl612RRGwFjQfvU4ajVp7TH8fe5W0+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:32"]},"IP":{"Case":"Some","Fields":["23.128.248.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::81]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CROPOURTOR"]},"Identity":{"Case":"Some","Fields":["M4Qi7oN5C+VLMrPqUBtp/vdkNRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRt/s4eYaHw+1JNTUJs/z8hWLtk+MPYuprv8WPxnsHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:17"]},"IP":{"Case":"Some","Fields":["78.141.237.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7400:844e:5400:4ff:fe14:1da9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra53"]},"Identity":{"Case":"Some","Fields":["M4M3e1IiBOabH6GlYn+Vr2QOkQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bs7dTRDszX6hV5Gwe0EEgJBucy0ViNbgbUr6MNHEV7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:05"]},"IP":{"Case":"Some","Fields":["107.189.2.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["M3w4CqO7DM3GPqG0XQJQY0g+f6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cmm3zRxItzsRSZfq///eee6mQwr8oU7AJvbYbxoTxu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:31"]},"IP":{"Case":"Some","Fields":["23.128.248.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DowntimePatrol"]},"Identity":{"Case":"Some","Fields":["M16ZMiIgT2tIFxNFBklKZEHe+2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9btYU7SqXhIFYEv9JPvF+RQYXmLflvvXyMsTw5Acdok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:59"]},"IP":{"Case":"Some","Fields":["185.181.60.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:181:60:0:181]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6i0n4d324"]},"Identity":{"Case":"Some","Fields":["M10rtxTydB6uZ3RbRiNoPXOFCHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZadoSqOXiqvEOy4c6KxgX41Uvvoym48b6hdzbsBgI1o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:15"]},"IP":{"Case":"Some","Fields":["178.254.13.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["M1kcYRGMa7Hu0uIYFK8eG24aiYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mm/JDKCTQ7qk2aLM8zCAwxuz9I+NgG4WhWHn05PEkCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:21"]},"IP":{"Case":"Some","Fields":["74.208.33.181"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["M1MRxg3LOKE3FYin8STfDS3C9Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmwJbVAD2m3/JK3N4KUBsxoXUtPWiV6DXy8P303km14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:03"]},"IP":{"Case":"Some","Fields":["185.228.137.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hastyice"]},"Identity":{"Case":"Some","Fields":["M0g5wxsvg0qVKIBzWRTGMQSLOxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dC1DKyP7GSES/f8e0yxRPafBix5EpajSe38d2YzxRvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:08"]},"IP":{"Case":"Some","Fields":["91.203.5.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["central2rave4you"]},"Identity":{"Case":"Some","Fields":["My3JC3k48VqotgfAWMZssAV2LN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNV0L74PRcCa0d7rV8Yg86RXqA8WDeoKMGWSnKKYdaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:03"]},"IP":{"Case":"Some","Fields":["91.66.57.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute05"]},"Identity":{"Case":"Some","Fields":["MynnNsyhZEnQLVZ9Qmg78f15hnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ae8fSxUFH9vlKSDktQoZ7X+JJqN43Pm1ZbnB57SKiEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:19"]},"IP":{"Case":"Some","Fields":["162.247.74.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MyY778fmoNaVwEk4C0xypvusuFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/b8+8hr487qEyEra6QDi1EbPaiuiXArPikUcgJzRJGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:13"]},"IP":{"Case":"Some","Fields":["194.156.98.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0138"]},"Identity":{"Case":"Some","Fields":["MxzuGfMRIEy3Mv+NtWlMTfMvOyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6/Exjao/quYXLJ2k1kSxI0t41ilxBrM4AehJNPj9kqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:14"]},"IP":{"Case":"Some","Fields":["185.220.101.138"]},"OnionRouterPort":{"Case":"Some","Fields":[10138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::138]:20138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MxQgCsK/YP/YKBFPSiPURINPFNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["udiktGsdD4Xj1dopwAi9Tuz26oaEt6dqxIgQ+umcAls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:37"]},"IP":{"Case":"Some","Fields":["96.245.115.66"]},"OnionRouterPort":{"Case":"Some","Fields":[7936]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CHRISTOPHERSOFTGEM"]},"Identity":{"Case":"Some","Fields":["MwqMLlPuZN1h0oXhlSdllQf7JHk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLPjFX0mFjlzqbAq6FGM2ZkuVrxuAAGXA0BajM/rGR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:21"]},"IP":{"Case":"Some","Fields":["62.12.118.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber08"]},"Identity":{"Case":"Some","Fields":["MwpdT51dUya5qsEsM560knnWAjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bTaQhkHfGNy0fM6wTq3ynYZZ1c3nkAnqfUknUQ19V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:56"]},"IP":{"Case":"Some","Fields":["185.220.101.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetwozz"]},"Identity":{"Case":"Some","Fields":["MwDY5ZFL3t4+7SrdLO/WEQA04uY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7iUJ4cvwKPliIRy3kvfFjRem856+p5P4uNMG/Cht7Z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:08"]},"IP":{"Case":"Some","Fields":["217.160.58.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:67b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SetecAstronomy"]},"Identity":{"Case":"Some","Fields":["MvYl44f4KnQ1nBSQ0mSVtvxHLLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2L8cxgcyeQevXsetkI4jWH9umpGH/ChHC1Rdu1O7ZJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:34"]},"IP":{"Case":"Some","Fields":["85.183.154.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber11"]},"Identity":{"Case":"Some","Fields":["MvCgGcccJoduyuNV3YQVo1WoaSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlKnak8ToZagEPAinlk7GJm4nCdeOd/fg64pLPIq5hU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:53"]},"IP":{"Case":"Some","Fields":["185.220.101.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::6]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ndnr1"]},"Identity":{"Case":"Some","Fields":["Mu6RHZaL4+AW7KVyux7Qqe5D/C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ScElSfkRzt4GO5QBspZC4NUIJ16o3MHy3TBVIgrA4Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:50"]},"IP":{"Case":"Some","Fields":["109.105.109.162"]},"OnionRouterPort":{"Case":"Some","Fields":[60784]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:948:7:2::163]:5001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spiegelberg"]},"Identity":{"Case":"Some","Fields":["Mu0bVV+xQNbbm/Gv+BwrZrMh0qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXrGigOx6mKmPa0UDRjqIDaej+POyCFCaJQKDkuEipI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:13"]},"IP":{"Case":"Some","Fields":["51.81.56.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Mudd9RCvcLF1Y1Q8Z+iNPgLIX/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/2gUohTBqyo/XhyZZmjb1narBwP/Jdymg8tlzXtkXOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:46"]},"IP":{"Case":"Some","Fields":["23.128.248.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams05"]},"Identity":{"Case":"Some","Fields":["MtYYFK/LpGhm3B9ALuKWfZrBEj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cLhet6iKwd67EmHHsSobFRKP2b6A9cutzxqm3YdTkFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:40"]},"IP":{"Case":"Some","Fields":["45.151.167.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::c]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["MsPCVdZL8Fbl4qK4iJts5NjCdkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["crq5RaqobT2rA+r80wWX6RbccZukj1PZ4qp/5//D+98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:42"]},"IP":{"Case":"Some","Fields":["185.241.208.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["STEALTHSTOSE"]},"Identity":{"Case":"Some","Fields":["MsFZN/Dmx5YTQJHq9UoBvGr7oYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9GSZZG9nR+YRZIPexOeu8ELdvJ0+u0WORVnvKuk8H7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:34"]},"IP":{"Case":"Some","Fields":["82.196.126.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BahnhufPowah"]},"Identity":{"Case":"Some","Fields":["MsEQC17xmlv7tDHo1CeBwtCdMcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNJextCFJCHOVPj4W8n5ev427QdISJBsbwU6z5bAPN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:19"]},"IP":{"Case":"Some","Fields":["98.128.173.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1145"]},"Identity":{"Case":"Some","Fields":["MrQqm4ZfO1UilT3Ry7Pa239T1bA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ax+oI3YCBiJ3rXUAFjPGKjcUU6lv9zIXN/DS6NpmEU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:49"]},"IP":{"Case":"Some","Fields":["185.220.101.145"]},"OnionRouterPort":{"Case":"Some","Fields":[11145]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::145]:11145"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aare"]},"Identity":{"Case":"Some","Fields":["Mqzoghc9+jcEpyFfimJT6tPhbJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hR77Ie2uTg2pyTvCjE9Cay4W77Ax8M+skEQOFv5N8QU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:58"]},"IP":{"Case":"Some","Fields":["85.195.232.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KittenInTheCloud"]},"Identity":{"Case":"Some","Fields":["MquupbLsbt598H+89UyaZ4ahs08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j7kgRxT62oEQ3XuoAjYjGXNdHiYk+H1aUtVQyLULnQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:41"]},"IP":{"Case":"Some","Fields":["45.137.68.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:5100:e1c0:503::44]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carnavafoire"]},"Identity":{"Case":"Some","Fields":["Mqt4tQ9bDY0V0A7xhwrRA5rTEDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["copwSjPmCWCNFf1DMjFiZPWcf7Oa7UqT10mFvOyeIdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:26"]},"IP":{"Case":"Some","Fields":["216.10.247.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt85328"]},"Identity":{"Case":"Some","Fields":["Mqoz28bWvoENlpdQyiJuTDzTG9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WxkPgzr6enNhZcEvh7S26uu/pajFFz6jaYDX6Iajess"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:56"]},"IP":{"Case":"Some","Fields":["185.245.60.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["overseerorwell"]},"Identity":{"Case":"Some","Fields":["MqoKrOFc/p7TuQfctp7EiYj5xa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U0fqBiA7T/v9VpkD33hq41/pG5QvSLCPgu18U7/bpG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:17"]},"IP":{"Case":"Some","Fields":["51.81.254.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["MqemXB8KJyhcqF+gND9Dk+qvTsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/kATPJGoQkd/M7ZmII/QOUbjaiD8lci4m0NXrR/D8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:53"]},"IP":{"Case":"Some","Fields":["51.254.114.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3000::3724]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tordom"]},"Identity":{"Case":"Some","Fields":["MqQ7DBU8Ipj9vSSjspjak2jcc7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/kFbjhuro6WKjiRi5HY31ynciZllqFyd29X1ww+sVeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:26"]},"IP":{"Case":"Some","Fields":["95.216.168.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1997::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["rebleulay"]},"Identity":{"Case":"Some","Fields":["MpgBTzGbZ4KfUbK34IiTuQ7k7Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ll0VeVQrhDk4DNzMzko4TZ7gpdzyObIiVnCyBG7W4HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:23"]},"IP":{"Case":"Some","Fields":["212.51.147.50"]},"OnionRouterPort":{"Case":"Some","Fields":[26401]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:5af4:4646:c23f:d5ff:fe67:aba5]:26401"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["MpKa5BcwEzDtdoEmgeKDXShUy0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imU/wVBkVvVAVoWWQF2GWi765ZO3ZHdkaVnuTzBqTPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:58"]},"IP":{"Case":"Some","Fields":["23.128.248.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["Mo7TqS0c1iFlm02m4hD8rtgTF0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lgf9ASSmpcE8IT0R+ry4qAxUbOnWi24BGJSAd2gZ7ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:10"]},"IP":{"Case":"Some","Fields":["104.152.209.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode2"]},"Identity":{"Case":"Some","Fields":["Mog2CJB6VRLS9oXkBLTiIDge/1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oBJ3fL85wM1PDhFqTXWa3RL1dawOX+CT6Ak/k7qSY7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:01"]},"IP":{"Case":"Some","Fields":["188.68.36.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:ab7:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer17"]},"Identity":{"Case":"Some","Fields":["Mof3nZwWh79/Op0UA2nKZNL9ERs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YHUP6Jr9+WUD9fgBaEAdRLZaRqU+r6g4X46eCpX5hbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:53"]},"IP":{"Case":"Some","Fields":["185.243.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8166]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:41]:8166"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rhea"]},"Identity":{"Case":"Some","Fields":["MoKEdvT4ThXEK0w2ClzY3kw8K+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmmTUGPsYkWY4Ixc3TxxjHqLkD26xDUDj2SLRd9HUmU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:34"]},"IP":{"Case":"Some","Fields":["104.131.11.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::104:9001]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demang"]},"Identity":{"Case":"Some","Fields":["Mn9YI0OLjshuwzNVwUfYRVqxwUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z225cukcJNprFB4L/edithAQdkC7Hzkrs9lO2ZhaCHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:42"]},"IP":{"Case":"Some","Fields":["93.115.91.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bouncer4u"]},"Identity":{"Case":"Some","Fields":["Mn8zf5RVNQS6jxC+ftkIOIFUjPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hNK4WDiKM22lmOBbzAn91yPIjQk2H0/BeLz+uBXkah0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:51"]},"IP":{"Case":"Some","Fields":["104.149.129.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG11"]},"Identity":{"Case":"Some","Fields":["Mn31JqBBKciqVbXzVRvEasS8em0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YJf0E5PwfnmjDLp6ZLknHkHbZ+mzTpb4t3m9b+4GpdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sonrisas"]},"Identity":{"Case":"Some","Fields":["MnQq1Xw9JD2gcTu239ghGN9XPS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdhBbeTLBncugwrJDdqfTgKcss/Hk52yuIQv2Xo11Z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:51"]},"IP":{"Case":"Some","Fields":["15.204.141.95"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MnIYYYze3M7khxjG9/H1+pinfmo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSQp+lOoZqkmqMhGMwobWRuoJQlM3ZhPhME03G6N77Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:27"]},"IP":{"Case":"Some","Fields":["94.23.248.57"]},"OnionRouterPort":{"Case":"Some","Fields":[52959]},"DirectoryPort":{"Case":"Some","Fields":[39540]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex75"]},"Identity":{"Case":"Some","Fields":["Mmi0x9yNMcMP8USAQJ3W1rBwLJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1dkOwW0RxfxVJH34SbACFbUv07nvTQzbDJ0b/Sucsi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:08"]},"IP":{"Case":"Some","Fields":["199.249.230.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::164]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MmhTqnjaRn6ZfmBArdDc/4QODLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fWRe+08hP+Y6NTHJzjk7uF7ywyv5FGNbsp6El689/8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:32"]},"IP":{"Case":"Some","Fields":["194.145.150.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1578:200:10::c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MlAX0RlQaFeZDW9XMu0eKFsvaM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sox8V/BoNhMClsUZC4lJmF/Vw4DyYHFf/NRak6Cu//E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:54"]},"IP":{"Case":"Some","Fields":["81.232.62.230"]},"OnionRouterPort":{"Case":"Some","Fields":[5679]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:2002:51e8:3ee6::1]:5679"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bixnix"]},"Identity":{"Case":"Some","Fields":["MkyqZsH2NVmWQteaHZZcEHQ1lCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w29s3nopsSIvU6onqIMfathdbp64GjfWHrZlwzwS8Yo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:49"]},"IP":{"Case":"Some","Fields":["107.189.12.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sodium"]},"Identity":{"Case":"Some","Fields":["MjuwKmICQYQsWig60mF9nvo5f70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QXbaN7FJzdptHdHbxi6wpztdqgJLUU8LOtXQyGieF+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:14"]},"IP":{"Case":"Some","Fields":["65.21.246.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:33ef::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN01a"]},"Identity":{"Case":"Some","Fields":["MjkAfOH7Ls398gZ98juUkpXcXvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kZojIJroYsrH6JBZi3Kbw5qLMfiEKtfGig0x8fBPN/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:37"]},"IP":{"Case":"Some","Fields":["217.182.198.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["MjZL74c5RL5IHovMf66Sl/Xzl4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/1WZTzCxkrKemlXUfHvb6K/VAvtx39xJjwDhyEHC4xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:19"]},"IP":{"Case":"Some","Fields":["51.158.96.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Loukanikos"]},"Identity":{"Case":"Some","Fields":["MjYaHv32hNrtyMpkhDdno5X56s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["un/6c6k9j1fyrUfshnIg1zI8XDZa9du9svwoWl+cEd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:43"]},"IP":{"Case":"Some","Fields":["146.0.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AugustTORExit"]},"Identity":{"Case":"Some","Fields":["Mi5Jok99+bFd1zIF/LhMjlrPAqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXURYKIovUcoTceJdiZyrlY5nWx2f4HQUTtOZDANDDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:25"]},"IP":{"Case":"Some","Fields":["23.133.8.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2602:fbf6:11:27::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BananaNode03"]},"Identity":{"Case":"Some","Fields":["MiuzP0iHIwsHZ/VLoIpFC2jXd/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLAfsAoJ/KXDRUd9U/8ho0NOKH5sjWHXjXv+0QEkOr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:44"]},"IP":{"Case":"Some","Fields":["90.231.172.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["windeck"]},"Identity":{"Case":"Some","Fields":["Mg23vqcsBYui7vCYvxrvuik3G+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FRKX9eLbqlyDfTz7Wj6R9jy7NSEvmRoLMLll2zkYt18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:15"]},"IP":{"Case":"Some","Fields":["185.72.244.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex93"]},"Identity":{"Case":"Some","Fields":["Mg1zr2zHiYfnEHiYR7+41hwxvUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZfbkpkIZY16Yaww2VLIu6YJqfmm7wsNuv4LgstRKlA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:50"]},"IP":{"Case":"Some","Fields":["199.249.230.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::182]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justAnotherTorNode"]},"Identity":{"Case":"Some","Fields":["MeMHK+LX/sVwfwnDUWEv4reuSNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YYkH6SmiLIUO24rY6Rr/TsrL4rEUBaAX5aKZmBZafio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:37"]},"IP":{"Case":"Some","Fields":["88.80.184.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:feae:4153]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG8"]},"Identity":{"Case":"Some","Fields":["MdOR9HIN6JbFmLcjaa+IDtCG1hQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8w0TU6oEg0z5bHoM4QUodz7AWcFmE0NZMVXKLPifap4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgium"]},"Identity":{"Case":"Some","Fields":["MdJwo4UF1L+7yr9xfp+0vKbd8v8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH5xKCfhg1ABg1+Zf3QJxO66/9b6WSOGZ5swqIiwwTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:54"]},"IP":{"Case":"Some","Fields":["45.128.133.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt61472"]},"Identity":{"Case":"Some","Fields":["MbFWdhe7qN8HoSO0Ff7tp7Ihl2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nxiJKO/jrNp1EkQUoHtMfMmqg9KL4EAEePRIFR0vdRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:27"]},"IP":{"Case":"Some","Fields":["185.245.60.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XiWinnie"]},"Identity":{"Case":"Some","Fields":["MazT9GKST7X6W9IZmczffuf7AWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmN5GgEgYE1jNNirSF/VV1/hs/LP0TH6zgALZxTb/Mc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:07"]},"IP":{"Case":"Some","Fields":["51.158.146.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:213:208:a2ff:fe0c:804a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["MasEowgAkf7Mr9awKz1Gvp24L+U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GLHais/cEldD0CqsDYEevixZMYqovwjQDKQiwCui5IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:38"]},"IP":{"Case":"Some","Fields":["5.45.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notraing"]},"Identity":{"Case":"Some","Fields":["MaD69IwBUC/6wrMX82ll3xsxEBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["et+AxItvZpRS8V+wDbvHg8T5Tc8sBk1/TMeXSXRE/wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:20"]},"IP":{"Case":"Some","Fields":["45.32.129.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["MZ5QMq2TuJxB5ZTrn90VNq0UQEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6sJhElGEMi2X9MN1xR4pXh/KjrA/NOy6tjlNY+Aa9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:00"]},"IP":{"Case":"Some","Fields":["68.41.59.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strongman"]},"Identity":{"Case":"Some","Fields":["MZbdmkMRkr6G98js8d8PgOzGxok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4Va1HrPokecL3jK+xR2hPuKZpJN5Awjg9bPKJkDyng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:53"]},"IP":{"Case":"Some","Fields":["23.82.137.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow3"]},"Identity":{"Case":"Some","Fields":["MZZibUdlGuQTRVouFTVz79AN6Ug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JoXvmVR9zUdEFecGnLJwIHC8AwhHsaGnYfzgiuWMpaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["51.68.152.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redonionring"]},"Identity":{"Case":"Some","Fields":["MYy3/A6uuSMR61G1t448rUXrzyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e6LPwXZZpa5mjkynuMP8oN8xgXITsWGo4NhwDxHntis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:15"]},"IP":{"Case":"Some","Fields":["45.79.181.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:1fe::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MYytGgCzPS9llYIQsJuJN4Numa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5fF8bm6GAZ3fdCey+uoobm10hfl56owUpjHVrX7E2qQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:53"]},"IP":{"Case":"Some","Fields":["91.39.86.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP09"]},"Identity":{"Case":"Some","Fields":["MYMtQqG0fpCXBwT+bXIQ0l+h5eM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SCo3ZfMlCVjoTUV0oaMvOdjKu7tNawn3WmoWHhFwUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:06"]},"IP":{"Case":"Some","Fields":["15.235.29.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doudoubridge"]},"Identity":{"Case":"Some","Fields":["MXucNLmYATK2jcqr4JFbnFZTvgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wg5Y5sbSigElYV7C6RcYUDyuY8g9IYDjiCfh8E5E/wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:29"]},"IP":{"Case":"Some","Fields":["82.65.165.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PankyPL1"]},"Identity":{"Case":"Some","Fields":["MW3kXv+1NnHJ/VPOCZKVKEZwmik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M0kyLroBr/ySZehLuQhLJIVaGTRiyipSWpY+3nWfqBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:35"]},"IP":{"Case":"Some","Fields":["51.68.136.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blissey"]},"Identity":{"Case":"Some","Fields":["MW1qvOpSJo5he7mS0PmQlCV3C8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SZDn5Gz7QcuvWuLTYlJLoEsDCsyt1LtLGUdj0u/4uo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:15"]},"IP":{"Case":"Some","Fields":["102.130.113.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atrip"]},"Identity":{"Case":"Some","Fields":["MVH7QZ+rD9hte+T339Yg6Z4QXZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJvR9QRp1DehpB5lIW/ePS918OQ84JoL4etWVECg3KE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:48"]},"IP":{"Case":"Some","Fields":["135.181.41.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9cbb::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueOctopus001"]},"Identity":{"Case":"Some","Fields":["MU4fS2dsFeej2tnbGVlfACAoI+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S3/1gREGQO2/L+jw4E4/gxFo60SSFkouX/e1O+ao554"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:20"]},"IP":{"Case":"Some","Fields":["139.59.118.185"]},"OnionRouterPort":{"Case":"Some","Fields":[60000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::633:e003]:60000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mulloy"]},"Identity":{"Case":"Some","Fields":["MUGaZBiLyAcO6J887mqpjqrH6Og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1Y+hGPKRzaWcocopuCgR1aFc7F6C3V5LLycgQ37qAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:39"]},"IP":{"Case":"Some","Fields":["46.249.37.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e2"]},"Identity":{"Case":"Some","Fields":["MRpFM/eiQV9CNGpsj6d+b9J5WUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqNSGG2LpNbJZHJ8l7bEX4IAhwNRsw/cTsBRuIVgjZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:01"]},"IP":{"Case":"Some","Fields":["94.230.208.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::147]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["MRaDDFYHlmdHhdbnkAmGaYFx4VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoZay1qrjoNA9sznfKNjHcTx7s80Lz8KvrOFV5wM0es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:06"]},"IP":{"Case":"Some","Fields":["198.140.141.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:51]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DebTor"]},"Identity":{"Case":"Some","Fields":["MRZkUauh7KfF+ltgUZrkXHYAEWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IcwymbOfrQ2Ye0ZhSwvQjCKdcK5LJM8mzFZbFoim2TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:56"]},"IP":{"Case":"Some","Fields":["37.187.18.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:12d4::ffff]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PenAndPaperIsLife"]},"Identity":{"Case":"Some","Fields":["MQm3EuHuBAGn4Sn9HrEYS1TBCaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsIfhffrlZJDs6OM5Ivug184lRy6vDVQ+gVneD+6NRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:01"]},"IP":{"Case":"Some","Fields":["128.0.64.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tainish"]},"Identity":{"Case":"Some","Fields":["MPzIKNlOhKwWmDR4gakUmYNjT/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VVgTdjZXghw5FG4diEXVBfu9f1bDifXBUiz5x60aSVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:53"]},"IP":{"Case":"Some","Fields":["130.193.10.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["agir6yah7Bahxolooqu"]},"Identity":{"Case":"Some","Fields":["MO3RUE13+hVbP/D0nKeH4PJKqGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JKhxcVx8zNg0aupQA7zJUpGhcmxBktFjJIZRzxBPq+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:29"]},"IP":{"Case":"Some","Fields":["45.62.232.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2607:8880::1832:b5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedMaple"]},"Identity":{"Case":"Some","Fields":["MO1q+XAZwdirsVAmq99w9XfPV/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCLoc80mRH8/7ucACzozzRyghIpmBjOBhRdT16BLv/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:21"]},"IP":{"Case":"Some","Fields":["23.108.51.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["MOgBFRImDc8ET3OVNxlH9yDKUNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gwyy1OuVzHuXoUdxWrlu8oRrE51ZI+Ff4yL6EUS2W0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:26"]},"IP":{"Case":"Some","Fields":["23.128.248.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FuckYouPutin"]},"Identity":{"Case":"Some","Fields":["MNkixS7+7IruahB+NtzcZkgBLbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bAtdTTpI98LumKZkrWfB44QWNyT4uevsWIX9jLFZEd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:47"]},"IP":{"Case":"Some","Fields":["212.159.69.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["savanna"]},"Identity":{"Case":"Some","Fields":["MNRXMXeJ4gRJy8EuAvVlj6I+C+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMkhDmiGli9ZrgJDrbMnxHHKMEZUFxClZh7dGSqbNis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:50"]},"IP":{"Case":"Some","Fields":["176.9.17.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:1141::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MNEWIbxJ4totqx9FSyu6YGtDhJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rL3Iq3hThKMa2FQZ8gNCS09UtYc+GGm7z9vz44St4aI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:48"]},"IP":{"Case":"Some","Fields":["51.254.45.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex61"]},"Identity":{"Case":"Some","Fields":["MMVcSW9ce5ho4LxjSaHNViPwt18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lf5h8MSHzEzVQ+2JEIoGuux9kW1aRnFp8a2PE77HQ/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:52"]},"IP":{"Case":"Some","Fields":["199.249.230.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::150]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["MMRyRB2RCovNpXHyY3yAEZ520II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vNmPwHGwJLEs/Sc4biHGPezeKzh9lIWeWWnydqFxH7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:41"]},"IP":{"Case":"Some","Fields":["5.45.106.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CibulovySmerovac"]},"Identity":{"Case":"Some","Fields":["MMAuOSb7mhrDcCL/X/ASD5DvIjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vofsDhJi1FXVvt9dF0TuKRZ+OXly70cUsY5XfEGR1pI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:10"]},"IP":{"Case":"Some","Fields":["104.244.74.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f292:9768:4707:313f:88a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["MLKcn3BqhGa/If2QsEGe19WGhlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dAiy5irthavxx6j03J35sVpfMpjs2fSaHmHJNzABLPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:39"]},"IP":{"Case":"Some","Fields":["213.238.182.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI19"]},"Identity":{"Case":"Some","Fields":["MKd7JPJeyyjSdDzYrUIuXFKu6Y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPN6z+aTZUL60Og1JNd/r4t7j0l9SpEEi2ttT/ksS78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:36"]},"IP":{"Case":"Some","Fields":["171.25.193.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::80]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["MKVcVUL26WM/qxpx+FER9cqpUvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9TyLfFk8y6DMbmCtByiAWbzyg4uL+zooRJV54lhDsR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.14.97.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::4fe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NotLinode"]},"Identity":{"Case":"Some","Fields":["MJbFT1P3gYHJpTyVDUY04X4ledQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xVx2+kLT2ydjQSyPxxG94842Dxt5Fx+TBiDQuoYzRNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:39"]},"IP":{"Case":"Some","Fields":["152.86.13.206"]},"OnionRouterPort":{"Case":"Some","Fields":[454]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv13"]},"Identity":{"Case":"Some","Fields":["MJYeUKYNdEWhGZte6mZOYOos4wY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UertOhpbwEwtZHluw9MtdHpmguREEcIJWM2JDYf1Plo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:21"]},"IP":{"Case":"Some","Fields":["162.248.163.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratscornRelay0"]},"Identity":{"Case":"Some","Fields":["MI6irWnIfUS/tWHUPf6NeSnGyak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYu0W0M5NFdynkhQrpXcay1Sei3nAEFcn5DQtkvcgoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:04"]},"IP":{"Case":"Some","Fields":["76.210.199.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrmphhh"]},"Identity":{"Case":"Some","Fields":["MIKKWtDcfd1pOFKb18kB0MDzXE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQRLcD8ABsZFVKUEqwJI7kD552MBFkXt9BLvo7O/Mrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:45"]},"IP":{"Case":"Some","Fields":["173.230.153.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BloodAndIron"]},"Identity":{"Case":"Some","Fields":["MG8iOocASUXqWL9/TSNvU6vAW/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ww8miV8hnhDpzeePLzn6374q9rwpRt5ePVrXyDN8Qh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:51"]},"IP":{"Case":"Some","Fields":["192.99.35.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unlimitedrelay085"]},"Identity":{"Case":"Some","Fields":["MF/Jr4GOPPDWq+3Lb3X+jeGLxDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyKlJ6xHj7x7pRIlZHyezLIx6GD0YEXB0ADtl6/lanA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:54"]},"IP":{"Case":"Some","Fields":["101.100.139.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geidi23"]},"Identity":{"Case":"Some","Fields":["MFt3N/XlXYmc1Z1Dbr3prnQNs04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FkbbXI/C2MClzJE1MzbJi92B/KnoUxd0F2HzoUmHevs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:43"]},"IP":{"Case":"Some","Fields":["207.244.91.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl1tjdevde"]},"Identity":{"Case":"Some","Fields":["MFf4rl8+KI9mkpwR2Cn7PvuHmHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["008ihXMxscEz84ckxH3pWkE47edTdqCKWkDmiZ8toyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:41"]},"IP":{"Case":"Some","Fields":["84.252.122.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:9235:3f0b:4136:5142]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["green"]},"Identity":{"Case":"Some","Fields":["MFFFTNqaBkKIMPEn3fKdkJin+1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdS2tpUUkJrK0Rhe7CZElCBZz8vOsOpy3oX+IJ5Nzwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:32"]},"IP":{"Case":"Some","Fields":["172.105.53.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxenoracle"]},"Identity":{"Case":"Some","Fields":["MEIptvDBCkRl9bMtCAFZyzYP3RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+436+ACIoBkJYZFvDt34+4KsA7oB4vYHFvYUNlmpVE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:23"]},"IP":{"Case":"Some","Fields":["144.24.17.44"]},"OnionRouterPort":{"Case":"Some","Fields":[4444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r2"]},"Identity":{"Case":"Some","Fields":["MD4tp9SlhRXiS+VQeEIh+Zy077U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSPX+kIJnsWrwNZ55JKeesnMBa7U8m5HaY0TfxnkWEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:34"]},"IP":{"Case":"Some","Fields":["108.175.14.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ukko"]},"Identity":{"Case":"Some","Fields":["MDUJq5EO8ge3Q4wnQ1xKL9V58bE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WW0irVUGrf5qrGj64RDVEHIriW7CTw58zYMgnvCuGgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:25"]},"IP":{"Case":"Some","Fields":["95.216.33.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:2145::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sagfreundtrittein"]},"Identity":{"Case":"Some","Fields":["MDP9GLvWWMXs6Sb7F9Imm/4zc1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2GgJFpf6GcoWiaIfuYi40K3Bz59iitWs0LXxU/6yPbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:24"]},"IP":{"Case":"Some","Fields":["51.158.166.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1046::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl1tjdevde"]},"Identity":{"Case":"Some","Fields":["MCbD5Oj37iLLWvEZbWVxiVfjdo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2eBAYHoObFoo8xAwy5SaNl+3ahj8sNyFrGQ5gc+ejM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:31"]},"IP":{"Case":"Some","Fields":["84.252.122.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:9235:3f0b:4136:5142]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinguin"]},"Identity":{"Case":"Some","Fields":["MCZCNmW54MKA2IDgXqBkM56SN70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["87p//kspdE7kh+jNR8oK5BXaP5lAIhfGiu628D7K7jM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:38"]},"IP":{"Case":"Some","Fields":["109.70.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::71]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssnn033"]},"Identity":{"Case":"Some","Fields":["MCUTIC+2koi4t1ceplTxZLJmMKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z/kT927E6r4ev2gdavkV+OmVltyhhkwYa0OHp7ffJGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:47"]},"IP":{"Case":"Some","Fields":["116.109.176.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MilkInTheTea"]},"Identity":{"Case":"Some","Fields":["MCPtlQYSaFb0+ACf4IMoPhqph/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAig9X0n5p9I6TAoSWAniODbZP70KKTLWbTOxr9x+Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:53"]},"IP":{"Case":"Some","Fields":["117.53.155.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xDEADBEEFCAFE2"]},"Identity":{"Case":"Some","Fields":["MBv7/LfwCAR9kXQwml7BiXcl8NI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C5CymLFqXUQap+51rXlf0feGhWUUn9Jov6f9dJ2T8rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:48"]},"IP":{"Case":"Some","Fields":["94.140.114.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::4d]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["MBsQ6/Puf+ucIyZuQEpjtpXPnSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hTbGciCHiZ9N6gM+LOZHEkg8WHFO+qzX8KRxPclgmLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:57"]},"IP":{"Case":"Some","Fields":["93.95.227.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkolando"]},"Identity":{"Case":"Some","Fields":["MAyp4X0lC61sPD7mV4sZNJO/Ato"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbJXfTKBcLsMcVZFi5KBxHpwJjtbqKBduMR1nkVhk4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:49"]},"IP":{"Case":"Some","Fields":["195.50.212.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:7d0:4dc0:7511:a0de:bdff:fe03:1ac1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["barabasz"]},"Identity":{"Case":"Some","Fields":["MAt+1U/iHYevVej/HUhoYGkXEh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BgwcFHOXRTKf/6ENyUxIhDIYYNyPPj+uRnsSDLx5Fg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:59"]},"IP":{"Case":"Some","Fields":["81.109.66.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HattoriHanzo"]},"Identity":{"Case":"Some","Fields":["L/mQ4nyJj64Gnz9psLqd8lSnXWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdAHK2gxvRcbVTKfZewrT4k0iRhzwp0t67gDBSaW9/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:20"]},"IP":{"Case":"Some","Fields":["176.114.0.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay42"]},"Identity":{"Case":"Some","Fields":["L/STT5EZ43dmexP+IR9ih04BIKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tSlZn+t6ShQQ6AiA5qt7FuwjNeX1hrJ+/8Cffbly8vI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:53"]},"IP":{"Case":"Some","Fields":["85.214.252.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra62"]},"Identity":{"Case":"Some","Fields":["L+gcH9RaxZMZPwTfeBmAJX5LzQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vMh2idwotKWUHwsrN36P90DHoHQEdcs02iWVuZY8hWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:28"]},"IP":{"Case":"Some","Fields":["104.244.77.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myzwiebel01"]},"Identity":{"Case":"Some","Fields":["L+ciNmh/cem6mk8PZ16AayBE/Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Zbf3TcxkUfiUnuwhpCTPWxeWyqk/j2rN0L5RDL0vN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:55"]},"IP":{"Case":"Some","Fields":["78.47.39.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:734d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["L8vyf+vcT+/DcUxEiFrNg1J5HnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yklw4lL8y3srlY0gUN0yiHzHpPLnweGim9MnYPcXQ9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:27"]},"IP":{"Case":"Some","Fields":["88.208.215.95"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1f5::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer36"]},"Identity":{"Case":"Some","Fields":["L76uxLCQ3cuDngJR3YX2J2DvdRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9WdJrSrjjgT/3WB5A7A+d63XdbcXLtGX8WhTEmOjZuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:37"]},"IP":{"Case":"Some","Fields":["173.208.190.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8014]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt29963"]},"Identity":{"Case":"Some","Fields":["L7uOVQ+kgOJxrbTeg1zIQP8gXEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5r6/NepFPYyzMESMOXGt3x55MvUofmvR19qEQLLwCC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["185.245.60.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tapiri"]},"Identity":{"Case":"Some","Fields":["L6Sz1GCHZaNa1O9hwC3IiXO//0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQdva5C6Hs7K9ZRMIiL+z+ywp6m02+cHjO+gsQmhgok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:11"]},"IP":{"Case":"Some","Fields":["142.132.230.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:6d96::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dutreuil"]},"Identity":{"Case":"Some","Fields":["L5r95D3I4/BYAzBMAb09vzKRaaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VQ5aod0qURFCaupSK+3OJuO/7N7Y+qsEUYlnUbJ4Bt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:12"]},"IP":{"Case":"Some","Fields":["213.152.168.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireMateria"]},"Identity":{"Case":"Some","Fields":["L5joU6VwrHp5tAgjZLeBrWdwUHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egnaJQR54l2jJYY2U/UjrGntT6cN6Z9TUyZ4/1LVioE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:53"]},"IP":{"Case":"Some","Fields":["194.76.227.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ValThor"]},"Identity":{"Case":"Some","Fields":["L5Rz7IOaA2sVQBtD9cBqzBiUYuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b+Qe7iTNtoqEEqHMboIrCBsHaDc85iJMnFEnlD7MoIw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:35"]},"IP":{"Case":"Some","Fields":["152.67.230.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c001:207e:878b:2a1b:d247:f367]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torexit1"]},"Identity":{"Case":"Some","Fields":["L5QxPlbEUxUVFw+jQmkjcfl3tVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v4EM3U7biIFIrYZtyFIZxEST23h1ZlHqFJu3tbaIrYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:59"]},"IP":{"Case":"Some","Fields":["31.133.0.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4713:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex73"]},"Identity":{"Case":"Some","Fields":["L4HaIqZJ67DM0gqXUnIH4uhB9fY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b0TrbZl77HqDSEsNmP3AqNbKJF6PVpdmfTqsrqmCL7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:13"]},"IP":{"Case":"Some","Fields":["199.249.230.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::162]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATLurmyivna"]},"Identity":{"Case":"Some","Fields":["L3HPbis0fbhVx5qoRSXL4OWYcZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3pev4nsv9yw2pzVYrIaCpCYArUsPwElc7HdpDrlEL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:54"]},"IP":{"Case":"Some","Fields":["199.184.215.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["haubach"]},"Identity":{"Case":"Some","Fields":["L04ht2Hnn+wvBDW09gjJEWQNQtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O4j23l0ahQXAqEpb8LzQ6heki0xCp8oGtOOLSW+xXZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:30"]},"IP":{"Case":"Some","Fields":["89.245.194.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["YoloMcSwag"]},"Identity":{"Case":"Some","Fields":["LzOoNMMhbo9BaEtRFKer5o4hazs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcz1a0kkDGBF1eqQc1YX42oiMtcVcjrpv/jMD/kUuOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:27"]},"IP":{"Case":"Some","Fields":["178.78.241.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wut3"]},"Identity":{"Case":"Some","Fields":["LxG0KDF6vUOkIbXG9n93Oog1Tm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AC6B379S2dNfdUfZuqdClreSqZTrVJTTK7sxK0kOwVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:57"]},"IP":{"Case":"Some","Fields":["54.37.137.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1a6e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SanMarino"]},"Identity":{"Case":"Some","Fields":["Lw/LeEA5n7J7d2wpJnFiEdi59GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ebpyIn/w9wKNQqw6qD+bFy6SvM/q6HqvZlhJHuECrOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:26"]},"IP":{"Case":"Some","Fields":["23.88.75.121"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN01b"]},"Identity":{"Case":"Some","Fields":["Lwm9bZotWn1tJsF2Uc6Ozwt7olc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPiZLeIHTwvaUFmuvqeemiJDLvZ/7LvhMOyBPNg9pEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:20"]},"IP":{"Case":"Some","Fields":["217.182.198.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Lvwri8ckz0NcFAZgh5Nr58o8V6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMBvpaWSgFmLoo9BJ3bbvlO4Yr5FBeHXtt2SYOUExwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:13"]},"IP":{"Case":"Some","Fields":["188.68.40.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doughnut"]},"Identity":{"Case":"Some","Fields":["Luf0lyjQP4vA3B1nVYSZKQxfCf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fEnjhskl6yaT5g+Df84pDxUEw5y1rZXpU5PG7pxY5z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:36"]},"IP":{"Case":"Some","Fields":["199.195.248.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:797:4638:253c:c3f1:cc4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maat"]},"Identity":{"Case":"Some","Fields":["LthlStG4wl8+uDFWsH6jW+YTLww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5iXlreMr3iMxH2WWEJr6qnbcu2tFyRgWJTNeiJHDDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:27"]},"IP":{"Case":"Some","Fields":["135.125.147.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:482a:2cfc:bdc:9917:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xaeloBaez8ae"]},"Identity":{"Case":"Some","Fields":["LtZkcoN2/TZ9rAXQp7W5QuDBtN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zd4dTGMgnpUWubA91w9/wLK6KulWkmtEPmZLvAmOwTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:55"]},"IP":{"Case":"Some","Fields":["209.141.54.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN27"]},"Identity":{"Case":"Some","Fields":["LtTSV2aXNxPrjFaikL8H4GuFvxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ph9P6oHgoUZeEI8XY4qHMGTocB0s2gJMH2Al/4GGdOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:31"]},"IP":{"Case":"Some","Fields":["199.249.230.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e650]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["LsNOyotc2xgd7WlI2DIxmaa71ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fyu0v4ZSoGBSR4+aRkmDqoVVQRAGq/No9FF/q2iBQRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:14"]},"IP":{"Case":"Some","Fields":["185.177.206.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alastor"]},"Identity":{"Case":"Some","Fields":["LrPCMBgGlKHoSAAeIPNvdqIocDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dvcCa/Z2aRzj/bAgxCsF7vNEoWvIXsQoZ6g04X92Iw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:53"]},"IP":{"Case":"Some","Fields":["62.210.123.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:30c6:100::dead]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CHRelayOR"]},"Identity":{"Case":"Some","Fields":["LpoQTXAPn43kKMylIUPz9SDkgXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PF47ykFRRss0esR59EX8VSxmSrGB929Y7REc+3IsdzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:12"]},"IP":{"Case":"Some","Fields":["140.238.221.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buster"]},"Identity":{"Case":"Some","Fields":["Lpbv7ZQcN2a6Yq/f/xYyiHXETF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pEEco0nVIwsb82LFEaxmJWxhF0gDm1DmmY1/nztF1KQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:34"]},"IP":{"Case":"Some","Fields":["37.120.191.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:b58e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber43"]},"Identity":{"Case":"Some","Fields":["Ln78+bvjghHckLu58y++9hKsxJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["edui4o2n3edRzUXeaNEM6oZYnh6QFMP2csjHb/NCcik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:29"]},"IP":{"Case":"Some","Fields":["185.220.101.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::22]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carpsecurity"]},"Identity":{"Case":"Some","Fields":["LnidvuD1KCNqEBspTE1wmEcsOQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MejWQKgoRlxJGmgp1regXsxpVD64lVSGdkhJrd4s1gM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:54"]},"IP":{"Case":"Some","Fields":["94.226.36.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torpinkbyte"]},"Identity":{"Case":"Some","Fields":["LnLNr6Eq4VR3lfm6/0AvwWtlPOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6zBGzsA7QVYf58xhqcXF+S3kE1ZsV60o7m0it2pQfE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:48"]},"IP":{"Case":"Some","Fields":["91.220.220.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["LmWimdCsNaRpKUNRAVK9VsT/Bc8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["60nnRLdwVT0zmmUJ1mlSC+xfHLeHyJ3jnH1VP7e6uq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:19"]},"IP":{"Case":"Some","Fields":["121.200.26.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iola"]},"Identity":{"Case":"Some","Fields":["LkW+JV05Q0OXolNLhZGQRnRIh/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8V6l9itp8AFGAqkbVTWUxV0j7fuGSu0d2MVjK8PoF2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:20"]},"IP":{"Case":"Some","Fields":["176.199.7.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:2542:b500:d6d5:a5d6:595f:ea37]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sarkany"]},"Identity":{"Case":"Some","Fields":["LkJ+iwcFhF9xSD/ejgY+xDTLFkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdmpVXA3ut8xq/SshG1Z4e2UrSjls4JAgliZUnpirck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:33"]},"IP":{"Case":"Some","Fields":["84.0.118.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Lj5tsA98+b1159sZl7HdXnI/MHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1/7zNVGA9XINnEb+RpW6I8oIqcStg8aphjOjZCU6RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:25"]},"IP":{"Case":"Some","Fields":["23.128.248.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ferrarizGonzalez"]},"Identity":{"Case":"Some","Fields":["LjzFWtV9An/GS+nIdWPH3YF9WBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/fDeu/wMqLKKELspOCC290EUcSx8zw2tD8vEztSZoBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:05"]},"IP":{"Case":"Some","Fields":["185.154.110.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymIMXMPPNode"]},"Identity":{"Case":"Some","Fields":["LhaD6p2C+q/BaO3I+/tMOnxxuks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cfeb4lmmkcMRAEESEz8EzOY1zVD5STtJJPPyckYb+/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:36"]},"IP":{"Case":"Some","Fields":["185.162.251.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:6a0:8857:fcff:fe0f:24a0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow003"]},"Identity":{"Case":"Some","Fields":["Lf3qXdQVuVWUv7EtWf6EEWf5S18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQvCyq9vTf0y4GEPw3A9IWS7i0jH94uM2xVyCTGfj3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:43"]},"IP":{"Case":"Some","Fields":["185.195.71.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thestudio"]},"Identity":{"Case":"Some","Fields":["LfyiAvE6kPkaggtMMyH8hH4mlIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UWLET4Q3fGjltVz+o+lr23VztSA3Uu5R38Ax6cb6DA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:26"]},"IP":{"Case":"Some","Fields":["91.219.237.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erbridge2"]},"Identity":{"Case":"Some","Fields":["LfWGlMGFJaSJL1FNAQObz0SgVDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kuGRr5XFhvbmm/c2VN8v7+XYyc3lrnj/kN/k0ZzOa2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:43"]},"IP":{"Case":"Some","Fields":["176.31.211.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:3616::74:6f72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deltersvrAnonServ01"]},"Identity":{"Case":"Some","Fields":["LfQtZiQme7m6+9OJuSr/91JTsa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+gSkCxhWjNIerwWe5XBz+MeKAGD2QCXiSVoZQA5Jr+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:41"]},"IP":{"Case":"Some","Fields":["148.251.79.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["LfA9exWNri6vdgeHdUUfF2lQZFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PLW56Y4Q7yZFdQYNbyGKcKlxob2M6f+qWd8LUrJ6qSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:38"]},"IP":{"Case":"Some","Fields":["185.220.101.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10032]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::32]:10032"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra29"]},"Identity":{"Case":"Some","Fields":["Le+AEHcEcjZ+sgicoKUKF7IR54o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6pZQBACDdfznrqUfNy0W0pR1BmP5lHNiFLfs6yeyuxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:57"]},"IP":{"Case":"Some","Fields":["213.164.204.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay"]},"Identity":{"Case":"Some","Fields":["Le1dL+/M4V3Za9WXE6UWMEyb8yM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwHY8qnRLwW5G04hIEzW0+gRoW7mbNEyPSphCVs+vl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:21"]},"IP":{"Case":"Some","Fields":["79.136.43.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jumper987"]},"Identity":{"Case":"Some","Fields":["LeytWR3SJrN4lpTdpvCtyfsNjRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7oLiHioNxdm6HZqWEJ+D51C3p8DagYaAUx0emZN4Dqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:35"]},"IP":{"Case":"Some","Fields":["176.58.106.151"]},"OnionRouterPort":{"Case":"Some","Fields":[42819]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["avarus"]},"Identity":{"Case":"Some","Fields":["LdvBd7SXBxAUUKORD5hB1cfBt/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5vRVOwkZXojJC6drwu3SAj/EY2fL9bhxjOtMd30Jzjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:36"]},"IP":{"Case":"Some","Fields":["45.150.108.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:4::53a9:a532]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SinbadNamornik"]},"Identity":{"Case":"Some","Fields":["LdY5Sx0ypLXxXOdTBAVa+RYXesQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iGJaVXIm4JoBHH5c0bj38xluZj6M5JQpFH9BAz+JUF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:51"]},"IP":{"Case":"Some","Fields":["78.108.108.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a9Exit"]},"Identity":{"Case":"Some","Fields":["LbipRoJtDLT1w6gmRijdDxb2YS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNZTDogqj1lpJy3gJ8cMOEnvmLab2J93gBUKgNCYnDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:16"]},"IP":{"Case":"Some","Fields":["104.244.74.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f63d:1:ca11:911:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rwxrwxrwx"]},"Identity":{"Case":"Some","Fields":["La/mepvhEZJq97c9fao/f65lptk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V+L5qZJph/ZJ+SWHe09k5LYmLCxg1rEOBj3DCDRyjUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:31"]},"IP":{"Case":"Some","Fields":["78.46.120.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["just1small4relay"]},"Identity":{"Case":"Some","Fields":["LazCbx07pk8y7rQYW61paoi6gy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28+vbOI37MHNjCjHHSlArlcx4VhFRatJ+tPM96AHkhc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:25"]},"IP":{"Case":"Some","Fields":["77.21.71.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VoxBox"]},"Identity":{"Case":"Some","Fields":["LZOPGer2YNkCxla15gAvObRcS+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CNOCfouMu4Xm7nyjH1CcF5umicbNdMhiUHTM9tJ7/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:31"]},"IP":{"Case":"Some","Fields":["213.135.244.242"]},"OnionRouterPort":{"Case":"Some","Fields":[24071]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nCT8d6e5bW2v"]},"Identity":{"Case":"Some","Fields":["LYqQf2HK7UgXCWO3a+T7DtM+Xog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q9lTa/69IHUEQCcvkj8AMrhBcn8MCUQHcihOf1f7yC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:03"]},"IP":{"Case":"Some","Fields":["89.133.16.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poisona2"]},"Identity":{"Case":"Some","Fields":["LXm8pSrjdU8pmnGZ4F3o0Dr7WvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DDg341JKrpuUjtZKQR7JX0TOfNCMpl1b6d+2mH4hQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:24"]},"IP":{"Case":"Some","Fields":["87.245.103.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Untamed"]},"Identity":{"Case":"Some","Fields":["LXVcAJUfGrkZYrgLCS+nqGCgYck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CGJbjTyPlg47DXnmx8AblHWu6PflOvrA93FlJEJsuI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:22"]},"IP":{"Case":"Some","Fields":["107.189.30.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f29d::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hiboo"]},"Identity":{"Case":"Some","Fields":["LWyTojNjaNmld4QW/U3d2X/zfUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5flK88J7asGPqNSXFTXos8ByQUxbuEE2vYhM/pZyoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:19"]},"IP":{"Case":"Some","Fields":["5.39.86.203"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:98cb::1]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TM"]},"Identity":{"Case":"Some","Fields":["LWPsJMt8p6z7wUOXUqVKkWGVBn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zxrs7KvkM+iFfU3gOu6pvVMnHGjiK+rzpaUg6Sf1OZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:30"]},"IP":{"Case":"Some","Fields":["115.70.167.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD1"]},"Identity":{"Case":"Some","Fields":["LUpwxntNZjkX55Kk9PNiL/uAv+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["byayNJs/BxiTw7mq6Ew9Xv4r+gCDs7ADmEWJTowuK+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:50"]},"IP":{"Case":"Some","Fields":["185.104.120.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aanetuk"]},"Identity":{"Case":"Some","Fields":["LUfwOfBO7APqvkhMwBd5agq0gkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dve7TyHOEHM2lD1xljad7LOkycU3lIv5RPcB8t7YWag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:05"]},"IP":{"Case":"Some","Fields":["90.155.5.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8b0:1628:a008::aa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["LUdn8seP3ETm+kEVL5BotxfNIz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znTYsvIy+meBlgbh4iZq0mL7HOXOpBS+oYh8BU3fmes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:12"]},"IP":{"Case":"Some","Fields":["172.105.9.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:93ff:fe47:7f1a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyPalEdSnowden"]},"Identity":{"Case":"Some","Fields":["LUGKifedtKjmWLpUn7uXTR0i3Ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ORLFxm7dY+CWmqIpj1yxa7unmymzMHtvkLe15t5f2Ik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:34"]},"IP":{"Case":"Some","Fields":["92.60.36.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:33:6e3:1418:12ff:fe82:4abd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCTorRelay"]},"Identity":{"Case":"Some","Fields":["LT0bYv3ecxBHIEN0nvRJhh6JaAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sid3iK/K8blzxa7WZneDauR2rU8MRZx4IEtlDXGX6pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:00"]},"IP":{"Case":"Some","Fields":["50.72.121.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["slarty"]},"Identity":{"Case":"Some","Fields":["LSqFNfoNk+gWTxNmkUiTaEGHEFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iFN/4xtMn5UkwlPp3c0BcKYW0MGywRaI9sm7jdnlZ70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:39"]},"IP":{"Case":"Some","Fields":["188.166.33.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1535:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra87"]},"Identity":{"Case":"Some","Fields":["LQvp92guCREaQ0H5S1WjUA4BiLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0erYo69FYGWxMg9Fzzi6UmHEN2Tcu0aPAYGvWLIMYmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:19"]},"IP":{"Case":"Some","Fields":["193.218.118.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::51]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Computer0111"]},"Identity":{"Case":"Some","Fields":["LP/erqmX50Gn6FDNyfHpgV3DZ1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HSrd8iibmPKbIROI4UGpWgL+gn6iLCEN2BuRYUiPYv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:07"]},"IP":{"Case":"Some","Fields":["135.148.54.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lodrich"]},"Identity":{"Case":"Some","Fields":["LO/1BuONxhggL70i4P4gsBHTIEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qjFXkEN5yOC87iCphjRRUdkCubtgfusqSHKrRK25r8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:36"]},"IP":{"Case":"Some","Fields":["85.195.253.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:8235:0:48b6:8fff:feb0:bb1e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ridin"]},"Identity":{"Case":"Some","Fields":["LOm+H8iLnQ+gPzh8nk8AC11LKuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfA1eL8Su2oxxfanEqo+EmdKFWcf/6wYNN8+sXaGeDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:50"]},"IP":{"Case":"Some","Fields":["51.75.129.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel24"]},"Identity":{"Case":"Some","Fields":["LOlqih2gMmZMkPV0r/vs4Ypujfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d5GQI+e0PpI0Aa7ADByztSus42ApQ3o0hUOol36Yd2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:11"]},"IP":{"Case":"Some","Fields":["89.163.128.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::babe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor1"]},"Identity":{"Case":"Some","Fields":["LOfXLQIV9NrjN0qLg8y5lPT+c9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IKFSJYisnQOEUwRLjp/PhgrXtrNP1KQn54pyP1Go3E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:04"]},"IP":{"Case":"Some","Fields":["31.133.0.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dairy"]},"Identity":{"Case":"Some","Fields":["LOLe6DC5VO2jprtX6nQg4PXuPBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kjuyerX0/gxnyPrBsDknpJdYuASVhwxFBHh0SNkMLjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:20"]},"IP":{"Case":"Some","Fields":["207.180.230.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2021:7703::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onYourOwn"]},"Identity":{"Case":"Some","Fields":["LNVHTjPRJikVa5L71h+qsi0HsPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IpcnIvMPezGUQR2Asa3qDkBfMCHFyO+Z3cKU+YyMKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:36"]},"IP":{"Case":"Some","Fields":["85.241.106.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cadory"]},"Identity":{"Case":"Some","Fields":["LNQ7LjxH7cYvzfhmPtXbUHv01VE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZwSP/j33zj/GHZhdLpGumXvxSnq8h80h9Fa2mH8wEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:52"]},"IP":{"Case":"Some","Fields":["178.200.169.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19004]},"DirectoryPort":{"Case":"Some","Fields":[4447]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange016it"]},"Identity":{"Case":"Some","Fields":["LNMXxiSAO3fq0yyWOCiEsMrU2z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9DKQh3FxWL42ohR28MSor2SzDgoGW3baCD5EOhyy1vY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:43"]},"IP":{"Case":"Some","Fields":["91.201.65.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=760"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["LK/5HQEbuHZgucEsQNOa2Mb5sP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H4dV30ejbDVKBJKnuLllNKMxB0kt/l7L9hOJvKW6I+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:04"]},"IP":{"Case":"Some","Fields":["195.60.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LJHT4FofxcvHIHVeSDbAi1xuBOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSH6KY19UcmCbMKD5ukOBzX0PaiZ6JzgH4cyuwSh4D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:33"]},"IP":{"Case":"Some","Fields":["188.68.34.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LH++Yap/PGBpEVXmADCwMb/MX+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HT/KwDJr7clz9s4OX5iEOmB+vIwU/qx52Q+REbKXcVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:56"]},"IP":{"Case":"Some","Fields":["185.244.192.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gondor"]},"Identity":{"Case":"Some","Fields":["LHYrZFXNMvjV6NgBH2ufny+KaG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PkMopPXD7hgwqmzAOJMksLpKmme3L7Ivy2DGHSR2g5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:40"]},"IP":{"Case":"Some","Fields":["149.34.0.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torstejaude"]},"Identity":{"Case":"Some","Fields":["LGcACJPhhG1D/ABTixk5TNgf8mw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5Pz7iWq6VQnxgtQMekTUoZFAJzTms/oYTFO+dg8YDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:57"]},"IP":{"Case":"Some","Fields":["178.63.116.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:4281::3:fee6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unzane"]},"Identity":{"Case":"Some","Fields":["LE4VzUDuPS1vBi8Erf6bhcjDxSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9afpFQHO368AAM3OJZumVRHCQ5/SClWHxg1Y7nN76M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:08"]},"IP":{"Case":"Some","Fields":["184.105.220.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:b480:fff0:6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv12"]},"Identity":{"Case":"Some","Fields":["LE111mmf0SW1GJ7Qhqc4P2fXErY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0mmUqxMKE10iz50Xbx5kmtGvUWiltXXJHek6IGcU5fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:26"]},"IP":{"Case":"Some","Fields":["162.248.163.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LCbLrKs7gxQqVGN8ow/xMMm9Mx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYLc5syukdtNFys1RCrHJocw4S8IXIFzIcwn36nG9eQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:48"]},"IP":{"Case":"Some","Fields":["37.120.187.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["LBtTVdFzOTGLK20S6oXfPaiH7II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuJ7ewUOolCvxC2GOB5J0rRIyk1vsPnWu3rqG7Tzwwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:44"]},"IP":{"Case":"Some","Fields":["23.128.248.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["razor1"]},"Identity":{"Case":"Some","Fields":["LBl6WR42pX8zTo9+lORm2lItGXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkbuie9OzPSo2/uKXgvfrQSw7ciVeVvzR6Za/DmqEfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:14"]},"IP":{"Case":"Some","Fields":["189.164.166.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2806:10a6:8:f87a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["history"]},"Identity":{"Case":"Some","Fields":["LBOlTj6KavsY4N5YkOWwiq9bDzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f3P42v3umO0awKpWSBFWpy+7+MNg4J/Cva4OLO8n16k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:09"]},"IP":{"Case":"Some","Fields":["138.201.123.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluttershhy"]},"Identity":{"Case":"Some","Fields":["LAaIf1vUUdN7fh40uUHu66QsQnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6QYmXJOozZeufabOgXW9eY257W7C5TfAUjgW3iUuyQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:22"]},"IP":{"Case":"Some","Fields":["179.43.182.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["LAaBoVNz1flVd75cum4yNX1mTE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8Zpf9ND86e2CFf/Gvi6lORa3GSZTe0D1csHwdb/tec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:05"]},"IP":{"Case":"Some","Fields":["95.214.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lina"]},"Identity":{"Case":"Some","Fields":["LAZHYKpmV+LFdd2JfCWIsXCj/xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATkzhUubAWfagMK8FYLQarwCtw0Ph5kMRIIn4jX0FVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:07"]},"IP":{"Case":"Some","Fields":["158.69.187.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Diesel"]},"Identity":{"Case":"Some","Fields":["K+dTmXh7Zk3dGqis8ExEEpgrzZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CS8XJ8oP9bgVx1xTLM5Px8pZU0z5vzeZxbLi9/A24g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:56"]},"IP":{"Case":"Some","Fields":["23.111.143.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnivUtah0"]},"Identity":{"Case":"Some","Fields":["K+WX0KIlWk6PRMv7Emt6ehKpc3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Agw0CHvxyPb9/BctCq1zRzzy/utySVIs4Aap+3Jza8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:26"]},"IP":{"Case":"Some","Fields":["155.98.5.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anonymous"]},"Identity":{"Case":"Some","Fields":["K9QNYbMo8/yunY03AyziaV0FK8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDDcvztUad3y2VojopVITV7FE7p6YVyf4ZqdDh2GHHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:39"]},"IP":{"Case":"Some","Fields":["123.194.142.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0001"]},"Identity":{"Case":"Some","Fields":["K9GTbgtNW7YVz5mwz/dOrxlCaIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5GxLYViGLBHizUo9ZUsZYJmEAlX9LfTQ5KZRMm1KtIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:01"]},"IP":{"Case":"Some","Fields":["91.92.109.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HailEd"]},"Identity":{"Case":"Some","Fields":["K8uYfITSLMFYNuLQoASS4KbQUAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qu1r6kNePxIU/SmFUQzyUFZZEpQAKByJwJI0Y0c1qQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:08"]},"IP":{"Case":"Some","Fields":["173.212.225.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waeswynn"]},"Identity":{"Case":"Some","Fields":["K8oKi1dZ29dkv5+l0bOu6ddNK2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iTRrDloxgBCE6nNvRp/pBAHqJPMln9mhL01GKDXF7Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:54"]},"IP":{"Case":"Some","Fields":["94.23.172.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zapotec"]},"Identity":{"Case":"Some","Fields":["K8Mbc+AAC2aYH3c00rHywWwn0Ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xrJRe0DpvoLXO27e0jmTg/VbmQTA2a8Wi8eR0Ha2rA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:09"]},"IP":{"Case":"Some","Fields":["65.109.16.131"]},"OnionRouterPort":{"Case":"Some","Fields":[8888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carpetor"]},"Identity":{"Case":"Some","Fields":["K7m+J7BhUvXnV1u54wUKM9iaC2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DHiLHUkCJO8FTkI/FOy6oi5Rb+Rq4ShasFGm3kDt238"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:06"]},"IP":{"Case":"Some","Fields":["79.199.152.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finTor"]},"Identity":{"Case":"Some","Fields":["K68JLoZnwAyj2WhsdtjsPMa8fFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["up6VsOYDGb0xYkM18UlS/8b+l0Cy9JRZ22RqJCidzQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:17"]},"IP":{"Case":"Some","Fields":["95.217.15.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:607c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["storm"]},"Identity":{"Case":"Some","Fields":["K6LI6WslkOEHKuzivbXEiSG/hRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a2zRGmt8Gg9vbikIvDPmHrg+mDZyCxqmWJSUsr3XU1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:38:19"]},"IP":{"Case":"Some","Fields":["138.201.250.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waschbaer"]},"Identity":{"Case":"Some","Fields":["K5cwK+VcqPMUFYBcHNKkebLdFIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lBtY+Xj3TMMHQt4COvb2QVHxwr83k2LWMvrcMe1O8oM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:10"]},"IP":{"Case":"Some","Fields":["109.70.100.74"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::74]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LaserSystem"]},"Identity":{"Case":"Some","Fields":["K5T++WjJlJ/S8Q6xVJOElLL1BSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FSDHguVzUDBngC9wWKDOYINoXu6d5iVNubRSuoQCi30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:33"]},"IP":{"Case":"Some","Fields":["134.249.231.207"]},"OnionRouterPort":{"Case":"Some","Fields":[666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["81e5b3091a636b"]},"Identity":{"Case":"Some","Fields":["K45wFMT03M4Axz6FJ4dbwU46noU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ldleKnihhqjnz852MPhdQFZ9aYb7uRI8WiMOrjpTvXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:53"]},"IP":{"Case":"Some","Fields":["65.108.248.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:b11c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen3"]},"Identity":{"Case":"Some","Fields":["K45kKBH/b2EGAPJwOrWeQvuaAMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SZO5uB+tR6yR8OpIczWvG4nJB0HdwWi4XViUXFS4OHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:49"]},"IP":{"Case":"Some","Fields":["37.138.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tauro"]},"Identity":{"Case":"Some","Fields":["K4iq0uYB5W5eroK+w4qrDKbvIoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R9laG9qQUaiDAXZquqV+zJ+tBJMUJ+Slg3x1JreX+VA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:18"]},"IP":{"Case":"Some","Fields":["189.84.21.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1139"]},"Identity":{"Case":"Some","Fields":["K4EKqBoDbgH/x0ppMdu1gxabt/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZ6w5eGA+x7ntwoHSeq5WvZUB3j/iXI3H6OPxgSzCkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:36"]},"IP":{"Case":"Some","Fields":["185.220.101.139"]},"OnionRouterPort":{"Case":"Some","Fields":[11139]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::139]:11139"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VmAdmin007"]},"Identity":{"Case":"Some","Fields":["K3/R/Yy0JIgNSvBRT/NBMaB0Cc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eJKIONGjH6bQyIbMduAov7NjqACPCJSi0LQtGCYn3eU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:42"]},"IP":{"Case":"Some","Fields":["176.9.23.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:210c:1::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CurryLamb"]},"Identity":{"Case":"Some","Fields":["K2dANQlu4Gp8UqeGjBfascycmDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oI7Kb1PjEqHHqfGb2aFJ3WAwLF/J3znTn6xX9p9BilM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:21"]},"IP":{"Case":"Some","Fields":["116.49.56.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:c800:913c:1522:a2d3:c1ff:fe29:3e87]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kulsortalbino"]},"Identity":{"Case":"Some","Fields":["K1HAAjrRcirFaacGKbFkpz/nx58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZGd+IHeHG4KimnE3/S2G9N9yIg2MrPpGGuf92EFLfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:27"]},"IP":{"Case":"Some","Fields":["139.162.143.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe1f:2b38]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["405test1"]},"Identity":{"Case":"Some","Fields":["K0IJRBlTtM7780fQ9Lycw0M0zQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BzOes0QB7pPGokEwu6FI1TFttde9408rUPseI0oMBhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:50"]},"IP":{"Case":"Some","Fields":["68.12.219.144"]},"OnionRouterPort":{"Case":"Some","Fields":[466]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["Kzqsl7Jp1Z5tZCyL+xdO3RN0HDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["krQP1Ad/kIIwVhHseZXotLgXzovlAVXwadqwiSRhsfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:11"]},"IP":{"Case":"Some","Fields":["199.195.253.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:1362::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stormpaw"]},"Identity":{"Case":"Some","Fields":["KzcoPKPBQLNautRiioc6hg3f8FA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAWoNFLJa2GEoyh2iminPiTpX7FKUHprzZtJcu314M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:37"]},"IP":{"Case":"Some","Fields":["185.7.33.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes4"]},"Identity":{"Case":"Some","Fields":["KzQJntK8WYxHRclshz/XOkRWRr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EaFDqooY2RVbu41QlO+xjSGXEfpdXAKIxyuY0F9mGAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:29"]},"IP":{"Case":"Some","Fields":["185.82.219.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MrTerence"]},"Identity":{"Case":"Some","Fields":["KzH7gn1M6nNLn3jBYTfP1viuu3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CjbAiN5+++WcJDPc08GgVevOO01rK0jANXYqSWOY7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:02"]},"IP":{"Case":"Some","Fields":["185.146.232.234"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KykL8WQOsKintjl7tpyCSJtduOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z+ypQuF20Ki+qROZSyE3lOi8b7r7cB32aUvMjvnVkWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:22"]},"IP":{"Case":"Some","Fields":["144.172.73.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noWarPlz"]},"Identity":{"Case":"Some","Fields":["Kx/yHjC6dfQ/aW4GNEicgGQI4/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M8RbXY2DtfNiY2CIz8inpPh2fQyTu9UQyJ9KXgHQgQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:31"]},"IP":{"Case":"Some","Fields":["62.101.228.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["calu"]},"Identity":{"Case":"Some","Fields":["Kv/7RNk7LwZqaFP6GZ+3vq88U9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JEY5zaLfW/c75yuDtULLXh9GzPQxBwPGXnZT7BO1z98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:33"]},"IP":{"Case":"Some","Fields":["92.243.6.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:fefe:3bc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyNodePDX"]},"Identity":{"Case":"Some","Fields":["KuvWCIxeRyoDO5Ht3AuuFlGbLjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTs/TUn442Jk2Y4Llw6oiQBl/ko8RAta85sVCGmBbAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:42"]},"IP":{"Case":"Some","Fields":["51.81.182.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:200:1bca::b00b:beab]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KtgvOWTTJbP+L/dOmA+wBjdO8ZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["atXgVqZfYxNJOLv79vgDg5p8YGalR1q2UvHBFvKe6tE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:25"]},"IP":{"Case":"Some","Fields":["91.134.147.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["misInfoCentral"]},"Identity":{"Case":"Some","Fields":["KtVVpkCM1Xfx1zlXYOc//ps/vgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lvjMah4rbe2K4YbHOY08LYgUtngGeG773kxqZ98P/e4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:10"]},"IP":{"Case":"Some","Fields":["66.187.5.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Brandjoch"]},"Identity":{"Case":"Some","Fields":["Ks7A60+ScpuMoiyGhUWGa5UpQxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T/cbbNRmjdhJEgoIqLc6t4Caept69cUaHHMMflP23WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:32"]},"IP":{"Case":"Some","Fields":["89.34.27.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNuc123"]},"Identity":{"Case":"Some","Fields":["Ks6O2FwpcW6tc1IIN8qPTZ7UvxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vAMKX5nvqRGdb8AkVD6fD+kuGQ+WGoITnQxILZz4zkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:44"]},"IP":{"Case":"Some","Fields":["85.230.41.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JustAnotherRelay4U"]},"Identity":{"Case":"Some","Fields":["KsgCqun68sn2Pa+cyc1DhcCpUkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KrXfKYX/eIytg4ToicM7xTUKe7EleVOTk13GwrNGHNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:41"]},"IP":{"Case":"Some","Fields":["93.239.72.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anoncicada"]},"Identity":{"Case":"Some","Fields":["Kr6KCdNAO+XPiW936r4jdiACp2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ryvrGOp80k6AA0Ba4wkFo0tPN8tfNHaphII+UBahrTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:39"]},"IP":{"Case":"Some","Fields":["163.172.45.4"]},"OnionRouterPort":{"Case":"Some","Fields":[3302]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cbc511"]},"Identity":{"Case":"Some","Fields":["KrknGEztGlG/bkimfxhqVnLZNQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q9USqYMhImTKLW/D9gyn4m3NwOa0+wCK5YRFqYtSrUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:44"]},"IP":{"Case":"Some","Fields":["139.99.237.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::7d5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gigatux"]},"Identity":{"Case":"Some","Fields":["KrC5HM8SZk1dlQg6anuHGRjIz5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcn30J2xoS9/mEnf2x1N4DYZRPhGns6phOwvriCf38k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:00"]},"IP":{"Case":"Some","Fields":["185.113.128.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LoschxzAngerelays"]},"Identity":{"Case":"Some","Fields":["KqrENPL61dsww9s36PLCKjGUu6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RsHwxTBut6BIMOe9RQ/ZtQ3Nz3fUGTaGwBnOzoIIdgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:12"]},"IP":{"Case":"Some","Fields":["45.76.168.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:826:5400:4ff:fe23:beae]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["setsun"]},"Identity":{"Case":"Some","Fields":["KqX1mPmhgS8BzZnjtZu4c2LtdDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xu0SrEmG67tvfhXay9y0cOKCQy1AJxDTlozgjiWK8Dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:02"]},"IP":{"Case":"Some","Fields":["144.76.200.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt81678"]},"Identity":{"Case":"Some","Fields":["KqB0mHmqI1fVgIRVtoScpUC7hYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+XZgQZ4aSz71qkfqpLHFGCGrsaLZnQnrVkg90yqLw4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:40"]},"IP":{"Case":"Some","Fields":["185.245.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnR10L2"]},"Identity":{"Case":"Some","Fields":["KodgnaG0j2jjDQmTg4Em0BWISrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5XWNAt6uSxbHF52yYjQAzuq5Db20KQlQIIrR4LIVMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:38"]},"IP":{"Case":"Some","Fields":["178.254.20.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract02"]},"Identity":{"Case":"Some","Fields":["KoLf9763tCadTW6uOd7Db5ghQmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCQbYJKRIN/umBtP/FfoMDRU4vBt1m2066VP4/DstKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:11"]},"IP":{"Case":"Some","Fields":["84.238.10.142"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clicker1"]},"Identity":{"Case":"Some","Fields":["Km2eri+zGUhsXjv1zA+D8Gtzzg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+nvJOXGvjv5qQIZjDYbolGRrAcvaizsymNpWnhIW524"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:36"]},"IP":{"Case":"Some","Fields":["94.16.116.137"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:91:2549:9:f370:a1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HDRelay"]},"Identity":{"Case":"Some","Fields":["Kl7OvtrPDy3KV2gwVshrtw0abs4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6aSyP3mQJp9tuXQNlF+tCsmiPROiCMI1OJ8cayNK3M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:16"]},"IP":{"Case":"Some","Fields":["161.97.168.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PowerPenguin"]},"Identity":{"Case":"Some","Fields":["Kl30oP3VKGjiXywzvCMq/9Gbi/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OjEWlL27otT4D5QyHjB/54MgmdhBiMe3m1IPXFN+/zM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:56"]},"IP":{"Case":"Some","Fields":["93.56.117.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6ixty9ine"]},"Identity":{"Case":"Some","Fields":["Klol8YSpyLLgqRmOAHIVbznP0Cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dRK0n8Op6wffdj3dEVlDHGhfKGGW1H7HxuR/X+3Fr9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:34"]},"IP":{"Case":"Some","Fields":["69.197.147.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spsnowflake"]},"Identity":{"Case":"Some","Fields":["Kj7FByiI4vL04oF9Pz3qqGoNb3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wbgPnX5ckZ5q4dhkJJkFy1JJX2tmqRdIot0kiMjkLaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:50"]},"IP":{"Case":"Some","Fields":["23.82.136.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Angband"]},"Identity":{"Case":"Some","Fields":["KjYAWoEci0IPOA1nxKnWMGVfCQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+T4J+QpetW07tE7WQ29uGsFl+q68ahTGvoI7mV6AQuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:19"]},"IP":{"Case":"Some","Fields":["178.17.171.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:138::94d2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["askatasuna64"]},"Identity":{"Case":"Some","Fields":["KiTgt/fWS4CNcPvpLmQcnW/Zmz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L2AlCENvuMsywuGuj97QAUeKFxBVIAIRFQoJ9RzFXuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:02"]},"IP":{"Case":"Some","Fields":["163.172.41.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornode789"]},"Identity":{"Case":"Some","Fields":["KiQ2z94kCcZQJ2h3XAv91qOogDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T39ogf4k4qEoOXOPPIu4SDmqt/QnXUG9QeBesEeal4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:54"]},"IP":{"Case":"Some","Fields":["5.255.104.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DefendRojava"]},"Identity":{"Case":"Some","Fields":["KiO2rCVGkc1S+Y0mVnJwiJhhvB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KI0W9Hfe6NcyF3a3k+7gg77sFCL7ydZgRKiS7EsvJ+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:28:24"]},"IP":{"Case":"Some","Fields":["217.160.192.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HassoBarks"]},"Identity":{"Case":"Some","Fields":["Kg+tPKehkMQ9jteJZye9Qm6MLvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZOrJuBLde+ZjHdeRU/BPLp6XMkI7cR8VL4fXFnWdcWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:39"]},"IP":{"Case":"Some","Fields":["217.160.13.173"]},"OnionRouterPort":{"Case":"Some","Fields":[6574]},"DirectoryPort":{"Case":"Some","Fields":[6547]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["estrade"]},"Identity":{"Case":"Some","Fields":["KgGvw6uKJiVdxyUofACdvm8v9bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zGucxuYWhHI/fmpypiydoQNvdlfEcpTndIJkXvpx6k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:30"]},"IP":{"Case":"Some","Fields":["101.55.125.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Malkoun"]},"Identity":{"Case":"Some","Fields":["KgFww9YVE977YAD/Esp8moN8hOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GL8w1ashUpj6bthZhsV03ubSyIBBd2oOdkJ7g6EMHVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:33"]},"IP":{"Case":"Some","Fields":["69.4.212.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH115"]},"Identity":{"Case":"Some","Fields":["KeiwXKIwtX+iHMB2h7jaIj7if2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GFZxRZR4ZjjHLHnGHjNZQbNE2RatLK8Z5D7rrxWtrMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:59"]},"IP":{"Case":"Some","Fields":["192.42.116.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:215]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LinaTor1"]},"Identity":{"Case":"Some","Fields":["Kdq/tXJOu13b/ihGNQsGk3LME7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbVQc1bYO0hgo3cUjmfDOFnPfoNg7Nj468Lm9Jj4JRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:21"]},"IP":{"Case":"Some","Fields":["195.15.241.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::338]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gayming02"]},"Identity":{"Case":"Some","Fields":["KdJ3CXzv2P6l9QNBz5HVDyFABCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TaIqbt/qsThxxqfPbokGwsl9NkuubOZEPHOE6VwGqW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:10"]},"IP":{"Case":"Some","Fields":["128.127.66.64"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp8"]},"Identity":{"Case":"Some","Fields":["KdJFpoMYOcvRLPYba9asTwRhv60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLpJFF3mPh1/wFnPxQVb4iR0Kpr0A4TlQQhAvjgJyAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:38"]},"IP":{"Case":"Some","Fields":["185.220.103.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harksheide"]},"Identity":{"Case":"Some","Fields":["KcilIDXGjtNLTXZfv3S5dp5oq48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6leWjq0aw/1cs0u5UhqcQJmwAsw62n2go16AAeVqQHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:37"]},"IP":{"Case":"Some","Fields":["84.46.71.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2028:10f5:71::251]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carlos1001"]},"Identity":{"Case":"Some","Fields":["KZzF16WOW5K2ncMzso2SbNexV9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XjIbKUXNfMToIhd/3oKIUEZb8aSalb1WMT6/t3iqppQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:51"]},"IP":{"Case":"Some","Fields":["15.204.174.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KZiVXIClxVdalgICr84NffYz9u8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/KpVtQbhUB9uZcdVf9do857rt2hqsLurC+CQE6z3yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:19"]},"IP":{"Case":"Some","Fields":["31.18.228.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:810d:b63f:f0d4:221a:6ff:fed4:276a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eternipolis"]},"Identity":{"Case":"Some","Fields":["KZDxvdYptj8cFeaHUOR9sFGcIM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qf4iIwDUFn8PIQ+OXhPcLfD9tjCE2LUsbFXcC6vzeqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:46"]},"IP":{"Case":"Some","Fields":["146.19.247.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marsmellow2"]},"Identity":{"Case":"Some","Fields":["KXXswZY1edXJQT2CsQZym7UteOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XfCeZpFmXgC8qpNdEKUXSJV/Q7H/fB5hOKabW6YSd/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:50"]},"IP":{"Case":"Some","Fields":["93.119.15.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:bb01:994:5054:ff:fef0:e955]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueDucks"]},"Identity":{"Case":"Some","Fields":["KW3WjJAXv3/HzsmstDpvqpQkCP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vR+8iCDWGJmUhke/KMLeM3iWpV3LhrywabX/htW43Rk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:12"]},"IP":{"Case":"Some","Fields":["51.81.32.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::4a4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soltor0"]},"Identity":{"Case":"Some","Fields":["KWsheP10KrNasgya3wTV39PUB+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T1tyOS02MEaZ90jsD1etiQZL85mQMhB2W7tUkt0qtko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:13"]},"IP":{"Case":"Some","Fields":["206.55.74.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emcareWetenschappen"]},"Identity":{"Case":"Some","Fields":["KWjx9RFeYrwBr3z8uUEn9TclE9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/uRLp/qgqzKv8ekALLYkNHqiPLQFCt1tScQj6PDg6W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:27"]},"IP":{"Case":"Some","Fields":["92.118.63.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:3::6c0c:d409]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iiyatsu"]},"Identity":{"Case":"Some","Fields":["KV8Fq1HLftR6xtbmaQuBiDrR9+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ITT7ZKZYNQ3ov+EqhIoP6x9hccFkxNUJQHdTdk6GZ8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:00"]},"IP":{"Case":"Some","Fields":["165.232.130.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::295:9000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["treebark"]},"Identity":{"Case":"Some","Fields":["KUgRowVTDdgGMcKuD0h1OoNmmKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Rj1DBASXajaZrwgh48lt9VQX5Tu++jtqg5snehchoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:52"]},"IP":{"Case":"Some","Fields":["208.113.128.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f298:5:101d:f816:3eff:fe81:4fa0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["timequake"]},"Identity":{"Case":"Some","Fields":["KUbBVYCUltQ6PtkdZJp6uQBM+Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ewd9oeDoHdwbD2Nm0zuGqMqmVHsHS7P2zd8UtK341f0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:09"]},"IP":{"Case":"Some","Fields":["85.212.47.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KUaz9uaTDgdc1T1bEziy5AN1nE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TIIFGeLuVxIYbcm40sTvSRVnQAIQPoMcp/ld17+npcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:33"]},"IP":{"Case":"Some","Fields":["91.223.3.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chimera"]},"Identity":{"Case":"Some","Fields":["KUYVnPnY6uuMSif2pUsBpFne4WQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+WT7Lzg37KDknLc9VYx5iwXuSZFGnKov5OAkLrI9wzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:07"]},"IP":{"Case":"Some","Fields":["149.56.22.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:61:785::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["KUOe6cv6GNViIVf4Rio2t8RXvHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzJLK/jWnSgaYaX2oF1xuTfGrCdwGhP+zs9/aXWgP5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:59"]},"IP":{"Case":"Some","Fields":["185.220.101.201"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::201]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0129"]},"Identity":{"Case":"Some","Fields":["KT8UndGXFJLjF3mqEsznxUW/UIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WgJWIDTpFcyW9NKH81zDKJcsZxm4v/bmd3qhgjEnmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:52"]},"IP":{"Case":"Some","Fields":["185.220.101.129"]},"OnionRouterPort":{"Case":"Some","Fields":[10129]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::129]:10129"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorroneAlCioccolato"]},"Identity":{"Case":"Some","Fields":["KTLBkoHxHSvRoldCiixw1tObl8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iiOJMMJWgYxRbc8YZp1g1mOPAC/GmX42iJDVEmIqng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:18"]},"IP":{"Case":"Some","Fields":["93.67.182.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DETL0002"]},"Identity":{"Case":"Some","Fields":["KTJ707BS9y3a+1U6nYsTx2wpQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvZXk1wzVSA932adJGaEK9ngk+/4LOotVkGfhFNNiN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:16"]},"IP":{"Case":"Some","Fields":["89.247.201.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NextTekk"]},"Identity":{"Case":"Some","Fields":["KS4pn7T2kmFBDfY0iO/9G7i0WBU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4eRCyGzXNWUbTvyOJV5nwh4wDwPIxC9szHhFBTjGS08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:37"]},"IP":{"Case":"Some","Fields":["178.17.170.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:bb::35c6]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KSRcQohEgAKb5w9UYWi5dMOXasU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSeCaQFuv29m3ppbM4eOQ7kMQKHP/aWxOm0yrHa7q3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:41"]},"IP":{"Case":"Some","Fields":["95.214.54.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BepisAyo"]},"Identity":{"Case":"Some","Fields":["KRahJ1RF3W0Q4HohHmK0YjhwlX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kj8b8pzER3bJtieyuwtl3gUUAaOR/T8iIqWcKPKcpCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:30"]},"IP":{"Case":"Some","Fields":["23.137.249.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:7263::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KP3MI36DxO+DN2M225YNEdSfp1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+IKflQl9ShcwL/8A+0kghQQFetps6KwfCkb+UUSEoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:33"]},"IP":{"Case":"Some","Fields":["109.92.182.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tethys"]},"Identity":{"Case":"Some","Fields":["KPjGlis5eNLiC2ksHkiL5r+5Emw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EYbtM1TWDGVz2Zg95MjYaYOKIS4VVpRflhVY2pHC4iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:51:23"]},"IP":{"Case":"Some","Fields":["95.217.135.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:38e7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KPAYSMlA1D5fA+7RCBrEfjkI4k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MeJocbHIhITWvu7DvV/heTWMvVNfTquoUHJBN1JiSdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:07"]},"IP":{"Case":"Some","Fields":["24.180.150.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelevationSpace"]},"Identity":{"Case":"Some","Fields":["KOx4KkPN2q7U9n4DroQA5BaUh2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YyynvFzOOE8qZh4hBHpKsDwtaV47QjkK60lAv6yABic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:07"]},"IP":{"Case":"Some","Fields":["93.104.164.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["KOQnw+f+t2xYkB3PFWXqRFieQ3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d5/zIPO3vLNLrhgiuOq6L7ZoQ6Y144hQzBBwS89OZEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:53"]},"IP":{"Case":"Some","Fields":["5.45.98.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebest2"]},"Identity":{"Case":"Some","Fields":["KNL7L1IF/LJKSiwztcvlO+jJpY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h+ufUBju1FJekiz0Qm6VgDrNU+rKjNqjRIR6QB02YfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:44"]},"IP":{"Case":"Some","Fields":["45.58.154.220"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dvbhorst"]},"Identity":{"Case":"Some","Fields":["KNILmQ5I/KIIV9vfEpl8MjwSUSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TvW6bSCDYQyM5Wvt8CJl9pxyMxy3Jn8ZOYmiURLrGGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:52"]},"IP":{"Case":"Some","Fields":["78.46.202.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:162b::1]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ayb"]},"Identity":{"Case":"Some","Fields":["KMUs27eNpGEk2mLsHWeWaJ5xkhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CASqPnmKToRVOKMn90lR72JneYcTaEBdNTTeGHRWk2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:45"]},"IP":{"Case":"Some","Fields":["88.198.70.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9091]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:4109::ac45]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uwu"]},"Identity":{"Case":"Some","Fields":["KMIfukgK6vkFckDKJ98KG4r/imU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhtICPCfsu1V3O2rV1AuEXgh4SCOqIhfqwO6gnkwkuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:53"]},"IP":{"Case":"Some","Fields":["181.166.217.250"]},"OnionRouterPort":{"Case":"Some","Fields":[7001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer82"]},"Identity":{"Case":"Some","Fields":["KJsIUsBkrWTpV/lWlg4hXkdS4hM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WHALxshXp/aYOejPfWLe+t8T2wbZpYMHbcgbwhIjH/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:02"]},"IP":{"Case":"Some","Fields":["95.214.54.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8182]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["albescitis"]},"Identity":{"Case":"Some","Fields":["KJb+O8n9aQbWu3U1F3caAdNYhkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["efynXcCSSiyrtLypw/P9OtzCSuZ8UaeuVCI9zJqsE1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:04"]},"IP":{"Case":"Some","Fields":["103.214.7.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8300:2c87:1a85:3fb4:1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["MysteryRangers"]},"Identity":{"Case":"Some","Fields":["KJT9g5fH6AhZNAYItnLJSkO8uiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SVxl44plUzCLClRsbW3ONIa+/IOX+YNRiuLB/Rmtnj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:14"]},"IP":{"Case":"Some","Fields":["178.62.220.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["intothetylerzone"]},"Identity":{"Case":"Some","Fields":["KJIHNgiYWXfe0z+YqfonqcR8i2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T144PxaG9yxm/cg9rrT9thiACkqLSPvaTqMw1FfDODU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:13"]},"IP":{"Case":"Some","Fields":["198.58.107.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fe73:f9ba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["investigator"]},"Identity":{"Case":"Some","Fields":["KIwQD/plaTjCPzIgfK8NqTLs0kc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZYEoHYNID6jvC7VeL0L0VWC/W3tBtVC+eyxG39/xo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:19"]},"IP":{"Case":"Some","Fields":["138.201.19.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nognu"]},"Identity":{"Case":"Some","Fields":["KInXeDZ7++LVlOlVJOP7kItJqgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tPlP06B1xmIgybcY0tIvX75wRtU8jrW8wy2HZIHBfLY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:46"]},"IP":{"Case":"Some","Fields":["89.58.40.94"]},"OnionRouterPort":{"Case":"Some","Fields":[45531]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:bc7::1]:45531"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Makgeolli"]},"Identity":{"Case":"Some","Fields":["KIJbWmgmsNrV+rhORXRJuyZ5onw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/3ppvYWeqOJwqchHRRLUQteOkAlVJsNRgU5npNFQ1sM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:01"]},"IP":{"Case":"Some","Fields":["172.106.167.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MonteliberoRelay"]},"Identity":{"Case":"Some","Fields":["KHs9tyQvqM5Furbc73Shk0pS3uE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYDuzv+biToE4eh5eo2lQaZA6iqoze6EUcjZjX4WAlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:29"]},"IP":{"Case":"Some","Fields":["158.58.231.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayVongTorHer"]},"Identity":{"Case":"Some","Fields":["KG9MF7QZC+Z+3+XZKsKXjA+DHqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfV0Kndh5NLqxn9nU/XGJp6sjblD3fWgsF2nflgWA68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:24"]},"IP":{"Case":"Some","Fields":["78.47.229.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2b46::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeavensDoor"]},"Identity":{"Case":"Some","Fields":["KGOmZcdgcaSB8tD0deAxx+Ipgyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LbxxDPOyVCnIcVM5lVgkftg0VyyU8aQ9KM0jsahZ3dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:13"]},"IP":{"Case":"Some","Fields":["24.152.39.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ach0WooP0AeM"]},"Identity":{"Case":"Some","Fields":["KFsxlSVt6mbH9YwFlrF9kjeIBWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZujrj0SzAotq1mvOaRkjARCdm8sJQyG+cCfpAlp0qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:05"]},"IP":{"Case":"Some","Fields":["5.2.79.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privatebrowsingorg"]},"Identity":{"Case":"Some","Fields":["KFjEvwXVfX/r7ijeqCusN0Ii+Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["voxHwLXxY9M1nzZGdW0Sx+1+n9eDgYWiEKSDxeZJ8PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:18"]},"IP":{"Case":"Some","Fields":["107.189.12.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stiefelgeiss"]},"Identity":{"Case":"Some","Fields":["KEsGlZNPJ7uFvrtUcUkmJwp0GSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jnWxcMQEYIfjMV4TtiQNCdvelB5a95+NLssmyGpvCEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:32"]},"IP":{"Case":"Some","Fields":["221.113.50.91"]},"OnionRouterPort":{"Case":"Some","Fields":[109]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["KEgwn85wjTjf7bi/NNLeVDPiTEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xKXYzTrwpLFrEdvXVShxYyTuvUylx8XPyOg6jD0nl14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:33"]},"IP":{"Case":"Some","Fields":["185.177.206.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::129]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KDUHH0uG0o35I9KqK6kC8o+k8oU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VwtS5KSD3dxby6zOIfRss9LztlaOgFcbupNAIG0ISLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:18"]},"IP":{"Case":"Some","Fields":["195.88.226.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DontCensorMeBro"]},"Identity":{"Case":"Some","Fields":["KDGEq7zLVyWG/9feZOuNNQK98fY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IDAmlgIZBeiitOUYNG+NQ98b5eBSOX7+XMC04OdmYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:56"]},"IP":{"Case":"Some","Fields":["140.177.225.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev10b"]},"Identity":{"Case":"Some","Fields":["KCyq8OEdrUfdc9VT3CC1EJmiV7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3VbErx5lOlI4iHTRi7teFzRCuneNQabfbjjoz5SijHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:43"]},"IP":{"Case":"Some","Fields":["185.170.114.25"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:928:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JohnWick"]},"Identity":{"Case":"Some","Fields":["KCRPZjoJuk3sYsH84+tvoiG4R7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58/6rxFkWSAmxNzlPno6a+pYwIQMzoYiFkSKbzQGO0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:07"]},"IP":{"Case":"Some","Fields":["65.109.28.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:5a:1a46::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyMatters"]},"Identity":{"Case":"Some","Fields":["KCObrHcYKfgh4qjdW1U516Ebnbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/k9u1+XM8WZsmvon5teM8qfrnxjMACVc8OAcVUHikSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:06"]},"IP":{"Case":"Some","Fields":["193.233.202.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9202::101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["danny"]},"Identity":{"Case":"Some","Fields":["KB0/TItSJeYUy1GHS6Ev8beSEFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RIwCGuWeJ1KI/EF2LnBDR3lB0uyL/WUKBZsxxNvMWYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:48"]},"IP":{"Case":"Some","Fields":["188.225.86.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dream"]},"Identity":{"Case":"Some","Fields":["KBjlrZ9Oogbw8RBbtQFt6WLLwvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DffAOAJod/MEEVfBSV91uQDZsI8kpbnBpvto8pZAq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:28"]},"IP":{"Case":"Some","Fields":["37.221.209.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dismail"]},"Identity":{"Case":"Some","Fields":["KAkHEKvkM6RwIfIiCLPsJFqRKQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G703smqfmLNd68Swe/Cl7ZNVI9z6LvLnY6oCWrrhHz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:16"]},"IP":{"Case":"Some","Fields":["116.203.17.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KAPDgHNv27j6jiei3s9IBbUybPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OBsp6494ptGCs7UFrHFds7QSbKCkxwY63UK8RMX3ABY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:51"]},"IP":{"Case":"Some","Fields":["192.184.181.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["J/rpnA26jNnb/kLS0kZLTGjusA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dcePScRKxr9N7ej1U3ez/DeWFjrrwp05mWYpUrWc/pM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:10"]},"IP":{"Case":"Some","Fields":["185.228.136.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer01"]},"Identity":{"Case":"Some","Fields":["J/ZAqy/AWZntST9tDETaaH1PRz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3/dFUGhjOhxZ2qXOyYjRATNDuEmj5/N0HF7llgAnVck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:32"]},"IP":{"Case":"Some","Fields":["172.245.89.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deepspace9"]},"Identity":{"Case":"Some","Fields":["J+wBjIB9+k9Goh1pzUU10fMMe10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YFP//hbSAuELgLxm54tZns11t2es8wsNYqTbhAc8fGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:05"]},"IP":{"Case":"Some","Fields":["79.140.41.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra3"]},"Identity":{"Case":"Some","Fields":["J9Alea1fPjKJXZnDjkgtHcbLrl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ay1Y6Yj3wIOTtFa8LIAVYx8PsnkoiAIhfIXTAemp2uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:49"]},"IP":{"Case":"Some","Fields":["178.17.174.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:111::785b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RjPi1"]},"Identity":{"Case":"Some","Fields":["J8al2l0GET0OCMXCvlUnupoPEZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G3a0ScWd1m6BM4DsyOBwcFikBEvMgZ2KHfeZdhqjpWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:43"]},"IP":{"Case":"Some","Fields":["189.60.21.201"]},"OnionRouterPort":{"Case":"Some","Fields":[4430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pheonixr"]},"Identity":{"Case":"Some","Fields":["J7NeettZRuOSQgjyxHH65WODyro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xVp6p+azA4XDAoU8x3pQWYAhG0zS++eE/sVadpMcU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:43"]},"IP":{"Case":"Some","Fields":["140.238.171.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["syndrome"]},"Identity":{"Case":"Some","Fields":["J7Li6sLxg4tpMMjkDhmap3O43Yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoAH88P4EjuFxOaPft76CSKPieOPvSQExo+NXajjYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:32"]},"IP":{"Case":"Some","Fields":["51.81.208.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LebLibraries"]},"Identity":{"Case":"Some","Fields":["J6X9IlGfCvg5J87xME7hlIQkdYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bc616cKYTc9WiDFuU94K5z56DKYcZv2KGJE2hDFfndw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:39"]},"IP":{"Case":"Some","Fields":["66.220.242.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yani"]},"Identity":{"Case":"Some","Fields":["J6Wg7nLPBQ+fCgkuKw5/+kBlN80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enm+TC56m6JSc2x81PuM62+rSz3fvQ3qEqdGbl0EbrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:01"]},"IP":{"Case":"Some","Fields":["37.97.185.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:aac1:114::1337]:9999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi"]},"Identity":{"Case":"Some","Fields":["J5kBb2dguBR1yR28duRH3m2j4zE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TONjyrvYpqf9X7EyL+yd6zqc3yBHkfcp3NDdql13inc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:54"]},"IP":{"Case":"Some","Fields":["213.226.119.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mol"]},"Identity":{"Case":"Some","Fields":["J3XCocnDLa5H2rqXDnDp1+BQcds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kVetF4Jdo8hHv6o4UhveZ2bfyPEn+xra3Ehrd+UcUqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:50"]},"IP":{"Case":"Some","Fields":["176.123.1.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::1de]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greenpond"]},"Identity":{"Case":"Some","Fields":["J2tH+wbfRz9E/aDaXHJztPZZQZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cUaumju/vP+gTPwWfS+9PE9XN0yVocviriKYAUU5wzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:48"]},"IP":{"Case":"Some","Fields":["172.106.10.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:6600:2002:1::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W44rdfE3fqVo1L9B"]},"Identity":{"Case":"Some","Fields":["J19/5EnvfrQe3VN+Zlg6sDmHDWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yg1WV2vmWNNjUI/VC0yAom4uutmcWFwUWtD7LFBM5fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:04"]},"IP":{"Case":"Some","Fields":["176.9.157.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllanonTor"]},"Identity":{"Case":"Some","Fields":["J0odxiEOkYJ830DcDpXko8qSmgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJRqFfTJhOShevHLY4xuul2zum/CtBebCMEKLdhq0A0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:48"]},"IP":{"Case":"Some","Fields":["188.127.161.204"]},"OnionRouterPort":{"Case":"Some","Fields":[10009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bakingoven"]},"Identity":{"Case":"Some","Fields":["J0UiULSEy5DmhyJ7MnTivyMhWOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpcUUQGujjzK3TDwrVDHgRwnXalN15UeAkRLNfkk/qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:37"]},"IP":{"Case":"Some","Fields":["5.189.164.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["JzB4uURnVYhCljzgoCstBY4oJOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v42bkmo+JJShaXQPamAFBAY1Jl86oTIZkpz7fAahvCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:28"]},"IP":{"Case":"Some","Fields":["179.43.159.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summerfield"]},"Identity":{"Case":"Some","Fields":["JyrIQlIWZuPRsOXq+see9z7IiXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WtaBbFJvkrdD14gchwVX2NTDrvHG3RuV4Rc/A9DlhGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:58"]},"IP":{"Case":"Some","Fields":["185.189.112.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheMind"]},"Identity":{"Case":"Some","Fields":["JyitJkKElE293f4Mbb5laoWpNgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wy2ziXsuiowZ9YKL74zkJMEYo4ILS64gjX5xd1nNrEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:06"]},"IP":{"Case":"Some","Fields":["138.59.18.105"]},"OnionRouterPort":{"Case":"Some","Fields":[88]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["Jxc1XR7RxCHj+JMPchvy/aujXNo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLd4RvsukwGwxvJI+UULAsD+qYDgBF6YTr9wV5DH8+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:34"]},"IP":{"Case":"Some","Fields":["95.216.72.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tuco2"]},"Identity":{"Case":"Some","Fields":["Jwv1yeIzEJP85aqIkeCliDMe52M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fkJ2VY/VYxM13mxgeFBkFMJQQH5Zn7Vdv1vdH9E7f5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:45"]},"IP":{"Case":"Some","Fields":["193.187.91.79"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toloso"]},"Identity":{"Case":"Some","Fields":["Jwk0pPe2aao4fy1HX755PQNpRUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z42LbnF6A+aOfoKdu+fQFEdCD9DzZAGyFYusF6Il+Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:22"]},"IP":{"Case":"Some","Fields":["212.7.217.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["JwZ/Wi7MyRfxwJxM3+V95DoYfig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjQOnEpswpCEnN7G7CPTrWL6E1wls7x5QbrRU7UeS0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:27"]},"IP":{"Case":"Some","Fields":["23.128.248.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::32]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=760"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HereticReaper"]},"Identity":{"Case":"Some","Fields":["Jvm+8rrPhVF8Yst3/1XmNHKEAVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R7ygeFSE/hAuL+m9S17LKvUaDRVtleLaHV+YK4QNDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:45"]},"IP":{"Case":"Some","Fields":["51.161.35.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:205:200::1f8d]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JvKYQpN0bHWJsfyxF/FbSVivwrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYgJMEKpSBdQc2EH8vXeEcTG8xZbesBlU/HVerGXBTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:49"]},"IP":{"Case":"Some","Fields":["192.95.27.143"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber13"]},"Identity":{"Case":"Some","Fields":["JtOE4ku9FQZhZEZiK+EyMqZJRQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IrpkN+ArjFv7Qdkw5olvnMy4wIaVdXCa1vmD01ZXeGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:09"]},"IP":{"Case":"Some","Fields":["185.220.101.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber58"]},"Identity":{"Case":"Some","Fields":["Jso0Sg2gyTNDhpv2oXyFLR06DJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwJYbHRn0Y1AZOhdK0F8ZdsteIOYhfktA+rWlkX2MyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:05"]},"IP":{"Case":"Some","Fields":["185.220.101.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::29]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0163"]},"Identity":{"Case":"Some","Fields":["JsV/Br3s/5lo9lgFzZ7MkDawKqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cKU7EL+JGfxvluXIkkeMSs95DxqA7lQ/AkaIAEYoCFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:13"]},"IP":{"Case":"Some","Fields":["185.220.101.163"]},"OnionRouterPort":{"Case":"Some","Fields":[10163]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::163]:10163"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sasoom"]},"Identity":{"Case":"Some","Fields":["JsQ/tErKrtt6T38fH07JMFuHhRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCVDRucbJNBJ8wEHkuh6ftrhJo42qdZYGLhVK+rCGbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:16"]},"IP":{"Case":"Some","Fields":["70.89.115.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev4"]},"Identity":{"Case":"Some","Fields":["JsKPKbYR303iOs9dncHrSJXvXos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zpqR0bdRgGFPA8+s7pbG2iRV62K0w3QU2xi0B7ZvL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:15"]},"IP":{"Case":"Some","Fields":["87.118.116.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:4134:101:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BestofbestBackup"]},"Identity":{"Case":"Some","Fields":["JsFe1SgjgqhD0HdPUXC8zMzEbWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fDCm6IR2uX2ttyrUUPRduKItFujW+fh+gtu3VHUmDIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:16"]},"IP":{"Case":"Some","Fields":["172.104.225.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:93ff:fe9c:f17e]:9007"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["philotes"]},"Identity":{"Case":"Some","Fields":["JrK75nFJlzqm9jH9CeKjTnMlOrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mrOb9au+QuvV1pOGSxiTbAOlzDp9j46siink80KtXPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:22"]},"IP":{"Case":"Some","Fields":["94.16.118.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ageinghacker"]},"Identity":{"Case":"Some","Fields":["Jq08HBjxzSs1ejP6dlKpBtsTqMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32z8mWaJs+VBwRRkLY0TRSZj7xZYnW+TJ81cSIeLzBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:52"]},"IP":{"Case":"Some","Fields":["82.221.139.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["VadaszXYZ"]},"Identity":{"Case":"Some","Fields":["JqGR5ZrQEmkTXmq++sZSulg+hEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLRjC7AmfUWOvte5Dq/6CM74EN9tChOsOaDMhM3tIIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:48"]},"IP":{"Case":"Some","Fields":["62.165.251.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgES"]},"Identity":{"Case":"Some","Fields":["JpyumGn3UBsneRvqiXq11H79TzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpIzVbbhNZnIdiHueAApHffuKI2CMbL0BEfSeX171tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:07"]},"IP":{"Case":"Some","Fields":["82.223.104.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay6"]},"Identity":{"Case":"Some","Fields":["JpyHtMMEZS8hrAK+hr6H31j1F08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URiXe7LK3MkejDoectJ3qR9qRRHYMqlaI59MGSvpqhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:31"]},"IP":{"Case":"Some","Fields":["5.45.107.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16d1:9458:1aff:fea1:7c8d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Jo2hHpbk2AFvePOiRiw/fRCbfC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lslUw1VQlF0pjJi7GGKfmBu1IIdMNFeKoWYka5YepmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:31"]},"IP":{"Case":"Some","Fields":["95.214.52.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ScaryBear"]},"Identity":{"Case":"Some","Fields":["JnqpSJ5uyk0u1Le7TQDHF7PhBqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["psxuytjzMrujbwrRUBFYxhnHIszfVnqne3TJI1WL8L4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:07"]},"IP":{"Case":"Some","Fields":["99.234.69.118"]},"OnionRouterPort":{"Case":"Some","Fields":[42431]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:fea8:c60:600:bb1c:8d1d:75c8:d7ed]:42431"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giraffe"]},"Identity":{"Case":"Some","Fields":["JnOTCiLArt8/viwUFlMKE3jmyg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XpvpLw11pwW5VZuG3XuE7fxBui69HkI21oEEzi3pHqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:03"]},"IP":{"Case":"Some","Fields":["109.70.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::71]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JnKx4XltVwIWO+S5d7/7vgGb2ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znjfPB8ByoXGe+31WLWvzodir0ViAejIqUWGnjjV71s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:08"]},"IP":{"Case":"Some","Fields":["45.9.150.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spacepark"]},"Identity":{"Case":"Some","Fields":["JmYKt+E2pFnPzRsb5kDxBoEDWTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BtyeqiRHQsOiLfK27+A1/nw19i/l+5y32gcWKDKCl98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:40"]},"IP":{"Case":"Some","Fields":["185.177.151.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Felicette"]},"Identity":{"Case":"Some","Fields":["JmVeHdk3UbZSrI1TRJWrs2QVvsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TdHad/SOjJaPzYMjXaB7X80+Wk+43UQ2tofu8ex/5lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["62.210.97.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AvocadoTortillas"]},"Identity":{"Case":"Some","Fields":["JmF45BdebW/3Vjkxt8YWbFu+cOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cpBqyK1tGwnCxjo0Dzit3i3orX8OvLAHnRCjOEnFQCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:55"]},"IP":{"Case":"Some","Fields":["139.180.153.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:4400:69b1:5400:3ff:febb:2687]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hatcheck"]},"Identity":{"Case":"Some","Fields":["JlmsqhQLaEXjjxibQICBe5gZ65o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X2eJhlDHT4lZnX8UsXa0oOGBJK93gZu+0H90YRsnhH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:47"]},"IP":{"Case":"Some","Fields":["94.156.175.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stormwind"]},"Identity":{"Case":"Some","Fields":["Jk6Mo4jz0ACBzX6R1sQnLASLavk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TxFrzOEj5eMqkAR7RzJMzXrt0MhWK/mAS9z15rnvC8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:11"]},"IP":{"Case":"Some","Fields":["178.132.0.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["msBobo"]},"Identity":{"Case":"Some","Fields":["JjkH6dSPvq5uZLEMYorovfRmhps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/gizkXO2p2dDnzyMkyN0cFhkz4r8vs0wV+dq1zO/tZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:28"]},"IP":{"Case":"Some","Fields":["37.143.118.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ALiteralBird"]},"Identity":{"Case":"Some","Fields":["JisLdJyQiERqVSHE6YFz3tgV/Vo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["seCJw+33AxLYFJmfvBAe4gV4AUeKbK5PpaTVVdQcSEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:11"]},"IP":{"Case":"Some","Fields":["209.35.33.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockers2"]},"Identity":{"Case":"Some","Fields":["JihrnezidY63nYV5K23vwaHcwZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BpPezVtp9v18l2hZyC5EO7Adu10lCJ5tqmiS7rxMZqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:08"]},"IP":{"Case":"Some","Fields":["174.128.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Q"]},"Identity":{"Case":"Some","Fields":["JiIK6hiLjQ5Hu1QeGmFus61wKV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yeQ3cIAnG2TsnyqHaQptq0df9Jx5oAKYJhjEdX7/J4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:39"]},"IP":{"Case":"Some","Fields":["78.47.221.71"]},"OnionRouterPort":{"Case":"Some","Fields":[3451]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:1a1c::2]:3451"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["russianalbiona"]},"Identity":{"Case":"Some","Fields":["JiDucdbrSGE1NicvdJDrjaZ7g1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6W9VD0sSwWB+F1yNXDkudkI1Sim62lE53/r/c67b0ME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:00"]},"IP":{"Case":"Some","Fields":["136.244.87.205"]},"OnionRouterPort":{"Case":"Some","Fields":[39910]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6c01:e9a:5400:3ff:fe8d:b35f]:39910"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["SabaDanielRelay"]},"Identity":{"Case":"Some","Fields":["Jh4p10DrtfxVk/rLZeTNeOkzJm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["65GUagmET+ceF0PVIi0eske2TviZXROzzwwyHowxw64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:05"]},"IP":{"Case":"Some","Fields":["217.103.30.38"]},"OnionRouterPort":{"Case":"Some","Fields":[16793]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gymli"]},"Identity":{"Case":"Some","Fields":["Jgl5orLuxDuRRS2Tee0PntdEtJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qlohq/nMXPvBJscbrOFG3Cm7Fo3JycUNUywPYDDd8/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:48"]},"IP":{"Case":"Some","Fields":["152.97.142.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homik"]},"Identity":{"Case":"Some","Fields":["JfQzU1FohTPK7b9NZVgejTJCpcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gi+gUhHFg0U2xLN8MqaVa/FBYeCwn8bIFZHVbIvdUiQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:40"]},"IP":{"Case":"Some","Fields":["139.28.40.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darrieux"]},"Identity":{"Case":"Some","Fields":["JbaU6pX4JfFWxdrlYHszdehsDE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PfaowiG0pxXbf/9xYnBREv+hJiJBlRcuxeos2okefVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:26"]},"IP":{"Case":"Some","Fields":["153.92.126.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mrrm87"]},"Identity":{"Case":"Some","Fields":["JaPJLrEaFAsAZpXQAJ9urq88Z4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiB7a2ZwtjP+o3WkZbhsvuJIKEws/NOZ5lwgmL6KjNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:59"]},"IP":{"Case":"Some","Fields":["89.212.26.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Proflay"]},"Identity":{"Case":"Some","Fields":["JZdqbe4FcW4MkrdsoH7ns7zIEno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/0DYn2MzggF7q6KSNIlZA5A/pPeWScFNjAyHghxvXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:56"]},"IP":{"Case":"Some","Fields":["91.22.189.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarkabianRelay"]},"Identity":{"Case":"Some","Fields":["JZT3wNLsCrGyaVc1cMYajupU1Lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S4yuOUmHh9I5nNUneQW5TaydeJ/AEUrTmwhbrr6O6W0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:59"]},"IP":{"Case":"Some","Fields":["135.125.235.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::500e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Luxembourgury"]},"Identity":{"Case":"Some","Fields":["JZB4x0yyMJaaavzYU1wLNa7P+Gg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ZKMRKEt+VoMnw8VzVwgkPvOQi+Jv0U5BhuFcFk56U0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:51"]},"IP":{"Case":"Some","Fields":["107.189.30.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f414:42ce:c612:dab8:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fancybear"]},"Identity":{"Case":"Some","Fields":["JYotr+y7YYU8iKKBFmsPW1ihbGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["07Qe8hhoATjhTBY9qSBaRNF7ebA8XI7ngn3yHhtbhqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:19"]},"IP":{"Case":"Some","Fields":["31.171.152.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galapagospadda"]},"Identity":{"Case":"Some","Fields":["JWLUY9FcPDg1FOfWEXYFBzrEedk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tojHClOO2qS762av7Uivh8cJj2kfj1r9Qe/ArCAmmPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:44"]},"IP":{"Case":"Some","Fields":["90.230.21.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mesaplata"]},"Identity":{"Case":"Some","Fields":["JUwKlqJPY5/vtJoMlIR97xWK+q4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8JfWvgKAnlqRRJKgb8NfBQ2kkPKfGLW876WdTq9CwHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:21"]},"IP":{"Case":"Some","Fields":["45.89.54.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porcelain"]},"Identity":{"Case":"Some","Fields":["JT58aAL3W9VGFocmk6WSLtKhU00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tNYhCH/apeGRqvQa++ZMpYaBtjzqpcO3fek5RPSAPXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:11"]},"IP":{"Case":"Some","Fields":["162.251.119.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt27791"]},"Identity":{"Case":"Some","Fields":["JQCdn6VdiWGXR5lakIf01mzoYnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EnR3ZurZ7AbpPmmlKOxVsbpOfOCyuYhjoJ9PzefObGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:17"]},"IP":{"Case":"Some","Fields":["185.245.60.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["JP30dUuzd1ptVOB43LvKQ9exsH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oMlk/llEAKSRvQeQ7dUiG/4S40AeS+XA5luGUes5ICU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.36"]},"OnionRouterPort":{"Case":"Some","Fields":[10036]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::36]:10036"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShinyMetalS"]},"Identity":{"Case":"Some","Fields":["JO8YK074Lk60eJi6gcslHW4ohbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7JpxRI60qcfOzofqlLi+amuCnnBBlFjrkKpwz2GvxCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:16"]},"IP":{"Case":"Some","Fields":["78.107.239.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bastet"]},"Identity":{"Case":"Some","Fields":["JOLxORIdQ5TFS1vMNos7QRhXxBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aNeQUoLjfc/hW2NaycJ6+UMQmbm8gLvT9N11I90afj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:18"]},"IP":{"Case":"Some","Fields":["204.13.164.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:13:4000:6000::1000:118]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sjmulder"]},"Identity":{"Case":"Some","Fields":["JOGFcJTaZPN4CcuQpOlTueKpF1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HnlDy4f0YdvlDfEB+DSuiE+WQ80MDPHXypz38ApfZD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:30"]},"IP":{"Case":"Some","Fields":["149.210.205.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:aab6:8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["stealthynetworks"]},"Identity":{"Case":"Some","Fields":["JMTbEAwZqxfRw3/GVOtKVajNVQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["990+YnNhUkct3osSBeb5pd2BYtt/VFXWqBsg05xQrqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:12"]},"IP":{"Case":"Some","Fields":["91.208.162.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5100::186]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Scrubsss"]},"Identity":{"Case":"Some","Fields":["JMMSxlZ16Az8cp4EYA0NndJzefQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kejiskfTpJDzDQQ6K6gruM/u8B6fFi8HcA0VoOqFOaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:24"]},"IP":{"Case":"Some","Fields":["51.159.59.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobseg"]},"Identity":{"Case":"Some","Fields":["JL4N1FIiK4/DMobcFgrpAMdpdNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kF8VEQp+/Jy4f8AjYTv878u2IWDzdKp7BFcitX2eO/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:51"]},"IP":{"Case":"Some","Fields":["116.88.104.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bennytorbot"]},"Identity":{"Case":"Some","Fields":["JLg0IxdJImc7sa9Ds4lCkF8c4wA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O7nGT5AOpXg+/tXiviPukSR8gFCb8nN9HKSylJPrNQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:02"]},"IP":{"Case":"Some","Fields":["204.83.204.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f17:273::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goingin"]},"Identity":{"Case":"Some","Fields":["JKgY2fHgnxhF/BWJ3lqvFcjghn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYarjHfecKTBfncorfQrkyrVrVNb64v31VxFHUQyx/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:46"]},"IP":{"Case":"Some","Fields":["162.251.116.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonhoard"]},"Identity":{"Case":"Some","Fields":["JKF6TB+owhCKzeO+aBsHMThL86U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Efev4rZbXy8PZvgYqJ+NJDL8Escl1LQdqCjT73xjr5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:44"]},"IP":{"Case":"Some","Fields":["159.69.21.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:2e49::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JKAoC+/P8xgH2p31yR/gzYtxuok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvWwHWB72QiOedckoChZasBJ1DB/fxTPZB/3W+glM0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:08"]},"IP":{"Case":"Some","Fields":["5.255.102.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:dd2a::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay16at5443"]},"Identity":{"Case":"Some","Fields":["JJw6XtixqNIaOFPuc2b0/5Zt1P0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WxZYSvpk1OagBOkKJMD+JfDEFOlCFuXOalNwuqX8czw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:47"]},"IP":{"Case":"Some","Fields":["140.78.100.16"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Illuminati"]},"Identity":{"Case":"Some","Fields":["JIqWsqiKPqsUaZuQls5qv3fQYGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2uDIImiINp32ibkphJKz8YraKJ27yfXHlGTiKRJW78w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:33"]},"IP":{"Case":"Some","Fields":["87.118.110.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:1:3935:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aztstx11"]},"Identity":{"Case":"Some","Fields":["JIQH8ftPq6/5Pe99uVTi+uS2o5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZwVs/O9V+EHG179yW+YpeAbsh4S+mCq4Y15373ZTq94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:00"]},"IP":{"Case":"Some","Fields":["40.112.177.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["atacama"]},"Identity":{"Case":"Some","Fields":["JGRFbCh+cVg6bq38+ClZcitulv8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvDJ8CI30peUo5vexyg84ShWNL/oZ/Bl+ThojoYEfdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:05"]},"IP":{"Case":"Some","Fields":["85.119.82.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["JFyI5TW7fYC3tDs2q1swDWshSkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nkEoIco5yEEe2h9wZASIVyz/BJ36ZP3ntsboe5kuxP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["185.181.62.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::fefe]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JFU4xeM56pm/F9/kfFemNFQORPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["miS8HlkvEJZAskmFdgSC0qQ4Zut95assFeOV0sIKRcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:17"]},"IP":{"Case":"Some","Fields":["188.127.235.185"]},"OnionRouterPort":{"Case":"Some","Fields":[37171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Luna"]},"Identity":{"Case":"Some","Fields":["JFI+ewBJg+xMpQM+vJtyk/EvI3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sxj+ZWOF6FzpxUSZwQgN2XEWI96qPT3qiHfLdldy2+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:38"]},"IP":{"Case":"Some","Fields":["51.81.93.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JDf82sRThfO/qALwFy98Uqbc9VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j2pXyPfnyZd6xkaaqRPdgz8iY+S49vxyosUNLY8hSOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:06"]},"IP":{"Case":"Some","Fields":["159.65.50.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Magic"]},"Identity":{"Case":"Some","Fields":["JCLdd6R5cxD4JrEkg7CAH17fNRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ED7UkHKcdSO0c5gaeek3Jk4Zxeqf9wRxn771KFTGCZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:31"]},"IP":{"Case":"Some","Fields":["131.255.4.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode4"]},"Identity":{"Case":"Some","Fields":["I/dNWB3pKsWdNSfeTUSOA2E52B4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJwRrKXln8UhVMZY1BdU25b/Qq+Ne23UQAmqwORnTPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:15"]},"IP":{"Case":"Some","Fields":["209.141.45.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imissfrys"]},"Identity":{"Case":"Some","Fields":["I+HsonJ9JKBbNAfApobQup09GiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XEtwSlrpWBL6rsRdU3bMrpSMdz96oNBjfbgArJVFJ6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:18"]},"IP":{"Case":"Some","Fields":["103.163.218.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["I+CGX1xh2OaM00qe34FwzBeet60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5N77AT7b6stoHQmShPVWLJ9fMOEwcGjaAovLMRAo49Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:00"]},"IP":{"Case":"Some","Fields":["20.48.104.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["esko"]},"Identity":{"Case":"Some","Fields":["I9wpXXcdUdqYEAjRuXAqA8ZEiNg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RjNnXexD5emey0hHjxcvZkgXe2qS3PHJdxCi8CIBLyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:02"]},"IP":{"Case":"Some","Fields":["188.127.197.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay38at5443"]},"Identity":{"Case":"Some","Fields":["I9XYIZqOt2EKszz61Yn9cqhENWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2F1vATbVk1sKMBu94f7HdRRBJu8EVBdR2M9g8N4To/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:41"]},"IP":{"Case":"Some","Fields":["140.78.100.38"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pipepipepipepipe"]},"Identity":{"Case":"Some","Fields":["I8LA/UZga6snQ9B9ObLO9/R7Djg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/rxf3XFRpVuFtW0v1nJp/c8LxK6CyoAppssODGZ4QM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:50"]},"IP":{"Case":"Some","Fields":["35.178.146.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:d01c:ac5:8100:6bf4:80ca:8500:db07]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.5-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay01"]},"Identity":{"Case":"Some","Fields":["I8GMgBDqyD7IUaObJeR1rIKo74o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OY2vJorB4+wJdCLYCy3xRRlu3xtRMxtkL8ZYNdPuWEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:42"]},"IP":{"Case":"Some","Fields":["187.63.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:538:0:1::24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reddragon"]},"Identity":{"Case":"Some","Fields":["I7zX8IYO+z3S/L9k2UQWPStLY5U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KWfjx+oZoTKEC2V4j8OGXQvZsWxV0csy2aCpa/StaXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:39"]},"IP":{"Case":"Some","Fields":["15.204.172.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::1a34]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrostShark"]},"Identity":{"Case":"Some","Fields":["I7q0qbG39VNZnNga7VU/rLezUhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEBQTzu5scARUD0GjMmdZa8dVxvwOsTmA6bM4/W3HOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:34"]},"IP":{"Case":"Some","Fields":["91.193.18.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WedosCZabcdef"]},"Identity":{"Case":"Some","Fields":["I7nAh3WrMb929mgsgTXmN//zHng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QBOuHZDfkHMgZ/QvnOYYYn1g/90Qq/4/dK2RYVFiVpY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:55"]},"IP":{"Case":"Some","Fields":["89.221.220.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:97e::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["I7SVIb3EWIx8zzw45VJQQRgya2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LknEk3K4ZcplGrPCd2h0duFckLnpalC8WBbAAcM5x+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:28"]},"IP":{"Case":"Some","Fields":["185.244.194.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apostate"]},"Identity":{"Case":"Some","Fields":["I61rFlE32VfAmqD3o+57Bc7EqPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sEHPA52ab1/3yhfKUD895OAELMSMfAeUZuh6sElhBjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:58"]},"IP":{"Case":"Some","Fields":["51.15.62.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:916::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.3-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VarenykyRelay"]},"Identity":{"Case":"Some","Fields":["I6AgwQ7X4/hWCAgLYimE9BsuDRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["04SAvCVj5r+KqklslRub0W/cb+zxmHaqGRjkp4fLdBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:04"]},"IP":{"Case":"Some","Fields":["95.111.252.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FamGuyFunnyMoments"]},"Identity":{"Case":"Some","Fields":["I5i3/Wycl6IP3X5jfL2tF11bdh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzuYQbIYcGtH05ajGUxzionk+mjJzUDDIsNnn4/KQPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:13"]},"IP":{"Case":"Some","Fields":["45.15.23.77"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1d80:1:5d9::1]:42069"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["I5Ls0UgktGwPLqrEhiukDsm5MK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yhyH3ikBXHoaDvxVFnSWb9NtDysMnKp5jFRHk/xxx+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:40"]},"IP":{"Case":"Some","Fields":["104.244.77.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["I5CzAwWPXsHhvqruzjqvLPl7cfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e+6vqa3m13CtxKQKhpWhTdQIywqmv4iXzySpHmaWZEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:39"]},"IP":{"Case":"Some","Fields":["185.220.101.47"]},"OnionRouterPort":{"Case":"Some","Fields":[10047]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::47]:10047"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thevine"]},"Identity":{"Case":"Some","Fields":["I4fhI5T6PmrVUaIXbtF2K9sDupA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TzUeil80zTDlEjEQ8AalOzLXwO4FfjHyjrZkzXSefGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:45:09"]},"IP":{"Case":"Some","Fields":["113.20.28.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vShieldxVirtuo"]},"Identity":{"Case":"Some","Fields":["I4GZtHuhmY3Drx0rCToKlo5PNvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slH5FIbmByGpYTa/D//8kQxdj9EHRjRbAjMgpYbY/1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:28"]},"IP":{"Case":"Some","Fields":["38.22.104.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nightosphere"]},"Identity":{"Case":"Some","Fields":["I2Ba3hYpjKFSzGLwx1k7PrV70PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fLZWAnHW/JMBoa4/vN41coXtLOieCITWPSVmha1a0Fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:32"]},"IP":{"Case":"Some","Fields":["185.104.142.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation54"]},"Identity":{"Case":"Some","Fields":["I100RCNqvCj0Euk4FPa3gyANRjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rr8mrD+n70DXdzNCB3sP5SVxnq4wpIvkJydnauBq4hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:31"]},"IP":{"Case":"Some","Fields":["51.15.249.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigfish"]},"Identity":{"Case":"Some","Fields":["I1tJns/ZteXGBpf6qoBaKzIO7/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYCtSFNt1eV2z5O3tIGH6KZss0Xw3zJ8FOMYacEQyhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:43"]},"IP":{"Case":"Some","Fields":["5.2.76.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TK778"]},"Identity":{"Case":"Some","Fields":["I1qW1sFIm1BOTcs1whydzKAeR1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91gTvbirbo/M18K2pZqtLjXwlU+++bS2EUmCpLG4o5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:06"]},"IP":{"Case":"Some","Fields":["46.226.111.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soP49mzpYUFEwVdiFN3"]},"Identity":{"Case":"Some","Fields":["I1OWg4u4/Hr6UpBCsZYV354q8hg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["suc5DSVukWbZCudnJP4MDBmuDQ5pViXZT9GsXv+XPQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:47"]},"IP":{"Case":"Some","Fields":["68.67.32.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CH33P"]},"Identity":{"Case":"Some","Fields":["I1EtZPih7BGJ8VOjvHStdtI0Pfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qpv18WUwXzhJgcS5BmNwbs735KR5rL03VryyGRes0Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:13"]},"IP":{"Case":"Some","Fields":["185.247.226.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:2:18:4348:2d:3333:50]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ceres"]},"Identity":{"Case":"Some","Fields":["I01nDqp5Twkve9dY1dKqf04/++M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjPSQYwJMrVjZr+akEwnfiIeEJ7I/nJU0zxKFGOeDqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:04"]},"IP":{"Case":"Some","Fields":["45.13.104.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:cbc0:1100:1a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pizzahut"]},"Identity":{"Case":"Some","Fields":["I0sG5NqRXVJ8iX4h/R6fCAEuKWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ygNUf+A7wbbWIfy7oloarQz7reIWPYuXVOESosXGy8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:45"]},"IP":{"Case":"Some","Fields":["5.254.118.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["king1337"]},"Identity":{"Case":"Some","Fields":["I0d4r568WZaQM2hK2IlTAGM1l8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F+hCS16MtZ0QdxwO8M0VaSRVVxLBQAVIot1wueiMciI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:18:04"]},"IP":{"Case":"Some","Fields":["90.187.138.41"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv02"]},"Identity":{"Case":"Some","Fields":["I0YqTbppdYv8tMKJiQWH6ibUZUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqMJlHu5Pa9ZaVvC8WQW9x75KVp2UvirAaIS1PwsFFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:17"]},"IP":{"Case":"Some","Fields":["162.248.162.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer22"]},"Identity":{"Case":"Some","Fields":["IziOX515FvhP6ZhhNJF4o7x+C1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xR91ADmJw4k2/AMox6lNjpGsPfVY1KzdAXBvNqjPiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:27"]},"IP":{"Case":"Some","Fields":["173.208.190.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["Izgw8KBS84RXiWB9HsFUV88V+a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDzT5rV1ZYSjBpwgsRwj6KSntNOFCQo+QrHcXNkspRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:55"]},"IP":{"Case":"Some","Fields":["151.80.148.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigBang"]},"Identity":{"Case":"Some","Fields":["IzMPICeh2sp5KrHjeuHPD4fzcLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tld1R9LzG+Io1L0wgFdGt0l0ulsMy8vmo6rMhLNtiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:44"]},"IP":{"Case":"Some","Fields":["85.214.173.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:420f:7b00:b712:1cda:3513:2005]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaxyTorProxy"]},"Identity":{"Case":"Some","Fields":["Iy+V9EBZeAxYOnMyt2cCrV4RqYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6LAJ0gKUUPcXLwEZqa2sYPGYxrzf1cMKoxUD484SgJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:50"]},"IP":{"Case":"Some","Fields":["217.24.20.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:2160:124:d8d0:96ff:fe60:a00c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["Iy7U7UzGoq8cVaYs43JeXapNGqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TnJXZEIAqnplhfFmnQUPjmCjKTvsOPIF1V9x6xVFCKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:17"]},"IP":{"Case":"Some","Fields":["178.128.38.182"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::bfe:8001]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pgmr2Relay"]},"Identity":{"Case":"Some","Fields":["Iyfuc8C8INvAxNKBwJ19MwfC8bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ZAjqujHVQjFANjy0SC1EvOL3Av/vvL/l5xTBm7ogIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:53"]},"IP":{"Case":"Some","Fields":["77.191.135.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:6d:417::b10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["organicloaf"]},"Identity":{"Case":"Some","Fields":["Ix3KoACDfFQmkK1JKN9X9yhlgGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wBHwpDiosC3tx1I49hSwlbzWZRd+lg6j8AUGxxVkRcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:29"]},"IP":{"Case":"Some","Fields":["51.77.100.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTIPrivacy2"]},"Identity":{"Case":"Some","Fields":["IxVRZQy5Nwc737udrsoik7dCjSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZvNWbV8o9im4o/JMpFvcDpmUpVgdyTjV3ErG7WQpUSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:25"]},"IP":{"Case":"Some","Fields":["82.221.128.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Iv+egcJu9gWGzG3G4X2nig2LeOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqGfvzxmTht9GX+98x4bHQqEphrOFXkEuuiIS2mMfdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:33"]},"IP":{"Case":"Some","Fields":["80.64.218.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::dbb:77db]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeSecure"]},"Identity":{"Case":"Some","Fields":["IvdOF2+ANJnU+A2c59MliDqMDkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pw6SqswLpu/XlB3TCqIrmlsn4thiDDekH5d476htiBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:25"]},"IP":{"Case":"Some","Fields":["83.96.213.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cat"]},"Identity":{"Case":"Some","Fields":["IvCqhhp067e0o+w+qeKNZ1D0d+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qUIa9BMOT0JZtwX8iXPGu97m3Fj4Q7SV5cztVq/DZxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:07"]},"IP":{"Case":"Some","Fields":["185.100.86.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gijsje"]},"Identity":{"Case":"Some","Fields":["IuvMChX6SFDQ2Km8YhykIiQzjvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uo6xx7o9W/fzCnKKAe8foFCKs9Pp1sM/sdxpqx6+MQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:26"]},"IP":{"Case":"Some","Fields":["192.42.115.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:103]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hydrogenuine"]},"Identity":{"Case":"Some","Fields":["Iul1k1unfqWaKOoaqDh/kGA0/L4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IixpZvF7kWCxOoVIfxgqpPzB0ATISA/HWaO1+KpcrGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:26"]},"IP":{"Case":"Some","Fields":["172.104.208.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:19f:0:11:11:11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1804m1"]},"Identity":{"Case":"Some","Fields":["IuHR20cjoXTnE7G/QHPawcJTUbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z/UCeACp+YxDd57T81SJ38jsEMF3YP+1Xv1UGVK0WFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:16"]},"IP":{"Case":"Some","Fields":["198.211.103.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::1516:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ItUnIBkyOZOaWVlS+9XnMfAH5OU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5Ar75O9Hw59WphTCklirQaNwRXPVca0IiaiSaznqjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:32"]},"IP":{"Case":"Some","Fields":["51.15.120.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2514::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poolparty"]},"Identity":{"Case":"Some","Fields":["ItNvUF+cFw68LefirRwvIm+h6aU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MKMwNLvbknWlXvrDRlg2g1wN0UEJN8GEuybkD0/DYYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:17"]},"IP":{"Case":"Some","Fields":["85.119.84.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba8:1f1:f166::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Pegase"]},"Identity":{"Case":"Some","Fields":["ItIxS8UUaJCo5cGciE2WwMv+qiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noaS+ns4REYJBZE0jvNlhJ1bzztlBOa6ZlH7NdRZKss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:32"]},"IP":{"Case":"Some","Fields":["80.67.167.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:cbc0:1100:7::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Is0Nk/qITiSpQekVE/ycXQjA+JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hN8jovT3xJPAKFTzWWKBz713tZVYYXktToN8acBIFn0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:24"]},"IP":{"Case":"Some","Fields":["137.184.82.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra30"]},"Identity":{"Case":"Some","Fields":["IsExSGeSDaNwAdrRpj8dXKv52xE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9SnHQj5WBHEu6dO/wYdwGMItKjI5/jd4IsMSg5YjzNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:19"]},"IP":{"Case":"Some","Fields":["213.164.204.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fastnet"]},"Identity":{"Case":"Some","Fields":["IrzQ39FIIJyYYMf4mQerTe6XSgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bhul5Prolq5BWp79J8xNit/lgQPLoPSTjY2e3I3H+jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:36"]},"IP":{"Case":"Some","Fields":["95.216.115.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["Iq2yahzNiPn0va6IpKX06SBxXVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AtZSj7To2zZOTsIZi7+c0Oi/Gtfh4CQvKQgzxrbBaYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:26"]},"IP":{"Case":"Some","Fields":["188.118.198.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:188:118:198:244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1146"]},"Identity":{"Case":"Some","Fields":["IqAo6qO9dztX5rajNejBIfmXOBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fs02txdVhre6JUKkHk6IdMHViz9Qp0W0Jk6hoMMtVN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:38"]},"IP":{"Case":"Some","Fields":["185.220.101.146"]},"OnionRouterPort":{"Case":"Some","Fields":[11146]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::146]:11146"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange021usX"]},"Identity":{"Case":"Some","Fields":["ImWDaOWqB1rqrMGQda3BlnCncWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1ML35OPQoR4AbP/TB0B9JcxoQoa0lC1OWSqCPWbrAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:49"]},"IP":{"Case":"Some","Fields":["107.174.244.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HermanRimm"]},"Identity":{"Case":"Some","Fields":["IlturHWonTC6wvzHGC0Bh8HE12I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PQ7cNARB2ifIKGxRcNY3svkIl7HbMYKjnnbENdO+DzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:52:02"]},"IP":{"Case":"Some","Fields":["5.132.7.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Manureva"]},"Identity":{"Case":"Some","Fields":["IlqOo2ffMHNDPgqEXd2ibSNX5MY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hFp0tEqy5J3KD5yeHynCuR6ZF0G+YMY1UKI1oCiO+rQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:51"]},"IP":{"Case":"Some","Fields":["82.64.243.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BADBOY"]},"Identity":{"Case":"Some","Fields":["Ilj+Dr1XTfyhdnDhtH7eWnXZdMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3AwzhzHkNl7e0SVSPMEd6XITLJ4UOCZqqxR5ytSebc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:08:56"]},"IP":{"Case":"Some","Fields":["31.171.154.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0145"]},"Identity":{"Case":"Some","Fields":["IlUuwc6hSmtBj6noR57e+weVNfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["urKlQ0z+aRnzYTzjT7c1yY4T+IG3pXwZ1alK7UpM660"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:07"]},"IP":{"Case":"Some","Fields":["185.220.101.145"]},"OnionRouterPort":{"Case":"Some","Fields":[10145]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::145]:10145"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nasiOne"]},"Identity":{"Case":"Some","Fields":["Ikw90d/28RIZYEhw1IlTJJ7jwm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DVvOVdshA8UFACLpVxgNqSE1T7TBUsW3q+60HPh6bNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:05"]},"IP":{"Case":"Some","Fields":["212.51.134.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev7"]},"Identity":{"Case":"Some","Fields":["IkBKPofy1/4vxjWf3nG23C1ucw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P4h1I79N8Oy9a2GjLYqinsVgwcoVUHE8H34DvhShvYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:26"]},"IP":{"Case":"Some","Fields":["185.84.81.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:248:2:41dc:5054:ff:fe80:10f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip7a"]},"Identity":{"Case":"Some","Fields":["Iilstq5WYJqW8C+4Q6t7SwoxyvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["chhV6dW44XEwzdxZ1zYCZ5Dx0JRSzBH1nO6mPPXkO6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:20"]},"IP":{"Case":"Some","Fields":["185.220.102.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::254]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["IiRuVOfHNhsv772fZ3ZsK2pwM6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["izU7gnqFGmn6/USmmO1BfFuA2zESZ5G/qsIkib6hYTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:13"]},"IP":{"Case":"Some","Fields":["188.68.56.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Ih8DWjMKxCMaLj2QHxyxFIPBn2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A39c79eVbWD4jmIA/VuGeT4Or0bsYZhqQxglkYDUGDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:15"]},"IP":{"Case":"Some","Fields":["130.193.15.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malechick"]},"Identity":{"Case":"Some","Fields":["Ih6Xa1RuYASKAZUCUDmbhTTU5Lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0H+YGBmny7O3q4JFRsV6GGjy3426gLbH7pGdz0HxeqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:11"]},"IP":{"Case":"Some","Fields":["37.187.122.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:f308::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DOOM"]},"Identity":{"Case":"Some","Fields":["IhCIEeARBX+Y1/r1LyHPTddR9hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pvzxxm0JqT8jwRYXDT402Wo8RioZ/PexYkOAB4vg0OE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:25"]},"IP":{"Case":"Some","Fields":["37.24.0.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NekoTorES"]},"Identity":{"Case":"Some","Fields":["Ig7JrQe8i2IqK0qta9pGjYsm9FY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQ5AOBCERRBurApzhgyfuKFyrUYDGwfpNotvAIBl2Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:09"]},"IP":{"Case":"Some","Fields":["193.70.65.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woodman"]},"Identity":{"Case":"Some","Fields":["If/1lM/mkaSgO4KOlZep90+HgFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fMpQl1WMKheE9ry5JQs1UiSqn6o6GXYkcNCo7dshmGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:15"]},"IP":{"Case":"Some","Fields":["209.209.11.184"]},"OnionRouterPort":{"Case":"Some","Fields":[31289]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:112::1]:31288"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["IfuqNs4EpBYKfS2FtA6NlOg2uf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q5KfsuRny0Pp01fQwlFn2m/A6N9UnjbHHVaxH5iTASQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:22"]},"IP":{"Case":"Some","Fields":["24.48.197.52"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fox42"]},"Identity":{"Case":"Some","Fields":["IdAHhswNW9wd3s86gWTAcWxlu/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Hoqk6NDVtQQz36l374/D9UEhxTiUeS9FQAgPVLgaMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:46"]},"IP":{"Case":"Some","Fields":["99.199.235.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8880]},"DirectoryPort":{"Case":"Some","Fields":[8882]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["revengeTourII"]},"Identity":{"Case":"Some","Fields":["IcnZ8WMyRiad64SnlJXoXAfoRm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDNgb0aC2BRxoZ3jAWkPRZpDTYptZRKrJhteFzWdBU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:10"]},"IP":{"Case":"Some","Fields":["92.223.105.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::9e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["IbnWof7NQeRZfAkQ3FzSjqrzXUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QkGgNIAkAkckF0fxNO/PKcKhe7eEgjB94vU4aWh5X6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:52"]},"IP":{"Case":"Some","Fields":["94.124.124.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["IbVQcsAPRSKFdlX7sPPiXXWlNXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W8okhCct3+HabJcoFoafo0ORxEfJhkxd3UmI1VsWW5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:11"]},"IP":{"Case":"Some","Fields":["109.107.35.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1348:14d:96dd:24:19ff:fe9a:5b76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange013us2"]},"Identity":{"Case":"Some","Fields":["Iaxu8VyGZBzmI7igjWQUS8rBSuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7/b+7a+ze2DQIBY8v73j3NRSKHUn+QdZ5fWTo8Q6ieI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:40"]},"IP":{"Case":"Some","Fields":["94.26.73.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blo2okzvxytmp"]},"Identity":{"Case":"Some","Fields":["Iaf6mhapkg9JouCcg6CXQ+xXSCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aektIX/ygEyL20NH6YGSmUN7vtBPa6TzNK5m4CVyvz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:50"]},"IP":{"Case":"Some","Fields":["85.214.39.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42a2:c700:b0c8:73c5:c1bf:e818]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["agxtorrelay"]},"Identity":{"Case":"Some","Fields":["IaGDqx8LIHtQoeCGh2hajZQMX4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I71oT9bUTbe2jJ44bNldVWJGGwxi4ZN0X75A3FTZq/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:41"]},"IP":{"Case":"Some","Fields":["80.221.44.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH108"]},"Identity":{"Case":"Some","Fields":["IaAQfgSEjmoqKy7cQ1YJjEU6Do4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eb95qq59CKMtRSVve6ubmRzv66/S7lHb79k6AFGlDoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:10"]},"IP":{"Case":"Some","Fields":["192.42.116.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0158"]},"Identity":{"Case":"Some","Fields":["IWZqJf+4nXS1+Vd9b6i7fqfMd7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HghfhjITsJqMRTFmnOFJLcAcJkK3X8pgQvu4a+Pflug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:18"]},"IP":{"Case":"Some","Fields":["185.220.101.158"]},"OnionRouterPort":{"Case":"Some","Fields":[10158]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::158]:10158"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["red22"]},"Identity":{"Case":"Some","Fields":["IV5mFhnNoU41QzX4HJpHX3jxzYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VD1PZdRMAmXB+b2KcZGUwAkdWIdFqR5GcWSnq9GiB8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:00"]},"IP":{"Case":"Some","Fields":["172.105.47.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoarseSupernova"]},"Identity":{"Case":"Some","Fields":["IVzCjX4nOuMwjwQeRajuO6bYVlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpvHmpEsiLRmKMOSCmB6dTrJ1XmpBT4XzmVRjWbUBt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:06"]},"IP":{"Case":"Some","Fields":["185.140.251.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange013us"]},"Identity":{"Case":"Some","Fields":["IVYWUn+5ftW+C/jSFmvbRO62qEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DUDx9sbOTc1gcRaPSMd5nk3H2AA88FPfpq0MUjWf52k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:33"]},"IP":{"Case":"Some","Fields":["94.26.73.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["IVJKK8bEJ1sv3CPw/yNEttj+wlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4OAeXu1Vg1wnV8V2RMnfl+H/ILPn4Mt7bh/2Epkc37o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:34"]},"IP":{"Case":"Some","Fields":["195.90.212.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Polonium"]},"Identity":{"Case":"Some","Fields":["ITl+8HBFM9jLxYI4NztFjb41plU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4LwIatVeNLnQ5tXVCOoj849eLLI5xh+kObyS/2VcAEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:15"]},"IP":{"Case":"Some","Fields":["45.154.98.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tamanegi"]},"Identity":{"Case":"Some","Fields":["ITEPSAZqTKresr/TJPCzj44USNY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hfCBahlA87J4VeAMp/bkrthFs8eqXDz08nNmKAWOT1o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:43"]},"IP":{"Case":"Some","Fields":["212.89.225.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lavaronn"]},"Identity":{"Case":"Some","Fields":["IR8DPPmSzBQZxXvleRVvw0UzvVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2J05c+gN5sm8obGdpnZDxc0LeNn7iiGoDg1GhWca7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:51"]},"IP":{"Case":"Some","Fields":["92.232.216.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rlyeh"]},"Identity":{"Case":"Some","Fields":["IR5Ob/N+OskIvZNS8kdVYmkGMxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["959O0pMDJBeKK1PAy8UNlPon5AOKERjpAj8solLpXGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:58:59"]},"IP":{"Case":"Some","Fields":["54.39.73.124"]},"OnionRouterPort":{"Case":"Some","Fields":[6672]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nighthawk"]},"Identity":{"Case":"Some","Fields":["IRnlpLX0IBZb9d8ZpaKPRhD/0QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZvBPzwkpPn2L1HuAuB9GvulqUaPaoOqcMwSLynxtNBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:21"]},"IP":{"Case":"Some","Fields":["78.47.36.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex56"]},"Identity":{"Case":"Some","Fields":["IRh93VUmBZV7LuWry9oOGSUSk+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eBkvFAHui3zR3uMPy7/795XPV5lgH3DGi60g7c+pM3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:17"]},"IP":{"Case":"Some","Fields":["199.249.230.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::145]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heliodex"]},"Identity":{"Case":"Some","Fields":["IRUk6F6EiRCkkjeDnNGsNDJKQbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rj75o4i9LJFVctzRzwcsrPJtdA+fK58IVXd0QKyOIX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:35"]},"IP":{"Case":"Some","Fields":["51.148.150.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay"]},"Identity":{"Case":"Some","Fields":["IQ6bSuFNeGJxBe7b2o0sPvpk1II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oNwGKFWY5MoX2bQo+WwLEmjVLcc2DkqdLZ5v8kZKLuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:28"]},"IP":{"Case":"Some","Fields":["50.46.237.184"]},"OnionRouterPort":{"Case":"Some","Fields":[49092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoLooseEnds02TrSrvr"]},"Identity":{"Case":"Some","Fields":["IPM0m+p4PFFyuWea5GA4oM4qxhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6BX0EWmLlbxrTUsRHcT9uBKlghDwVtCr85CJI7JsKAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:14"]},"IP":{"Case":"Some","Fields":["74.208.37.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:19b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enjutoMojamuto"]},"Identity":{"Case":"Some","Fields":["IOqi+u4KZLeMKUU2ujv/DXSfAOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qY7Jor02o88MBs0amB0dAlAkHzeVNWSKiQQTQtDjw0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:51"]},"IP":{"Case":"Some","Fields":["159.147.104.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopeforabetterworld"]},"Identity":{"Case":"Some","Fields":["IODdOtJmGV9GIOgzS0z39Ro/IQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wFrX+YPSydZK4NtAc3KgmHhbZ8Les0kLH+e3Q1WiI4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:32"]},"IP":{"Case":"Some","Fields":["188.68.45.72"]},"OnionRouterPort":{"Case":"Some","Fields":[483]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:46d::483]:483"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ariel"]},"Identity":{"Case":"Some","Fields":["INfTFzhrCwI3gQ7Qn2DwYUfOnvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h68bWu9JErr+s+9eGTVRrB93QXN89JSu71MHF71cVkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:10"]},"IP":{"Case":"Some","Fields":["80.82.78.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6c8:8000:22::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx6"]},"Identity":{"Case":"Some","Fields":["IM2TPtxyYLGQQEdbJP1rAbc+lLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fjJEKM93eeVwF03ismpRSWkvbTI1jPc7k29gMQrGzCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:56"]},"IP":{"Case":"Some","Fields":["51.81.35.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::8c3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NuclearCat"]},"Identity":{"Case":"Some","Fields":["IMrTGSF9g3vQ+htnGKRzwk/3ihY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTYJnrXCeW+42nlN24YZRzP1x9Q4ryveaN4zEgOKyBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:57"]},"IP":{"Case":"Some","Fields":["209.209.9.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:222::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RockyMountainRelay"]},"Identity":{"Case":"Some","Fields":["ILv/3XmeCd2a24ZbO5VggXDb4xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WvRBOWI/6+0epkduIxGj983Dj+v818bU1YrRZVHmkt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:07"]},"IP":{"Case":"Some","Fields":["97.121.188.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1147"]},"Identity":{"Case":"Some","Fields":["IKG1V4QFeITbi22QAmhk7eFFQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2fETXfFPkLTmTMus+YOw/J6CPat0VEJgLhgJABnwF8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:01"]},"IP":{"Case":"Some","Fields":["185.220.101.147"]},"OnionRouterPort":{"Case":"Some","Fields":[11147]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::147]:11147"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohhiMarc"]},"Identity":{"Case":"Some","Fields":["IJyPgXxmJhHRKmDt5xB44j4X0c0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FshQQL81zpN7d/6c5AlT5yFu1IfMBktJJi2Mg9Pd5+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:19"]},"IP":{"Case":"Some","Fields":["103.251.167.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::21]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kalleponken4713"]},"Identity":{"Case":"Some","Fields":["IJsoty7BuO5ccEMen+gr5YCeDK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oh4lDVyrS3aeDL3dWDTfh8uUeo4v/qeyAM74yFSiyJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:21"]},"IP":{"Case":"Some","Fields":["83.209.9.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet1"]},"Identity":{"Case":"Some","Fields":["IJdNKOtmjmidQlYEbg4yA0N1oKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mzw6w967chkAHlzXc0O1IBSTWrgbaYzdH+XfH6MipRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:05"]},"IP":{"Case":"Some","Fields":["46.38.236.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:ba4:88e9:eff:fe89:3637]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freja"]},"Identity":{"Case":"Some","Fields":["IJa8/ruVoRNPOfz4zrB2/0GitIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v08QEMuD8+uaE2d3p3mTcyb0njD4ra1a4qmahaL0TUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["194.88.143.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Temp123"]},"Identity":{"Case":"Some","Fields":["IJR/jZZwMdYYEBX2vQ+qpJ/I3bc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s0q/mTEVX18w35sCpPyrSBq+NV6DgDxNlLX0a0J9HJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:51"]},"IP":{"Case":"Some","Fields":["18.188.59.68"]},"OnionRouterPort":{"Case":"Some","Fields":[16000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RogueSwitch"]},"Identity":{"Case":"Some","Fields":["IIHBaWskmn5m2v2xRzOFbWitthU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbQcSbpRF7/Rm4ZbKmajR3WTSyd4DFrfeMPeiWVNYTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:38:48"]},"IP":{"Case":"Some","Fields":["78.80.47.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["contabous"]},"Identity":{"Case":"Some","Fields":["IHa8UhljIvheaWsZn+aww17vafA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DhPdRWHcSicxI4VtzTOAraHvlcRX0G6D52a05S42tn0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:40"]},"IP":{"Case":"Some","Fields":["209.145.63.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:3007:1287::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kenobi"]},"Identity":{"Case":"Some","Fields":["IGsrjBqx4gwCz+KpE6qN4WmYD8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TuDMnvoVz5Qg+DVA2Z1xerNYFT3E7zGjD8ChBpjOp2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:53"]},"IP":{"Case":"Some","Fields":["51.158.154.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicTor4"]},"Identity":{"Case":"Some","Fields":["IGLG/kDtYynwLqyPuN47aC+ZEOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BKxqCooqClKyNHD6A9ReBVo3gwb8jJEthqpTKr6qpFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:18"]},"IP":{"Case":"Some","Fields":["62.182.84.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Arbutus"]},"Identity":{"Case":"Some","Fields":["IEd16aL6SSjhWJueYwfLPRBOhJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IhAJXvQML1kowiGvJWBU7FzFxpuCnUubxPnW0a+Xi74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:51"]},"IP":{"Case":"Some","Fields":["162.156.191.108"]},"OnionRouterPort":{"Case":"Some","Fields":[55000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Janus"]},"Identity":{"Case":"Some","Fields":["IEdoPd2lZCq0/JNBTKRAf+EAOBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["srjV8TcFDTzAyXoNxoSqGLWYULTC1/h63ipakJ/L+Ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:25"]},"IP":{"Case":"Some","Fields":["92.35.4.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SXbqvQix9zBHtEnBY3R"]},"Identity":{"Case":"Some","Fields":["IEZfPf1396yV8xpNNXJvttgvDmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q05lz06qpUH6nI9aAwotreWCU0KgHJ7R+XEw9M65ftA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:44:22"]},"IP":{"Case":"Some","Fields":["178.78.212.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scaletor"]},"Identity":{"Case":"Some","Fields":["IEYsul2kwtljVn0X0LcklxgRSmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSMhbFZiNjKbBq5F7xOQWa757+5Mykaikhqfmy40jWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:13"]},"IP":{"Case":"Some","Fields":["212.47.229.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:23a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mytornoderpi1"]},"Identity":{"Case":"Some","Fields":["IERrgbMrGXuwndxO/rFicyZp+d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ppVCruybVVlAed6FpHmkSgmZo1pVHkSndldIHtWlQ7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["82.213.247.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LunaTor"]},"Identity":{"Case":"Some","Fields":["IDemVoxXcaXY/1xk/BgZJH5v7ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEXzpuIq6WmorSC86GqDeArnGnTcNmBv1nrzjmFcYnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:24"]},"IP":{"Case":"Some","Fields":["66.146.193.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bernard"]},"Identity":{"Case":"Some","Fields":["IDYYZiU72xoHHX6tN0ThhwT85vE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hb4MPMwnf8lQyiI6LXv+0A7uIJewQUUDzd3BnfRR4sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:01"]},"IP":{"Case":"Some","Fields":["45.92.238.246"]},"OnionRouterPort":{"Case":"Some","Fields":[6666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["n092c7283c"]},"Identity":{"Case":"Some","Fields":["ICMG/mhaq8uEy4JTRIDFaBnSRj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DFYlClVpNb2CIRu0o1RNmOi5JjQ3jtZswldbxjDFdvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:06"]},"IP":{"Case":"Some","Fields":["47.254.174.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ICK8s3RT3BaObLe02tEZrAcvLe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rp5nl6m7lo05RN8XRPCFWJyRnene5zZ8RqVo9a/lakk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:35"]},"IP":{"Case":"Some","Fields":["185.80.222.158"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2498:f000:0:216:3eff:fe4e:7134]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ICCQIc6LhzL47lfTE6Nv+NyCPl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XoiXQcsRt+elPQkWOe+4I0yBlstoTg3Hvps01Yh+tTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.41"]},"OnionRouterPort":{"Case":"Some","Fields":[10041]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::41]:10041"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0191"]},"Identity":{"Case":"Some","Fields":["IB/3Ns80BhNLKmL+WcgPFIBFiBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wdfCX/QaPyUAE6DQQhl7QL7+aJRqCmhOGr8C5NztSFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:13"]},"IP":{"Case":"Some","Fields":["185.220.101.191"]},"OnionRouterPort":{"Case":"Some","Fields":[10191]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::191]:20191"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode2"]},"Identity":{"Case":"Some","Fields":["IBcVtlSoaJTA6jVRaMO7fD+GpkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vpnZxIKXn+C/wfg1wVnoFPjkNMtC8kngK8NYyZ+QreM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:26"]},"IP":{"Case":"Some","Fields":["184.105.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::89]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DulciusExAsperis"]},"Identity":{"Case":"Some","Fields":["IANjBHPltn1NiY08lDBnC4Ox/8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zmjDyi8FxGzPEeshKfPUfOqY0rxVObkPTJEqNa9LnYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:36"]},"IP":{"Case":"Some","Fields":["82.54.68.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mbserver"]},"Identity":{"Case":"Some","Fields":["H/TVkasO0CRHXpSWm+1Yxu+3FUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GUJ/jEYg0qr6iGjUdbEwZSsMrFmDTGDf4u4V0DwWxiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:13"]},"IP":{"Case":"Some","Fields":["141.135.88.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thewatchtower"]},"Identity":{"Case":"Some","Fields":["H/DlIcWyCFdg7zpQ1q5AA2pED40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLTRm1ycNzbOX6I/HinkY2aUpj099mq1c5GcZpUQDdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:18"]},"IP":{"Case":"Some","Fields":["81.169.240.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid3"]},"Identity":{"Case":"Some","Fields":["H8VbblR4nLSu8fWp01xEIHiatd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoVqWql+Y0loT5/SBQYXNHbUXfmtBNTfWuMKG1h/xgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:28"]},"IP":{"Case":"Some","Fields":["94.142.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeachUnknown"]},"Identity":{"Case":"Some","Fields":["H7nMvgLPEJeOqxaUOXOsXFSPokM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AUzvTngqvBlq7RyHxgu2JiIkrq7Bb0fnAwFHVYn0Lek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:07"]},"IP":{"Case":"Some","Fields":["79.141.174.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uta"]},"Identity":{"Case":"Some","Fields":["H6RuWd3ndSs+IDEubcG3AnM2KVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAZX3QnkrwPcOr6XyLwkSZAp6cVht9vxBUkICUVK9eE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:02"]},"IP":{"Case":"Some","Fields":["5.181.158.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:8::12]:9054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["H6RLxRvyQW0+RMmq1zL3sUwNHAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0zEbGj3Aw8uuD2APO02e0Dp0UKNpq/lFOJmm7bhoKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:39"]},"IP":{"Case":"Some","Fields":["89.102.210.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["H5U6y/ufRM44VDt+nA4L4b3H6UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuxK6WsiPG1W6ishjTXEUTBJm4jgfsTAN696Ecjgphw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:25"]},"IP":{"Case":"Some","Fields":["185.32.222.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:ee80:e:fefe::41]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cducksy"]},"Identity":{"Case":"Some","Fields":["H4bKF+wZ0LZGI5vEnuUBSpi0OW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["naqRfpFEPF8pNem87mnMWSWMRSm0ieZvpU+cxwOF7qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:33"]},"IP":{"Case":"Some","Fields":["45.61.137.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PigsAreWatching"]},"Identity":{"Case":"Some","Fields":["H4QrNHpbnHD+tYIGC/mi1aBsi2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z7pp6EjHzdqkXiBu9e5qWPpTEepkmwpLPxtFckOFz4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:31"]},"IP":{"Case":"Some","Fields":["146.200.41.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unitedstatesofx"]},"Identity":{"Case":"Some","Fields":["H4N0CM7OkPji25O/0vwSHti26bY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3obn58dhHTxaElkuyODv1UpJRLIsexz0X6yy5tW3QYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:38"]},"IP":{"Case":"Some","Fields":["185.112.147.58"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toreto"]},"Identity":{"Case":"Some","Fields":["H3qtrr1hQdzqMg/oIdws+OfkS4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mG2euJXcss91zsHudOBOOj9eSYBdAZDZluf5U0k9aYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:19"]},"IP":{"Case":"Some","Fields":["79.143.186.17"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2009:4845::1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ballers1"]},"Identity":{"Case":"Some","Fields":["H3ct2T2iCmdF4zS6/8e5dlh2uxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntxIbTMT6Aic4o6RakkS+Qi6oGOsrbaV7aSIDOCOkpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:09"]},"IP":{"Case":"Some","Fields":["104.57.231.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VPSRelay"]},"Identity":{"Case":"Some","Fields":["H26182SdJXYkDJ0TR4lfbIoLeGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["42cdnA5reaD+2eC9X07ss6du7cvlUrZWfRIauHF1fvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:55"]},"IP":{"Case":"Some","Fields":["51.75.170.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9040]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dao"]},"Identity":{"Case":"Some","Fields":["H2q9CG9AuJCjPJPMRgbuaLMclVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCH1uozzVQYDvNDxLtE4q9d+GhYy8OsSxG+kAHIJqpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:55"]},"IP":{"Case":"Some","Fields":["199.184.246.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:124:1009:1::171]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterry2"]},"Identity":{"Case":"Some","Fields":["H2Q5J7z4vehb9HpeOs7WZjNUUfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S+g0roXpEdPXuAvWYWrSPa+16QgrbqJIfFduEUJVUYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:16"]},"IP":{"Case":"Some","Fields":["70.109.131.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perlman"]},"Identity":{"Case":"Some","Fields":["H2Fu+ufUVpYENy75YM4nvMiQYKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lk/rNjC0Dwxsh8DqmmwG+8NO/WyIuQ5PWMORqtHsUUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:52"]},"IP":{"Case":"Some","Fields":["45.76.86.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wut4"]},"Identity":{"Case":"Some","Fields":["Hz/kQmO7I80sLwiL3SbvkdLjeLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rps6DA2K64etwR+VEMYFBCk/W3FCLfhYRwf+sS1oHKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:09"]},"IP":{"Case":"Some","Fields":["54.37.137.112"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1a6e]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibksturm01"]},"Identity":{"Case":"Some","Fields":["HzuPlSJj2+6L9VE8XRIOu1mz3ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdF5uGjFa7OF+1e4MVq90/7Su1W50gzDxe3MmoHbqWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:31"]},"IP":{"Case":"Some","Fields":["213.196.191.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b441:8b77:46ff:9406:c292:7673]:9080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cerberus"]},"Identity":{"Case":"Some","Fields":["HzmOIOyHY/wt2Je82jfuJMRgaeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Xt75/wIjQGbrkdP/4/Wy7lk/p1aBS+CxmAtnrcnVTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:46"]},"IP":{"Case":"Some","Fields":["85.1.110.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhiteGoldeBlizzard"]},"Identity":{"Case":"Some","Fields":["HzU+L6vOgEkrFWVlorVDmvgWOCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qige+tsGdzrP9xCP93XTIXY3A2zu9Gxt3FpmmqDht6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:27"]},"IP":{"Case":"Some","Fields":["45.86.209.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f303:463:374::5ce7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["euphrates"]},"Identity":{"Case":"Some","Fields":["HzIpSQ+0Rkjj7m+MPuozu2zpdnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xL7CQfGBKttMy1CMJdjfcShoRWo7FFaN8UUmq4ylG+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:16"]},"IP":{"Case":"Some","Fields":["162.251.116.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Hy9jTW2Hz2xTWME2f5vV+SbO8/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6P+sYT3kRmQRKjey8FCv9Q8piuXvAOKUKvn/ZOanyk8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:00"]},"IP":{"Case":"Some","Fields":["188.68.58.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Citadel5"]},"Identity":{"Case":"Some","Fields":["Hy63AmjOnhjOhk1E15PiCR885yw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmhjYf/nREd26VahyccNgc0TuKgRF/YQ8biQFsNP0Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:52"]},"IP":{"Case":"Some","Fields":["46.4.57.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:1465::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HyTCXgqX9Js/MZUCeATqhQc+0aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fOzpK2TuTZBocxt3SvKTUIlIXIRexK2An2M/eoHMzj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:55"]},"IP":{"Case":"Some","Fields":["185.204.109.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plutoa"]},"Identity":{"Case":"Some","Fields":["HyB3vwHK8j+BnUiSqJiDGWq6hCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNJZovZMrHR/hldYT86e472YaxQRCitny5cZNhhJOkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:46"]},"IP":{"Case":"Some","Fields":["37.235.48.247"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:48:37:235:48:247:1]:7654"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Hwy/n53h43L5abox0tIU88pd3s0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6q5UFBJO6+VupvHGgmrQkk9BzpUyuc8v0RC9ALoMa4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:34"]},"IP":{"Case":"Some","Fields":["37.122.208.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sepiidae"]},"Identity":{"Case":"Some","Fields":["Hv8nBNGb9FMFu8ylPitZo9F6buM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QTWIpq5HSpULwT4c1eM6HMJMJIUQybvVnlI80rH2i8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:00"]},"IP":{"Case":"Some","Fields":["172.0.47.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cb1820"]},"Identity":{"Case":"Some","Fields":["HvuszSigf9ateqbxKTF31xOX6Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+IGRuJDj8PMWv4gJrzcLlp/EkW4syZvffH7lD/wOJUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:40"]},"IP":{"Case":"Some","Fields":["144.76.3.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:7385::2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["initramfs"]},"Identity":{"Case":"Some","Fields":["HuolEUcYCP0mMi9k1paayxiTZEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d+1nyFC3Lrv3JF+MoXO4mdkJPhBgF+yw2vVgoYmBmBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:56"]},"IP":{"Case":"Some","Fields":["114.35.245.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b011:4006:1d03::b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuackQuack"]},"Identity":{"Case":"Some","Fields":["HuFROfOJ/aJEACOWB8tMC+XdjHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["72IOjDQe4yZdAwBaURVK4kPJLOekLzO2QNF0xJedPE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:56"]},"IP":{"Case":"Some","Fields":["160.202.162.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W4LS3R"]},"Identity":{"Case":"Some","Fields":["Ht5gjF4ZDIaCovgnZk51hBYQRnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9H6GiJaJW3BO9hTMhwifjGxwMtxL0NjI54dkf516gTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:51"]},"IP":{"Case":"Some","Fields":["185.156.175.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DynamickaCibule"]},"Identity":{"Case":"Some","Fields":["Hsd1Akp/L09Gv+HnxYfarNxSBNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0INPfyrHMGF6iWRHLHwtogSqfO4XIGFmwYnnQZfTybY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:22"]},"IP":{"Case":"Some","Fields":["107.189.28.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f1f6:b1b2:cfe9:7a71:69d1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ailuuchequai"]},"Identity":{"Case":"Some","Fields":["Hr/HM8zZUvf3YW67p7xrjm8vDLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vr3zCnGYJ5pHXlrjJ+U4WAgWDz+46Fq328Ou2XEPW5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:45"]},"IP":{"Case":"Some","Fields":["94.130.58.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:2613::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HrpWx2SxxWviW0BchMgsWPEmsbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ILpLy6ycKpHR9+fs9MjM4ssFTS71IBTWyERwbl89hbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:56"]},"IP":{"Case":"Some","Fields":["188.95.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobjoe1"]},"Identity":{"Case":"Some","Fields":["HqUtHS8F6/6QuivuytewOcK9qpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LFgf6T51bDL7wWTnxSm1akp/UWK33DIij/xecn7Mybc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:01"]},"IP":{"Case":"Some","Fields":["75.58.62.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:6b8:800:0:8000:0:3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipdb"]},"Identity":{"Case":"Some","Fields":["HpsyoAxZSwMll9i2od95tzRTFTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZdA+V0ZIKPttcv3EeiSdivN6IZHBDfVrmJIoXeKA5Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:55"]},"IP":{"Case":"Some","Fields":["185.220.102.243"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::243]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["HpRjTMjTiSeaHF6t7G6BcXnXT/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mRgctjn5AKr2tDTeb9hZ8+jgXff9lua0Ak+94gQ2ho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:45"]},"IP":{"Case":"Some","Fields":["23.128.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv09"]},"Identity":{"Case":"Some","Fields":["HoWY4eKnR+dZlAF+aVc16yqGYw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VeyW5BL/B5Q1T4DNH6FlWWApKyr0a+ckRgO6o9bE2CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:43"]},"IP":{"Case":"Some","Fields":["162.248.163.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoodColours"]},"Identity":{"Case":"Some","Fields":["HoJVc/jv1WNeXB47hcpkfPyEuoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vnl0GHclddgvzWrfMrUCpHuvkm9/9TrzBO5kvdKLWDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:45"]},"IP":{"Case":"Some","Fields":["23.105.163.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bambam"]},"Identity":{"Case":"Some","Fields":["Hn/jZKgUNAy9eaorM2XnGNOxpnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1UAkYF37T8lXdP7pOiFzd1rzqIeXX1THNB3LurHyvTU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:40"]},"IP":{"Case":"Some","Fields":["90.231.149.18"]},"OnionRouterPort":{"Case":"Some","Fields":[39062]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorNY3"]},"Identity":{"Case":"Some","Fields":["HnOsOrvVUAr2hQwtWSw2NzRFT6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["23OTNBIti+L8Pkl1nvt68vIEnVawwXUbYlNkGtD8+Hw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:43"]},"IP":{"Case":"Some","Fields":["107.173.89.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste16"]},"Identity":{"Case":"Some","Fields":["HmTazhN6SmIj56SnMGCiLspG17M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PRvy/6jKCr7EgUvaGSskdfkKNfod/VuX2uYLT4H+rAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:31"]},"IP":{"Case":"Some","Fields":["91.143.87.51"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2fcf]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blankenship"]},"Identity":{"Case":"Some","Fields":["HmPCztO23c0QeLKk8QyKSL0sMaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwUyneQz2zJer8ROXZS4uUO2f3GuiL/h70lo+7GYEb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:27"]},"IP":{"Case":"Some","Fields":["13.124.18.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hazeltine"]},"Identity":{"Case":"Some","Fields":["HlYYwHnXTPmuDFNw3kxuGv1cCzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xSoh1yZQMlXVukCSvuE1rBRNSR56vqceI12cZVUaoVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:12"]},"IP":{"Case":"Some","Fields":["62.113.216.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex43"]},"Identity":{"Case":"Some","Fields":["HlE23cUvrhIZII8Ka62wumJYfuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwJH781jphRacXHrYVKbyIppE3vi4xsTIuvv62KUrHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:23"]},"IP":{"Case":"Some","Fields":["199.249.230.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e642]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["HjwZfIySISj/BJhW4FNv+ctOXow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JHJMiD3Vgr5eD7WzCE6ykIdLglkIsn4Cf25UTKH0xRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:50"]},"IP":{"Case":"Some","Fields":["185.244.192.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slotor03"]},"Identity":{"Case":"Some","Fields":["HjJu/jVauYkSJyr3JNWRdrXCN5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnCM5yJDkT+2r2NH3mH7cw+Pp8qUI56QZbEMRKCznLY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:49"]},"IP":{"Case":"Some","Fields":["51.79.221.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redbeans"]},"Identity":{"Case":"Some","Fields":["HiOj4IHiyALs5hGQwhTwcjpmlxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EJVbSdDu1ikdFfR9r7jLcadRStt9YPcrnHqwLEQOzkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:50"]},"IP":{"Case":"Some","Fields":["45.35.130.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allstars2"]},"Identity":{"Case":"Some","Fields":["HhvvLI4WlawCHJAQQl01CAIEk3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XvpV1NRHladCugP7Crc6FWXRvNCabKdTKZ912dXbPuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:32"]},"IP":{"Case":"Some","Fields":["51.79.170.198"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams08"]},"Identity":{"Case":"Some","Fields":["HgbK07qQm2dhjkjIJQgcQK83/zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3FWz3OS6Ugk9hiJIWtl1sd23+0kb9An3eTJU1vxLY6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:59"]},"IP":{"Case":"Some","Fields":["45.151.167.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::d]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Goliath"]},"Identity":{"Case":"Some","Fields":["HgPYHJdE3g48nebm+98d+drqWvw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOFt3zjpdu8hqIb9Uqn026gAktoE/rhd6vMcn3WZTjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:40"]},"IP":{"Case":"Some","Fields":["185.107.83.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra16"]},"Identity":{"Case":"Some","Fields":["Hf45dJPQeR3mPy1upatuvLe5hxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixd23b/En8RhZaTHqIF7obj0zQjzyITDeCKuwF3iyy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:54"]},"IP":{"Case":"Some","Fields":["193.218.118.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::155]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charybdis2"]},"Identity":{"Case":"Some","Fields":["He7NkGr+z0lrfcHkCCn0VjUXtMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CrialbvMQ6F833cCIzkwmr3E1qLKrSLHK+RNPeahLRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:50"]},"IP":{"Case":"Some","Fields":["92.205.161.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlindedByTheLight"]},"Identity":{"Case":"Some","Fields":["He0RMFLxpGoAjfrOv0w/IMYxPUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbnEnqeAu4GLD/RBb26pGotJVwPC8pcVuqgzJW7txak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:26"]},"IP":{"Case":"Some","Fields":["45.11.57.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["HorrorPicture"]},"Identity":{"Case":"Some","Fields":["HecFBMbpuyI+LsT61FxowHpq6fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZMdqtvEtfLmXbViYz5ifV70Fjb/jwiAZakzlyviGFdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:06"]},"IP":{"Case":"Some","Fields":["195.122.181.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorUser793"]},"Identity":{"Case":"Some","Fields":["HeRDw9nA3EuwFEGA2vSjwlu8kew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RhZ5eT/gZplz6La9dBxB8YeCAatR0eCYhQp30vwZjGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:18"]},"IP":{"Case":"Some","Fields":["178.19.96.125"]},"OnionRouterPort":{"Case":"Some","Fields":[27941]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::d3de:3e4a]:27941"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DETL0001"]},"Identity":{"Case":"Some","Fields":["Hc/ksCIWVwSX9+g6W2akP2Hc84U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["scXDXCvQ5qxfn9bZmYX+7w33YHCi8GkjZVoFoH9uzh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:39"]},"IP":{"Case":"Some","Fields":["89.247.201.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GaladTor"]},"Identity":{"Case":"Some","Fields":["Hc9KAxr5lM8Ws9P86+wO3KyQQhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VRfVBG8N5aU0zuNO+kaTYGlzwpzsDRpurwZ44wxb9hE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:34"]},"IP":{"Case":"Some","Fields":["77.182.171.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:c23:8429:c500:ba27:ebff:fe7d:3f4a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sgtor2"]},"Identity":{"Case":"Some","Fields":["HcnfKEL5W1Z5DwfapwvvqfEUSXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ymQHQcok+1UiLGxpLBwC/KVjvMmwiOdCS1Rl30ZU780"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:35"]},"IP":{"Case":"Some","Fields":["45.61.188.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonimaCasalserugo"]},"Identity":{"Case":"Some","Fields":["HcQr14NnHih5RXIkdYg35n/H5kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yCFbEqANuNVs+DZ1RlXOtQJdixbiZ/4AOHTesqWYBj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:24"]},"IP":{"Case":"Some","Fields":["79.41.243.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv128"]},"Identity":{"Case":"Some","Fields":["HbrMMUhvxnD71AP66Hc0LsaW1Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bia/Mrpl1hjEPNQR8gpSOdt0eV8rZLt/S3kdaiPRvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:38"]},"IP":{"Case":"Some","Fields":["192.42.116.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5528]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex14"]},"Identity":{"Case":"Some","Fields":["HbJd9Z2qAbW+PTzriv7RFZQOvos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTz/pqAjToUDRcZErjt00Y2BR37W3BbBtV8XW0oiIqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:09"]},"IP":{"Case":"Some","Fields":["199.249.230.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::104]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fenrir"]},"Identity":{"Case":"Some","Fields":["HajW4BCSsglo+Z1oYcXVG4AltRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LBjklCIBp1sfeH2tWYKVaySXHiMOUndHgORsRTWL94Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:00"]},"IP":{"Case":"Some","Fields":["139.59.58.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HangTheDJ"]},"Identity":{"Case":"Some","Fields":["HaiI1H5D7fzGDLwOH98MikPWQ0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h1SeX/cI0S6dOdWWmKRoswSu7oWFbza1cir98TzbX0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:53"]},"IP":{"Case":"Some","Fields":["5.2.77.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["incompatibleultra"]},"Identity":{"Case":"Some","Fields":["HZ6nkjHN6PxdUYECKvjPBtg/4Ik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qyc3QMiZHu8wOMMS270fz58vOZf/tm75cVZz6Ft3aro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:38"]},"IP":{"Case":"Some","Fields":["82.73.87.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarsBaseOne"]},"Identity":{"Case":"Some","Fields":["HZqQuJ4/9jMlquEq9zWIKgFlLhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d63P2mejZfcc3b2mV99dDqoiNUPD54G9iSt/Fk3xdsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:35"]},"IP":{"Case":"Some","Fields":["71.230.136.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boxendotspace"]},"Identity":{"Case":"Some","Fields":["HY7VTqnfLUZVitAJbdXZ3Sl/E6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJ0XXvVD9zm8c0SuJGndxZIj8kUrC8CT/54Q/4Of/lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:26"]},"IP":{"Case":"Some","Fields":["193.182.111.182"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG4"]},"Identity":{"Case":"Some","Fields":["HY3k70v6ONNm/OckncQaVA2OHrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mSK5Tckjw/alIf9fwu+2kfAc3LI3EwsU5j6/dc/j4mI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:51"]},"IP":{"Case":"Some","Fields":["193.189.100.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["friedShrimp"]},"Identity":{"Case":"Some","Fields":["HYrMH18o1SRGMD0eGXoaO5/YFQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/m3oUEc3GE86C2c6SGSQurCkgD4wKr5vjsNOpDmxfKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:23"]},"IP":{"Case":"Some","Fields":["199.193.115.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HYEnIhm2edURkwSZrYKGvNj2xEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9PyCo1rHAsxTq1CBU+B/7I/fndlcXyRMlm1NjVZNf/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:02"]},"IP":{"Case":"Some","Fields":["37.191.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[44100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe4b:98c7]:44100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORu"]},"Identity":{"Case":"Some","Fields":["HXo78KiQZFwB+uZZCgF7UY+2Ocg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ryojvk0FSmz20N5YosQe16azHcdUAV0Gyk1SV5QRyFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:10"]},"IP":{"Case":"Some","Fields":["194.116.217.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HXVokN9CxQ6cLp8Q2v7TiDklJ9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OFJR84apw9djhu69RVQRjA0cFmpx2odwSekv/mkFU/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:58"]},"IP":{"Case":"Some","Fields":["213.54.83.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schumacher"]},"Identity":{"Case":"Some","Fields":["HXAtpD1Yj+nTCNOHmm9eYbsuzPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1UJ+QZkUZzzhq7oy8fEO/El01MTYDTNLILCA6gnMypY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:54"]},"IP":{"Case":"Some","Fields":["188.40.147.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RevRun"]},"Identity":{"Case":"Some","Fields":["HWgZ1YMoUUqUcIJdawixDulfDaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+E7YnFrGv7Kny67QZKpP9z35fEfLn6td/VewquKDk3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:20"]},"IP":{"Case":"Some","Fields":["185.107.195.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor03"]},"Identity":{"Case":"Some","Fields":["HWV3Hmg4PylNTxExsZ32SYnu34o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ki1qAZMpnf64W/4nJK2saZ3YjzaRUgUBsd30+7JBO7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:38"]},"IP":{"Case":"Some","Fields":["198.46.166.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay748635"]},"Identity":{"Case":"Some","Fields":["HWTBS343UEXX6bNacrcRvi+Hlkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J9RgWGkw14mPg2eOp09IXeHI5RdAfu4vB1ywKmwKL2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:46"]},"IP":{"Case":"Some","Fields":["88.209.77.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9846]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vuela"]},"Identity":{"Case":"Some","Fields":["HWGonxD4IYZg5JWOtUgrF2ighfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DB164LzNHLkCMOREIKahen4MYE7ClOu1HKeJxsBGA3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:48"]},"IP":{"Case":"Some","Fields":["107.189.11.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darklab7"]},"Identity":{"Case":"Some","Fields":["HVqX0z3ikF5Y5qkna78W2eZsg6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["guskGTH0YkqPYHmPvsD4IvA7rMf3PygDvl60RGsU5jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:19"]},"IP":{"Case":"Some","Fields":["89.58.30.164"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isbear"]},"Identity":{"Case":"Some","Fields":["HVT3zLfHoYXuiqVhbAed2SPrV/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BkifAz36DdVaFoYi1QQiB2/NZx4YK8TiXIXdIbsEjaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:12"]},"IP":{"Case":"Some","Fields":["176.36.117.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BaronDeLaPwnerie"]},"Identity":{"Case":"Some","Fields":["HTiU4kjPjasbIr6YNXl5MVSNwGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["boAs4as9mtPv7/1vfvOz/ZfqUdRhGIYLmI1J3K3pfLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:53"]},"IP":{"Case":"Some","Fields":["188.149.184.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9668]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalmass"]},"Identity":{"Case":"Some","Fields":["HTF0M4oRMaU+CYRD524RA83tANw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pJr86vpl+YnmQx7KVmqv3Q8SXNPSkPcqhuIStfWA1Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:56"]},"IP":{"Case":"Some","Fields":["185.220.102.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["HSQpIRNhDwCW/MVUZk7DO+J6T1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmqxDTlIT56lyK5PWt8c/JFll4Zjefd5t//H9E6yj1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["95.214.53.96"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3560]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["K4M1K4Z3"]},"Identity":{"Case":"Some","Fields":["HR+lDWBf3I9tw5oKYKcjPdNdAAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7dleKz3Azpv7t8nbfr0YCtt7MbqaWrl2YELn3YbJSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:10"]},"IP":{"Case":"Some","Fields":["191.252.111.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv08"]},"Identity":{"Case":"Some","Fields":["HNyszAaqYbyNZ5T/otokivLntis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yj58yVo4Ue5SGZrSRAStfOO/uC/2VL8oyIBG8AvcgVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:17"]},"IP":{"Case":"Some","Fields":["162.248.163.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei00"]},"Identity":{"Case":"Some","Fields":["HNSPTtDxgh/78ZQIAqE+79TCdQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0GaPlywP8JIgmhsFzgRpj/4R9w4BxN6oR0Q3XHjoeb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:42"]},"IP":{"Case":"Some","Fields":["176.9.40.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:518e::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE68"]},"Identity":{"Case":"Some","Fields":["HM2ryHEGeb8wr8D5c6iwZaKThSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V8n4uSp23VKseSP48YAUOeN5X+k1WNr4+zmwwLG0dzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:15"]},"IP":{"Case":"Some","Fields":["37.221.66.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:109]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lamacarena"]},"Identity":{"Case":"Some","Fields":["HL5UpA0cw7zaZbqPyR4SwKAa41o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BhGVfO7G2bSLEzrjE2kZY1LrdSlDGgSt62rjf+2AI7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:58"]},"IP":{"Case":"Some","Fields":["86.104.194.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["HKJrD1EhKY/g0QRDEFEQEcNAeKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6IHhAjAJsfjO0cHqayTlxLo740FlUVC+Mn5obTETscM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:51"]},"IP":{"Case":"Some","Fields":["178.17.171.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstTryFFS"]},"Identity":{"Case":"Some","Fields":["HJ3+RFUlGsk+OmKPk78rmswJVtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2Gzji7gVbNsZ+QNKGhmu0MT9OvzBEat/vXPGCUFudA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:52"]},"IP":{"Case":"Some","Fields":["77.11.240.153"]},"OnionRouterPort":{"Case":"Some","Fields":[15001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongFlame"]},"Identity":{"Case":"Some","Fields":["HI7QQ6FhF0Y+qcHUYFYAMDP2hvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYQKraF3b4IY32SzIVA9OgXJesERt6T0JbwTsowKZeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:51"]},"IP":{"Case":"Some","Fields":["199.58.85.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["T0pS3cr3t"]},"Identity":{"Case":"Some","Fields":["HIg/rJpafbwku12dE7RHrnxOM7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zr19yp2rX5C4LxEZnEWZgwHxBKmFvX28kqiT1VWENAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["87.120.37.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TheRock"]},"Identity":{"Case":"Some","Fields":["HITIkZiRHQyJYqplw+TmUwB1OW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/nf5nKizKVLorxp+OPbw+1SdqUMMzENtV1cWSMNiijs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:29"]},"IP":{"Case":"Some","Fields":["188.151.213.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BabyOnion"]},"Identity":{"Case":"Some","Fields":["HH1xolgd55xc/E7R/3XVvjDwG7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rpY/4/auA3J+fM1y5rudeN2BA864NX/6ywatsUoXloU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:48"]},"IP":{"Case":"Some","Fields":["51.15.243.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:1a12::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["HHznLAymVka3JzwbaxTIqiEGkL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rDo0h5zen6wiPe078eT7z2GnV4Kvn+OoOIpKrIl6TQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:18"]},"IP":{"Case":"Some","Fields":["212.192.246.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HHxoQdC38QtyYI3Tf5kvGGr7U0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5B+YfGXpUVEWBjl1z9MI4EE694UV9vC6lnEJbSkppDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:30"]},"IP":{"Case":"Some","Fields":["65.108.58.113"]},"OnionRouterPort":{"Case":"Some","Fields":[10101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:8bcc::1]:10101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RIGALAND"]},"Identity":{"Case":"Some","Fields":["HHkmFVHg+Tig05WeHy10pLSCY/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KS4bJE6yt9SO0wHUM9IeZfL3yxa+28KY8pqw3+yvntg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:53"]},"IP":{"Case":"Some","Fields":["94.140.114.255"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipea"]},"Identity":{"Case":"Some","Fields":["HHcAqU27/s+iNMGt0NI/uH0ddZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ffAoC6mTHJstwVq28sDIXvzyalRmRH7bF6Vtjj2XgAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:19"]},"IP":{"Case":"Some","Fields":["185.220.102.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nerdhere"]},"Identity":{"Case":"Some","Fields":["HF/KIixrwpdCSqoObJdpyYw/J78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3j34gdwMvaxRjcuovyF64espCY3SyYreI2w9hmZYiMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:29"]},"IP":{"Case":"Some","Fields":["45.61.187.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d3xtor"]},"Identity":{"Case":"Some","Fields":["HFPyE8m7qy6zkBXdWhvInOFSoPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EKec2g7LV8bRanM443Mooq9Hl8j6QBzjgtQ5ji3gRGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:10"]},"IP":{"Case":"Some","Fields":["79.115.185.175"]},"OnionRouterPort":{"Case":"Some","Fields":[18213]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":{"Case":"Some","Fields":["[2001:470:1f1b:1cb::7]:18213"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stvnrdgme1"]},"Identity":{"Case":"Some","Fields":["HEozUH5AG3kmPQKNGSf09UrYNYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0t8FG0zmGC8oAMs9kv8bjtqBCf6X2voqz1szRHyH7fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:20"]},"IP":{"Case":"Some","Fields":["176.123.1.67"]},"OnionRouterPort":{"Case":"Some","Fields":[15901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::b0]:15901"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid"]},"Identity":{"Case":"Some","Fields":["HEFHveMe1lcV/hzwiFcOFFv0aqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LR10wNuZ9nmF46h5PzZgpupDKZr+VExlRFHkjPsFWL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:23"]},"IP":{"Case":"Some","Fields":["94.142.244.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange020ca"]},"Identity":{"Case":"Some","Fields":["HDxK7wNtEgLuxiMijrpftxkx4qM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQzXjvKYULFeh5paxc8aHGWcJaU4NtNI0rXLlGph4ts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:17"]},"IP":{"Case":"Some","Fields":["162.250.191.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theherosanctum"]},"Identity":{"Case":"Some","Fields":["HCHv4xugtVsTWVl7C0bzcYTfzL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A+vcC4hu2QPKGuvhz0UZVVEfLmS4863SsBhw8nDq3iU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:32"]},"IP":{"Case":"Some","Fields":["131.255.4.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpongeBob"]},"Identity":{"Case":"Some","Fields":["HA0K8/8FzLuktu0mIZakxadhAuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sLl12qNdugm70rS6WsQx57z09KEqCTRKLv1378ggnbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:07"]},"IP":{"Case":"Some","Fields":["104.244.76.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomFries2"]},"Identity":{"Case":"Some","Fields":["HAc2zzdEo7h8LSJpuL0ziMfmBVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQaKwUK3eWU8sJom/e1x6zu51KUTC+d8QWtx8+bE2Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:42"]},"IP":{"Case":"Some","Fields":["94.130.246.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:3344:106::106]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e3"]},"Identity":{"Case":"Some","Fields":["G9vpwPcDTmeJqb977YK+IEXw9bc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HSS/bDqNy1j4FZuLSPzvkjx9QaN+lXFAjr33QFySZNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:57"]},"IP":{"Case":"Some","Fields":["94.230.208.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::148]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funrelay"]},"Identity":{"Case":"Some","Fields":["G9ZGK4VnVOnIJrIgtMR+WdBHkQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVEc9iuoM9lT2honXacmoM4ZCh1dkbzIwtsV93GjbRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:43"]},"IP":{"Case":"Some","Fields":["146.59.12.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::4c5f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex77"]},"Identity":{"Case":"Some","Fields":["G7yut2PKRt61ZaclH6pqx5o4it0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIfZFbMTcxZhUr6NZrtBRIshgyLfH+KoHPwNZ1PO2Lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:07"]},"IP":{"Case":"Some","Fields":["199.249.230.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::166]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nudelsuppe"]},"Identity":{"Case":"Some","Fields":["G6/Dv9HjnLb3WRlaiQfqealJb+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UKtx6139xyNNXAOvkFyy+agt/A445qShGSfHeXRkS3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:24"]},"IP":{"Case":"Some","Fields":["5.147.29.248"]},"OnionRouterPort":{"Case":"Some","Fields":[43903]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:2222:fda0:91e7:5d68:dee6:b225]:43903"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finely"]},"Identity":{"Case":"Some","Fields":["G6jHWGmXo1FEzXcb8/2YMcFTFdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1vuIbjb5UhX/hiuSPc8jZVlOMzKIjkY/srhAkM2yIeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:07"]},"IP":{"Case":"Some","Fields":["153.92.127.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange017hu"]},"Identity":{"Case":"Some","Fields":["G6L5Q2wAGKS1JiXQcbcvZIUit0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aGy59FmYVY7Z9xHRacLz1W4tRJx6e0L8jh862nYwe0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:48"]},"IP":{"Case":"Some","Fields":["87.229.115.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute07"]},"Identity":{"Case":"Some","Fields":["G5+s8l4X0m4wfqfPp9RVsUSwMuU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVF8zgVNMuVjeQOHImnuddJGMbq+nj/hqCG/sEH4w0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:11"]},"IP":{"Case":"Some","Fields":["82.94.251.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["G5hGgJfn8/8QKSZCPfRDFeQUy88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kP60j/UvRquFT+xspm/HjASxnFdfH5fjfuXJ+9equvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:56"]},"IP":{"Case":"Some","Fields":["95.89.112.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kibble"]},"Identity":{"Case":"Some","Fields":["G5Y9DLXPEgv5XMIR+aV3qwliDv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZX0FM+88WVB4wbj4AafFCBIbQL1iqgM7vC8pNBxVjCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:36"]},"IP":{"Case":"Some","Fields":["66.165.241.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4500:8:14::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["G4/E0TRAfFyQvmECE/QRtjrVIpY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KOmZ7hpEFXYUdVujcFQ0tbV7gAgaXBrsSgURqHtdaZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:42"]},"IP":{"Case":"Some","Fields":["65.21.235.52"]},"OnionRouterPort":{"Case":"Some","Fields":[25028]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeastBistDeppat1"]},"Identity":{"Case":"Some","Fields":["G48AYY10MEa6XZ7ECGIgrH6h33E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G7mA/e3HRM3LgvzA1QtYe/4l/7kQ/L/3Wpj6YKpoVlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:33"]},"IP":{"Case":"Some","Fields":["80.109.75.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vulnerar"]},"Identity":{"Case":"Some","Fields":["G39Hgn4v+v4FuSscWpK4+aSvZ90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V+oFZdffTxsTnmGmTcu2xVah/h0hIr8MOyJGruJPs4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:29"]},"IP":{"Case":"Some","Fields":["157.90.179.103"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aemrelay"]},"Identity":{"Case":"Some","Fields":["G22f71wvnGtb88n6qRMdabcKNbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lDanuu3zahqiO6XLuMVL4SyqKyF3z8eQRewGOr91p6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:34"]},"IP":{"Case":"Some","Fields":["31.16.217.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["G2vLzbOENktvtPNXbKcK7PwINkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NByz6DuaoFDAqhrk3mU4whx3BAUrGDH7N0CQDpJLMwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:10"]},"IP":{"Case":"Some","Fields":["185.194.141.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaymirror2"]},"Identity":{"Case":"Some","Fields":["G15416HrMgdLO+LoPMzlC2mbeC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZXVRAJ2XPme1pQq+8fyOwbzzXAkESZLyB5T8ctdi7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:31"]},"IP":{"Case":"Some","Fields":["85.195.230.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNODERELAY2"]},"Identity":{"Case":"Some","Fields":["G1vP/XOQlGpuLbxSHdZjM4bwWPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvJu0kNwDu4wP1kRJMougN+szDPWFVh+PIsFrSE7a8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:50"]},"IP":{"Case":"Some","Fields":["185.232.71.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4e:cf6:a47d:bbff:fe95:9658]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBestRelayNick3"]},"Identity":{"Case":"Some","Fields":["Gz5I115/fmHRubviS6FaOLRUOA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4Bpx4sqMU54uXPowcXWENrs6ZibnUZpFiCn0J0pCvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:09"]},"IP":{"Case":"Some","Fields":["174.91.91.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP08"]},"Identity":{"Case":"Some","Fields":["GzCYpxHQDs1ChXbrLoaO1NIslrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lnf0YNrDJf4ZDzbeXQbf/Vrffpd9NTqgeVY+S8D1wxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:03"]},"IP":{"Case":"Some","Fields":["15.235.29.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bottles"]},"Identity":{"Case":"Some","Fields":["GyiScY1m4Qff3sj6RzHVKJnP6XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EC9ZXHIbRwxrzT645Pt+By8xuxPDG8M6O32OFvKLt3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:20"]},"IP":{"Case":"Some","Fields":["107.152.33.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:0:35::939f:ce9a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber54"]},"Identity":{"Case":"Some","Fields":["Gxj5hTRjTvTrSzZSPwUvTYKeBJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r2Q+c7b7lGPPV0G1wUUQeRYr/G1tiAth3KURXbN4/Ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:46"]},"IP":{"Case":"Some","Fields":["185.220.101.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::27]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who7USicebeer05"]},"Identity":{"Case":"Some","Fields":["GxdLD9qqxQp4sS5kFD1H7XkiyO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91168Hnm800z49BUlmknE6GgtHKH8IwKsjwhj5LEkBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:58"]},"IP":{"Case":"Some","Fields":["142.54.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8088]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gigabyte"]},"Identity":{"Case":"Some","Fields":["GxCJY9z5QrbSYr/cQw7ZvRlH41M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hdEnvIzWo1ONYBWmnjcy75hnTfzEhtZLDKHK264D1Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:49:33"]},"IP":{"Case":"Some","Fields":["161.97.83.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2077:9922::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RagnosystemNode2"]},"Identity":{"Case":"Some","Fields":["GwzNutr/mI6Swg7kpR/y0Twzt30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9b2597OaTzbPd5eG4MNyZVkjt2Xb1hHusO1pneebFT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:26"]},"IP":{"Case":"Some","Fields":["37.220.0.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex36"]},"Identity":{"Case":"Some","Fields":["GulJln+Cu+dTSj1rp3p+vhztQ2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwDR98qpyMJhn7//RdcTHmbI9IehE4YheFaXuecSCjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:25"]},"IP":{"Case":"Some","Fields":["199.249.230.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e655]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GuiYFENLdcOjBGB3KmkSvOT15GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ni4DLq8IDyDT5pWGeEuewKgmnA3FobXpQQciCf9OWx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["103.124.104.229"]},"OnionRouterPort":{"Case":"Some","Fields":[39888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknd"]},"Identity":{"Case":"Some","Fields":["GuHL2qyN9xMHQ3ENig5ZgVeHPtU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4KNUA4xMkm6xnvT9fIT2TvRZXYXGqdsCUoF4Ll+IWt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:42"]},"IP":{"Case":"Some","Fields":["61.4.102.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot60"]},"Identity":{"Case":"Some","Fields":["GuA57gsR23nktLKcup91KGSgJZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ZmBIDFMmXQhJ6ds/mXNVo5euA7QmuQQXNzspGOOLUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:23"]},"IP":{"Case":"Some","Fields":["81.7.14.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::1fa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["948794crazy"]},"Identity":{"Case":"Some","Fields":["GsstAFGRtri+LibAIesLoWR6WrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gGyC+WCIlpI9mYZr/eBtoawqB4PWkFgo33GpEDdVVDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:13"]},"IP":{"Case":"Some","Fields":["185.193.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GsiIS5wdHijex6JGEPMenG0sT6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["942nLU0weZQYqplH6maFEX+mjKtuE1FDzvgdm8UUwKY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:06"]},"IP":{"Case":"Some","Fields":["202.61.205.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5b:563::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vsm"]},"Identity":{"Case":"Some","Fields":["GsRQg+vH4CcgwTJUzqP3sDLCSOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cM0F8X3GBjaAa79cRgwi16dVvm/YcYFdIUJi4Q5flB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:52"]},"IP":{"Case":"Some","Fields":["170.133.2.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:5429::b3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sdIUe8f"]},"Identity":{"Case":"Some","Fields":["GrpC2vbhf2X+L7/5yi6zaetqaQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hw7KA2fgfcq8bXsz7gldBLnJDtBF9feX+TBl2gn1bvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:12"]},"IP":{"Case":"Some","Fields":["91.137.123.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rhabarber"]},"Identity":{"Case":"Some","Fields":["GrXleoNWyUgDuRmf1KmEWFTmoKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUFIW4Jz5jZThcNJojcTVwMZqV8bMDYr/rmC+ZzFJ6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:16"]},"IP":{"Case":"Some","Fields":["109.70.100.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::12]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Gq0BX02IVBOivODlgVkRaQEjbEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJ15cu/AA904SY8z/+GuAwSo+oljclJ+Z04KIGNXA0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:30"]},"IP":{"Case":"Some","Fields":["51.75.143.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["GqwZ2JL4SRCrlMRQkiQaujz8TIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZg+eNj899hy9A0exhmRStKNltbqCM/YZ7D0NrR44ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:58"]},"IP":{"Case":"Some","Fields":["185.220.101.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev2b"]},"Identity":{"Case":"Some","Fields":["GqaD4DbqEKpuB41ASYzHI09kJLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qyA4YCsMg+FAJQgZQ8Fu4HmJ1RJnnByv4a+CiJeW2TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:00"]},"IP":{"Case":"Some","Fields":["87.118.122.30"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:103:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay2"]},"Identity":{"Case":"Some","Fields":["GqY0dKsid6lE5FJknrGQRPITFOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4PsL/KL7PSyG0QktLVK2YgCeRQMCY0loX49LjMqxW8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:58"]},"IP":{"Case":"Some","Fields":["185.183.158.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:a5f:684a:58ff:fe7e:8bb7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit1"]},"Identity":{"Case":"Some","Fields":["GqBCqoATt8eFPOKniFN99VhJhRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oW9jYrWvcnO/XW9TzU50sYUSMakMy6BFg4fvpO8M6qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:44"]},"IP":{"Case":"Some","Fields":["185.129.61.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OpenWeb4All"]},"Identity":{"Case":"Some","Fields":["Gp/CuU4ztrTOOM0N8lANTCRfuRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JktWo5owin9rm13p7Ut6fejnJElSf42Np3cpnv5kagk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:28"]},"IP":{"Case":"Some","Fields":["209.141.55.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1dce::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blablabla"]},"Identity":{"Case":"Some","Fields":["GpOto2l0dnpjAh0Gkf8FgaDDL+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4TZMUncM+ApW+OasNzbn/nW6xb4CvE5zJcCFJGW1QPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:47"]},"IP":{"Case":"Some","Fields":["185.206.225.59"]},"OnionRouterPort":{"Case":"Some","Fields":[18049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM09"]},"Identity":{"Case":"Some","Fields":["GoG+4FT+XGIloNWBadcpJLJuK1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3pdCVbZPXIwsBgh25HF6cCVRFe/kYOO0NN3IZM9yUlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:27"]},"IP":{"Case":"Some","Fields":["185.239.222.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SimpleRelay"]},"Identity":{"Case":"Some","Fields":["Gnf+BdQAoSKEm31cXjTpmrDWjqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DduHC0b1SVEMZrr6K97noW2atfurrPV7X00eJtg6cUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:59"]},"IP":{"Case":"Some","Fields":["194.180.191.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:20::6c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pad2"]},"Identity":{"Case":"Some","Fields":["GnIxbKDWmqG3N0V4mG1QjOgtmVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sM1QRA/XmJpYcblg6EnSCBTu7dN2wvxoefAqiA2uagY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:36"]},"IP":{"Case":"Some","Fields":["5.161.72.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:c4f3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoolComputersTOR"]},"Identity":{"Case":"Some","Fields":["Gm4nh9Ogh8AMHHpjfR9jJErrCog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ANvwqm8/d24eWQ9dwjHLQSCQHneH+XFoGq1zzSAt9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:48"]},"IP":{"Case":"Some","Fields":["68.99.156.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c5ef:6000::1005]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoVna"]},"Identity":{"Case":"Some","Fields":["GmbAKhGdb4QvVQaF4AUcSuI7i+g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Ps17PRe8FV5+PhkwL2TUdcNQyVS9Hlqk0m5TZ/JIxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:08"]},"IP":{"Case":"Some","Fields":["108.62.103.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetbox"]},"Identity":{"Case":"Some","Fields":["GlRhx6GBEExqVFB7/5rj+D4uHZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTqLJwkEdewpZXcxhWzt+SKyVl3B5VB8+/Red4rZxsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:01"]},"IP":{"Case":"Some","Fields":["134.209.159.59"]},"OnionRouterPort":{"Case":"Some","Fields":[33443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::9fc:5001]:33443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["just746436456"]},"Identity":{"Case":"Some","Fields":["GlLh6pXqHAXmo7ZDqprB6H/HlvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wUan130//vyEGkx+QrlhuLqebmwktymeQS9XaWdS9uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:43"]},"IP":{"Case":"Some","Fields":["37.221.195.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torquera"]},"Identity":{"Case":"Some","Fields":["GlG9O0vHUtF1zFEj6DwJnyoNUAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lL0X3+hsHgdZeUOYyVLXVL9wyP4kSGtcmYGTYFxECYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:04"]},"IP":{"Case":"Some","Fields":["82.64.190.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:212:5f50:76ce:2825:9c75:d720]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sorapis"]},"Identity":{"Case":"Some","Fields":["GknkT387ataz3gANHyGJXRxQXvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s35YmMUQFrmoqxezJ0gaQ4ZNRnywES/23/rnYzpz1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:49:18"]},"IP":{"Case":"Some","Fields":["62.1.21.232"]},"OnionRouterPort":{"Case":"Some","Fields":[58097]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc3"]},"Identity":{"Case":"Some","Fields":["GklSjTuyI2dp6My4SQol6kR8yU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rb00nGMGS2WWGLWm2ZD6ImAzgi+Mk+8IbPUJ1CdW73Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:41"]},"IP":{"Case":"Some","Fields":["37.114.40.104"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[8081]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlimTor"]},"Identity":{"Case":"Some","Fields":["GkSZW1+G2t7B3Qy6uhXBm0TI4N8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jIkZqwloGm93/IdqVkA40UnUEfjaBDT/YosyrSkt97Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:35"]},"IP":{"Case":"Some","Fields":["75.184.41.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohrelay"]},"Identity":{"Case":"Some","Fields":["GkJa9n1FXaZS40OlOuYUPkL6uKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJfQ/KVjcduacaJTY7x5yFPvn+MSAs+YgAcpL0Id4HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:39"]},"IP":{"Case":"Some","Fields":["51.15.8.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lana5"]},"Identity":{"Case":"Some","Fields":["GjYj++WyjU9yKQZ2f/qPCrfszB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["haQKakY8KENG9FjHru4pljybXIArsxp+Rb/671BmBMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:01"]},"IP":{"Case":"Some","Fields":["31.133.0.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4162:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bilbo"]},"Identity":{"Case":"Some","Fields":["GjKVQzCAR7BTIfsbkYKcQO95/tY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GdRIiYystV+4TmVJGH/dOpzghl1P7SN7rhPEMSCmDxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:54"]},"IP":{"Case":"Some","Fields":["213.156.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9900]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE69"]},"Identity":{"Case":"Some","Fields":["GjJH7QpymBUNrWoygitZSKtZ8A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+61T2XYK0BGalD1AYQD94pFiHc7jaXvJ/GbLNV9B7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:00"]},"IP":{"Case":"Some","Fields":["37.221.66.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:10a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FranxzkfchRelay"]},"Identity":{"Case":"Some","Fields":["GjJAtRVKmpFQlxgJFPGDZgmY3U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bli3Y4KfWHx4u/mImrhsQP5Ekmki1u+saYBoZ3az92E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:28"]},"IP":{"Case":"Some","Fields":["136.244.94.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6c01:2c38:5400:4ff:fe23:58a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["GiQ9pvY5qcmbQ5EVjg4U6JwpdUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VStGi+t6PMXKI9qKbZU7Zj853OhH2sSeK7Gnkrzg0Rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:27"]},"IP":{"Case":"Some","Fields":["185.183.159.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DebatableMink"]},"Identity":{"Case":"Some","Fields":["GghzZUF0/4sdZrAtqC1Grd1GrEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTpmOMO8mt69WnYEmICcfO3Lr9PJCnFoFOMW5J771ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:53"]},"IP":{"Case":"Some","Fields":["164.68.113.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2098:7239::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversMagique"]},"Identity":{"Case":"Some","Fields":["GgYW6x+1ZAGlYQLBD8+mnnLa/tc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TdFgcf2gvRsstJfHmGE6Lu92roN7gy8ptsk5nhzhsmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:03"]},"IP":{"Case":"Some","Fields":["176.123.9.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayors"]},"Identity":{"Case":"Some","Fields":["GgStKzoGuUnosMpEEr15OsJZsVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["21Caqq3rLuSnbtLIi9s3z8RONhM/XLF7TsDRcgQHyPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:00"]},"IP":{"Case":"Some","Fields":["185.68.250.161"]},"OnionRouterPort":{"Case":"Some","Fields":[6443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1748:f7df:aa11:ccba:3846:50f8:d881]:6444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ABCVG"]},"Identity":{"Case":"Some","Fields":["GgIKQU2Ksl9UQVyMHnWlViqd2aY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbdfHGKoG/aDEDfJp+TCBgqOuqvkyP7Lf1HJEIPcKLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:28"]},"IP":{"Case":"Some","Fields":["37.187.103.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:2736::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Noaccess"]},"Identity":{"Case":"Some","Fields":["GfkDE7LA6wPvw0dwbyc16Bh22EY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rZZuZHeYcwXcFM430O6Gh5l0OApmL/eqqcLOOJ9gEIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:21"]},"IP":{"Case":"Some","Fields":["80.219.136.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayletsgo888"]},"Identity":{"Case":"Some","Fields":["GfEVJthFKk0EYX+9/lJeOaapbvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iKEkEAhCH5MN1JY7EE2ai36Qr4QNtqwXDRV3C3nH9g0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:54"]},"IP":{"Case":"Some","Fields":["50.65.180.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TouchMyData"]},"Identity":{"Case":"Some","Fields":["GeEK8VEWCRZeGTMKxJzP7OYBjkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h5Y1cFhebYZDe27f9XLpej2nGNKuVIn/tAmWKi5fcRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:34"]},"IP":{"Case":"Some","Fields":["75.75.102.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tawny"]},"Identity":{"Case":"Some","Fields":["GdDwKLrdEbedxYRsHXVJdnLoVRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rMCF2vhcOXzxGR/TP25iF5AsId9Crxl0vY154vvqe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:37"]},"IP":{"Case":"Some","Fields":["45.137.100.160"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r1"]},"Identity":{"Case":"Some","Fields":["GcmQb8tksSpV2LOB9XMaBRIOX9Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hl/fhK/tlPknk8XUsImCeqXi71nRl+IJuKpJe8uk3Mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:17"]},"IP":{"Case":"Some","Fields":["74.208.136.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GckwBDy8ki+E40odk8dHykTBYjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOpiCz/9uUcEZiu5B7QhQxM9zQQUf3XAvt+ugaCV54Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:55"]},"IP":{"Case":"Some","Fields":["23.128.248.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::68a8:1eff:feb0:68a7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kt"]},"Identity":{"Case":"Some","Fields":["GcTRx3ZBYAdT6T92CQn8lb+6lPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4cmEAgLAG1e3xWyQ+L0RQjMh4fVySqx2YpX2zuTT3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:02"]},"IP":{"Case":"Some","Fields":["83.229.73.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RocketNet"]},"Identity":{"Case":"Some","Fields":["GZJIikaA4Bq38KI0HtpHNzG3jGs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Po1gVLZBIBFcqxdmaAStrrUsxbagzpdShcnlj+IjExc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:46"]},"IP":{"Case":"Some","Fields":["169.255.0.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2c0f:f2a0:0:1::132]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blueflagrelay"]},"Identity":{"Case":"Some","Fields":["GYuSqYR/Woybm3+LXutYTTViKLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZKS1Ih0JslpWQAMZoZHQi+SZ12vnFGJRPOzvkCnzHm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:26"]},"IP":{"Case":"Some","Fields":["194.195.250.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:93ff:fe7a:9df8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode1"]},"Identity":{"Case":"Some","Fields":["GYq9tJyMQf/fej6NfOexhfV1A1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKxPb2X24f0K07ylh3amR55qIrNdnUQyRhE8e/kdroA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:30"]},"IP":{"Case":"Some","Fields":["85.214.38.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4255:c100:4e90:2717:4cfb:4a91]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["GXkMIfLmCsJT8+rG3TCuktOPFSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["urPqVWiJOC/Z1NoxoKuc7FCyU9JZZf7x96riCYZZEdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:44"]},"IP":{"Case":"Some","Fields":["149.56.169.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GV8jSbgobdl3ao+eZE0O3RuMlTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZVbuGXCDqNIiXguQEm2pWfAZGvCDgbuHzG1rQSkBLsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:48"]},"IP":{"Case":"Some","Fields":["132.145.57.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev3b"]},"Identity":{"Case":"Some","Fields":["GVcS6W/RwbGNFNCenk56ZBbiOyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qcZQTzH3/VxxCF6ogVGZmXDR55tGxpq8BfHRZmcGFHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:21"]},"IP":{"Case":"Some","Fields":["87.118.122.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:106:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay08V6Rocks"]},"Identity":{"Case":"Some","Fields":["GUSpa9UMeywKfEuWV4du8HxI0pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Br1J1YGnAsI4l6SGS1cvTAI1pKHwVxJlhk8aFRjRl28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:10:48"]},"IP":{"Case":"Some","Fields":["188.68.50.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d51b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["animator"]},"Identity":{"Case":"Some","Fields":["GTLGsLPRX2zaR2MvsiV6XfO8AU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1C00/l5tu48gMPdA6zPIymd1kIu5GU7IvP/4BV8AGR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:20"]},"IP":{"Case":"Some","Fields":["178.254.18.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BYv"]},"Identity":{"Case":"Some","Fields":["GTBlvnqsxylbsvyErnHcIJcO0n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Pn7P58sB2ne6oqmfwF0EqCc14A7L+KkFVfmOhD+cnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:18"]},"IP":{"Case":"Some","Fields":["192.81.218.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WikiHowRecipes"]},"Identity":{"Case":"Some","Fields":["GRyCbqkbn99F/1DgHbK5z65xFO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y28BS4R8dg4QB2IqBaWhZNb8gr/FTeAacR6mxNy2OrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:32"]},"IP":{"Case":"Some","Fields":["38.97.116.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gaunahTorRelay"]},"Identity":{"Case":"Some","Fields":["GRcwBrBbYRnZZrc652d9ce9SnPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tPRt5okIboZohQXbdfE/tUPCbXdrKk1jy34O4aXPeMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:52"]},"IP":{"Case":"Some","Fields":["173.212.236.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3006:5899::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homez"]},"Identity":{"Case":"Some","Fields":["GPNK5lZ/X7CBxDU9Xtpc7hVYEMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["loPCmsiahkXaDHZxMmveI/M4CO3YNAgUWLlRR1zAU/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:55"]},"IP":{"Case":"Some","Fields":["188.165.192.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GO94GSXt9UYzOKtFDvDFbFyqLxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bWpeRy5uG88FZtoGEjLT6DpREfrnietyJmogzE2ky+Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:41"]},"IP":{"Case":"Some","Fields":["217.24.239.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:75e9:1::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GOy/w6aDTLZ0FGQMfx52XlQs7Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RO/xVMg+HwKBVzTv+nGrZTUrHGWCb09AXf21iPKaWXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:39:53"]},"IP":{"Case":"Some","Fields":["144.91.92.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GOrSRlOMUP0IWb+XbE6EAfyXVaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8DAJCvpZqrJfBqUAiCxKN1DjOmMi0c0ktdZJJ5mkb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:04"]},"IP":{"Case":"Some","Fields":["24.18.194.124"]},"OnionRouterPort":{"Case":"Some","Fields":[12101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex53"]},"Identity":{"Case":"Some","Fields":["GOdTIUzYJyRCgLvTaqxPjnCz7o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CtXGd2YiY4lYTMCRw0Q76jRRYr1YqskJsHw8FdaQtvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::142]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malvin76"]},"Identity":{"Case":"Some","Fields":["GNazh9TCnckEKyJBECDcsFYm3nU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3RfCb/bHNegeXDpRKy0OZ7b5OTbB+Jh/xbHmUiAy1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:00"]},"IP":{"Case":"Some","Fields":["212.146.101.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fractalia"]},"Identity":{"Case":"Some","Fields":["GMWF4VPfvMQUuCWf55lLpSC1628"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZVkcb4cxOmssBVaMcdClXeJr4tCUQgvrVk7bYCtDIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:46"]},"IP":{"Case":"Some","Fields":["162.55.177.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:bba4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["GLEz8w8ukQd1yKel1LkrxszsBDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aMe/DlBDkxb4KuYEysZBClkTLORaDX+sydJ82FlmBfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:46"]},"IP":{"Case":"Some","Fields":["23.128.248.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::66]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FckPtnNRW"]},"Identity":{"Case":"Some","Fields":["GKtpHcbVZCz6wrvW+hFI6za5b7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pgBMl/XOq6lO0wn2b+Evrz/9orox1gpirdhnSGFpJNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:27"]},"IP":{"Case":"Some","Fields":["202.61.225.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:cfa:c833:1fff:fe70:d8f2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMePlz"]},"Identity":{"Case":"Some","Fields":["GKXtS5qkNIgydcFdbPP3lbqGdEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ0IsXEhm2PcNJN3l+mn9rQZavmu8Zul39uv/3PmlxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:30"]},"IP":{"Case":"Some","Fields":["149.154.159.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["GJxE3QYxLW34+1epROaBn/JFdAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhYRpU06GlULzBQYW7/hqk0f1BiXKBsZlVK5pIgvM8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:11"]},"IP":{"Case":"Some","Fields":["5.45.102.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:608:942a:42ff:fe77:728c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["igel"]},"Identity":{"Case":"Some","Fields":["GJMEG4b87Ros4vnixZh/U0t9w+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0MAqQOE/UgAemfX4Pt8ecmnRNUZEZUwQJ7pIJnaMXdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:56"]},"IP":{"Case":"Some","Fields":["109.70.100.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::66]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOPAS"]},"Identity":{"Case":"Some","Fields":["GIZzzzk3RCUXMBgA84O+U9ShdzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+8JwYeNzN5uJC+ZQXdWvpbycMEGn9lDZmLhkyoy5Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:35:03"]},"IP":{"Case":"Some","Fields":["92.117.218.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9e8:2752:f400:e65f:1ff:fe00:96c5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["faceless"]},"Identity":{"Case":"Some","Fields":["GHt/0EIPUe1cv2stiIg26m7B2Ww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/FrxcavXSyg1dbBHXRUizUU2m3reVeGwk1DRPm58GQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:18"]},"IP":{"Case":"Some","Fields":["81.217.189.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["GGcd5QksZ4g7+yRQwyZ7kmGL7GY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3AosPrCiQl7jtg86n1rfrmcrw7wnA8E8gFlee/muu1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:59"]},"IP":{"Case":"Some","Fields":["185.220.101.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::208]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CloseOmega"]},"Identity":{"Case":"Some","Fields":["GF8y3uQ8pG8S7eBhB8cY2wDp/do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8LrJZIhMcoI4mMf1p00yobt+3Stt5q+X2Nlm8HQLSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:34"]},"IP":{"Case":"Some","Fields":["109.248.147.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoingBoing"]},"Identity":{"Case":"Some","Fields":["GF8qV7DEYgWCYCdhCX0X24FlT3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JVt1SUcAeTsLiqM7KLlEt5JosKwaKMbnGmBexraQXds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:54"]},"IP":{"Case":"Some","Fields":["204.11.50.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golferjoe"]},"Identity":{"Case":"Some","Fields":["GFtsHx0NMq3yW4mAc6YV3Q/BLag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MnwDfSduApX4a7dFn9wJ4O1uQoKm+g4y+xb52dEBHwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:58"]},"IP":{"Case":"Some","Fields":["130.162.250.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xmtx"]},"Identity":{"Case":"Some","Fields":["GFBYW+m8ofgNCgUZCclOSdHEntM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8pk0r/7GqEXT87YgXXjbFM4Z/3+eKeA2JtD4j2bP1CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:47"]},"IP":{"Case":"Some","Fields":["82.64.86.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:530:a0a0:eecb:33f9:1f82:4621]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["squid"]},"Identity":{"Case":"Some","Fields":["GEdPiew+ir5AFItCTI3VOZJCzsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIpN2Q9odGlEfpWKS8TKt+wDxQiui2Ye3/EtEwZplsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:08"]},"IP":{"Case":"Some","Fields":["51.81.93.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["32a3c0b02b181e"]},"Identity":{"Case":"Some","Fields":["GERtMHNheQ1a7zakLwz54XCY93I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gLsQzrWgEMqw/9AXrmtiOamlHg+ptXnT9+ccaH19ReY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:46"]},"IP":{"Case":"Some","Fields":["88.198.184.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:d85e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchulteTorRelay001"]},"Identity":{"Case":"Some","Fields":["GEHLlgEogGFRth/G2Hr76amLmdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FxXibCZboI1a1GhCmncfXUR+yDx8JXgMaNeHujHNBZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:47"]},"IP":{"Case":"Some","Fields":["66.70.211.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StaySafeHaveFun"]},"Identity":{"Case":"Some","Fields":["GC2V9SfT7DMU3w9Dmpp9wz9Fodg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jc9V/vPLJTBkY6xYj5upYr3H0jByjLfCzHlqs76ySEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:20"]},"IP":{"Case":"Some","Fields":["185.183.98.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["GCv/AQC5dyaZvkot2un3As2re5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQmPKIoWFGj+tgS8bYZEzm+D5ZCWlMt45tGit3ULk+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:48"]},"IP":{"Case":"Some","Fields":["45.154.98.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["GCvSW/pulMk+WAZaA49b0+oPx6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A2LcYBxIa+uO2ZrCeWxI1ApveaQJKbrviJFaagEj0Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:54"]},"IP":{"Case":"Some","Fields":["45.142.211.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:b641:6f1:6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeslieY"]},"Identity":{"Case":"Some","Fields":["GCYKFLwQ+RuGwZMbDc/DXAJkBu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2QcM4L8G1EW/t9gt65uKoarWDVb8AyjMLHfd8PnkOs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:31"]},"IP":{"Case":"Some","Fields":["198.98.62.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stx74"]},"Identity":{"Case":"Some","Fields":["GB9Iv/XUJbzsHnjaxbXw5F/9r00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8rb8ggbPP2IZNXLl+e54AxoQAFYSVCeU3a7rDvJ78h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:17"]},"IP":{"Case":"Some","Fields":["51.75.68.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::1db4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GAsfuDASns57zdedjp4dyqREyhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bGwqohmVkVk8GPqtBUTKJpzQgezlzg/6/rLQH3msRFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:09"]},"IP":{"Case":"Some","Fields":["146.70.82.126"]},"OnionRouterPort":{"Case":"Some","Fields":[38045]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["F/Qfja+ks2qrEOICq6FGAarh1hY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Kc966/cOE/0nYPPP6AuGoihKqtdoxyDOeHz4A/2FdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:35"]},"IP":{"Case":"Some","Fields":["45.154.98.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crimsonshape4735"]},"Identity":{"Case":"Some","Fields":["F/BQ9lfsQbJcr48wwXPaWc7bWos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9lPIu1bYqtLAnaoCN6tGYiZCAiY9dLEib9Rl8zpUP7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:46"]},"IP":{"Case":"Some","Fields":["69.164.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe73:c4e9]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["F+wEN2C5C9rDC1NvTGUCkXY47Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKL4MB+3zrAzRLp0wcnWis6afsu+qLwmwbmPVJ7ZrZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:38"]},"IP":{"Case":"Some","Fields":["23.128.248.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::79]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netfoxy"]},"Identity":{"Case":"Some","Fields":["F9IhYSqHLdK6eDq5YcwqPP4YXPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ab3dxHHdVYFQnxoSrEGrTWSMKfQMClqxFkg4upiCBsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:03"]},"IP":{"Case":"Some","Fields":["45.156.22.110"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trolling"]},"Identity":{"Case":"Some","Fields":["F9Adt1B6spPoxoiXwVjdj+WhDhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I/fb+ffvFtRp7WrV1qYuKQKxbKE2x5LCxMZZvJc5f70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:04"]},"IP":{"Case":"Some","Fields":["198.244.142.123"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:1000::1538]:420"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Conservatism"]},"Identity":{"Case":"Some","Fields":["F7OoJpq6NIq8rzXHeuPV0nD/WVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6vRcf/ofnM5SKsZDX2muMiqbjOu6t7jpw8rODPeoeSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:56"]},"IP":{"Case":"Some","Fields":["71.135.200.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["F6or+DnhKwxNf2QNoeijUh120fE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ffWTPjqYkYim103Maa7ThQPFMiZBlkFZk2leQQE09zk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:18"]},"IP":{"Case":"Some","Fields":["83.97.20.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:58]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bereg"]},"Identity":{"Case":"Some","Fields":["F6G6ZfiWV7Ner3GMRqIHPgo64D4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZHUlMVPAciwu8OJJMJGB3bzvCLkRylTpHLb+/1eIg7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:14"]},"IP":{"Case":"Some","Fields":["46.226.107.215"]},"OnionRouterPort":{"Case":"Some","Fields":[10400]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe93:b598]:10400"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lon"]},"Identity":{"Case":"Some","Fields":["F5GUYO/g38Kwzw1sRTrHKyUmMPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HEnqESH5L0Dy5TGaxN/cODQ2pfvxNPR7bgffvXuMqTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:26"]},"IP":{"Case":"Some","Fields":["160.119.253.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4Freedom"]},"Identity":{"Case":"Some","Fields":["F4Qc1hlUssN5mZJ+3wEJ2T2KUKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZL2kY+/1VNDlVBPq+1c7uaLqdQTsyvkcEvZqFxuqTRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:28"]},"IP":{"Case":"Some","Fields":["77.68.73.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:27f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sabine"]},"Identity":{"Case":"Some","Fields":["F3u/XPnpA8KFrV7Kgi8SAhv25WI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JFT3K3+FmnWaF0TiCOgopLSC/90L4Orq05csfuas614"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:02"]},"IP":{"Case":"Some","Fields":["51.81.203.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluemax666"]},"Identity":{"Case":"Some","Fields":["F11j77kXa/rdMGhDlgv8CFoqupM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdVC8mB9/yXqFuSPXJrFGBhL5i+pq4mDbyw864YePQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:41"]},"IP":{"Case":"Some","Fields":["84.75.28.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["czrpYOL8Pp"]},"Identity":{"Case":"Some","Fields":["F11Zs39l7+srm2sz5T1HVGgLvPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4T3u6LDpB38qdyli354izcdI68BbJDIifuvkM1km4r8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:52"]},"IP":{"Case":"Some","Fields":["149.172.239.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8071:4483:b940:dea6:32ff:fe5a:4ba6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeadOrbit"]},"Identity":{"Case":"Some","Fields":["F1zuP1OdojVxWa8tPKXyqfwspbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bxGQfwX27yM6z0iio1WFX4Rb6z5vpvcuqgusokhqKBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:42"]},"IP":{"Case":"Some","Fields":["188.166.66.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["260VoltLive"]},"Identity":{"Case":"Some","Fields":["F0b+lbxuuc8QY/UGOyMJDBT4Za8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eZkPBohIoAFeW4ic9+IWE9462nu3g/Dd0bFfc2NzpaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:46"]},"IP":{"Case":"Some","Fields":["110.32.181.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackPanther"]},"Identity":{"Case":"Some","Fields":["F0YJl+ZsR/gFqDS+k8wU7A3GCOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uku6I/yiLFnxx4cY7+eWnMOvg7kMyOHuZ7mJDW50MSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:09"]},"IP":{"Case":"Some","Fields":["213.183.56.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fz66H6yllxhJmugCMYfl+V6L8cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxD1oY4jGw/eU/LQ6D3/8cQoc8nmumd2UkXv3BsXPXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:16"]},"IP":{"Case":"Some","Fields":["37.187.122.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:f365::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fy4JvJTAGTlXdq8VCXZILHMKUvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EalyT0B5loILjjakFsX3O0HfKcYo0UcynG7+vW+5Vn8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:44"]},"IP":{"Case":"Some","Fields":["193.200.17.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:8::a38c:7e20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FyN1GFST2dYkiwHPloOlQJ0BaPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vsnw9xGwgLqhs9CJUUSBXEebm4dxNWZj8FLbPVxQPFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:54"]},"IP":{"Case":"Some","Fields":["141.158.39.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PumpkinHead"]},"Identity":{"Case":"Some","Fields":["Fwokqf/EM7rMpNnB20BcnRHVR2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HsvrogLG7P0e8jNNU3UE5zWtnWMY8P47b8pbp9vuarU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:33"]},"IP":{"Case":"Some","Fields":["178.175.135.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FwdLT/sKCBXDVWOO66N7h/oS/7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1S6mJxjJMCpgHyuBP5aYRvOpeoXGAY1Xab0IZ+BC/Zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:49"]},"IP":{"Case":"Some","Fields":["46.105.91.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenMonokuro"]},"Identity":{"Case":"Some","Fields":["FwL2iIdX1nmvvsmEL0uY6bArbUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oz/1+NkLMvYQrApY+f812jmRInB3msSODs3vEbPhDno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:44"]},"IP":{"Case":"Some","Fields":["138.2.22.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ghostventures"]},"Identity":{"Case":"Some","Fields":["Fv8uxve1qT1Lvaynym04zhjdKFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HwYExyOWRfhAP7ORQvxKNj92ol3am8fCiLWmuizSKYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:21"]},"IP":{"Case":"Some","Fields":["139.28.36.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluesnake"]},"Identity":{"Case":"Some","Fields":["Fvfp6T1sxGk5KtC6Ago/NZ35g0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V9R5XSM+iMv/T/8fyIJRmWGpLEGSP2fxxQG3bLN0kt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:29"]},"IP":{"Case":"Some","Fields":["5.150.196.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:470:28:228::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FvNsD1pvfCZ/e6Jx2YaJFomXj8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PKeydHcUCe2r/nVh9a+vxJVCjmyv7wxY2w/RTEjyHHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:32"]},"IP":{"Case":"Some","Fields":["109.183.26.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9049]},"DirectoryPort":{"Case":"Some","Fields":[9048]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["456c"]},"Identity":{"Case":"Some","Fields":["Ftt4RZuEX05yhAXraU4ykp4rMYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bwi0hJ3n8RQpmfGlmSstEnSrEFD+bGuX+exYxXBtajo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:36"]},"IP":{"Case":"Some","Fields":["91.213.8.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mempo"]},"Identity":{"Case":"Some","Fields":["FtBiCrCKCRyTukSHaUd+TBCf9XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zKAiMU02UKDlz+wQhKT5OMIhKptOC3p/fC1FrjwEUQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:09"]},"IP":{"Case":"Some","Fields":["37.26.74.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShorTorExit"]},"Identity":{"Case":"Some","Fields":["FsKVGFI7Bruw89d13ZgShnPrYPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPGFwb16s/1gEhUpM+mEjUzyy2qWG4Vct3IHozafXZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:24"]},"IP":{"Case":"Some","Fields":["128.52.137.20"]},"OnionRouterPort":{"Case":"Some","Fields":[5101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked03"]},"Identity":{"Case":"Some","Fields":["FsGgfcaL3lRnQvcdIHge+PpZUIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLkaTa7Vd2In0aJbxKQ7HsR1ml/ZLvEOCmAbQz4o5pI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:10"]},"IP":{"Case":"Some","Fields":["130.61.233.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8006:63ff:8b4b:9e15:5919:2a96]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zetoo"]},"Identity":{"Case":"Some","Fields":["FrSb5Omo8cgcWc6sFhT+nP2BZh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HZFLbGQt9BbXnO3Oo7pK2ZGlqWCMxLCTjAmjTTHu5Cw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:32"]},"IP":{"Case":"Some","Fields":["202.61.203.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5a:b7f:e415:4cff:fec3:9d6f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0128"]},"Identity":{"Case":"Some","Fields":["FqIWWgsP1L8kozc3M3iGPjp2M6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oKgrfPqv6AL7c5CLsMZRZj75JzDVRKN044HgXliwGfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:10"]},"IP":{"Case":"Some","Fields":["185.220.101.128"]},"OnionRouterPort":{"Case":"Some","Fields":[10128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::128]:20128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fp02p1EI2dd7QiyJ76eDz7xmK/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sxzTt/oh56wZkXKYzo6Goyr2qqRaViEgQdzIwJ3Vfyw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:54"]},"IP":{"Case":"Some","Fields":["93.72.79.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bradburn"]},"Identity":{"Case":"Some","Fields":["FpU1zEx1/3nG1UjUFyAGTuT+YdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Or/YtLYw3xIzMo+ht68GKSbYerbUmOxLPtTm2wuXMOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:09"]},"IP":{"Case":"Some","Fields":["62.210.125.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["FpSozUVk2YfFnYoX108VPtlnrAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Wgp0tuVuBqOE6JTMlVkGg9IdDSNvRNl30+qtHrTmyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:33"]},"IP":{"Case":"Some","Fields":["185.220.101.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::196]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["FoxKB78djy5dnF274HWBZnZIYCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbO9ecmfA6Q2hqImv6jlIEA3CelzYA7m2c/9N6UvqIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:17"]},"IP":{"Case":"Some","Fields":["146.19.173.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FoSzCuKt03Hl06iz8orKTOnKLgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVwBvYZW7qd6zuGMYLOPmebqaLLWhgQKsFWcMqUHfp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:14"]},"IP":{"Case":"Some","Fields":["185.86.150.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::94eb:3758]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guidemenow"]},"Identity":{"Case":"Some","Fields":["FoJPiF1ytPp6UJDgjYd+VAS8IU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B0FF7Q6MonkSfmTGX5kCTGKs4ibJRWtiN9vzM0jPImg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:04"]},"IP":{"Case":"Some","Fields":["62.216.54.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fortunepink"]},"Identity":{"Case":"Some","Fields":["Fn3NqEmkfq7CJ7WEGAyz4iB3MVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ebz0MbsqKP9OsuKC9I5rTtraKE/9RGuY9EMM2X13qMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:52"]},"IP":{"Case":"Some","Fields":["27.255.75.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nimblebear"]},"Identity":{"Case":"Some","Fields":["FnBqr9olnRQ+B72Wfr5Q0Y7A3BE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o2jAG+3kYydYomcK8FxjUgFQw0Tvx+yQUfAw1aWpIKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:07"]},"IP":{"Case":"Some","Fields":["31.171.155.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boats"]},"Identity":{"Case":"Some","Fields":["FmnlGo8dfXJVaD9VNtO+ZD6xFmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NKsof4d54WK9gIUlMVmWoyn0afZbjRn+41MIGsMelzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:42"]},"IP":{"Case":"Some","Fields":["89.58.0.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:dd7:1451:c9ff:fe68:1d78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei10"]},"Identity":{"Case":"Some","Fields":["FmhQ0WnMeVbndSWhqSKLxFY8/Is"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf/1xgLmZIgYquVZmsSyIAY76QOCNbhvxnpeYY/n8R0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:01"]},"IP":{"Case":"Some","Fields":["185.162.251.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5c5:38dc:87ff:fe07:85fb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev1b"]},"Identity":{"Case":"Some","Fields":["FmJkFo6MzLskRK3g8KIuTm3e9v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/rRSD31QV6Ucsnlw9oYWn4PjE7WPkVd+rJF0i9S8fr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:11"]},"IP":{"Case":"Some","Fields":["87.118.116.90"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:3132:102:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toraway"]},"Identity":{"Case":"Some","Fields":["FlpOhDE2nyRvdL+D7rUVtLHSNMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwymRovhcgW90dRgVFfIvah11qKZFRMiGSZbjDEz+tA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["24.190.192.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["SonicRelay"]},"Identity":{"Case":"Some","Fields":["FlPIaHaqQwMLBYSXacupL14wqcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aj64dZet4Ryeiskbpi24G0GCQIVKZL0k5T4yWa9SKCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:59"]},"IP":{"Case":"Some","Fields":["65.109.28.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:5a:1a40::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mypirelay"]},"Identity":{"Case":"Some","Fields":["FlMNjM1qfCwTVkpXPpsjzhpK0k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BYknFekAWTyt39B/Q2ITY96GCWeLZs/AXWqw6NGEEh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:07"]},"IP":{"Case":"Some","Fields":["188.79.234.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IcyDessert"]},"Identity":{"Case":"Some","Fields":["FlFDuP+4Qkeb1c79eVa6hZC+k9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JjXKnTcTSYq42GhhcKrxdSQwG3dDSIL7FQP8t8CCZ7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:28"]},"IP":{"Case":"Some","Fields":["140.238.38.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DefinitelyNotTheFSB"]},"Identity":{"Case":"Some","Fields":["Fk2qAFXBTn7A3cxLl+g97fGD73Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pnNvJi7HSXwelWg83mWgo7lJBrALEg6fddDcRSV6bEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:35"]},"IP":{"Case":"Some","Fields":["185.224.83.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theqube"]},"Identity":{"Case":"Some","Fields":["FjwH9C6wa2VBDoKgqx0U3t2CbA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b44ojlzlx6xvkleaJq9ovCq4DZkT4MSEaZkHcmZgSb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:47"]},"IP":{"Case":"Some","Fields":["45.125.65.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FjVcHAsCr2lhiualF6UmuKa5i5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9sMcOh7kqu9xMLmmFmcB904+iVGZ7hD+FJROCYb3cs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:14"]},"IP":{"Case":"Some","Fields":["104.244.72.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei01"]},"Identity":{"Case":"Some","Fields":["FjMD8Fg6GRcyYhQ3m9GrLShgRuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WesBEbRu5ooQqdzBNkIvArYXqZBovqq2z/j3+dUIYGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:41"]},"IP":{"Case":"Some","Fields":["185.233.106.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:24:591:a8a0:aaff:fe05:20e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BucketOfBits"]},"Identity":{"Case":"Some","Fields":["FjJMiRMr4U8Z4T/W6zIm/Frj8Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yyb2IXGriTDbrSvomgJ7yxAY2M/axSkrqwdfFvcW6XY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:53:19"]},"IP":{"Case":"Some","Fields":["142.54.162.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DefCon"]},"Identity":{"Case":"Some","Fields":["FhtnrSv71DYCkDCIozDvpkLn2Y0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s48ExV1VdReAgVUt207Huw1Pig1lE1NbsDfsqsQOMzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:25"]},"IP":{"Case":"Some","Fields":["188.109.126.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ceviche"]},"Identity":{"Case":"Some","Fields":["FhCIqpYfnWDCjGYMgVJe9NZYiQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0KcB+EGZMaxwahNZgm3WJmB/4UrgAhtxVag3hjIeDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:37"]},"IP":{"Case":"Some","Fields":["190.42.210.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nullptrf700ec10"]},"Identity":{"Case":"Some","Fields":["Fg8AJj2aeAVBWm3zqmGF1W2jHbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DXqDnsuUbKof4kb1wTMDaDgcU9dv1/CkHeIUn11mqu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:15"]},"IP":{"Case":"Some","Fields":["51.89.148.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spider"]},"Identity":{"Case":"Some","Fields":["Ff7kI9/4r54uCBlZsMYyYHLGDaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEWKHxnRNPlzLJkFOZlG9/S0FofZb7fwv640zPkVotI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:20"]},"IP":{"Case":"Some","Fields":["192.119.108.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloak"]},"Identity":{"Case":"Some","Fields":["Ffz+yBUiRTpYrjiE1mCmIahHKBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mu/52L9c0TKyrgnv16ZhXkAWs+cUT7fby1I+DeS1dS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:07"]},"IP":{"Case":"Some","Fields":["185.26.156.13"]},"OnionRouterPort":{"Case":"Some","Fields":[40745]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:d0c0:200:0:6ca2:b2ff:fee6:2c13]:40745"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomPersonX"]},"Identity":{"Case":"Some","Fields":["Fdf7oKPvCMc6ekJgYZc5m3Bs3EY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SGOkfTcZDiKQR5TLkC7e89/2Y7o+b7UvpDUYJmsjtGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:08"]},"IP":{"Case":"Some","Fields":["2.204.199.222"]},"OnionRouterPort":{"Case":"Some","Fields":[13001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FciHcqwfKf2nAu5MXb+74Fezu0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UIkY2pk2R1gn+Zes4tA35m/pi4qJIGRCbxHi8X+7IMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:16"]},"IP":{"Case":"Some","Fields":["23.128.248.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::301d:faff:fe05:55b6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor07"]},"Identity":{"Case":"Some","Fields":["Fb4XyZ+s4kRw1Ar3gtapxpKrNtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ouSZndGq5VfuFVMjDqz9iRuFLWqWge89nGFloQg1T0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:44"]},"IP":{"Case":"Some","Fields":["51.15.78.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2415::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bayswater"]},"Identity":{"Case":"Some","Fields":["Fb0vTNCfNE5AmO1rl3c8UuJJYsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OSVNPWJf/CeVjPZ4gOpqs5Q9t+1vvhH4njRBwl3SWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:01"]},"IP":{"Case":"Some","Fields":["65.109.16.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5b82I0IfxsHI7ekh"]},"Identity":{"Case":"Some","Fields":["Fa5v/g4kWoINT3TqZLTDBO5VXB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AhraRWU9VGoakmH0cEmDej9azz/l9lg95rkXoaJBvV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:26"]},"IP":{"Case":"Some","Fields":["94.134.60.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoomerIsland"]},"Identity":{"Case":"Some","Fields":["FaSOcyXDTTO4SZ5uAgZZFLoYAcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELZyoWBZrQLJXlIrc2gbjyxc34lutYxGCrJ4XN2Cd0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:36"]},"IP":{"Case":"Some","Fields":["150.136.142.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:400e:2d00:1dab:577c:9b9:1ff0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fckalltrmptards"]},"Identity":{"Case":"Some","Fields":["FZ0uYLh5hJ5V7Z0qgZIqCohWtPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vTZz9Gyss3r/yyqskVvELZ8cn127hu4NpBaJWd/ONDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:58"]},"IP":{"Case":"Some","Fields":["104.237.135.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe25:f3bf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RToRpi"]},"Identity":{"Case":"Some","Fields":["FY1BG1HTE0VtRe9m0JlYWXbM3W8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvzax4GmaWDTN1plwhT2iou2hpEJNZAwDlIvPqXfG6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:01"]},"IP":{"Case":"Some","Fields":["194.99.104.35"]},"OnionRouterPort":{"Case":"Some","Fields":[13526]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bundesgebaermutter"]},"Identity":{"Case":"Some","Fields":["FYQalspcEXGYWpVlv3zd/iv46R4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FjN2AJ5xfer4DRt2z/Co1mQww/tvK72XxODznh9kVUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:20"]},"IP":{"Case":"Some","Fields":["178.1.124.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kwt"]},"Identity":{"Case":"Some","Fields":["FXKMGrZRsCnjJZhRfmUacMpD3v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2IEoc48xy0mAsNakX7FRJXcPTgsbakN2iTcjR3E1v68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:53"]},"IP":{"Case":"Some","Fields":["195.88.57.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex18"]},"Identity":{"Case":"Some","Fields":["FV1vV0JfFsBiTXd3dkHk6xtHxvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A+w71sXp7J/z8XiMgOFsbpaH8t+YdHCTFLnZ8KnBv4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:29"]},"IP":{"Case":"Some","Fields":["199.249.230.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::108]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["FVVxiGUDZV7bU07MQU6sZwejqcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MXhlHj1NqQALYvgVKCBPy3IaIpqtYdE4YjzgO4kE84U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:31"]},"IP":{"Case":"Some","Fields":["91.211.91.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mac68tm"]},"Identity":{"Case":"Some","Fields":["FVUT2vQuGPoW/Od9CEF+RgeFqVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0pGwcwZsPkbgApSkrgdAGmICehAnTm5lWv10Yt2ydw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:50"]},"IP":{"Case":"Some","Fields":["94.4.206.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FUUGQBg9ZIiv76i1DujpH2Sv6as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8khik/Q5fBVcOI6cLfoPsr0Y+EAy8Pcgux3xYtopSrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:19"]},"IP":{"Case":"Some","Fields":["198.98.57.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FUNe1UtnkkzOZgLI1X1l3v02bC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hxK6AD6/+1oZSpJ+KjEQLtmpldh7xNJ1sJqRnA5Y/Wo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:52"]},"IP":{"Case":"Some","Fields":["185.194.142.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tspio"]},"Identity":{"Case":"Some","Fields":["FTKjYXLHABKxBX+7+v4nNO2/Sjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VxdttLNu5/c7aIM1sZ836BYUGBD450GnAZ+ZypdNHMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:11"]},"IP":{"Case":"Some","Fields":["77.81.247.72"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["FTBCM2IiFD1nvz0DySVX+Rsa2Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8Ez1Ug/JhXChIWxAdK9x2+9Wvlf5hCkStsKt9BDAow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:01"]},"IP":{"Case":"Some","Fields":["152.67.162.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:8001:dfea:1::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie5"]},"Identity":{"Case":"Some","Fields":["FSkSkdgeQE+2vsFtNmYIWQ0rAkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdi7PFle54ZE2cKJT6xmoKEUPA7rW056WuDroNdYlr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:06"]},"IP":{"Case":"Some","Fields":["65.108.136.183"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["casaholiday"]},"Identity":{"Case":"Some","Fields":["FSPFAql1S2tCzKXrQCqDPP8OQC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xm9xIPguvAJmP5ZkGhbngaS/w8n267uPLG5zsI1NE3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["209.90.224.5"]},"OnionRouterPort":{"Case":"Some","Fields":[39001]},"DirectoryPort":{"Case":"Some","Fields":[39030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarbarianParty5"]},"Identity":{"Case":"Some","Fields":["FRDVfcRxJLIxmMeMPwM0p8JMx4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cmze5p90Dv3NikxKjPfN2DQ8recQBE59A+Rlr99VsNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:38"]},"IP":{"Case":"Some","Fields":["173.82.108.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["donttraceme"]},"Identity":{"Case":"Some","Fields":["FPI5HBKo+8LHLefUMMeC16AJNPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nSsDXhaVh7L6oey8iVQgR9ub7fGV6NplKrpVtagSmbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:03"]},"IP":{"Case":"Some","Fields":["78.22.225.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange012us"]},"Identity":{"Case":"Some","Fields":["FOctTaELZjU+WD8m7gSsDVY+p+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XtwWC3QsuJPxpXT/vl317saKy8tbnUC7kws8QXZlnhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:53"]},"IP":{"Case":"Some","Fields":["147.135.114.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::6c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torRelayMoniuszki"]},"Identity":{"Case":"Some","Fields":["FNoSg9kDmWCi4vS0Y4eCHb2unMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hCy5KRT+42pnHqFnwi4OlviQbKaVP+G2xnSbHS61+GU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:35"]},"IP":{"Case":"Some","Fields":["185.45.245.113"]},"OnionRouterPort":{"Case":"Some","Fields":[763]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tw"]},"Identity":{"Case":"Some","Fields":["FM5ElLyLY1XSGIIffWqsX3532iA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bf+Zx+/ByzkSJnAJixt5NarbLcr9c7lUOdEnlDoNv0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:20"]},"IP":{"Case":"Some","Fields":["103.54.59.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justhelpingout"]},"Identity":{"Case":"Some","Fields":["FMx9s/b3vpjVfL7cN/vEkjLH/Q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VdqUZpKuSQGNXpAXmzAhA4l2Hh3P69JqS+p9pwO07A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:25"]},"IP":{"Case":"Some","Fields":["5.9.137.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["FK8D5elIbnSLZRuj+C80eK01GK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28TVrrbUA63wrIbL9adWuxJtxOq2wLAxnyCPQ61xRK4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:51:37"]},"IP":{"Case":"Some","Fields":["23.128.248.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::42]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quartzyrelay"]},"Identity":{"Case":"Some","Fields":["FKHWtvQX3sOLsFo/+tVm9uAD4Nk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iq3A+iJDI9BLbExe+QlvWlhMhBTF0TF61ih9wAPej8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:21"]},"IP":{"Case":"Some","Fields":["130.162.33.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FJ5YQZna1ZZvraoH9GUusV6fxlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SDVPQGsI/R2uAsCTVm6BmjuIO5PNUaN2dO70aGppfDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:31"]},"IP":{"Case":"Some","Fields":["199.195.252.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FISHxuvgTrIklggMIHlsUbBg9hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xs/x7CnmL2uFHpuSxN5GfBbVeohODg8pRvoF32dQd6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:17"]},"IP":{"Case":"Some","Fields":["37.191.199.95"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fea6:13cc]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH114"]},"Identity":{"Case":"Some","Fields":["FHscbh1Nh0uylJ6Q+AdXImWsr74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U4t7dzqTuuH1mX8wNrJRGHL2oqmOU0uZElC4Xzbq1H4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:42"]},"IP":{"Case":"Some","Fields":["192.42.116.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:214]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlexGraywood"]},"Identity":{"Case":"Some","Fields":["FHMh7eg50mZgHmWn+q0wZ0mx7sU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sdplGronu7Kg9B1EPeHKXlwEujwm8UU1O6bJR8/xkkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:56"]},"IP":{"Case":"Some","Fields":["165.73.242.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackMesaAG"]},"Identity":{"Case":"Some","Fields":["FGkwdMIyXOyHRq+7hSkedJrEXV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BVS+Yz8rXvWbX5QPxNESrrYXQ6XmVUo55+qMsPvmXoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:43"]},"IP":{"Case":"Some","Fields":["85.214.64.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1162"]},"Identity":{"Case":"Some","Fields":["FF4Yh1Yjugx61R7osbnPUSHAcc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Frhz1m2FH3l3LlEqVEnqkZM919Zjg3MjALEmDtqss8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:55"]},"IP":{"Case":"Some","Fields":["185.220.101.162"]},"OnionRouterPort":{"Case":"Some","Fields":[11162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::162]:11162"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayChu2"]},"Identity":{"Case":"Some","Fields":["FFIjpPdh3Z8OFNzfUSD+1PmY/cY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MUF8Fx7SB55WsxVAnhbFA2QjYh9AbiVtv2jlCLqsdes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:01"]},"IP":{"Case":"Some","Fields":["158.101.203.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c002:b0e:df68:94b3:52b1:5f2c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UrbanTorRelay"]},"Identity":{"Case":"Some","Fields":["FEParwn0eHXZIvcYyMyJqIxQs/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVMMyGWRf5HdWfGkSe8/S+nYB3qupltLhm3yeja+5PA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:22"]},"IP":{"Case":"Some","Fields":["108.28.144.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wagwan"]},"Identity":{"Case":"Some","Fields":["FEL0DKM6wpRB9U72lvzASloWwwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sI/438dBWBeTH8LHsySlYbxhQY1DfuY6Az9di+fUst4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:10"]},"IP":{"Case":"Some","Fields":["50.7.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ServerTor2022"]},"Identity":{"Case":"Some","Fields":["FDyY1PEX88UuvdbsAzI7haE6oxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9uUzOQ148Lj7SyWf0FsWEkBP4W2bcFA3Xe3qWZXyp7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:53"]},"IP":{"Case":"Some","Fields":["46.235.182.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal2"]},"Identity":{"Case":"Some","Fields":["FCWTT6OQRjhsOy78PY944IpzHKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j/4yjSNHBGBJs0zW3MY+yr5odcZtpdK+xZJdx4sT4wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:30"]},"IP":{"Case":"Some","Fields":["158.69.48.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::3aef]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vulcano"]},"Identity":{"Case":"Some","Fields":["FB6aWi78H4zO2wMs3rrTIH7MZQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J0J0tqlL4EsNAAJflnnQssJHaUvG2N9JmJqqxbkaAVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:57"]},"IP":{"Case":"Some","Fields":["94.172.84.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KatSystems01"]},"Identity":{"Case":"Some","Fields":["FBNxE+QEXuyyCQPLVCma+zcGE1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSuyty+9O1u26mM5vrEwPufB3XZzND5sW0O1MB1YaVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:20"]},"IP":{"Case":"Some","Fields":["54.38.215.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::3eb5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["g00dplain"]},"Identity":{"Case":"Some","Fields":["FAjuV2iiyhbHQKWcQZc10MAWd6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6B0l/5jcTCHYmIKSkRyaCJayGQLBBdG7gU0ArZR9OZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:23"]},"IP":{"Case":"Some","Fields":["82.66.103.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:807:de30:4066:2214:e028:3ae7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["E/vJdRbchUOZ5wvHyppFE//U8Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QAkUmhVSoe3XO/OOjC5o3dvbQVKyiQVhvdkfRGOZ2nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:39"]},"IP":{"Case":"Some","Fields":["94.16.117.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipgb"]},"Identity":{"Case":"Some","Fields":["E/sm+TYfgDrRkP6Is14kHcCEsCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ei5w/weeRhvnuhJHn8XA4Lps6q1L1rG554y7kMY/qWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:05"]},"IP":{"Case":"Some","Fields":["185.220.102.246"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::246]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanopoIT"]},"Identity":{"Case":"Some","Fields":["E/fq5zHKRgCVGYaSHgjsq5sdKvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x6RF9g74zWdTLUOOhHz5DSJaWi8fKzBWtUEEfPEoTEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:43"]},"IP":{"Case":"Some","Fields":["37.9.231.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b78:2006:ffc3::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prostor"]},"Identity":{"Case":"Some","Fields":["E/TN5xz71KsNj06E9ip3TyexiQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VLkLVSzT0RaP1l6qRby4Zv/FAcJjPfPWOII3nzFSO2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:15"]},"IP":{"Case":"Some","Fields":["46.226.105.168"]},"OnionRouterPort":{"Case":"Some","Fields":[10100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:feb8:ae3b]:10100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darky1"]},"Identity":{"Case":"Some","Fields":["E/JNX8YOmdNTWmh2HC1iIwNIT5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9nENAvtOhgkhg0L6bsPYJr3vdt278ny8IXmKiZV197M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:37"]},"IP":{"Case":"Some","Fields":["51.15.46.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1828:925::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["E/EinEG4pn9KuUmjr6Xm8572i/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KVpefBtxvkoGywGv8sPfvekntV/uY8jkD3B6xY/mwv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:38"]},"IP":{"Case":"Some","Fields":["62.171.165.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation52"]},"Identity":{"Case":"Some","Fields":["E+4OFMaidRYzE4J3wUQ6TDfdVdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lqFXPh/sfXQ+I1q0MekbZAfoFxh0XRvpPKo+CobPcu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:46"]},"IP":{"Case":"Some","Fields":["51.89.143.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t1saczhbu0dgljekrq"]},"Identity":{"Case":"Some","Fields":["E+lDx7DA3WobyCAbYgN7S/ces3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAdBlD4sXmVKYu9ZTlofHRqhDpyFzMncUbpHv0uVHYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:42"]},"IP":{"Case":"Some","Fields":["51.154.39.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:ee41:84:9066:200:ff:fe00:202]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RavenSecurityOnTor"]},"Identity":{"Case":"Some","Fields":["E9/8hupMz7gg6+YWLmv57cO6ZqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ypEO2ukux6Jv/a8+pMhLSJSd9epH2Bxwr2z50Ew+DUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:24"]},"IP":{"Case":"Some","Fields":["135.181.165.179"]},"OnionRouterPort":{"Case":"Some","Fields":[25]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["E8rcngnzCvJKmLROiDI9tlWoA+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFTrU0Od1Ik+is6MXJloih2sRXeDqxAC7laiVWeyCZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:29"]},"IP":{"Case":"Some","Fields":["188.68.56.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imieeet"]},"Identity":{"Case":"Some","Fields":["E78gZaXC+Hz+kO9DG11oCQM+rSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0RzWraUUqmzf0iYrGqgveT7pycxHkI3ugBgtM7IoX7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:11"]},"IP":{"Case":"Some","Fields":["51.210.61.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORtitan"]},"Identity":{"Case":"Some","Fields":["E7I1THTM4pgVtOH2kvLw6Gx/E90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwDP9SKflEIO8Bb4i6fLnbZB05iH48+5mal2sbP8LPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:18"]},"IP":{"Case":"Some","Fields":["172.241.140.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zion"]},"Identity":{"Case":"Some","Fields":["E6cCLEn22Fb+KO4yBWGes//NRrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7eZrGDVI+TqahiymixjHI7OlIdAZGy9+Xr42qn695vI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:30"]},"IP":{"Case":"Some","Fields":["78.194.37.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex67"]},"Identity":{"Case":"Some","Fields":["E5yGxMm8lOibr3mxXr/fk5bdW7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l7JkLILoDBkpKiA386Tz6RH4zPbnr17PPgZO6fFy0qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:05"]},"IP":{"Case":"Some","Fields":["199.249.230.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::156]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catcharities2"]},"Identity":{"Case":"Some","Fields":["E5Rz+g3Ai272NRVJjqtRwSeWGw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9u93F5nMcZgjXJxqg/d6v2VIm9t7n+oahGsVObNQdVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["207.2.121.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:3e20:378::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sennovakatido"]},"Identity":{"Case":"Some","Fields":["E4uV+aEOi+umsUKtrHMxdlxhrOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0C/bYY2ZajLZlEn8iii7pBeN7z/6Uzhap/uVU/ctayw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:59"]},"IP":{"Case":"Some","Fields":["158.248.86.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doerak"]},"Identity":{"Case":"Some","Fields":["E4CcwcB4KHUqJIzbyBhpxS52vr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CfjC1FhXZsif0rGyGz9NWsLUyMeMSDG5TKWhSS8QEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:00"]},"IP":{"Case":"Some","Fields":["65.108.210.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:3711::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["QuandaleDingleRelay"]},"Identity":{"Case":"Some","Fields":["E2YvTItYhrC32nYEoCXN2+P8LYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eoNozqj1niUX6wJqjuN0sSJr1hoS4ZYOv47c8LFqVJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:33"]},"IP":{"Case":"Some","Fields":["95.235.232.34"]},"OnionRouterPort":{"Case":"Some","Fields":[59132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jellyfixerpitbowl"]},"Identity":{"Case":"Some","Fields":["E1/0TMM05mMvL3S52Z59QzQiq9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xn360RvJXsTssj4vROCSjx14mhujoE1OtbgZivO1y6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:08"]},"IP":{"Case":"Some","Fields":["45.79.14.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:92ff:fe97:c70b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonjubilex"]},"Identity":{"Case":"Some","Fields":["E18qizL1g4RfKw4TPv2EwlAmdhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0v2ll5GCmhflH2A4N0Mh4eGjSCvlvXTqOXV+XGY8yiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:37"]},"IP":{"Case":"Some","Fields":["185.220.100.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:8::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4chanEngineer"]},"Identity":{"Case":"Some","Fields":["E0eYwCHe5AHqTILY6ZZw/rnKI0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+qNIT4J+DNdAFyzaHZYPjae2rvvKMAkeZRjXjsJIoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:24"]},"IP":{"Case":"Some","Fields":["66.187.123.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["themayor"]},"Identity":{"Case":"Some","Fields":["E0R+7v/UJ3EgOp9/2ztCWHuQbHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4zIv8BFdXUeKOAOqZOx+lc7v//PucK4PIR7KbaI4VZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:16"]},"IP":{"Case":"Some","Fields":["45.35.34.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu3"]},"Identity":{"Case":"Some","Fields":["Ez09jztyIKMUuvAqQqVm4jAjRjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M8UQLHFcRcX1qbN/JjrgaA1pIynWYOTYE6mOjtlR+bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:58"]},"IP":{"Case":"Some","Fields":["95.217.231.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:48d0::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KoolJack"]},"Identity":{"Case":"Some","Fields":["EzkVehQUhKtfQfJZGQJkPwdFy/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rbRpoCIaeGWWfjeLMxiK6xGok3rPS14WXzVVzwZb61M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:24"]},"IP":{"Case":"Some","Fields":["154.67.116.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakePHOBOS"]},"Identity":{"Case":"Some","Fields":["EzHU8g+Wef6p8ar6LqnJkqxvFy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eThMFC3qa2my1WsnBHnTH7r4d5CJj1hBQM4DP91cVnM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:11"]},"IP":{"Case":"Some","Fields":["5.199.162.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809nl001"]},"Identity":{"Case":"Some","Fields":["EyoILOMvPN0b24CyQCmaYVNG80s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZfQDwz23VohjW7FFH98ymIYjDm/rl9xEGs5Q8cEbwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:03"]},"IP":{"Case":"Some","Fields":["5.255.102.43"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:be74::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quichupps"]},"Identity":{"Case":"Some","Fields":["EyBOCOv5qUMhttb8Wh8K3wLvPyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["erYiUg5JbRUTiMBlRgOOFtitDqdrJpl2lYob4qc3LE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:49"]},"IP":{"Case":"Some","Fields":["146.0.32.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9788]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffa0:59::1]:9788"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CCrelay1337"]},"Identity":{"Case":"Some","Fields":["Ex+8ij1LRN6bJYrcWGdAgrHgbSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5wFYCtEviJHOpvbuFrOo4ACQeFAXKvsXyXOJ8EfQj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:03"]},"IP":{"Case":"Some","Fields":["188.40.238.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["futureWorld"]},"Identity":{"Case":"Some","Fields":["Ew8zUR1To0+QlK0ENKkBPsY7IBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DFgdiVo9D7Re/fjgi/pIQlLwwnVn5lNi52A+YTTOnWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:56"]},"IP":{"Case":"Some","Fields":["188.154.181.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkturm"]},"Identity":{"Case":"Some","Fields":["Ew5p6PeD3vJW51f6eBVLfcKjng4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Q6c0q2b0rK3+dPMIpHSF+pyWfjVuxRhST8iZGgVM7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:29"]},"IP":{"Case":"Some","Fields":["185.72.247.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lossantos01"]},"Identity":{"Case":"Some","Fields":["Ev/zkNTVbFQkbT+EMLR10XYLtKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3N3ThBMyQuxiF7mefeemG1dFAb22OxGxmde6XFg+zMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["212.227.142.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ridcully"]},"Identity":{"Case":"Some","Fields":["EviHmN1Lm/slppeNqD8ILvHVBRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8sxYB6shmuaqUcXGkOaMSjh9FJj2jN5IHsAGSP8RYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:00"]},"IP":{"Case":"Some","Fields":["188.40.99.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:1901::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Et7gEhukQxuYDlfO8fcWNMMbZzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6hQK8JwEDgBHAmuz6geXp/XjYZzvIbSiJQF86/q0i0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:03"]},"IP":{"Case":"Some","Fields":["81.197.113.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelayMPC"]},"Identity":{"Case":"Some","Fields":["EtnaU59HpVkf1T2Supvd+IiWiew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzeJDb0CDz/q9TizesjBbU/T0JhyV0Ni/wMRWx4fPvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:15"]},"IP":{"Case":"Some","Fields":["151.80.44.177"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:11b1::1]:49001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shortmax"]},"Identity":{"Case":"Some","Fields":["Etl4wqTLSsF5QP6I+Jm2eg/5uq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5I3s8N1YvslqGEWpsG952Vqf5Mu8fbR+th38nrjUf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:18"]},"IP":{"Case":"Some","Fields":["95.216.141.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:513::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFNrelA"]},"Identity":{"Case":"Some","Fields":["EtVS6K96orcbIYtbv2pf76bya6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r5fOW5uGosLSvNvRPfR/2xNxELS6KsPfwMsRAg9oFdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:40"]},"IP":{"Case":"Some","Fields":["217.182.196.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dbalittleB"]},"Identity":{"Case":"Some","Fields":["EtUUWMcHJPxiVfkzyDHCKBMTaYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9SSzfvW7p/9XpOS7wTVOYyAnfWTWcrb92IEfn6Kl94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:41"]},"IP":{"Case":"Some","Fields":["63.225.188.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PikachuZap"]},"Identity":{"Case":"Some","Fields":["EtUM0DbezuXDoQTWtxn14k5dRbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/nKTVnyb3hd0J+TITPBDeA5HPtYDc7OBfkFy6nXlFBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:31"]},"IP":{"Case":"Some","Fields":["185.244.30.43"]},"OnionRouterPort":{"Case":"Some","Fields":[12810]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:803f:b5e7:1ef0::1]:12810"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4rescue"]},"Identity":{"Case":"Some","Fields":["EtEPFmaC7x/K6uRn8bTX9srrITI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["htMWRK6xubArs9kQh8g+9aAVPJpUHCp0PDRx2L1Va5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:42"]},"IP":{"Case":"Some","Fields":["213.202.223.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Es+E09LjC7l5m/wOHd39qNNa8Ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["igRV4xIlQX2zLpW2N+NXDK8/5P4EQduRNWGjUXQ0YR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:04"]},"IP":{"Case":"Some","Fields":["149.202.91.90"]},"OnionRouterPort":{"Case":"Some","Fields":[39353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1004:b5a::1]:39353"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bammbamm"]},"Identity":{"Case":"Some","Fields":["EstMDninHIRgaWBTYbHh/1KOGvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GRSBDFwzaCD1atb1+iG+pYUixWuBGCRYsqSjhvFMNWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:48"]},"IP":{"Case":"Some","Fields":["193.43.147.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["EskzdsWnCzU917RKNPtxDhMVKt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+KQvWrY5AFHMxrUXHjPgxeSKuDYoXZWujx/ROVxV6nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:24:58"]},"IP":{"Case":"Some","Fields":["185.241.208.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay32L"]},"Identity":{"Case":"Some","Fields":["ErGldp04/0fPaMIjXhvaMV30API"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SdFJ8sSzsMWzixXHj8vcG/VGZh7XOkBE3n+z/36XJH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:52"]},"IP":{"Case":"Some","Fields":["185.212.110.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8620:201:215::2cb9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet1"]},"Identity":{"Case":"Some","Fields":["Eq0w5dJapn9Rl4DiER5hGkVf3Ik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oA5bKWeZKq57ohFP/mKebQIzYvJoZeNqWd3bF9oTKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:52"]},"IP":{"Case":"Some","Fields":["193.11.114.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::99]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torarch"]},"Identity":{"Case":"Some","Fields":["EqTyB+4jHzQsxbWj8sbcgKilnpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X55ib24wWEDny/ZLQN36fyuoEsdGdJ+QWsM/4Jkva4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:45"]},"IP":{"Case":"Some","Fields":["45.33.55.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:93ff:fe25:b23e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["Ep95CauDLT7jchxJcfEv/08TKu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7h6kt3pnvjF9rDK2GcfHAQeEUlBeKEuhfdk4NLm+P6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:28"]},"IP":{"Case":"Some","Fields":["82.48.209.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sasuke"]},"Identity":{"Case":"Some","Fields":["EpYRME89k1NR/SVQcTSH7y7qUFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lMwehgvqsNtIysNlF0cvnw/atOFAgUYI17lmnL951gg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:26:22"]},"IP":{"Case":"Some","Fields":["162.251.116.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quartz"]},"Identity":{"Case":"Some","Fields":["En9jWPaP+35DfbpR1tTaxHufeKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYKAISi5k4nhOCai9XdHUDmHXX3eOGvg2UwexrqCJ1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:50"]},"IP":{"Case":"Some","Fields":["5.2.67.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:46a::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["En6AOIjYLzPMPDEezGzOt3CIMcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZeSpT/cMcDrH1mvAaty5rx29F2F0XY0YLXyY+Q9eEIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:23"]},"IP":{"Case":"Some","Fields":["188.68.54.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e028:242a:33ff:fe87:a24]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ROBIN"]},"Identity":{"Case":"Some","Fields":["En4VZJnAQE28twM6/rpt9CjtkY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eHjBFkr4azYRV+imCUlPWY98ghTz1ZrKZXpx3a/lK9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["92.223.90.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:2c6::135]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4rescue"]},"Identity":{"Case":"Some","Fields":["EmTbiTA8ioG5OQ6n4GUWYRlZwJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAA/ZdkOUGuAZ6vik9EWyL70Ynj7qGdGRjDJvLk4uoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:40"]},"IP":{"Case":"Some","Fields":["213.202.223.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["costafastgarnix"]},"Identity":{"Case":"Some","Fields":["EmLswGnUlX0TN+g+DCQ3zIDdPfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NyOreg5Wc00PsaHAbILyTmwixz3ECZDGjTK9QWp3bsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:21"]},"IP":{"Case":"Some","Fields":["78.46.141.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EljQqdlVgrdmb8Cvbpp5gQmpop0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBHMuIVxf7/X+zLgItrvsdvsH6TLtJbrXYdmVvHnt+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:12"]},"IP":{"Case":"Some","Fields":["165.227.161.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["EklI/boLY/I6L7ffx99i7Umd5UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkYilk8LR36MhsWvvVPEUks0EkfPpyqdqFwdrOAxHSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:07"]},"IP":{"Case":"Some","Fields":["51.158.164.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKraken"]},"Identity":{"Case":"Some","Fields":["Ekgtw6VQBBboc40Zh6gLlLlD1O8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Xd+KYI/lcoIZ8HkWj10+KoROAxXyqQAX21vozaTSTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:53"]},"IP":{"Case":"Some","Fields":["185.194.140.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:66d:827:90ff:feb1:17e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritdown"]},"Identity":{"Case":"Some","Fields":["EjquOgMbAjSyUBydUKxt4YAxqRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sRhb998kqgKJX7eaHAgLHa5uVHiiovlH0Wp4vh8g+Gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:56"]},"IP":{"Case":"Some","Fields":["159.223.233.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1107:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FermentationLabs2"]},"Identity":{"Case":"Some","Fields":["EjV1kpSAIkMKj+dtMS/6jFWExag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URXvS6zBGgUd5/YxoFDPhtf4o6LWxWCPIhjFRCM5/PY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:46"]},"IP":{"Case":"Some","Fields":["99.150.229.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TeleMishka002"]},"Identity":{"Case":"Some","Fields":["Eh7MinvYgYI9rqPAhY1R/fGbGZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DrHaS7BFi2UUs5IaI0vWsgMmixMftSYgZQwmFbZ573c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:15"]},"IP":{"Case":"Some","Fields":["157.245.184.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=780"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LadyTremaine2"]},"Identity":{"Case":"Some","Fields":["EhvNqukP3M7ymXUPt4qiRH5C04M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tP1x8eOrcijJr5V39rX+BVcN+9t1n8/tkrH1aRCNqBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:32"]},"IP":{"Case":"Some","Fields":["212.51.141.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gepard"]},"Identity":{"Case":"Some","Fields":["Ehgg3Ukv0HruEdz4UuUq/0p9Y2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5f8XBtS2RCABpklXPEypPo5JVk4d+lutZsh59qbrVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:29"]},"IP":{"Case":"Some","Fields":["109.70.100.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::70]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccrelaycc"]},"Identity":{"Case":"Some","Fields":["EhGsG7uKGvfLqGvOhomqMUa4ZCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glPEISV7TSLtw3jq3HObPzQDFK16kLwQFaioYKZMwYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:02"]},"IP":{"Case":"Some","Fields":["65.21.251.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:344::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LostArkIta1"]},"Identity":{"Case":"Some","Fields":["EgtTXlPErPlo7zriabIk0c8PPB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lo2lRAe72EDkEVYNzhdy8XAeWIYpQF0Ief9yUx83k3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:13"]},"IP":{"Case":"Some","Fields":["92.223.93.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:1b5::cf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AgrippaRelay"]},"Identity":{"Case":"Some","Fields":["EgYmB3eLVMIhWmhgbHw7Ad186PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnK1cSU5Mck6WeSGL6s+joe1d0m424Qbj1uQ7coEmFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:02"]},"IP":{"Case":"Some","Fields":["88.99.76.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["EnzoTheBackupBox"]},"Identity":{"Case":"Some","Fields":["EgRs8F98B6Lbqj6ohmoRfxQ6IwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qxm5uY4Ez3sx4gCGElz6zmHWumQtFsOLuTPACo12Yc4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:10"]},"IP":{"Case":"Some","Fields":["173.187.191.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b88c::5]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasedExitRelay"]},"Identity":{"Case":"Some","Fields":["EgH0p2bStj4cxy1Cbm2fFToJsQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jG/37k3BBDFse1+v6ceFtS2m/OJNo2HebZVTbaiiBnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:18"]},"IP":{"Case":"Some","Fields":["144.172.118.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:b592::134]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schlafschaf"]},"Identity":{"Case":"Some","Fields":["Efx9nH2N90MmuQ7HHBAXMnlzi48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B2T7fzgj7kTr++zlly4p598WgejuS3P2U8vq9McBX1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:43"]},"IP":{"Case":"Some","Fields":["130.180.63.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["EffH9+OXKZJ84jbaHjtsKEfxRFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ppC/RStLzDA1R5f1XEG8YrLnZsyZ8tZZjNTW58bBiS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:11"]},"IP":{"Case":"Some","Fields":["23.128.248.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::71]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IdeaNexus"]},"Identity":{"Case":"Some","Fields":["Eep/ilgde80fd+1bdSaguSsAOoc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EILR2pD+loqi6GockmAUPHgnMfxU4AXNuGpQCF9MX3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:37"]},"IP":{"Case":"Some","Fields":["164.68.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3005:233::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EeaI0hPEwLBnPvcNm286gxlQNlY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CEUCkTcvZSGUtoxz6xf6cnPSK8/iYpBH5beKd4cbQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:41"]},"IP":{"Case":"Some","Fields":["193.32.127.232"]},"OnionRouterPort":{"Case":"Some","Fields":[57282]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gGDHjdcC6zAlM8k08lX"]},"Identity":{"Case":"Some","Fields":["Ed8AF6Q68fCIJc1dlzKX+BqwD/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lQAQMLq4iUzCTZXiGYz+ga7u9CRaXOxr/Tz8JRnbyMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:04"]},"IP":{"Case":"Some","Fields":["37.120.174.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:724c:df98:15f9:b34d:443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mekansm"]},"Identity":{"Case":"Some","Fields":["EclSnJ0GcVRervgN/iCa2Xe86Qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["05K9FShSjl8GkGwk5NJzsuFG0JxVt+1KdR8/YkBDSvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:56"]},"IP":{"Case":"Some","Fields":["77.22.42.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dudebroooo"]},"Identity":{"Case":"Some","Fields":["EcHyhWLVJixqfWY7AZe3rDXYmU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9TZJqebNukfmde3AEwKVJ/YRz+ZZhJ9UCTTpEtN3SBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:22"]},"IP":{"Case":"Some","Fields":["188.166.168.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["auctoritas"]},"Identity":{"Case":"Some","Fields":["EcCL1kxdS3Fz9qTCdr7gDCxSxi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mfsJbYrLVpOXj2YtqJCzSnT0zC6BUUqeFY3KuuqBk/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:46"]},"IP":{"Case":"Some","Fields":["146.19.213.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mirage"]},"Identity":{"Case":"Some","Fields":["Ea7lZ9JM3mgKx4vNbrrDbFCzz0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hxtn6dH4HcUkXUn1mJkmEm6T4rA6cEbjnpTIAbL9xoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:39"]},"IP":{"Case":"Some","Fields":["172.72.163.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jonasBebe2"]},"Identity":{"Case":"Some","Fields":["EavbTQuUTxhqiYVgy4LHBDmVfco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4K7vQGbzZuCKCuEB/tAgvClaXl1JsbDWFP1QXU90YU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:01"]},"IP":{"Case":"Some","Fields":["178.63.18.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:431f:4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ru20101315"]},"Identity":{"Case":"Some","Fields":["EaqZt2tGUzNEHjAA9HeZXHBJm5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dd8U8UYvW63se/Fdp3IJNFqMGmDK+xjAALO/L1z+s8U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:28"]},"IP":{"Case":"Some","Fields":["185.246.182.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["EaLH5GKbyPKugYjP9kIfH73SqM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3sMMJ7D46UBIKHQLk4fwW/uyO98PGSREfHMazqI+bh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:41"]},"IP":{"Case":"Some","Fields":["185.220.101.42"]},"OnionRouterPort":{"Case":"Some","Fields":[10042]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::42]:10042"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber15"]},"Identity":{"Case":"Some","Fields":["EZ1ZWoGmfWweTWa3R3F/2VIl+fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOrC85KCjqm0PcGV5iIw8F21v2toNODd+SYIljeLN/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:54"]},"IP":{"Case":"Some","Fields":["185.220.101.8"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::8]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EYjcVJ/fXoBU4f6MeJpjLNGHL34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gN5pdibS3tqrVIOqNCj4VEbwq2Hm8eBmXhN0gKoWqDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:41"]},"IP":{"Case":"Some","Fields":["51.75.143.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp6"]},"Identity":{"Case":"Some","Fields":["EYF62KplUzoM7NI/j1R6l6afGSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dogY5y9vxfUrGU2qpxhbSK8+3bnhgvM3EAMX38WnbQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:39:34"]},"IP":{"Case":"Some","Fields":["185.220.103.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakeVISOR"]},"Identity":{"Case":"Some","Fields":["EXKGo/XfcnXy6x8o2KrHJ3LYSTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O6HjU6IzpS5Ioouod0z1DAxUT6xTRtmJIK6MFYLv6Tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:15"]},"IP":{"Case":"Some","Fields":["5.199.162.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Razor"]},"Identity":{"Case":"Some","Fields":["EVw/7FOSKY7yEzlwalCmiuwCYPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0XAYQVPV+iFcUVdnOV11OpTC6BFk70tmY8jBYU97Amc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:42"]},"IP":{"Case":"Some","Fields":["162.226.56.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange040fr"]},"Identity":{"Case":"Some","Fields":["EVgjQZibGG4XbVg2LxIk0oukyfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tHFl+GRJ5SR87OT6Vi1ShJC2F9Zpr13ojeHIrjrlhEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:13"]},"IP":{"Case":"Some","Fields":["37.59.151.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yogapants"]},"Identity":{"Case":"Some","Fields":["EVIWP5HDqi0wuPuP/KjYRCEV74U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6wMTBNVYdLBnmG4tMIeAs0LlRnY2eFYrHa4CtVRXFrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:43"]},"IP":{"Case":"Some","Fields":["172.105.237.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:febf:f72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedDrake"]},"Identity":{"Case":"Some","Fields":["EU0IUUBAFcAmXx9NS6al4elw4V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7raw+mm+Q4j8Twl9n2gHPXPyYgYyZweGrI0mEz0X/uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:25"]},"IP":{"Case":"Some","Fields":["23.154.177.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hashy"]},"Identity":{"Case":"Some","Fields":["EUxDsrrViIYbx6g/qYiezE9Ohe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc5d7Itx4XqFmt2OnFghHEmxhnIkX7VukRF0bxyWzx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:08"]},"IP":{"Case":"Some","Fields":["103.152.178.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:df4:1780:3000:cb4b:95b6:1d99:4544]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueGene"]},"Identity":{"Case":"Some","Fields":["EUwArIjPoYWq8a2ixsGdGnxnB4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["95zsh3PEeHmZ/NztMPyt1LDVKb9WtajXFQoKLl3/KtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:57"]},"IP":{"Case":"Some","Fields":["93.160.17.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChaChaPoly20"]},"Identity":{"Case":"Some","Fields":["EUeeZaxmNMKQHbyW6m7KFghn7n0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zm2x9Kx40nL3Nh8oM94Ics5wpzaC9r8Oj0NHrcDFn7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:49"]},"IP":{"Case":"Some","Fields":["121.99.242.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["excavation"]},"Identity":{"Case":"Some","Fields":["EUBXr/fRKE9Kga4UZLiZwO1qMuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kqr7m42sBSL/khQweFN3xf4/EjGvRqb4+WkGAelYRwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:35"]},"IP":{"Case":"Some","Fields":["82.64.139.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:231:6221:1d33:2ab3:f82e:f232]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AveCaesar"]},"Identity":{"Case":"Some","Fields":["EThtM/zVvxiMonllEy9nFBSO19c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qGbMeh6rbYaAD2PDkD0bqX1Ts/SXeULJloAcbEohTB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:15"]},"IP":{"Case":"Some","Fields":["178.165.27.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["giovanna"]},"Identity":{"Case":"Some","Fields":["ETerH4TsLVLfsZFXF/FP8aEOs5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZVvnPr4vWWGwLBiYTOsAd0ua4wvNVwcmrbMKAduAZYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:28"]},"IP":{"Case":"Some","Fields":["185.227.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fa11en"]},"Identity":{"Case":"Some","Fields":["ESGAvGylNhOP8hC8WcsJV8O/rME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1FqG17IyqJkk628/7ODpIVID+qFKoWlupgIhlc6YyZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:03"]},"IP":{"Case":"Some","Fields":["51.15.127.227"]},"OnionRouterPort":{"Case":"Some","Fields":[7890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:24b::1]:7890"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zerodivided"]},"Identity":{"Case":"Some","Fields":["ERmonnKdtlg5+yMqHg+GabCuhN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egEAYT9s9vAIXkquRUSn9nzNhKYiV0aPWv12T1U279s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:38"]},"IP":{"Case":"Some","Fields":["80.241.220.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:1000:6686::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cricket"]},"Identity":{"Case":"Some","Fields":["EQg3E+yI/wkmnsN/WtndqsovJHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["56m1zQgn27T0BhgHbrIkQ6pl5auxtAyo+bHkA0eiGbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:12"]},"IP":{"Case":"Some","Fields":["172.106.17.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torry2"]},"Identity":{"Case":"Some","Fields":["EPX0YHPJL3H5+/DSuNntxkLPZf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1VWP4PwZvOEzud4Pfbbt/EFRIW62PsRmoBP1/gir1zg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:23"]},"IP":{"Case":"Some","Fields":["77.180.229.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9999]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lusifaisland"]},"Identity":{"Case":"Some","Fields":["EOFgJSiTy7C5GxR+iwRScCfqLPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nz6oI5yjTHif1NScwNAwotozPTRMSz7rZSd1HciCtk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:12"]},"IP":{"Case":"Some","Fields":["45.32.80.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MRNobody"]},"Identity":{"Case":"Some","Fields":["EN+ZaPSqA8Z2XrEiwVBhFxi0/aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVRrrjRM0Car8auLGB7dpto6WmOSJrOivLbGqDQ67rQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:13"]},"IP":{"Case":"Some","Fields":["217.252.191.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ENWhzFCEn2OpGz34Bo+AbuNTJUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8dJJudbVmXV95P1VwtXfOEeUKwwcpzpqlqob4TVcCdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:20"]},"IP":{"Case":"Some","Fields":["185.194.142.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baloonasTORrelay"]},"Identity":{"Case":"Some","Fields":["ENIZiX5PJZSvHsAcQUwuN1Srpcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WTGVZDlkF0zVqfBa/8xD7FsJcMwOwMv+4/lp9M6cgKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:21"]},"IP":{"Case":"Some","Fields":["94.16.104.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:50:e4c::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GeorgeIV"]},"Identity":{"Case":"Some","Fields":["EMG8FP9puT2yRenyWAo5qRm9v0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1oM71MyROuoyuFBTjlv+iUTmfOU7YI5MB6DX21cTfj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:51"]},"IP":{"Case":"Some","Fields":["37.153.16.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["movingday"]},"Identity":{"Case":"Some","Fields":["EK9lRauzI/boZOB+cOP6q9llbLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bpJphlEA3v9xAr/ycCZw4dQPfxeS7KI8U/1L8YCl/ZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:43"]},"IP":{"Case":"Some","Fields":["66.23.203.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MuddyMouse"]},"Identity":{"Case":"Some","Fields":["EKnB7DvMhcIJdn43TZOmz/XyLKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glkZ9MRSQBzMEXbFbg7WnFVkcHR2ofbzIuKY09+xEcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:31"]},"IP":{"Case":"Some","Fields":["94.156.128.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra82"]},"Identity":{"Case":"Some","Fields":["EKcweNPXHQHEsAftdasnE05Q8dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GG71kFnHXSJYuQSOlzjORESqzvLh8O6PsWU11UGY6AQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:58"]},"IP":{"Case":"Some","Fields":["185.247.226.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eridanus"]},"Identity":{"Case":"Some","Fields":["EKXvzNL7nBpKwg+3eaXbEbWJV6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMhf/y6OIIBUxYJO4Q9OOOWaNukwnez4c8aysMv+UBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:53"]},"IP":{"Case":"Some","Fields":["144.76.154.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:2211::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["collaborator"]},"Identity":{"Case":"Some","Fields":["EJNTrPtuRUd7Et/i7tk1oURj1Cw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEuF5MvpPM1R8OSckh1Ldd1teFiia0Sm1gkrdMnNsiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:44"]},"IP":{"Case":"Some","Fields":["5.63.42.231"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benedict"]},"Identity":{"Case":"Some","Fields":["EIR+UHyaEBy5m/PZJ6SyvKHCYVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["omIawhWW4YN0WmpLmPbMH/MqO9ktCWx+/nq8PqYJ+fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:53"]},"IP":{"Case":"Some","Fields":["185.141.25.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tommyboy"]},"Identity":{"Case":"Some","Fields":["EIBaODN3S4EtB+t9HXWlQCFZD1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jW4buMYEu6iNYxeJp+ybF/cAjlhkov5zlN67YOvEOaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:58"]},"IP":{"Case":"Some","Fields":["116.12.180.237"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoochySloochy"]},"Identity":{"Case":"Some","Fields":["EHnmKPxrACVlasAk8tmXXEQUmM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/bg0hlgvsiSVO6U1I8fF2oRfTu0HVrIrrrwxowo132Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:44"]},"IP":{"Case":"Some","Fields":["51.15.185.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809tm"]},"Identity":{"Case":"Some","Fields":["EHYRgyZeYnUpvCULamZF7ZgNlpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SSE39ns1Tv/C8KuUYxfr+T+xqSW4gAsogLZP6BDlpzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:54"]},"IP":{"Case":"Some","Fields":["69.197.128.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3eb::154]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["panda"]},"Identity":{"Case":"Some","Fields":["EG48j8749XdLnpdzKjfazplQNjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z2G3K70HmxWhxGdklNayU0UJPftLYzLRyP/homeivZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:48"]},"IP":{"Case":"Some","Fields":["109.70.100.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alured"]},"Identity":{"Case":"Some","Fields":["EGaGEFzSEVX7OS3f3Pcp8Kyqaac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C6d+pPWaht8fDW8j0FY/he/LD/+ouw2KVI4BUjJm9WQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:03:48"]},"IP":{"Case":"Some","Fields":["51.83.227.239"]},"OnionRouterPort":{"Case":"Some","Fields":[586]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber49"]},"Identity":{"Case":"Some","Fields":["EF+AD9MOY3iDpk6mS8VW6CwkilE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Qo8M4f2aqekmo7qwOc2btcwuQuK39sqK7M8gERrfj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:26"]},"IP":{"Case":"Some","Fields":["185.220.101.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::25]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["realdeadbeef"]},"Identity":{"Case":"Some","Fields":["EF8j/EmpZZZbtlk2RCPqmp6bN5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzGbPVMUBWkbnvUgoFcRev5hQEfQ/1o42Or1Qp/onFU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:24"]},"IP":{"Case":"Some","Fields":["51.68.215.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::5a8a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rollingback20"]},"Identity":{"Case":"Some","Fields":["EFdJPBibtczEe5ZMeHM+bQ6XzM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vbnko10UfwL0CYaZLOju+eWlthu9mpm8LF52n9UaPMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:39"]},"IP":{"Case":"Some","Fields":["172.1.227.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra6"]},"Identity":{"Case":"Some","Fields":["EFD8ecXxEDsYUwDvct31tO3Gg8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GCTy51OoiHyM+SNF7I/RT10RhaJUfq98aY5m80YPgH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:13"]},"IP":{"Case":"Some","Fields":["51.195.103.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra49"]},"Identity":{"Case":"Some","Fields":["EEL6x8gEis2eqzZc9os/fENQc4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M92UvevviK/t7Rl9Q9XUQvq16i7aPzrlfH5ydQB58qo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:54"]},"IP":{"Case":"Some","Fields":["94.140.115.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayStation"]},"Identity":{"Case":"Some","Fields":["EDM2FloNLvytNgUzmEOgp3ELi5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nPLtMLZ0tt0ZQqnKWJy0/FX0fiXmdg/Xr4uKKJI7N3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:55"]},"IP":{"Case":"Some","Fields":["85.195.235.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:a403:13:5054:ff:fe21:7c4c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["max7"]},"Identity":{"Case":"Some","Fields":["EC6hSSEfSQwSLKzEBU8bxqhQPrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pLEzaluDRsb/PuB/jUCtoC6zIhfV+5WiAI2qi8WiePM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:32"]},"IP":{"Case":"Some","Fields":["93.170.246.217"]},"OnionRouterPort":{"Case":"Some","Fields":[1294]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doofenschmirtz"]},"Identity":{"Case":"Some","Fields":["ECMeCPGcA9Wi/jqtA9hjq94ggbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mHLCs03ccOCypYfwALmwUX0DJrZ4/28bXhAlD8TOIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:15"]},"IP":{"Case":"Some","Fields":["65.108.77.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay04"]},"Identity":{"Case":"Some","Fields":["EBwYiGswuyOzbLqtFZJhGIhS4RI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkSC8+w25E+jsVyH6hD30cqx/gwU9VIeTlAsFDTkRjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:55"]},"IP":{"Case":"Some","Fields":["82.149.227.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:123]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlphaGremlin"]},"Identity":{"Case":"Some","Fields":["D/n4glAfsdYQUi32qtbnXJX48rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qgodt+3S5yXrGWJPFrBOtHnGSF6lY8g1GjEHGbeniM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:53"]},"IP":{"Case":"Some","Fields":["194.87.97.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baxTianRelay"]},"Identity":{"Case":"Some","Fields":["D+H2EQKksQ7jOtwrQnWtVjLi0xw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ZgpNHKDynUPwkNVFmb3UpkwjOc9jgP53ZhzvhRAFGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:00"]},"IP":{"Case":"Some","Fields":["92.222.172.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchweinfurtsTor2"]},"Identity":{"Case":"Some","Fields":["D9yafWBggSPPVDL24lxuS8I+eTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6bE+W6rti8OsL0wbK9IH1IccaTdIsqfCGfgV3Oyrts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:24"]},"IP":{"Case":"Some","Fields":["85.214.147.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BaBaBooey"]},"Identity":{"Case":"Some","Fields":["D8q7jG5BLmDLhi/hmmQZGmnrlOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSTnQDcTzO00wuUX7vTj2pTKxgrXlCqEYKZ3s+HeDac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:35"]},"IP":{"Case":"Some","Fields":["108.62.211.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Innominato"]},"Identity":{"Case":"Some","Fields":["D8i5JcmGaX1BwbFQrceLstLlD8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M3OPEse7kLLUxsxU8CNFUsP2zHcDwJhkk0OV3kLbLMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:58"]},"IP":{"Case":"Some","Fields":["79.52.232.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[9033]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mentor"]},"Identity":{"Case":"Some","Fields":["D8EvK33Q6Ukw+bPN0yEwiZZlKVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f+0evv17S+6vZop3djCeHEFub6yC+s0QAehJ27mQikI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:20"]},"IP":{"Case":"Some","Fields":["72.14.177.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::19:ffff]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["D7q7jHsizt38hJMx6OninBgIEjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8lqi0WPx8FMjWyGTMnsgV87mPF7Otsiu4uz1K95Muz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:37"]},"IP":{"Case":"Some","Fields":["45.86.86.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5170::1db]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frantz"]},"Identity":{"Case":"Some","Fields":["D7mnfdtqyHhQd+wdL8lVDxnHVCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ewbYz0QUJhi3oZHybf10rf1GTMkAvYvLIDpJfq7t2Po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:52"]},"IP":{"Case":"Some","Fields":["37.220.36.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay35at8443"]},"Identity":{"Case":"Some","Fields":["D7B2kNZM5cIrUXUYPA5ZZ4zffqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0meBjWvx2EqOWsBPwthGMsK+vzWCQOX1AFN/y7UW+tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:14"]},"IP":{"Case":"Some","Fields":["140.78.100.35"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NaruOTORI"]},"Identity":{"Case":"Some","Fields":["D6YXiuOcQT/mV2Qt3Alck7GEKnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XXHjMU1obAdq09MyD05k/jsrV1t/7aRAonES1Mpl2Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:04"]},"IP":{"Case":"Some","Fields":["157.147.121.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sk"]},"Identity":{"Case":"Some","Fields":["D6J0IHNsm+LoK9ElZr80oBV8VYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlBWgGXa29y2ziUXRd7n4ZJIJ696i0TfqZwdX7nE3TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:54"]},"IP":{"Case":"Some","Fields":["63.250.56.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RussiaOutOfUkraine"]},"Identity":{"Case":"Some","Fields":["D6FP5+NlgPaZeN9Yynr+XVKAgu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v1fXscasUuBi7xCpWROw7N5rn97RTCOyjvfiQ0i5fsU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:44:04"]},"IP":{"Case":"Some","Fields":["92.32.77.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unimatrix01"]},"Identity":{"Case":"Some","Fields":["D5+QTWHyVsMvAac/vwvFcEFja/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6Dyb++KAFuAEXrMWV09Xcius0wDESUu1t5/F4TMMjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:05"]},"IP":{"Case":"Some","Fields":["84.158.124.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BotheredSoul"]},"Identity":{"Case":"Some","Fields":["D5wydpO284cNL+erJbWnZ4fqUt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y2vlw9t63w/Sll2UvVpIQoUNaixpOuh5CpkGA+0dOLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:49"]},"IP":{"Case":"Some","Fields":["108.48.87.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["K3PO"]},"Identity":{"Case":"Some","Fields":["D5MecVbya5ZLPpC4Hd6uRpkp4mU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dNsp9CWJ/mAP/Ccivg4HBYpzLNumz+5mZIRtl7qVfQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:13"]},"IP":{"Case":"Some","Fields":["185.117.118.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:f040:0:8::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo112"]},"Identity":{"Case":"Some","Fields":["D3GwFK9qIjW9DQ+9LVAWH1+TOg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/0hHbNe3i75eKfmhOQM8WD4WuYJqvLs1+WyHWozIIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:37"]},"IP":{"Case":"Some","Fields":["190.211.254.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["D2y/ueXN/FptQnMg6Qsd+RCV3Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YQ/rnN9LE9sH8Ds/VeOib5NnKLUvQg6twMlyVPOOpos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:23"]},"IP":{"Case":"Some","Fields":["185.125.168.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:42]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilvi"]},"Identity":{"Case":"Some","Fields":["D2oEJ2y5XQQq7o0ot0WHj4J9IQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EQCEWR/i4tKtHIKncHa033CAouWcIB9Tz2XPSKpAe5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:34"]},"IP":{"Case":"Some","Fields":["87.100.255.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[9041]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["D2Az+LSyYZ64EhzRDMabDg5jWmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6bsOwFNsIBbYntmeMKxTlTUCKr0YQT6yn2j5Ct79dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:42"]},"IP":{"Case":"Some","Fields":["193.26.156.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4c:b27:a410:8eff:feb3:1c4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot1"]},"Identity":{"Case":"Some","Fields":["D1O0sWdoqKGLg4ED3VAAaMTWVus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y8cvHbagpU9NOoX1AbUD0kzbkqLMwLlKv5O2LWz3mSE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:29"]},"IP":{"Case":"Some","Fields":["139.99.134.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Qazwsxedcrfv"]},"Identity":{"Case":"Some","Fields":["Dzsby0LA5ojUpFiH7912K40vCPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yraaUujDXy0aA1z8PpLmqqBkjFIe8GTl+vofsUoJ+js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:46"]},"IP":{"Case":"Some","Fields":["76.89.223.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:8000:b00:9103:e139:a2df:f3b:e56f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MalakataLU00"]},"Identity":{"Case":"Some","Fields":["DzjY7YE3kOLFBghjbhShR99mlG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pn6ZPE3SYpUH07enHJiQPiPd+j81ZhGvFaVcgD5CXRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:33"]},"IP":{"Case":"Some","Fields":["188.115.31.97"]},"OnionRouterPort":{"Case":"Some","Fields":[42000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sovereign2"]},"Identity":{"Case":"Some","Fields":["DzX13dFiGZtgstLLybt+NaCEr/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e859keotY/x67H7k22R/zZpvIWklAt/7NON8lL/OVzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:03"]},"IP":{"Case":"Some","Fields":["178.170.10.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::506]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE61"]},"Identity":{"Case":"Some","Fields":["DywsQYn3SuktYSB6YQ5b+vdrgYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xiEkXby6ueDJQnaEO6PdxZzP4tw0Dg+nze7ovmxq2XQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:21"]},"IP":{"Case":"Some","Fields":["37.221.66.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:102]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cadory"]},"Identity":{"Case":"Some","Fields":["DyOVCwhjq6/RGdfjJ2rUWNUV9Pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K12geKKDCUtNNy6QR3Sn3DYQit64yHfSVgNPsFxCWq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:18"]},"IP":{"Case":"Some","Fields":["178.200.169.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[4444]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["DxyBaN/QqtvmG9cRlNN8hn/tWiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7wWoxVkhtz65zf1LCCmHouj59/frG72wymif3bYIyJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:37"]},"IP":{"Case":"Some","Fields":["179.43.159.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra57"]},"Identity":{"Case":"Some","Fields":["Dw9pCvHTLHw8csVDg2YlYoiHuoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["heZktSXxWFylvtZGGx3bUT1I349OHbVdfw+XB5++7IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:32"]},"IP":{"Case":"Some","Fields":["51.195.107.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["polux"]},"Identity":{"Case":"Some","Fields":["DwXpahEJ3KIha2Nl1X9kgmwpvCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X8LXcJlCIAUKdw+2V0+xfmObB52+9voR9aCfljlVa8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:48"]},"IP":{"Case":"Some","Fields":["86.234.206.33"]},"OnionRouterPort":{"Case":"Some","Fields":[4005]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams02"]},"Identity":{"Case":"Some","Fields":["DvmRgssEsUpxjv38wPo1KO1IarU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xUwVGvHG2d35ZXP80chOvqUCBZKSG8dKdLqkP4A6biw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:37"]},"IP":{"Case":"Some","Fields":["45.151.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::a]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EphesysEntry01"]},"Identity":{"Case":"Some","Fields":["Duw73h9V6riJ1lL5y0bwcEiRBtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qUyWW/cPahLNYMiQWbbWvLkzpdKQYdqqLLPJ3WHk8tA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:05"]},"IP":{"Case":"Some","Fields":["64.33.179.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["DtTKio5s4tKNbSOyCBWuOYJkb8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4qq8Ju2/fUnJ8TA6VShkP3yVtjTKeTy9HVSJt5+U2mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:41"]},"IP":{"Case":"Some","Fields":["104.244.72.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f858:2704:73e1:7085:12ef]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFNrelB"]},"Identity":{"Case":"Some","Fields":["DtDqMkyTHPQctScr+x0BWz1Xcqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6of5SfVD1z9uuNO26L8raB6TjaW8ciK076fUg37GFgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:47"]},"IP":{"Case":"Some","Fields":["217.182.196.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0187"]},"Identity":{"Case":"Some","Fields":["DsBRV0O0wog/kIxSh3Sm4S5hO4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lrps0s5eZsPrFL2Yrp7ec7DfWUh/9PrHzxt+84GGJpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:47"]},"IP":{"Case":"Some","Fields":["185.220.101.187"]},"OnionRouterPort":{"Case":"Some","Fields":[10187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::187]:20187"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myrpirelay"]},"Identity":{"Case":"Some","Fields":["Drd4Jvvv/jp0lmFtyyyw9Hh3ijM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cyh1jSSgVwMZzjyrHGEutZD08tJbCzK0cWuELCCuf+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:22"]},"IP":{"Case":"Some","Fields":["72.68.41.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Dqvc+F3cQSSdZCkzhkbxWZgTwRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MSw4J9mES3LJT9ZNvP68S3NysPC4rPz2z7n/p4H8o4g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:51"]},"IP":{"Case":"Some","Fields":["95.214.52.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1143"]},"Identity":{"Case":"Some","Fields":["DqHXLVkl6ZmpOGb/zRaVDUMN4mc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uy5LGuwCK6ZrswxIWj+DlNz29kGwpJmZNgqqCKab1S4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:54"]},"IP":{"Case":"Some","Fields":["185.220.101.143"]},"OnionRouterPort":{"Case":"Some","Fields":[11143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::143]:11143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Dpz5KhhANBrss50flwDBuupRwoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8TStnpKblmtaMwfIRmkGBUAplXyk/q/LMWV5iHWaUQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:43"]},"IP":{"Case":"Some","Fields":["188.165.26.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberation"]},"Identity":{"Case":"Some","Fields":["DpjqBabaD6EcDDwyvw1uT4sNHbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ykmx4kRODYlgF7/JRTYcQ8Hz3vhwA01Ogv4wo+NMobs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:23"]},"IP":{"Case":"Some","Fields":["87.236.199.239"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndranikMarkosyan"]},"Identity":{"Case":"Some","Fields":["DpTm4oYTIwBWK9Eqa4gXCMwDK68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVVY45OFPZ7hsidWwe0WRGTzzTi3gs8ZeBU8Osfv+po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:04"]},"IP":{"Case":"Some","Fields":["172.105.68.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:92ff:fe58:5755]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ua321"]},"Identity":{"Case":"Some","Fields":["DpK/ArPBGw3RgwGg3hsWSgVG428"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RYCvn1XwpNRhtHMs4JLXQ/EAlezkinjeJ45or8ASc44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:48"]},"IP":{"Case":"Some","Fields":["193.218.118.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::182]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yank"]},"Identity":{"Case":"Some","Fields":["DoLoHvo6NjK5zVCwjMl0va4hzPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJlV7Ms+s3haCrDHVHYmeWFJZHu7kuxgDIIPmSDv0tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:09"]},"IP":{"Case":"Some","Fields":["37.46.80.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1187"]},"Identity":{"Case":"Some","Fields":["DmmqDgCrnlu/BSyGRoIimwsfFq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iIvK/j6zw4Tq6+aYqLDReVqxGXiSswcMttDvwESN4lA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:14"]},"IP":{"Case":"Some","Fields":["185.220.101.187"]},"OnionRouterPort":{"Case":"Some","Fields":[11187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::187]:11187"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artlogic"]},"Identity":{"Case":"Some","Fields":["Dl1zBGblu2dbyXBMN02+fhnwYWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DM0gKYQK1SCHe3qveixUGGZ7qkWsiqs6OcnPpTFGxRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:18"]},"IP":{"Case":"Some","Fields":["165.227.34.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::6805:f001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MKHWDJ"]},"Identity":{"Case":"Some","Fields":["DleC4AlOvsWW9qQNdsKwEqnwV2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["asbT/JUwSjV36iixnb8PysHR3SUF/5bIImPE61POkDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:26"]},"IP":{"Case":"Some","Fields":["198.98.52.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum"]},"Identity":{"Case":"Some","Fields":["DlUiy09542wLsmO6vIYc/GhpKa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IHRgDeuqHAg8kJHHhVWSLqH4oVsK0JyGOac85yeHHWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:40"]},"IP":{"Case":"Some","Fields":["62.102.148.67"]},"OnionRouterPort":{"Case":"Some","Fields":[42895]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Dk8ZDEpvfd9/jJp4QrhbS7z19Es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/2wLhX5rOOAlB6MmUtPskj9USY34jvy2HPz4vf7D0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:29"]},"IP":{"Case":"Some","Fields":["217.79.181.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:58::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DjLvMYQZ0wBcMAOv9NFWapQdpIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sHl4eCzr4B3h+knHrdgciGjjo5mhdersfJ989gs8LVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:53"]},"IP":{"Case":"Some","Fields":["104.152.209.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Di/1v4c98v26vkLb8ELTUN55TxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tvi+BrS3cWd7/iLrIk67RWkoHNtyjUo3UkyiPvw886E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:44"]},"IP":{"Case":"Some","Fields":["188.68.36.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["limoneneis"]},"Identity":{"Case":"Some","Fields":["Di8gqg28h8JVZA4PT0FbFGlN96U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/ydBGmwZKn3C8FefkbtAaxNobo8e2YoIJgNiBi6oNoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:49"]},"IP":{"Case":"Some","Fields":["5.189.134.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3000:8469::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nako"]},"Identity":{"Case":"Some","Fields":["Di7sElpqyNXr9ds2t3aj2lUQ56A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YHN7wQdtr3zuB4xlV+V1DVKYYH2UbK0nfu/2IyH2ZYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:18"]},"IP":{"Case":"Some","Fields":["162.55.58.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:b436::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uavae5Hahngu"]},"Identity":{"Case":"Some","Fields":["DiMAjwD+zjWq0xBrQ3yTAl9R/pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QeKmSqXB3d2pfYm5tPc/M9DukofrxsZPHiPeSE9ZUPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:19"]},"IP":{"Case":"Some","Fields":["107.189.12.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JazperExitNode"]},"Identity":{"Case":"Some","Fields":["Dg7YDQQtMcmO4k7PrYnaMz+kw+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EkvMMn/TjmPpL3L2s7qvMTtB1kz5JZooMQkqNB6KjGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:13"]},"IP":{"Case":"Some","Fields":["185.51.76.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:966::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["82320e8da3"]},"Identity":{"Case":"Some","Fields":["Df/l0oRsU3lOnEuren1r2sBzKFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cnudmbY4e4z1al2nkhqpw2DtyvgFS1Io6ezYBo60mrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:31"]},"IP":{"Case":"Some","Fields":["195.90.208.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoveMonero"]},"Identity":{"Case":"Some","Fields":["DfEQY1NoqmD6yVE1h+YBb0B+95k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/dklIKiZ8cvSDE+amYuja3JhCGUeizGASG4yNxT4mQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["185.213.175.112"]},"OnionRouterPort":{"Case":"Some","Fields":[7977]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:dc2::1]:7977"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DfCTefqUYvcyfQDmN9AAaT7hO6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nrlyN+1dUJH0HHeaZ2W8aYyuOfgNL7QXvWS/6IC6DG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:30"]},"IP":{"Case":"Some","Fields":["92.248.61.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH105"]},"Identity":{"Case":"Some","Fields":["DeE1pNDsy11X+Lcb+OIpWPxBRqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WK0zwwi3vH1eyG9+QoSL5RaT6HerPfaNV1sH6HvVZ2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:07"]},"IP":{"Case":"Some","Fields":["192.42.116.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tahm"]},"Identity":{"Case":"Some","Fields":["DdOB5mHMi5ypvdRQPj05PgijUbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVQo08Fr7oa/G+JX2koPaeCUZWLEwIuUUGuyZwe/TmQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:18"]},"IP":{"Case":"Some","Fields":["37.120.190.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:b628::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["avdjusko"]},"Identity":{"Case":"Some","Fields":["DdBO8LCBu/3jCC1OzIpj/QAi/K8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mz5zmZ+vGyCvr2A9mWoSB0U3foI1rllqsrGl17UdAEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:59"]},"IP":{"Case":"Some","Fields":["141.255.161.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay28at5443"]},"Identity":{"Case":"Some","Fields":["DbqJGnCuldStd1k6k25sBKvy584"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JZ2/Lrkg87cb3FKPf1hiaP6aYfJpotg6xOrPib0xzCU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:10"]},"IP":{"Case":"Some","Fields":["140.78.100.28"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI13"]},"Identity":{"Case":"Some","Fields":["DZZ+rOQkSKCOJENm33U7v/YR6zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T59Ii6mbIBGcTOEkqmErmydiVV5MndQ4hjObDkHVRTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:31"]},"IP":{"Case":"Some","Fields":["171.25.193.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["DZYhcPuzg36F4jFO6qxJlmoVPzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wK7vY+SDj3oNBVFtjYwwg4fNhgOYMCHcb7tZomfT6CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:22"]},"IP":{"Case":"Some","Fields":["51.158.230.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Starlight"]},"Identity":{"Case":"Some","Fields":["DYh3OS8v9a2NjlvEOAh/Au+XuQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0PSgGCdB3CNMPzKda1pN5x7dl/Tjh7k8TP56T5P+Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:19"]},"IP":{"Case":"Some","Fields":["58.107.88.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoooseMoose"]},"Identity":{"Case":"Some","Fields":["DYO4pZN/aTjHTzJsIcIZWfOV6CU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HAhsASkQZe6Lw8/u7V6ceyUqQm8mCfcJW9cPsVfSDas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["206.174.119.65"]},"OnionRouterPort":{"Case":"Some","Fields":[51021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["DXZhoz65ykS+wxCdvsf5xeir+wI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7O7IQOup7/k3koZmHWFtAVmfEl3fe2L9smAN5hnBW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:51"]},"IP":{"Case":"Some","Fields":["5.45.99.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:683:3805:33ff:fe78:a676]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["martina"]},"Identity":{"Case":"Some","Fields":["DW4lvYxUAXjDCe4qhMenRJY2DW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nks7uM9Ey4/WrLT/C4wEhFjuamao7psFzVeZKm2gzf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:51"]},"IP":{"Case":"Some","Fields":["37.247.55.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:dcc0:dead:a728::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["DWyCNszY6ovFn+8Y06/1l0kGHlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lf+j/jhuppKZZrtECaIUVWa7HwNKquiNpYmB2qdw9uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:23"]},"IP":{"Case":"Some","Fields":["23.128.248.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::61]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toothblade"]},"Identity":{"Case":"Some","Fields":["DWbAWazLQBCLTgq8vxyE414koyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9QyfUrmX5rR3nzsWpR4XirLa09OjjCKdeBffPW4piXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:13"]},"IP":{"Case":"Some","Fields":["202.157.187.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1128"]},"Identity":{"Case":"Some","Fields":["DVqnwMU7ZevpzjpAk8uvIxnEUnE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b28vfj1L6F5TXL737zr2K7SNmCjks1+EFWVt6u2fGf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:30:21"]},"IP":{"Case":"Some","Fields":["185.220.101.128"]},"OnionRouterPort":{"Case":"Some","Fields":[11128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::128]:1128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e3"]},"Identity":{"Case":"Some","Fields":["DS3iQq2g7XcyXjruOp2MXNB8LPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LrpNBzpB+z9MrNlNUYY5yK24f4QWc+FReNDRsZTGtUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:47"]},"IP":{"Case":"Some","Fields":["195.176.3.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor01"]},"Identity":{"Case":"Some","Fields":["DS1LHSdGiAa7Ht+wJxXu6R4auU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+tRkWgaPv+v8L5pkWwIiF2FdYQc41TJv+wl0t62tUDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:16"]},"IP":{"Case":"Some","Fields":["51.254.96.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3100::30dc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StopWarinUkraineNa2"]},"Identity":{"Case":"Some","Fields":["DSt6ypr0VIZWWUVPgwK/tkJKNGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qkEx8Q+JqXQunuHGn70scV1U/MuDwolsJDlzmTCW2j8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:04"]},"IP":{"Case":"Some","Fields":["51.68.152.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DRL9h4IPrZz7JneIoDzblkvTL7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CHpxEEgqwiNz4jDNAx5m0kc1EcDwvpcyDc2cmk1FZYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:00"]},"IP":{"Case":"Some","Fields":["185.213.175.43"]},"OnionRouterPort":{"Case":"Some","Fields":[2020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:4cf9::1]:2020"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["sellerie"]},"Identity":{"Case":"Some","Fields":["DRLY5y3tme4xuwxXeJNSvtDO7v8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gn+MDWGCD+xKYpBhGPemes9UoFr3/LDRwTinpgk1yd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:47"]},"IP":{"Case":"Some","Fields":["109.70.100.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oli"]},"Identity":{"Case":"Some","Fields":["DQkYWvWQ4pQ6lO805L48Jl2JHcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["duWN9i78hENHxue9W5jhNnfU/Ajhq7WlWo9NO731sH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:01"]},"IP":{"Case":"Some","Fields":["188.93.140.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mef"]},"Identity":{"Case":"Some","Fields":["DPw8AT48SVh4Q3lhBsXjrQk/Vf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yM4DeCYpOlcRTjUUg+qQDIsVSDohPC++IjKxLs+ly68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:48"]},"IP":{"Case":"Some","Fields":["94.23.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:7b9e::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["comedy"]},"Identity":{"Case":"Some","Fields":["DPLwf/BYHrvM3yCeZVaUNYqY2BY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y8mBYWaUrJxqYf6JWVmN+gKCaVZ8CHtC7K1C6Zn/o/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:52"]},"IP":{"Case":"Some","Fields":["185.225.17.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCtorrelay2PL"]},"Identity":{"Case":"Some","Fields":["DOYgGcUmE3KQVQFXQDlzf0xxc7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sowVZ/ehG6sLjeViPMnu9IxFDlcDBgxsmVBsQPrTPHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:46"]},"IP":{"Case":"Some","Fields":["45.138.16.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Route66"]},"Identity":{"Case":"Some","Fields":["DOO3Pd/5L/ZlOpx/kAOjK7bCNk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MBXqpMEp/3rPYXvIGgMrglr+ZR1Gg5BMmVLJVmSWdag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:44"]},"IP":{"Case":"Some","Fields":["46.9.42.110"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLoneGunmen"]},"Identity":{"Case":"Some","Fields":["DNz7C24VAOV73X8kBUPrrvgcEco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gi4kgtjT+GRt8bshxNEOI0lJFpNb/SX/aeTwQOZpasE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:30"]},"IP":{"Case":"Some","Fields":["213.163.70.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eita"]},"Identity":{"Case":"Some","Fields":["DNyP3YpIcnHey3kcDUZYXxa8jxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4p6CEyaUHOheToLc3lMXTjYEL7uRH9qzPKNMWCwrnxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:46"]},"IP":{"Case":"Some","Fields":["185.26.127.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc2:45:216:3eff:fe42:b953]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["DNZm+cmkCoz7HmuUZVl6UdOhy/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzOln8KcT504kywy8s9f9jm5urJ7UJsGwDmRYuC+eNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:03"]},"IP":{"Case":"Some","Fields":["5.45.96.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:669:582f:2eff:fea5:9474]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WurstRelay"]},"Identity":{"Case":"Some","Fields":["DMkmSDbvAUB7STTQa2zVN9RBpio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4JhVLa+8RI4/NkF60FRKI9z4rnhDtuA0eOFNeJzp5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:55:26"]},"IP":{"Case":"Some","Fields":["37.120.165.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BESTIOMONDE"]},"Identity":{"Case":"Some","Fields":["DLw/xsyGPszzZ2FtVJXlOoYTtcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X9HgdtjePhU+5pYoiCNn8lh0mHbLxrOooI6yr150OHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:29"]},"IP":{"Case":"Some","Fields":["172.105.242.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:fede:8f5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mgvx"]},"Identity":{"Case":"Some","Fields":["DK//5HDoivFW1nULYWmVs3kPJO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vg16Ft3oI3ptm/jXtpW+cvDjM/7TJsP2cHtEhRw5NTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:00"]},"IP":{"Case":"Some","Fields":["86.123.52.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSecondRelay"]},"Identity":{"Case":"Some","Fields":["DK35ZQvm88tqCfKdi5ElDZPdkeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TBslGwiok/PXPz2zuN+QWX8YVKjxEoqYW5e3pHHXGi0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:31"]},"IP":{"Case":"Some","Fields":["107.189.10.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Polyphemus"]},"Identity":{"Case":"Some","Fields":["DKvtkVnx5L6Ch59aNO2Nc0npMb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6NpTrmg0Tw3+psEe7LDl4xtMvTVubYaP7hZ55Iu9y8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:45"]},"IP":{"Case":"Some","Fields":["198.251.84.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f174::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Turquoise"]},"Identity":{"Case":"Some","Fields":["DKmcOIhvRsl5JIJ7fj66LBAfCuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orJhXsZ1vvH9sEXI5PK1kM2WC2X9ECPGtrrGzRis05A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:05"]},"IP":{"Case":"Some","Fields":["37.120.244.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM02"]},"Identity":{"Case":"Some","Fields":["DKmK22GLTYI8y+HfZgLZTa/hHNY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M1kOtiOQSrI/oQTExsoNvvBzluC3Hj+ZZKSYyPeGALY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:32"]},"IP":{"Case":"Some","Fields":["185.239.222.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lodrich2"]},"Identity":{"Case":"Some","Fields":["DKP02VvPJJZPxGI1iKPxfi7iFt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BpImpnCIzTSbJOAEUS9i6YNzpqxq7v2UQ6/mrbmiG7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:17"]},"IP":{"Case":"Some","Fields":["85.195.253.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":{"Case":"Some","Fields":["[2a02:168:8235:0:44bd:c9ff:fe2e:3165]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1179"]},"Identity":{"Case":"Some","Fields":["DKNnfc9DFEA84UiFnuVVP5rf1m4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ly+z6zEjarWznKKcGi8mxw0F7qpfw42YTryDZeN6tok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:31"]},"IP":{"Case":"Some","Fields":["185.220.101.179"]},"OnionRouterPort":{"Case":"Some","Fields":[11179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::179]:11179"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber19"]},"Identity":{"Case":"Some","Fields":["DKG2vJBuXdb0z+MitL7+ehfULVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["le3qx/KTwqbZkj9rfXIxp2+SZqzsZQZc3g3Y8BwHUzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:40"]},"IP":{"Case":"Some","Fields":["185.220.101.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::10]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsaPwned"]},"Identity":{"Case":"Some","Fields":["DJs8aGQhxajCC6oNc2nNkp9DoXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Ykvn6pfzjOPaX2IkpP9pzV+KtcarB2naGbYoPsU9js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:17"]},"IP":{"Case":"Some","Fields":["80.244.243.158"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4d88:1ffa:c8::4:158]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EyeBtoR"]},"Identity":{"Case":"Some","Fields":["DJaFOxmbmd7Q3FajcxXOig+Nwr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+kq5lyTBcas0u9mYQqzKSHSWPidOFW+ASncDqqeqsbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:22"]},"IP":{"Case":"Some","Fields":["89.212.41.199"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sometornode486"]},"Identity":{"Case":"Some","Fields":["DJAkkfV3jmURE+Op1h/bunsXuPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dUTqGNK4tZGtpoQaeFit2RZcsMrIpar+2U3uiGmhN0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:08"]},"IP":{"Case":"Some","Fields":["91.41.211.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DI2P8Vo7WK5KAZEFxQEw3Rz48b8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GkaGxQr41GIbcrra1dbyQv2dV+oUf+0TdMsYET1fvYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:44"]},"IP":{"Case":"Some","Fields":["68.104.31.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doppelganger"]},"Identity":{"Case":"Some","Fields":["DIpJ/mK3x97WS3xqlB71JA5PP3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vMMSSOEWYnfgBD92PvzEK2F5FLVccnZolrWDIlJgL18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:52"]},"IP":{"Case":"Some","Fields":["95.217.5.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:54f8::1]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oignon"]},"Identity":{"Case":"Some","Fields":["DHsrCS8FJrx/wtiya/AwdnZeSso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cnTUeIft8P56WJKMcOX0/QP2V4HxdcL2cNfSwi0x9mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:05"]},"IP":{"Case":"Some","Fields":["142.188.85.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bruxa"]},"Identity":{"Case":"Some","Fields":["DFz9fMMCUVVaw6iy+H5SNDBHf7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXHzxIZLJrqljoDiUUFGYPdpl3EhRn6+GeeOJflA7JU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:33"]},"IP":{"Case":"Some","Fields":["23.250.14.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird32"]},"Identity":{"Case":"Some","Fields":["DEdbpNOqPCibcW+VlUytYW5QxOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CmWhG1vuzRpK0qx/2PR1Dux4elgC8QzUmOhon6nNGvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:33"]},"IP":{"Case":"Some","Fields":["81.7.18.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2eee]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HORUS1"]},"Identity":{"Case":"Some","Fields":["DD1eGePHW1Bcis0m+J3KLflwVT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOrfVlxt7VFQ980HmzY8PU+Wd/KYk9oFa/29L1uCIio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:14"]},"IP":{"Case":"Some","Fields":["65.108.3.114"]},"OnionRouterPort":{"Case":"Some","Fields":[1066]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6a:528d::a]:1066"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rem023"]},"Identity":{"Case":"Some","Fields":["DDWZB57yHEmUrW3ekfcqSPFuipg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fi17AaNkij2+gjZ07m1l5rU7/j3tBVyjL0P8IfQvYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:42"]},"IP":{"Case":"Some","Fields":["217.78.28.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9451]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp0"]},"Identity":{"Case":"Some","Fields":["DDI1GR/Klyx0V0d6vCB6n/7IGMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Af63K/FlUrEneHAPcXf9QhCUpXWky43IfjGpICMn1CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:56"]},"IP":{"Case":"Some","Fields":["185.220.103.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libel"]},"Identity":{"Case":"Some","Fields":["DAOfNcLkDctxzYoH6Xx/13h9QtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r8KBubmG+yTfaBJfNnIBz3ASKpZYruEZh8/ZahbHU1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:04"]},"IP":{"Case":"Some","Fields":["5.200.21.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x766c6164"]},"Identity":{"Case":"Some","Fields":["C/YG3oNtTHlMr/fKeHIPjIdmCZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXvawqQnwS0Pr5tIPVrjt15cgxG3HQ+SUh7JcXOj1wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:25"]},"IP":{"Case":"Some","Fields":["86.127.196.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dagoth"]},"Identity":{"Case":"Some","Fields":["C+yGDEX2nwRwhN/q+3561ooGJ4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1dTlcxpCfq2OBbThANJsVjSBn63zqlMHw4HuAfqcCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:00"]},"IP":{"Case":"Some","Fields":["174.52.254.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk6b"]},"Identity":{"Case":"Some","Fields":["C+LGyP3Llq9lgD087kkhTWGfxUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EUOa5eaTSGDFKIkq2LbiFNfXXKnzDWd4WINGXy0HZxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:22"]},"IP":{"Case":"Some","Fields":["62.141.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:32:4104:104:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quark"]},"Identity":{"Case":"Some","Fields":["C9dExGdP+2DNHypuh3sC975FWLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DoWwYgUUTbXfwfvQMi5usILTylWbtiC9G3NMf/DLK+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:47"]},"IP":{"Case":"Some","Fields":["178.63.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:121:12b3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev1"]},"Identity":{"Case":"Some","Fields":["C8i6Msw8sPWY4MknePfAlG37zpE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7jMHI9XVnkkdaXEVZUxu8kaSYfQEmYMUmO7jFN9daPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:16"]},"IP":{"Case":"Some","Fields":["87.118.116.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:3132:102:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BerkeleyFiberGuard"]},"Identity":{"Case":"Some","Fields":["C8a3FzJWyod6pyqLbDWcnim+ccY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["scO/lJTMQz9IHPaN1OErgIRnh8fQvcOSkhM4GgX69a4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:47"]},"IP":{"Case":"Some","Fields":["135.180.40.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokeneye"]},"Identity":{"Case":"Some","Fields":["C7YTYxrqffjGs0y9GJJdGmK7xQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eE5H4Gwl9ZqiupKtuurduwoDv2R+fbI0nDg6fPs3pW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:22"]},"IP":{"Case":"Some","Fields":["179.43.145.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Albis"]},"Identity":{"Case":"Some","Fields":["C63ZUQRAyb86co8stjCDb/mBQrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3mwxNGNbavnLyIf1UxJv/e2PaYzGvawLJ8AQ3InzrJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:57"]},"IP":{"Case":"Some","Fields":["138.59.18.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tdxchg"]},"Identity":{"Case":"Some","Fields":["C6MKPRG3P5XRRHzJs1vl8GgdWhw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+oVN6+WNc4GymUj+qgGDUaesV1nN1y40Y8OBfIAopI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:05"]},"IP":{"Case":"Some","Fields":["207.180.192.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:8686::66]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber27"]},"Identity":{"Case":"Some","Fields":["C6HI8mr60/rvO2oij5c4LRFQJ7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zospiA9gNYuHB7e4aw5iyz9wAeghvOYGTg8y1u5xNSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:51"]},"IP":{"Case":"Some","Fields":["185.220.101.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::14]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4oobeivanai"]},"Identity":{"Case":"Some","Fields":["C6FWB++dAPRWTJMSeKaG5LwBwtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pxfPI9Q/fdn3vtHWCbDblwrsOw14FKy6cEb3fQftE6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:53"]},"IP":{"Case":"Some","Fields":["199.48.93.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer47"]},"Identity":{"Case":"Some","Fields":["C4pVefQwUSFOKIVJJCBSA6gB5Qo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iD7e9JUSuxWi4dM3B/Edc4/yUEI0gwKWUTKd7NcVVwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:19"]},"IP":{"Case":"Some","Fields":["173.208.190.12"]},"OnionRouterPort":{"Case":"Some","Fields":[7162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["purplewineglass"]},"Identity":{"Case":"Some","Fields":["C4a7/Vz66AhnChaqd9dbekBsqHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyArVT+7UAmsEm2iiMvEKRXnJwrtZsJ1W5s/KMfqBBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:47"]},"IP":{"Case":"Some","Fields":["93.42.106.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission04"]},"Identity":{"Case":"Some","Fields":["C4Qctw+e0f0DIsK6LrDYBCDYfPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkICvLGwC5f74n0P3J+vtn69KI4OR3zmbhB3H7Pj7hc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:43"]},"IP":{"Case":"Some","Fields":["149.56.94.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionDAOContributor"]},"Identity":{"Case":"Some","Fields":["C3eHIu5h4cNfWUL3uudZj1PftZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M18iskLx2xUFvMppZ21ZbcV+aUbWJ6fhsrSEZ9xa7mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:51"]},"IP":{"Case":"Some","Fields":["5.255.99.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:ad97::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fabmann"]},"Identity":{"Case":"Some","Fields":["C3UXijjRNQGowfIfBsiS1pWhvos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Z9i3742S3v6ZwtPzXcStuwsm7tIYlx0iGyxVhK4FGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:14"]},"IP":{"Case":"Some","Fields":["213.47.199.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute08"]},"Identity":{"Case":"Some","Fields":["C15ecP/qnH+f/RO44WkWpgjz6es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A8o/3tSQiweh2xB/2wHfmy9s2ok0zQ2wxPmirkZI810"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:59"]},"IP":{"Case":"Some","Fields":["162.247.74.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["C1vHazvnVTsin9PnPyau1Bwx3Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNDSbu6Qv7WEeCVggsetm4QviaScr9HpxUEKOcTfhAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:09"]},"IP":{"Case":"Some","Fields":["188.68.42.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChuckNorris"]},"Identity":{"Case":"Some","Fields":["C1fxa/lkd4jNZ78EYHpfaonMuFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWxxQOQUeeUFIw7lBzSqaYAAELeRY8ImzVivhrLtz3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:24"]},"IP":{"Case":"Some","Fields":["116.202.169.25"]},"OnionRouterPort":{"Case":"Some","Fields":[3443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poopypants5"]},"Identity":{"Case":"Some","Fields":["C1fsS1+DlXx6y+juWrp67qfOHWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7psUGCKyDhytWofrlhOIDa7U4psx+dNIx8iH3T4Slb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:37"]},"IP":{"Case":"Some","Fields":["168.235.111.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORro"]},"Identity":{"Case":"Some","Fields":["C1VZQNN9yElyiEHAspAHThob3Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J/nnUofhGosLxEzJJAkyWv7doIg0uv3cnDLj3XdOE2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:07"]},"IP":{"Case":"Some","Fields":["188.138.75.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l0z3rzb3d4m3d"]},"Identity":{"Case":"Some","Fields":["C1O/kZuaAe1i7RDlEpKspQ3bEOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jN1YnDCKC5NLzrVPGgkCNQ2bd0vwJmVIlAMczFeh/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:42"]},"IP":{"Case":"Some","Fields":["65.108.253.128"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:9e93::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ranlvor"]},"Identity":{"Case":"Some","Fields":["C0U3WizoBl6KZJ1SzDXznRKHRag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggJpuFBLhA8VPEbjdF4d2QlwFkLnxUueY/tqAh4XzKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:22"]},"IP":{"Case":"Some","Fields":["95.216.27.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:1b96:2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnarkyRelay"]},"Identity":{"Case":"Some","Fields":["CyYNZqHupbxbWkvjIHH3Xw9dk4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ls8pDt5BpG2IZo6hCrfHKCIxKBEAPUrBDUDRr5+L4EM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:30"]},"IP":{"Case":"Some","Fields":["75.172.18.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CvmCzHGgHZXolZ12PQ7A5abGEkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqHus1WnvEN5CyN8ErcCZY2Cihcyg5N8QVLD+XrNwEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:01"]},"IP":{"Case":"Some","Fields":["188.68.36.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CvkChdaz7MUqv6PLMUBN9vr5MTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTdgMstremduBM/q0ohsZWX4mgv4Pz70u+U14MJRxAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:13"]},"IP":{"Case":"Some","Fields":["37.191.201.85"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe01:344d]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyexit"]},"Identity":{"Case":"Some","Fields":["CvOZQK+WjP2iv3pgHvMwTgb0S7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esyHJu4n2UIEiTxZeP+L1MGwjuBcEjfHVkRbiXQUYfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:17"]},"IP":{"Case":"Some","Fields":["185.170.114.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:a68:58bb:1aff:fe4e:768f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scylding"]},"Identity":{"Case":"Some","Fields":["CuUcD6BtAyf9VIIOwcokqgjt5ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sntJGlhWSbVyKOcGL2mPF5xiK83iFH2j5U5DkMvx91E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:28"]},"IP":{"Case":"Some","Fields":["50.250.14.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor7"]},"Identity":{"Case":"Some","Fields":["CuJeJhILaGb1SKD8zwh6H3ayrU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xIco5Jk09CUeCchTPxUThyDLOenzNFb4CJn1Qkydzz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:18"]},"IP":{"Case":"Some","Fields":["31.133.0.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4401:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanaheim"]},"Identity":{"Case":"Some","Fields":["Ct9JgqYjHs1tBBcENb+0wOTK31s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8+nWBOKYApMLXk2K7EJWxvuu+RrFUTmJO9iwTHycRfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:26"]},"IP":{"Case":"Some","Fields":["173.69.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PieroV"]},"Identity":{"Case":"Some","Fields":["CsPIa8nKKlDHdi70KrxtN1daz/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jlJMalSyMIwLgwy5pG7kKbQbhYtVG4E90+52ShUJgpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:17"]},"IP":{"Case":"Some","Fields":["164.132.226.30"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3100::7fda]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinnacle"]},"Identity":{"Case":"Some","Fields":["Crwev/UMilgnmtB/vXPhg/ngC4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ETaLUcf3SMTEQJl76nBZ7+b8W9B23zi646dhENbZh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:21"]},"IP":{"Case":"Some","Fields":["5.252.178.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Cn3kz1/kngA0VT1xb8q7mtXteSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+SOW7hkhKmiC2VnUrU6RM3kFgv/tjRl+3M5sTBIQMRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["23.94.220.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CnbAoKch3bwyS3Ba2/yV/YBq6FU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ejd0FVOzMmsbZEW24i0FxkMHrAVX+SwDIy4qE4tndyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:52"]},"IP":{"Case":"Some","Fields":["188.68.50.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CnQcesH6fnLtnDaEscO34barTM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U2mGw00WfaQE9vjtyIFFzA7GfeMyn7UvH9alag/zu1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:10"]},"IP":{"Case":"Some","Fields":["82.160.220.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sikrelay"]},"Identity":{"Case":"Some","Fields":["CnQTBoAYrd5RSmipGkjIbCfvZKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQa7Et3pnbk8sJCAiRS6wqh7wcteLRWLEbZCItybvhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:10"]},"IP":{"Case":"Some","Fields":["162.251.116.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notGCHQ"]},"Identity":{"Case":"Some","Fields":["Cm+43lwbYxEXr5RESq/oUACBOC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLU4pyURe+r+QnAs7e1r1Wh563PT2ee+r9OSz4r4IXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:14"]},"IP":{"Case":"Some","Fields":["77.68.9.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arighttosurf"]},"Identity":{"Case":"Some","Fields":["CmABseOp9TZb08KYi9abuOrXEok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btsOa94vjsjLcVKH41PtodsU1Xd8sFMbPrNfSCyzJLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:40"]},"IP":{"Case":"Some","Fields":["45.83.234.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1854:1::face]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EatErgot"]},"Identity":{"Case":"Some","Fields":["ClaYW73bX9H6qMkTPHEVlhqmw3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKkedpvZC/HKbDCsrQOLgbCsnQGxgZ3lT8AAmMBM7HQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:08"]},"IP":{"Case":"Some","Fields":["193.218.118.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashEel"]},"Identity":{"Case":"Some","Fields":["ClAA5f8pd+DSNrn1tHWQ2IiElN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OYbVBf3cqqIugHJ7WKs1rkylsD9RAuQd2U1m/M2ftH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:48"]},"IP":{"Case":"Some","Fields":["130.61.125.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv21"]},"Identity":{"Case":"Some","Fields":["CjujZI5Tpivc9PSdV2KAOYGLjmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sux8cSjXa8l8RcAQpFNR/Pvc6BGSWp1X/gtCwxTtCV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:28"]},"IP":{"Case":"Some","Fields":["45.62.224.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CjqvUwdH1wNNv4jFGAM6IoJ+PEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i3fKr6Nrm7HoeMKpvpP45Sa90Wmt92s1HrTKF45G1o4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:18"]},"IP":{"Case":"Some","Fields":["5.45.103.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:5:c437:17ff:feca:57d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipca"]},"Identity":{"Case":"Some","Fields":["CiNmmAooQtdw744Tan2hSHY2BEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jb+ULzEDUkYOKPp0KAhglISru7b9Rb01Mkqc8gDK+h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:23"]},"IP":{"Case":"Some","Fields":["185.220.102.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::242]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4tahfahce"]},"Identity":{"Case":"Some","Fields":["CiFRwEkrihf9A+1AWYYnpwJ645s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["usTAOv4QNHA+7vpNomeyg+Q+qoUb83dgFpkQFCtsqz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:38"]},"IP":{"Case":"Some","Fields":["63.227.116.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingpins2"]},"Identity":{"Case":"Some","Fields":["Ch7Mt98CckkqTzf7V9wPn0KnfXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K3xHo6Jx1wrYwnCK95ADQrce6ApDDLoAl61FKPloESc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:21"]},"IP":{"Case":"Some","Fields":["45.58.156.77"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anaconda2"]},"Identity":{"Case":"Some","Fields":["ChdUWTw9v1tbNcBNYI438oJWs18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gzz9v2r1h8/BruwVUo8Ffr6CuvwSjz6zLHOs94QsXks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:02"]},"IP":{"Case":"Some","Fields":["83.0.60.229"]},"OnionRouterPort":{"Case":"Some","Fields":[1315]},"DirectoryPort":{"Case":"Some","Fields":[1316]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luxvptorex"]},"Identity":{"Case":"Some","Fields":["ChHHVGoTMkEtHr0TvUw9amZE1+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DfXzgxXbycMDae9LrOiUeesKgR1sGSBrsMfzIGFTXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:55"]},"IP":{"Case":"Some","Fields":["107.189.30.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["portnoy"]},"Identity":{"Case":"Some","Fields":["CgwB3QBE5wMY2ePaXxJaCQacV8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ctqXG2EgoK2FFoJxzQp17nNyNhnHMjt9DChp2X4y+0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:46"]},"IP":{"Case":"Some","Fields":["185.198.26.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:bdc7:100:16::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorxzontochoRelay"]},"Identity":{"Case":"Some","Fields":["CfhXLWiR1hrpt/AjXrfrR4KRYzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32uf1eTm+vVvBcH7xuZwmMxVE/BAZKUPrumcZM3v4tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:05"]},"IP":{"Case":"Some","Fields":["137.220.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:b002:8f3:5400:4ff:fe23:18a4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["CfZOAPNMiPYEFj8k03vq+SRXAuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zPfP2Er3M9yzMIJ+QMUbe6jJFulEhf16nFWm+dEjVu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:54"]},"IP":{"Case":"Some","Fields":["98.115.87.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spiritbomb"]},"Identity":{"Case":"Some","Fields":["CfSaSs8e/EMAGIoCSdFJ6grxChw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tq+m4/PGX5eA9e/Eu22QyUjsR+3yvG0E6CRO6fc4wPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:21"]},"IP":{"Case":"Some","Fields":["79.230.237.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["CfGTZYfVqCq815sRWZwETnLBOEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uKPks/3HC0PVreZduAd9jz2nvBO1I0poGSTO56Ii2Cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:39"]},"IP":{"Case":"Some","Fields":["185.163.45.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GomasyDotJP"]},"Identity":{"Case":"Some","Fields":["CeEHsYGHGWdk/4zIdOIkfOQRtQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DOWijrO0/RD7xxE/eKT1fy21v3ONTax0fKs+zUYKT9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:00"]},"IP":{"Case":"Some","Fields":["139.162.127.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:92ff:fe5e:9635]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node2"]},"Identity":{"Case":"Some","Fields":["CdIimpWJAdklGfqO6T/7FIGC2po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hGebmWxha6e15MTf+NUq2yzIhzoU3PZwKtXP7CZrsxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:02"]},"IP":{"Case":"Some","Fields":["141.147.33.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:10fd:ac01:a751:7a6f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Cc4a8/ty5z3+bvX698gLAbjGIoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNW9q8gqbOEZsy6wevAclpor1heUFG2H7nZo8R+T82U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:58"]},"IP":{"Case":"Some","Fields":["103.4.153.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CcoZV+wGcQRNrS7qKCo0j/19Jx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P9EAoZZ1ix1EI9K6+lRvBXmsw3v++2y9iNUa2KElYyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:04"]},"IP":{"Case":"Some","Fields":["185.194.141.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiebelfoo2"]},"Identity":{"Case":"Some","Fields":["Cb/mo2LSzkNcRfmbVhcbbaSG0PE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tA147W2kNh3jLw9FI0jyYfZ1zlLJLWb3/44dPDBEuoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:54:37"]},"IP":{"Case":"Some","Fields":["89.58.33.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:d6f:3855:34ff:fe06:ba9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Ca9celmFLvRP9W0wwB1fQS/Rl4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["na29upe5xKvS9Sus2RRGtgkneDG6IkyrW7cTUomxnic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:09"]},"IP":{"Case":"Some","Fields":["74.208.182.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Deepsky"]},"Identity":{"Case":"Some","Fields":["CacOOW3pP1TUVBu7Dsjisjdh808"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyMt9cN0kLAD05CF5o+7HbI7gsRYNpRFfMBolhbWNMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:43:41"]},"IP":{"Case":"Some","Fields":["109.228.53.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:cd::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["martzeladidnt"]},"Identity":{"Case":"Some","Fields":["CZXLBmVbStUGifSrMDdkzXF8JY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TE9oxaadUMuyH+OWTO5r8mdcMqiSd+RgfQqqWLESe+I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:25"]},"IP":{"Case":"Some","Fields":["82.116.120.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CY+YU4ohoWMy6MS3JDBcKjSWpGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3Y1oq5xJsJprbEX2LlBfWl7nmMyDx279+C7Qy5jL4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:58"]},"IP":{"Case":"Some","Fields":["185.194.142.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lrjstorrelay02"]},"Identity":{"Case":"Some","Fields":["CY73Rk/VXkojIekFeMjz7We1OkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JRQqfJtUwkBxqBslmvBiqiCrvAonGZcHa7cxUUimtUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:26"]},"IP":{"Case":"Some","Fields":["194.163.147.235"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tourette"]},"Identity":{"Case":"Some","Fields":["CY2c91aNJ6goj6S7OBmpmRMxXW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uK2e1eHbS5VtzBpjx5FIW9yRXksHP+cj4Pm8QnSHxhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:42"]},"IP":{"Case":"Some","Fields":["91.47.203.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornasol"]},"Identity":{"Case":"Some","Fields":["CYs0V6ujGtZaOvR/YbYj41s/qy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v2mjqATIwlYJGt4IU73kUjM4s51EYro9WXSKs6mz368"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:37"]},"IP":{"Case":"Some","Fields":["178.199.50.198"]},"OnionRouterPort":{"Case":"Some","Fields":[26709]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorWedos"]},"Identity":{"Case":"Some","Fields":["CYdEqB1cycMZKhmX1MrG9nkImbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xnSn2jMQqhr3T94FfYsZXaixJaaYpd23CJVU91P40Pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:50"]},"IP":{"Case":"Some","Fields":["89.221.212.118"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:176::1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalsAU"]},"Identity":{"Case":"Some","Fields":["CX2DkKmY++vb2oC6x9hviuYG5KY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oZu5hM/EiT6tj20eGsSOSuhpSez2tVn29WX5oqzjJtA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:58"]},"IP":{"Case":"Some","Fields":["93.95.231.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["collyum"]},"Identity":{"Case":"Some","Fields":["CWVugepavU45PlZEgo9PtmKHAEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mmGNF8pd6Kz6DOEWPFzcnlEZlMP+hCPYR69mLiuJnjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:48"]},"IP":{"Case":"Some","Fields":["195.189.96.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SevenLayers"]},"Identity":{"Case":"Some","Fields":["CTW6kXj547UMmd1T9yOGX8Ikz6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ka48/2q+e1inubpUenTAU3defgkM7NSgWK+hpFvCUeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:49"]},"IP":{"Case":"Some","Fields":["192.124.250.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt28156"]},"Identity":{"Case":"Some","Fields":["CSpwc1/Mp1PQiM3GC2D3dDCa+sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["81hl1Q3LPU3zmNrCT+/KFBVqwYnSqyP15kXhOnn2JdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:40"]},"IP":{"Case":"Some","Fields":["185.245.60.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bhsdztorrl02"]},"Identity":{"Case":"Some","Fields":["CQuDupWn4tYV1nme/XV94t3H0P4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oYgwCYfbHWAOhZVwti2Kkm9ZEYMPmT9BQx4b8zH0NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:49"]},"IP":{"Case":"Some","Fields":["54.39.234.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mercury"]},"Identity":{"Case":"Some","Fields":["CQl1h10bvlP2/yrcqLpByX27Plk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H4eNGUVmhxHZrPvmW4KiVmmcjcgTjvuxm0YCGVgNObU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:57"]},"IP":{"Case":"Some","Fields":["45.9.168.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:bfc0:0:3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer79"]},"Identity":{"Case":"Some","Fields":["CQey/5Q3bEHLfrBTXYcX/Z8uhLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ld2UdefxCpHJg3jzYNUY6s8Oype1ZFW9zaplaA18ijM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:05"]},"IP":{"Case":"Some","Fields":["95.214.52.156"]},"OnionRouterPort":{"Case":"Some","Fields":[8179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CP4n907Ei012Z+v69lTlFRuZJPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CIDfBhcm3onWeZPjP/oXTEt3FC5dXE7XjoGE6G+NJJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:23"]},"IP":{"Case":"Some","Fields":["217.87.70.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neartAurora"]},"Identity":{"Case":"Some","Fields":["CPRpK2CGJkD2iLhoJrZvMN6nq3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zc4Oy62YY2PKI3jXrKmpJuq57lIdTtekzWux8TIIAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:27"]},"IP":{"Case":"Some","Fields":["51.15.182.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeelTorRelay2"]},"Identity":{"Case":"Some","Fields":["COpUV89m8TrInqdGgkF6YAHcYdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AveEbNlmDCMuxGzfYpkslhERHCsZO63O9BOrdUD8jpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:04"]},"IP":{"Case":"Some","Fields":["97.113.240.90"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yoyobolo"]},"Identity":{"Case":"Some","Fields":["COcV84DwAxOzuZrLENqsel9jgn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zkyHXX2he88kcT2qM7q8BxNDHVEEjEub0eCc9s117cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:39"]},"IP":{"Case":"Some","Fields":["75.184.16.251"]},"OnionRouterPort":{"Case":"Some","Fields":[40932]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynfulRelay"]},"Identity":{"Case":"Some","Fields":["COZAebl9m6mQotysEF+bvDsq4nY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rxvhnBVXceV/CJQeXqvKBPpRaJBFgj8GVDAMRXaIDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:50"]},"IP":{"Case":"Some","Fields":["2.56.98.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:4000:3e:568:446c:e7ff:fe7d:de4f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e4"]},"Identity":{"Case":"Some","Fields":["CM49v9qifbbARKZ3r2jXI1wq/IU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DqRm+lL76X80Lk7j+eMDoiS2nJSDMviXVHmPO0HYq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:41"]},"IP":{"Case":"Some","Fields":["195.176.3.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::20]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lollipop"]},"Identity":{"Case":"Some","Fields":["CM2dQiQFjcl6HydnmlvuVyTExuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCb2Zrh1bBcZVWf3ZiF6J2svu0BCkYGvf0qvM3CAo2o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:01"]},"IP":{"Case":"Some","Fields":["195.123.212.113"]},"OnionRouterPort":{"Case":"Some","Fields":[1357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27ac::120]:1357"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["annatesla"]},"Identity":{"Case":"Some","Fields":["CLSIimVm9rxTY0I4YvSFKUIKufc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZLsebmTVqdoHmLdhDBAk41Q/1R8NJBm8i9XyJjWVNMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:48"]},"IP":{"Case":"Some","Fields":["5.255.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:106:d219::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["IloveTorone1"]},"Identity":{"Case":"Some","Fields":["CKnzS8flib8MeuxaqdLg9sOtTF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/kwx5/N7aoNH/yvp6KT7uxZY3FUqr8GmN472vSCXAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:25"]},"IP":{"Case":"Some","Fields":["45.134.173.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheAdoptee"]},"Identity":{"Case":"Some","Fields":["CJ6JWdOGxNwoP/2itZCmX86FyLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy2Lt/AsYfw9ZlhnJAN6BLl3q1fppMq6wAUuIxb4HWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:13"]},"IP":{"Case":"Some","Fields":["185.112.156.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CIpiN+7Yft6w4eOtCkpBn5Y/B4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LBpTvbyOan8gNLL8by/PTr3NWlCP4VgFlS23bDYb3NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:57"]},"IP":{"Case":"Some","Fields":["176.9.40.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:173:402:267c:d656:b84c:abd6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8lyWARGTU4wesrfy8i"]},"Identity":{"Case":"Some","Fields":["CIJECHQDSvvi+/FkY6KQ8yeOJPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["80Qm+cDLw8155EPxDJ9WVN9u0Lg5OM72Tf6G/RpPHlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:00"]},"IP":{"Case":"Some","Fields":["176.58.121.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe70:e0b8]:9099"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYCROFTsOtherChild"]},"Identity":{"Case":"Some","Fields":["CGH0lm4ZnAup2x2QTbS8hDUI8Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OoUCdUBt7Dgnu1kR3WnAGwrRAShoSoq9tMafsUAora8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:00"]},"IP":{"Case":"Some","Fields":["98.193.69.56"]},"OnionRouterPort":{"Case":"Some","Fields":[32323]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pastly01"]},"Identity":{"Case":"Some","Fields":["CFUny9ZIX9R1rJg/qGg6LZAouqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kHTuyQvXeS+yVQyJ1qfmZHTQK02vCR3to0L9sZ7bSZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:04"]},"IP":{"Case":"Some","Fields":["173.66.161.213"]},"OnionRouterPort":{"Case":"Some","Fields":[8234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyftw"]},"Identity":{"Case":"Some","Fields":["CFCXElTLXbWVkog5O0OOOJSb0H8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cwphiU+uYps+vMDtaJZcxRnZGGVWoUyUT3c363rgNqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:28"]},"IP":{"Case":"Some","Fields":["92.34.220.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["CD9Fnqc0BJ+zvRvkheATrLFpxJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7UL8VeXN2gC6XVGYa0b4/c++mj5U69KjOEW5Tb6UbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:32"]},"IP":{"Case":"Some","Fields":["128.0.64.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NAKAM"]},"Identity":{"Case":"Some","Fields":["CDxSBRFA24r3cL1Ax8iIPv/0yvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCdt5p8rMVcBGBSpAPHnvFvx5C3awUgZFjRc8fc6WfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["212.227.165.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pengy"]},"Identity":{"Case":"Some","Fields":["CDlMSHPIpxvp9TWT+bStaUv825A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPQ2hVvd6jWCe5bayjsy+RyrErUIaE/tcE2T96y7V3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:38"]},"IP":{"Case":"Some","Fields":["185.56.171.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hirelayarty"]},"Identity":{"Case":"Some","Fields":["CDdpHnQa6OK4sMYHwbTt2y5d8Bs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zms5iMZnyeDekWHiQcYzJPTF+zSuqc+q0dq/C3eaV7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:24"]},"IP":{"Case":"Some","Fields":["107.173.167.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheGreatKing"]},"Identity":{"Case":"Some","Fields":["CCTXx/sRfVxqwBWB/XmOZww3yAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qIP37GTWkGoN+S88QAWz7gNCceJ6Qs+lg5W7/9YFus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:34"]},"IP":{"Case":"Some","Fields":["80.66.135.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LDLUEXRp175"]},"Identity":{"Case":"Some","Fields":["CBFMjQP7m+pF6H6xNF1Rv7KwBIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ep6g4uyJGEZ+wrLHQlZX2zm6/zxgS6b0APVbgEJdOb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:10"]},"IP":{"Case":"Some","Fields":["107.189.1.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RiggsOceanlock"]},"Identity":{"Case":"Some","Fields":["B/DmUuTMsKDx6I0ARuyzIuYxjIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LrfCycZfqosOiHK0L9KFMEU/Au8iWQzKgeVQmqcHk5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:51"]},"IP":{"Case":"Some","Fields":["78.138.98.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fav53"]},"Identity":{"Case":"Some","Fields":["B9dy30ZxxAp6yR8iNLzpz18z9PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nqr1IxJC+twR17BjOpEaeI4AIH8zQ1+jndlg6Y9ALxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:51"]},"IP":{"Case":"Some","Fields":["205.185.117.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WolfClay"]},"Identity":{"Case":"Some","Fields":["B8PrvkHfn+hVHfaWQv66cOlU3A8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KG6pZX+YM0cWoBWZUDdXZoR1EQwgGorMLcWeemMsAPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:05:01"]},"IP":{"Case":"Some","Fields":["185.177.151.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgSG"]},"Identity":{"Case":"Some","Fields":["B8EC1rAn5bK5yULj6ULA8k3+5Rs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbH6cfP+pPhfV+XEBwdcMxk/VkaZExzRDg2/IVPlesc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:44"]},"IP":{"Case":"Some","Fields":["139.99.46.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homeplanet"]},"Identity":{"Case":"Some","Fields":["B7j8W2ZxnDVfq/hLT14BMeEn3wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjtWRX/O3MTi9tGvABEjSQDqnBySDS0ahQi9WpRgH7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:21"]},"IP":{"Case":"Some","Fields":["85.91.153.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debiansRelayTor"]},"Identity":{"Case":"Some","Fields":["B7V4qE6Odvp1kVuR4xtuUOf93JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vKZe9iiUhY5kZuRhCe4nSPHy9j9F0c6i1sNUWEGf6m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:43"]},"IP":{"Case":"Some","Fields":["94.16.114.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:900:786f:7fff:fe08:8217]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mymumisthebest"]},"Identity":{"Case":"Some","Fields":["B7NbzPYhHm2XCgFQEvyaLGdoSPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GGowhnLnWH/n+p43/V/CRpGi8jN0WL87y1uu0sdcCWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:06"]},"IP":{"Case":"Some","Fields":["158.174.11.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:28:805:1000::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kramse02"]},"Identity":{"Case":"Some","Fields":["B6z7CAHk909WEPhwtfy7VTnby9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/mYo3zbcMItKEPip+/FAv4s734oIX68vFz2q7tAHJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:45"]},"IP":{"Case":"Some","Fields":["185.129.62.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:d380:0:103::63]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0159"]},"Identity":{"Case":"Some","Fields":["B6KtsHnhRAknAg0jtHtDWMylhag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qlhEiGJaQjdSiYugpzrBITqDnZsFfDqJ+DX8Z/w47mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:31"]},"IP":{"Case":"Some","Fields":["185.220.101.159"]},"OnionRouterPort":{"Case":"Some","Fields":[10159]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::159]:10159"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mistersixt2"]},"Identity":{"Case":"Some","Fields":["B54RfguAhIRkbKdxX1L2/8gx748"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["373IiFmRZS9pjy4G8R263F24NQIR4U0ACMxIE8RpLV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:23"]},"IP":{"Case":"Some","Fields":["88.99.104.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10a:189f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["SingularET"]},"Identity":{"Case":"Some","Fields":["B5BaDYrRwTTTA2hyFAsdset2F3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oziTd6p26D1YVWWmD5Yv+Yj7TZaWG8eCChlLXHJAp+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:43:14"]},"IP":{"Case":"Some","Fields":["185.212.149.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AcrimonyOZ"]},"Identity":{"Case":"Some","Fields":["B4z8yqPfBcLRL+Y2nFqCBZRSgFU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SS9p3PYJSVqcLo4nyBzAarVUN2PazduMcaHAV0uVxKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:16"]},"IP":{"Case":"Some","Fields":["51.161.202.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:1ec::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORpedoSHAdow"]},"Identity":{"Case":"Some","Fields":["B2coktEco3QLalDyebDMykyhyjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ReWupNdtGYxQ3578vLbMOMGiFm6ahkSzgBlxQsCkJTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:27"]},"IP":{"Case":"Some","Fields":["90.92.72.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["B0sgwz1KA0U/sZqFNc3OE1JlilY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gsPn83BWn9anF4f/CfjVO3CgHd2e8c9rX0PIfO8o0pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:51"]},"IP":{"Case":"Some","Fields":["93.99.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5e0:0:2:20c:29ff:fecf:4819]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc02"]},"Identity":{"Case":"Some","Fields":["By4og4VK2gxrD8FJdUTlKdn9g3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xRfKEeFIbFO0F25wpV6QshnfWtQmEeCfyS2AkHntaQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.100.87.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarkstarTor2"]},"Identity":{"Case":"Some","Fields":["ByhxQ4kkK4o0YY81vbR3UlOXSbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6w32p1Q06MD7Fd4W6uS9KCTsia0i495NcebT+6bcXwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:31"]},"IP":{"Case":"Some","Fields":["51.89.45.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:126d::14]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elenore"]},"Identity":{"Case":"Some","Fields":["BxG3IGKKhLFNQhB/uMlU72mbODM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pv8+FAazNz4ND50Y7KWXb5qKD8z+hvI5v0xZQoHzt2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:14"]},"IP":{"Case":"Some","Fields":["81.16.19.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:55:d46::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hyrututu"]},"Identity":{"Case":"Some","Fields":["Bw8Lj9FF6+qXlA4nT6+YSoQa4TI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a+ye8Q0ijujywp2XS4yrl0UQfadaCuNPRWBkyNIYLYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:07"]},"IP":{"Case":"Some","Fields":["46.226.104.191"]},"OnionRouterPort":{"Case":"Some","Fields":[10600]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fef1:a10a]:10600"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["panoptykon"]},"Identity":{"Case":"Some","Fields":["BwsWRQlA8As6HIjBrXHrILbGGnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/H9x3fh7fAkHa1843KixV6yn1qnb4i0BKqMP3DFkztM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:53"]},"IP":{"Case":"Some","Fields":["51.68.155.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["execs2"]},"Identity":{"Case":"Some","Fields":["BwsD62K9eal5S5A/Ojiuu6Jd3vk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddhQQmhD/U968aIjNKHD23SdJFqT1uOPibMYpEGE27s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:37"]},"IP":{"Case":"Some","Fields":["45.58.156.75"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorgodofhunger"]},"Identity":{"Case":"Some","Fields":["BwQGL7mlpWWTYaC49CuItkGaG0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WmDlEHk9DHY6doz38Bs3bqqefhpkyyxCQg3psMP7iFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:07"]},"IP":{"Case":"Some","Fields":["94.130.10.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonbeshaba"]},"Identity":{"Case":"Some","Fields":["BuwsFmnlqBHZZA4HztV4baUMVzc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIWV4hsWw02Hok3MHkGMXej3p8TIyQ7//8w/dQkdDUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:22"]},"IP":{"Case":"Some","Fields":["185.220.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:11::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wien"]},"Identity":{"Case":"Some","Fields":["BuclJrvgQMUcWt+6oHrdmuteH6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s/NbtqPNIlvX6UvuBjvLH+C6Y8k9zRce4NZDPnJVD+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:44"]},"IP":{"Case":"Some","Fields":["94.23.247.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza4"]},"Identity":{"Case":"Some","Fields":["BuHvQMtGNbfIJLZ1fAU09LAf4us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JXIRnKe5GVFdOocgOiXNGzTeNoM58PgL4UIdJP1cvmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:47:54"]},"IP":{"Case":"Some","Fields":["192.9.166.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COSMOPOLIS"]},"Identity":{"Case":"Some","Fields":["BtD7nGhg6Nf7meoxCgFnB6+qcc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1+ytncEpz0x8zYuG/fTyfGU5B5F9aIUAo+4l+A7K+Dg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:54"]},"IP":{"Case":"Some","Fields":["154.57.3.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["r"]},"Identity":{"Case":"Some","Fields":["Brvqpvc3WaF5XrRh050qoWjzBdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uAHJ35O1lSd+qdk+qefYYA3CqhdlM17/T9QgZhIQm3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:18"]},"IP":{"Case":"Some","Fields":["77.68.94.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["BqxSeAafu0rMJUh+1LeCLxwR+JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2idPp4KA48X3J9jLVzFhe6oGGUD4fvD2XRATOnxntkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:23"]},"IP":{"Case":"Some","Fields":["95.214.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EntrecotalaPlancha"]},"Identity":{"Case":"Some","Fields":["BpAyDWVJPhglrHCI6VTm7RIFuIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3HsX3MO1iKwVFrY3ppRbG5JOgP/x9BfDWRsVGaVjZbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:35"]},"IP":{"Case":"Some","Fields":["82.130.171.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paradeiser"]},"Identity":{"Case":"Some","Fields":["BoBOY4PulOg8lFPzmx5STCctbYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+GpLTv5mlOMrcJXJd298FbhAxsS/d9KLhutAUhVppY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:26"]},"IP":{"Case":"Some","Fields":["109.70.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Psyduck"]},"Identity":{"Case":"Some","Fields":["Bm/jxOB6GOpTsoKPdT03iNWNdx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jFNHz9/hg5PT/cVmB4SZ9fOaJ6sOuXcMVpyrQXWOOD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:52"]},"IP":{"Case":"Some","Fields":["102.130.113.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1153"]},"Identity":{"Case":"Some","Fields":["BmzSxJPk33MAsnMer34xdDMmJZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x4OK+MpcgpeZpJFFRJXs08j0+Rq9X8uFv0fv3yEMrVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:56"]},"IP":{"Case":"Some","Fields":["185.220.101.153"]},"OnionRouterPort":{"Case":"Some","Fields":[11153]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::153]:11153"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode3"]},"Identity":{"Case":"Some","Fields":["BmYKIDB+ImYZ7/KpM9JXnnZE34M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwGULQDE13LcqoeBTmFnfC+01O0xV4cw+bcK+7k09f4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:54"]},"IP":{"Case":"Some","Fields":["184.105.146.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::90]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raptorist"]},"Identity":{"Case":"Some","Fields":["BlGGNcPMvHDDEfm830w1lrtzbv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y56oEcjIQcZQQScbLVtmUythaXrAv2isHUBQ1G420ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:52"]},"IP":{"Case":"Some","Fields":["78.132.17.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElectricSheep"]},"Identity":{"Case":"Some","Fields":["BlF2arJ61b96j6jzdFnPxMotI1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aiBY2Z8aIEaw26Q/YabnnxDRMS9EpwiaPUqyKBtbi6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:23"]},"IP":{"Case":"Some","Fields":["158.62.185.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheYOSH"]},"Identity":{"Case":"Some","Fields":["Bk0YPTTey4T3LEM1sMJNHolGqbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S/AsGdPmbBTdVWNw0m87c02kWZ47Cm+d2v5tc5UY78w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:29"]},"IP":{"Case":"Some","Fields":["85.146.92.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0a:716::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WakNETX1"]},"Identity":{"Case":"Some","Fields":["Bkj2lGNs2LnDjSn5oCdl+X7C99E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XjX3CU0pYQljJRo0EY75gDukatU8/pPhihs0lQ3Ckw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:25"]},"IP":{"Case":"Some","Fields":["185.130.47.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e03:3:26::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lakeshoreCrypto007"]},"Identity":{"Case":"Some","Fields":["BkWoCheQnTP6+1VI6KEPgKs45l4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oABa78kJjItr8FmXEYZC7mobF4gDw2xE2Wq4A7/S3lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:12"]},"IP":{"Case":"Some","Fields":["45.41.204.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:e0c:13::7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CloudOasis"]},"Identity":{"Case":"Some","Fields":["Bj0j7Wplzcy/iiqMwjCwnDTwH88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uC35NFshfsjpPbF8tFFl9Hboq8YDyG+C0t7ogW5b4wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:37"]},"IP":{"Case":"Some","Fields":["104.200.17.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fee9:6481]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bgbaeveRelay"]},"Identity":{"Case":"Some","Fields":["BiBACCTmQSKq7NJxwbanD0GDnMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LL6UJgHqkYymxSkaTzMtQE7bRSC4P+mzb8VXaI013kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:01"]},"IP":{"Case":"Some","Fields":["85.191.207.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay1"]},"Identity":{"Case":"Some","Fields":["Bh4ElpMdI6gaK2hckznTaFfdD6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3zo6qcq+wMlIY9zmWxb15+YKpEizBgr3Kmx4qHmyDVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:39"]},"IP":{"Case":"Some","Fields":["163.172.184.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xbHnAiyz"]},"Identity":{"Case":"Some","Fields":["BhdhnBuqJhCr5s54wl926l9VChw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8k1jxPGbQO/nUJT0jJ5d60BZ4cGtFyz48yJsjLYX+z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:03"]},"IP":{"Case":"Some","Fields":["178.17.171.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:28::cb68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1177"]},"Identity":{"Case":"Some","Fields":["BgOlCfceeGuuBpS6NdA7PjklW0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCcbbKiBSMXeGxz/aObvUS+qmms91GSouiuGl9NcfOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:58"]},"IP":{"Case":"Some","Fields":["185.220.101.177"]},"OnionRouterPort":{"Case":"Some","Fields":[11177]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::177]:11177"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l1st3n"]},"Identity":{"Case":"Some","Fields":["Bf/OkYlNpqdM85wMY08ynL8JQj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNNlrkWjUwnd2nkAcoLdB22PUPR53YFGdNuFCiUHOMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:10"]},"IP":{"Case":"Some","Fields":["135.125.250.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:62bd::7465:a380]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelpCensoredOnes"]},"Identity":{"Case":"Some","Fields":["Bf+jnXHaEW92aepO5ToLrqMVun8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["odxVOYQCd982oeZ3A0e8r68pYV0EsLLCqIRN/LJhmpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:55"]},"IP":{"Case":"Some","Fields":["85.93.218.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeUyghur"]},"Identity":{"Case":"Some","Fields":["BfUGKUMFRkbMemVTLOUlmAUmKPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3fGCc8jBi/+IRWgFRy8wpAHKKxTq3Jgo3tAmpNg9RBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:10"]},"IP":{"Case":"Some","Fields":["163.172.211.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taco"]},"Identity":{"Case":"Some","Fields":["Bd27dKq28Z4AMYhwKx5U8jA10GQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqDvMR/IXID/Lo3tWX3dDYIHYCK3LYGZ9tVK32aMC6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:19"]},"IP":{"Case":"Some","Fields":["37.48.120.47"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["madblock"]},"Identity":{"Case":"Some","Fields":["BdAdJDu3ZGi4BnDM+PB/XpKWc20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+27rlkiPT0BJvqJLFpFhQfviIUg+nqnnQLpGhL1yMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:44"]},"IP":{"Case":"Some","Fields":["94.199.217.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["electroncash"]},"Identity":{"Case":"Some","Fields":["BcYhtE72gziJrnt+KgtHZWnEfjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYy/ILJCsGMRkI68zboBYMxzJWhySWRVfmL5ZF1TO/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:20"]},"IP":{"Case":"Some","Fields":["193.135.10.219"]},"OnionRouterPort":{"Case":"Some","Fields":[59999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:136::2]:59999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h3u60M7iPf"]},"Identity":{"Case":"Some","Fields":["BcRtFVSVkWohAhMAa2TMmfuQPNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JiyJE1ktJuTb3/gdRBkOyn+fYLY6l+wHBV885DTPj6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:33"]},"IP":{"Case":"Some","Fields":["85.212.98.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORtuga"]},"Identity":{"Case":"Some","Fields":["BcMsXuFEVODEzYHa4PPcMvcp2ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OAK5yI3p9PAaCkv94F6XNVsEctPBswmsrMCakWC9O6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:13"]},"IP":{"Case":"Some","Fields":["144.76.86.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:192:1318::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ranchiJH"]},"Identity":{"Case":"Some","Fields":["BcKe8BLyChUrBgVzhtWoskUwnQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BPW/l+6TsuQ8VZ88SYgoG+FN1F+dK4qVI2bS8M2D2sQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:43"]},"IP":{"Case":"Some","Fields":["129.154.227.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sonolbellsan"]},"Identity":{"Case":"Some","Fields":["BbFCq0/LwBSCucj2WIsiHC4ZPu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S7EjGeuuDcZDKP+8PxssaCVbL0lgNxtJCHAp9nffpRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:23"]},"IP":{"Case":"Some","Fields":["121.50.43.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1149"]},"Identity":{"Case":"Some","Fields":["BZhR5BB25HyLORKSvw5zvhYA+80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGujj8lVa2TQiBW8V2evfMRMgK/UpKQONqZ6BNPUB3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:16"]},"IP":{"Case":"Some","Fields":["185.220.101.149"]},"OnionRouterPort":{"Case":"Some","Fields":[11149]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::149]:11149"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay938635"]},"Identity":{"Case":"Some","Fields":["BZOhGlwQo/o9xpxyVqgY0pSWHJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5hPLZpzUhloaNCsqi5FL8fCk1eSMS9T/7O9r0erBY0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:52"]},"IP":{"Case":"Some","Fields":["188.154.144.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9847]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["BWgal2eDTZ7am9/k4Vob1zxP388"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ayw1A8dHxV52BG2DWPP47u6H8G1YIjb1MUcqtfEq1uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:42"]},"IP":{"Case":"Some","Fields":["109.236.83.11"]},"OnionRouterPort":{"Case":"Some","Fields":[46810]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4"]},"Identity":{"Case":"Some","Fields":["BVurwJajb0H82hngiFn7HDSrWlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O3/bTUDHpK5Owh+7gWPumP3vPLfzc6f9aHCx79Ta2hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:29"]},"IP":{"Case":"Some","Fields":["193.56.240.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["BVeRDYFy5COnmE8UhEMpLpUkcRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtOkqNb0uQPTGyHp42CFxyrCA+0JSNAa2i0wwrO1mIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:15"]},"IP":{"Case":"Some","Fields":["2.58.56.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KatyPerry"]},"Identity":{"Case":"Some","Fields":["BVMOdR6A4RcS9726B3ZZsvBEfIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ft1Ri6h7s4GsCWyEUHu0cQ5ep3XDpCiISupOUT+DbOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:10"]},"IP":{"Case":"Some","Fields":["174.53.167.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KubaJaKubikula"]},"Identity":{"Case":"Some","Fields":["BVLbSvovKA2iGPzOacSd4LVsDek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3odmqyP0JLP7ZIctpM0/i3IOp2JaC8fDb8oG5vXI0gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:26"]},"IP":{"Case":"Some","Fields":["85.4.8.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:1210:4ea8:200:6d4:c4ff:fe4f:354b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayChu"]},"Identity":{"Case":"Some","Fields":["BUr1rl2kqguB1xVVQq8gQlLLbWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uj4BOZ541IjlFFfiN27y5AsH3gEKyVUSTmJEhbpYaiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:31"]},"IP":{"Case":"Some","Fields":["150.230.20.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c002:b0e:f620:461d:1cc1:fa75]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mesolvarde"]},"Identity":{"Case":"Some","Fields":["BUddlGt0jhIE9NmqRABFddsqPKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yfpe7+wNN5XWbxmEuUt8v6B/ZiBtjnUcxn/EcmaU+E8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:34"]},"IP":{"Case":"Some","Fields":["80.13.139.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb08:8e80:b900:54c5:dbff:fe01:840]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captains1"]},"Identity":{"Case":"Some","Fields":["BUHOni3ajAsdmI+2QNZZFrBoPDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TffB9tuTEs4GcVSgDsyn+ozuPsXaATDaJHM5ClpKkY8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:00"]},"IP":{"Case":"Some","Fields":["45.58.152.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stx74"]},"Identity":{"Case":"Some","Fields":["BUAq7HOFVMUwj7B8polh1TJtXUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3yN+9K8IQPwlLVvGi9GRftxH7pzN8TcHKKMyxONmrR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:00"]},"IP":{"Case":"Some","Fields":["51.75.65.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::291b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLXicebeer01"]},"Identity":{"Case":"Some","Fields":["BR0npO/igy1cnf5c9Y8kSKBbSJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3FIra7IDlA9THrldBOGfKNENO37nv1rCvQV3lqpLtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:42"]},"IP":{"Case":"Some","Fields":["95.214.54.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:365e]:5118"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["icecitadel"]},"Identity":{"Case":"Some","Fields":["BRvubZ3qPC6fIDwfaNaDzNbyrEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8dRjZDh4sGJZp04p6JOx2imBF6Uif+QcA9INGhrzqSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:47:06"]},"IP":{"Case":"Some","Fields":["54.36.174.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow007"]},"Identity":{"Case":"Some","Fields":["BRYIXWysQO1M3O/fxcz2sA3mHe0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEJDEvlufRmVKVWhTZN12sYbTEL9XBCN74+1a1Zng9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:08"]},"IP":{"Case":"Some","Fields":["185.195.71.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ADeafMute"]},"Identity":{"Case":"Some","Fields":["BQ5gebafb58tFX867M/QEblm/z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oGTPpiWA6q/OUo8ljF4naD8pSIZOJ3XN0YmoFrHdt64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:29"]},"IP":{"Case":"Some","Fields":["89.36.78.165"]},"OnionRouterPort":{"Case":"Some","Fields":[54939]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adhoczone"]},"Identity":{"Case":"Some","Fields":["BQp7JsDKymrpo3teNCs9XMVseQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc8up8YYCjZTgcDzGjdmI/VomE8wlH8LWYWgi0p9+hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:21"]},"IP":{"Case":"Some","Fields":["185.206.146.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:5741:0:504::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber57"]},"Identity":{"Case":"Some","Fields":["BQoSRe7Ha3Q4M3uq8Z9KsGZrN18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b9qFEjAbkm/kDxmsWfNe/Md8Dq35E8yNetQO6RB4jS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:30"]},"IP":{"Case":"Some","Fields":["185.220.101.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::29]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dorinne"]},"Identity":{"Case":"Some","Fields":["BO5eGyMSfSajb3HGaBDYiwuAu5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jnwvYUZI3sYwCBq1aRfteG2rkR8JAbeT336DtA8td6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:57"]},"IP":{"Case":"Some","Fields":["91.213.233.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor08"]},"Identity":{"Case":"Some","Fields":["BOO1kl619mxuyBCj13AuDKP51ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noAvgw6wqfVhGKYns2Ic1PGPH4xzlo+QNG21PYhggWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:52"]},"IP":{"Case":"Some","Fields":["95.216.136.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:2e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["takei"]},"Identity":{"Case":"Some","Fields":["BN/gR6zfemYgrKeC+vxe8a5/R1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6ClZTe3zZ2KMHExHEV8sKPArrbyvZjdtPancaSU/UY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:05"]},"IP":{"Case":"Some","Fields":["46.22.212.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange006us2"]},"Identity":{"Case":"Some","Fields":["BNnOqNd4q6EwsBT3WMK8rdMdoF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TIgLB8LdaUZV7XxORlunlIcTvnHWBY/tldOogFc3tfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:32"]},"IP":{"Case":"Some","Fields":["207.244.238.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:2050:8019::1]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MitExtraSwibelePls"]},"Identity":{"Case":"Some","Fields":["BNdF8xvrQH0F6/eziA/MsktWYf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zm2w3sewFzz9k4UkhtcWshyG+IvEvxYQBL0n0FlmY1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:58"]},"IP":{"Case":"Some","Fields":["91.132.145.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aaron0x10c"]},"Identity":{"Case":"Some","Fields":["BMNGi+JHQDR8vMAFNMlA28vKvII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ONQfF/gh/hQ4+e4jcuu0U46pKz0LFIvPq4XAjcvt7/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:12"]},"IP":{"Case":"Some","Fields":["51.158.187.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:421::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myOtherRelay"]},"Identity":{"Case":"Some","Fields":["BK5d1jA8UhavCh6cY5xLMjOQZNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DW/u/Q4qUO3qpK6CjrVuZgbFuOaypWeTogDAe6SZg+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:07"]},"IP":{"Case":"Some","Fields":["93.218.178.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9006]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darknebula"]},"Identity":{"Case":"Some","Fields":["BKKKYvJ9nEpg+e0MQmTpi5iMZaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7lxZxOl4gEO0ib/X8GWy2kgt4YSn7NRntubwGUdpLgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:53"]},"IP":{"Case":"Some","Fields":["163.172.169.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:644:c15::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallyniceplace"]},"Identity":{"Case":"Some","Fields":["BJhSoQgFg16assVR1sQ4vm3oskw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/0KvZd9xylKyJVI4h3B3JEeT1D3Z4eWzpFpFYpr1czU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:43"]},"IP":{"Case":"Some","Fields":["193.218.118.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::180]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HackerBobRelay"]},"Identity":{"Case":"Some","Fields":["BJcAuJ2QSGaC9PlrmMWJ8YcxJn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTo5UvI3aXCIVCvuilBQA71fAyLYrGNslIyqAT3hcbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:53"]},"IP":{"Case":"Some","Fields":["85.214.49.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Scarab"]},"Identity":{"Case":"Some","Fields":["BJKYmGR3qJQHqnAxFkXQSX8eD+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8TUJVbPIxj8m6hZIq52Vrn7QxViYK6sx2LWz7fFHr64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:40"]},"IP":{"Case":"Some","Fields":["146.19.213.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9114::11c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhome"]},"Identity":{"Case":"Some","Fields":["BIzNAQGTBulehX97vJrjLSW1OKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bNJihKtR1JVFYsOlzpnbrmzRTEhwEONgU7p1bNTJYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:50"]},"IP":{"Case":"Some","Fields":["92.205.62.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv117"]},"Identity":{"Case":"Some","Fields":["BIUCego0nUVNl49sHOzdKeoXdpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oA5VCETD47NO8BtWexn7bF8rl8XCc5tJmAsot+0g7ZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:51"]},"IP":{"Case":"Some","Fields":["192.42.116.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5517]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["BHSc1qa+HAsU7mPf0PE+657+6Ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rmIh0noDz/Qj5gQxjUu+b+sZhKJSgBuCxpj2D7zYdAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:21"]},"IP":{"Case":"Some","Fields":["185.220.101.51"]},"OnionRouterPort":{"Case":"Some","Fields":[10051]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::51]:10051"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zwiebelmett"]},"Identity":{"Case":"Some","Fields":["BG8tWahfrmk2dqh1M3F8V0NiYcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yu3IDyYNynBTxh2h9ZaxQBlbmPV2wv8cNh0+p8iuwdk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:39"]},"IP":{"Case":"Some","Fields":["95.217.62.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LAGARGOUILLEVIF"]},"Identity":{"Case":"Some","Fields":["BGooQaUm49VpDtM9Vo6YkcOVA9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Cib+rZ+GbsVdjeomwcdd9DFO0Q+qK6zdNqLT6wquQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:49"]},"IP":{"Case":"Some","Fields":["190.211.254.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["BFu8qWAqIsESmE8lADzUiXz/ueU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Skdh5QaJJIqG1JPWsv3geuVQqc0CC1Qa3ArWPhis85w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:36"]},"IP":{"Case":"Some","Fields":["185.229.90.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:43f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vovis"]},"Identity":{"Case":"Some","Fields":["BEbHXnEF2FyRKdg3fswT0FEEpH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXLH/WTGyR10LZGrBl5234wWbUUWSJ1UeTPk38JMmv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:31"]},"IP":{"Case":"Some","Fields":["201.80.78.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["BDv8ouxm7+/rT1yGqkdjn9bZHck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQ1UJbX/1FvQeBf7mP0VKxh9Ui0EqWfPVsm4cTvKmRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:45"]},"IP":{"Case":"Some","Fields":["27.133.132.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["johnsrelay"]},"Identity":{"Case":"Some","Fields":["BDmrc7srhzD8sVsYJSko/Awu35E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zFOUg+gus98d5O9hnXlWckqy4Bi8TwZ5tVJNxcwoQkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:13"]},"IP":{"Case":"Some","Fields":["95.216.22.87"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:16a8::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbertDelroth"]},"Identity":{"Case":"Some","Fields":["BDK+6Cn8sVXOks9Bi3KA+YSeEtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZpxzhYG4Lse/eq6+EHhrybYB/m6C70FPP4vKrtz88G8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:24"]},"IP":{"Case":"Some","Fields":["77.109.152.11"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6426::11]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ecuasterces"]},"Identity":{"Case":"Some","Fields":["BCvN8tNteu4HDghtrUtX8nsvEUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ynyY+JbF0fuZz/QF66sQYPLvsn+kTOmI4h24qGgMTjI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:57"]},"IP":{"Case":"Some","Fields":["66.175.235.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN26"]},"Identity":{"Case":"Some","Fields":["BBZGZAqzBup0sAGWboYWmwTMiNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCmRdlneNaotxcfDXulc3eZXTq6bw22v7ePYqap0nwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:30"]},"IP":{"Case":"Some","Fields":["199.249.230.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64f]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EntitaetNull"]},"Identity":{"Case":"Some","Fields":["BBFTINEeJYPsP3+UStLUGfm4QQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ek7gFOPs83jKtWvDPlnWqTkqqlE2fPGmj5uyDhYWfvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:18"]},"IP":{"Case":"Some","Fields":["85.214.156.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["BA9e3m+0Zx5O4Szy3w+4IVHcIls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJRrp1Vpj2K9CpekXX0SBr97qdTtOsF/IHV3NnLGr6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:32"]},"IP":{"Case":"Some","Fields":["23.128.248.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::83]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stars1"]},"Identity":{"Case":"Some","Fields":["BAlgXoNDVip5D/6EbLO9fARCn3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3kwRu347R08zVokqn2uw6XUCI/mXNGVbHdMHz7oc/lE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:15"]},"IP":{"Case":"Some","Fields":["158.69.204.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgIL"]},"Identity":{"Case":"Some","Fields":["A/jHfcBaogKwYipvpEovopqLU0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xMyddy1PfBc/XElZjQ3e9MSPPWjOi3iRedhhXWhpotM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:40"]},"IP":{"Case":"Some","Fields":["109.207.77.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shockrealm"]},"Identity":{"Case":"Some","Fields":["A+593ZMdkrtXuBswOK58QKCKsjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1JNJfmNF0QGNPqHJ9bbIveio+yAh5nhKy7FvlhwlPL4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:09"]},"IP":{"Case":"Some","Fields":["123.30.128.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4pyro2eu3org0"]},"Identity":{"Case":"Some","Fields":["A+n35mnI+RHF7sPsCUUzFR+FdCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nxu7If3EAok8CnTgDaRVeKDSKJlKON67xOQlTjbq+Ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["217.155.40.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:8010:60a1:2013::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Wildtwister"]},"Identity":{"Case":"Some","Fields":["A+EHo2Y+kSZk9Kk03/RRJiwhg1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CclfjExHhqmEzLBKDaI3DzjYnv4piticXM4VfuBGbhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:30"]},"IP":{"Case":"Some","Fields":["94.100.6.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itzme"]},"Identity":{"Case":"Some","Fields":["A9og/XHO0YjIt2UugZQcUGck26Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q8HljNSWyNQ62SnKdhg3B7LEhPI4FnZ5ItGmjnwGDNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:47"]},"IP":{"Case":"Some","Fields":["198.74.57.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackfox"]},"Identity":{"Case":"Some","Fields":["A9HvPvK+UUUVDFisxyUZ3YYOYbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bixn5ksZnhWLNURL46DmL9m/mg3ULwBxqXR/HYy7JjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:20"]},"IP":{"Case":"Some","Fields":["136.243.3.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:1d41::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow5"]},"Identity":{"Case":"Some","Fields":["A8woMv7V46pHHMOHQzi5icpFlrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hticnoAP6peOE6vbIOnIOMCbaAy4o5PQBoLDUju5FlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:32"]},"IP":{"Case":"Some","Fields":["164.132.207.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["server001"]},"Identity":{"Case":"Some","Fields":["A8eUQBqS8vAzrV37L8AF1EWRBlQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zy7xUFLB3EueYQiKHzUbwwpKxjWRQHPpu1upTg+KqhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:03"]},"IP":{"Case":"Some","Fields":["185.163.45.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot61"]},"Identity":{"Case":"Some","Fields":["A8MGnoFOKW6xh3brYbHst1Ttif4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c4pbqnXwbr4c8ziHWeNgG+5TJMicW3+Hnoy6a2nO9cM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["81.7.10.193"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2f16]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["929oi1u23jd987j"]},"Identity":{"Case":"Some","Fields":["A75z5YH5nv/xmrWC7wx+jmUxzto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COIJVhKCSKRfKl8QpHnQbdKzaVBBATI/kTrUc9YP+d4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["85.215.91.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Totonicapanp6"]},"Identity":{"Case":"Some","Fields":["A71WtQcvsH0rTXni+wQ2bUFe8+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSTfU9OuIDJ2Hi+7PsczZ4EPYQqirgGYBEB1qNtYRhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:03"]},"IP":{"Case":"Some","Fields":["163.172.76.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snakeskin"]},"Identity":{"Case":"Some","Fields":["A7qsh1YOhbKCqU+mkSjgBDhmNRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPDPb4bJwxBorENMLzWyMzUV/j66pKBIJIBSsuAcuBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:36"]},"IP":{"Case":"Some","Fields":["46.148.26.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TLCOnion"]},"Identity":{"Case":"Some","Fields":["A6M8NFT8D5rGlm8S+khpmfWiKJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B+oaXUqv2VL3mnX/qjlrz9oNeOZb3tJ+ctTBfv1HjQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:06"]},"IP":{"Case":"Some","Fields":["96.66.15.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp7"]},"Identity":{"Case":"Some","Fields":["A59Mvf99B/xcgYitwHP4Yyyclwg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmFEuaSfA2tuoDIKWCQWI4/1dDmX2n/B5W0+vQPePws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:51"]},"IP":{"Case":"Some","Fields":["185.220.103.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoomStick"]},"Identity":{"Case":"Some","Fields":["A5o4P4zluY0ahNKDjSSTBlfkcuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kFL++QDaSAVesoux6dkRm78MsHL0aGdVK3pOH3KzKoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:40"]},"IP":{"Case":"Some","Fields":["45.138.228.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:15ed::2003]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ry4an"]},"Identity":{"Case":"Some","Fields":["A5ADwyDZmA4KdA8QehqcE8mcX+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fuUBzU80C9vD1GcQ4RwiXM0rQDFup6W/I+/fMVCWERI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:43"]},"IP":{"Case":"Some","Fields":["45.79.159.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe8d:a3a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["turnt"]},"Identity":{"Case":"Some","Fields":["A4ww0q0FMUfJHvsSkVJ+1iHX0bE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GatZY6s1X8s1qUtlcB0N/YYQpLx6mCBJ1EwPqrGInsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:43"]},"IP":{"Case":"Some","Fields":["82.221.131.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SLOG"]},"Identity":{"Case":"Some","Fields":["A3tsYNrU3zL9opv0WNXIyBaqjz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mU4ZbMWQNeRoqtGhnQqSrgpjb51NA1oQI/e14jF6U8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:19"]},"IP":{"Case":"Some","Fields":["5.154.174.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hong"]},"Identity":{"Case":"Some","Fields":["A3Hk7JAcT8d/6iqlvkIY8L4fbOM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uWq4UBDr5FSS72HbxCF265k/b+IBPvq30x11NBPfUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:53"]},"IP":{"Case":"Some","Fields":["209.58.180.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG9"]},"Identity":{"Case":"Some","Fields":["A279LmHeo9L+5ZhhukJF5N6GQRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFLGNHF2omX5yksjQJMDFUkd5pNGZf8oEGqfAUq3JPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parsel"]},"Identity":{"Case":"Some","Fields":["A24BWthNPGBWZuOjMGsePhiolII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATX6VpAeYJK25mHdpm80wQO1CRcohcJoEo369NrqeT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:52"]},"IP":{"Case":"Some","Fields":["172.107.202.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arrelay"]},"Identity":{"Case":"Some","Fields":["A2kSKZ6tCvbN/pIuGELDrn3e/jA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jXAT/dYwQmJJHhlOtVzEBTU/mUVNUJG5NHjXpA+52T4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:27"]},"IP":{"Case":"Some","Fields":["124.170.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["A1+BMZXwy59Wft/fYMZ0XKNroL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NfiKQ65I3SLQZwS2HB8/LDh3Rdjb96I+IYb2I6vcnZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:48"]},"IP":{"Case":"Some","Fields":["77.68.3.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:21d::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lick"]},"Identity":{"Case":"Some","Fields":["A1YM/XWxl8f3ZuzEKb0K5mG3ujE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CetnKBfn4jmyxtbJY+0579nai6AgYR0SC9DKTbwj698"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:14"]},"IP":{"Case":"Some","Fields":["23.160.193.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:10:10:8000::d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Riley"]},"Identity":{"Case":"Some","Fields":["AxmNXoejnKorhV3rZY/fCnOktYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R/GDp02mG9ZzqaxyW0YNbt9Ghjz5lyRtu3BTD7FLzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:41"]},"IP":{"Case":"Some","Fields":["72.95.19.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GladesvilleRelay"]},"Identity":{"Case":"Some","Fields":["AumLvgsSVw5OKXTip0crKX+NmVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwRPZYxnMXHSMa6NZKgjkPrgCK6q8Y8gJX7hA7VEu8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:53"]},"IP":{"Case":"Some","Fields":["60.242.251.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oxi8xiG1eiyo"]},"Identity":{"Case":"Some","Fields":["Atgy8ALUyj0lrdosu7LQnuQaFas"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bEzA+tf3eHEFiVmsGUxu4xPv4y86FOwToJPtnTfJyE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:40"]},"IP":{"Case":"Some","Fields":["209.141.37.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fearless2"]},"Identity":{"Case":"Some","Fields":["AtY0rdm0FnfSg0vyxSA7aDPec4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REqfy5ya26yCbSIPKK9WjVkvtw+CQcYI1HfQiGADZDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:59"]},"IP":{"Case":"Some","Fields":["178.170.10.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::529]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritdowntwo"]},"Identity":{"Case":"Some","Fields":["AtEMqmXmt/7lU0O6eJCy0bbZMTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VSMGR+Ux4HqfQzEynTCL1rdxcsDiKH0wZKHcgmYhPQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:02"]},"IP":{"Case":"Some","Fields":["159.65.89.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::e58:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shado"]},"Identity":{"Case":"Some","Fields":["ArS1uS7mDVMXoNswEXVzerjxcYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC+G0cJdeEjJNxJLkSah30Tojm2i65cKARGfTAlAKWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:08"]},"IP":{"Case":"Some","Fields":["152.70.140.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["onionDAOrel0aded1"]},"Identity":{"Case":"Some","Fields":["AqjMsftwmEImIxKDWW2nNKgOP28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zi8TTzY02+CBbThxtBxREr3068XCfyM5keSVqIAkwyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:05"]},"IP":{"Case":"Some","Fields":["5.2.79.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unknown"]},"Identity":{"Case":"Some","Fields":["Applvq7lZz8yrsyykj+IN9sSuiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KjfJDxPnPptszcX8yzsQ2kCk7tgonE6LdFbAsvjGmpI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:21"]},"IP":{"Case":"Some","Fields":["185.130.46.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["ApBMmuisjuuRn31cXv4ItANjyzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vR02yAOZhZE9+YUXKnzxGhdJ577XDdWt9EZ1bqAOU24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:57:07"]},"IP":{"Case":"Some","Fields":["23.128.248.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::223]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["AolaWZSmopHTk4wRQuv9O4wpZwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V7IYz5BDsQggP3zp6bTwB4eTHrZn7k8DLslg42yrn8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:36"]},"IP":{"Case":"Some","Fields":["185.44.81.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::70b5:bcff:fece:22c1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipeb"]},"Identity":{"Case":"Some","Fields":["An51yS8SMa5fe9ThU2aW/jBAxGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DGL2tJ2LZyKATtdf5jHVg3n3wKfaBGl54qB/U+N4FMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:52"]},"IP":{"Case":"Some","Fields":["185.220.102.244"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::244]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zagreus"]},"Identity":{"Case":"Some","Fields":["AnQPRy0dpcG3dHXxiUD+efFa9Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UDqn/3JvsuusgbBsG9Bw7eDmS9plesTzCsnFxQ93W1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:40"]},"IP":{"Case":"Some","Fields":["81.169.222.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4224:8d00:f3a9:25e6:4cb6:f3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nologcz"]},"Identity":{"Case":"Some","Fields":["Am0RMUsW/lGh7KquOIZ70LSSceg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cxK+/CN1KBZjiqynZhaT9gOb2zJMqkGeovAF8k1gaGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:59"]},"IP":{"Case":"Some","Fields":["171.25.222.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:a900:ffff:1116::203]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["middleIsenguard"]},"Identity":{"Case":"Some","Fields":["AmVLi5gDd1hgzfLH9xCf9ooTSao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZIVuXK0lUzZof8KTH2DIBhHxVkltvkC/nmXsY0xs1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:36"]},"IP":{"Case":"Some","Fields":["79.20.11.198"]},"OnionRouterPort":{"Case":"Some","Fields":[10101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange029us"]},"Identity":{"Case":"Some","Fields":["AmSPLxNccpaiex9Z0q5O7CXZqHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bRw/FwMd3R1wTpTODBp4FaoRhB4b8kbKaFLsqja6o7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:47"]},"IP":{"Case":"Some","Fields":["104.194.235.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["howlin"]},"Identity":{"Case":"Some","Fields":["Ali9rps1FxSwvMDavh15jWYuuog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jYgxcUHVlfTs4w5cqjDsMVfpS/tFGJTkKg2RZu2Gdnk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:30"]},"IP":{"Case":"Some","Fields":["45.141.153.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["AlbMf3bkYVf5VwXaxY8OPvnNFYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it/kBiYCzRHrk2v5k4syrs98dBklqdHQ37eNSrL9xkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:38"]},"IP":{"Case":"Some","Fields":["195.90.208.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:fa::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rome2"]},"Identity":{"Case":"Some","Fields":["AjV5EbiC8ldnbnWwfs//WIXks0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XkWiz2eeEGa5nRjAPVIe13Gs8SlGANBOtzuG9Ol+3PU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:33"]},"IP":{"Case":"Some","Fields":["185.146.232.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:16b::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0der"]},"Identity":{"Case":"Some","Fields":["AjUfyI0L8G9s3lRSZWZB5hGdvX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dYZ0lxgIGo6XGrbEED3t8hk9bvVxyO0JfH42CloXlHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:37"]},"IP":{"Case":"Some","Fields":["95.216.20.80"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:14af::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrmmlDag"]},"Identity":{"Case":"Some","Fields":["Ah3c1of9UFt+p+ddps7w13iqB/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qyVqiTkH+ObduIuwLHfhth4OJhcXv/N37bPRSqydXWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:04"]},"IP":{"Case":"Some","Fields":["213.239.215.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:90b0:789d:6a4:95f3:a78c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["island"]},"Identity":{"Case":"Some","Fields":["AfwWnK9EnV5e9nUj9pNG58tqBXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JxaiDzFMbmZcloo7KxQNBl1Mob4VnGu2wA+EfyOq+/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:17"]},"IP":{"Case":"Some","Fields":["109.207.77.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dcslTorRelay"]},"Identity":{"Case":"Some","Fields":["AfuIxAYsXAAu9q02Yt1ukLi5+A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ooVasBFwe2GMIH2pq+b6wBX4fzFmG4LZ08IHiVq7/9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:36"]},"IP":{"Case":"Some","Fields":["87.62.98.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:5e40:3056:1a0:69eb:f035:36ab:2e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zinc"]},"Identity":{"Case":"Some","Fields":["Afc9vZtWwx49Oq65X4zx3rfZpy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVVBpHlzx3mmy/jrohuGVICn3AuWo8J+kMWY30v/1DU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:09"]},"IP":{"Case":"Some","Fields":["185.184.192.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrTorRelay2A"]},"Identity":{"Case":"Some","Fields":["Ae5HjW3zm6zc4PPemcRaew7qTCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bp4rtwX/sLvMrtBtPvPa/fga2twqw9Dqwb6nlhoxmkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:10"]},"IP":{"Case":"Some","Fields":["50.92.81.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["AeG0tvIvR6zSC0KNnW9G5AbcKa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["atGa4AjNLvsp7+MaOiqaj3P3TWrk2q7/UcKlTbFMAuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:52"]},"IP":{"Case":"Some","Fields":["23.128.248.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::45]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nanna"]},"Identity":{"Case":"Some","Fields":["Ac/lABQq8ZslLIswNy/LK0eQT1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CWnhWDmdwJsi3PXwwY0VVLu9vIWZRQLBUj4ZsPO3tvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:38"]},"IP":{"Case":"Some","Fields":["83.137.158.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra45"]},"Identity":{"Case":"Some","Fields":["Ac/MJUUjTu5SPTPtJe8eeYB6GKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CfIubkeY6XQ5ifLcufSyAwT9x3HR4I0/ywSHJOYquMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:19"]},"IP":{"Case":"Some","Fields":["213.164.205.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Overjump"]},"Identity":{"Case":"Some","Fields":["AcsuKXqPWG27z5jwKKPRpJsKt7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZoYgoXccKEgujjnGuxgL1Yb7b1PzJ4mOBBopAEUeOmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:28"]},"IP":{"Case":"Some","Fields":["103.228.53.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["root1Moh"]},"Identity":{"Case":"Some","Fields":["AbjxjBHOKHfoGQ+iyBgIzQh1FcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/kNzFPLt9NhKkNTqR5Iqt6SwjmmpKXORFPOxRod7BFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:14"]},"IP":{"Case":"Some","Fields":["89.58.34.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:fe8:c853:14ff:fe86:7a3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rixtyminutes"]},"Identity":{"Case":"Some","Fields":["Aa4t4xQnbIL8zDYDocLzI45lRMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HvvVbTcZBIjUeas5+N5JhB/pVIC9Q3UtUHVf2m5R4Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:09"]},"IP":{"Case":"Some","Fields":["149.56.233.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PyotrTorpotkinTwo"]},"Identity":{"Case":"Some","Fields":["AZ/rIs4Ey9BIm38kvgOFGLZPoiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qgfTQGWTY2DfOI0azDm+FOovWR5/6GMOlQGtBFVnkk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:02"]},"IP":{"Case":"Some","Fields":["142.44.243.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::3e59]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeftBehind1"]},"Identity":{"Case":"Some","Fields":["AZ4g41JIG9RaPOfWaRoQ+1MYUPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xlQJ5S4BbSis+bK8zms5ASQDDw2udajbZ0VCvNEY3wY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:45"]},"IP":{"Case":"Some","Fields":["111.233.139.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nicknamesomething"]},"Identity":{"Case":"Some","Fields":["AYpdmyM+/3D7rbLnW1SoPy6dNA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wwv8qwFLeLLILeZsFHfmqaoJCzvyk8i8w9D9SU4P9Ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:37"]},"IP":{"Case":"Some","Fields":["87.151.169.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["AX56Nk/sTm51Lemn1sUhKSl/IFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZNpp2I6fqunqhH5hHPBDlBk1xTwdH6wd3a7Aeh1CAUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:13"]},"IP":{"Case":"Some","Fields":["194.32.107.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:172]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raptor"]},"Identity":{"Case":"Some","Fields":["AX2Xuw8oHDSXIJHAeSvycZi2dOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jx5k38hHtr2gvcsO+aPVgHW1JrIXs+4v/D6HBMGl500"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:43"]},"IP":{"Case":"Some","Fields":["135.23.97.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bigdaddy"]},"Identity":{"Case":"Some","Fields":["AXsIzBY0JM1qukrdQEK0F01JRzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWMa2FBcFqlZTSFebQWT2gzkwmsLJLaJR5OiqgrWsV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:01"]},"IP":{"Case":"Some","Fields":["185.21.217.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10042]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation01"]},"Identity":{"Case":"Some","Fields":["AXWbql3l+hnjb62vfZvGTBVXOrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gbVbPNVcpoQp/0TLdCydZLZH//nhHJlXo4t2h20bfPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:15"]},"IP":{"Case":"Some","Fields":["45.14.233.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e995]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nyatorexitno"]},"Identity":{"Case":"Some","Fields":["AXNC4Ze4xXWlxTAc0Ah4Ddd1KGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3nbX+vSCZ02U6nR6ApG0uzMMtKDUao4B5hgCdnFGGr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:09"]},"IP":{"Case":"Some","Fields":["185.125.168.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LastResort"]},"Identity":{"Case":"Some","Fields":["AXIqYNwOqmTXkFrWCjJCxgkec9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WN0dKq3ERHzHuM5PZEJFkqFNiT2eMapkQq0fNvcrXJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:28"]},"IP":{"Case":"Some","Fields":["185.112.146.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForetNoire"]},"Identity":{"Case":"Some","Fields":["AW744ivuqB8wU1l07DG2lDaXyos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVsBxELbz1gTxvymlSyZfi0i98MzGRG/s9WOEi+2Tz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:59"]},"IP":{"Case":"Some","Fields":["5.135.182.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:bd83::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d0dak"]},"Identity":{"Case":"Some","Fields":["AWCT7kuumvRz/AyBGp0Q/aqco0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1sCWdRJVuQW0nGlTqGuJYCsL9TV8RCCd5Mhjc7capkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:54"]},"IP":{"Case":"Some","Fields":["62.65.106.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raspitor"]},"Identity":{"Case":"Some","Fields":["AV/TpcOriWJqK5jG+8g0rWfWF0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cf5rA+KvPQTqXUHdRJzJpnY1ZFDmYwZBcNQNgbYF/0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:00"]},"IP":{"Case":"Some","Fields":["86.148.202.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["marsmellow"]},"Identity":{"Case":"Some","Fields":["AU7iS8vaFg8jayVHpGObJ+MDoec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xBsTrRnleloDLd7Nug8PwgIQ+xuB25FyJPNNSS/vIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:10"]},"IP":{"Case":"Some","Fields":["20.224.145.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["insist"]},"Identity":{"Case":"Some","Fields":["AUvQljY3O3jMKLpw42xxkOPeI2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7OBReJX/TYbMxDK4jJsb+Ysraio/AVruXwODjkJ/3Gc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:12"]},"IP":{"Case":"Some","Fields":["5.57.243.47"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rken"]},"Identity":{"Case":"Some","Fields":["ATq67Y9M22d74LUhLkslg7hgNe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Z/vH+c4ovLLTN+iRujyhilXo5n7SuWFQFN7VUc19Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:54"]},"IP":{"Case":"Some","Fields":["45.129.182.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:47:631:a437:b1ff:fe5c:74a2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bang1"]},"Identity":{"Case":"Some","Fields":["ATZpawJaxVA4R9c2/p89ZesnpZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oY48x+Ov1gm7TYm01F91Pnl9aOrN25g2MGGio6zprdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:47"]},"IP":{"Case":"Some","Fields":["134.209.159.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::8bb:6001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["disobey"]},"Identity":{"Case":"Some","Fields":["ASpnaF8D1msj1hftg/hCWWbp1Ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KQHgrg+drJ239mYxDvTJdYDU3PHPEpfvEEs0hyPdn90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:47"]},"IP":{"Case":"Some","Fields":["172.97.177.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["ARyLfeyAm7L6iiI9cQEFjJ9wK/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q8kccE4ku8pURNsMAkTKNWW/ou2KND8WRsX70GhBao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:30"]},"IP":{"Case":"Some","Fields":["194.50.94.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:300:c232::5ef7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["motauri"]},"Identity":{"Case":"Some","Fields":["ARgbMb5YYMfWbaiPiK1SLAZHD9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GH7KuIFUknybRtJbbttM5JB+aWEUMJaoQUipNwtWDtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:09"]},"IP":{"Case":"Some","Fields":["95.143.193.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor1e1"]},"Identity":{"Case":"Some","Fields":["ARG6m2BGaeY2/9W1A/OCpLetboA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5SN4aVELlO6sPZtOlEofsDq5aw/5jVTwXzaxoq+e58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:44"]},"IP":{"Case":"Some","Fields":["185.195.71.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex85"]},"Identity":{"Case":"Some","Fields":["AOs6Esd+cPGfZqe70JTWKWmvNQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HdZIDtURTkLpnH/MrPTsJtWdEDp6dyTDqrZyKlrZLKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:37"]},"IP":{"Case":"Some","Fields":["199.249.230.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::174]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonhoard"]},"Identity":{"Case":"Some","Fields":["AOFknmn/kdfwHnSl5i7xT32ZFeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tyJRBzv2zgwC+6Ksy+yL/LViNSCTaTmQBrI+IS4508g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:08"]},"IP":{"Case":"Some","Fields":["116.203.50.182"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:b16b::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex55"]},"Identity":{"Case":"Some","Fields":["ANyurj5UwygJ5/fMS/Km/Gj8VS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mmCZFnpwqQSK58aUJvFyJ+GiWc8rgCP7F10PBnO2ltI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::144]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tried"]},"Identity":{"Case":"Some","Fields":["ANLOPCFT6gl4byEF8msTjPdZQk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XUkbIT1+jreXrOgBhtW3JEKUcCH/stKd9jdhprOWgNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:18"]},"IP":{"Case":"Some","Fields":["107.155.81.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["effiorg1984"]},"Identity":{"Case":"Some","Fields":["AMzmqE5tY6GkLhBYObyO1dSxZmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rWkL3SYg9eFLVfxfmf2KPctal9hr3PtL3xz+3oDip/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:12"]},"IP":{"Case":"Some","Fields":["89.236.112.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l25"]},"Identity":{"Case":"Some","Fields":["AMS5E3SseQyy84ZdLzb2LfJ/Cg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8mqti/QHb3euXKCSK589uu43CqvC6xqqpLbpRYRKNCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:57"]},"IP":{"Case":"Some","Fields":["185.66.141.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["roterechtehand"]},"Identity":{"Case":"Some","Fields":["ALwRxEi3DILGEA9bE2LflQpgnwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8nbqM1iUKzTLwXn3jsyVtQXo4p5/jhgj3vlvF9jtkF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:58"]},"IP":{"Case":"Some","Fields":["185.183.194.94"]},"OnionRouterPort":{"Case":"Some","Fields":[4569]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mharelay"]},"Identity":{"Case":"Some","Fields":["ALV79hT37TBRBztdRSb/CyOvIXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/ASbtLr2fVMin58JmdnqV0mwc3yyMOh2eKwzo5C91Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:29"]},"IP":{"Case":"Some","Fields":["158.174.145.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:403c::1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode1"]},"Identity":{"Case":"Some","Fields":["AK5iWCxan+62r4LGSuAi16hLULI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n2tR2VUTDdV1QRjDMAU53v3dtYIRxyCMLicwiKaDvMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:36:16"]},"IP":{"Case":"Some","Fields":["184.105.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::88]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["AJhfcQByeAxQ5ZEWsDKLjSoIU3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8/RH5dbWDtVBDuDKnac7CJqU/P0mpPh+BriZPa/k7R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:48"]},"IP":{"Case":"Some","Fields":["79.110.62.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackBeluga"]},"Identity":{"Case":"Some","Fields":["AJYtLdC5vzpq8dXrIBEyOIrKFCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Ip0JZI4SIadLOU0x3rExyuyPSkH2syySaqDvS+pVPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:58"]},"IP":{"Case":"Some","Fields":["5.189.155.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mb8aku"]},"Identity":{"Case":"Some","Fields":["AI3Uguym3S7tHit4FIogUpvWbkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xD4m12ZGlvYELlOUHQVOIhoqX6bWUxpuT4jYRlVBO9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:41"]},"IP":{"Case":"Some","Fields":["209.141.33.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay42at8443"]},"Identity":{"Case":"Some","Fields":["AIGW3ESUgsc8+pcSRFIjkX92CSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pywwn0/V5of5ek2IbcRA2TJi5v+toZkJwk62+EjtJPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venenata"]},"Identity":{"Case":"Some","Fields":["AHfd3bVJVCFM/uD+iqhd3IV+fIo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0rQZbSia0QlouQUSxz/SXiIvaMvYOriOVW5h7Z1GXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:42"]},"IP":{"Case":"Some","Fields":["71.19.144.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe2c:cd37]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex13"]},"Identity":{"Case":"Some","Fields":["AHe8unJE2z5qXtJ0boYXAGZoSIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1TTcTyS+FBXPpPJG4DxO9wVOLaWpXDlT3GeYefWHIw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:31"]},"IP":{"Case":"Some","Fields":["199.249.230.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::103]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["right2"]},"Identity":{"Case":"Some","Fields":["AGVBE5WXY/ZTySr/B4p+w6e70tk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["25sjY05+pVXDzFJAwZwo8qg2f8dCFI44Y0AGJgzTIt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:35"]},"IP":{"Case":"Some","Fields":["174.128.250.165"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eisbaer"]},"Identity":{"Case":"Some","Fields":["AGHSKv0fBtTm81AGvT2cIdeYHqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7UiQ8JSMEi0HFvY6K+hrzK9bz5hmIZkehYgwK/s+NRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:04"]},"IP":{"Case":"Some","Fields":["109.70.100.73"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::73]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athena"]},"Identity":{"Case":"Some","Fields":["AF7ZchP3JYZ+QiuNwEQzYbuyTjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OaWeyjysCt1H0CB9Stxpj/kW9YBPc+Lk9lbw37wPfPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:01"]},"IP":{"Case":"Some","Fields":["104.244.79.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fb10:d07b:edfd:2c84:bb4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["namie"]},"Identity":{"Case":"Some","Fields":["AFyL+BoOH3CNtCpXPISvAlpAb88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I2bRikcknXdQOn3xwCu4L91hCIUbH1MBsWHKoAqK9fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:09"]},"IP":{"Case":"Some","Fields":["109.241.109.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["suominode"]},"Identity":{"Case":"Some","Fields":["AFYmkM8z9TfE9MlYdlX3Rphoxzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yW5+gcEudV0vrF962L5bv9vjwnSXuI4IZ34bROF+SAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:29"]},"IP":{"Case":"Some","Fields":["37.16.105.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk11d"]},"Identity":{"Case":"Some","Fields":["AEClsEx+MJ03y+ftsrctPhXQV8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RebXkemb1dep4B1glT2Re14omz6lyNoZewttn87bSnI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:10"]},"IP":{"Case":"Some","Fields":["51.15.75.120"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1329::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ADb6NqtDX9XQ9kBiZjaGfr+3LGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0YZ3QM9Ec/sfD88MYBk4KONtixMhoYER274t6XVHqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10133]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::33]:10133"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsMobley"]},"Identity":{"Case":"Some","Fields":["ACg7VWTjBy3N2rMdbvYi3Um/Uk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AQ4qn2l09Mq6p7CpJKG4XNIxQrfMoFcPyP15PHHrbpw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:13"]},"IP":{"Case":"Some","Fields":["195.15.242.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::201]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skylarkRelay"]},"Identity":{"Case":"Some","Fields":["ACQOyytTWqTB4YdNdE36avLl6UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1S9VmyN469C3VwtS+wER87B6B2KJ8AQp7/SI661zt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:06"]},"IP":{"Case":"Some","Fields":["95.111.230.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["earthpig"]},"Identity":{"Case":"Some","Fields":["ABUt+rlyo/iwhkjhSnsJjMKUg+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rf9Ck3bhxjdUczTTc02CRCc3GTurEoxoVXN/qJF6Wbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:09"]},"IP":{"Case":"Some","Fields":["41.216.189.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute14"]},"Identity":{"Case":"Some","Fields":["ABG9JIWtRdmE7EFZyI/AZuXjMA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qs0yOymbVs6GgnbYYduADsxleU7xFUOnsQoMOC5nCwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:42"]},"IP":{"Case":"Some","Fields":["162.247.74.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seele"]},"Identity":{"Case":"Some","Fields":["AAoQ1DAR6kkoo19hBAX5K0QztNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YcEe5/d/nL7u0lMKmuQTGaSjVE5dAROlmU9VZ/9XRbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:45"]},"IP":{"Case":"Some","Fields":["104.53.221.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]}],"Sources":[{"NickName":{"Case":"Some","Fields":["Faravahar"]},"Identity":{"Case":"Some","Fields":["EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97"]},"Address":{"Case":"Some","Fields":["154.35.175.225"]},"IP":{"Case":"Some","Fields":["154.35.175.225"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["0x0B47D56D Sina Rabbani (inf0) "]},"VoteDigest":{"Case":"Some","Fields":["75FD97064EE7E338E4CDB244CEAACF4DE6E786F0"]}},{"NickName":{"Case":"Some","Fields":["gabelmoo"]},"Identity":{"Case":"Some","Fields":["ED03BB616EB2F60BEC80151114BB25CEF515B226"]},"Address":{"Case":"Some","Fields":["131.188.40.189"]},"IP":{"Case":"Some","Fields":["131.188.40.189"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["4096R/261C5FBE77285F88FB0C343266C8C2D7C5AA446D Sebastian Hahn - 12NbRAjAG5U3LLWETSF7fSTcdaz32Mu5CN"]},"VoteDigest":{"Case":"Some","Fields":["BF99C6627E5C3203D4CA12F5C41BE5A5DBF98BD1"]}},{"NickName":{"Case":"Some","Fields":["dizum"]},"Identity":{"Case":"Some","Fields":["E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58"]},"Address":{"Case":"Some","Fields":["45.66.33.45"]},"IP":{"Case":"Some","Fields":["45.66.33.45"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["FD790065EBBD5E7AE6D039620D7F81CD19147711 Alex de Joode "]},"VoteDigest":{"Case":"Some","Fields":["253F98BE09A1498E22FFB23345ACC4C26136DC2E"]}},{"NickName":{"Case":"Some","Fields":["moria1"]},"Identity":{"Case":"Some","Fields":["D586D18309DED4CD6D57C18FDB97EFA96D330566"]},"Address":{"Case":"Some","Fields":["128.31.0.34"]},"IP":{"Case":"Some","Fields":["128.31.0.34"]},"DirectoryPort":{"Case":"Some","Fields":[9131]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"Contact":{"Case":"Some","Fields":["1024D/EB5A896A28988BF5 arma mit edu"]},"VoteDigest":{"Case":"Some","Fields":["91CE4979C25A4F227D6F0B927B94D33056147AC0"]}},{"NickName":{"Case":"Some","Fields":["maatuska"]},"Identity":{"Case":"Some","Fields":["49015F787433103580E3B66A1707A00E60F2D15B"]},"Address":{"Case":"Some","Fields":["171.25.193.9"]},"IP":{"Case":"Some","Fields":["171.25.193.9"]},"DirectoryPort":{"Case":"Some","Fields":[443]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"Contact":{"Case":"Some","Fields":["4096R/1E8BF34923291265 Linus Nordberg "]},"VoteDigest":{"Case":"Some","Fields":["868A010676C297B727D4E9AF085FD9510D955D6C"]}},{"NickName":{"Case":"Some","Fields":["bastet"]},"Identity":{"Case":"Some","Fields":["27102BC123E7AF1D4741AE047E160C91ADC76B21"]},"Address":{"Case":"Some","Fields":["204.13.164.118"]},"IP":{"Case":"Some","Fields":["204.13.164.118"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["stefani 4096/F4B863AD6642E7EE"]},"VoteDigest":{"Case":"Some","Fields":["F8EFC6506570978DCD99E7680A2D49BC28CE6263"]}},{"NickName":{"Case":"Some","Fields":["longclaw"]},"Identity":{"Case":"Some","Fields":["23D15D965BC35114467363C165C4F724B64B4F66"]},"Address":{"Case":"Some","Fields":["199.58.81.140"]},"IP":{"Case":"Some","Fields":["199.58.81.140"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Riseup Networks - 1nNzekuHGGzBYRzyjfjFEfeisNvxkn4RT"]},"VoteDigest":{"Case":"Some","Fields":["0F4B77E189D5F3634828FBAEB10BA78EB009B819"]}},{"NickName":{"Case":"Some","Fields":["tor26"]},"Identity":{"Case":"Some","Fields":["14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4"]},"Address":{"Case":"Some","Fields":["86.59.21.38"]},"IP":{"Case":"Some","Fields":["86.59.21.38"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Peter Palfrader"]},"VoteDigest":{"Case":"Some","Fields":["E1EA245851802B749446AAE4B7DA0666538DE206"]}},{"NickName":{"Case":"Some","Fields":["dannenberg"]},"Identity":{"Case":"Some","Fields":["0232AF901C31A04EE9848595AF9BB7620D4C5B2E"]},"Address":{"Case":"Some","Fields":["dannenberg.torauth.de"]},"IP":{"Case":"Some","Fields":["193.23.244.244"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Andreas Lehner"]},"VoteDigest":{"Case":"Some","Fields":["342B422BA3BC35F5D34F24D3095DE4443665DB9F"]}}],"Signatures":[{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----VxpW/fSnPk7m5/f5Lo7dZcLXVvmqtBcOpI5ygW5dQjVpl1ebseUXWlutvn8+hRAfp8GCMRLdce5oF7gHu7Zg/SAQ5cPFsL5r9wZfEGdTRf8+woMfPG877YnOlAnFhGa97USSpE1d40kzBawVAGEmtPMWBM7Kze8fqfJ0XH3RE5cuk2Mho5ukOA+L+w3LTdoEcYA509uMxbsaGj1/j43+WxCEQpCXf8Uo9tMIErlvGY49yay3TYADe8vqA3Jd/IMg2yQ7b3+hIg5HmqUVbEuME4IBa4MxDcHQy6pRSuxJRj2gOwCD/cCHDxMGJSVbmBbaZVrqmpnplr7zhMvMqRew0A==-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["ED03BB616EB2F60BEC80151114BB25CEF515B226"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----pmiMx7HPeO3KtXfIMbj6/BYfVvSw7FqvCNf7XEmDn/XYN3liDiVo2B0hk1uR85N2wXSpZ56ztFwcpUSvCNUS2w4ARe+5foCGyfEZjbIqboH6U6mMx+yDpHfQaXLENHNBUn0CrxWMOEfUUQRTjwfDUQ77h2nKdYttbJO6yC7V6iShbVdyp/djyxFHD3vGbsibTy9nU+HYoqVuNb08SJV20lqCEY899AhJJESxDT7CHBGksS1nn6hOl7XN+G7taBnLPL02HNxAyvf9U+bHpVRnRu7MFy8ZFZLAWAW0506OiVUDYhvu8BSXyGpIwMwUyCoJIDFjGGlP4rsjw7uRZJBxKA==-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----E3cKVBDmeqq2JevIC4ZKOUeoePZ84Wsl8yt6uZT/HFND39wLgIyzRJjp10C73WvcYnVaBSlPsl0NzBbO9tDxqJ0QS2xrsGNiex0p14/edBwNbL9vdMHUUCSYvEz8E/to5wxdDRnY3VRxTG/rVf5bh+k7HcOHgD/HxSixUsfHk7Hu6UE7CmoeB1hmYZzqL8qdPmMe3EmJNJBFgMzCt0wZ9H4UjVLcjZOhclahdWjzdEb72z8FVJ2zhHRjZUp7SryCH/GKfmnG6LFrJuVSeiDaELJmI01u1dW+rKxYZy4F/xRjoXicFTXd2M1dcFeojFu5JVQe4X0vj8VOpHGGzITGMA==-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["D586D18309DED4CD6D57C18FDB97EFA96D330566"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----h4IyRQAXckPfb1Ye3bWfvw57A3nbX/SUP2Q0A4dksE9d1fMqrSokVHqcjeMmpI5PoCe1NVTpJSy319Jc8KfNuw/k5wx6e1OtPB/ERgDwj41qI+40vb0sg5Uv4CWjruwkaCIrBlNMoncK+2tnqlYvs76v4PtMtDOkwfXG2lj6zEFmjTSc9nCtQoh2TTdvXD3cxXL6994kx9jbhVh+VlmSDUxL39fNwMlwVY+HSIpPuxuTyhcSS6JIWH17Sk/w5ZR1E4xNCYSPuK+HUQcQT9Sqdgkl3pglkzOtUTv1zjQom9ssBP6BEU+ggHh8rlbn9mll1CnGpYRQ7QAlcj0sjwgjNw==-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["49015F787433103580E3B66A1707A00E60F2D15B"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----B+q7GxoMvEy5l25s3vRQw1tUseRTU8VQTxrihUOYy+dbtStvJ88YqqhJAYlRkNuF3CASJIag2jfzhuM84f/V9ELckhBSHeUG+qIx+nEqCV5OuAtKn7WKzMpDI23PzOkcTyI3wpIyV0Gj4WKXTrIs10ljyrz4l7rMWX3g1GVwcsua6OaJRV/CY3wl4oAtQqLyxONauOyhQ303SK5qrKWBJmDxbJmohRwys63nyVSH/qc6igiWqKXLDwLjB3Zv2gc8UDR9Q2DpZ3MTmvvbhmAVfNnDz8Nk/91O5kchffNgJv9mRroAmQ5dNVAw5bnJgQlBIQt45oNucN6QXjYkszQ4YA==-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["27102BC123E7AF1D4741AE047E160C91ADC76B21"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----OjjEkmSsoyo8qiT2WmCJ2QRox3o8CUcWEb4Gmplbo8naxnujCtSSt3Gt3EiAfhWVYrFgKdF4/ArxyIMwJdK7ovr/mNcaTkC502rWd+pN/E/qc4URO977UHDiFNsJ2QGLegz9EJmSZhwqR1D9CzxHvzVkEYqxcVNLf+MnWBPiCQ8YQIgtt0hacWUa5RPSYzhVQ+04VPWI/HHoaslTLGNHoXOeOPBp13Pp/22G4pJIWqSYS4NsIvjz/wktvVX+a5zFyOizqWX8NL+/vu+wTdBrqw6lD5JmiS8wQd1J8uOsq2gPMjgI8T0MhYaa877I5hfeFWjnDOl+fV46F/Zhj1OuRg==-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["23D15D965BC35114467363C165C4F724B64B4F66"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----GpNn/5S+IWuDdvMmcvJfpKy/O+VHYfkXnVlgI8waCbShHDLF5AO7be93e8rbfKmvOVW9IkhSm8AUttJOUAfE2Cu3grQt10xVhujiwhwsl2VR8AByTb8af6jXLqL4eYP6HLOBZGSy33OnWxV2nv9BgkDqc9gqgXOgTizjSLlAl6eGx4JLq7X36pd2O2yZw+/MTVrPzHnSuYLyFteVSVz08/4xEzHj7DWn1z8BeWdZKXwGxiTilPQIaw/w0LTBBEjIaBjhXBxHjOI7KUvX5M5mLyyqJaZfgNSo8QcrVMIi9QMYygMBVOzg308eBm+wEtTf/TW20YKBQOFA2VXIk2pGCw==-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----FZCPiK8Khh6EntevQ7+zKbdb/q4dutYMfesbI1WgSEmTkSJydFX5OJkx4uDDYVqAXSyXoFRdqGRsNqs2bi1G8g4YyIfXl47Lgj2bkoclJhMxesItg32Q2Cd1aok/rYAZrPcspmwZf0HyGqLOpp/SqFrf62Nsx3hrRdC3qh9qSsIg2eLNT0ESW3VtNg2ijdnhEjqLXwGxIHpHgaaQ0/qMznnE7sEhzydTYhfRrAxqayXI8IBJg3G5YwRtbrPSo/Xt8YmUhQgyQ4cZIOA9OlLSz7uNHOcAH7A8B+CI/nUuo31nPUXLNNQG28swMLnu07MF7/msPUleMjPprM2ILSdgNdkhoSQzklR9FZsUDTg1ewe5cNtaFhENgITvsd/6pRbFeSdNGhtdOquFNuJ+bDCUVKFWAtmZE+wSGlk0oZsoKG3dDu7AfsCJpdZbtSwNryRftLxvY17HKqS7MAUKVSPOy2l3QKJuczeywMIbbFpuwT8ByOLsyNF5R7ltRirE+rDO-----END SIGNATURE-----"]}},{"Identity":{"Case":"Some","Fields":["sha256"]},"Digest":{"Case":"Some","Fields":["0232AF901C31A04EE9848595AF9BB7620D4C5B2E"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----IrHgB3ibljXpN2cwDswLSTGZ/oHfnAN2Wmetse6V+JIV3imitqxxGGEHJ2uLDE1EVI2dY/brBZopyWwlhFPRXHwDZNti+NdRIfA1xVGiadLS1YbUoEcxmKl6CMEqYDHufhHO/IOlfdIYaxCjFG3TKYEHrzIQMAv+1rsh4iPiibp3AD8ikxAKqDmZUaAjuAkOObm5cqMHWeAZsOZnyaR76sCqLBOkh+UmIdJXZj1ecOu8dg/HDYGVkH0Po/BuShzDYeqmdObd+Ez0VlhmnfCgOXWMITqcoxylqDJga02KTbtZ+c7onh3wb+6tjOICR5jGF07ux5T4YVMXEhOVseVKcQ==-----END SIGNATURE-----"]}}]} \ No newline at end of file +{"Version":{"Case":"Some","Fields":[3]},"VoteStatus":{"Case":"Some","Fields":["consensus"]},"ConsensusMethod":{"Case":"Some","Fields":[32]},"ValidAfter":{"Case":"Some","Fields":["2022-09-20T17:00:00"]},"FreshUntil":{"Case":"Some","Fields":["2022-09-20T18:00:00"]},"ValidUntil":{"Case":"Some","Fields":["2022-09-20T20:00:00"]},"VotingDelay":{"Case":"Some","Fields":["300 300"]},"ClientVersions":{"Case":"Some","Fields":["0.4.5.1-alpha,0.4.5.2-alpha,0.4.5.3-rc,0.4.5.4-rc,0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10"]},"ServerVersions":{"Case":"Some","Fields":["0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10"]},"KnownFlags":{"Case":"Some","Fields":["Authority BadExit Exit Fast Guard HSDir NoEdConsensus Running Stable StaleDesc Sybil V2Dir Valid"]},"RecommendedClientProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 Microdesc=2 Relay=2"]},"RecommendedRelayProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2"]},"RequiredClientProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 Link=4 Microdesc=2 Relay=2"]},"RequiredRelayProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2"]},"SharedRandomPreviousValue":{"Case":"Some","Fields":["jaj43bDL+z6z8nV6JOrHRMd488DD+/t6fHZp9bOMib4="]},"SharedRandomCurrentValue":{"Case":"Some","Fields":["cvXb9GWk4MPwCyUXylg6IIb3AlnGAv4VL0QuMPUCwOw="]},"BandwithWeights":{"Case":"Some","Fields":["Wbd=0 Wbe=0 Wbg=2771 Wbm=10000 Wdb=10000 Web=10000 Wed=10000 Wee=10000 Weg=10000 Wem=10000 Wgb=10000 Wgd=0 Wgg=7229 Wgm=7229 Wmb=10000 Wmd=0 Wme=0 Wmg=2771 Wmm=10000"]},"Params":{"CircuitPriorityHalflifeMsec":"30000","DoSCircuitCreationBurst":"60","DoSCircuitCreationEnabled":"1","DoSCircuitCreationMinConnections":"2","DoSCircuitCreationRate":"2","DoSConnectionEnabled":"1","DoSConnectionMaxConcurrentCount":"50","DoSRefuseSingleHopClientRendezvous":"1","ExtendByEd25519ID":"1","KISTSchedRunInterval":"2","NumNTorsPerTAP":"100","UseOptimisticData":"1","bwauthpid":"1","bwscanner_cc":"1","cbttestfreq":"10","cc_alg":"2","cc_sscap_exit":"400","cc_sscap_onion":"500","circ_max_cell_queue_size":"2000","guard-n-primary-dir-guards-to-use":"3","guard-n-primary-guards-to-use":"2","hs_service_max_rdv_failures":"1","hsdir_spread_store":"4","overload_onionskin_ntor_period_secs":"10800","overload_onionskin_ntor_scale_percent":"500","sendme_emit_min_version":"1"},"Packages":[],"Routers":[{"NickName":{"Case":"Some","Fields":["nestor00patof"]},"Identity":{"Case":"Some","Fields":["//v7UKg6QUzCG0zak6lnSwBHBeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R42nQguGr0wFhJiYkT96zjPk35BTNKB5xN6vi9X4IAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:44"]},"IP":{"Case":"Some","Fields":["24.203.134.20"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheWalk"]},"Identity":{"Case":"Some","Fields":["//qR8YZj+Mzo5yWiST+Fs5C40zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6wQBNtJmg5AJipzhS/YOeudZgC05SFRoqFLQFqaf+BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:43"]},"IP":{"Case":"Some","Fields":["81.169.159.28"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:423d:b500:d308:6847:718e:e2a6]:29001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddetor2"]},"Identity":{"Case":"Some","Fields":["//eMRLpua291JQlbvhTvfL64l0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYWdfEdZXcFugP3a34dtEVP7qaX3TIqx2qqwxJ2RsNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:19"]},"IP":{"Case":"Some","Fields":["144.76.75.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:191:9388::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DoctorWho"]},"Identity":{"Case":"Some","Fields":["//WZlUw4IaKGIOlcCMvcYkXp3ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LY2BL9w1aKHumdXtgU7JoEmbpnxKYKcfgXjmW7wJM50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:07"]},"IP":{"Case":"Some","Fields":["195.154.200.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarkfireCrypt"]},"Identity":{"Case":"Some","Fields":["//MDHROq1Y7oSa1Lc4BR3h5R59g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l+PlXOkaTlX5b1EBXRz1PCKFXv/vCOvgN4WAT1Lm9as"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:54"]},"IP":{"Case":"Some","Fields":["31.7.175.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitCz"]},"Identity":{"Case":"Some","Fields":["/+o3ttp2xFjT41R23X0f0KmK5zE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WB9UBWKnwEz3aPhfr391VobxRJy9ITmJBZHOyfGat8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:02"]},"IP":{"Case":"Some","Fields":["195.123.247.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9403::215]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bionictor"]},"Identity":{"Case":"Some","Fields":["/9SzRqffegCrcshWPyacNSj+Qe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FemBEjuzXjIyeigGk8veC1cMoItsUBblUipJP8vHNs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["68.193.108.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["euler"]},"Identity":{"Case":"Some","Fields":["/8P0vk1cOSJG3Ho3slamFYw9hWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["shXlPx01EWdJgX2HZLhxMgDUo3L8WYrPSESZ4E/ZHB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:27"]},"IP":{"Case":"Some","Fields":["176.10.119.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SSnetNode"]},"Identity":{"Case":"Some","Fields":["/75MdAYtkHe4vJuzPSAHJ1b8t9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3I/O1VDxTG0UinXm++1U0mK1KXyGqadfONkjy9iK8AY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:46"]},"IP":{"Case":"Some","Fields":["72.235.37.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9leia"]},"Identity":{"Case":"Some","Fields":["/7xpRns31qxmWYu9KV+bDXQRmtw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["df8Cnl8+RKbCOZhcSQkyh8ptB0IH+VKN/TWXECWYsE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:44"]},"IP":{"Case":"Some","Fields":["213.239.217.68"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlazingMonolith"]},"Identity":{"Case":"Some","Fields":["/7u6fxxzsHqA9a91mirvSB8UOJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/mXRyCH+mcxg8/cpLmQlI5JMTwAay1IPTtZcEmDFvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:21"]},"IP":{"Case":"Some","Fields":["65.108.42.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:4e17::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/7YFyG1gaZGt7XhCJp+iWgO0pNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["12J9YSEhPd59K8irmFSRS+mBYwYh9FQD9fbOphtdVvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:38"]},"IP":{"Case":"Some","Fields":["165.227.174.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lule"]},"Identity":{"Case":"Some","Fields":["/6cr1oO8L8+Yg1bmvsHkkPMT+wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YWu5KMogOQae+3kqNZFt5htX34pVyHn3ovdcnuZL3fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:42"]},"IP":{"Case":"Some","Fields":["193.11.164.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:7:125::243]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay3L"]},"Identity":{"Case":"Some","Fields":["/5/G0TD6Jq466LI2iGkdxBnw8i4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bdp5pHxi3OIHNo9Q7WimOYctqcv5QzH56sHyiwaVbQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:40"]},"IP":{"Case":"Some","Fields":["89.163.164.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:12a1::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1jcbcaulbxid"]},"Identity":{"Case":"Some","Fields":["/5KaAftYuJiOmtenXejEFEhqgus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SagkyOdAD8Bz/eOQ0b2fzGeOAMbQxeZFWB9PhIdXD14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:33"]},"IP":{"Case":"Some","Fields":["141.136.0.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["einNettesRelay"]},"Identity":{"Case":"Some","Fields":["/4t8rV9QiXJQnXn5M/sk0vUkq3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmfzjIb3vu93yEdVYgZB090ObhZVIZqvhhjiZzA/Qsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:10"]},"IP":{"Case":"Some","Fields":["89.58.3.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:b8f:1478:68ff:fec4:27c7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MehlTor1"]},"Identity":{"Case":"Some","Fields":["/4fknvMweLBKXeJqrhcN34uuE58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6WD9MCRkRlioZdQxylaHZl2DCKj7sLFSZYqGypsSBgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:35"]},"IP":{"Case":"Some","Fields":["188.68.36.209"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:33::1]:59001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RicsiTORRelay"]},"Identity":{"Case":"Some","Fields":["/4alnjWiz38nRNp2jfvpCGCGhnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4nfV0RBlqPcqYaPn4enSp04GU74ylRrCTwc3J6P6Ymw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:08"]},"IP":{"Case":"Some","Fields":["45.142.176.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:c5f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssrv"]},"Identity":{"Case":"Some","Fields":["/4MwDUYWqQNbN1KyWVS7f4fFRJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRvJERoidoC67EWzjQOp9zYDr7tQzmALWitP4bZodM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:46"]},"IP":{"Case":"Some","Fields":["83.43.228.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra1"]},"Identity":{"Case":"Some","Fields":["/3wmBO/ui1iY/eEUWkyjXI5eVgc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qzB5Gz9HA7FMH4cFgQsC1XDoOOhOXiabUuH0hS4H1HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:09"]},"IP":{"Case":"Some","Fields":["193.218.118.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::62]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay01V6Rocks"]},"Identity":{"Case":"Some","Fields":["/3JI/sUFm8U+cP/+3cyMSYMb26E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXEO0pcaeMmauiRGfJKqYIBmDyOSJHCNyGyNHPNmFtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:18"]},"IP":{"Case":"Some","Fields":["185.207.107.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:778::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["/11Ti3LayFTUyP46Y3wkL1tUZJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJUysR6rk1w1s46Fs3lKME0YSv+LCSQSE3C2G70Vif8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:50"]},"IP":{"Case":"Some","Fields":["185.220.101.38"]},"OnionRouterPort":{"Case":"Some","Fields":[10038]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::38]:10038"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["/10wUF7pRUpTyLiEU42O+YZjLJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKRVi6r3l77OflYQTFg4VoHGU4Rlz+JGDtIkh1fO+OE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:26"]},"IP":{"Case":"Some","Fields":["46.38.254.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:2:44cc:3dff:fe89:3297]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0170"]},"Identity":{"Case":"Some","Fields":["/0UPaDt75JRwO5CCfbLb0FtiRHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4ReKHGrM3/V77jwVWAYfyEW/6CLxY6ZRF7aeYwlLH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:38"]},"IP":{"Case":"Some","Fields":["185.220.101.170"]},"OnionRouterPort":{"Case":"Some","Fields":[10170]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::170]:10170"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexnl1exit"]},"Identity":{"Case":"Some","Fields":["/zdZL5qn65OAxe+BfdGlSDqV2Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9MDNL+PhRejm+hDA3uyDyJyF5ZFzTD0P9pAloYT2K2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["185.130.47.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e03:2a::bcde]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer75"]},"Identity":{"Case":"Some","Fields":["/zXvDrRVBDytCRSWQd8CpjlDwdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jR5euqSuES0zUoR9WcWDQh64dHgzWyCZu7oM1W4MMVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:20"]},"IP":{"Case":"Some","Fields":["95.214.52.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8175]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuego"]},"Identity":{"Case":"Some","Fields":["/zU/XQEeaezaEKV7RtBrx7P+sZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UiiQgLGbUkKIim8GYVQ6Dm4XbP6DUC0G48cZGsx4o34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:49"]},"IP":{"Case":"Some","Fields":["148.251.90.115"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:7071::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay"]},"Identity":{"Case":"Some","Fields":["/zBZ535dIvHDsgzL4SVpGtJ1iN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eKqltXPvvinr6P/Z0uwXjOugM3pq568k1HgmxSKuCfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:44"]},"IP":{"Case":"Some","Fields":["185.163.45.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsjeufh24h6"]},"Identity":{"Case":"Some","Fields":["/wbnoGihymbOWT3OheJHeAfEgwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xcakia/TtBOzqMUXoQlM/actwfp4GMDSp/0Ueb02T+Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:38"]},"IP":{"Case":"Some","Fields":["51.15.37.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:e50::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DareDevil"]},"Identity":{"Case":"Some","Fields":["/wO+To+efkHix9loLOTWSW/uBiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8OkwazxUL/280M02cfXYmafA1fpBqXns7BZHznqkek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:26"]},"IP":{"Case":"Some","Fields":["216.73.159.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tgtor01"]},"Identity":{"Case":"Some","Fields":["/vT2sJAO1JLd1YYoamasGU36kBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWA/V35ZAp9TGPUo055vCgdiXy2x/vaSPVjfB9pxJvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:40"]},"IP":{"Case":"Some","Fields":["192.95.52.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eierschwammerl"]},"Identity":{"Case":"Some","Fields":["/t9JmJUadQ1deXTfJDA1SZ6EiC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UBEHrbSt7uTTLfs6utaHe9yI6qeKw0xug1TLlQ+iOyg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:58"]},"IP":{"Case":"Some","Fields":["37.252.185.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNinja"]},"Identity":{"Case":"Some","Fields":["/t1DqbmvmsuyZOWE7jVsVdg0UCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKM90BTY6furnqziZkpt3kjpRhtKkb4lUaubvd6A/l8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:59"]},"IP":{"Case":"Some","Fields":["85.119.82.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba8:1f1:f05d::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/tzapN38uYpbdAnw3XuWmZTBX10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTjQiH3e9j6WmBZ7nzRiSC7hdIaHRZ+hwxbKhUNOqxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:12"]},"IP":{"Case":"Some","Fields":["54.38.183.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::165]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeroCalcare"]},"Identity":{"Case":"Some","Fields":["/tL12BzKBmmOVApCA4yz1q73R8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eElcC01wnJLuNolSAMspUMN3ba3gh+5o9KCRV7jWCwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:13"]},"IP":{"Case":"Some","Fields":["5.2.70.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ADKP"]},"Identity":{"Case":"Some","Fields":["/qrpusi2dHu8OhTZ6aw5JKD946c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqzAhkEx033rz7OfAgUnTg0lZSJ9WqXBaAyhwGFkn0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:52"]},"IP":{"Case":"Some","Fields":["185.41.154.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.2-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra92"]},"Identity":{"Case":"Some","Fields":["/qp8gC29Z3jVMcXLzfsuW+hLoss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FvMO8NKYm8mRxJ3C6cdPg6OhNxSK+2937oK3d3m0kYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:08"]},"IP":{"Case":"Some","Fields":["45.141.215.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chito"]},"Identity":{"Case":"Some","Fields":["/qMh2PStdzIg/A1KKuefikpZ20I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RdLBk0/7yMT8bQKdEghNX6r1s8ajGvEp70rxTKajydQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:43"]},"IP":{"Case":"Some","Fields":["80.78.27.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:8078:27:0:504e:1b79:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["volodymir"]},"Identity":{"Case":"Some","Fields":["/oV8MENBL9VFTtX+9VxMVy5bcM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZNBRh5VUgGiMo3556MwdeEDNYBgJL1LxhzFVkNf10fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:15"]},"IP":{"Case":"Some","Fields":["46.229.55.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Voomoo0o"]},"Identity":{"Case":"Some","Fields":["/oAy3rpVOlz+jKjSS1ND3G9vIc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["piJ+DLSC1mFGKa43awYqJ2n6mol+D7ZHX2NPUE518Sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:41"]},"IP":{"Case":"Some","Fields":["185.101.105.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/n+cJVYsoWpX/xdgccHSJP9SUOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AJd05IULN0IB7D7wQUmIHwuIKqJdEImdC6hisMQ9Fuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:38"]},"IP":{"Case":"Some","Fields":["64.20.57.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rangiferine"]},"Identity":{"Case":"Some","Fields":["/nWlY9cIttFFmIQDZj/Ki/2I7BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i1cinrRXoyPCL4ii3B85RHK4YaYnjdccZYwQ97TfpvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:10"]},"IP":{"Case":"Some","Fields":["158.247.210.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:1c01:76f:5400:3ff:fed4:c583]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W0nuIKVExitTor"]},"Identity":{"Case":"Some","Fields":["/mvIToSYnSBYGDnwpy8Y0Edtekg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eRirzHH/Y6X0TAGoGlmFP/2E871At1mvkZ07MLOvEEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:02"]},"IP":{"Case":"Some","Fields":["212.71.238.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fe03:94e4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["juliansTorNode"]},"Identity":{"Case":"Some","Fields":["/mI9pOsrpyeR2aoRr3ySmQX3SDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uyg131tbHfSfY+Ot4HRho+aD7KLc3fSQo8N7UesbuZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:56"]},"IP":{"Case":"Some","Fields":["91.2.206.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HandStanderd"]},"Identity":{"Case":"Some","Fields":["/lvkRqLJSuyoLLtDY2fugP1hXKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUVmqHof/BoXprmfJcO27TRtuo8Oza3uQUfn5vUGK2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:33"]},"IP":{"Case":"Some","Fields":["46.20.35.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/ljsed1M0BxSSzd9Gnvb66ic9tU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NYVcfeu9bsgn4ERFzpvypFdezao0Aks/PihgMRVRDtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:47:22"]},"IP":{"Case":"Some","Fields":["195.142.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["turing"]},"Identity":{"Case":"Some","Fields":["/lbp5T6PaQtrSLSnYhO+ZPK3sa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wy677pqlelOzpZZeFuS1UORgUxKuy5nZRQMh8aokdUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:55"]},"IP":{"Case":"Some","Fields":["85.183.60.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc09"]},"Identity":{"Case":"Some","Fields":["/kaYoDPlRCxsHRuXlh+hg7+8e5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qgBrYUcLiiEU9ypsYn07PeMo2tQcHutjLUmDZNNx8Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:06"]},"IP":{"Case":"Some","Fields":["185.100.87.139"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/js+yuOYH1rZ5bRSyH9Albt/za0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8xCEChSXjimnNZCyILDahDaAjkFTreBadhQAM+oSHpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:18"]},"IP":{"Case":"Some","Fields":["23.128.248.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::73]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["x2lans"]},"Identity":{"Case":"Some","Fields":["/jn3wXwe7XzRDYT5mGpFjhgMDxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uO2PA0Fgg223pPtm3f4sfBd/Gb6WRjzEaVRIK4PI5iQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:31"]},"IP":{"Case":"Some","Fields":["45.131.138.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay09V6Rocks"]},"Identity":{"Case":"Some","Fields":["/jTjhT3vr0gvplji5D7jPziWLv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bC8DSHqmLdXpwJol7OtyPPQOPa4akVEIeRp8mOYrDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:12"]},"IP":{"Case":"Some","Fields":["5.45.104.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["/ixBqkfDAuFNkxhqt2BDSSuUDxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wxw+6wyQ9qnt0g2Z5U0xwlM7UuS6WXG65CVtmX4BYHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:07"]},"IP":{"Case":"Some","Fields":["80.64.218.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::f1a:87b2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PyotrTorpotkinOne"]},"Identity":{"Case":"Some","Fields":["/ilhgAGIM68DqOrNWJSmFGI9P3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OgZPJYxGCr6fLNlrnLWNaJyKcrvDIqIzeuhMYlxDNpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:17"]},"IP":{"Case":"Some","Fields":["149.56.45.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::17d3]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed"]},"Identity":{"Case":"Some","Fields":["/ht0x87gSTYTkpqS+aHYkOWNxkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zMxF9zXkbgnJA29+TLET1ijuis+1sK8CE6OsYHO245A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:19"]},"IP":{"Case":"Some","Fields":["195.154.237.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI25"]},"Identity":{"Case":"Some","Fields":["/hNkWc3n9ELw4QCb3jyKRoVrUqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZhuYQmENW3r8Q2BL34VZYkLFqZ9r+mCEU6bdMnNjgs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:44"]},"IP":{"Case":"Some","Fields":["171.25.193.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::235]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueStar"]},"Identity":{"Case":"Some","Fields":["/g+4e4Ig+BpfHTrgqjWQL+n4qtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["On9KK31X6SgXqWn018IGZaaw5WZ3yc8ESA7RK1bEO9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:42"]},"IP":{"Case":"Some","Fields":["94.130.24.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1e:c88e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COCAINE"]},"Identity":{"Case":"Some","Fields":["/gjb36tttUzsp/JdJZ7fHVl90ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HoQVeeSTGh/Q+NYHmBIvYGrWD6zzNnkdsL9tF0WIIZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:46"]},"IP":{"Case":"Some","Fields":["178.175.148.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:189::3582]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex42"]},"Identity":{"Case":"Some","Fields":["/gCjqDVoDmf7vIlack4mV7slPpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i+wxsXtwhtC0vDsocNYKFz1fej+zzIBrfljRnqONBtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:17"]},"IP":{"Case":"Some","Fields":["199.249.230.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e641]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebigowo1"]},"Identity":{"Case":"Some","Fields":["/fUD5cacmf0W6Bv3hfXC1pQdlxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MgWc3xbKwvIRWmcY+K1sVyZjEf5yZWQ5ZnZE1bXU6bE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:46"]},"IP":{"Case":"Some","Fields":["213.171.209.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:10::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marmotte"]},"Identity":{"Case":"Some","Fields":["/eGl99EojxD7PpXOWmffLVYN/FQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uGxdlp/3Fd11S0+JVIyCpDYE646Wg35eJD/IYGcZGX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:52"]},"IP":{"Case":"Some","Fields":["31.133.0.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4571:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI17"]},"Identity":{"Case":"Some","Fields":["/eEnMFzEECZeZrqC+1o+gBv9GE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jt6D7q20ou3Ey2ClyhFKtxFXWAwe9U+A4ZXns0vsOyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:20"]},"IP":{"Case":"Some","Fields":["171.25.193.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG5"]},"Identity":{"Case":"Some","Fields":["/dnNdAZYLgtWxKJ9RBJq6EPq9t0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p44PT3PnBc+6S78mIF3lbT3gc20eAgMcdDdytEXi3N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:58"]},"IP":{"Case":"Some","Fields":["193.189.100.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::198]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN24"]},"Identity":{"Case":"Some","Fields":["/dcAx5HMa7CsHCCZqCy8NnrUt2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q5Od2YKnlbv/L8DmBxMH9bnE8BzIqBWposcyo+snpyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:11"]},"IP":{"Case":"Some","Fields":["199.249.230.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64d]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip4a"]},"Identity":{"Case":"Some","Fields":["/c/qGMxkRhRV3l6j/DGDTGtC/sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/AC4x62fb/X4QYE7oNj1V92nW4idz9JF6shK1j73MPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:27"]},"IP":{"Case":"Some","Fields":["185.220.102.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::251]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE76"]},"Identity":{"Case":"Some","Fields":["/cRWtAq/BO0BxNLfYuPjQCX7jdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jqgZud+uGA3HeKVTvMHDp055yKN235SxHVCDkjbGbdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:58"]},"IP":{"Case":"Some","Fields":["37.221.67.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:106]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["/bqPtICZdTUK+DZZiKNzANCRA/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTg5aXrGeOfB/BN8GKr5XQqHQLydp23dco4mUccsPo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:20"]},"IP":{"Case":"Some","Fields":["185.241.208.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dorrisdeebrown"]},"Identity":{"Case":"Some","Fields":["/a7RXJjP56QW5WdvYUJU94QGEFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EBgE8jUVtsHeG4oZhLeORMbCtT7abqt+abZKiC/bets"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:10"]},"IP":{"Case":"Some","Fields":["185.220.102.4"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vicarious"]},"Identity":{"Case":"Some","Fields":["/a3VnJtavFc87SIkTrHub+66ClM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UcPyOmaJf3FB2nYUhEA6qsuNn2DFoLSXMjevXbfylno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:18"]},"IP":{"Case":"Some","Fields":["87.98.171.152"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["camilla"]},"Identity":{"Case":"Some","Fields":["/as3IqTqaobjXZrIQiLz4R8vbW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["usj9YGCTFPobAeP3UU+gUYW7VM3x98IzRJ6G3D6+xxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:53"]},"IP":{"Case":"Some","Fields":["130.61.51.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8000:6a00:2::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob03"]},"Identity":{"Case":"Some","Fields":["/Z140TLXamNoqYOxlH85unobC+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S0BvbPG/8ro17B+H8r5P1V3f0X912owd3csyUQc/wY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:27"]},"IP":{"Case":"Some","Fields":["188.68.56.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f847:745e:86ff:feb5:b3c8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FQ63HLEW"]},"Identity":{"Case":"Some","Fields":["/Y8RyTFaeZgZiC0OMEv3nyva5rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/o4t+zdX3Yn2gPV3vjSRvtsrxKfkIVLey8sSn32z+Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:49"]},"IP":{"Case":"Some","Fields":["62.210.85.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dezember"]},"Identity":{"Case":"Some","Fields":["/Xm3+SMIWLSOdfOJZhhAxwJREHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BljxfjyxUKRGbdTnDhD5Jf6V1TSOLGjkhgGmrAkUmdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:19"]},"IP":{"Case":"Some","Fields":["194.55.13.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:31:141::1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drymm"]},"Identity":{"Case":"Some","Fields":["/XmMVIPD7YP8o5BQxWn/6bemSYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["itNGZRbwBus3bBQCd7rlRQ4MSaoNDYp2MULHZ3tw7vA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:57"]},"IP":{"Case":"Some","Fields":["80.146.119.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lw"]},"Identity":{"Case":"Some","Fields":["/USRJ9MNj10SRlPZ73Nu30oStNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["stOfyicx8ML987WQA37llEU44+OWWVZ1k+WZ5rQmA/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:26"]},"IP":{"Case":"Some","Fields":["77.174.62.158"]},"OnionRouterPort":{"Case":"Some","Fields":[43261]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a468:8d92:1::baf]:43261"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Desson"]},"Identity":{"Case":"Some","Fields":["/THsKZiB4pN38Kh+4HmvPapV+tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ied6931/DbVca5Qpew/eLpPJFoTK+LG+SVx9DstULtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:14"]},"IP":{"Case":"Some","Fields":["216.98.209.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nova"]},"Identity":{"Case":"Some","Fields":["/S+biBrGQBAMQo30fcmoY9wvJTY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qPBzm+RS0gXNn1Hh+GEHf5+PGukF7v4qEA83ZpyD+ig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:34"]},"IP":{"Case":"Some","Fields":["37.187.17.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SummerTIMEBlues"]},"Identity":{"Case":"Some","Fields":["/RlSsi71PUkeDX487LhcPO9jyrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MsEylJFvJJdae0FB1nujPsIJlvLe0ILDP3WWJAdeCxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:13"]},"IP":{"Case":"Some","Fields":["37.201.108.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["velarde"]},"Identity":{"Case":"Some","Fields":["/RJ9EBTtPTav5QVYqIvV6Ns0pkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjxoaXpAcu9KBh11r/qUYn6nOq+PA7cGP3sUGORlCMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:58"]},"IP":{"Case":"Some","Fields":["179.43.134.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inthedark"]},"Identity":{"Case":"Some","Fields":["/OX/v6Uo3kvYZ0rPqlruGd2eC68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5M0076FHsU9aAflE6E29lcaFUGzHhewth08hCs/qbgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:16"]},"IP":{"Case":"Some","Fields":["162.251.116.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluppflupp42"]},"Identity":{"Case":"Some","Fields":["/ODAX34tC4JfoP0qN7pbrjw9bhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["op5NmVXPp7DEPppUdqKJ/fmWdANRXkRHLT0Ya31MBLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:30"]},"IP":{"Case":"Some","Fields":["148.251.68.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:31d6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["voltorb"]},"Identity":{"Case":"Some","Fields":["/NV5Qud+qDWQDR/UR7wftaMlqS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hw+FRdYJ6U8hSOpB+sr7TSYdnX1BHQC7pjN/x7qjke4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:46"]},"IP":{"Case":"Some","Fields":["112.213.37.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:9400:2:0:216:3eff:fee1:b8ac]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["shrimpmaster"]},"Identity":{"Case":"Some","Fields":["/Mzs3EQnPGf7N0IAE4Rk843fOaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2XYGh4jEtUP/go3yHUv0dUXN+Q+yaRwYFRANWqrLXmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:37"]},"IP":{"Case":"Some","Fields":["145.239.76.95"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:302:2200::390e]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChelseaManning"]},"Identity":{"Case":"Some","Fields":["/McNP1AMLqYgBBN7ATcgGpOitX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s2XtNrekr8sKOVz1/shiPKR4vDQshNiB+xw5buHCcCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:56"]},"IP":{"Case":"Some","Fields":["104.219.250.148"]},"OnionRouterPort":{"Case":"Some","Fields":[26918]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktj8rmhy53b16bwqg"]},"Identity":{"Case":"Some","Fields":["/MOS/CClwcW16Vq24kc15JPjrrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BU1Xuzh/PhbF2BtMfUfhXmI+WG/GvQ5Yi7dncyFehOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:18"]},"IP":{"Case":"Some","Fields":["85.131.16.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:14ba:1400::8857:e4fa:d28f]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["urkle"]},"Identity":{"Case":"Some","Fields":["/KUqKR3t/Octa35TilqRvpA+Ff8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LQpVYA3oiO51Rey2Y62tqwlW9+D/tP4V4t+jJZwf3Lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:49"]},"IP":{"Case":"Some","Fields":["45.35.33.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saga"]},"Identity":{"Case":"Some","Fields":["/IL+o+ioZ4WyAvTBRR+JxeEqigA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ttpgnuGgb0AP2nLB0Z73/v75zn2iO9H1nKBgb/3LgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:05"]},"IP":{"Case":"Some","Fields":["209.141.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:183::8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SSGserv"]},"Identity":{"Case":"Some","Fields":["/Hmq07A9P4A3uXkJ7ZgrjTnF+cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1n/ZhQIkpyFG203qdx9EgZX4fx6MiG12uqs53BaauDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:13"]},"IP":{"Case":"Some","Fields":["54.39.130.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Donatello"]},"Identity":{"Case":"Some","Fields":["/HLZmDx0pnviGrGlOG37yyqgwG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1Z/7A5hddzUvhFzStgfUW5JKsZnfzuF2ltKdGDO1aQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:26"]},"IP":{"Case":"Some","Fields":["190.10.8.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["/HKPMpyS1npDXvuh00tZM9qmD2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2I7/cxXQoVPTucemdWz+90wAEpDqNnAI69o61JkRzW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10139]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::39]:10139"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/GqEoSUYFbyqRHvugvaT6EfTJac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmMs6/U217WUp3Qnw1i7SQplFZYIbPe1VriUJ/ZJag4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:30"]},"IP":{"Case":"Some","Fields":["23.128.248.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::37]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GhostNetKennel"]},"Identity":{"Case":"Some","Fields":["/FtPkNGpu2tYhcprT07EfReDlS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2vWMhqWQFL4s5Tyd6p3yiovybdQ+4NXDDju7DuJCVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:50"]},"IP":{"Case":"Some","Fields":["217.155.3.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8010:67ae:5:4f4e:c47d:1783:952d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Valsec"]},"Identity":{"Case":"Some","Fields":["/E0DQD7NkEYxmLny+B4LN+16/h0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BXkcZkLlQ3f/JQbQCSpzajS4CAgRg8ACDEJiVRYGDLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:24"]},"IP":{"Case":"Some","Fields":["88.90.177.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bernhard"]},"Identity":{"Case":"Some","Fields":["/Eot/279jAZSsjMQwmTlObNkJGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+vvfaoeM+wBDbr9Ho1vTFWz+rKBjxArF0V1QASZD2rk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:43"]},"IP":{"Case":"Some","Fields":["212.227.211.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:83ee::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nanotier"]},"Identity":{"Case":"Some","Fields":["/EDMxhkfk9RRSt40elQvviY9oMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8NURqbFt2GV7N7rXJQQT/rpTaXRTq0faJb2QRQ6afk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:16"]},"IP":{"Case":"Some","Fields":["209.141.38.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RobRaspOnion"]},"Identity":{"Case":"Some","Fields":["/DFDl9kBLumFeXgm+CsjiEQium0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K3Nh6IFNRSqGaL1a8mk2N62P4NJPzmNuAi6fDwNt9K4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:13"]},"IP":{"Case":"Some","Fields":["49.245.93.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/CzVMOhcDlb9+/2+2rkX2dir6wU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEMMoXktT9TenrwSPwvRoaNzgt4PwHjLbAAXuea/E8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:29"]},"IP":{"Case":"Some","Fields":["23.128.248.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::48]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay12345"]},"Identity":{"Case":"Some","Fields":["/Cm64t1pQYV37f7m5mPHcieCKrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kH6tJ96WIn7uD9T4/YEA+nvU/6Iy9MKGIqINrf0NwRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:32"]},"IP":{"Case":"Some","Fields":["107.189.8.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f9d0:8d45:cd51:c1aa:271f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeusVult"]},"Identity":{"Case":"Some","Fields":["/CgjJv9IDCOBHvIkiqoAkhtKf+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BFkiwMTgUwfsJyV+HFYMyLCbRylh+HV4YkY6iwdwnq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:28"]},"IP":{"Case":"Some","Fields":["144.202.40.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:9002:255c:459f:9c0:1b9d:2e1b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torcatgirlcloud"]},"Identity":{"Case":"Some","Fields":["/B5EHgl7o2kwqi9hXvsyWvdtJZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9p79rB1fqoFp0KaBK+9EfP7gvHmXQYpIlHBy2O1hsIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:50"]},"IP":{"Case":"Some","Fields":["148.251.41.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kaisa"]},"Identity":{"Case":"Some","Fields":["/Ar4taO5UwDCoeCsGsnQCZsxATw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EpPyrmJaH+r/+DPaTVR38tD426xoh0OLHFMks6u4UIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:15"]},"IP":{"Case":"Some","Fields":["185.225.69.98"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev9"]},"Identity":{"Case":"Some","Fields":["/Ad8JbjbsxMtOX198DySv8FMnXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAXio2hVoHwTjkpfsi+t7Mrw9WOIIjmHFTfblmmUjdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:46"]},"IP":{"Case":"Some","Fields":["94.16.121.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:8a8:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HyNETRelay"]},"Identity":{"Case":"Some","Fields":["/AScE6D9RdPX5FS35ypXzuFa/2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0CBOQAQuIygUE23etcyKDxhXEW57rQGbymUzWDyCfNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:22"]},"IP":{"Case":"Some","Fields":["193.148.249.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2fc0::bad:f00d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo245"]},"Identity":{"Case":"Some","Fields":["++6ExJwDukqkIyhETnzDoOiLvew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nn2MoKXgHPo6h3IfP0HkZ70T11SpvkHQsnZCeqdrO7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:03"]},"IP":{"Case":"Some","Fields":["179.43.182.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NochnoiDozor"]},"Identity":{"Case":"Some","Fields":["++Va+726BGVD+FEXg3YN9B27IG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imo3CSzxd8lsxijLArjg0M7IOIVzYQhE+3jUf3vVL1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:08"]},"IP":{"Case":"Some","Fields":["79.204.15.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nononicetry"]},"Identity":{"Case":"Some","Fields":["+9QJN8bhUjynFwNvxP1ezIMqk7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qs9h6Fk+8+JE2hhvdxAKgBYYKux8sPVLzuy+ubsZMK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:50"]},"IP":{"Case":"Some","Fields":["188.68.58.105"]},"OnionRouterPort":{"Case":"Some","Fields":[4825]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f808:948b:b5ff:fe41:2238]:4825"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeliosReaper"]},"Identity":{"Case":"Some","Fields":["+9IDh/ZNZ+1TrFvS4DAtRLLaNgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["un7X2BshSw60vWq+y+PooyLH2WIORNwMBn/g8WeWEL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:20"]},"IP":{"Case":"Some","Fields":["51.161.35.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:205:200::1f8d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PPSStudios"]},"Identity":{"Case":"Some","Fields":["+81dhCjDQrAtlBVvUjWLArPy5Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NZTUJ15imuiYxJXNeocYeCc2Ad9QMGI1ViAt2bXrcIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:11"]},"IP":{"Case":"Some","Fields":["73.203.30.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+8XUwLGCb6alurdQCOKSNJ0rzBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BtkScH/TNsPa8sx/jNrYFNCPs5HO3QL2HPMWZxw7pfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:43"]},"IP":{"Case":"Some","Fields":["93.95.228.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveGiza"]},"Identity":{"Case":"Some","Fields":["+8KFakhwXz7RflBPj8iexkM+0l0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qmHBeFTRzeWbJI6Zpobw58B5MzGgiKMlKXiocVLpCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:48"]},"IP":{"Case":"Some","Fields":["65.49.20.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pnamstor001"]},"Identity":{"Case":"Some","Fields":["+7cl64wvCZMXkz+MVGmysiSfNsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mlMtK09xjIz6/KMwyb6s7pCeuda/0sBpXJNdbR9KuTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:56"]},"IP":{"Case":"Some","Fields":["134.209.85.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::fa0:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorion2"]},"Identity":{"Case":"Some","Fields":["+7ML+QLOakYrX7jDdutencavWnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7aFEc+6RnBLc48qILF9uE+hvVqOb2FNQplP9OvR944"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:33"]},"IP":{"Case":"Some","Fields":["94.16.120.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:a28:48a9:2ff:fe5f:5356]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yanush"]},"Identity":{"Case":"Some","Fields":["+6g68BwYKWb4xUoAJaatS72LTBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0+1WVuIMACjde7kutUnhLbU/yLzwzOdNSKPfVGLVgxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:19"]},"IP":{"Case":"Some","Fields":["146.59.34.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangolin"]},"Identity":{"Case":"Some","Fields":["+6DdEkr7AyGWRSYjIkc89cWd91w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yHXIyoIvY1kz1bXnLJG8hXCfAc1d8GReU4ckO6CFPy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:05"]},"IP":{"Case":"Some","Fields":["104.244.72.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Sandefjord"]},"Identity":{"Case":"Some","Fields":["+5qsOi3kDgbcmC01jaq6sA10VUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VuCw+/86UmnQDtTSNkF5C1098kRrD0ShpNOnLyn0rQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:04"]},"IP":{"Case":"Some","Fields":["51.174.128.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:79c:ceba:1b0:0:100:2851:ec96]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Small"]},"Identity":{"Case":"Some","Fields":["+42upKoLhF1RhCN1PG4SUWe6rGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9eSzwW0ald/DxCNQPvYePAVBC0qYetkNr0dA/DfkRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:08"]},"IP":{"Case":"Some","Fields":["63.250.63.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra72"]},"Identity":{"Case":"Some","Fields":["+3myvnB/Jy+/4VhPRKP6UVb38c8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qrDZi1yL2k41CgkD/gK1O6nkM35qsxTaD3/q7jBN3Tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:13"]},"IP":{"Case":"Some","Fields":["51.38.127.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ROOK"]},"Identity":{"Case":"Some","Fields":["+2koGtNcmb1kMu+NTtkAXo321OQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H3RofIFGz0XG0oSdjSozSmh/x4L3ceJzbymr9t0DD2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:21"]},"IP":{"Case":"Some","Fields":["146.185.248.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:5f5::19a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jjc"]},"Identity":{"Case":"Some","Fields":["+2RtkV3X4VMXZKQqsUlBbn4O9Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LelKHgY5tiIFsh7pd+gMA2g00zC3Oa/bh6zgCFscSlY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:59"]},"IP":{"Case":"Some","Fields":["185.132.133.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeepingben"]},"Identity":{"Case":"Some","Fields":["+0sLCmMlraKqOFLSi2gNMlns5E8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QPeK3eGbI9OFloKeZQ+W746vOxHNl7qhsQ4kw1UPU64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:24"]},"IP":{"Case":"Some","Fields":["208.105.141.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber02"]},"Identity":{"Case":"Some","Fields":["+0oOT0cLNueokVmoVpUwpHwpK6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CUh1LhCxul1hSu8oqynYPSTM5MMgjvI7QSkVgj5uljM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:11"]},"IP":{"Case":"Some","Fields":["185.220.101.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PankyBG1"]},"Identity":{"Case":"Some","Fields":["+0UxgX23MWiwQQrUv+qv4gbxp2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lppvX9cCSSJ8xmWgghePHC9Rf1F8dN871mqMxZIcbAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:42"]},"IP":{"Case":"Some","Fields":["213.183.63.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jcmediator01"]},"Identity":{"Case":"Some","Fields":["+zqP6f7KeTWztwfrmZDaoujWCcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EeGFRYMX+yonGpUVcGbnzvsigctngdoiUcAH/bonhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:17"]},"IP":{"Case":"Some","Fields":["50.230.202.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:1b5:91::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KrazyG"]},"Identity":{"Case":"Some","Fields":["+x4XRUVJVIvm0z/55phzXDHu6lA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/rQ/BF8fSBhi2IkjCHOwflUoLR3svTSiucrBOJvQ9nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:31"]},"IP":{"Case":"Some","Fields":["174.94.89.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratap"]},"Identity":{"Case":"Some","Fields":["+w3f6RXLk9lInT5kTvRrj05Rlns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bGTYFQfVvEyOEfM6MM205LCaToloPG307aUtU2bxeFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:00"]},"IP":{"Case":"Some","Fields":["51.81.155.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Najdorf"]},"Identity":{"Case":"Some","Fields":["+vCogp45BjZp+mCbkE4PuNXh8j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6Uv8r7ZyU0XYatqgswfCAoIF8rv/lwyBnXKvMdl+wU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:13"]},"IP":{"Case":"Some","Fields":["49.12.57.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:fff0:4f:266:37ff:fee5:cc35]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BadGateway"]},"Identity":{"Case":"Some","Fields":["+tjLTHz784434mFkxHsTYkQXs9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34nj/Iub3WA/41NDj3/vuwaBaPADEhEw7rlK5/BtRmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:25"]},"IP":{"Case":"Some","Fields":["162.55.163.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:86ae::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MoneroToBigHold"]},"Identity":{"Case":"Some","Fields":["+scwf+kFQh3EzMDKBNNq+MQ7Emc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eQLR1HUKIcHaMiJAXjxbYtZWRaO036IfcXLcSwE+1M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:29"]},"IP":{"Case":"Some","Fields":["185.236.231.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["aster1skRelay"]},"Identity":{"Case":"Some","Fields":["+r4+a+bzFiYAFp+GKtxXJ0SPdxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GTVZkM0wzXWrZ6IHxp4mbsFswYAMryWDGzCtVq/n/7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:12"]},"IP":{"Case":"Some","Fields":["121.173.56.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex96"]},"Identity":{"Case":"Some","Fields":["+rluAGlZbKytzx/LokB/zlBe0G0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b28hBC38xlEJHieF/+Qg1QmihfHgOw8pq/SCGQLVLYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:55"]},"IP":{"Case":"Some","Fields":["199.249.230.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::185]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Overbite3513"]},"Identity":{"Case":"Some","Fields":["+qQtzzZ8ljdosUHKSrqtoU2Ao/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sR8SG3qqVL/ZywD/cg+kWUJVesGp/g1pmea8jxFxrRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:28"]},"IP":{"Case":"Some","Fields":["107.138.131.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c983:1000::ea0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire64"]},"Identity":{"Case":"Some","Fields":["+oX+gQk/5dU93OotuihujMycbd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dM8QGhV5WsPgmNN8gbfOMX+E/KcBrw+PL2W4Ke7rPN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["91.143.85.52"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efe]:465"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["namedrelay"]},"Identity":{"Case":"Some","Fields":["+nxrT9vc925H8s8yNZgAs7o5Amc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J8ycC6/266PEtRxTGqLAfg7Dv5TXz7HwEecE0olDxuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:17"]},"IP":{"Case":"Some","Fields":["167.86.110.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2035:4794::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Morgoth"]},"Identity":{"Case":"Some","Fields":["+nqoCUlJTc4sHiZeHvoe5lknCjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2TUlMv8v1p/nwgdMK8ZiShYZNEDrHQjfzVPFmmIMrq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:15"]},"IP":{"Case":"Some","Fields":["178.254.12.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:38d::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman5"]},"Identity":{"Case":"Some","Fields":["+nJHyzt3r5v2JDDCNOt2I/AlKdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z71S1O8bKBksZhpPsXTRTRE7asAl0vW+AY+kD3lGn/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:25"]},"IP":{"Case":"Some","Fields":["85.204.116.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:3dc:f2:43cb:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KyleDewbrow"]},"Identity":{"Case":"Some","Fields":["+mn3xRBn2ahBaJYsRqykgKkM01Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WDH/TVwVxuKWbsjcS5aBbUN0Dxze0VMiO6lGATDNX/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:39"]},"IP":{"Case":"Some","Fields":["202.165.228.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metaverse01"]},"Identity":{"Case":"Some","Fields":["+l8as0aPgIsvsF8hVcBIGjUyx4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A2A9HLS0YfsTnRKMmmzrND4yghMCb1ETOPDEzwup9uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:19"]},"IP":{"Case":"Some","Fields":["185.97.32.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:66c0:1:1::34]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["53c70r"]},"Identity":{"Case":"Some","Fields":["+lYeU03d5jgw+gsKSEI17SO7J6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pRXHB60EL+qLcrjI05mfgRABzoXeEwpnSXjCpKPpffU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:31"]},"IP":{"Case":"Some","Fields":["89.58.32.236"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:d04::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kllen"]},"Identity":{"Case":"Some","Fields":["+lW0/86rvTu32WfnkHKuDoIs3ZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JOEOQZbWd3weLpFo6AX3lU8OoWawMUoI2uIcsTL0WEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:35"]},"IP":{"Case":"Some","Fields":["23.82.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["+lS9v2BUs/UigemTscAeu/nFmHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m1y96fjX8ntcwOXN8SLUPh/2nCdOW9Snu6XvtzVAd58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:02"]},"IP":{"Case":"Some","Fields":["185.220.101.195"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::195]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charon"]},"Identity":{"Case":"Some","Fields":["+k4VhUXoAyRKs3WGs65bjCWhL/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XzYzEpiXYQ4RCVlmpEwi2uRrz5MelxdQtemBlunzVSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:03"]},"IP":{"Case":"Some","Fields":["45.136.30.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:687:24bc:e7ff:fe86:785e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p8miz7ttgr5"]},"Identity":{"Case":"Some","Fields":["+k0C9x5bWdpD65i8lpSHUVT69v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9/D4ZlCS3vUNuWh5f9zz0B9MWG+qc8xO9oUv+ZeYJSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:50"]},"IP":{"Case":"Some","Fields":["37.120.168.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:500c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+kyWbAS4Cyo5rVoBde4YJO9mE3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4i6+m6/wQZfQ9mar2yjdbl82AZuMsBW1jrSK9CFpy00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:19"]},"IP":{"Case":"Some","Fields":["185.207.105.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erklig"]},"Identity":{"Case":"Some","Fields":["+jsuPfNHmqFTOpJdxXAlOlfUuBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3HQoi6Jx3CjAyu6RW5Cv3HLBF/HDjL96I13K29tR7ME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:51"]},"IP":{"Case":"Some","Fields":["63.170.122.227"]},"OnionRouterPort":{"Case":"Some","Fields":[28231]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["barnabe"]},"Identity":{"Case":"Some","Fields":["+jPCyAaWM9Qd5QP5p7xBYfnWop8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L0VZxlAz86fxG3ysR+YFwWQeGfjmC6G8IGPHSJD7P5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:00"]},"IP":{"Case":"Some","Fields":["176.78.197.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hohoho"]},"Identity":{"Case":"Some","Fields":["+hkPvlK3WXUd0SsOLuSnBmepv0Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hgtlaYMYEw8J3E3sXa5TZFRAahKSWlECQ0wlPmsBw9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:47"]},"IP":{"Case":"Some","Fields":["146.59.233.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::c48e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie2"]},"Identity":{"Case":"Some","Fields":["+hhFwxO4jvSei+HyOwLNCscCtjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2Bj27qZGcF065Sdyl40vH9tO1okSAvttFTTTvbH5qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:20"]},"IP":{"Case":"Some","Fields":["65.108.136.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishWingedHussars"]},"Identity":{"Case":"Some","Fields":["+g6y7RkA0s3h/FV+T0k6tWj45dM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkQsXVw5L/dRd1r1qxbZcJ82ZGpckBeVxiJ/FCXZUbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:42"]},"IP":{"Case":"Some","Fields":["85.89.172.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zw1ebelSuppe"]},"Identity":{"Case":"Some","Fields":["+gmvUZiTJ3RHLKMnBN1jP1+VmjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FmUE3N+VaQNskKZoadYzMHN8hAs8vQv22+jzDUqjjpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:05"]},"IP":{"Case":"Some","Fields":["80.133.251.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lucatona"]},"Identity":{"Case":"Some","Fields":["+er2ipy1VF3g6sk7SjGm0gadNtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tT6N/rs29WFFNDxzm9MauzSS6mj1dc+qRpdQRbRhP/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["5.161.51.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:1256::1]:9991"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenTwilight"]},"Identity":{"Case":"Some","Fields":["+eMtQFj3816bxPHYw7LaoMRGZmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+D7i7VjXOMBYA4SOW092QNCvpSF0Z7GHwnl/XUr8gm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:43"]},"IP":{"Case":"Some","Fields":["51.158.148.230"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:2000::a]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+d1bRe10pDnx8O5mNkULulyL8jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYsQPMdRMr5ODfWEOAAU0QRkZNTFdrcKe6b44smyPQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:13"]},"IP":{"Case":"Some","Fields":["104.244.72.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noeditconfig2"]},"Identity":{"Case":"Some","Fields":["+dlC1qMgd3lAoFHIpLPvPA8orTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NH+a2MD6fa5o1fm8VucpDxSeWHhGB/KK4LHxUq5q62k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:50"]},"IP":{"Case":"Some","Fields":["149.56.157.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindzero9"]},"Identity":{"Case":"Some","Fields":["+dDDOMTjwL93fWaBoJBJAnF7qjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s0ay8DdtT3J+aKwVJxMIZmHLmnZyNH24mTd5VxPocw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:40"]},"IP":{"Case":"Some","Fields":["193.38.255.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+cs/1MeATwMQWq8b97bH0tp91SI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XFiJWJ59j5aNvwPGk2LTmZoWJHFoSqZIlGJUBxPYuIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:03"]},"IP":{"Case":"Some","Fields":["51.254.45.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SyrxEditedTheConfig"]},"Identity":{"Case":"Some","Fields":["+cX5q0oYu6giarEPR7MLPEJ5zn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9tJzs3ZFKQ1IbE/FIYoohRSzN8ak0Cw9E8s0aq8Lb3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:57"]},"IP":{"Case":"Some","Fields":["192.9.247.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MasterOfDisaster"]},"Identity":{"Case":"Some","Fields":["+akZDGwOnkyOHzjMAzGxYyZStRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7A2jYBhWzej+IoOYkUi1Fs+iH0kxjcdHpJrvLXSRBE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:29"]},"IP":{"Case":"Some","Fields":["167.86.94.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode3"]},"Identity":{"Case":"Some","Fields":["+aKKtx1+TkRjCGQaVW6lO6Vfy1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Djc6wljgS87xlQCQD1HxlTRABqvLg4ls7aAljTtBSaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:08"]},"IP":{"Case":"Some","Fields":["209.141.45.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recodex"]},"Identity":{"Case":"Some","Fields":["+ZEM4qPp1Gf83Z1SKGlboYJ7AQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSG0EuGDSF7tBhgl04CGo4b0WeaY9EkfJriFNKc0vMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:30"]},"IP":{"Case":"Some","Fields":["138.201.132.34"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:2f66::2]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarinAsagi"]},"Identity":{"Case":"Some","Fields":["+Ypw5UJ7/xEWQAEfeuMeU37PHdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMjqW0FRMfbdL8q3tCi9s+Nc/SpMiJVpUY7mTcmmgeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:21"]},"IP":{"Case":"Some","Fields":["23.239.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBigShow"]},"Identity":{"Case":"Some","Fields":["+YYN7c62K3SnKLUO43QpOsSDhto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDwH1wXGXa2qgDhuO33v9l26g14gm6MxMRG81YPDJdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:33"]},"IP":{"Case":"Some","Fields":["74.123.98.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay35at5443"]},"Identity":{"Case":"Some","Fields":["+Xz3bZEhrChyfCKQJoGptTmrrpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["72qOVlxj6P0iQW+ivNWYJ4s2BiLa+qIGpb2xFDZnwek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:05"]},"IP":{"Case":"Some","Fields":["140.78.100.35"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torlux"]},"Identity":{"Case":"Some","Fields":["+XlxSCQN6sRt6+VRMdUZH5JjSRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AtrxN6QaBkAgVxZZ+uZSz0s8IJvNLTiUE6t4o/BIhr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:52"]},"IP":{"Case":"Some","Fields":["158.140.230.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["+XcqyLVxAMDSu6j02llWw/GTmA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rpaWiHl01QgrerxNY6PqxC3FJy0It1Ub5qU0U9X7mWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:48"]},"IP":{"Case":"Some","Fields":["185.220.101.60"]},"OnionRouterPort":{"Case":"Some","Fields":[10060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::60]:10060"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididreadtheconfig"]},"Identity":{"Case":"Some","Fields":["+Wy/xcB52DngGQKAKnAClIbSrYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ZWSdIlHp0TiRr3Jazth0flm3570zBUn09etb+EnUIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:12"]},"IP":{"Case":"Some","Fields":["209.182.232.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aloha"]},"Identity":{"Case":"Some","Fields":["+WdPRaJcqpd+e4coB+CgcMEh9fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GLVJoDRZAY0MYD+7IroRXSFx8x51yIs44y77KitcnGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:30"]},"IP":{"Case":"Some","Fields":["95.211.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yihwa"]},"Identity":{"Case":"Some","Fields":["+VY2CqXx5hBk4mcf4jHFBk0q/q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywkwx2dzR+ByuXXEphBYm3YZ/clUPHDZrBHNBiUK6Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:40"]},"IP":{"Case":"Some","Fields":["187.94.253.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0137"]},"Identity":{"Case":"Some","Fields":["+UCMFEs214pHursLtT3/Zx0jvlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zrld9WgsjDEDSdEEYuXnd554nTxaDRt7b/gw6dssdDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:33"]},"IP":{"Case":"Some","Fields":["185.220.101.137"]},"OnionRouterPort":{"Case":"Some","Fields":[10137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::137]:10137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+TivoqXo7ZROK1Bt4smcz1V4Lo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NPIkPfu0Pdc8Y6dOaGbNo1bssWcLeCYRyf4l7N6fxH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:29"]},"IP":{"Case":"Some","Fields":["77.8.1.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt98345"]},"Identity":{"Case":"Some","Fields":["+TbHS1yu86PnLqZrjyLeTeBot3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TP406XIGiXkUOuv7Fu6RSZzaOWftsIa4EKm58nL9bOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:07"]},"IP":{"Case":"Some","Fields":["185.245.60.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird31"]},"Identity":{"Case":"Some","Fields":["+SRt7ytlOAcjbaE08q6rED1Yq/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UrtXQ5qcWRMXbOKnl+iTAkRVxqh2oepJB5f50kfecyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:30"]},"IP":{"Case":"Some","Fields":["91.143.88.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::3d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+SLCP/aKqtvSyaOERxtjaUqHm6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y6YlFvFihfKegrgtH5lDtR+x5FUIlOy/nuedvu9Pzmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:13"]},"IP":{"Case":"Some","Fields":["5.45.104.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1750:680e:2aff:fe12:6258]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim02"]},"Identity":{"Case":"Some","Fields":["+RkxwlNDwbBzZBtcRtK92/4EufE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Xm5MN27zTepNSAYqQM+W3pj1tOTZq5vX+G5tU6Aqqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:26"]},"IP":{"Case":"Some","Fields":["24.134.234.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer80"]},"Identity":{"Case":"Some","Fields":["+PbanW3XnJ6jxov59iazabc5j20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4aWdMcILhqTYfMsNCykf13FC/uP4f9DISNOlHgIrAtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:23"]},"IP":{"Case":"Some","Fields":["95.214.52.156"]},"OnionRouterPort":{"Case":"Some","Fields":[8280]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluxe3"]},"Identity":{"Case":"Some","Fields":["+NJ7FjuSR7Iyou7mjdi2mGlcKN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esAts+ZacxdR34/juYl945/HWtwEg9Zf21NZGBfo9I8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:51"]},"IP":{"Case":"Some","Fields":["78.47.18.110"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:4023::110]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanguardarchie"]},"Identity":{"Case":"Some","Fields":["+LYtOjZ/cmzQEeyakxtU9Lndm7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYyZNeOUXjjCryfucjDN0+VdQis6etFagJdms0xvKGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:00"]},"IP":{"Case":"Some","Fields":["104.128.48.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay17L"]},"Identity":{"Case":"Some","Fields":["+KqNjMugxfKDbeYxXN+m5KMaCJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["54Eowte4mnUUPeE1wMYTaWRTUUlCvkQWK1xOALVi5z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:25"]},"IP":{"Case":"Some","Fields":["5.34.183.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+JV9YeKaYmQAApoDpjSEAOdQJgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3IBvWofooH5dfiqjmcoYE3sgg4bhxjXUKVqSk+6RCks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:37"]},"IP":{"Case":"Some","Fields":["108.161.139.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bwanzie"]},"Identity":{"Case":"Some","Fields":["+IchsNGENhrSSxTP1WgygkoOefI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K4P3L6G+7kmxUATclMrL50m860bWtvTkpxMwa5HIqxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:12"]},"IP":{"Case":"Some","Fields":["68.183.163.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::23c6:2001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse06"]},"Identity":{"Case":"Some","Fields":["+IZDajRJe7Cj3iNbLsO1NY6Hw7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTzUjN+N6V9wp4GW0fP1p8TWvhktUdz5Cd7cpX3bZCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:40:18"]},"IP":{"Case":"Some","Fields":["82.223.70.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8105::1]:9666"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["screwTheNSA"]},"Identity":{"Case":"Some","Fields":["+ILkpLc0R8VhYXAFyOaSsKcICAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T6kEeo7fN4W5Rw7I4VdDxlk1ghmBkV8kfwICWrbWGAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:24"]},"IP":{"Case":"Some","Fields":["152.70.197.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay17at5443"]},"Identity":{"Case":"Some","Fields":["+HisoppkT/Nh2Ziwckhj78B3rhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wMlC8OkEBCdELiM7ktg3UYMzPA5HeLWKiVQzpDcNqh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:11"]},"IP":{"Case":"Some","Fields":["140.78.100.17"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bullseyerelay"]},"Identity":{"Case":"Some","Fields":["+HOiOCbvm4I1+2Nd7ENoQhFGWXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esjfv322rs/7uWoqTmWDM42FAViXfmzm4oKeWrcDv7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:43"]},"IP":{"Case":"Some","Fields":["84.165.122.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torushopyard"]},"Identity":{"Case":"Some","Fields":["+GS962bIoR4glFaEZJnC+ZVDV5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XN1dfVzqgzPwzvU3GEdkX80Mg5HMDD4Osdb+MZ4/nVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:28"]},"IP":{"Case":"Some","Fields":["94.139.3.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["+FJ5719X5socuHGGLDqhglQkrbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1AGGFvUpv3TtLqMby8efA6WHrQZbWwawXppH9cB8L8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:17"]},"IP":{"Case":"Some","Fields":["86.59.119.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:86:59:119:83]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["+Edp7i2XtTgHkq0g592DjdW6/0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ALZhB9XqdSeUt0Br7/c2tpADpga1RNgLo0aTmvcSdJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:52"]},"IP":{"Case":"Some","Fields":["23.128.248.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::226]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeeEmmCee"]},"Identity":{"Case":"Some","Fields":["+EXf2w0uyr6/hbN9CSQOaZagjXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4SHMzeywn5n+eNuu2QZpiBahEBpuaYuCLtHqK1vYKjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:28"]},"IP":{"Case":"Some","Fields":["185.107.195.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["udeu6Piengui7yoothe"]},"Identity":{"Case":"Some","Fields":["+D/VLU8Uzzl0zrzxE0tWoBU7yDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Th2QLQedDnt+0guVMvN52+Yijuo7s7TP5lBjueTJZK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:45"]},"IP":{"Case":"Some","Fields":["45.62.246.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2607:8880::1846:d8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay01"]},"Identity":{"Case":"Some","Fields":["+DxpnyX1m4Jy8UXOpxy75lqlkdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWFvDO08sEtsVcw9LzrmAkEoWxnoO6JYMQtZnUdAUpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:25"]},"IP":{"Case":"Some","Fields":["89.150.132.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyberbits"]},"Identity":{"Case":"Some","Fields":["+DZEZmPx64FvE3CJVfEF0LL1yOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gjTt/7rshqQg+G2udoM/CLQIppL7Wy/sOpXu1TKO5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:06"]},"IP":{"Case":"Some","Fields":["212.129.32.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber22"]},"Identity":{"Case":"Some","Fields":["+C4iIRIet3ot4+aUECcmUCfqI3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FcMxXKNDXJldtz7Rk8lF0l/dvg1VuSP9kb6+Z12QjQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:52"]},"IP":{"Case":"Some","Fields":["185.220.101.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::11]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaellaTeam"]},"Identity":{"Case":"Some","Fields":["+BZ/TmhM6oOMyCmZI3MpbTsdxHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9v4oDojTRyP9BEmVFq2NbMHrD+QFdDXlV3Jis6nXu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:41"]},"IP":{"Case":"Some","Fields":["178.156.41.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8a84:2040::232]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARS"]},"Identity":{"Case":"Some","Fields":["+A/eJ+/LP2p7TizFFxM9v/p4ui0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iNerMydMXefxRIKoGD1F7hQqbheoNOWapzQXNzOhPOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:39"]},"IP":{"Case":"Some","Fields":["213.183.48.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:f900:1:100::53a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elbasan"]},"Identity":{"Case":"Some","Fields":["+AJ0q7kxN4LEdPcbwX6ltL9cB+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofKhXjiktqXx4feeMaUeoO4jQNGRlBZR47BkqBAcbn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:06"]},"IP":{"Case":"Some","Fields":["31.171.154.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uncloaked"]},"Identity":{"Case":"Some","Fields":["9/misorEfzKN/sqmbFknGfzOHo4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["109G5a+AdjYEwS9LqQ8+jYix5BtSzebNcyhYEjO/zW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:41"]},"IP":{"Case":"Some","Fields":["91.121.103.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1:9c6f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl0tjdevde"]},"Identity":{"Case":"Some","Fields":["9/bHuh3/pNSnKO2u0RxE10Zqowc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yWyRoMGT4+ZuXl80Vk1qCNmXJ5fyw3WUTqsZ+7ojvkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:12"]},"IP":{"Case":"Some","Fields":["84.252.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra23"]},"Identity":{"Case":"Some","Fields":["9+1BWLcRRhfo9zfGXb6H7muDRFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J+KpxhSH6AYW63n1WYlIGEZzbGnZxEBje7XXbQDxzTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:48"]},"IP":{"Case":"Some","Fields":["51.195.42.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["landsend88"]},"Identity":{"Case":"Some","Fields":["9+XNz/uHVJUyRzGUOT5hOFcYVPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nng4jBMcrdsplSm+2j7n4Faoisc8JjEQT0/m/rg8zQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:23"]},"IP":{"Case":"Some","Fields":["129.126.111.54"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mstirner"]},"Identity":{"Case":"Some","Fields":["99rv0IXSQDkr8eA2nKgRm/Ikec0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uCTzhqBQbPRIeN+9qMdOE69bPwtBa+wQ97oUtyh22a0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:10"]},"IP":{"Case":"Some","Fields":["185.125.171.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lupin"]},"Identity":{"Case":"Some","Fields":["99C3jjQ1HB3+A+LIh0b9mZsE1F0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t9iCk8GEqt6o08pp8+Ri0TiRKdX2/JIws93xXyku3lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:44"]},"IP":{"Case":"Some","Fields":["84.211.247.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pooclown"]},"Identity":{"Case":"Some","Fields":["97sDvHfOtu9mR4xYo0MCiVjrdpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rt9Wzma6rpA60/AgPoDKyQvfeqtwqz3vlzULPc+aoVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:50"]},"IP":{"Case":"Some","Fields":["23.227.173.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay0vpsfree0cz"]},"Identity":{"Case":"Some","Fields":["97Ak2wLGARhcIC4m3/0q1SXBajY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C09cCbKKm26qa7L7cAM8yxszRFJp8NA7b7q1s5nW2cM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:56"]},"IP":{"Case":"Some","Fields":["37.205.8.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorB"]},"Identity":{"Case":"Some","Fields":["968M1MRsF20cj42h02lU4jcGmFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7c0D1zp6V3AIlSWbFoDgOeTtefxP1Y3xwwpqJ9HQBlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:16"]},"IP":{"Case":"Some","Fields":["85.195.232.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:ad8b:50::b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockstars1"]},"Identity":{"Case":"Some","Fields":["96BS1O6i9LyULfsFSvLcVKKjfl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rSO8gfk2xXoEKHGqE1Z5yYN7GW4F+q0zEatSRjxdUXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:24"]},"IP":{"Case":"Some","Fields":["174.128.250.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de4"]},"Identity":{"Case":"Some","Fields":["95NwukatwDzBCGaSTuSjxHC6/pM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5YOqam90+vU6dqPbib315dZF9T2hVI85ZicQGSxjAlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:45"]},"IP":{"Case":"Some","Fields":["45.142.176.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KRSPYCHICKEN"]},"Identity":{"Case":"Some","Fields":["943eGCDInjqQjqZ2DSiHTP4EBm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["35ozNJaPc/hsBZ9NqEeMuE/AIaeg8aVxlIGi9wEzXv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:07"]},"IP":{"Case":"Some","Fields":["174.0.21.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trolling3"]},"Identity":{"Case":"Some","Fields":["93EG7j82athclbBplsynq8ZuySI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R8hOhopd1acwBu29QfMVs1FA7J1KflMy/ovEeG4LM2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:58"]},"IP":{"Case":"Some","Fields":["77.68.83.86"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zeus"]},"Identity":{"Case":"Some","Fields":["922OqGQ2i60Y4kFSmWQn0TF/Vg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kKhmTHtj0DtlHb2KduCh5u2bdDtXg9cPdxDiK5d5Q3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:11"]},"IP":{"Case":"Some","Fields":["104.149.155.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:6600:0:135:ec4:7aff:fe0e:757c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["92vrikrEG/g2QeOYgC/hrabSUxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9SKS9RqcqtAz6SwjE0X0P3xYX9SfjLf/TT0SUGzEJxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:11"]},"IP":{"Case":"Some","Fields":["23.128.248.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torchon"]},"Identity":{"Case":"Some","Fields":["92gkkKgwH+56u6xkuBiCalOboag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aY/wgtGto6I2vhDFAb9dIKahM+BZEnPF1LPBTzfKLNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:07"]},"IP":{"Case":"Some","Fields":["82.65.188.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:240:6790:b9f9:2aed:f31a:b612]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorCHI1"]},"Identity":{"Case":"Some","Fields":["90+qJjyQfw/dfRP6YJLYi63gn9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Y8/G7OtAxstAgplk/Aq3Up43N506bgCPKQ1mxobJ94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:37"]},"IP":{"Case":"Some","Fields":["172.245.134.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["90qb3Qyi7+B5B9cKoYtD2SPj50U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XP7mBBNQe8eNj8VNkIrfEPROY5955zI8vpA70egi25k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:16"]},"IP":{"Case":"Some","Fields":["37.120.185.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN1"]},"Identity":{"Case":"Some","Fields":["90R+metcvU1euRPuDjWsZCtcHvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FZXFOALG500QzlOS8BrzAMv/7aj9qs4GR7NclFD9p28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:11"]},"IP":{"Case":"Some","Fields":["199.249.230.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::120]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor06"]},"Identity":{"Case":"Some","Fields":["90HlEkyxJwDalGt4ybLdF11s0qE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7vGcUb/u6SJGn4LLNqJNcbmpDxrzDB/pZJJtEuriyVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:25"]},"IP":{"Case":"Some","Fields":["163.172.154.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:60c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IAMWATCHINGYOU"]},"Identity":{"Case":"Some","Fields":["9zcfVx3rKDiRAIoXXt1TO3SnQyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x+nIXzm5yDGVLKhzIznrPJqA7t5XPTB0URE8JoHxl34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:22"]},"IP":{"Case":"Some","Fields":["185.225.68.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTOR"]},"Identity":{"Case":"Some","Fields":["9zIwPa4BpO+a8oEnQllQtJTFmSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5sbGjpQ8Kpu0bgtu0drPjXwLPLTiIPoANWcwaC/LYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:52"]},"IP":{"Case":"Some","Fields":["5.255.97.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTor"]},"Identity":{"Case":"Some","Fields":["9zIbKu1mrs8HyxGIDMlFPrN7OCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["If81Ksf3z4HrQC/5kBKubsIOYsbFKyU+hjc27/rBwbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:53"]},"IP":{"Case":"Some","Fields":["185.146.232.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NonPersonallyID"]},"Identity":{"Case":"Some","Fields":["9yVcI2FQCb7C+K8boZ5qsuU0Xnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FQYw7SnrVdzHWqGs/egB3lELVV+u/XmByZcKaq2YNA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:54"]},"IP":{"Case":"Some","Fields":["70.95.141.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["knowledgeforrussia"]},"Identity":{"Case":"Some","Fields":["9xT8ioa3bNv0W1ZzeiXmAdebXI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+glgijYR20GTsTaNMUKDrGK3mJ0vxGSK+2BqBKwvfkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:37"]},"IP":{"Case":"Some","Fields":["134.209.242.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["phoebe"]},"Identity":{"Case":"Some","Fields":["9xBpPD8IaBD+GZEgjRLBNK0T0kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xD+6q/C0EBjcXCYk2MRgzrGYzFZKEsaxo0j4S7FQay4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:31"]},"IP":{"Case":"Some","Fields":["83.79.15.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wedostor"]},"Identity":{"Case":"Some","Fields":["9wt8XNctdMf58tyE+p0g1RuhNhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0RvF+5LOxGGEwORF3rBvgyj5zAuOs0X+/EF9lmDfLAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:37"]},"IP":{"Case":"Some","Fields":["46.28.109.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:1::4205:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragomir"]},"Identity":{"Case":"Some","Fields":["9wJiRoI8YyKSHzq4dTfrsCCrAeU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esldu8uXfahoSP3PDFJU9hhL51xwZo7y/3yQveEDjD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:14"]},"IP":{"Case":"Some","Fields":["45.249.90.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["9wGVPsu2km8pkSaYB4hY7jwqMUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8YOB4uY5ZYm+sJYGWdD8CDO4UEZ+HBMxZEQ0Sg9RWxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:41"]},"IP":{"Case":"Some","Fields":["185.241.208.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["9vwFml0coFzbuCToVEaMP6sebwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gMEVgZQubp9PvA5UB2eZb6wVuXRSnul0TesxmboE8zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:27:48"]},"IP":{"Case":"Some","Fields":["23.128.248.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::212]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt35265"]},"Identity":{"Case":"Some","Fields":["9vn5QpEndgZvRNi9rOycXNo2hvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nOr1xwO8zr3+lJHhe/emUxBAsAYbviRNEP+FFdWZcS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:21"]},"IP":{"Case":"Some","Fields":["185.245.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv124"]},"Identity":{"Case":"Some","Fields":["9vWbZLJJTymJnoByvLDms+BwqRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpqb1llubfuHkG4V3Zx4etXqQrGEMVGR5ujwWGp40g8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:53"]},"IP":{"Case":"Some","Fields":["192.42.116.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5524]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tondro2"]},"Identity":{"Case":"Some","Fields":["9vTI2Yp0MP6pW+wel4b241KA+hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oVw2srT+SF/5miYDvEi1lMpfHFAP1U9NDuXnECK8YiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:28"]},"IP":{"Case":"Some","Fields":["84.16.229.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay22at8443"]},"Identity":{"Case":"Some","Fields":["9uz9MaRvUXTCVmDhbDxi55l0+d0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pd2zXN7QGpNm4lLkT9AQOpSNb/d3zXyxiN7x4Pqtjhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:44"]},"IP":{"Case":"Some","Fields":["140.78.100.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JPsi2"]},"Identity":{"Case":"Some","Fields":["9uxGkzzo1PrVzNqoscWjd2hfxSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEBCiKg+ooOy2zMZjTbBZEPBRtY/TINTl8mR9kkQDlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:02"]},"IP":{"Case":"Some","Fields":["37.200.99.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::1ba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["9uW/yL6lqfMy7wmzitaDKv8T900"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["itJ5aex0SUWs2SnxI9Ij0yc4ufb486v0v4meQnqiR70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:43"]},"IP":{"Case":"Some","Fields":["208.67.104.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dhitechnical"]},"Identity":{"Case":"Some","Fields":["9uJP2w0gjUApLtknT+t/r6UprCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zTsmxmQXBMSTMZ/v0gF+bG5m8iBuFQ0L/DW3jV0wsfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:17"]},"IP":{"Case":"Some","Fields":["50.250.2.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["interfesse1"]},"Identity":{"Case":"Some","Fields":["9tYAzxOzu+KpGgZT8eydAOfLOms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HS7BMalNGA+Ju4hgXYew2ohhkqNnkJJ+ycmDJC1pI9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:15"]},"IP":{"Case":"Some","Fields":["85.195.208.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:c603:b01::42]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["9tNKop/FUaXhcG0WS0SAnW3AkkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BO1vZmS5/guNaVvooj6RtnvgtyI80IHKZK7YLPR7Oy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:38"]},"IP":{"Case":"Some","Fields":["151.115.60.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tRooo"]},"Identity":{"Case":"Some","Fields":["9tMLWt4T+Pa9yQ6/FAdBAqeWKg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ltlGpvrn5nEatw1FHZbryfQRsuFXtQKz6KS8qb6mU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:13:23"]},"IP":{"Case":"Some","Fields":["87.121.52.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imfrank"]},"Identity":{"Case":"Some","Fields":["9s/rfjbdF39JfSTa0ev84nD+rhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gERyqYgDRCXkVaYSYyf/ScWSXrf5SopQDkb5sLWd4fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:44"]},"IP":{"Case":"Some","Fields":["69.207.41.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["9sqSXNzRsS9pOktux56pFNzcmAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4hEU9j0JsDg75WzPzqpWFeS2TRe9gBEH8UTzXmuC/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:38"]},"IP":{"Case":"Some","Fields":["185.220.101.45"]},"OnionRouterPort":{"Case":"Some","Fields":[10045]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::45]:10045"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartleby"]},"Identity":{"Case":"Some","Fields":["9qyJGSkzs3uJ9t8sTJvHb5iu45c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WcBE0FLksGGNvch1opJWwBlKWVWnF1kasVrIVHEKcvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:16"]},"IP":{"Case":"Some","Fields":["79.116.34.118"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prawksi"]},"Identity":{"Case":"Some","Fields":["9qNY3TZ7MoLW71gkydReGhnH6BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tnGAQLaNUONUj0wOlag6pulzsFnonw7c6VZH4l1HB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:55"]},"IP":{"Case":"Some","Fields":["192.160.102.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::8]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9pkFB4jYVIl5CEh+CLRKP8vXX9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WqqvrRzhNXHqmjLXVS3q0cQ8cAozg1fQUDcyt0rJFpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:53"]},"IP":{"Case":"Some","Fields":["195.133.192.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhShitARelay"]},"Identity":{"Case":"Some","Fields":["9pMfRlos8eXsROgrpS5IDvM4JM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EZuuL/2BBJXEuGQmhBFWweZg5ll2xCaccUJ6pUfAjBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:39"]},"IP":{"Case":"Some","Fields":["24.28.101.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pretzel"]},"Identity":{"Case":"Some","Fields":["9pELZRb6rHdj/2uKUF2cNj7I21Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDGnVEOuv+iRSs1NPG0gKcGTW8hY0WrHljs54/znVus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:56"]},"IP":{"Case":"Some","Fields":["93.174.93.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infiltrator"]},"Identity":{"Case":"Some","Fields":["9pDgKE16uqIjF7yHFwxnw2rpUKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MRAgTFxclu3jy8Mf4Wg/jfwsCxupnOKscS5VmzqZvfE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:22"]},"IP":{"Case":"Some","Fields":["82.165.206.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute16"]},"Identity":{"Case":"Some","Fields":["9op2Ui01b4m+woaImjgiJQVnvi4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/QdaOqUMShmtf/7HptZ8cw1mAELNoaFHxUPaxOUvF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:15"]},"IP":{"Case":"Some","Fields":["185.220.103.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poiuty"]},"Identity":{"Case":"Some","Fields":["9nQN6r/V9iYS+gJaUHnqcoRrH2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["khSaVQqZ26mzJ4aCLb9CqglGHtZs1GHe3wTODsMv2G0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:48"]},"IP":{"Case":"Some","Fields":["65.108.204.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:a093::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maikastorrelay"]},"Identity":{"Case":"Some","Fields":["9nIOSRpK/MrRrYpvkCK5AlPFcA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlL69RRd3wdDudsky3vI4kBU4kcaFIo8LUOFzWwRRVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:18"]},"IP":{"Case":"Some","Fields":["134.255.219.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9m26Kr2UHMuCphQ6+NHNPu8WIvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KeMnRzCsvEG/iQV6mOw0L7l3s1TSpk3is0lWTR7Vdj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:04"]},"IP":{"Case":"Some","Fields":["37.120.187.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anotherRelay"]},"Identity":{"Case":"Some","Fields":["9mkePrfKs8h2qqiF5oAbY9yZjDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0cGX/KRVHfkX7/iywRPoMyrjDAl8Fkedwqte3ChHQ9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:30"]},"IP":{"Case":"Some","Fields":["144.217.4.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ebTorRelay"]},"Identity":{"Case":"Some","Fields":["9meYt1f/zAKEHik3+PWabfsz7TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NoMjmdUR96C3XSkXc/lKyW8YL5Gz0oiTzGIieYGxw8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:53"]},"IP":{"Case":"Some","Fields":["178.238.236.41"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2034:1631::1]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex79"]},"Identity":{"Case":"Some","Fields":["9mTl5QtNIW5ZQNp+nPZT9fncVhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJ9aFyRAXSqKuyHOySG2v5DGlNOISxaKC+K1SwqpWog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:58"]},"IP":{"Case":"Some","Fields":["199.249.230.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::168]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saltedcrimson2o7"]},"Identity":{"Case":"Some","Fields":["9mETHDA+KlkxiZ27CSugNCMIHB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WoBikxg9n/6MSTtSvUDupb/oYcrMlhobGaqcCqEYzv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:52:18"]},"IP":{"Case":"Some","Fields":["124.170.17.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9l3M1dDn6UpIScN8pcF3zpwb7Vs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/WqHVBhKB0Of2dlplDrpiXAV94V+4IEQISRwTvB+QE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:59"]},"IP":{"Case":"Some","Fields":["163.43.195.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BuyXMR"]},"Identity":{"Case":"Some","Fields":["9lBQLpCRZyqZBUuzR27nM3aN0/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNuNliGwzw2l/GXS9iXls3HvFMiyhyGwQLfXxFzNnis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:13"]},"IP":{"Case":"Some","Fields":["70.187.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE72"]},"Identity":{"Case":"Some","Fields":["9iR+TORSMaC0Q3f63IVJ6C5P314"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sCALJvVDxFunMbZFQN/JSSv9HeC6Z4dXorW7iAxoIGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:18"]},"IP":{"Case":"Some","Fields":["37.221.67.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:102]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giganonNL"]},"Identity":{"Case":"Some","Fields":["9iGr24+4b7es0nretwf5Oo4yAlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4SkzeF8wTC2lacP2QmKurFaKxA/MxSwbMGPjKVqatxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:41"]},"IP":{"Case":"Some","Fields":["77.166.80.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lena"]},"Identity":{"Case":"Some","Fields":["9hyLFEw9dp/YDjnrWJyn+OYeCMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yOur439IGGsrxCNIm0wssRliWrd5UzaF8Rb9xJXL8Fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:50"]},"IP":{"Case":"Some","Fields":["185.163.46.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2db8:13::91]:9054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oromis"]},"Identity":{"Case":"Some","Fields":["9gQTHcxDA+UduHagF6PcloT9Yms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/X0mt/WsXFe6llN32eyDsVWGABCVX6JR/lbleFWeBOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:44"]},"IP":{"Case":"Some","Fields":["217.112.131.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis72"]},"Identity":{"Case":"Some","Fields":["9f1+9DB/jFw5gUeHfzKp+fceIJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q3TAaIvO/6w0zerMM6Vq6JmKBsL1vCs7NZ/OqrSYL7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:06"]},"IP":{"Case":"Some","Fields":["37.221.65.168"]},"OnionRouterPort":{"Case":"Some","Fields":[8360]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::3aed:101]:8360"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nap"]},"Identity":{"Case":"Some","Fields":["9fhJeznBAivKeGASOQ4f2lWrc+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Suann9WX/IWsD83vJTv5fo1/DKrdD2mon7rschYpT9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:39"]},"IP":{"Case":"Some","Fields":["212.227.73.217"]},"OnionRouterPort":{"Case":"Some","Fields":[11143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6bc::1]:11143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trustn00ne"]},"Identity":{"Case":"Some","Fields":["9eG5a/5wD/i/Cd5aAhgeu0jiGPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9Q2L6py2FNaskvRzDKGqMMA7nedv4QmFzpDvG2wE3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:22"]},"IP":{"Case":"Some","Fields":["84.234.250.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summ"]},"Identity":{"Case":"Some","Fields":["9cdHsdd3tP0zQgOCADOCWZLGTGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2N08rKjOXpf3z5J9XZVh7BUnbTJgC08koPVV672cDiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:43"]},"IP":{"Case":"Some","Fields":["103.77.4.182"]},"OnionRouterPort":{"Case":"Some","Fields":[27015]},"DirectoryPort":{"Case":"Some","Fields":[27960]},"Address":{"Case":"Some","Fields":["[2a06:1280:101b::2]:27015"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ansarelay"]},"Identity":{"Case":"Some","Fields":["9cLrV4uYQgad5WDwD4CLa9NVTio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0zox7/MVNTdb5I9hcTinmY8N7/fYsDKUM9kRJQwQb4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:20"]},"IP":{"Case":"Some","Fields":["62.78.187.78"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golTorNode1"]},"Identity":{"Case":"Some","Fields":["9b8sg16G3ykdx9ht0eFUL0iH46c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V0jBi+Dw3gMXCMM6IruZ3Al8wtMJFNxrewI+n731gkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:29"]},"IP":{"Case":"Some","Fields":["188.190.109.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myContribution"]},"Identity":{"Case":"Some","Fields":["9bmVKmcq8qK2dm2Ap7vSmZAAl1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fe7xCtMi5pTDiZNh8WQ2p89TGcbuwY6bE6UF1AP4Hbw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:04"]},"IP":{"Case":"Some","Fields":["141.144.249.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bistrv1"]},"Identity":{"Case":"Some","Fields":["9bWP7kRXPDv9fRdtkYultAV1Gdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4pGvwusucZE1ahhOIHdshKzcrkidtYs1oyuiqPutgMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:39"]},"IP":{"Case":"Some","Fields":["212.47.227.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a4:933::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marinsThighs"]},"Identity":{"Case":"Some","Fields":["9adl1ZHcBSAeyqLBjAlbHRcIU8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZFKQu+HE3l2aNOa1vZ37fHvHEdy1TGfbTi6cPhVmvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:51"]},"IP":{"Case":"Some","Fields":["24.4.166.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torbuntu"]},"Identity":{"Case":"Some","Fields":["9aHQPAGfntTpdqC6x6R21+r3tT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uv4KEPTUWrkQXwawE4ML8uchZt0IkAkjhhhkBelT+0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:17"]},"IP":{"Case":"Some","Fields":["98.63.230.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:246:c200:22d2::8a7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WireCatLLC225"]},"Identity":{"Case":"Some","Fields":["9Zao+RSv4vB3Oq977iyoJmN7RwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eB3s6dCHeSnplAfsaCuqEbET9UHj44DDQbt0UDyGZm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:20"]},"IP":{"Case":"Some","Fields":["45.45.225.1"]},"OnionRouterPort":{"Case":"Some","Fields":[45555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc52:30f::1]:45555"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9ZWaHxFUgH0+Uah7zcpuCWNTV50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VK1B0IBadv1V9s7eceQ4PLwnnRAf45NGojAwSfCxBqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:03"]},"IP":{"Case":"Some","Fields":["5.2.54.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[9480]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddgserut"]},"Identity":{"Case":"Some","Fields":["9ZHbDtj63aY43rWZ2LCTCi4SL3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smiaE4zeIRprnslFA3iYaeYGfWk5V9bjUZwvpDGccf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:01"]},"IP":{"Case":"Some","Fields":["89.36.218.127"]},"OnionRouterPort":{"Case":"Some","Fields":[18364]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:a140:10:e7f::1]:28196"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["9WEqdUVYANzUJ8j9kZ71zOHVGVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V7lSXlsnAAYjsOjr13KimQElNizFcefA8sH05KfDEe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:57"]},"IP":{"Case":"Some","Fields":["51.81.93.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MeowRelay2718l2137"]},"Identity":{"Case":"Some","Fields":["9VoP/Zfxcq/niEaZ2hvwjA6UNU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i4dztJd54Unpzc263NxNWozZMgP5GrTs+HjgH6dh7fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["146.59.3.106"]},"OnionRouterPort":{"Case":"Some","Fields":[2718]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::51ae]:2718"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9VR3JBgobBPxnAuKT23Ao4XqC8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHvt0sFuyOWaRw+kox2VAZV+SJe5ymrQFf8XoPLTGWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:10"]},"IP":{"Case":"Some","Fields":["5.45.98.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:45:457:d2ff:fec3:e823]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot2"]},"Identity":{"Case":"Some","Fields":["9TGwuRvBWmjBtk6tj/eu4RHgYiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXMpgWYSsE6ywVig9C9hII+BBgNFhC6/lhZAg52gHJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:43"]},"IP":{"Case":"Some","Fields":["139.99.134.168"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1blu2DEicebeer74"]},"Identity":{"Case":"Some","Fields":["9TFplZIj9d9zpwX+cmHxKdumZUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtdJB4oYR1yFVhtM63qB5Lxn4hoJ6vKFmboGgfplelA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:27"]},"IP":{"Case":"Some","Fields":["178.254.44.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elhackernet"]},"Identity":{"Case":"Some","Fields":["9SYR2n4e4UNMi0U2jQhyxDegKVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M6GmfMUOEWI9fkTOCu5b+vTI5OKOYSkvMfoI2IrfOqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:20"]},"IP":{"Case":"Some","Fields":["91.126.217.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM10"]},"Identity":{"Case":"Some","Fields":["9SBNmKs4lLgHoMJBImf0tpukkcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2KD2I1Fo4nM2kmNpwiDrawu5SJ9JJVa6Juz+1JJLkwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:35"]},"IP":{"Case":"Some","Fields":["185.239.222.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["9Re6nyQTYTxEds4rgsOgPGW2tnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IvbCcfGlMA/AvrEPX/K9Jw8e1x/gpA7mLS/DwUtFEcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:29"]},"IP":{"Case":"Some","Fields":["23.128.248.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9RZc8mllonyQtisBYUHGDj5t2fU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xJbCamiKRLY0Z9V3dNUtEtepOi1MA24wp+cxgC0th8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:38"]},"IP":{"Case":"Some","Fields":["79.246.108.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["momo"]},"Identity":{"Case":"Some","Fields":["9RK0oEOFnXvt4ojY7iEWPXYJdPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVsQNZXlfLwokiJIEBI8X8SjNokT6mmJ51DIZ70pvek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:16"]},"IP":{"Case":"Some","Fields":["94.130.189.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob02"]},"Identity":{"Case":"Some","Fields":["9QzwKg5qnZsl9+siD8Jve9G3SZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MC1COBv9OyGFsCLBoHc3awUrp5Ck7JjQLO6EY7G9rRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:35"]},"IP":{"Case":"Some","Fields":["46.38.242.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:7:64d:547b:27ff:fe79:b9e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumpChugsDick"]},"Identity":{"Case":"Some","Fields":["9QqPFsVVrf8+WCew3QNc6G9xoOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/e+7X+4pXoL1uJXpVB3nMGMlw7TRCRhftt11cxhDCSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:05"]},"IP":{"Case":"Some","Fields":["65.108.46.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:521d::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypervistor"]},"Identity":{"Case":"Some","Fields":["9QdV1QGMI/bNEV8jyVzLLci2CLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["spZpvC19J3MJH628GzqCKrQniFxxv7otxAfw2sH0Dsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:50"]},"IP":{"Case":"Some","Fields":["95.216.19.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:134f::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KingJasperTheGreat"]},"Identity":{"Case":"Some","Fields":["9QB0jIUvo6hTn8f4ZVIaL1rS+C0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ApaBTsLUaCxx50rSWGbIEJNiFaxuT0LVEZjY7vcwPVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:00"]},"IP":{"Case":"Some","Fields":["84.159.57.70"]},"OnionRouterPort":{"Case":"Some","Fields":[61461]},"DirectoryPort":{"Case":"Some","Fields":[61462]},"Address":{"Case":"Some","Fields":["[2003:c0:bf1d:c500:b2c6:8ee0:75f1:24f1]:61461"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DidItWork"]},"Identity":{"Case":"Some","Fields":["9Pw2fsxbpfAXelU63eESAUhKHaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SA4ciakIduqEWoD3xfxpnuhl5hqqFxNli54t0m/YsK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:48"]},"IP":{"Case":"Some","Fields":["129.151.198.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9PuagDCK5xyoBX9BWN1rPI7jdfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtqmJDAIfPnDnaep3GIvfYBMRbNPh72AD7G6MKbexPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:09"]},"IP":{"Case":"Some","Fields":["199.15.250.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:7:b74::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["puertasecreta"]},"Identity":{"Case":"Some","Fields":["9PYFqiHEYzzLW427wc7uXFkMbc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V4nBgyFAoOZ52r3ceiheSw7bKtJXNsiqvshWfjcr1AM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:50"]},"IP":{"Case":"Some","Fields":["46.231.93.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rodebardwaterski"]},"Identity":{"Case":"Some","Fields":["9O1Vp6FLZI+1TJAhZfgB5JN7Vpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lF3Sw8V+IdlcOkPdvTUL5bIbIVJIfr+mi1Y7Xpz5gZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:00"]},"IP":{"Case":"Some","Fields":["143.110.156.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::fa:1000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IQOnion"]},"Identity":{"Case":"Some","Fields":["9Nbpir4GWA+KNTRwZSA33YZFtHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CSTDydSYe/QO3hNGWBLEt0+vPBAKCf2kLytBkzxlCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:18"]},"IP":{"Case":"Some","Fields":["71.42.125.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XtorX"]},"Identity":{"Case":"Some","Fields":["9KTXjxbpoDU61bvvRjLHAi4g+yA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Smrftut0gGwqGQfviAcudLijIh8k/ni7QflE0OUqHg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:24"]},"IP":{"Case":"Some","Fields":["51.75.171.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::678]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leafspring"]},"Identity":{"Case":"Some","Fields":["9KS5adJuZHXSqph5BPuFYbzc988"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FENY/XZIdTWNQnYwunIZ53JxPTj8Pnk/HZ/dY0+CobU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:19"]},"IP":{"Case":"Some","Fields":["136.38.0.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9528]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Islay"]},"Identity":{"Case":"Some","Fields":["9Ic7PsMyW4HcNsfjitOl7RKy8zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRfrIUnKZh8XhJZ2YhID09Olyz9OJT9TtdfrOMfffoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:56"]},"IP":{"Case":"Some","Fields":["37.187.23.232"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:17e8::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elenagb"]},"Identity":{"Case":"Some","Fields":["9HsTv85O9Ize9sTXx6mSCOu5crU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrNb8ZWaRqWBIGg/Vt+muSa5Typqs/d0iS4DevfnT0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:59"]},"IP":{"Case":"Some","Fields":["185.233.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9HZ181Lng8TQ3BUFbrkdyk9DwL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eaV7Seaw5ifzJlh/ZNkNCB86pxuWucwNPerUeq4iaq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:06"]},"IP":{"Case":"Some","Fields":["185.244.195.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:747:4804:22ff:fe7a:e606]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x1ea7deadbeef"]},"Identity":{"Case":"Some","Fields":["9HXlmH5EorexQ6K+4/gSju/X5aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/1v1dYOMpVu6Hhk4Mq6Kd8+Fxz1zHstaRIgIW5HP5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:32"]},"IP":{"Case":"Some","Fields":["188.68.45.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:47a:de1:ea7:dead:beef]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacymiddle"]},"Identity":{"Case":"Some","Fields":["9HHLAAB5ctwtx0jdV4XABaTqrXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8KyOa7A4rWdMLhtHwlzhh22sctnrelpxHADu7/aQis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:30"]},"IP":{"Case":"Some","Fields":["89.58.12.249"]},"OnionRouterPort":{"Case":"Some","Fields":[500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:60:cb7:3450:e2ff:fe8c:ae3f]:500"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["origan"]},"Identity":{"Case":"Some","Fields":["9GhU7azNFoKP6q/Gxu3cB93wRBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsAZwZYxknRL/ku5a1QR65s9w2GDY35z+CtFqoExOvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:28"]},"IP":{"Case":"Some","Fields":["178.32.222.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e17f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OpenWeb4All"]},"Identity":{"Case":"Some","Fields":["9EUYUx1n9+yXZFqT1bXhF7WHxuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8F21R2UoxGlQO/+Fqsz/HdoA+b6bvu9E0eMW8OQwYRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:04"]},"IP":{"Case":"Some","Fields":["107.189.6.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed17::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheCheapBigfoot"]},"Identity":{"Case":"Some","Fields":["9EP+12Wx8+/0twnCxQns/c/1oo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hlwCHr8uO+daSLUMVwL7FvktZbzFxuGQxrpzxqQN8ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:36"]},"IP":{"Case":"Some","Fields":["178.128.255.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EvilMoe"]},"Identity":{"Case":"Some","Fields":["9CYydc9UpoNu571SexMog2pvBuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CHe4Aszy+Gosz24quh2XrAz0VtMAnUBeBnbSl27i/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:20"]},"IP":{"Case":"Some","Fields":["37.187.102.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:266c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TaurNuFuin"]},"Identity":{"Case":"Some","Fields":["9CKTdDsLxKM8gKVCpFHubGSyfek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oEEQIlOZKH11sg3kn4XUf7IafGGdrVuOBA8QIz2L0es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:50"]},"IP":{"Case":"Some","Fields":["178.26.174.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubaura"]},"Identity":{"Case":"Some","Fields":["9Bz/GJ2oxMACmsyuWjmTBlIYyOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ZiKHsCDfo0Cwb/SfJKqN7VVbuuK/UINQgM0qasjv/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:35"]},"IP":{"Case":"Some","Fields":["23.81.44.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt85328"]},"Identity":{"Case":"Some","Fields":["9AAWxaLXRg2lzL+KI0YTXWu8PdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bNbopgugc4CC+sbJ+feboUz44ofX/YckTteWrXFiHQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:15"]},"IP":{"Case":"Some","Fields":["185.245.60.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PubliusAnonymous"]},"Identity":{"Case":"Some","Fields":["8/nMlV98WZOPJEWR22uymct0Vac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nUCbUZAYvul2nhMyCRTyakNazA2M+EvIQfbrO1eiayg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:29"]},"IP":{"Case":"Some","Fields":["77.74.96.43"]},"OnionRouterPort":{"Case":"Some","Fields":[1917]},"DirectoryPort":{"Case":"Some","Fields":[1953]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.12"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Merlin"]},"Identity":{"Case":"Some","Fields":["8/P0kAuHz0prSn+UAlAvxFe3sfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sXasAnaavShLN1UX/kwl+BiUt9vwKRfuck34Uq4NmT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:51"]},"IP":{"Case":"Some","Fields":["92.35.4.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ganymede"]},"Identity":{"Case":"Some","Fields":["8/D3F1cZ4D7QX2oEDx5pF2CanhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xgFVheVeD5vT28ZVzyzKr2PtA6aEQYAqDzTONFBr56M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:29"]},"IP":{"Case":"Some","Fields":["93.208.141.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pkj2"]},"Identity":{"Case":"Some","Fields":["8+1WjMWvfJELo79gl12EQEEMep0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C6Fnyk8mFDxQU2ckhdX4TZN+MOnAASbplk5f3fcT2Lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:18"]},"IP":{"Case":"Some","Fields":["185.82.127.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["teutates"]},"Identity":{"Case":"Some","Fields":["8+seH/RaPN5OAvvU6AXU/DekrVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w/7O+Eq2L5MvALelqDrgTyvaB5suceESAGVJQCL2F7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:12"]},"IP":{"Case":"Some","Fields":["37.120.190.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["8+bwFnHAh60xi7pH/NCLZdGkRg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YgAHLh21Tk+R7uC8ogb025Srz+pz0tk0i/9thGsZMrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:25"]},"IP":{"Case":"Some","Fields":["185.241.208.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay4"]},"Identity":{"Case":"Some","Fields":["89er9Qz1EvyTMjcWlT9cnsXbK5U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nm51Y23b66NPwR7e1leT3nxvo5iOMtjfTSmE6GOsUXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:48"]},"IP":{"Case":"Some","Fields":["89.58.5.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:dc0:94bb:2eff:fe23:c95b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams07"]},"Identity":{"Case":"Some","Fields":["89UTNtWowVSJyQNdKyKTKD0FF1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfK46u3u+o3aK2C3lWLqXZan1WB5ZZgTWvozd6/Xpyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:28"]},"IP":{"Case":"Some","Fields":["45.151.167.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::d]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchieSoftbrow"]},"Identity":{"Case":"Some","Fields":["88awEEU5JFmZv9GUlZvxMbPkFM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXFR/rRYXBKwkRhFRKkgxwAlQQC/0dnXBacbOJib/MY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:55"]},"IP":{"Case":"Some","Fields":["188.166.31.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev4b"]},"Identity":{"Case":"Some","Fields":["87LMjCqzMRUOCW3R24gQ5KQ/OZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1FBh9rBR6fvFMhYrxiBCZEsaLSO/dst/a27Ff2RCjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:23"]},"IP":{"Case":"Some","Fields":["87.118.116.103"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:4134:101:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deponia"]},"Identity":{"Case":"Some","Fields":["86t6xnQEjNVq8ydap4WZZ7sQ4AE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bo6NLDr2Wl/52WIGGdZarXpJiSU4NXm02WjkQa/0KI8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:58"]},"IP":{"Case":"Some","Fields":["185.248.85.30"]},"OnionRouterPort":{"Case":"Some","Fields":[57523]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast2"]},"Identity":{"Case":"Some","Fields":["86lYj7RfdtpN5bNQxCXBMPb/qYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBpP9skO1THV4qzTN8MxRN5xO7FjJZsvHUYigbI0nuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:38"]},"IP":{"Case":"Some","Fields":["89.147.108.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fumed"]},"Identity":{"Case":"Some","Fields":["86ZMMsHjs/1sQezOEQxh5Gy3RiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N1bcvSGg3A3vNdAsK8pV8BvHJVqz4dcYpbRru/ugXkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:44"]},"IP":{"Case":"Some","Fields":["124.109.1.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["53labsfmt"]},"Identity":{"Case":"Some","Fields":["86QlD2PyU7ZW942uccdd1gBjjpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9eTxZ3STDecaoUgAHIIOUsSxU1+ZSVeUnSwzKR8Q7ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:25"]},"IP":{"Case":"Some","Fields":["103.196.37.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1:dea::111]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finite9"]},"Identity":{"Case":"Some","Fields":["86ExAvHbplKFpkyfo0ZvcqWqBT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6I5E88/RBxiFkOKWnnLSvs/XiM5GivLh+NfC9Cj8YU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:45"]},"IP":{"Case":"Some","Fields":["83.233.125.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccvpn8"]},"Identity":{"Case":"Some","Fields":["859XL9b3t7July8unHuC6puq1Vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bX+a9dBb12cpMHDag7GWeZBbyWC7HuWA+mMd+sy+eJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["107.152.32.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:0:35::8a9a:9dc5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Dingle"]},"Identity":{"Case":"Some","Fields":["85sr4PC53P09Q6qhLWvhaxSxOnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RnUMEBbQFik6foDXcbOuL7+CyJHrMVse2NvWF/8Nuyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:08"]},"IP":{"Case":"Some","Fields":["23.111.179.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LostArkLux1"]},"Identity":{"Case":"Some","Fields":["85Nvl8FO/P0YFU30RDuR/t0HH0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTPYePG0DyITmmQDs9dJWkBtNDTmxykPvfPpLpeuAKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:40"]},"IP":{"Case":"Some","Fields":["92.38.163.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::1c4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot64"]},"Identity":{"Case":"Some","Fields":["84+1WozKagDN0CSl6iz+yzikjhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F2QhMyf0zdgkGcEWDJVJjNhSiAjGadbew6KEk8va9pQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:03"]},"IP":{"Case":"Some","Fields":["193.108.118.225"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:d00f]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashEagle"]},"Identity":{"Case":"Some","Fields":["84ieLGimc4SMqQlPb0o2U9dpIQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7WlLvK7UFYkzZeJ8qBeUA6enaeXRozt6sac8JInjRpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:28:18"]},"IP":{"Case":"Some","Fields":["46.29.163.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700::5:22]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt81678"]},"Identity":{"Case":"Some","Fields":["84bSP8WMzuaEbnBDg8hv/oRPRNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NY3q3io5CGnJned9XYTfoDMnxh88XtFUcSjKheZ3Hpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:15"]},"IP":{"Case":"Some","Fields":["185.245.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bishop"]},"Identity":{"Case":"Some","Fields":["83mCaQs1i0+DPWl5F+CcO+ekrU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b7S/aZvPGtXd6cFGy/hs2EFY95jmeqLGq00bDN3jSNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:13"]},"IP":{"Case":"Some","Fields":["107.204.177.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["electrickavenue"]},"Identity":{"Case":"Some","Fields":["83BvJnD9IV2GPmh6qJAN2m8scLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0mo+iqXcmdJNkXW9dpCS0Ptf4Mx5DVyj9SYoRm20aiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:31"]},"IP":{"Case":"Some","Fields":["94.100.6.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gweicz1"]},"Identity":{"Case":"Some","Fields":["8258h0ZkkHfaJUOX9yGFGrvUtSg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5UNm5zCowJ4qrB+HWT72cBXrIAv4nnRsQR8R0xwPxNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:37"]},"IP":{"Case":"Some","Fields":["146.70.129.124"]},"OnionRouterPort":{"Case":"Some","Fields":[56905]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iter"]},"Identity":{"Case":"Some","Fields":["82iUSDCbRqm3pmEsVMIFuvCXHjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jBu6j/hrgD2JlvWnduFPgRrYlrtgPsEoIEMRgWi6NY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:41"]},"IP":{"Case":"Some","Fields":["66.150.130.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:806:3::94d8:87bd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedSnowden"]},"Identity":{"Case":"Some","Fields":["807mcxIlGIc+cXwSjjWjibcseDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DMSGhsAK3eIwOGitcScBTbBJdXxgY9nptQSqm4wjUSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:54"]},"IP":{"Case":"Some","Fields":["23.154.177.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kaeferbohne"]},"Identity":{"Case":"Some","Fields":["805oGvgibevJE1pI9h3vn2iWa6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKi7z4ly8rDmxMnCW+GXY4fsl/MlQkgGReWn9AzDuwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:44"]},"IP":{"Case":"Some","Fields":["109.70.100.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GreatCamas"]},"Identity":{"Case":"Some","Fields":["80sSV9sWjUBrV/9x+KOHauAZDRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["84soY44LsCiKNYaL0A2/ICOFgzz8truJqIsctIggpy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:54"]},"IP":{"Case":"Some","Fields":["51.81.236.225"]},"OnionRouterPort":{"Case":"Some","Fields":[56395]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SemiPvt"]},"Identity":{"Case":"Some","Fields":["80guBGteYR/fJ5r1m3CoioBNFHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DsL9hOHrD/W7DO92M9HjUt5cqrl9+5BNMpiwfwkueN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:14"]},"IP":{"Case":"Some","Fields":["51.77.39.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["8z16cvB0kKjYyYhBMMXuzNie76g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5R/pAzg2Je1PWxBe7WjacB9WYuK2xoNqietIc7kXhh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:28"]},"IP":{"Case":"Some","Fields":["185.177.206.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::142]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman11"]},"Identity":{"Case":"Some","Fields":["8zcCGrqfB/x9r4WcB9dvovf0ye4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xCxmmvKJsHUL1DEOqx8DjcSbeAsa5maZz2Yk5DqoKTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:20"]},"IP":{"Case":"Some","Fields":["172.88.196.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9004]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["8xRYDqIss9yxNdZOkhCL+4/SCa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1a0qFfO8+TRPPqYEo8N03pyme2EeqnGN0NQ8F5S8bBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:31"]},"IP":{"Case":"Some","Fields":["199.195.253.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:1362::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelayByBT"]},"Identity":{"Case":"Some","Fields":["8waQuiFfOd9up3Qk3xy2tbsP23A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tBpgywv1GidY735fLTXgzoHzSIuLP8HOKhkHdJHxhjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:51"]},"IP":{"Case":"Some","Fields":["125.229.28.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber52"]},"Identity":{"Case":"Some","Fields":["8wRPsqjOc3nS+6m/1iTv4YD0HCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W9ljOieHbb5AOgbgSwI63HgauhFMlQCkTQOPjg/876o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:08"]},"IP":{"Case":"Some","Fields":["185.220.101.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::26]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashDeer"]},"Identity":{"Case":"Some","Fields":["8wMX6f0MOlYFiSjWRUBnK1mQLR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NxLvgcIOy0MJHLr7WfedyS50rqVebtA7CZti5zTT7x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:20"]},"IP":{"Case":"Some","Fields":["193.25.100.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:12a0:3:24a9:8838:3642:9244]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["runninglizard"]},"Identity":{"Case":"Some","Fields":["8u1QMrUgIee627uC5llPGocv/Qk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYMdXKfz9JonZCno+0v3YXLyM4Oqeeeog/HVSDwBq18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:44"]},"IP":{"Case":"Some","Fields":["89.191.217.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krombianschniedschn"]},"Identity":{"Case":"Some","Fields":["8uYN4POb6oJrUOthmgFK3Olhk1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdO1WyridoqV5ctxEakkM7amPMymaXWEVP0LmwpnDjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:39"]},"IP":{"Case":"Some","Fields":["116.203.117.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:d8fc::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra64"]},"Identity":{"Case":"Some","Fields":["8tyt+yhdutchjg76BZhxXbqowY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ImfbmqLSuyUDmv4cbrhVQpD9m3/T3g9DQyBlW1ukuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:23"]},"IP":{"Case":"Some","Fields":["104.244.72.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JamMasterJay"]},"Identity":{"Case":"Some","Fields":["8tevVhu84yKhZC8MI998DLIr/Gw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z7FZLd5Z6tKW0VNFmDJh549mQpZ4dPp76zLD3nJwBTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:02"]},"IP":{"Case":"Some","Fields":["185.107.195.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DoubleX"]},"Identity":{"Case":"Some","Fields":["8rA+W8gatOGLrYYmZ2xtEp+lwxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uqJ+44JRSUUeywRuZQRSccF+taPgJx6jJjbuLKL4W9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:43"]},"IP":{"Case":"Some","Fields":["103.97.125.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inconnu4"]},"Identity":{"Case":"Some","Fields":["8qsOYu9tYyukerG6czbeJAA/bg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NNTIMUMFXtwtqjc2307Q9e9vLUcgoRdgMF1ztgxueZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:42"]},"IP":{"Case":"Some","Fields":["192.9.235.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor3"]},"Identity":{"Case":"Some","Fields":["8psPGpG1XMt/bNyiodGMY1cfdms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xWaxRYF2hj5XEbFAkolYrY4N+dDZx48frlHuPK5kq7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:25"]},"IP":{"Case":"Some","Fields":["51.15.44.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:1324::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8pVle7e7dPuIafqOeQNGG1DJi50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WaJH6E4Dhod4a85XAD2uOJ0KLIf6nEd5x1Dxtl6s6yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:35"]},"IP":{"Case":"Some","Fields":["185.207.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gork"]},"Identity":{"Case":"Some","Fields":["8omZgeOmAaey3cfd4CwkgGlwTZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LyQaoMr5AlEE7fh5tgjvOksQNLAHPrSQY+N01bsllHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:34"]},"IP":{"Case":"Some","Fields":["82.118.242.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra84"]},"Identity":{"Case":"Some","Fields":["8mV/ahe+YI/ZT1ZbxFZIMT1he2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gri5bhFPeH6A4QY7yVyTcrChTX8nrPFdaGETOBVHGo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:40"]},"IP":{"Case":"Some","Fields":["194.32.107.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["meatyRelay"]},"Identity":{"Case":"Some","Fields":["8mCZNhazGJeskLWPkxYrhetu6Cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h0ZU3Wpr2ZFePw+OUuSi8Y082xmQdCz5wVzxx98Ek6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:54"]},"IP":{"Case":"Some","Fields":["162.19.164.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["8lxhXCL79YQCWHtSWbWmgerjoUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FEXgWTtLo8jFN29Y/1EH4xriW7cS473GTM6ZTf1vvuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:42"]},"IP":{"Case":"Some","Fields":["198.244.207.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:b29:116e::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["staysafeandgoodluck"]},"Identity":{"Case":"Some","Fields":["8laaETmqsie7boMTonEjh/XmzSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EOfh2j5WdPGSZPDfh2qrskVkYARAKLcD8TqSew6twJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:08"]},"IP":{"Case":"Some","Fields":["185.181.61.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:181:61:0:23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktor2"]},"Identity":{"Case":"Some","Fields":["8lJORglPCM1GMayw+V1DT0P+JzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YOVaSvVlmetN4/2b9HQ6XHi4YAzwZgaHbLAj324jXZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:58"]},"IP":{"Case":"Some","Fields":["5.161.84.59"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:333b::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueOctopus000"]},"Identity":{"Case":"Some","Fields":["8kEzDxava9kCJsyRMNqOILWKrDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZ4yZ6tC5ONlEoERuaHVbYWm80+7C9dGwN1BrjAte7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:23"]},"IP":{"Case":"Some","Fields":["68.183.184.174"]},"OnionRouterPort":{"Case":"Some","Fields":[60000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::633:e002]:60000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stNet"]},"Identity":{"Case":"Some","Fields":["8j8C8oHXrEqFQH+iL4CDk4fNe9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92SfuZf30lRLHt57RDe4SR0CKUDrU1eoNBDz01YrhQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:39"]},"IP":{"Case":"Some","Fields":["194.104.148.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1c4:dada:bad::704]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeeJin"]},"Identity":{"Case":"Some","Fields":["8h5KctqPLxu3dxVUOVpqbQsbdM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6IO2fDc3ZVQSWSPIuhZsI4BuDpKCBuunEPTSPxowEls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:26"]},"IP":{"Case":"Some","Fields":["146.56.154.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN23"]},"Identity":{"Case":"Some","Fields":["8h3px94xYB2XFngeF+JDgIh4g9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qEBG3G7w1o9CVhYdVYMq5oYwNOcP6fHN0OiluCgxxC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:27"]},"IP":{"Case":"Some","Fields":["199.249.230.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64c]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ReleRapido"]},"Identity":{"Case":"Some","Fields":["8hfOg2vOPgbkcxVnIQ749hAdkpw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["giL7yWEezrMNbknFmb/N2VscZi8fu7x2C+W+hXyLuW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:09"]},"IP":{"Case":"Some","Fields":["5.255.99.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:d11a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondemogorgon"]},"Identity":{"Case":"Some","Fields":["8hdg5j/iu0Vim7FPzbD9Z3SF2vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V0uv1mPFkLcFMWzwE3cQ4mO9WJZmveIYuZXcNGLFVrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:53"]},"IP":{"Case":"Some","Fields":["185.220.100.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:10::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0140"]},"Identity":{"Case":"Some","Fields":["8hGnAxoU+w2hPUZ/bBuY/cPypVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xz9SNFOWQbORey8eu8OUWhDBfWl6xKIaaAJnLZzEq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:27"]},"IP":{"Case":"Some","Fields":["185.220.101.140"]},"OnionRouterPort":{"Case":"Some","Fields":[10140]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::140]:10140"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Komodotto"]},"Identity":{"Case":"Some","Fields":["8gw0ZxF0SmOa62nmrslB+HbIHbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gSHpgd98uQKaf/Vuo3X+DrnusxhaN4uaBe1x9fo+WAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:23"]},"IP":{"Case":"Some","Fields":["185.248.101.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gabelmoo"]},"Identity":{"Case":"Some","Fields":["8gREE9rC4C49a89HNaGbyh3pcoE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rsIPl2l4PWADCEzsbkURv65jp4s6ZZyZRyJGbFc1oL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:13"]},"IP":{"Case":"Some","Fields":["131.188.40.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:638:a000:4140::ffff:189]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heytea"]},"Identity":{"Case":"Some","Fields":["8f5xk6seQq6WVfPgNsJll0NSETk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iN+JeSSTD4h7e1Z5AtBb/pToq99aIdSYRv6q0oPRAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:32"]},"IP":{"Case":"Some","Fields":["45.77.67.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themis"]},"Identity":{"Case":"Some","Fields":["8eZnagVRtNiCYlNvqrSIuGGqyho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46eEWQqjwcP9spXZMWOnF35s3JZEnDftQiiopNixqQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:38"]},"IP":{"Case":"Some","Fields":["46.38.253.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1:47e::443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["8dSWZYZFTfRGT9biLyrsLcbioN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xW/JJPd9Mvq1g51OYdp7AgaTMWDvDBx3Dj+xQcOwVBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:22"]},"IP":{"Case":"Some","Fields":["178.79.163.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe62:716a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["csUniHB"]},"Identity":{"Case":"Some","Fields":["8c2HDXqPo2TkWaunCxc31AsLS7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gOG463P+pWGQ6apAHiOf934ORZ0IMCFViDk3WoOezUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:36"]},"IP":{"Case":"Some","Fields":["134.102.200.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:638:708:30c8::65]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortoke"]},"Identity":{"Case":"Some","Fields":["8ciQGlafZ2OHSNe+l5aVQbPsxZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glBk77ojj4333xiKZ0BcpXLb9bU3eBSsb82rHWu0ZHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:28"]},"IP":{"Case":"Some","Fields":["188.40.41.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoBoDy"]},"Identity":{"Case":"Some","Fields":["8cOwsHqsmYT+LsAY2eIVWXhZrGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7vqJxtHYc7Dzrj9ieUXJDCdse0x1Tc9RmDNTLwCHyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:54"]},"IP":{"Case":"Some","Fields":["87.251.64.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["8btvOOdo7CNqFr1nfAEgHiGCFs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m9+0CEoTJqYomEwK6nVaSkuyJvr/lLx3IwrFn1RbE2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:25"]},"IP":{"Case":"Some","Fields":["179.126.26.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bbkfry"]},"Identity":{"Case":"Some","Fields":["8agAdlZkyn2YOJfRM8gllFwoh0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34JnY008xmVZjYgmaDXEIIFqHSOS6/VCdsAq6D9cUGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:42"]},"IP":{"Case":"Some","Fields":["159.69.156.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:67f3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheAncients"]},"Identity":{"Case":"Some","Fields":["8aFY4C6QMP/QFvyvQtKE3pwx06M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlYqQH29UAVHnc8Q2fKcBtJBS7anVnWpEL5TUiBgumY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:32"]},"IP":{"Case":"Some","Fields":["54.36.173.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:602:caf::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["8Z2YQZyH42oLMHuFVZI43EbFYxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gl37flE8g3enuPXykibfe6DNZrdqcu8FlCpaKV8u9l8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:17"]},"IP":{"Case":"Some","Fields":["23.128.248.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["usNjBobVps4806"]},"Identity":{"Case":"Some","Fields":["8ZK9Ue8snKVTZG8oZo0op68cqw0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aVJE4+hsfoDNrkuDQFbGqeMBHxVoSAvFz7klrCEzXUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:08"]},"IP":{"Case":"Some","Fields":["149.28.58.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["PogboxRelay"]},"Identity":{"Case":"Some","Fields":["8XFlfPX3Jgc9Ot1UT1OPa6GyMQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqBsLVbMCvDouTQAKi1sK9oKRuD9o2K38uo3HjfxJUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:56"]},"IP":{"Case":"Some","Fields":["130.61.158.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WitchNode"]},"Identity":{"Case":"Some","Fields":["8VoqCL+RAX3PtgQhcWNWYeE6glY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NEUrU/n8Sk/wmLns91jU/wO2NygtQxy+T+du2ae6dvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:19"]},"IP":{"Case":"Some","Fields":["144.91.125.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2033:4966::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BriarFTW"]},"Identity":{"Case":"Some","Fields":["8Ubdcd7rtrs9emOM/9w71Dp1ZA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["spxgtjY5QAX/OI4uTyJnRJN5bRgnXd9leiftsRS7DWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:09"]},"IP":{"Case":"Some","Fields":["89.14.208.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["outstarede"]},"Identity":{"Case":"Some","Fields":["8TZhZ2a+4PBE9P3+TiNj3I/O4ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EvVBGQ4x91XoQRegQNKKabjcXyvIM+CtPfYQx9Vqrps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:37"]},"IP":{"Case":"Some","Fields":["85.235.67.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:32:7d3:18f1:1dff:fe25:dc29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract01"]},"Identity":{"Case":"Some","Fields":["8S+N/d4ZadTllAeB49qzJtKMEiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbLnfljZ50mrXc3CUi/HSJNivXz9EBFtlZkcpZHT+PQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:45"]},"IP":{"Case":"Some","Fields":["84.238.10.142"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LightSteelBlue"]},"Identity":{"Case":"Some","Fields":["8S0X8pbHko5TTTzvQr6PqWlh1VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fNu2khONFMzyHL411SeEtOrNoy4l8Vw9+qVLRXvM/b8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:59"]},"IP":{"Case":"Some","Fields":["95.116.21.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORneedsFreeBSD"]},"Identity":{"Case":"Some","Fields":["8Ruhf/YlUzkUmHrzzaxlJnlc0a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JYmXoyDVS1PmmLgBSvqttBuR2MEsU97hUQu4K0hrNko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:51"]},"IP":{"Case":"Some","Fields":["193.233.203.72"]},"OnionRouterPort":{"Case":"Some","Fields":[42564]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gusntwrk"]},"Identity":{"Case":"Some","Fields":["8RK6Z5XYY/IeUjoGYaE0oE9EkQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xRE+PDq3p99/02ykAHG3Expm+afkpKDZoXHAF+VQlC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:22:06"]},"IP":{"Case":"Some","Fields":["199.195.250.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParkBenchInd001"]},"Identity":{"Case":"Some","Fields":["8QveJ5rnFRXdzMxh3Bmsh2X4o8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXVoLeGLdmtLddteqZIf5UEqI84YBBc3yGv5rICjOyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:54"]},"IP":{"Case":"Some","Fields":["193.70.112.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["8QdDTXjy3+Tzgq+DbMaO4rP8724"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5lzaYyCMxyaG6LYoI48Ti4UK/HMEH74E/kvPHQQnYZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:41"]},"IP":{"Case":"Some","Fields":["23.128.248.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::54]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk7c"]},"Identity":{"Case":"Some","Fields":["8PUHSm2t09wi4fqhj9bYnLxSdxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32rpBn9kqEtXWejClMhIbDMMfs1jHeHkBKOIOUXLH9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:13"]},"IP":{"Case":"Some","Fields":["51.15.89.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:e00::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pinball"]},"Identity":{"Case":"Some","Fields":["8OQNLNaLzuFvprdo/kgGKu8JOx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AFxyjSNUL2InuZLJtbGo4H9rlmcoPB1C7aA3qUHHKkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:35"]},"IP":{"Case":"Some","Fields":["202.65.91.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8N9xIuW415YeYa+uLUE9riUnvyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["llss1QlkrSfJ3D71m/WTLolVbWZQkIsRCpJtImevnRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:06"]},"IP":{"Case":"Some","Fields":["213.54.108.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8NAesf3FCCeas0Eq8/yVC7HaKtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x4KfHpfrdMuASBtgs/GimTMNQ615HHoWRQzlHxIigUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:33"]},"IP":{"Case":"Some","Fields":["185.228.136.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8M0UXPM3UzjvXPOF5ICnxIiVku8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVsIE7sJga1hzn4aZGNJOtVspkbWgQNvDoPgU7KwJtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:36"]},"IP":{"Case":"Some","Fields":["46.38.236.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TTIGermany2"]},"Identity":{"Case":"Some","Fields":["8MnAfRt8b8hUf1LKwQFbSnnirBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U0CIAcZualzCY67IULLc1pOE9YuqEKry1o0M8DPpQ0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:36"]},"IP":{"Case":"Some","Fields":["217.160.9.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:5b8::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrindItIn"]},"Identity":{"Case":"Some","Fields":["8MG0DsLP3nAt0+u1Ehaw2o1lTv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gc5xV+CyiLus3eo7DnQZlbLeRsb/Vbg9fvASwP1KYlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:41"]},"IP":{"Case":"Some","Fields":["85.239.34.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex87"]},"Identity":{"Case":"Some","Fields":["8LYNJcLoPqcHwohs+lnN/gJqDVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfxTJzGa+0M3H/KK/3//EAZUO1/evB3v5J0ql8Fu1iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:08"]},"IP":{"Case":"Some","Fields":["199.249.230.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::176]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vm242tornode"]},"Identity":{"Case":"Some","Fields":["8LWAeYuzA7o27RJoVo4q2TW2xIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIvoUDoQYtO7WpHxyvH9soLs/whdxnrn24sjGkRo0pY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:22"]},"IP":{"Case":"Some","Fields":["46.4.34.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Deteros"]},"Identity":{"Case":"Some","Fields":["8K6SK001jzr2t2IiolJrBHDn2RM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Byf7zpm/nAQ0A7FFHqDhcGRfE8Vu+Js/6IWKebXmcN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:49"]},"IP":{"Case":"Some","Fields":["167.86.66.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8Kgq19WPSeupcfdQSuIjtKhktQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GlhT2Bxx8XorKYlS+J84pBCmUAIANAHl6Y8ZrK1kPzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:11"]},"IP":{"Case":"Some","Fields":["136.55.42.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bambam"]},"Identity":{"Case":"Some","Fields":["8JqbMinC4z1OpxgejqsKsCmE9V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UqtStWa0i2+e8Ko4sRalMWg54eCLwTES2slHKFLxZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:14"]},"IP":{"Case":"Some","Fields":["176.198.219.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheyGlowInTheDark"]},"Identity":{"Case":"Some","Fields":["8JUBN7UHb9HGlc6DmMu12y8r2oQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jrp7kGoaRdUGp1S2kDynwJhBOsPfnePudDMf5EzaW0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:31"]},"IP":{"Case":"Some","Fields":["85.220.70.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontknowmeAT"]},"Identity":{"Case":"Some","Fields":["8JDQbdkIyRSH8KZd/9+x5M1mQog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3aNiS7ku3S+c466ndj7g3alv0L4MbaGMx/baPxoW0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:43"]},"IP":{"Case":"Some","Fields":["86.59.115.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:6:1500::666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8IpSWsqWXPalXwWHv0tzc9mLlU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WtZFEa5j5/KbEjx4aiJTagbY1saAAZ3VgDMXUy85xN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:44"]},"IP":{"Case":"Some","Fields":["37.191.194.248"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fec3:62f4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["winR"]},"Identity":{"Case":"Some","Fields":["8Io3RMplaO0oVFwrfBvn2Lony94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h086jHzlRIKECBDkNO/rRxoftQhooCrCSx4E4LaSV5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:35"]},"IP":{"Case":"Some","Fields":["95.217.248.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:f230::10:4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pffffffttttttt"]},"Identity":{"Case":"Some","Fields":["8IezkSLBgaTJdnK0YLKEsyNQ31M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3wR4LBbgWAs1j9OEftuhvKCf3sCLvB1Jtyj11jmG3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:40"]},"IP":{"Case":"Some","Fields":["178.62.202.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GutterTor"]},"Identity":{"Case":"Some","Fields":["8IdR4nxrybNZC1qeIXc1jSzxksI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["emvQWq1nw4Jl+Qc0XUy1L/p8JWIj0JgdEq92LCSGIzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:38"]},"IP":{"Case":"Some","Fields":["65.24.251.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["8Hj+HXvam8rhMTM5a1ZMc+oo/6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dc92N8Ko8mIDHFRqb9GV0ksYCeV4xsw2ugyEqazGBQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:41"]},"IP":{"Case":"Some","Fields":["128.0.64.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickodee01"]},"Identity":{"Case":"Some","Fields":["8HYCvEN5YPHjk3AImpzJVqktKt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["greB2dFN6nCvFVFfpE+3KY9xnNjkeYS+LaWSGS7Il+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:25"]},"IP":{"Case":"Some","Fields":["195.230.23.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0175"]},"Identity":{"Case":"Some","Fields":["8DJn54Rh4ZjHqNPoJRRolbGb/Ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsMq1KKVD5ph8kQl1h2914YLrI+D8r0g1XkEBlF0fw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:23"]},"IP":{"Case":"Some","Fields":["185.220.101.175"]},"OnionRouterPort":{"Case":"Some","Fields":[10175]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::175]:10175"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ValveCover"]},"Identity":{"Case":"Some","Fields":["8CSOirMt9iSxHC85s1tlRLxjhf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["idOlBhm6/JTYd86EqGnQ8EUmx1iGvweXbUiTyR39TjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:26"]},"IP":{"Case":"Some","Fields":["135.148.52.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode1"]},"Identity":{"Case":"Some","Fields":["8B44LaUkpX8r+zxP8nCiPVzTMR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OEDdPFKX0ZA+xycsdph2s+0UiZVX9zm8Y6aI0dKH+CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:53"]},"IP":{"Case":"Some","Fields":["209.141.54.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PancakeWhore"]},"Identity":{"Case":"Some","Fields":["8A7C4KLKeaV/56CRigh5h3R9dy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iipMQ30Gp2MMtmMPaNQSq/QdCHfY7HyfpD5+Was7baw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:12"]},"IP":{"Case":"Some","Fields":["94.154.159.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f300:406::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JennyRelay"]},"Identity":{"Case":"Some","Fields":["8AyLdYn+5SvoQ4fNtCLB8ThpecA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6P0FtY5BRLIwXG9iUa7lOvoUb4GGT/S6EIkG6NKUjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:13"]},"IP":{"Case":"Some","Fields":["79.118.20.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudyDC"]},"Identity":{"Case":"Some","Fields":["8AuAu1gOH3i8Hje69bb97Wfk3Do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1sZ5gb8szenvid1MupoF67qHThSS7z/SPDmo9l4pqo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:16"]},"IP":{"Case":"Some","Fields":["158.140.234.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orca"]},"Identity":{"Case":"Some","Fields":["7/lFD2iRh3b4cLvFVPjjp9bhyVM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yoGyl21iRizZEeamNqo+TVH5OgbuFN3Hhz8sIWV2yZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:28"]},"IP":{"Case":"Some","Fields":["109.70.100.76"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::76]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeevestor"]},"Identity":{"Case":"Some","Fields":["7/MuCyuhAiUfP3F8s5iIlu6zqK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vXVwjxgD5CXIS+X6Pd5/LHF74TR2d1C8z9+WP5ABYig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:00"]},"IP":{"Case":"Some","Fields":["46.59.28.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marina"]},"Identity":{"Case":"Some","Fields":["7+3DEV7+S/oR/Fm55o+Gxl4h9dU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JTbkp7yIAlNQ99IT7yM/C8TXN3BrKgoLrP/ygjtR6Pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:47"]},"IP":{"Case":"Some","Fields":["46.4.115.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Slavyanka"]},"Identity":{"Case":"Some","Fields":["7+iez07hFhOhkkh3fruihxm/X/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AoOTA7OOzNuUJE+vzNoahQssE1i75ue1zhZUEbFZKzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:57"]},"IP":{"Case":"Some","Fields":["194.182.179.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:c47:e00:7cdf:4b9:a0ff:fe00:2f0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra41"]},"Identity":{"Case":"Some","Fields":["7+iEnRBRmrF1Dhr0dBAFlSKADTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwlbyOfs7ZpiT1FwBAg/eiPtmnSt09eD7jrOgI6FGO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:35"]},"IP":{"Case":"Some","Fields":["104.244.72.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dashcloud0010nor"]},"Identity":{"Case":"Some","Fields":["78Mg2Fu/X0G3v8FdzluwRLoY9Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8Da42UJMxoPYe3XO6+BQzVKZDu/GWZTi6HJlkxYerk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:53"]},"IP":{"Case":"Some","Fields":["185.243.216.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:93]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marcuse1"]},"Identity":{"Case":"Some","Fields":["765EcoJkmCIkRF6WIUwV+Qdd7h0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tOTuCcfYKrxOgn9+VYFCsr3yfnth/RlR/dR0a6FS19g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:55"]},"IP":{"Case":"Some","Fields":["178.20.55.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1b88:4::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay23L"]},"Identity":{"Case":"Some","Fields":["76LnsHOqTOLa9xYPI8kNuAWUj0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LmBQJhwQf5u90vX1QS0NpMUOwWULxX0nR71tOzIUuik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:34"]},"IP":{"Case":"Some","Fields":["85.214.128.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4307:8800:e806:8131:ddd4:af0b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PLUTEX"]},"Identity":{"Case":"Some","Fields":["75xGEfqnwhFVqLoqch3cPSeBYDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cKyqabppJL+h6LKU68D+8el1VCkUSJ786tnF4GQOF/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:44"]},"IP":{"Case":"Some","Fields":["109.69.67.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:16d0:0:5::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["madonion2"]},"Identity":{"Case":"Some","Fields":["75LJSP24OJbdvfdZb4J9d/iT428"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rr+yOVm/VEpslf4Tsp9XsCzDJ9PInHVTdK5BMlj2XJ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:00"]},"IP":{"Case":"Some","Fields":["45.140.180.71"]},"OnionRouterPort":{"Case":"Some","Fields":[1430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:c5c0:0:303::2]:1430"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["74gnJJCaapHViMkIHsW1EH84deQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkB8ll28J8LABIMlzvP5LP/cDqLOYtnkQhm+uTwdMJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:52"]},"IP":{"Case":"Some","Fields":["185.243.216.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:92]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flodder"]},"Identity":{"Case":"Some","Fields":["72YEuVqULxx62AffEPk7ngDEems"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qw/LL/X0g9aVrwDihMrpTIzlzvw5gXBjzBW5OY+Lwlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:25"]},"IP":{"Case":"Some","Fields":["91.207.60.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["71pCEV27MXhbGPbnPGQYlyQozFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3nTqj5XxmavadqOQcHrhfKfDF2YIrj6nR5SdWkkm/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:14"]},"IP":{"Case":"Some","Fields":["71.131.94.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["0x42FF"]},"Identity":{"Case":"Some","Fields":["71cg7b9I4a0EMA7eCQaXXm80kmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlsprPm8oRHzFBKovumhbfx2hiJNNOXjynznCTNpUWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:25"]},"IP":{"Case":"Some","Fields":["188.40.166.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["70zR82noCA37WkYYfPqXaNeFcII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sUcoFLCJ6zP8RL14yA0c+qgTSZsDyKcHMAJKiZ9Jp0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:48"]},"IP":{"Case":"Some","Fields":["185.194.142.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["70bE1miHLqIeihln6ZAtE7fpUmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wfGHwS8WsxUADwfI4r1GlgryyjqCuh04c/3+pIjG1NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:40"]},"IP":{"Case":"Some","Fields":["5.45.106.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justiceforall"]},"Identity":{"Case":"Some","Fields":["70CTOt4pnnz89LnF/PwzksC4cSg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hcOnS9aM6wBdMk52RbkXfbhtfqPv9VtXrD0X01LBkjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:17"]},"IP":{"Case":"Some","Fields":["46.101.192.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::e43:5001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ahplA"]},"Identity":{"Case":"Some","Fields":["7zz00oI6bJlcvb9B1cVahlz4QdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ax6KteHRPP1lypuSTnBlrDuBqBDnkTbFDWN2Rr6nNJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:31"]},"IP":{"Case":"Some","Fields":["178.17.170.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:cafe::39c:8624]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["dodson"]},"Identity":{"Case":"Some","Fields":["7y8m3Z0k3OsAqkwuoUbqo6bHuhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hcnx6Ke1tLOhsRNiyxkvS24I7djmgvYKisnI07P8Iu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:02"]},"IP":{"Case":"Some","Fields":["73.42.194.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:603:217f:8ab0:a8a1:59ff:fe05:d01b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["0x90"]},"Identity":{"Case":"Some","Fields":["7yXB+b74xKPyhZSTx8jFFIcltOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YoXXCvqU+VYrEB9/hGyptQ9HSikXRyk+O9p/g7+XrR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:45"]},"IP":{"Case":"Some","Fields":["176.9.98.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7xlAhrGFF44b9Umo+V3owD4t6/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WfUm5Y1jIDqeDi8TyJD0YFsGqUykaO2nNatX4lATC9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:02"]},"IP":{"Case":"Some","Fields":["107.189.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["v205"]},"Identity":{"Case":"Some","Fields":["7wkWPsPwPC9jqGW7vxzlZCxllaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1eF1eMu7zzday1jJa9eHJe/5R1OCOMz97cr390qbHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:21"]},"IP":{"Case":"Some","Fields":["78.46.192.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:821::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r3"]},"Identity":{"Case":"Some","Fields":["7wfSkN6b0RPWIkDklkEwDNgZ1hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N05nqCOUlI52pyaOZ41665qaVI2zll+AwTZF+Bk10N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:00"]},"IP":{"Case":"Some","Fields":["198.71.60.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JetiTorRelay"]},"Identity":{"Case":"Some","Fields":["7wTCvpz1ZtvMu2g/fQYPxIWlA5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3O6cF0u3EEsGA5jD9qDWIdapz/qJx1w1L0pnhJdPrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:31"]},"IP":{"Case":"Some","Fields":["79.215.21.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ozigbo"]},"Identity":{"Case":"Some","Fields":["7wHn5tXBSPp1HUKwEewZ4ht3Gn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kzpgo3ZnIbUatKR6vkd3nx8FywNJ8TA8Q7oawonjZt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:27"]},"IP":{"Case":"Some","Fields":["202.165.228.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stateiscriminalorg"]},"Identity":{"Case":"Some","Fields":["7v/A1TKrY7s+nK6tqCKXH2066NY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q09IVlcu8ovlrjcckxJ/v/uHtYwG5tUIwkFoEryzT1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:03"]},"IP":{"Case":"Some","Fields":["95.217.180.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:84f4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["g0bbles"]},"Identity":{"Case":"Some","Fields":["7v9MvaQWPJ179InYMQZwqNN4+X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d3GykP54v3y/4k/XxPlryYeRPeb8aElDdLJpP6xKzv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:08"]},"IP":{"Case":"Some","Fields":["5.255.101.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:106:1d53::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7vQLTN2qj2dGhUkeRek5kXmqGDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AgIH8/j2E3ngyYU6yneDnJOxnFkAD5qC6XR7EbpjbYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:57"]},"IP":{"Case":"Some","Fields":["185.244.192.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["st"]},"Identity":{"Case":"Some","Fields":["7vILoAeagQp7zgjn7KvT6cyf7U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jlCCy4iw12mDCBu72VTR8alAu3mH4nGm0+C+Ly4LmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:46"]},"IP":{"Case":"Some","Fields":["185.237.13.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adamsoftwinds"]},"Identity":{"Case":"Some","Fields":["7u+aL8g3vg4OWFJKBRj5jf/tKSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bXu+fo3gfMB9ULUETxhVQREKxSU1W99I6IkSCxmDpW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:38"]},"IP":{"Case":"Some","Fields":["185.140.250.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash1"]},"Identity":{"Case":"Some","Fields":["7tuf78kWX5tBtRWigvlaV0qAf7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dvCoxWPI4CQQoOprXQU7QI8smmX2uTBoe2AlsiA2aLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:23"]},"IP":{"Case":"Some","Fields":["51.81.56.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yourmomsbigass"]},"Identity":{"Case":"Some","Fields":["7s3KSNniEQlRuulKhX8Fm/TrfXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frSRVrYADe4ejJtBlFiIXMk/3NHXMjgh5m3i7ndzMAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:28"]},"IP":{"Case":"Some","Fields":["107.189.8.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tghb"]},"Identity":{"Case":"Some","Fields":["7syKBsTerxmR29ASdFl8sRQ7NYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gCO1JJR+9wNxXIOuiHfIiAReI1wAS0U4ks2LqHy/1GU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:09"]},"IP":{"Case":"Some","Fields":["79.201.178.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809n0n0n0"]},"Identity":{"Case":"Some","Fields":["7qhVZ81+vrHLxwrul8ReABm9vfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LlZdYZ6n9tizUQboVtUNGhwMR+Phf84K8/QMe6tPlck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:47"]},"IP":{"Case":"Some","Fields":["194.32.107.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LisaM"]},"Identity":{"Case":"Some","Fields":["7qUAohbaqD54FfLEZ4ZlKTX9c1E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LIDwxSe7eF/mrUR65g+wW/9n+n3QowwUH3NlUCm9ncc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:23"]},"IP":{"Case":"Some","Fields":["13.48.17.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandbox"]},"Identity":{"Case":"Some","Fields":["7pQDDQKvWniMYupW1INUDDhGDhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v6Sh4PRIdwjl7iZrpqZ9d/1ykXCxuse5LQRnS8JH6hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:32"]},"IP":{"Case":"Some","Fields":["176.107.176.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:1741:0:12::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7pCy7YJI6sIadmHgySUJFNDTVTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOZXpcnxHDGK1hbaRxec9AGwuNVC7UkI9/OGJLKGfO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:05"]},"IP":{"Case":"Some","Fields":["80.85.154.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cb1tor"]},"Identity":{"Case":"Some","Fields":["7nL4VEvEb2/820fM25VOWsZCdWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1y52YkeIuhcU68WrNQz9MRm1XG0dBRH5hwAcbgEvl1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:22"]},"IP":{"Case":"Some","Fields":["5.255.99.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cassini"]},"Identity":{"Case":"Some","Fields":["7lSzViTRdcbIV3kT+GF6IXoIhPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T9LdUjY65xJcNyIBmJUAyGGGYoBVyeQ+PO5xDDx/EkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:20"]},"IP":{"Case":"Some","Fields":["209.58.160.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer01"]},"Identity":{"Case":"Some","Fields":["7kskV3bYEbQ+Yg+K4+PP31OiB9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EZQxEIH16jNkDcF9kKZWUUWfvNwDFeMw2HZCaBX9ahY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:25"]},"IP":{"Case":"Some","Fields":["95.214.52.187"]},"OnionRouterPort":{"Case":"Some","Fields":[5118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay7L"]},"Identity":{"Case":"Some","Fields":["7kr2MgWPBzTBQmsa1on0dEXKIFY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XIZMfBu7AViZK+diFOPpL5iBNx9avLMTEe6A8h1z4Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:31"]},"IP":{"Case":"Some","Fields":["37.252.187.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:c:111::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anonymous"]},"Identity":{"Case":"Some","Fields":["7kghFrKkmitkU2Um6t2N6TL2kc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["De0RLi7SRqqJymfLoBJtrs2aLC2YYZUmyuSD6XDknt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:43"]},"IP":{"Case":"Some","Fields":["155.4.110.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenVonMecklenburg"]},"Identity":{"Case":"Some","Fields":["7j8UEMTh1km93kVkRveML9DMmMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O4dbbv8gJA/RZh7ZYoaApWRL6uz986S0q+7rh+7Qsdc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:30"]},"IP":{"Case":"Some","Fields":["84.131.92.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATP"]},"Identity":{"Case":"Some","Fields":["7jFdvSmxOExHBxybanLNZIHLoIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ETl+cSgEBG+p5akA7XVH5kFjzFPqy3/jvlPCqayhHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:29"]},"IP":{"Case":"Some","Fields":["45.154.28.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:848:240::240]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antonov"]},"Identity":{"Case":"Some","Fields":["7jE01te3A6Oe75wMWzf8hCss1yw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1aJPhdByNIy+XwYh86+zifAcW+WKdymP2y2gr4ETILY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:00"]},"IP":{"Case":"Some","Fields":["185.189.157.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myzwiebel03"]},"Identity":{"Case":"Some","Fields":["7iqRCKntv8tcRPKZMmdXMYgXaqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hkPk4GTAn1bTMtsi2q11Rgn3ciKG7Er0rGS8efpB5Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:10"]},"IP":{"Case":"Some","Fields":["49.12.225.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7ipiEEKZSylFLBL/O29i2elXdYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwGkn3qBW0Xwdof3c44pqwNe2KYweY9KV7L2+hTpF+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:47"]},"IP":{"Case":"Some","Fields":["145.239.41.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer84"]},"Identity":{"Case":"Some","Fields":["7h0ykjT95eILJgK5CnUl6sTteLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2erBWd44rWuxSvQ+l+FguOzAxITrfDOh6qVi42VRVFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:20"]},"IP":{"Case":"Some","Fields":["95.214.54.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8184]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n1c3r3l4y"]},"Identity":{"Case":"Some","Fields":["7hjokc0Qjip4Q43R2rxblEyDBds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hi3BUOZ67KrJi6aCxxdkHPW5t7W+aCKHQAkURW0NWb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:54"]},"IP":{"Case":"Some","Fields":["94.16.112.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:5bf:84a1:a2ff:feaf:4fc3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBigSleep"]},"Identity":{"Case":"Some","Fields":["7hRmMOFVun0P/b6TFCnygPR5eEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mdd5uVuLlOaF9mBiijq+/NJ1PA81x8I9YgObKrMn78A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:07"]},"IP":{"Case":"Some","Fields":["71.207.38.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kryptonit00"]},"Identity":{"Case":"Some","Fields":["7g4ywe4CscA8bUPa+mZO/SwV4gI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ZBvWJ4vWdqa4fIlEdc0UaxuX5jPK9PdNQWggAF2Mbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:06"]},"IP":{"Case":"Some","Fields":["37.75.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoleeShitSnaxx"]},"Identity":{"Case":"Some","Fields":["7f1f/p2XrcC6/jCjvYRU82/972k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oeE6ICN/JlVFAUjtznR6dV3k6bllGnOx2bOl8H5ONWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:42"]},"IP":{"Case":"Some","Fields":["207.154.192.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charity"]},"Identity":{"Case":"Some","Fields":["7fNX34pr0jxts3EFANwN9JjzexQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znZov7TZHagKH2iHGS3kPZs/6+MktKrvxIztiN+YkK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:58"]},"IP":{"Case":"Some","Fields":["51.81.209.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute18"]},"Identity":{"Case":"Some","Fields":["7e24eXhz00Ayi1/tvXdEp9HfFR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uhf5G4xmSDCkmSh6tXS7D5CILbUo+07Y47gJC71s5M8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["185.220.103.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StandForFreedom"]},"Identity":{"Case":"Some","Fields":["7eoZFy7IsUY73RnjoYd4xXVnEKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+HM6pg2YyyTwD2D2Lq79Q8/zLlhsmzCuPVECBclvMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:14"]},"IP":{"Case":"Some","Fields":["45.33.114.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex74"]},"Identity":{"Case":"Some","Fields":["7c30JHXNYKjr36fP5ktQBqufp4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIadaGdY1McXUlzrJVU1ZksNq0sK2nH2iDchXaHQv7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:54"]},"IP":{"Case":"Some","Fields":["199.249.230.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::163]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digineo4"]},"Identity":{"Case":"Some","Fields":["7cswZU0FdASjqk71WvbbUFGTutg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+F7jJhMbW6WTPZEom6kpYUlZYA3KZFeIjGvqjyZWtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:51"]},"IP":{"Case":"Some","Fields":["185.117.215.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:8781::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maybetomorrow"]},"Identity":{"Case":"Some","Fields":["7cgDNXxdeLmXA2tBfYFWJebZmfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["88BjEqByuTKXFpaRJfVlqCMQ7v+/hVhCyVIPUi7fVRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:18"]},"IP":{"Case":"Some","Fields":["182.55.245.23"]},"OnionRouterPort":{"Case":"Some","Fields":[2323]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jasiuwarsaw"]},"Identity":{"Case":"Some","Fields":["7b5Ewy5Z5L5Gy7pm1QwtOtkAGUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5YHgZPECKHwIfyGHrBrYLSVVWgR6cj3QJK+coHcB5k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:22"]},"IP":{"Case":"Some","Fields":["95.51.200.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangea07"]},"Identity":{"Case":"Some","Fields":["7bzSlR0JfNpuqiqE2/446O5jSrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KnurCNv2LrId3bVY8UT4HT1Rr4z+/GZyKvB9S3FwuwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:10"]},"IP":{"Case":"Some","Fields":["81.16.33.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poya"]},"Identity":{"Case":"Some","Fields":["7bfzWtuag8SDQsxWnfc3PE9I4LE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FkZ7JR0sGdaBEIclsFrWZO1i8m7K1yLLNc43oLCBUao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:22"]},"IP":{"Case":"Some","Fields":["152.67.73.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["7bTjb9kVDV99qbV5wluTyHYcKAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EafL/70emKVCuuf11elK63N5ou02mbHrVyEnIqRiT7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:31"]},"IP":{"Case":"Some","Fields":["139.59.102.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Karlstad1"]},"Identity":{"Case":"Some","Fields":["7a8wxY1szzWeoGLGaMcYChcHZEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzVlo7NQ88U+Mu3Lj0beaF1LJrP4cSkks7ONcKBhu+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:10"]},"IP":{"Case":"Some","Fields":["193.11.166.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7Zy1TAcU0BjqXkxjBEenCpAadxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xES/Q0uKlH+zU5+uCeKdeZQ7MEAlYbSxt7JiibohrJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:57"]},"IP":{"Case":"Some","Fields":["5.255.102.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:dd2a::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StayStrongRelay01"]},"Identity":{"Case":"Some","Fields":["7ZpzE3NFb6BxwSo+Y+LIvvCm5yE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pK4gLa4CN3NjE/VyDqUOJWGItGJL+XAHIruheUUM+tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:11"]},"IP":{"Case":"Some","Fields":["162.55.91.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gnarzkorf"]},"Identity":{"Case":"Some","Fields":["7ZToKpTNfl1xuxRSLo0hOHVjJFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PwrgRGIbvdmIn4oZi7EEIdzy2H+iYCtFkW0r9jn+8+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:37"]},"IP":{"Case":"Some","Fields":["77.191.168.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7ZQ9XTKzk1hikWob4z53gNtR28Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hA/0j8S9F7J1hi6b6+vR67XU+Rz5QXlcC/bc4D5VmZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:37"]},"IP":{"Case":"Some","Fields":["84.133.69.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["testalpha"]},"Identity":{"Case":"Some","Fields":["7Y/wwaugc/bmsPVwlA4USBxow9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2iQJKeQk9R4GaGZMF5SUPAtvVXbqPea+xUhEdIZlWd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:22"]},"IP":{"Case":"Some","Fields":["122.161.176.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pXXXq"]},"Identity":{"Case":"Some","Fields":["7Y2kqFOxnLxohVeSFyAnJXPLVLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qHHV8LdmdS7eNqYQhLt+BLpOHxzXQ9jAo3VVpZZflH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:07"]},"IP":{"Case":"Some","Fields":["217.23.15.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WallStreetDarling"]},"Identity":{"Case":"Some","Fields":["7YVF9e+TmEpuqliU8dI6rXz/Z+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5XoqCYbOsVlVu5TiYxevUJ7fSzvuoQcxowmNfLPG/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:15"]},"IP":{"Case":"Some","Fields":["140.238.157.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:1:1f69:43e2:46d4:a7d5:c42b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7YH1nYgech7ckoCGE8f918zjjx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpIVs+7eC6OW5avz73Zeur+3n5Tvb3SHzQ0N1OLtKgk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:15"]},"IP":{"Case":"Some","Fields":["188.68.54.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e028:242a:33ff:fe87:a24]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire63"]},"Identity":{"Case":"Some","Fields":["7X8r5dKsf8+CGpCeJIb/+5XWUnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eUGLl2zbnqTE90DtyED9N11P22b4yFmsmZa4NvZ/+5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:47"]},"IP":{"Case":"Some","Fields":["91.143.88.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Enkidu"]},"Identity":{"Case":"Some","Fields":["7X1qPOw8QKytupGILNBP924cD0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8CXvD9FFhlBLHqDPjawVt6xRrnMHPV4wvAfJQID6o8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:52"]},"IP":{"Case":"Some","Fields":["46.105.154.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:4251::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunshine"]},"Identity":{"Case":"Some","Fields":["7XxlBnl/7BKAmK8KmTT6uxKdek0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V3bmUlpi/Nkc+hEjkyhdSqGnZK4oL8+wlgnGWMySDLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:03"]},"IP":{"Case":"Some","Fields":["5.255.103.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:60aa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["7W7kiCt3HoTVMwu2KACr7zFCN+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vJ65jXNkRO+OXeBzWD5Jjm6x8r5b29wmHL7UzhNeKGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:06"]},"IP":{"Case":"Some","Fields":["198.140.141.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:52]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Naname2"]},"Identity":{"Case":"Some","Fields":["7VzNLpDla3Ys9U4Ri5nMGDX/wsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LPevqe6TqE4fH5OovaFbitRvgVGMGH/1u/QtP2lzrLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:35"]},"IP":{"Case":"Some","Fields":["182.21.27.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk7d"]},"Identity":{"Case":"Some","Fields":["7VtgFNTFyRQIawYVIHoYbu9EWaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GGvrwY5WH1qfEraqGOW8zacKiPLzOM4TBHzG8nxxQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:49"]},"IP":{"Case":"Some","Fields":["51.15.89.218"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:e00::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LondoxzriaRelay"]},"Identity":{"Case":"Some","Fields":["7Uj1sr5/ZoTmGwNBKzjEvZ5e7bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tzK6n/mohHji9Q7WaIIAQ0JaOx4b24z3/Fbr1EjT5g4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:23"]},"IP":{"Case":"Some","Fields":["45.77.224.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7400:84ea:5400:4ff:fe23:183c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7TYSRRX3Hi4kAdcNnvw8rrCNYRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["di4DZ960MIqpqJYLSQ57ZdHLFg7LBKE9nLgFvjo3jgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:49"]},"IP":{"Case":"Some","Fields":["37.191.195.63"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fedc:ac35]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SEC6xFreeBSD64"]},"Identity":{"Case":"Some","Fields":["7SM4ysJxGz4zE5Lh7SgxIZt5QCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pe+cra20qe9b7IEHZMBwmq99W897YJxP6Sny3uOsHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:43"]},"IP":{"Case":"Some","Fields":["192.87.28.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:3028:192:87:28:28]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrushevsky"]},"Identity":{"Case":"Some","Fields":["7Rq5UpqNlp3LCIAkgAWNk0gfGiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BDV/79pS4mLprM9NBQFOPHsPU9QHesnEniyH1kVSjH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:11"]},"IP":{"Case":"Some","Fields":["185.246.188.67"]},"OnionRouterPort":{"Case":"Some","Fields":[36371]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sepi0l2"]},"Identity":{"Case":"Some","Fields":["7RqJBTsMMxAQi5G5TvyVPF+b08E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jt+jNB1Jo+LKlgicaZvFe8jPLvBKOHmHdl+wYE+HUiI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:34"]},"IP":{"Case":"Some","Fields":["74.208.239.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FileDitchExit0"]},"Identity":{"Case":"Some","Fields":["7ROQfjvSkB1t+yA2gFZA6joz2Xo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FJCHj6YBADfm9yDVgMmUSKdmeDQ5wGAMd/kswHQwEKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:45:41"]},"IP":{"Case":"Some","Fields":["193.142.146.213"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra78"]},"Identity":{"Case":"Some","Fields":["7Qw5cowEEKGmFz/g+MHJZn3ffWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZFBxgPopv9XRNv4RjDq59c6LrzvqSEerokglbpRNFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:04"]},"IP":{"Case":"Some","Fields":["185.247.226.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7P5Pdmhtb03rtFO2KWJwIrzr2pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ACytftrVK2ODmrs+LPiqdjfpcUOdmJ9MVLVZf6nFL8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:20"]},"IP":{"Case":"Some","Fields":["23.128.248.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::803a:d9ff:fe7f:d540]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["romero"]},"Identity":{"Case":"Some","Fields":["7P3qSMip9FpyQa7aPDhvTYL4lok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uUtuNTpqje9/CbOKFwatllY9oNl9xMijGaQrBzvh9O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:59"]},"IP":{"Case":"Some","Fields":["185.72.244.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vigilance"]},"Identity":{"Case":"Some","Fields":["7P283/JM0KLUzs6TzFHrdKWha70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AQTMzVD1u0MHugl96HPKQzA7xCev7QpOW98v3OtA/iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:06"]},"IP":{"Case":"Some","Fields":["87.236.197.123"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ambient8exit"]},"Identity":{"Case":"Some","Fields":["7OgxU0QmJ54y5TDNySedNuKmrGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ob803xYqdPCaSDUMS/PJnaWrP+S2HyMoM686P1cC5YI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:18"]},"IP":{"Case":"Some","Fields":["5.255.97.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:46e0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7OEHPKnyLjCwJPw768kBs5pFUqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p6DJvJeN2s38qSntiuxPil+tRRGkdCUWH3Pl41brmEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:26"]},"IP":{"Case":"Some","Fields":["106.185.159.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[240b:10:b1e0:a600:80d2:5dff:fef8:d3b8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["somerelay"]},"Identity":{"Case":"Some","Fields":["7NxAXkkYOy6vV5rNQrRDrqLPNyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf99EmtoTm5YRWvhbfLQYPNnHfnWSeXNsp510ORsq0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:23"]},"IP":{"Case":"Some","Fields":["185.81.109.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7NBu8NetM20spPN9t19sr6O6/fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kw6RQYeU5WdvXTN4jAZr02/bId0Go/0MQ2RPCRfPE60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:05"]},"IP":{"Case":"Some","Fields":["79.192.202.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kelvium"]},"Identity":{"Case":"Some","Fields":["7MUl8nn/MahE5VsdK6DQenjER0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/R2dQPPu4RGscxLHk4GtKkYIyKayLlewtc2EjdMh3HE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:33"]},"IP":{"Case":"Some","Fields":["138.3.250.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8007:3b4d:6275:c3b3:ae2c:d51a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx1"]},"Identity":{"Case":"Some","Fields":["7LJKMm04L4S3vWMM/b4aDNzgJFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cwf3lpPrz5OxcE9uRM8emzUfcENAaly8e+LmvTv24Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:18"]},"IP":{"Case":"Some","Fields":["147.135.78.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tenthcircle"]},"Identity":{"Case":"Some","Fields":["7K0UhjoNIXrlctxq3eGCeww5paY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Y26k8tAK4W6iDFlLD+44E90hNx3vS5za1wtidxvlfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:59"]},"IP":{"Case":"Some","Fields":["37.19.210.21"]},"OnionRouterPort":{"Case":"Some","Fields":[56921]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["definitelyNotLE"]},"Identity":{"Case":"Some","Fields":["7KoJcyQmK2A5T+bzzURqZqMxlW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["19m8anOUUtkpWpOoYHv+cMt1fqVoCQYqbSkrsg19mqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:28"]},"IP":{"Case":"Some","Fields":["207.180.221.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:1408::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinho"]},"Identity":{"Case":"Some","Fields":["7JYhQz3yyZbeVacGO6r7K3HDwBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6PneAgwk5pWyCc07EyHEjcT4R/9qU10pz/ekvXbbpzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:19"]},"IP":{"Case":"Some","Fields":["15.204.141.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LePotator"]},"Identity":{"Case":"Some","Fields":["7JTzBTLH29so2/1hWUPhNNjU/Hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OxjOSV6yZGJYnJ2sgZ50pv6v5sxZVlDAJZDDZRl8zh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:58"]},"IP":{"Case":"Some","Fields":["86.127.234.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AESOP"]},"Identity":{"Case":"Some","Fields":["7IL6mJm+/G3uaOJpa53jZNF/rlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2BKieE6IAfA0eMsziMGQkaD2iHAfiscxXvOnlq+HUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:37"]},"IP":{"Case":"Some","Fields":["85.214.174.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42cc:9e00:b1f6:528c:4e17:6793]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract"]},"Identity":{"Case":"Some","Fields":["7H6ppuvKDp7W8SlSIxMevVWuvic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SpGrVDhIAPPyBH67U5OOLkfrzkppoy7XV99c/vhbNFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:41"]},"IP":{"Case":"Some","Fields":["216.71.206.21"]},"OnionRouterPort":{"Case":"Some","Fields":[7213]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["torwar"]},"Identity":{"Case":"Some","Fields":["7HNz5r7DcEuwYKFPyVlB1CEiMAY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nL1hrWMOLtaAY/cYMwGGL8XfCKQByKi7uyVu2Y2ScFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:14"]},"IP":{"Case":"Some","Fields":["70.34.247.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:f480:2400:12ac:5400:4ff:fe1c:7b70]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["demoncore"]},"Identity":{"Case":"Some","Fields":["7HKIGhEo6xsoPuU/VJB0dxGab+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iRowpX16aDNULSd2Xp11JebGs6EsWd9cqj7mM69nnA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:07"]},"IP":{"Case":"Some","Fields":["185.15.92.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b08:0:2::17]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oknp"]},"Identity":{"Case":"Some","Fields":["7G8jUff9WCw57jEPqjSQqI/kYtU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O36jJB3yQWzaOOrh+WaPalEFoU+L1+kENLlzqkAvvoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:15"]},"IP":{"Case":"Some","Fields":["180.214.72.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SerpentRangers"]},"Identity":{"Case":"Some","Fields":["7FH9OK1ESteoRjv9oDUoJ1W17sE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLPns+cHBUflnXm66ffmumAygdMO5H7PDrPAR/F9xe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:05"]},"IP":{"Case":"Some","Fields":["119.161.100.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bektarRackett"]},"Identity":{"Case":"Some","Fields":["7EaU0xN7om07yuGiWyTYhkaMYQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PIMM1kWw6/IOgaYrfO61nf3srv0ynkBPeix+Bh0yqOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:29"]},"IP":{"Case":"Some","Fields":["151.177.105.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["7EaSibbosKrYpgeFVRAo7EuzYjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vILLi9In/mKxKskSoVWB5vjiVZzTrOlodaByXZD0InM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["217.150.233.39"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:b102:170:50::30]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwellkneww"]},"Identity":{"Case":"Some","Fields":["7EKZhgeWmFlLTSKgoGDWZx4EA+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6t82lWxCMnSIyzbmYUhE7J/UQcszORqPRkEXH+UQpMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:10"]},"IP":{"Case":"Some","Fields":["109.250.44.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeilsOfTheOnion"]},"Identity":{"Case":"Some","Fields":["7D7C4mycV7Rmhunv5+6r1LVw1tM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCRy4tAcMXPxVMPuscRPN8W8vBVNgzZojecjzjrvzRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:47"]},"IP":{"Case":"Some","Fields":["51.210.178.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::baba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["katharina"]},"Identity":{"Case":"Some","Fields":["7BbysdE/ZYNv0reFaZWCjRjzLMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MepqVgNece7S9UxA+iVUX1HuUVRpDPhq0Tgf2U8EceY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:53"]},"IP":{"Case":"Some","Fields":["45.125.65.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["7BZ7jJo4oPX3nUoBR5A1dg4NPWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oEtW0dIeS4cMinPc2XZQa0XguzZBPAGZPm0z6O+AZZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:21"]},"IP":{"Case":"Some","Fields":["88.208.224.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:2b1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN3"]},"Identity":{"Case":"Some","Fields":["7BXbYtkQFIHzZN5S64MTyDi93Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sBqwOGzFtPKBPRbXFv40GLY4W8QVUGfKvrnPcSsLygc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:48"]},"IP":{"Case":"Some","Fields":["199.249.230.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::119]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortimerAtx"]},"Identity":{"Case":"Some","Fields":["7Aq6gR5Osz2ti8i3A32GK/Tzqig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BW7VdaIBxtc6MUqYwAsQnTE3mItFxHzWByuM6CItL+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:45"]},"IP":{"Case":"Some","Fields":["136.49.32.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallycoolthing"]},"Identity":{"Case":"Some","Fields":["7An1GPZKN4wxMw3EcWlP1t36MBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["apXSFuQQGY/TbjNIOYW7lACySjiBZudkXGCBvmit/wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:54"]},"IP":{"Case":"Some","Fields":["188.210.4.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redDragon"]},"Identity":{"Case":"Some","Fields":["7AHqZ0nJ/0TspPGtCKaqKtELss8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HIaiQRPEmqcGWuShGgvLo7zEd85PHmjKTSH+XTfnCLI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:07"]},"IP":{"Case":"Some","Fields":["37.235.49.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:354:37:235:49:138:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackpearl"]},"Identity":{"Case":"Some","Fields":["6/mFOZs969rIgJf4FCR10w00CLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sku5nVJkR8D/gb/Wp/2yvfabAUb2dyenh6dx9c5P8S0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:31"]},"IP":{"Case":"Some","Fields":["185.112.157.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6080::1:5453:e5f9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["6/ZI4c8/o6xGqicoV7yvzNcNSfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EARoxCX29r7qm45Fy0JUpB8BjOzIlVkUV4WRfIQT6UA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:52"]},"IP":{"Case":"Some","Fields":["185.220.101.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBestBridge"]},"Identity":{"Case":"Some","Fields":["6+yTvdFn9RUtv6tfAW5XgL8ylOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NjotzhGM8pRksIMcgcCxHAIWGK5BdQYA0PpjJSLA4rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:49"]},"IP":{"Case":"Some","Fields":["3.143.217.21"]},"OnionRouterPort":{"Case":"Some","Fields":[12000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluxe4"]},"Identity":{"Case":"Some","Fields":["6+cY4aSe4ikHFwKWT42x8xgHX/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npvVpyyUFOTtYccTnM39Y4H40QJHggNOqfQGlUEHHmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:47"]},"IP":{"Case":"Some","Fields":["131.188.40.188"]},"OnionRouterPort":{"Case":"Some","Fields":[11180]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:638:a000:4140::ffff:188]:11180"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5d82520d2de79c"]},"Identity":{"Case":"Some","Fields":["6+C+xcs043vxFkv8cgZP8ro97GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yyaRLnXLrA2mGw2D583tucZUfD9mPxT5VQwICwIV7VU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:52"]},"IP":{"Case":"Some","Fields":["95.216.185.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1742::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiger"]},"Identity":{"Case":"Some","Fields":["69LL/h0RAeW4sTiCPMIUEfOVNUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EMRUOYjKRYgOw7EV0fRtw/ghmpVYmLNFGnp7Wx0d5sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:50"]},"IP":{"Case":"Some","Fields":["109.70.100.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amazing"]},"Identity":{"Case":"Some","Fields":["68zCIeoEagII+cGr+M1omFDjonY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9p1OQ3fZPR/fFzrrdajJOXyvn1q9KmmM1Md+nA1tgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:56"]},"IP":{"Case":"Some","Fields":["135.148.53.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipha"]},"Identity":{"Case":"Some","Fields":["68VTkTH+6gBMQZhsC9A7XIW769U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzVrMvEUlDFS5kN2i+kKY0LoP/zsxvUyngAdQX1YlJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:19"]},"IP":{"Case":"Some","Fields":["185.220.102.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["67jmc4tiTS9hIJS1fda8ddMpHeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oMffQAG8bDaOJp2Cu4XaI0CS5DT6BrciRG/HpZieAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:54"]},"IP":{"Case":"Some","Fields":["80.78.25.36"]},"OnionRouterPort":{"Case":"Some","Fields":[30973]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:8078:25:0:504e:1924:1337]:30973"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OperationUrbanWolf"]},"Identity":{"Case":"Some","Fields":["67eZ+t1hXpPKl75Vg+Xrl90h4Q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbFWcJnZTKBn6nZZfYnQPjB27CVbU/z3zEuA8kiV/Bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:23"]},"IP":{"Case":"Some","Fields":["173.73.135.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jdvnsjfnHBDkScf"]},"Identity":{"Case":"Some","Fields":["67dtCW/1eHowOyyB4hv/mBbG+g0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HrYmYnSdBvvSdwVGwNatXC71eIpZlMQo8w/UC8xkpTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:03"]},"IP":{"Case":"Some","Fields":["94.140.120.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1201::b5e4:ac7c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei09"]},"Identity":{"Case":"Some","Fields":["66PPsSgVAvg1mkl+T2ce8ED1OLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nOUdM1Fq+zsyTyT7tuQ29iqteYRlI+3E+q39Ctq61mY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:21"]},"IP":{"Case":"Some","Fields":["188.68.43.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:689:5493:bff:fe57:5c27]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["66F6U6dzz7QKDV2fMKPQYd3pLAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOeVjZbyiGIlOkisDlyvotboMF3PRgKCO/EwsBsgIPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:07"]},"IP":{"Case":"Some","Fields":["209.141.59.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber10"]},"Identity":{"Case":"Some","Fields":["66D/pXmam515o74tvWAeMBrPsIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLAxN2D3Rwvh2jPy432c3uoOt+Ug7HCgaHntff+/Hns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:09"]},"IP":{"Case":"Some","Fields":["185.220.101.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::5]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["653YDmTdgppffHrKXV/q3+v92Ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3eYdHbg1ilzkLCZAlbDgpi2M0bB33kBhBddJpU+XLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:01"]},"IP":{"Case":"Some","Fields":["185.220.101.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedRelayA"]},"Identity":{"Case":"Some","Fields":["65lkAKHjNTka0N/P4vshAONloOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nylXeQxjgDLvexVehbTDDGxJdd78OHKJnDQKG6UtCF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:10"]},"IP":{"Case":"Some","Fields":["147.210.117.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coveredinwhite"]},"Identity":{"Case":"Some","Fields":["63SXxDq0AR4ovZ5VmpEi8SD1K0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAQENZe5zds48YDLRWLZ5g7Ej+1eAGfC5uoNjkfAIgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:21"]},"IP":{"Case":"Some","Fields":["18.135.138.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pegasus08"]},"Identity":{"Case":"Some","Fields":["63Nk1M7hOxQEx9z7PMNILyJt/Sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy/pbchIK5ISSHRTftbg6XLqypEo7+DNz3mmAc6Wio4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:48"]},"IP":{"Case":"Some","Fields":["194.180.174.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:e::50]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay05V6Rocks"]},"Identity":{"Case":"Some","Fields":["63G92paGEIxIwh+aSEA7Kw95MjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yiwMA9bpcScGn1LwkCv87M0poXw+uYhoKc2WHI2zFts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:38"]},"IP":{"Case":"Some","Fields":["188.68.51.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d519::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyTorRelay"]},"Identity":{"Case":"Some","Fields":["62mFW0G7WrfkNaiimj7fSECgESI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0VJf2aHAVd5/i9i82xrgr5blmCscjrzhdJxE5kQevvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:00"]},"IP":{"Case":"Some","Fields":["85.214.118.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["athanaisland"]},"Identity":{"Case":"Some","Fields":["62aPCnVaAP/YyyqaCS8uaZKxWZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f0pA3aLiKvqmCR6zn41rapiVm3MX2gPTSYN9Z12e6F0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:36"]},"IP":{"Case":"Some","Fields":["47.242.107.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wrogregpx2"]},"Identity":{"Case":"Some","Fields":["613wEkpewoHoLwA4svRfp+x8fHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pof41CWKQPHk2RZXOxxMf3t91uCsgYUXyRe0Tmhpxgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:00"]},"IP":{"Case":"Some","Fields":["176.121.81.51"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Jupiter"]},"Identity":{"Case":"Some","Fields":["611mx69TkT4J+kdKF72AKrZotbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["upNZYw+6RDXmRLpCfJMzR0mElgeQE6EXuEg3wzk2AIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:44:23"]},"IP":{"Case":"Some","Fields":["103.214.5.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8302::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrinityDDh39"]},"Identity":{"Case":"Some","Fields":["60pJ9KXd7qLOmx/Azfl/0CH0SeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dRJqPtBrQewJQ7uwFVXDakBJFCs7nvBBrO32HTMpUpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:42"]},"IP":{"Case":"Some","Fields":["79.254.19.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9056]},"DirectoryPort":{"Case":"Some","Fields":[9067]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6z2pO2//ppnB8nFMnnP6gTu4+CI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fV6xc9UPw0QyIijOvrwPxX1++dj2gnJSadKoW38UD/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:44"]},"IP":{"Case":"Some","Fields":["188.68.50.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dukdukduke"]},"Identity":{"Case":"Some","Fields":["6ysmq9E7L58Hp3xKxviyzFh1KI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CVbJ0BO+StUrUZVkGsrHEM5qEfcDwI+yN45d2GPbncM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:53"]},"IP":{"Case":"Some","Fields":["158.58.173.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NavierStokes"]},"Identity":{"Case":"Some","Fields":["6yHCVgf54PW/ENlKPdSmXOdMhOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOXQucPACJqA3DK6Rw6cL/20nnClEU/RarKCTtAEBFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:27"]},"IP":{"Case":"Some","Fields":["45.86.228.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6v6HZVoFbydimM4XoNj6vuOyD0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYkcodDA0G7n7//dwCGRLMio1YQXT2RCWni8chx3N7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:59"]},"IP":{"Case":"Some","Fields":["188.68.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EncipheredEnigma"]},"Identity":{"Case":"Some","Fields":["6vgOBewRajAyPQZf8P+HUd7vzI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvJVX1c2U/oHSJB7halQAPIP3Gi53OHBeYeVZXJPuak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:47"]},"IP":{"Case":"Some","Fields":["194.180.174.227"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:e::13f]:7443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crazymodding"]},"Identity":{"Case":"Some","Fields":["6u/AD9+W0k91/AB6ViO9ajpzdCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TYLrcZx2xDRMf//RmIjam9o5zheV9QJMsDTXJpB6f1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:42"]},"IP":{"Case":"Some","Fields":["24.134.118.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisLupus"]},"Identity":{"Case":"Some","Fields":["6sNeKQgt49O3ZBJS6Yw7BcgAXyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ErIR1LVGn9yqbLVakUhXh+acTpSo4VF+c1pF60yIMAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["135.148.100.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv01"]},"Identity":{"Case":"Some","Fields":["6r4CbdQC6JGE5nVRIEK0Cd2ZyV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oOAp7Nh5v60AKf9uf2lCkTJkRYZGkiuAlexE0UWosHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:45"]},"IP":{"Case":"Some","Fields":["162.248.163.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6rzlGSZ1OvDtfqGLQh3SbPCHwco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9dU7mtkjpQdhoXekfr+G1eRAVUTIkQAE/agyV2ZNE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:14"]},"IP":{"Case":"Some","Fields":["185.228.138.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex49"]},"Identity":{"Case":"Some","Fields":["6rwt0NR7XbEfLTfrPGDCpNkcEPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BdIHHgCPiA8eceWcgRuPqh6bUtcWRHszN83rSBRVPTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:46"]},"IP":{"Case":"Some","Fields":["199.249.230.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e648]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORB"]},"Identity":{"Case":"Some","Fields":["6rs5AyP4DURXuqXO7lEUVXAOkp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIKYMKxkb9l7PLfY0+Ky853gGX+qLkeco8T4r99d1Lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:09"]},"IP":{"Case":"Some","Fields":["77.105.107.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt56166"]},"Identity":{"Case":"Some","Fields":["6qmhmzdYEPkjW27hJBHz2+/JtQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TW2bSJsTUgX5nUfTCIlBb0h7owp2vHr65JFW4ABI27s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:40"]},"IP":{"Case":"Some","Fields":["185.245.60.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trift"]},"Identity":{"Case":"Some","Fields":["6pq44hjINDd+lXXtT93/oP2CVbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uNI8/B72kUKRS5vITa4d6NNJFq8UGwVbfWxAEdbwZ/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:01"]},"IP":{"Case":"Some","Fields":["140.238.220.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["6pU0pJqgZ6ShBRI367pR4k+2xCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vvo7OBRHE3wp/Weh/fB56Ilza5Q0Nyifjkc1YcPP7z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:38"]},"IP":{"Case":"Some","Fields":["23.128.248.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6oVCjyJOytwYuEeg6A2yUajWZks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aFf0v6qJL3rNPdMdkMLdUJpOXZGCJrR5B+Cx7N+FwXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:21"]},"IP":{"Case":"Some","Fields":["165.227.32.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex54"]},"Identity":{"Case":"Some","Fields":["6n1XXJG7H1PCVRD7+RuH2BrhRkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x9iAhRv/yloEesDMEoEBzq4Tbf10rVcnbnqQB6sESqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::143]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schmortor"]},"Identity":{"Case":"Some","Fields":["6nZCxpQL9lcSZ/Bo7yibk76C8Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ms3n46vuy8P2UiNSbNujjNm5IbEshoQJWEXiZ/KnOHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:18"]},"IP":{"Case":"Some","Fields":["104.236.87.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0151"]},"Identity":{"Case":"Some","Fields":["6mvSAYHUiKg7JVQSdbN09boapFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o3TdliWwPdzGBBcaEH8GRFy+2LtqDgX+Y3ft9u1zuDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:35"]},"IP":{"Case":"Some","Fields":["185.220.101.151"]},"OnionRouterPort":{"Case":"Some","Fields":[10151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::151]:10151"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kennedy"]},"Identity":{"Case":"Some","Fields":["6mmBgX4n14sAMgS5A7BwURPatxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQEt2+W4qXwsQYkx6CFWx5pbU0lI16STI4kAfnbRv5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:40"]},"IP":{"Case":"Some","Fields":["82.118.21.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE67"]},"Identity":{"Case":"Some","Fields":["6mdzGGMrGuod1QdSCAqi+CKax4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IxwBrEQ5qmTR7q+rH0D3Xn87FRZ7y2cs0WHikkCvmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:51"]},"IP":{"Case":"Some","Fields":["37.221.66.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:108]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fountainpen1"]},"Identity":{"Case":"Some","Fields":["6mas87Rj08uzv3cbv4Xp+S/Vfq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEXeP4D0xOCNB5Pu6Yl+xzQsdSwVGV86Aukdnkk6GMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:55"]},"IP":{"Case":"Some","Fields":["178.17.171.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:1f::8d74]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enzuru"]},"Identity":{"Case":"Some","Fields":["6mONuwFOzdBKOI7kTHnwHPwHyw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ei4oLQnyzSEdvfVfDmrEl9xMwY8+NtQbcbHuJCvILtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:33:16"]},"IP":{"Case":"Some","Fields":["104.156.225.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["kaflooie"]},"Identity":{"Case":"Some","Fields":["6llthM3vKo24n/hI/qfbSlKUoa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jAsjo/zkOkoP14+ibHkM33JfpfPwcNc7dJWCpXLMVD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:24"]},"IP":{"Case":"Some","Fields":["107.155.69.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlexJonesWasRight"]},"Identity":{"Case":"Some","Fields":["6lBvV+M/JZflbfXTa78WG0rLlm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLGBvmdGCa3IVJo5ALMAF4ODFoxdD+ZghzG3xOtsaNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:48"]},"IP":{"Case":"Some","Fields":["209.141.36.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monomorphic"]},"Identity":{"Case":"Some","Fields":["6iffMikzc0XLrMCzhvNlcJ1hT5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+5tEgJY0JkarBDc3nt+boTO8VoCKzGGygp6Mf0osx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:18"]},"IP":{"Case":"Some","Fields":["125.30.23.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer81"]},"Identity":{"Case":"Some","Fields":["6iX42USPQl/mmfGSPI9T4yzko7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XUFSd6twjm93vsjrXZVkuNp0pLh7MFlUw3gOLr8+Sxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:30"]},"IP":{"Case":"Some","Fields":["95.214.54.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8181]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Darkbian"]},"Identity":{"Case":"Some","Fields":["6g/Gs1zu+y7s+wrDZoIXfldM2fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e0jtkW+Sn+KJNh8/845ynqlbuuY8IJXo9UOsPnqhX7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:50"]},"IP":{"Case":"Some","Fields":["108.70.34.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redacted"]},"Identity":{"Case":"Some","Fields":["6ge3PsbBTW2NvrGH4bWOToMX3SQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jLsfw4TuqgQb5w6yzj0WeN9pXSKKYBy4g1d4fqqd1eA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:22"]},"IP":{"Case":"Some","Fields":["140.238.26.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8008:b000:8008:8008:8008:8008]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["warpventures"]},"Identity":{"Case":"Some","Fields":["6gE5NpqTQJjYmhTbj5Q2NvwXwM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OFuWouXTbJ3Vg4ABklSn+0xvqkcVbcTdRU8+NHn/wU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:01"]},"IP":{"Case":"Some","Fields":["51.195.29.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["libertas"]},"Identity":{"Case":"Some","Fields":["6fcawG8pshEOP8CQFrDlBAdETuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ToY+XyK6D6G/iimTRPC541Y2Pu4wnk594aZDyTIn3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:38"]},"IP":{"Case":"Some","Fields":["185.233.104.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:24:b3::443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tachikoma"]},"Identity":{"Case":"Some","Fields":["6fWZsBW0ts+Yv3NEN6FS+iif8h4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbmZa9JKawsNDeGMNtDxZHU1EXvsZn+WCK/npinJk5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:53"]},"IP":{"Case":"Some","Fields":["86.14.252.247"]},"OnionRouterPort":{"Case":"Some","Fields":[60024]},"DirectoryPort":{"Case":"Some","Fields":[60025]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waltw"]},"Identity":{"Case":"Some","Fields":["6fJ0LDyfL5/qeAHul6vnaTbVJoo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rtCWEc3AQtcT/4ly6MYto6E/vWxNa7mmcCzoDywVysE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:58"]},"IP":{"Case":"Some","Fields":["71.126.173.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9999]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Urgl"]},"Identity":{"Case":"Some","Fields":["6dpBAbDg1xit9SEAqbMKZ7o1pnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+y5KhYLbpb2dxWBC7p/5NWC1jQGsw8pcObgdOPruM3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:12"]},"IP":{"Case":"Some","Fields":["109.202.205.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["6diXkxoLX+Xk3GCM2zGq0XNX3Nw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXnTJV9EsCSNLJzW/eLsZO0tRlyCPsTuNh3tjZHn9eI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:10"]},"IP":{"Case":"Some","Fields":["23.128.248.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal1"]},"Identity":{"Case":"Some","Fields":["6bBtNd77Gg/6z3NcEN5pSw9KSfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GjQAH/3sFBCskzsGfhQ/AZJPMyY5/Xx2wUyg+I9aLAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:30"]},"IP":{"Case":"Some","Fields":["51.68.45.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::138c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toro01"]},"Identity":{"Case":"Some","Fields":["6abhVJMAw1UQcbcaxUfiVo2ffO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orAG/TvQIJ2viElhZzXt4HbMruVmkX9CO3IoJqVuv78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:32"]},"IP":{"Case":"Some","Fields":["178.17.171.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:5d::2d4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torHTHosting"]},"Identity":{"Case":"Some","Fields":["6aZD3Da2OW746PpKbr/keqYrtkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F7kn5FeFb911prjAOHMN0r1ncNMzgNM30kPwONr6TbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:54"]},"IP":{"Case":"Some","Fields":["213.202.223.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[81]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:157::200]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockeredTor"]},"Identity":{"Case":"Some","Fields":["6aCOEa22BojeNaO9mSt+L0Ho/lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8DSOVKdvigjzYdsEFmBvOEMSY98/UbdHSuUyqKV+VbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:33"]},"IP":{"Case":"Some","Fields":["217.239.5.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["6Ye90apG3UL6vYV0+tZaD4Newwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f9Gy4j893f5sZ5f6a/ii2Fu0R/y8/27H+suhtH2ARPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:01"]},"IP":{"Case":"Some","Fields":["23.128.248.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::213]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber60"]},"Identity":{"Case":"Some","Fields":["6X+9DV+VJrn5dSmdkcKF59oAE5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XG1kt431oQ/sGLWxzc0KDQ11jdYvDu7m8pdhjpLxd3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:58"]},"IP":{"Case":"Some","Fields":["185.220.101.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::30]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohhiMarc"]},"Identity":{"Case":"Some","Fields":["6X9YwG56pxdfm+KjxwgyXAP7L7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6pbRbRi2OjPBDfwD6MStQKgrYO8z41iHQCb+fz8pCF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:26"]},"IP":{"Case":"Some","Fields":["103.251.167.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gsrv"]},"Identity":{"Case":"Some","Fields":["6X6ymZ//+w3cHFwCchpJWUYHlnQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RRhqn6DtqCdu7OwAIPETTaaYaYibc1cH5CLUXgZ0ZFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:13"]},"IP":{"Case":"Some","Fields":["80.9.202.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb19:81af:800:48f7:8dff:febb:8997]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mgnsrr2"]},"Identity":{"Case":"Some","Fields":["6XRMT34seiGbOza3aDXAbGeq+mY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h5QJR2wsIg7RzJprNDXvBpCic92OZ6Y3Nqs5oggcA1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:20"]},"IP":{"Case":"Some","Fields":["46.38.240.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigChungus"]},"Identity":{"Case":"Some","Fields":["6WGM5mS4CanAutMZJhGLelHVdLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYV/KzKEv1ulFEEME/cuJfCyaqhaOIIAqjHY/IvVffs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:08"]},"IP":{"Case":"Some","Fields":["83.9.147.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kellersau"]},"Identity":{"Case":"Some","Fields":["6U39rt14QuBE0m5FFtr2v0cJy2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c+p2E2GztUK0MhTIGulaZHG0HmGcwjImwQnRftEoW4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:43"]},"IP":{"Case":"Some","Fields":["145.254.156.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dgplug"]},"Identity":{"Case":"Some","Fields":["6UfAKQh/ocNJm+9dQ3KUfFEiPY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3cf+O9edtSm0t4IO+lq7iAF14BhXVWyQacNqmG0Jvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:00"]},"IP":{"Case":"Some","Fields":["195.154.105.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maRn"]},"Identity":{"Case":"Some","Fields":["6UShGjLwyeCQUyhCUEHDml9MZw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sV6EKIFAzeCmrcpl/cI2GTm7dxMxIWLPcTcuBlfV2Ck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:21"]},"IP":{"Case":"Some","Fields":["85.81.4.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Horizon"]},"Identity":{"Case":"Some","Fields":["6T3LWH64QOLRbtRjIzzOU/0lmrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSTLIP1I3AQi/sk5WNt68lsDQOgdMzMLUt1oAID34gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:23"]},"IP":{"Case":"Some","Fields":["159.196.69.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForBetterFuture"]},"Identity":{"Case":"Some","Fields":["6Tu6bVrHvLFztdigu78wboUG5aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E3NMBfUCqYBBCgfv/E1eocNteE3WA6j1DxJZKe4+NNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:53"]},"IP":{"Case":"Some","Fields":["206.189.132.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DJh2o2"]},"Identity":{"Case":"Some","Fields":["6SSFx0FeLwIy/ikAnI8NYfvpBio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/a5NKnAbpP+E0NBnO354vxNWvUADmBVljXCywPzhxeA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:00"]},"IP":{"Case":"Some","Fields":["5.146.68.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt28156"]},"Identity":{"Case":"Some","Fields":["6SCaNE+DISRSuH1cl/SOMbPvEmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fo44GeL1VgcMmq5ZH1NjpKGnUFOybcSz3ztRdSyud0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:57:36"]},"IP":{"Case":"Some","Fields":["185.245.60.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortoise"]},"Identity":{"Case":"Some","Fields":["6RkFz+sjCxvqawMJgW+e6cGhqDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xq4wRfoa0kD8K48z8xo5sE0oflGtSMfdxgsSJrGllHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:16"]},"IP":{"Case":"Some","Fields":["130.149.80.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JesicaJones"]},"Identity":{"Case":"Some","Fields":["6Rf4c5jH5F7izOSh64fUZHSmUzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B+cxk1nqdj0+7NCXYqFNpqfkwrGQ3yo0SVS4pP/S/Ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:25"]},"IP":{"Case":"Some","Fields":["216.73.159.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6RSrIF+lq+YJBquefuUntoCaRsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RAyh6TgfTc2mt2F1mqU/LoQrtmSHJl+ZB/VOt0NNbh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:03"]},"IP":{"Case":"Some","Fields":["37.228.129.29"]},"OnionRouterPort":{"Case":"Some","Fields":[31749]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tengu"]},"Identity":{"Case":"Some","Fields":["6Posm2kPO8Fq3ppIA84sURMvEKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6kFqhbIphEytDlODLvPeo+MmL2Hm/SaGFoi1ZynI3pE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:13"]},"IP":{"Case":"Some","Fields":["66.183.173.29"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gorgothzilla"]},"Identity":{"Case":"Some","Fields":["6PCuFBUUWKV6OBLvsTmpfMSJyN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVJE/xKvIBDHfzpSpyDXxwsKxp+vYQT8dzlT2yKQzUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:24"]},"IP":{"Case":"Some","Fields":["51.15.177.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tortue"]},"Identity":{"Case":"Some","Fields":["6O1AXkekd9ktnvsgH63yj/f7r10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qYlUv+scIJm99uNTpxVvc3CwCx8QPW/t4WkDrByXgSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:15"]},"IP":{"Case":"Some","Fields":["31.201.16.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torathoooom"]},"Identity":{"Case":"Some","Fields":["6OQZzIpqjOE+c3iJvQJfctCh7dk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lIb6JTQEQH52pN+G2PTeGBNTzf5Lz5fkpFuwtY7dkTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:35"]},"IP":{"Case":"Some","Fields":["45.138.230.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousLover"]},"Identity":{"Case":"Some","Fields":["6OPRyiq21EaslzrztboxQR5xuwg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zf4QIti9JmzAzKm9utOBRmoSgR9ggtTDIl8+bYpbHhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:18"]},"IP":{"Case":"Some","Fields":["79.192.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[1515]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetafx"]},"Identity":{"Case":"Some","Fields":["6OG0+N4AT6uCmbGlpQYPD/fA5Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jNC8eIyTohZhT9Mkl9pcQ+pmk4QNT7cpeA8Ugi4FRVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:20"]},"IP":{"Case":"Some","Fields":["107.189.13.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mentoreth"]},"Identity":{"Case":"Some","Fields":["6OCYnoVnZ5pIdT5AKFIPUWaRTno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ItneEEWD8tel+LHa0HeTPohu+JX1LeMV3Bo93h3bD2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:39"]},"IP":{"Case":"Some","Fields":["103.251.167.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libreonion1"]},"Identity":{"Case":"Some","Fields":["6NEUs8eNjm5/6xAEZQ3WMsIUPJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zSzI+A7Yh/3RUApKn2H9y5r2uCbRUtVUROKw1NqRp3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:18"]},"IP":{"Case":"Some","Fields":["185.4.132.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:f0::5492]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1174"]},"Identity":{"Case":"Some","Fields":["6M9XC0q0OdV6YYsHtEZncRqBGCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rHamSETAm3WllsnAMOr6rSbPc9z1Q1DfRVxLVdAABR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:22"]},"IP":{"Case":"Some","Fields":["185.220.101.174"]},"OnionRouterPort":{"Case":"Some","Fields":[11174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::174]:11174"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["6MhmfK89UUjlLs9zansgSYL3jqo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P8+sqB8uCtX4bE303jP1Km/7m2FjoWdIo0u2ysn1tss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:50"]},"IP":{"Case":"Some","Fields":["185.220.100.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:2::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["6LiM4253a20AnZ0MzrduvpOrUW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEACGjFJp8Sqfcy1g9aV6QYGGh89Ug145h/lCJ7fu4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:10"]},"IP":{"Case":"Some","Fields":["213.238.182.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["6K2MT9w/4VIVDABbsuqmoJkLdN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WMHeEYMtsTnMwm5/FSSpp8cr3uTn3f/tyTT8LxiuQmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:22"]},"IP":{"Case":"Some","Fields":["185.220.100.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:13::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE51"]},"Identity":{"Case":"Some","Fields":["6KRwiUZ/huiWhqsyeacLfwzDi18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mds6M1KWlBEtGRd3U9CaM05pLsYUS6u3cRQHwyO864Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:58"]},"IP":{"Case":"Some","Fields":["170.231.236.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomNode"]},"Identity":{"Case":"Some","Fields":["6JxtyTJ5duYq09nbHsCVdm+DGiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/DpjkEeorSA6ePLeWW4Ia5raXzvsAnh/hydiD9MLMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:10"]},"IP":{"Case":"Some","Fields":["162.55.220.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:ba9a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Azula"]},"Identity":{"Case":"Some","Fields":["6JaGEmE8VIv8pj175Ufi0cWU9To"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o+gRc8Ucr8wtskl9964MtBNNdl+wh8koq1cNk2ZXI5o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:00"]},"IP":{"Case":"Some","Fields":["85.214.80.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei08"]},"Identity":{"Case":"Some","Fields":["6JZaefsvM1GUFB6JaHVVJIQMRLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0toWgrnU2n1Ux94ei9TdHs2ucdvduYcg7Ouw62j6xKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:14"]},"IP":{"Case":"Some","Fields":["37.120.171.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:543f:78b2:4fff:fe7b:fb6a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire60"]},"Identity":{"Case":"Some","Fields":["6I+OchAHCeIm8i32pQNlSABU7NI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q37HbRGIUgUKmqzP8Ty63IQWMaGbnBUwfqqyvL7Imsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:57"]},"IP":{"Case":"Some","Fields":["91.143.83.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::1af]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ORelay"]},"Identity":{"Case":"Some","Fields":["6I4uZiKIPcH4IpIUqET3mowKcCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kCTuwxIKetV98nP9P/oZKNMa+1Np7b3h+GSBBfAH58Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:21"]},"IP":{"Case":"Some","Fields":["129.159.197.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:800a:9b00::11]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6InJ7IVmAxSnzlohqhsGVADkXTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfL3yyl41gDQ26V4KMOicjdEOz/7ml9EM2VSYDGE4q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:52"]},"IP":{"Case":"Some","Fields":["185.236.228.89"]},"OnionRouterPort":{"Case":"Some","Fields":[43893]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH117"]},"Identity":{"Case":"Some","Fields":["6HLtQjvZCV7OWnla9TuUQRUOauI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JoMDYpc5T37+egXtIbu7dthHHmbjvZ6ieHbsPJu7ats"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:10"]},"IP":{"Case":"Some","Fields":["45.80.171.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:16ea:90:45:80:171:211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mailus"]},"Identity":{"Case":"Some","Fields":["6G2FjyqvneKiuVKgv4ZLfzXtyKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Fl7SHAk9eSQeNfzfEM8V+XAn+AaILf70/NflFpbHbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:57"]},"IP":{"Case":"Some","Fields":["136.243.177.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:2684::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6G0W0qDjUD5plx3pmZiXV8aTEZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ryhaRcNu7QVTvjzN5tVqgaV1Jtzkbmjoeplr/yunxy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:37"]},"IP":{"Case":"Some","Fields":["185.170.114.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torwell1984"]},"Identity":{"Case":"Some","Fields":["6Gqzio8lr02iNCy5wOhprwl4DhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nIeVrp8jWGdsdiyogA7kgNVdc6ePupmGc1SvLfOaATc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:38"]},"IP":{"Case":"Some","Fields":["68.160.134.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute19"]},"Identity":{"Case":"Some","Fields":["6GY5JP4qrU4IGhftaXbQroAQ9Hs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yr4Y6tFGUM5WjAlfIp+DLF2SgA/3Zhc2RttNK36GSko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:12"]},"IP":{"Case":"Some","Fields":["185.220.103.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["6F2ARl+ujSkauJIpLz6g1vsII1E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GuzVRoweBVO4G9RLyOMY6uUZJtwdg31tvbiPECP57I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:21"]},"IP":{"Case":"Some","Fields":["23.128.248.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Viscofresh06"]},"Identity":{"Case":"Some","Fields":["6FyOPPssiEqJb5v0lJ+76StvM/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M4lvrhOyaC8ThpheOSJ9XetZf/MjbEGUsQGLkGQ+dNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:28"]},"IP":{"Case":"Some","Fields":["145.53.186.90"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isoedideditheconfig"]},"Identity":{"Case":"Some","Fields":["6Fn/4+jQkxDyZkurja/vM/XNJG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FSOrc/dCZsEFX8Aosh2DYSPoXRH+PyK9HEljr8g+QAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:06"]},"IP":{"Case":"Some","Fields":["178.254.39.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:481::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2go"]},"Identity":{"Case":"Some","Fields":["6FYsfPvrZQHy4C2gAgP5WOixaFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8JlYK7i92imnm+5/aDJVaiDu3gxWUil8mOCpxLY/G20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:11"]},"IP":{"Case":"Some","Fields":["45.79.177.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:92ff:fe82:20a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6E9B+h0fowP9epmjXlCs70Jphow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jzD1jLI66scessE/xZo9QLc/r0cvYsVeq0Dmxu3+H7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:52"]},"IP":{"Case":"Some","Fields":["37.221.198.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:26:6831:11ff:fe02:b39]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["natestorrelay3"]},"Identity":{"Case":"Some","Fields":["6Ex22b90aUBFUG6SK4jTxD2+1iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n84iSxQ7MT5JdPK4wbzvrARdBep75PGakd4SiysxOWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:20"]},"IP":{"Case":"Some","Fields":["198.98.55.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BetelgeuseIT"]},"Identity":{"Case":"Some","Fields":["6EZuAsiTuaZgKiUczqEA8lLiW0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dywch08OqwxZtTa8kOuR1JbZZO8+6bjm1U5jwryn9/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:12"]},"IP":{"Case":"Some","Fields":["83.136.106.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:30fe:8547]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kanagawa"]},"Identity":{"Case":"Some","Fields":["6EUHvD4JM/4GjC7Qup4bh0uQVm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mhZshROm9FWxFYwq/i3YRYYLgFGkMPOGEOQaSIz+Yp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:57"]},"IP":{"Case":"Some","Fields":["100.40.211.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dominate"]},"Identity":{"Case":"Some","Fields":["6EJmAY2J9PeiuyvKHFuD7TEmtb8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hCTX45DvZM4bgjho4mn7cdqsmei8sLdh+xklJvdSIoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:57:38"]},"IP":{"Case":"Some","Fields":["23.238.170.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhNoAnotherRelay03"]},"Identity":{"Case":"Some","Fields":["6CO18ACDWmaekC665ezLmjJPRsk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtGQxui7vigwf9J/prDFXcm0Qm38yWCe/O7hh37Cr4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:18"]},"IP":{"Case":"Some","Fields":["198.98.61.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:cdf:e985:affe:1b99:1013]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProxyDB"]},"Identity":{"Case":"Some","Fields":["6CLUvLnLxkn6LM0UPv/xgmzivW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dd64UTui7q5gLp2pCP7HwfBulYNLlImMiwA9QwDo374"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:01"]},"IP":{"Case":"Some","Fields":["107.189.11.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked02"]},"Identity":{"Case":"Some","Fields":["6CH83Udzww9aFSbhHFL5YLXlb6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/aiAhNtnbP96wYyC86gRtD4Kxglyvm152lcW4y7K/ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:17"]},"IP":{"Case":"Some","Fields":["130.61.20.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8006:63ff:a274:5ee:c506:8c54]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chimborazo"]},"Identity":{"Case":"Some","Fields":["6B72CnOzgJ+JZPc3ZrAbqgoXHiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7RaL7nGAQ71pNwNnIy7IaCxTWQ8fhMWNIG/OgORjfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:02"]},"IP":{"Case":"Some","Fields":["212.47.244.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["obiwan"]},"Identity":{"Case":"Some","Fields":["6BmT6lK3MoXP/QL+wANWnSFIMAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CxKopgFBcIWR72kEShYs6PnejnE9SAQvumCPXFqgyr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:09"]},"IP":{"Case":"Some","Fields":["78.46.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["llutztorrelay"]},"Identity":{"Case":"Some","Fields":["6Bl4159fvGfdDoD26tzoipenlVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Rro8Wd7XS5Te1xfr+4S57ptLz8pZEUjETjzpS6LXHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:38"]},"IP":{"Case":"Some","Fields":["94.199.213.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:147::52]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homebox57"]},"Identity":{"Case":"Some","Fields":["6BbE1M2pgQ0ssTcSV0Yv9rzk35E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRR0BcX2T8mYh+RjvW/1PpL88vzTf5QBRjXYfnN1Qwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:19"]},"IP":{"Case":"Some","Fields":["86.115.12.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor70IPConnectINFO2"]},"Identity":{"Case":"Some","Fields":["6BY15fIoD0yt0PjdsjBope8hblg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["40eHZByJnRBXCGvrt4e++z0SSawNN2lM0WCgncmzvEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:20"]},"IP":{"Case":"Some","Fields":["194.5.96.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6BK34fQzywaEO4wNMcyHiOo8dTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ySl/gbnuWt6EBdx0uJTrTH8zBjCAhlffz8/lU9aHoCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:12"]},"IP":{"Case":"Some","Fields":["109.228.40.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi2"]},"Identity":{"Case":"Some","Fields":["6AKPDJa6S1DrfTXRqk2dxwnOYys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uuWEt8Qr9ZNUNdEsaU5J18KxgQgRF8V+/ZNRAMaY4ks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:59"]},"IP":{"Case":"Some","Fields":["46.28.107.138"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:0]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gertrude"]},"Identity":{"Case":"Some","Fields":["6AG/6QSBBvs+OaGwdssDZIzpPY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RQ572HiIJb4HpbSlxr5i9Zw6oagy5yx1BpPsvtvmhjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:26"]},"IP":{"Case":"Some","Fields":["176.58.100.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe56:2656]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gumersindotor"]},"Identity":{"Case":"Some","Fields":["6AFSfRp3MvPTC4fxRL5ooCjo7f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T35CqZVd9xxa9VsGNs85Is1/LZJFDg3Kag4RYp5pNGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:25"]},"IP":{"Case":"Some","Fields":["88.21.125.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5/79qujQGY/6LWAU3bOm15VPEYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwyNHKjBQLjG1ZAXWWQuZIwJ3ta4IVKYenOfWKejLmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:00"]},"IP":{"Case":"Some","Fields":["192.3.81.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["elites2"]},"Identity":{"Case":"Some","Fields":["5/t/IdaLPlmMCY41QLaWXcjZNPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Wk8H0o/+wustxZNcoB74J3gtdSXxtNbmu/umyDdGks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:00"]},"IP":{"Case":"Some","Fields":["45.58.154.221"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Silverwing"]},"Identity":{"Case":"Some","Fields":["5+9ztHIs+vDoqiFR06p4cB3l8Zs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZ/jsbeX2/0KGkf7vPzoriHO/8rqVYKvz6iOPz9sWig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:49"]},"IP":{"Case":"Some","Fields":["178.254.22.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["5+3WeJrf0OoiWV83u8Ku8Bno8uE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T5fKM63Oclc2Pz9h7TU9MfWhya/5Lg9Z+ITTzQiDi8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:49"]},"IP":{"Case":"Some","Fields":["91.223.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2"]},"Identity":{"Case":"Some","Fields":["5+AJLdyDlu4rV/bEaKrd3UjAz5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Eo+AoTYph9AT9koecMxrlW3cCT/uWvZer/+ef3kMPjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:31"]},"IP":{"Case":"Some","Fields":["67.219.136.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fd23:1:0:fc0b:dbff:fe0e:b25]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiebelPrincess"]},"Identity":{"Case":"Some","Fields":["57b9Fx9PXr94cW9jt9Etf2RxD/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IRMjkbxoem1x3gtMPxEVOcKv6/JWxT+hV1id5OqGziw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:31"]},"IP":{"Case":"Some","Fields":["79.249.90.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:4ff9:5a30:0:921b:eff:fe46:a0a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["57HXRDGaWrDwkliyb/2c5EYzlUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XCutdYNy4ofitCfwmfKQL34QOX2tvpKX0OkinyVeCiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:58"]},"IP":{"Case":"Some","Fields":["107.155.76.66"]},"OnionRouterPort":{"Case":"Some","Fields":[24752]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WetTrash"]},"Identity":{"Case":"Some","Fields":["56VtVvItcFJmepyBCwjHCd+ZmbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2puYkhMPErNzxe+r8T40882O/G8sRzy4yom+RcQ6nzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:24"]},"IP":{"Case":"Some","Fields":["135.180.214.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waveguide01"]},"Identity":{"Case":"Some","Fields":["56PaQryoZDDwid0yw/2jNTTnbxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u7yvalELDlwZ1GEXwb0Ah++3iMdz45nL8F2uSbuW3ko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:23"]},"IP":{"Case":"Some","Fields":["95.217.30.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c01f:30::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["55ggJ265zcadHB3O2F+5ivWMCHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Du1PiHNL5GiHRlCBx6126yu+2Q3KVu0O/3qs76xaXNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:40"]},"IP":{"Case":"Some","Fields":["141.98.6.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jobcenterfotzen"]},"Identity":{"Case":"Some","Fields":["54j16tNtR8FOQ8KJ603k20aLrBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fy9G70kKNzCgRzSv05kN26itWqn2QqQ2DCfSSmYVa/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:27"]},"IP":{"Case":"Some","Fields":["87.152.40.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["54WBP7vTUmZLwfEzzjGlTvWWxb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G3QjFVrQl9/BLlhr/CTyFpjV9vL7ZnqC4shHvzaxEOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:33"]},"IP":{"Case":"Some","Fields":["77.68.3.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:21d::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["52+oIDwLH9PysTvDFuCrupxWDRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["brwX/xIByqKChG0MIkQVA2znsjysneaMtN6V3CBh0bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.53"]},"OnionRouterPort":{"Case":"Some","Fields":[10053]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::53]:10053"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FortyTwo"]},"Identity":{"Case":"Some","Fields":["518qyhoYKRr+Uua+C6wfgFq8FDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cyGMbySSJTizEktP94nAyHQ/CGs4no44UdC0iAFrlgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:44"]},"IP":{"Case":"Some","Fields":["40.131.187.116"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["51q/KdS0F9PTVlrtr4nk+dFuc28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TF6fAECMICqbc6y+NKEWD3c+BYqUtS4blgWuYlbpWGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:59"]},"IP":{"Case":"Some","Fields":["37.191.206.197"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:feab:5d7e]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WorldGate2"]},"Identity":{"Case":"Some","Fields":["51o/rIGp7BOresmrCwQqAr2SO5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zc7w5QgOiRrkfaneZDeoUV3nnDhLyTdHQd7HJ+YNHoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:15"]},"IP":{"Case":"Some","Fields":["90.65.4.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:604:6700::1545]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipfb"]},"Identity":{"Case":"Some","Fields":["51FmztuDl7ht5RK5t5uMpyJey1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BCxw2/WgiJNvThkDM6n1yiHwBGOBIVJ9Hfz2peZocP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:59"]},"IP":{"Case":"Some","Fields":["185.220.102.245"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::245]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["50ZzcaDAYaZKmvlD9TDyU9VDM+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTgDflIGLFs/NL+0czr4bFWwl9Fqe+mbOwoVaEV+0Q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:46"]},"IP":{"Case":"Some","Fields":["185.220.101.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::198]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fezyqelo"]},"Identity":{"Case":"Some","Fields":["50YRLS9FDdwGNulr2WMeKTmcmxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2kiZkg/Wo3qWUSnK0vkW6ow4hKHVIVMbW2IC+T3kAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:28"]},"IP":{"Case":"Some","Fields":["45.130.229.91"]},"OnionRouterPort":{"Case":"Some","Fields":[10600]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:4780:3:3:d82f:b918:3557:6774]:10600"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DonBronRelay"]},"Identity":{"Case":"Some","Fields":["50NxJD7MK/xkcSUN3no1mWyCw3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuFNn48fPnPLeUiO8rncnBBIuO4Ai8pWIrgWxGy/Y1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:36"]},"IP":{"Case":"Some","Fields":["95.33.168.246"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockyrelay"]},"Identity":{"Case":"Some","Fields":["5x2NEVkIyxGWqb4Q2PQtL/0OJy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8sx30YBmZffrooibmMnlpgzLJjA+nWLH8eWyOS+akNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:25"]},"IP":{"Case":"Some","Fields":["178.79.181.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fee0:8bf9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["5uStLbxt45o1wz6dAWXASv9SzJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nFACtfyJAsRhAKk0kSq5Rzb6AGw/dv7uFtRccbSMDYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:16"]},"IP":{"Case":"Some","Fields":["23.128.248.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::230]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk13"]},"Identity":{"Case":"Some","Fields":["5tQzK/QP3ueBTy28kmZQ74AytkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8bHTjee2u8QJ0h9TmfeexlTzItVD7sVI29Qxz4ZCX4g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:59"]},"IP":{"Case":"Some","Fields":["51.15.44.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:190a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DogesNode"]},"Identity":{"Case":"Some","Fields":["5s06uB1vRYHtE/rs9quxoCDm3Ug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/njhJU7eIR0EAIHi8YIJZ9DRyMcJFQUHssmq+vw21WM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:04"]},"IP":{"Case":"Some","Fields":["54.36.203.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazarusRelay"]},"Identity":{"Case":"Some","Fields":["5r9RL+VqVIyx/YljYH0iATjER1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qi+PoYhtbbBEcvmLg10BK7UTM73SuHckD4JMYqvSzLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:47"]},"IP":{"Case":"Some","Fields":["62.204.41.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:3ecc:29d5::3ecc:29d5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5reBaGLqLa+oDIxBwxOAwfp4ViE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fttE8Ppo70XI2fCHcUrBTtSm1w1xlgJ0s0J2MzyAI7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["116.202.169.25"]},"OnionRouterPort":{"Case":"Some","Fields":[2443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaxyTorProxy"]},"Identity":{"Case":"Some","Fields":["5rFMUNpbK74/v+d9blaIAs/cJOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8RX09OWhhx956SZ1TqOEn0YjpNVk5CRCmKb2Rqj7xBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:31"]},"IP":{"Case":"Some","Fields":["79.175.97.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:22a3:100:64fd:a1ff:fe93:48c1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeverlyHills"]},"Identity":{"Case":"Some","Fields":["5pAi3sAPJZsYsvbqYWevH/S1SPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qCOwJ2GfYwIB5shDflPcBU1Hqj9Dec3WoPz4wKlEe8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:55"]},"IP":{"Case":"Some","Fields":["75.87.189.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["affinezeussv"]},"Identity":{"Case":"Some","Fields":["5pAQPz44ij2cElk28a5cZMGibVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pTH6gDormKeAyJDzUNB0BDL11fE5d8Is0x2/Uaupw40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:37"]},"IP":{"Case":"Some","Fields":["50.65.174.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:3d09:667f:e110::37f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlUA2"]},"Identity":{"Case":"Some","Fields":["5ozJwuJi4BxMccj2bwdRewq14kU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8QUf/teQJt2Iwzjk5qwT9od9nX5TVUkXtpei0/e1IzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:01"]},"IP":{"Case":"Some","Fields":["217.12.221.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::12b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra76"]},"Identity":{"Case":"Some","Fields":["5oVzOkovGEqzIIRglGUYBqYmJ7U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NrsqcxOEWDsUC34M92nu5BK9jY2r/bbdrSNAdaUOhuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:19"]},"IP":{"Case":"Some","Fields":["178.17.174.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:db::e9d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheClashFruit"]},"Identity":{"Case":"Some","Fields":["5oMVgGE86Sp9IT1KVDPe9FLIua4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gpFYGOQOSxyKHS8rpylDWC4tG+iY3pVEY0k2c9eltYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:45"]},"IP":{"Case":"Some","Fields":["92.119.123.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JupiterMan300"]},"Identity":{"Case":"Some","Fields":["5nhIWE4eRiHdiI4RrZxQR11+Rq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D8zTXXmNorTmWjiQQm27qrI0qrP90/IPIlxs75+SxOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:40"]},"IP":{"Case":"Some","Fields":["83.99.147.75"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["5lY74+Rb3+N13+RHaSXLmXklGYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6nqix89LGi988wKjCzbpGh4DQ+WU6MrpbnJgxwaYdwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:11"]},"IP":{"Case":"Some","Fields":["185.22.173.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:20e::a752]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["5lGCOgVjixqjQTcFxDR0DnCISSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XLl2u5gI/V2LUb+3if1AvD9sG2tpL6FlCqqCrZHXjFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:52"]},"IP":{"Case":"Some","Fields":["51.159.144.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber05"]},"Identity":{"Case":"Some","Fields":["5kuaVZOG5e/Uw6QmDst3XALDwDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CMqRv5b0JiTNQVhY/gFYGJq5M94aE2KYbaSpiq6ruEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:26"]},"IP":{"Case":"Some","Fields":["185.220.101.3"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Xternal"]},"Identity":{"Case":"Some","Fields":["5kYl7VsBofDpe88LXUMaQyok9Ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RTH0QrMKpnVYu6B4y81A36O9b+javIyunOmuS7MCUrc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:36"]},"IP":{"Case":"Some","Fields":["128.39.8.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MumxzbaDoRelay"]},"Identity":{"Case":"Some","Fields":["5jlU5ZTodo59SdDGYPf8ramb/Jk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xvgoq5FytcmjdgLnR5wBN8FcWExakPT87K0VoXpPUwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:16"]},"IP":{"Case":"Some","Fields":["65.20.77.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:2400:1ac5:5400:4ff:fe23:5945]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay23at5443"]},"Identity":{"Case":"Some","Fields":["5jeqCtS8zdFkOtu9bnveGxNSeGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TMbfmnXRTpf9QKzStdTDwfc4R2GbNfMecos5iKKkyL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:23"]},"IP":{"Case":"Some","Fields":["140.78.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MickThaMouse"]},"Identity":{"Case":"Some","Fields":["5isBgkUUA8F7PzNcFG/ML1Sd89s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6abSKH4hTvUgTk2u80VNxFh/HWVguKP9Af9QsIqUcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:20:45"]},"IP":{"Case":"Some","Fields":["103.9.79.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM15"]},"Identity":{"Case":"Some","Fields":["5ideisByZY4Za4njiRpZe0lxaDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eGMYGZFlgJV+ymh7CsKDxvOCk9VPu4Y+vAWodQ8YwzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:33"]},"IP":{"Case":"Some","Fields":["185.239.222.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theark2"]},"Identity":{"Case":"Some","Fields":["5hIwYyWuA/DILCkKyvuMckqLW5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XL3tDCsFL7PI8afJaL5H868vHQ4n5nUvRxAsN57FyaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:09"]},"IP":{"Case":"Some","Fields":["94.16.123.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:89c:b8d4:46ff:fe68:40db]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorKeyRelay"]},"Identity":{"Case":"Some","Fields":["5gYPCegAf8fPrHvCRHf52HiyR90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jthrcZcCETYpct1eS5F80pO9yCMzNDI0FFQV3KuaA7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:43"]},"IP":{"Case":"Some","Fields":["81.51.253.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["askatasuna"]},"Identity":{"Case":"Some","Fields":["5fPt2ScUjF6018tx3LyROC9Xp6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Efmzg4UjUw1+lcNcm+2CwoqnkWO3ojskf8t84oNR58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:46"]},"IP":{"Case":"Some","Fields":["98.2.231.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["liveinmoon"]},"Identity":{"Case":"Some","Fields":["5fH5RXZLuWn7JOyT7e12hGuMEEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COMp3G3J0n+aBo1j2fYLCAjNbBh6vtT0YDk9m2kIU0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:14"]},"IP":{"Case":"Some","Fields":["162.62.117.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["right1"]},"Identity":{"Case":"Some","Fields":["5e2h9FAmjmiObE/V952pVjCyrRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6uoRkpdMchzM+z0tNfh4Ud6IWuC/ilWhIrNZVWJ2rBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:31"]},"IP":{"Case":"Some","Fields":["174.128.250.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yyzz1"]},"Identity":{"Case":"Some","Fields":["5eVT9R2CA1os5VXbx9iD+qMu0LU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9unPK47S85HnCaAP9q/4f6EIWzUVNJA7+h2cR/+Gnzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:32"]},"IP":{"Case":"Some","Fields":["155.248.212.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c000:e400:5d76:a308:5c3a:b70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freedom216c"]},"Identity":{"Case":"Some","Fields":["5eDQErx2uOAkky+sRvPohzVOt0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0WmJg3r6wVx5xYUdXxvbzqq1F3PbHAaC4U8FanBrEkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:47:02"]},"IP":{"Case":"Some","Fields":["144.217.86.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::572c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5d6p9lcCB9uYQcoEwkC83P7DIA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wjYSKEetlNFrHi6PNwNYl76bVEuSjBr4T1qAsK631EQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:56"]},"IP":{"Case":"Some","Fields":["5.2.78.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["5ds5AerFmt/qKCN0k/YV2jq4icY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZHmVy9WcT8APAiGqNBxhS5bDCcQeaVoqrE5pxRDGdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:35"]},"IP":{"Case":"Some","Fields":["23.128.248.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG7"]},"Identity":{"Case":"Some","Fields":["5dfTU1fpxVtH4q3ecxmRU4iL1Ms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gXxpq8wiFe7WbEv1zM90xWpb7z7T0ZbZ4sMITS7WZFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:54"]},"IP":{"Case":"Some","Fields":["193.189.100.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["asagudentor"]},"Identity":{"Case":"Some","Fields":["5dToEgPTfAep0TI81jD/qLn2D1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8l2iryk/2h5CrTFiVQoJ4qNwzPF8ZBEj411g8a3xD+I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:20"]},"IP":{"Case":"Some","Fields":["213.80.102.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emergingtoadgiblets"]},"Identity":{"Case":"Some","Fields":["5bwWy8opJaeJKvkjlVoqZo3yOKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYsiVIAi9J8hn9VkDPibDVQd8Srx43Q5TslGwXuOst4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:03"]},"IP":{"Case":"Some","Fields":["203.51.38.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["5brhcjX0/HSrNiR3AEz8zUOaWog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TuHKaTU34AFS8jPi70RX2gH/ApGHlqpgXUsLc7FRMCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:52"]},"IP":{"Case":"Some","Fields":["85.202.203.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:f00:55ca::cbf7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelaySecurity"]},"Identity":{"Case":"Some","Fields":["5bf2XDbBxbieKw00EQ1kmjVm7qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BdFgpD/zkdLZF5NKC03Zh0wRnkxg95ZcmSaxbQpyEtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:02"]},"IP":{"Case":"Some","Fields":["172.104.52.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:93ff:fe98:cb68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["5afNMpAwj7mehVvK4fonmvGbFCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mMZzM77j2NaDO9Dfpr2MNTfRwmZHfgyq1+z4xKC23sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:58"]},"IP":{"Case":"Some","Fields":["23.128.248.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::57]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nutellabr0t02"]},"Identity":{"Case":"Some","Fields":["5ZrSS+VOQibPyGtPXTcKspI0KKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XPCsBx+bUPY9e1PmxFz914Qt4d6kEvVdybtXYYftNu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:00"]},"IP":{"Case":"Some","Fields":["213.171.209.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Norman"]},"Identity":{"Case":"Some","Fields":["5YpIpiM2oIzDxrQIApI3VOZaJgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V5khaA2wuCzOCQjmoGV76JV787QgM1hC265p8ATFzWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:54"]},"IP":{"Case":"Some","Fields":["52.52.230.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["epsylonhost"]},"Identity":{"Case":"Some","Fields":["5Ygci0YFLyl1uPwchLfMBgcO/ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmDiFQngRzj+7iB5RMK5sQJVXXXZcD8MYAn005Z5ZhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:19"]},"IP":{"Case":"Some","Fields":["77.3.61.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayofthehearts"]},"Identity":{"Case":"Some","Fields":["5XQUkErGfvU9H/9lBZ7KiaPkbYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jcw1ihw8EmHi0HDkguw4s00Tfv7XX3Arqwd6y4/fIwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:46:48"]},"IP":{"Case":"Some","Fields":["193.32.127.230"]},"OnionRouterPort":{"Case":"Some","Fields":[55615]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangea06"]},"Identity":{"Case":"Some","Fields":["5W8HdZ5wTE9TM04WEGbxL69/fJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CU7995jiKtaOEgh39SW0VCQPmBF28oee7SaEg8LG9Qo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:47:15"]},"IP":{"Case":"Some","Fields":["46.167.244.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["5WDY6kk6N+2N5rjErQhjSD3nLvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aWSHiEW9KLhCYGA2KuRy92y3wgUBWEPCoxs6l38bzyY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:22"]},"IP":{"Case":"Some","Fields":["5.45.98.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:45:457:d2ff:fec3:e823]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["datahoarder"]},"Identity":{"Case":"Some","Fields":["5VB0RNrARTm43GJCmWFhQbDbZNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpzsZdRzY+qIhB2cvwD4T4rD+jgHAxbbTCamzrDHVfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:50"]},"IP":{"Case":"Some","Fields":["88.86.115.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:28:ca:246::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0157"]},"Identity":{"Case":"Some","Fields":["5TaD7fhG5tJ8ZoX6SBk1+xYzlSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiGXB8sHV86+d0kV4qjQhAhaUFOkDk+mVWMWek4QZwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:45"]},"IP":{"Case":"Some","Fields":["185.220.101.157"]},"OnionRouterPort":{"Case":"Some","Fields":[10157]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::157]:10157"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber33"]},"Identity":{"Case":"Some","Fields":["5TLUu50QxxcolWHgP6yyvy8Qlv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lQSqK/xmeCo10zy8nXL1fNL+nMNE0jSZ1jeywVd60+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:18"]},"IP":{"Case":"Some","Fields":["185.220.101.17"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::17]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5TJKlEf0LCPoGpQL6qlRcy8emvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OpL3uJr2XaKTO8WrHxuqUd9AP4hq7uezzgcSz5xl8Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:51"]},"IP":{"Case":"Some","Fields":["116.80.46.130"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["commonly2"]},"Identity":{"Case":"Some","Fields":["5SaLpnIAbxe9+mXGKkqqXXJ/XgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/DQUp4UmRKo8i+PJdtQWlcWY54SjUuQU9SB1Bccywr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:15"]},"IP":{"Case":"Some","Fields":["85.239.40.27"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fai9ve"]},"Identity":{"Case":"Some","Fields":["5SHQFianYoIquX3Nnsw0GoohLX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QicQd3BrJIKsv82SJO5lED3Fj4hW1409tCtjAyz5YR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:33"]},"IP":{"Case":"Some","Fields":["5.2.72.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fearless1"]},"Identity":{"Case":"Some","Fields":["5Rl2We/xz5dxtac+GesfFwoQslA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xnyn0EfiOBqnOErHs3ga/6oqw7EbXcb23l33DxycphM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:53"]},"IP":{"Case":"Some","Fields":["178.170.10.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::529]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5Rc2WlGJnyKOmaIunk71k0cYD4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v7wzWXQTJAbj7YMrJR0XP+0UZqbE2O9698thLhyC9pE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:58"]},"IP":{"Case":"Some","Fields":["164.68.107.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:1426::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gugusrelay"]},"Identity":{"Case":"Some","Fields":["5RZqTloErbrcDLfqhUBZOJjx4QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rm4VPftlGYM79nJ+1usWu7+S4CS0QPXNlh5uAzAzDwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:29"]},"IP":{"Case":"Some","Fields":["82.197.183.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:52e1:10::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stargazer"]},"Identity":{"Case":"Some","Fields":["5REr1tBoSD9wW1jSUlTKgUMLxEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MWPt4hHFnppbdE0dEBdttwrkCDs2mE5AmKDl+RKFD4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:38"]},"IP":{"Case":"Some","Fields":["45.55.240.225"]},"OnionRouterPort":{"Case":"Some","Fields":[2916]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::215:d001]:2916"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandman"]},"Identity":{"Case":"Some","Fields":["5QC2V5ybNzWbc7WMHuPe6S6bTzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x0P5BjmrO8xzgbschbYz7BsQxL1XOVHnNvSrNcSm1YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["23.238.170.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lucuma"]},"Identity":{"Case":"Some","Fields":["5OzNjuiJ6Mw+g54NjrPTUNsTwog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IRacKk84qjAIQ+2l6SkbzkJvODDhHZZjm5f5Vua56k8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:15"]},"IP":{"Case":"Some","Fields":["172.106.18.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute01"]},"Identity":{"Case":"Some","Fields":["5NHyXfvkhCCIZrpKGpWLcxJ8sK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sPQoHCedS3ef2uB+uYo31zTT3Fg8P5wpND/eJ++rEcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:35"]},"IP":{"Case":"Some","Fields":["162.247.74.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBlindAppearance"]},"Identity":{"Case":"Some","Fields":["5MEr+zrC5vFuTx80qoB9Edkk6QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3qmxRLSMMU7XXZdqM50HMSBJ2CwGFIa90k07T21kk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:45"]},"IP":{"Case":"Some","Fields":["212.73.134.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["5L+tSdIdODhIXGLYQpOpfaqqNbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WiuSpk0nlgfpEYz9tAoyx/3MSeSzDT+bLknLrFhnq2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:58"]},"IP":{"Case":"Some","Fields":["95.214.54.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3646]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5LDQq/dvrrwMlek2OnWm8MoPXhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["db9YAd+Eb4BJy+ZxBZL8KmuYMHqhnAbHbcV4IHFv6KM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:20"]},"IP":{"Case":"Some","Fields":["116.202.169.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fusion"]},"Identity":{"Case":"Some","Fields":["5LDK0RtUh8Rik3WaPUt0SEz5NQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9mUTIofbtn9gHp7+7NJRwtbPYoCjT7OImHJ57No4/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:23"]},"IP":{"Case":"Some","Fields":["148.251.46.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:172::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["irons"]},"Identity":{"Case":"Some","Fields":["5K1g84tA6CiMlGI5hrcUm8656Tc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FoQgYqJjsCwJXdMhnKh+Nngsr/+bPbdPH4Aw2UBL2cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:18"]},"IP":{"Case":"Some","Fields":["138.117.148.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["threeletteragency"]},"Identity":{"Case":"Some","Fields":["5KsusPf+R9Zxk3cstWSzF+QWGEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVCRTS0yXt7cwLXaJQwWSqoRVYJrHqDVIBQj9/DZW74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:19"]},"IP":{"Case":"Some","Fields":["190.2.150.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:7c80:0:171::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["5Ki8guZgUo1bC402wIq0S3c1FzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KXC+ATYcshaf+LIW+qAAxzKvx11TFIyzqznatmVT7Eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:40"]},"IP":{"Case":"Some","Fields":["104.152.211.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UseMoaBandwidth"]},"Identity":{"Case":"Some","Fields":["5KfPMtHsgVIeI0yL9GOE51g4qNc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SeDmnT4W7ZUWlSlg3WMW5GJEFPPLjWpzZUBQaEW5LkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:02"]},"IP":{"Case":"Some","Fields":["163.172.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["5J82ltwTlGpo3yqqbtpGC8FdjwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RP4+sA27409+8cJlyosZEErdFnTVJbEDMVEgOjEL4a8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:44"]},"IP":{"Case":"Some","Fields":["185.220.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10033]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::33]:10033"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5IrQLFT9P4w6TqN0Us4ygaDSRqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qqz7/chfdjdUr4Kxk71Q3QWmhVsCTnb1LR0uVqEn2kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:14"]},"IP":{"Case":"Some","Fields":["79.143.183.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9200]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToolHaven692"]},"Identity":{"Case":"Some","Fields":["5IXzQaauVB3zE6wBynxeHdOCCl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLmmCGCgd6aLxMPo/6XlZop5Pg2XfYzXTleS8ZJi4Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:25"]},"IP":{"Case":"Some","Fields":["104.149.131.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex34"]},"Identity":{"Case":"Some","Fields":["5IDVd/WOeCpbxPpvSaZlDpOJMC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9y4UC16BtpO9M/eSCgwV76l30Q3NmqZkkG3SD4hl70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:39"]},"IP":{"Case":"Some","Fields":["199.249.230.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::114]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["5Hw0cWaOp/F0w7KTeWVEqRfg3Pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["90zN3Ee9K99Bm2UR9mVJVIOPud+2YVrWSjNRuczX3BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:09"]},"IP":{"Case":"Some","Fields":["23.128.248.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::225]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mfet"]},"Identity":{"Case":"Some","Fields":["5Hwwzi45fM2vDt6Tc5eJNnkH2ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xFlmQ9oBbvzEbOGqMiYvEKnH3rfzTWN/lB0rH/s3wvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:34"]},"IP":{"Case":"Some","Fields":["83.38.29.136"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["highwaytohoell"]},"Identity":{"Case":"Some","Fields":["5HPT7eWbCqRYIXcxsEWI4PT+BkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["swm62QT5ZeivCQAyGsBDnYH8fVYAtW2Hhm16MiGVmOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:43"]},"IP":{"Case":"Some","Fields":["85.214.58.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["teller"]},"Identity":{"Case":"Some","Fields":["5Gl5owU9Q63xh0Y6bkhWyHW8jIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XkrgevIwQIGylUokxYsE8BCRQ2K4Iah8rEFQcNNtf0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:51"]},"IP":{"Case":"Some","Fields":["69.164.221.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe70:357]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalist2"]},"Identity":{"Case":"Some","Fields":["5Gd3xu+2A2GQ76rZsT7p0OdcVRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CB7IzHJuEyPoK/Q5dbbDWz2zpbLiq7J3tQn8237B03g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:21"]},"IP":{"Case":"Some","Fields":["37.252.188.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra19"]},"Identity":{"Case":"Some","Fields":["5GWtFmeYo80KSGb6Kou1rdFX+9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uNYzhsjZI0WzTimAUkuijQ4kZxpJqmQTeUa3VL1APUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::125]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Secretworld"]},"Identity":{"Case":"Some","Fields":["5F4T2Ln0mEX2qREO8boq/4/yayU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RkdY2LU08l4K2KWF2n+Jg05jvunESFjWQ6eBhgXdAx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:15"]},"IP":{"Case":"Some","Fields":["104.248.159.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AsiaArgento"]},"Identity":{"Case":"Some","Fields":["5FngI3TQOF0uJRXLvnB+ogiWa88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zWfRWn1aTHrLVehlXf4ejAaYXOeyeQ8fFZfTbkaWO48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:24"]},"IP":{"Case":"Some","Fields":["163.172.94.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:208a::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torx1steack"]},"Identity":{"Case":"Some","Fields":["5EY34gtNugpJRCThGPABESq40hM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e1egU0nEoPkdXRSosqalQinuZELPnbl+Z06PdbeRAqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:35"]},"IP":{"Case":"Some","Fields":["194.9.173.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shade"]},"Identity":{"Case":"Some","Fields":["5DtCwVPi9CFdWBoSG32tVo/j2xU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aGzGutdV8YH1qbPiW4mxxmR8m/t4rvUyZw4VHgKbRbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:43"]},"IP":{"Case":"Some","Fields":["176.9.84.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:151:2234::2]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HSLtor"]},"Identity":{"Case":"Some","Fields":["5Do0bLgd3zZLb/aCNa+tug6Gkrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cxm9nHG2YlVQtm9v2NA+SAkwrBbSxbMvhOolq8RWFpc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:40"]},"IP":{"Case":"Some","Fields":["185.220.102.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["punki"]},"Identity":{"Case":"Some","Fields":["5DJEaE4Mkk7AgrjsxzX68vjPHEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8FPFhkkF1tXkKEwoKwQWDbTuvOw6EcAbsBg1yhR+CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:02"]},"IP":{"Case":"Some","Fields":["94.32.66.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monkebarrell"]},"Identity":{"Case":"Some","Fields":["5C4w2fnCko4VqsQVjsAfsV09Nsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lj5HhITBf/XWYekjmUxI6dUAd0YiA3ssjS9ZGEHXNIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:34"]},"IP":{"Case":"Some","Fields":["103.214.6.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["5ClU/p2XrvTLycSkLKvuy1kmtfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qfY45lY8gzBLo1nRU4kczHPV198y24M+kiZavU1oCU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:53"]},"IP":{"Case":"Some","Fields":["136.175.8.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kptorrelay1"]},"Identity":{"Case":"Some","Fields":["5CE3ERRXe32sDTQ7Kq9j3mE1MIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46QQSDA7+eOoXWKLcZMAvipAKViVhFdV5OuEPDIYdos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:12"]},"IP":{"Case":"Some","Fields":["47.181.71.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrebenBits"]},"Identity":{"Case":"Some","Fields":["5BsijDLanCsRqi1urBjzRXFi5m8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pi2s1H6XERY3wlCub/yxflgjubH7xaB2BZPBecZmfPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:46"]},"IP":{"Case":"Some","Fields":["212.60.126.143"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xmission1"]},"Identity":{"Case":"Some","Fields":["5BsW9931LrsdtCaKsv40CzetiQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A4E/nX2+D4BhKlGcmuN3vd5q8MfczFtyaknVRv6IPqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:22"]},"IP":{"Case":"Some","Fields":["166.70.207.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeroMeaning"]},"Identity":{"Case":"Some","Fields":["5AEtOw37XLdDohwspBIxu6KXhrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+PxS0dzI1wBWkix/2CMockjWW1Zyq/ZItmZn5JTXWu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:28"]},"IP":{"Case":"Some","Fields":["198.50.175.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1d:395:2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Finisterre"]},"Identity":{"Case":"Some","Fields":["4/mMhsngETjdjqBrHmYKDNtLJ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FFF70tT7uZtHgh8cTS/Lb9hBMS7f+9TNvDphvw+8bNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:31"]},"IP":{"Case":"Some","Fields":["95.216.115.85"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["90377Sedna"]},"Identity":{"Case":"Some","Fields":["4/fafMfVtswIV5muBASqTS1QPlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g2XGDXXp6rQ1zpo16tCIPUt/AnhDCcu7oVOemOLVMr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:58"]},"IP":{"Case":"Some","Fields":["150.147.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fidel"]},"Identity":{"Case":"Some","Fields":["4/cX4HbY//4xxb6Y10YcnVRL9gE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEVSI11pyc765Yeau8stFhtXBnZRKFFYcDU1qLdSgjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:41"]},"IP":{"Case":"Some","Fields":["46.166.162.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrumpSuprtrsRDegens"]},"Identity":{"Case":"Some","Fields":["4+2bTVu2WjF8qpmNupSYhJgusAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtAX/1YKQGBOYv7WsDZQpo6nXRUq2Il4wFkkfO/oezk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:07"]},"IP":{"Case":"Some","Fields":["99.120.173.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cebeta"]},"Identity":{"Case":"Some","Fields":["4+nGwLVfHBlq3/tm3Mm9wxqeTyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+fqtO9DpTPEGyAsjDYkOvIJYEVt77w4EKi/Muz34mvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:17"]},"IP":{"Case":"Some","Fields":["46.183.119.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BruhRelayZ"]},"Identity":{"Case":"Some","Fields":["4+dwFdBIaIFZ97nc8MiOcs0QA/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UBMhtYtz/RemkQwb4WPWpKTCbiNLALW4x2YO2UnrlPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:48"]},"IP":{"Case":"Some","Fields":["172.105.8.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:93ff:fefb:588d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra17"]},"Identity":{"Case":"Some","Fields":["49rwZ7AoRQsxz1zhGPL5rFMUar0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Tyxy4cFElDd1dyLUFlVV/uJtFDwWkk77CXwr73c4Hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:07"]},"IP":{"Case":"Some","Fields":["193.218.118.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::156]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pnkantor001"]},"Identity":{"Case":"Some","Fields":["49EhFsvm1l88AYt6li6z893B17E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rsctlpj0WUT8SiEvzEtokM7nE6GNadQ9Emtx4jlw0Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:41"]},"IP":{"Case":"Some","Fields":["63.141.234.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["las1"]},"Identity":{"Case":"Some","Fields":["48gLkWIPm0NSxAOy1pLAlAPaJZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCAEp9ywqrb2VjUucp8MQMWo/rd0B/V+2D4+WWCnRqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:20"]},"IP":{"Case":"Some","Fields":["209.141.50.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:104e::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlleKochenKaffee"]},"Identity":{"Case":"Some","Fields":["48M5X22miT+zPahts3KLOHOE0sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5QkundMLed2fLCg+rIQSjYAOIcwUoUOOsCtXfnhPbQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:08"]},"IP":{"Case":"Some","Fields":["129.13.131.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a00:1398:5:f604:cafe:cafe:cafe:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toriligadaze"]},"Identity":{"Case":"Some","Fields":["48L2i/WJEmpxQOwhitZr7l77ymw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQMaarTzhk7jeMKxyU3UjBFXO1vaUXUkcQL64Xaj/8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:35"]},"IP":{"Case":"Some","Fields":["93.219.37.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex98"]},"Identity":{"Case":"Some","Fields":["46SR1JDcHDgy1/aGFe60UIyFfYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xPHtOzKqIb1fL8H046F861WOC7XORjyJbEce4o3SEcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:19"]},"IP":{"Case":"Some","Fields":["199.249.230.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::187]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste08"]},"Identity":{"Case":"Some","Fields":["44j3vRlvUZWu8RRVJYUVLqaUIyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SuEqLMdqfxBO0BiFQmn5x/FiL+0+146PyERxe7up0+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:15"]},"IP":{"Case":"Some","Fields":["91.143.81.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2fce]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay02"]},"Identity":{"Case":"Some","Fields":["44R0gpP8RCnitCc2DbT51MPWGdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Mae0L54gZRIp7CoRfFktBKhVrmrqBUuy9fc4YWxBA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:31"]},"IP":{"Case":"Some","Fields":["87.62.96.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9032]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hackeriet1"]},"Identity":{"Case":"Some","Fields":["43mmys76/huOpoUDv8/xIVvx7n8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ILo7AUS5BAG9AVJye54xYAlmvJLTDwTJSacg/bmQe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:54"]},"IP":{"Case":"Some","Fields":["185.35.202.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:ed06::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YATN"]},"Identity":{"Case":"Some","Fields":["43gpO+Y6cI2quHj+9Kb5zd3QLNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M5O4xJYL3415KvvZATDi3heSG7+AlgOVHwuiKOQs7NM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:14"]},"IP":{"Case":"Some","Fields":["3.21.228.16"]},"OnionRouterPort":{"Case":"Some","Fields":[30002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quokka"]},"Identity":{"Case":"Some","Fields":["43XNI9YMIpG9BOl8v057qQ4+VOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MSt3MgSu4M/QeDDiU4nJSxj+nbEj+RXTamabtn7PjX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:48"]},"IP":{"Case":"Some","Fields":["109.70.100.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::73]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["naiveTorer"]},"Identity":{"Case":"Some","Fields":["42U2QEIAp0kw2xZYWL1btVTSvqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2K47VkYvZeN9l1WPPg2/Jvt4+vQKWd6V63IDGCNQBco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:58"]},"IP":{"Case":"Some","Fields":["81.6.40.93"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["40+l0hibqOVIBUAUcRo/hDC/O90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XR8oWvslO1SC8eLNU79PoFSGkXO5rDlkK/cNuvWiq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:23"]},"IP":{"Case":"Some","Fields":["45.87.42.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["40jR1ufhIiCFanfFtSrMF1Olj/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FWP8OhBoVexN4fdHzU84o5pfc5G7AdhHr4oYOmAgTEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:59"]},"IP":{"Case":"Some","Fields":["188.68.42.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay5622095"]},"Identity":{"Case":"Some","Fields":["40DT5Pr5zQvinBbka9mCoS0rKdw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y9gxQ8WRtou4VEqi1BAn78ihp5blZN51kqgGFU0sR4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:02"]},"IP":{"Case":"Some","Fields":["185.142.53.93"]},"OnionRouterPort":{"Case":"Some","Fields":[10283]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:ca00:0:8000::f9]:10283"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamicTor"]},"Identity":{"Case":"Some","Fields":["4zz/1vA9U3hJk4ArM9+uKxeMYMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["baQtXMQf/UFCyc1a6Jll4e142T9NxMv88OzMzqOr0t0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:11"]},"IP":{"Case":"Some","Fields":["198.98.60.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:4ed:1:1:1:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HostingOSde"]},"Identity":{"Case":"Some","Fields":["4wvvlySUQ4l6oFHgpkMQZz/2NUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B8+9H/tWBrHUe9U9ArzxZBIWU9ko8kyvU33jWHlegwQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:48"]},"IP":{"Case":"Some","Fields":["89.58.40.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:deb:486c:9bff:fe2c:bcc3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vale"]},"Identity":{"Case":"Some","Fields":["4v7Mj9ugAHjCggEpUY2eGMIUiVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZKcp7+kaXVrxNgvYmoaF1rJTZENPOLmk4FLYSzh6UGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:52"]},"IP":{"Case":"Some","Fields":["185.243.218.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:32]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daNickname"]},"Identity":{"Case":"Some","Fields":["4t44/eeyL6k01fKhUGjdB47ibyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZYdqdNkzcqQEhsZlftgJM2ZDZohd89PEub/a1C/dd9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:13"]},"IP":{"Case":"Some","Fields":["173.66.192.213"]},"OnionRouterPort":{"Case":"Some","Fields":[1111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElToro"]},"Identity":{"Case":"Some","Fields":["4sav46NHsUz2OCpeqMY7UPfEeRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["82Kv6n/rNPFCiaLN5W71Fv9dYLOLR7VGDpCzITaHKrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:54"]},"IP":{"Case":"Some","Fields":["91.119.68.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["whvger"]},"Identity":{"Case":"Some","Fields":["4sK3Pv/7PqWTOA95us+7TEuec24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTzOpAE7hFCyn1exUGS4//S0CUXKFsU4N/SXjfFBKSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:30"]},"IP":{"Case":"Some","Fields":["87.123.99.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv113"]},"Identity":{"Case":"Some","Fields":["4rqv7OXD07T/5hc7MJeUjg9zBiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXjo64UDI7+3OVh0JRU1wt8S5ojJBnLDcVZ1MC/jExw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:48"]},"IP":{"Case":"Some","Fields":["192.42.116.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5513]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer16"]},"Identity":{"Case":"Some","Fields":["4rfOAeIIYzKYbvbZT27MgKDE/vY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IAmND4hsttp/5MPSM3bVj3PToZDnhIM2S5oamMMqeY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:04"]},"IP":{"Case":"Some","Fields":["185.243.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8126]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:41]:8126"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer77"]},"Identity":{"Case":"Some","Fields":["4rKMD0WjE5r199TcS10WxjTjEMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t4kiR+DijiPSi+zaHQKNfO7CVv3vmdjsb23vlJ26KCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:47"]},"IP":{"Case":"Some","Fields":["95.214.52.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8177]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4q9YefOf9A34mU6bj66rJRiu66Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LJ89BQwbGmybuRkA7zosVR/8Cyn0ydoI7VaD4H0QfNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:55"]},"IP":{"Case":"Some","Fields":["5.9.129.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra39"]},"Identity":{"Case":"Some","Fields":["4n08D7HgBJvhW5tT0CkF9BsMBCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZitr81j7KkEvm3DBT0ijWVJRTURNYIYpL6tEUn0Z0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:06"]},"IP":{"Case":"Some","Fields":["107.189.31.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hecarim"]},"Identity":{"Case":"Some","Fields":["4m1agrfMCh6Eahv2RYE7/GqMsjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqXhyDhzRV7e6j7a3gNEKKz4A2d9HKUJspJGzlQFMng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:20"]},"IP":{"Case":"Some","Fields":["18.217.231.202"]},"OnionRouterPort":{"Case":"Some","Fields":[33123]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IteraTor"]},"Identity":{"Case":"Some","Fields":["4mhtQEy6fkvWYAw1d+0PxjM2gE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+xHFb8Jv6L5JigQ7g+mdu8L1X1IRPbWjFiBibP6Eq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:20"]},"IP":{"Case":"Some","Fields":["176.128.1.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NvorDarkdrop"]},"Identity":{"Case":"Some","Fields":["4mY1+e1BzahGfCqpktgQdDN2Au8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r2F3P+xiXLhXsrz2RlJ7iBo4YQ9ug62oSr4ihRjFwV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:28"]},"IP":{"Case":"Some","Fields":["138.197.166.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bitcoingang"]},"Identity":{"Case":"Some","Fields":["4mO4YO+hd/Dd4ww4H4k/KAXBQNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JDKWRe/EPEBkjvQuNneypkNDNTFly8KlcDssDI0b8UU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:26"]},"IP":{"Case":"Some","Fields":["84.236.53.193"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MovieParadise"]},"Identity":{"Case":"Some","Fields":["4kjtWcA7d5KsGGQqnNMI47BhiGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVCdA4107cLTOQNmJll80MeInrWgf/LIOeuqV5BREhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:20"]},"IP":{"Case":"Some","Fields":["94.242.61.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeAssange2021"]},"Identity":{"Case":"Some","Fields":["4jvi85HFG7FDzCwCUb2+LekIuEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zh3K7Gab0+QmzmFl123W4QIFQ+osZtf4QNQeRQdePJY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:15"]},"IP":{"Case":"Some","Fields":["142.132.186.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[993]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:16ab::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thetdrelay"]},"Identity":{"Case":"Some","Fields":["4jkxkjEh2mTBLLaqILbyw+VWJ/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EedghGNiimIEmkyTnvwd29VMW1oODB5YEgx9KLBa3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:52"]},"IP":{"Case":"Some","Fields":["209.250.238.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MAXKO"]},"Identity":{"Case":"Some","Fields":["4jbwfXZHLJFLCbi6UpMO7TVV5q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h33NibRZPEAwt6B4tS0P3HldWvJcg2s4XqityDzKAf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:08"]},"IP":{"Case":"Some","Fields":["45.95.169.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["4jX+yNrH934Vhw+xQ695bFKAgO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2vTM2MYiYz4pVg0GK7qReOjUJHCD2HWj64CPuZdhYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:13"]},"IP":{"Case":"Some","Fields":["23.128.248.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::41]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YouOhKay"]},"Identity":{"Case":"Some","Fields":["4isB8J2hqlYIfW+WRcSlRxcIkHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ngiaiT71Z7fuj1MegR3j1MmfhzibGQtG/bctItFiF5I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:06"]},"IP":{"Case":"Some","Fields":["46.17.63.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:348:70:46:17:63:214:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev9b"]},"Identity":{"Case":"Some","Fields":["4iaU6D2nvPMN2vV4Du85TNA3DMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5aDdwJ9X3aetcJ6Zi+sbH5WvOhJMBmAst0R+wrKzs0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:56"]},"IP":{"Case":"Some","Fields":["94.16.121.91"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:8a8:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jubilee"]},"Identity":{"Case":"Some","Fields":["4iYz/xyUEq3tcx97Mam3UyFCyJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6YRI4pKAV9X8gWWycdvqE7fZfzSmdVo5Ru8UueaSI/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:20"]},"IP":{"Case":"Some","Fields":["147.135.54.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solis"]},"Identity":{"Case":"Some","Fields":["4iJWxBVtR5A6aD+rKQzYHKDXSE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4dPiEAOgGaUZij5LdwXEi6MQ8yJoJ2kZNpOMNZVSgSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:44"]},"IP":{"Case":"Some","Fields":["140.238.212.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay48"]},"Identity":{"Case":"Some","Fields":["4hd0bLOxM5TBbPp81IJBVL1Rn0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7hrs7IaRw43ajDb+aG5Ark/2d/E3gbXwh0d7T/WCUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:40"]},"IP":{"Case":"Some","Fields":["202.142.138.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalRelay1"]},"Identity":{"Case":"Some","Fields":["4hM2pdWwKDnGPh9o3BzgOwZ7rMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RinzC9cBVVzADBbwWjEhgcBhXSchYGPhmQXZ2Fu+g1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:57"]},"IP":{"Case":"Some","Fields":["91.208.206.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5130::aaaa:2d9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rudimentatious"]},"Identity":{"Case":"Some","Fields":["4gf2J+zkNF5nDgV1uQGWhCFlDI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DAYQYyyf1lvPY1krFuZxUG0AAz9CKtqx1vS6kZ3WGNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:37"]},"IP":{"Case":"Some","Fields":["86.62.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[59030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv25"]},"Identity":{"Case":"Some","Fields":["4gJ7ycXyzivTvgG4gNy5QWrJZxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DA6LGaslZfRbxJdJirYr7l2M9KBT4Peow14FWluMU1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:20"]},"IP":{"Case":"Some","Fields":["45.62.224.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LxcTorNode"]},"Identity":{"Case":"Some","Fields":["4e6qkWe0CjZ9mrQwM2SIAOmuLnQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wyAVog9sHm/k5Of/vcRlPbUS+SERGlwmjnKb4uGVEHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:16"]},"IP":{"Case":"Some","Fields":["45.80.171.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:222b:84::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liechtenstein"]},"Identity":{"Case":"Some","Fields":["4detv1JiaBnUmetKnj7xgI6SQuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["44dkv3pl50YLO9I+H1At7H8Y+82tchRaMqIr7QOlUwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:27"]},"IP":{"Case":"Some","Fields":["23.88.75.73"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yee"]},"Identity":{"Case":"Some","Fields":["4dSGzcpF0y25EQYLcKb/PN0nY7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZ6lA1gXBHYfYcENyVrAg1qnEzRPwKUxAjUjCPTSpW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:44"]},"IP":{"Case":"Some","Fields":["103.214.5.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8300:5d9c:6e11:6f98:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra8"]},"Identity":{"Case":"Some","Fields":["4dIyjQ2yoG7oWr2djXXMXb3f2lw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["44F6nbSv+OOHc6Y1zYAlhk7zKedm+aAubwc7tmKkWe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:30"]},"IP":{"Case":"Some","Fields":["213.164.204.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["4a9Tc+MkBWa1mPpIGtOGBUn2Fos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gWM1iIyPxImt5P+XwZiKEmnVZekv4Kl4K0tXoKWu4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:45"]},"IP":{"Case":"Some","Fields":["185.220.101.199"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::199]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idejasautors"]},"Identity":{"Case":"Some","Fields":["4a2CAVQPd3tkYUsnv4J9RwO8yLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uEgFVOxWsApargcAkTBsETn3/TzSyFFjjtNETe45dP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:04"]},"IP":{"Case":"Some","Fields":["85.254.143.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bbhr"]},"Identity":{"Case":"Some","Fields":["4aBtAcNEHFsfcwTYGoCuGDHVSuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZGKa4GultCGpU/vE3eYomKN+6TsWXWTapUTE+zC3m1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:15"]},"IP":{"Case":"Some","Fields":["79.195.139.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carson"]},"Identity":{"Case":"Some","Fields":["4ZdIfGPFoT7apxFEstMaoXTv9tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ywm502Ms6cAB5/GwzxL16Rp8OZUg3A36uQmhsYjWNzg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:20"]},"IP":{"Case":"Some","Fields":["172.107.201.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IhazTor"]},"Identity":{"Case":"Some","Fields":["4ZHJWUU0YTZUS6Mmp9rPIVbL7fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4W6Ws2dpOwIl0ZKZwkyNjdqMSF0voSYwTKTddXixO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:56"]},"IP":{"Case":"Some","Fields":["37.252.189.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:e:17::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorPi4Relay"]},"Identity":{"Case":"Some","Fields":["4YUkyhjW9Knm+1SMZcfHcTZe/L0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXrfxl9ImJWm9ToNCJEWjuOa+UG4G2LW4qukT0Wzg7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:24"]},"IP":{"Case":"Some","Fields":["216.36.0.99"]},"OnionRouterPort":{"Case":"Some","Fields":[777]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer88"]},"Identity":{"Case":"Some","Fields":["4WbvwwuSNkyhYFxxb1Oxds549f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OWXfojFcYJ/LQwe196gh9z/WBppx3a4PkjQKAZKN32g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:58"]},"IP":{"Case":"Some","Fields":["95.214.54.65"]},"OnionRouterPort":{"Case":"Some","Fields":[8188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["4WaqC8D5fCXvAhk9OXlEKoKDZRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kJZMX2rTStnnThiFxMgK3+yhoj0wBLT/p9H4ucHukqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:51"]},"IP":{"Case":"Some","Fields":["51.15.114.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VenusTorFIN"]},"Identity":{"Case":"Some","Fields":["4V663ueZ/2aMzI1fwS+AJfR0X/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9nBr4tjTbBd5+dOFscbYvK9s6vHXkxRqXgJjRmqIzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:31"]},"IP":{"Case":"Some","Fields":["87.92.80.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["4VJ2UuW7+1kYzmngQUNgnY1BXvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eTSlPsMwFFF8Ac028Rb1cq/fC8oPDnv7gV7e2YQf7r0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:05"]},"IP":{"Case":"Some","Fields":["178.175.148.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VonKuenheimRelay"]},"Identity":{"Case":"Some","Fields":["4UswqD/4DFdrLsDyyKXynUG43I4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AwapeOP1rsMJuRRygkPWhqCYL2F1n75jM5ACS+aYug8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:40"]},"IP":{"Case":"Some","Fields":["116.203.64.212"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:d75::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["legoman"]},"Identity":{"Case":"Some","Fields":["4TApZoO4lqEXzl2lMaVkVkQXhzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dzuXHSa2usdMphKrJ/zBgD0Ho26cvTlbIMDVGuMjrW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:45"]},"IP":{"Case":"Some","Fields":["185.21.216.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc10"]},"Identity":{"Case":"Some","Fields":["4S1SvT46iAmO7dOJh00wgWgBpGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GM6735F8XvrlJ/qwewPhPqmY6+Jhjv4G/i+HYxU5SuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:59"]},"IP":{"Case":"Some","Fields":["185.100.87.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mack"]},"Identity":{"Case":"Some","Fields":["4SyL9CGw99o+VdmpO/m81V+k77U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6dUMlIttWSrHEHYDDG91E1d5BmqIp8Nb1ADUFQ4Wv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:09"]},"IP":{"Case":"Some","Fields":["95.153.31.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ub4"]},"Identity":{"Case":"Some","Fields":["4R/HyD9BeAikzdhKWr/BEoRMR3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLdrQarYz754TBJGRRkeVxy6JYkvNS5r83lYu6cWh2w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:07"]},"IP":{"Case":"Some","Fields":["82.64.46.143"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:281:be00:1ac0:4dff:fe23:e65c]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KryptoKiste"]},"Identity":{"Case":"Some","Fields":["4RmsLVyJ1jL/BiSXB9vHDz+HcA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["597e5SkHDfH2oBR4meY3QJKMAIX/gRYyqnh2a/D83u4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:42"]},"IP":{"Case":"Some","Fields":["95.216.159.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1763::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berrycup5"]},"Identity":{"Case":"Some","Fields":["4RSA83VQ4RAncY7p/K3NrQuRyLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Slz/Pv7FD9v1fqK8DBWSklQ50do/oyWshxu1lndmtAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:20"]},"IP":{"Case":"Some","Fields":["18.18.82.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["4PwrYDO8wa1crClaCxnPbPU+7RE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cw5+MaKPp+j7LX7GD7JsqwOeH2I2xGxCG5iDyTl3luo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:27"]},"IP":{"Case":"Some","Fields":["185.183.158.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["4OxtsYyjZ/5thHjTLXYDRuHEPxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+3IQ/3bZGvAIrEGuoNobPEsHeQ+ZUvlVy2SY/Y2jrTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.56"]},"OnionRouterPort":{"Case":"Some","Fields":[10056]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::56]:10056"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH113"]},"Identity":{"Case":"Some","Fields":["4N6Ugxi3fOpAiumjlVV3/+FITYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NIIDW6NhK1C+KRBtgIsqI9V8lTFyGk/x8E+sa9ekNiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:31"]},"IP":{"Case":"Some","Fields":["192.42.116.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:213]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pincopallolandia"]},"Identity":{"Case":"Some","Fields":["4NR183+dOWWC6AIv8CUKrTUrsWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uZewQMHabnM3keKxBrU/VcBvK5mRTFGxykqer1D6uro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:35"]},"IP":{"Case":"Some","Fields":["217.133.59.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9070]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSpy"]},"Identity":{"Case":"Some","Fields":["4NIvO1qYiqtWa4KSptPZe3vlTgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hI7B/U9L2rO/MSsMFrPNckeTb3friEdwsQDSDbrf3Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:21"]},"IP":{"Case":"Some","Fields":["185.112.146.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["i82blikeu"]},"Identity":{"Case":"Some","Fields":["4MfVUbVF3NnNI32BQYWOJX1zQrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["++2N1ME4qlSMNAh7oZy6J0w9Fcikav+1xnYjElpKG1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:40:11"]},"IP":{"Case":"Some","Fields":["89.217.116.95"]},"OnionRouterPort":{"Case":"Some","Fields":[21698]},"DirectoryPort":{"Case":"Some","Fields":[22503]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KherNl"]},"Identity":{"Case":"Some","Fields":["4LOxAibwZ6GyFReNGaGe8xHn/cM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KGCgZnLwVjA16qlVHHvFktM9m3aVAO+n5hxPNtE9UlY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:01"]},"IP":{"Case":"Some","Fields":["51.75.206.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::7cb4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UseMonero"]},"Identity":{"Case":"Some","Fields":["4LGYadCHUr4DCRLEFFqNsoKZN8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7nfs4mH+vHDdU/Ri6PJBC1RlTKXbzdHaaX/ybHqHpIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:46"]},"IP":{"Case":"Some","Fields":["135.181.202.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:8aa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyNodeWAW"]},"Identity":{"Case":"Some","Fields":["4LFOhaqdnzMIGK3dW4NpwDPcPik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59rlRgWcXYcJikpk/MLVRioASR9EI6jEVgHFJPuTaUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:15"]},"IP":{"Case":"Some","Fields":["146.59.94.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5243]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["4K2qMekRJcSNQbt8JnGyW64lrxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UcCuVxjD/Tux8x9kY8ESbfAZB9f11UxXmB8LNLMdQ3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:55"]},"IP":{"Case":"Some","Fields":["185.207.107.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redsox"]},"Identity":{"Case":"Some","Fields":["4KNHHCTJAhzFj793QgMEb9K8iT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kQoAl2kGMB5TImajKO26e0UQ0Kuc2pGYgfdQb0Qm8uA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:28"]},"IP":{"Case":"Some","Fields":["188.126.83.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dappertr"]},"Identity":{"Case":"Some","Fields":["4JeCxfEZEx1d88d7g+MhRperY3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nWb3DSAK7/l/wLkHCyUqXczoDff7zpHhDnJd7KUk9tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:07"]},"IP":{"Case":"Some","Fields":["199.195.251.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kishaver"]},"Identity":{"Case":"Some","Fields":["4JTnev1AwIAwGVGvLMKXl1uTWLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["11UGplc1r8/Fzpwq4kIIQ4Z7O0wgD0wJw65VBDV6Vec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:51"]},"IP":{"Case":"Some","Fields":["91.120.111.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["4JTOM5LlkSm0SwHbXGOqUvX/RWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nW6DgS4PRgtWoxGoQs0thw9eq72nQIa7y2ewO/OHyok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:21"]},"IP":{"Case":"Some","Fields":["116.202.247.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:448f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleSister"]},"Identity":{"Case":"Some","Fields":["4I8v1EzBa3AVE43JVQemYL64hR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["56EujLvYFuFuhgMfqihf+jmfGO7uUuQU/8CM1V3tTTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:53"]},"IP":{"Case":"Some","Fields":["185.21.217.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10043]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galapagoo"]},"Identity":{"Case":"Some","Fields":["4G7HUvNc7ZpEQ4cZ2n/sbrJK7SQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLbSj52U2KQ//iNNxu979/k7ImzLGdLb3lj79CldATw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:08"]},"IP":{"Case":"Some","Fields":["217.79.252.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI18"]},"Identity":{"Case":"Some","Fields":["4GZfczs4Ic4FoqdUUQU3GCHSWHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nP0SW5HpQTaQKzY+F8XA3Y+Hj01veZdFCBZ0h4kSRAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:10"]},"IP":{"Case":"Some","Fields":["171.25.193.78"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::78]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedRelayB"]},"Identity":{"Case":"Some","Fields":["4GXk2XG+KqLiHYjCyOPA/WGgVzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9hgu1LB/68diPy6Xv9ekpuz+NB3bcDDsixT+BZgYuy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:04"]},"IP":{"Case":"Some","Fields":["147.210.117.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProjectExit"]},"Identity":{"Case":"Some","Fields":["4GQRRTIRhWmaSbnQDuLyK1t3lko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Al85pmXrUnzMKOkkkw0UJPhhvHorbvdI3O/dh9hRdqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:23"]},"IP":{"Case":"Some","Fields":["23.129.64.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:18c:0:192::250]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BurninThruBridges"]},"Identity":{"Case":"Some","Fields":["4GIMyPtLDdd7hq5zkgpqWrWInm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c1AItuSC2M7K3YmGD+FQhUMYqAwU67e8mkmvs0oMHak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:24"]},"IP":{"Case":"Some","Fields":["74.91.27.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["albator"]},"Identity":{"Case":"Some","Fields":["4Fyskp45F4cHcGbClGGp0i7PCAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HYpv54xpEthk1hpnTjQK15gRmp1GvxCidJqR3P49Ru0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:26"]},"IP":{"Case":"Some","Fields":["83.197.193.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cancername"]},"Identity":{"Case":"Some","Fields":["4Ftn3wMmsm8FQWcZ1ube3UpXpEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TxTgJ2vQtsa20+nJLktRm4B4NJmQV8SY4Nfj1rfvfzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:46"]},"IP":{"Case":"Some","Fields":["83.97.20.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["GloryToUkraine"]},"Identity":{"Case":"Some","Fields":["4FVi3X4hEmd2azrWf/G8mBoKQyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Syxa0Oxuab11bNXeoo/FqehSeFbNRRHMwynM0Uc/rtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:17"]},"IP":{"Case":"Some","Fields":["88.99.70.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10a:16d7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uranus"]},"Identity":{"Case":"Some","Fields":["4FNBGPm+HeaRee6Lq3SLigpCiJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ecl5rTcZXnKeq3fJhqCT8G2b1gZoI8vDiHCZDQuTW5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:09"]},"IP":{"Case":"Some","Fields":["141.98.8.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:9100:3::1411]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rEsIsTaNcE"]},"Identity":{"Case":"Some","Fields":["4E20vsT1UT1xoYyBeliPIhgMqjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qc0HZOFc1ySzi1pjjW0F0SZOYPU3KmqRmP5QQcmDT3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:51"]},"IP":{"Case":"Some","Fields":["51.15.51.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:50f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4A7"]},"Identity":{"Case":"Some","Fields":["4EfH14UUuiY0wi1Gd2OzLeA1Kqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oCH9aK4ZPy/jKXUZHgClzcjtyxocdsYP7HVkTwEnkkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:32"]},"IP":{"Case":"Some","Fields":["5.161.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:87de:0:34:2d:4137]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["M4dm4ni4c"]},"Identity":{"Case":"Some","Fields":["4EPO96O1G/eeibG9sGilhhNvhEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8zEWcmA9Ju39L39mIZVZhQOmwibsud6/Hdh+2rQ4Nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:39"]},"IP":{"Case":"Some","Fields":["95.208.182.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4D5YGqQqIR9p3GNgixmA8QrlLCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oavNsmRsIvez+XN9EAy/JwT+7qCmrfPTvlIsHjmb6nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:16"]},"IP":{"Case":"Some","Fields":["37.191.195.67"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe09:486f]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["4C9NMsWEw4ThDljHLLPU959izl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0mPJSXUcujWwxsR3hmo/tgpjRttGymiFeiEbB3YcPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:56"]},"IP":{"Case":"Some","Fields":["83.97.20.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elli"]},"Identity":{"Case":"Some","Fields":["4CLRiKF7k3XOWcJxxQZNDfFBnQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["st6QM/k46VF3afWPaFWskKCi/62KlJTsL+TaQO03QHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:06"]},"IP":{"Case":"Some","Fields":["83.137.158.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9017]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HNLexit"]},"Identity":{"Case":"Some","Fields":["4CASQ20nJmpaoUhPPhRS5WWgP2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ypma5xANkTXZQ4y919VBs9DxoERW3q26uyuIpIZpYCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:48"]},"IP":{"Case":"Some","Fields":["141.239.152.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MexzichoRelay"]},"Identity":{"Case":"Some","Fields":["4BcrcADafxE03JiKI6D1kPaZkY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jBXimbM0YzxoiEFK9wFoebyWemjZLN3Y8ahdn1XP0BU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:01"]},"IP":{"Case":"Some","Fields":["216.238.83.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:b400:1c35:5400:4ff:fe23:597c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labitat2"]},"Identity":{"Case":"Some","Fields":["4BSvvbRj2tC6vEhoybTfSqpy8ek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rOK6GLeDBjDTcjXX+98Au2WHJrQSRfHzrxFYcHb4dQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:58"]},"IP":{"Case":"Some","Fields":["185.38.175.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::131]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DesTorsNeueKleider5"]},"Identity":{"Case":"Some","Fields":["4BRoYZEahUpV4BxQCpfavaDvNyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rf7gmuv0Kme3oqDOlBJalzL226fappp/TejpndegnKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:16"]},"IP":{"Case":"Some","Fields":["81.169.253.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4BRL+oJrzMPmSJWzKygngpYyRs0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hjBqy80eOa8XfqiBP2Z4qr8K14VKSanZrFtypArQexU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:55"]},"IP":{"Case":"Some","Fields":["178.32.223.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e257::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["despacitor"]},"Identity":{"Case":"Some","Fields":["4A39VNwWXVRS+9NTDTAYba0Bagw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hra+U47M2I0F6kImr2yw/tVMJiwlbWIWUTzcrKUgXf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:33"]},"IP":{"Case":"Some","Fields":["163.172.53.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e3"]},"Identity":{"Case":"Some","Fields":["4AbqBMaWu9bjVAdTgTEwX/PLjBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1XtwlAqjpBtLy3hmjC/yyLqqXYGva1vrlYmtWHXVB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:22"]},"IP":{"Case":"Some","Fields":["195.176.3.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::24]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DerrickJensen"]},"Identity":{"Case":"Some","Fields":["4AI6wUGAESov/wCoTGBJhiuz5sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UzHB2UfGqbgqNWrsN9ughVsqiy1KyIXQ5qtrLa5ZrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:02"]},"IP":{"Case":"Some","Fields":["147.135.112.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra7"]},"Identity":{"Case":"Some","Fields":["4AHSckzqVhXoKNMBEbhmqyd+hsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4pjT44Dmt0r4/lYV/ABiQz4UQhkvLqwwibC5kO3Z58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:41"]},"IP":{"Case":"Some","Fields":["213.164.204.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["9500"]},"Identity":{"Case":"Some","Fields":["3/nnQdAPdJmP6DzWJg7k2eCw2/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ytDJI1TuoqTr2ObAjwnh+mwvQGO+QQ6wDF/A6YoJ6R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:18"]},"IP":{"Case":"Some","Fields":["89.164.128.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sumsumbrrr"]},"Identity":{"Case":"Some","Fields":["3/jLwdnabFCR6WUscmimtsjX5Zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPrw7hwI4FJj7sYnTzxj+iE4t8gukACCY8cnm5omOeE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:36"]},"IP":{"Case":"Some","Fields":["151.80.32.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:6ac::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OdysseyHorror"]},"Identity":{"Case":"Some","Fields":["3/OkRcTlU7D5ibrLumhP8S8mEos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dIUUjxGzFRpkUPV3sBl9PWPaHjUcnn15rmqwzEPqFq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:22"]},"IP":{"Case":"Some","Fields":["91.219.30.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorchic"]},"Identity":{"Case":"Some","Fields":["382vimX1IyErHkIothgV5yYU0lo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0k7KDJ1KHMnTeV+p5SdXk5laVMJ8kjGQKBkuKGlUsCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:28"]},"IP":{"Case":"Some","Fields":["83.243.68.194"]},"OnionRouterPort":{"Case":"Some","Fields":[49005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["36v/a8JjGDFSY9nB8YOHcjFdseg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yl6HCk6gzhEaDpj6avMFILCkGcbCif8AzZ+q7FoHxKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:58"]},"IP":{"Case":"Some","Fields":["159.89.106.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay1337"]},"Identity":{"Case":"Some","Fields":["36rSkiAEbrHnMFShrqwrJv/XCV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQv9PyKRiQaHRe6rmSFnTy/ZaB/TL7y3b0PaenKnn+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:07"]},"IP":{"Case":"Some","Fields":["109.90.84.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["36l97Uznn/bzHa+RfCgQzOhynp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJUHlRM5xH9FWkLXXY9BsIuiVqqcyV/9yZhOEofXgHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:36"]},"IP":{"Case":"Some","Fields":["185.244.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:713:4489:4cff:feab:96fc]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra60"]},"Identity":{"Case":"Some","Fields":["36k8WCnPcjz/Jm5FtOykgvjWfiU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BBDTA7sXZx1MF+a1M6ycW98eYtaTOMm2CFB3KI61PbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:22:13"]},"IP":{"Case":"Some","Fields":["185.82.127.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["36QDBr6m6vKM70r+1HOih3qQ+bU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKfr32jQlMrd5XL1ySX0pPZm6FO9Jo4Uia3aI/6UZRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:13"]},"IP":{"Case":"Some","Fields":["194.88.105.13"]},"OnionRouterPort":{"Case":"Some","Fields":[33914]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeelTorRelay1"]},"Identity":{"Case":"Some","Fields":["35vL4Phex0JPXgRp3sqgBgcLXhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+nvWdcJ0dN46G92Aut1do8BsyVh9gv6qXyfefG4Hrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:01"]},"IP":{"Case":"Some","Fields":["97.113.240.90"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isaacmach"]},"Identity":{"Case":"Some","Fields":["35blqo42jLH+bV+sBzus1imwKhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27apl30xRXfN9GKqdgL8Uw3WRUkb1ZWefL0qNacKVxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:43"]},"IP":{"Case":"Some","Fields":["208.38.243.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deltersvrAnonServ02"]},"Identity":{"Case":"Some","Fields":["34nUu+np+85lEkwGoI/d7JOt1Vk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T1tN8WoEzMd0r3+ocEM8vn4NWXpiycUf03QC29VhU40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:58"]},"IP":{"Case":"Some","Fields":["80.122.209.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburger"]},"Identity":{"Case":"Some","Fields":["34heUGUZA6IS7lGb5aWDl60uCXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mY2D2i/Qz31177J7VPcO3p7hf0LuAA3E2qtBlONhJCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:05"]},"IP":{"Case":"Some","Fields":["23.108.55.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange007uk"]},"Identity":{"Case":"Some","Fields":["34YJiWi7zZY+OOA/w/wYN+9mfBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XowuKHZS6PdvD93rQSEhXkU9QBH26TWyJt+OrmQ5BZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:54"]},"IP":{"Case":"Some","Fields":["77.68.30.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["j7rly"]},"Identity":{"Case":"Some","Fields":["33qtDg853rfzWpIytcLDvhaiJik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["doKuf2KIvJ/rrkCqLLQTZ0xSpjNIizwt1iqmw4AGcX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:12"]},"IP":{"Case":"Some","Fields":["73.170.84.66"]},"OnionRouterPort":{"Case":"Some","Fields":[17946]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornado"]},"Identity":{"Case":"Some","Fields":["33qhbhpgN8X8u03tTzps0mLKN5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NbaMgMQrP3oVbqHw5hGxgUouA17QltxVrWEBCbzGrSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:19"]},"IP":{"Case":"Some","Fields":["195.154.253.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["applesandoranges"]},"Identity":{"Case":"Some","Fields":["33ho6vhWZU5z5y93S/POH+xcsEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oRjmoG3IlPCEdrA/oawyuywf7LNoOYr/T2ZK1eigpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:21"]},"IP":{"Case":"Some","Fields":["51.81.93.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchWood"]},"Identity":{"Case":"Some","Fields":["3295COf97uXebdnJL3yd+yCwzio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kebOPBqb0mUrX6SOWINgvtZgE4Q5KqV6k+lDZ+25V1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:27"]},"IP":{"Case":"Some","Fields":["144.76.3.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:73a4::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangepeel"]},"Identity":{"Case":"Some","Fields":["328rkckycHccjsktJDp8tiNCRKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tuAw/G2NiT+4jpGhrVEPOrX+SWYYOkK31miwNUon7HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:45"]},"IP":{"Case":"Some","Fields":["58.185.69.242"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["31XJDX64ehOwRCWZUcp4Ty9Zbo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1BH7GvBPGywIQJDbHS3H8FJQY5OkY+7BiAUw27AuQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:54"]},"IP":{"Case":"Some","Fields":["5.45.102.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:608:942a:42ff:fe77:728c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongorellik"]},"Identity":{"Case":"Some","Fields":["3zkIYLVhC46ZxaeLQJmjcFzTaxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["37GV1w5ZaE39FyOqIsL3Mp7yncTCSLKRJuMSCO10wAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:31"]},"IP":{"Case":"Some","Fields":["185.220.100.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:5::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex19"]},"Identity":{"Case":"Some","Fields":["3yBJfkh6l5mV2FGlvOwxPfflvFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["loibkxN8ZGVBny4Ccn9QEHlWvXwdRGbHq3vHhuXlC2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:26"]},"IP":{"Case":"Some","Fields":["199.249.230.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::109]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anityatvarelay"]},"Identity":{"Case":"Some","Fields":["3wLjV7Joum6QKfpt+4vCied2P88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BUXbxro8go1+Ar+mWEBq5MAzYEa0zETH7ONf6ymvnJ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:03"]},"IP":{"Case":"Some","Fields":["195.154.164.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["odg"]},"Identity":{"Case":"Some","Fields":["3v+dYfpEP+pCOs+wYjM3HHYFjQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gr5/PkkeBwj0nirLVhcBXrkju/ZH89G/iNLaFFEG67w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:05"]},"IP":{"Case":"Some","Fields":["202.239.192.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:f73:2240:500::a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torly"]},"Identity":{"Case":"Some","Fields":["3vNc6PzFte013sN5qe30IP9Blnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92DfiJcq2DaJZRKGTbmj1fGrURAFEk0LG5Ht1myyP/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:39"]},"IP":{"Case":"Some","Fields":["185.170.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:95c:74be:b2ff:fe41:52]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Joker"]},"Identity":{"Case":"Some","Fields":["3vM2XxwBL4DlaHe17wXOcr3rDMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSAer++DJQW2Ug2gEsSZiJIHQW6xcg4vASyERgRtSUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:41"]},"IP":{"Case":"Some","Fields":["139.162.210.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3uimXtKsYZ/4CpLraI72TwQM7LY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wORXifounVWijEBwz1oshNzu/tnlhzc9zQ3iBXSH3nQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:11"]},"IP":{"Case":"Some","Fields":["193.161.193.99"]},"OnionRouterPort":{"Case":"Some","Fields":[57532]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LiveFreeOrDie"]},"Identity":{"Case":"Some","Fields":["3uFFm0Jr3Lu7ge/p/EpebnosBmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b3P00ZU6AgP3yR2FnMu9o64HI3P2TUuSNXFlzPrM7Mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:20"]},"IP":{"Case":"Some","Fields":["5.161.47.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:e33::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ariolcnode"]},"Identity":{"Case":"Some","Fields":["3uEyRvkhCmhXA4k4n6CMwVWQizQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D08reH/Cmngbo/9unWfF/hbkigo4806JjZHwCgrCu10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:45"]},"IP":{"Case":"Some","Fields":["84.158.27.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hackster"]},"Identity":{"Case":"Some","Fields":["3rYWs9fZwxx9Oe+fDroB3vIUUFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SRj1CcwJkE8PEEpG1DaNycFq47vmrH2JvVa414nRLVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:40"]},"IP":{"Case":"Some","Fields":["185.163.204.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:c800:1:1dae::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackPacker"]},"Identity":{"Case":"Some","Fields":["3rDnEe3rI0jRkpEe9tC+5ify//8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcwckloppdUUKd82FBwajFeivQQf/v/HvI+zAuIsNM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:17"]},"IP":{"Case":"Some","Fields":["94.75.225.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0136"]},"Identity":{"Case":"Some","Fields":["3q/4umTMeJivxdlKG8+of//PVlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SdCQ+JI1HhULURg1APpjQi2MRkV53SmGrMmZHfVUc1M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:53"]},"IP":{"Case":"Some","Fields":["185.220.101.136"]},"OnionRouterPort":{"Case":"Some","Fields":[10136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::136]:10136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["windirstat"]},"Identity":{"Case":"Some","Fields":["3q33wIsqWyheQi5HKJiDQZ6K8w8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ec4As5Ysd7whG+n/SXQXEBTVdIi1/zE1PTzZimXthTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:57"]},"IP":{"Case":"Some","Fields":["67.219.105.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:2000:17af:5400:4ff:fe14:3473]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EFKTorBSD"]},"Identity":{"Case":"Some","Fields":["3pehpb8KTUmBM7NCJLA7Y9CO2aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYhniNkceoEDgLERUkRjcqToY4x/iUCGOjfiPDSwhdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:25"]},"IP":{"Case":"Some","Fields":["51.159.99.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3pMXocS1qVr+eOysgrXbanAYs2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXfaKcOrRPH7PAb7oDGh+4Hc4ZYdNOnhxOSJrdN3zf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:41"]},"IP":{"Case":"Some","Fields":["88.208.215.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:8162::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay40at5443"]},"Identity":{"Case":"Some","Fields":["3oeeuvULkA4ZQKl7BIKTAGh06pM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jGgP2zizWEGFxtmmlaV8K9CYZ+t/usho+cNsFowgAt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:38"]},"IP":{"Case":"Some","Fields":["140.78.100.40"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kohlrabi"]},"Identity":{"Case":"Some","Fields":["3oR9lOeLLlYKuH0nLckBktMUTxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kfHpZ04sCqI2kUw1bZpcCHiVhvfyaXH53b5Wy1nUsOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:11"]},"IP":{"Case":"Some","Fields":["109.70.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gergernet1"]},"Identity":{"Case":"Some","Fields":["3nToxPPPD7vLfnYbswcgUNHU3Yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xqWPLAk/Y+nMk/zQQqUE6cha2qkoElguG6xJz0t8bs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:49"]},"IP":{"Case":"Some","Fields":["217.199.199.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:4d80::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomewhereinPortugal"]},"Identity":{"Case":"Some","Fields":["3mc7y+Q28iwxomRdIVXRwDKLV9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3QXpDih1jjgnf3XN53fFlHvawQf3srFl685RqK3Jy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:21"]},"IP":{"Case":"Some","Fields":["85.247.237.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Darkheroes"]},"Identity":{"Case":"Some","Fields":["3mHzFJuTKY2HI3Is7musmeVHhY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Ncqqp/oYXG0VghbDsgQoclO0vsfm3QIYvNsxZdWPJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:32"]},"IP":{"Case":"Some","Fields":["217.182.75.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::3fd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindzero8"]},"Identity":{"Case":"Some","Fields":["3lXvfXOa2XCBJRV3C/yUUrpDD9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/qXjoI9QYA9X1zSfN8viRFm3vsEgoeJeoWajBbSvUic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:53"]},"IP":{"Case":"Some","Fields":["193.38.255.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex62"]},"Identity":{"Case":"Some","Fields":["3k96ey34aJsfjSOrqeMg0XY46v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1gP1cmXLWayTS9NZbq0KeTrgz72Jhfq8fhUETbXoxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:54"]},"IP":{"Case":"Some","Fields":["199.249.230.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::151]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoxTenebris"]},"Identity":{"Case":"Some","Fields":["3kh9jSeR8ra0fDDuUNKSkUqCYAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zInUj3icjBv9XoSUQTboJqaF0jprwz6u52mwb3/fAcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:49"]},"IP":{"Case":"Some","Fields":["185.146.232.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DestroyTerrorismNow"]},"Identity":{"Case":"Some","Fields":["3jsUK7EaPAESxqtB5NJ/YKy5xQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sFLth/9ynw/SliZOQkul8OEeofqCRuHGcXvxGrmFC0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:48"]},"IP":{"Case":"Some","Fields":["82.37.194.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3jkxVyry+ZfD9/HUMujOZY5i13U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL9JHlFu36xgJxZTfDRWxzwpfBoxEITLeEDYvLZOudA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:19"]},"IP":{"Case":"Some","Fields":["185.183.159.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangstaHetznDocker"]},"Identity":{"Case":"Some","Fields":["3i+uyqDXGk61Q8ae1Bi3elLKmEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egvZXY4EDmMmrTicRxVO8KzTaT3nj6oCdjj7Q7Jo+F4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:02"]},"IP":{"Case":"Some","Fields":["116.203.195.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3iyGg04cSoTMv1zEAjEeorDrKUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jwdFwRW1tSwXv+wqJEDKTZRPAQZHZxGGM3SCd0BYS0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:39"]},"IP":{"Case":"Some","Fields":["46.107.98.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jehanne"]},"Identity":{"Case":"Some","Fields":["3imlwNs4qiKShrI3eY2IF+5rdeI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8V01oJBUGGdH3Vxo9Gz3szCEvdpFO79qyRDO0AY568"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:50"]},"IP":{"Case":"Some","Fields":["50.82.179.25"]},"OnionRouterPort":{"Case":"Some","Fields":[5020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["3ieZjEUXSbr/cDUL/itFappRxs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WyUe9T5AJLxhFtBHsyz1jlgVFigR31GLRcBncp7whQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:47"]},"IP":{"Case":"Some","Fields":["23.128.248.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3gUwFej2Nww6przTFxfKw1OOUeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sUHlMj1mG0dP3zl8UNljv83GJJs/AdlYZdytFRnXsv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:58"]},"IP":{"Case":"Some","Fields":["188.68.56.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx5"]},"Identity":{"Case":"Some","Fields":["3gQh+9dx5hiSBdNTNmh0sXkBhcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gfQpPSdwTpuYJvMEH6qHA0hytEGsW75NYWZPcIPMqTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:07"]},"IP":{"Case":"Some","Fields":["195.144.21.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArkGuard00"]},"Identity":{"Case":"Some","Fields":["3faxkkdE6c6J3h6DTiHyXgbMM/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1aZr2REw93ndORNA9rVVpYYBuAj0LljK95BmVaGTtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:47"]},"IP":{"Case":"Some","Fields":["135.181.199.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:5309::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AntonKlingRelay"]},"Identity":{"Case":"Some","Fields":["3fDvuYzdSiiJZmiupIlmul4j7e4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jiWqM+U7kHb4HXZZMWpRgo4PBULuX8y69DmpdhBvK9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:57"]},"IP":{"Case":"Some","Fields":["81.4.122.99"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccvpn4"]},"Identity":{"Case":"Some","Fields":["3exH2j3EBpiCfq7W8vssK6MW/cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/iEniqwQa4hG6t+vABVsySW9gqxfNnlB6X5YmnOvfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:11"]},"IP":{"Case":"Some","Fields":["51.15.188.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:3505:a000::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["3dzo42KgE70wpkP4tkajr1tQNYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4p8tRJhK42rV+B+txa4rZvTZO/IFua8WNY7CgCCsg/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:35"]},"IP":{"Case":"Some","Fields":["149.56.169.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYLABSUKTOR01"]},"Identity":{"Case":"Some","Fields":["3dFW5BHKon5l7q1zu7IH6MrU/UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["whEuFgTL2rv6ys/S8vJE3qzECP4kD4e06j0xcwddYCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:44"]},"IP":{"Case":"Some","Fields":["51.195.166.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation03"]},"Identity":{"Case":"Some","Fields":["3cPYFvKyKc7/YT5NkSzXnuNAJO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1MpJBwY08nLcKZrtPU1hV9IQe0FLvHQzNNpGy20KVic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:56"]},"IP":{"Case":"Some","Fields":["45.14.233.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e9a0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twinky"]},"Identity":{"Case":"Some","Fields":["3aoRLRrmfJYgBMNhG8WbeoYa+0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HaBouW+3190L/KQ8GUVIFfdYj0+bSLbcLVxwMOojwAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:06"]},"IP":{"Case":"Some","Fields":["46.20.35.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3aCq6IMFdiMQ8kJMBK5WrHcyDJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["24J/JxhR3CQvFS9pWNNr2yrjDo7jG49DPlGqJLEFGfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:38:50"]},"IP":{"Case":"Some","Fields":["195.201.1.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[8001]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:eeb7::1]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex86"]},"Identity":{"Case":"Some","Fields":["3ZhJvVzz3Hafoq7b+fFb9blqaVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yMVhvUGnTMhz1JCXPi1WlqF19VzddR7JxteNTtuBeBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:47"]},"IP":{"Case":"Some","Fields":["199.249.230.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::175]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["damnat"]},"Identity":{"Case":"Some","Fields":["3YxFrNn7+5/z3nNryjJsbJoo5zU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mxnsPG2C4w1a+0CExAjjfzdxlDRQ7kSBwZeOxQDWIGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:08"]},"IP":{"Case":"Some","Fields":["107.189.31.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Elcano"]},"Identity":{"Case":"Some","Fields":["3Yrq9RDfFT/P89aR3gLA0hKrAEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e8xBbH0NRKw8BMFcFU1HKBurGCZuFkdSaI5xTCL7jjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:53"]},"IP":{"Case":"Some","Fields":["81.40.67.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange014nl"]},"Identity":{"Case":"Some","Fields":["3XvT5b0LpIqMcLDN8Bf6WYi4fic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6tX6RAcM7YlhWOTQ3hXuBp8dhKrQ7iBVdZ4tZLN7A8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:13"]},"IP":{"Case":"Some","Fields":["5.182.211.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3V2iHMUDZTOuIBDeLH5yvizfnF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2aCX+cYmL7Jx81U8rfglew0q+vfL+uP3ZJ0tL1sXxxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:10"]},"IP":{"Case":"Some","Fields":["195.154.250.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nonbrokeneye"]},"Identity":{"Case":"Some","Fields":["3Tv1fb1ENJp/epo6j/471GMHIQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uXXLA3R0Jv1E+W5Xl6GnrekHCo/7z3iWpZwt7yulqo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:04"]},"IP":{"Case":"Some","Fields":["179.43.145.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hands"]},"Identity":{"Case":"Some","Fields":["3SznnGH4OV6pOjGU/oc5SsQEU/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92HawFX3haIyBYO3OQKy7yCWO9/7oUeCCVqjsC7LZP4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:13"]},"IP":{"Case":"Some","Fields":["109.169.33.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv10"]},"Identity":{"Case":"Some","Fields":["3RowV+kdjf/V1qVCleUIARp7mJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dld8VWLPnReRPhdgtZrZ9bSuSW96jAaBNP+W9WGPzWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:27"]},"IP":{"Case":"Some","Fields":["162.248.163.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chaosDelroth"]},"Identity":{"Case":"Some","Fields":["3QyO7FykAqn6RHjxDDGkQPcfaIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1M2OCnl460GxWIvg6Yr4cHD6DZv4DqXzFR3c2q2M+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:02"]},"IP":{"Case":"Some","Fields":["195.201.9.37"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob04"]},"Identity":{"Case":"Some","Fields":["3Qqmbdnk5x/6+rZY34MA8c7qA2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g+hTnVBz2fryxmFYr6ai+ea1sD+olzkSmjw0dkBeHlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:59"]},"IP":{"Case":"Some","Fields":["46.38.242.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:7:649:e8b3:63ff:fe9a:5e24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["youdidthisvladimir"]},"Identity":{"Case":"Some","Fields":["3QIZvVswFSh8lL4TclNKf9ytnzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5kk+v+ZmTo4tPA7e2f4sJmnAxbPYPx5i5yFN4NULPP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:01"]},"IP":{"Case":"Some","Fields":["82.165.111.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:84f2::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iatetheconfig"]},"Identity":{"Case":"Some","Fields":["3PuptuQXX4toIr9/xrZ9h7WaHdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EFiCth0AISykrkanqqEToXaowBCXH451BNcIFXy0AJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:40"]},"IP":{"Case":"Some","Fields":["147.28.98.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CancerFighter"]},"Identity":{"Case":"Some","Fields":["3PqjCqUKYr4pLrcIHvMEEzm74w0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qbHdYUo6f810L2antgATA9ZTXdi3DVs6vQBW2OJVZB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:27"]},"IP":{"Case":"Some","Fields":["77.70.63.220"]},"OnionRouterPort":{"Case":"Some","Fields":[55555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["InfiniteMercury"]},"Identity":{"Case":"Some","Fields":["3OWqWyKHZjvn2+nIdjX6hGE42aY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4mQJRC8pd72sc5J5I9b9jWDe5Ef9aSr1AlhM1GgOsvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:37"]},"IP":{"Case":"Some","Fields":["185.17.184.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra70"]},"Identity":{"Case":"Some","Fields":["3Mu5cXzYsfAxuaOMch0r2WFWl6o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jwhODwkDRERJWPaGlItDh6lLX89Z6YcvhWhJoVyO2fQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:01"]},"IP":{"Case":"Some","Fields":["141.95.18.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belugaRelay"]},"Identity":{"Case":"Some","Fields":["3MlnPisfNTgDtooaQGIfN49sm0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i83pObm6l15S4w3TrsNnKWPZyN01IQY+P5YZFfQoZcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:16"]},"IP":{"Case":"Some","Fields":["82.165.167.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI21"]},"Identity":{"Case":"Some","Fields":["3LfVLJQlY1O6JxuLd2mZSKp5soQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mUhNTOHVb6KDyZdUASt40zHgWc6OsS4VxcU7h5WTYEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:42"]},"IP":{"Case":"Some","Fields":["171.25.193.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::79]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyArmyOfLovers"]},"Identity":{"Case":"Some","Fields":["3LUPuL49n5XsUDiVWQ6OLLQN22c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qevpixoePmdkHqIO7JXIIxuQNAHXmyEBOzLlCXfDjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:22"]},"IP":{"Case":"Some","Fields":["189.91.231.12"]},"OnionRouterPort":{"Case":"Some","Fields":[32566]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:4ec:121e:fd00:3a9a:99af:8126:2667]:32566"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChaotorumRelay"]},"Identity":{"Case":"Some","Fields":["3LC7XfbXzmRn3YIZPrSoWBoPBkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o9X+uE7QyL8pm1m8Tss2z6C+kVWJsHJk9Rq9HUvyunE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:10"]},"IP":{"Case":"Some","Fields":["82.165.116.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SweRaspiTor3"]},"Identity":{"Case":"Some","Fields":["3KoXb3WwQocTHG14t8/drG8mkdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lLRxtc151QEfV6Q2bapHqqSxmOJ2cfXnLp7g1oIydO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:32"]},"IP":{"Case":"Some","Fields":["92.34.149.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iretq"]},"Identity":{"Case":"Some","Fields":["3JzCJCExRfSzao3AAge7a67Hdp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7IghGf4FcAWD+OQoZA8id5Q/jLG3RAZpx9eOdrdXe2E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:27"]},"IP":{"Case":"Some","Fields":["85.214.227.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4377:c000:aa6a:d41:7918:2216]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer20"]},"Identity":{"Case":"Some","Fields":["3ISTzetPxSp6qottbVj69GHTgZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qD7LNDTuiaTIn3Kt8CEGMtuocVniMzSMgPbhuq6Cf1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:48"]},"IP":{"Case":"Some","Fields":["173.208.190.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8158]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnExit1W"]},"Identity":{"Case":"Some","Fields":["3IGqOx1RVm2/J7+lYuQEeuscUto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8g20NSqYdDdq5gssH09AngTuo7AQGzH6vHxu1NG55Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:04"]},"IP":{"Case":"Some","Fields":["91.132.147.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:645::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["s6tor2"]},"Identity":{"Case":"Some","Fields":["3H59mretUvA7hW5twnjp2SvxmzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vsTXUHGF55dJQfzCb3ahbus90SJOeB0PNOggZgW86Mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:53"]},"IP":{"Case":"Some","Fields":["135.181.67.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4b:4e97::6666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luftballons"]},"Identity":{"Case":"Some","Fields":["3Hur/zxeScki0jneGlxSUvUdL4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wyv67lQoFJ+wn3SyVyayF9nZU+wHAKhsyR0XvyV+sLI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:22"]},"IP":{"Case":"Some","Fields":["87.92.210.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KiwiKEK"]},"Identity":{"Case":"Some","Fields":["3Hf0SQAfxymt9a2vJ4e22dKwFso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nJ+bI8wIamMnTxczySaSh0fE6Ef6fBXcIMdpnvhS9cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:08"]},"IP":{"Case":"Some","Fields":["107.138.131.161"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c983:1000::2d7]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kator"]},"Identity":{"Case":"Some","Fields":["3G8ziuZy59P0/pV0/Jqn/u8n5F0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["weVonrXgKFBFI/I5S0AuF/V9x7JGLDCYC5yz8oaYPds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:01"]},"IP":{"Case":"Some","Fields":["81.157.78.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArcaneSpire"]},"Identity":{"Case":"Some","Fields":["3Gu72Tmt2lX84hCiOlwwlZYK0yk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AKxCiJCPaij5uEUDhEGSiKsPuZsSbteSsoMDi9B0Y3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:59:20"]},"IP":{"Case":"Some","Fields":["79.97.240.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay24at8443"]},"Identity":{"Case":"Some","Fields":["3Fus8mnv3H/pE1byqYrdqkm9guw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ToMaYYo+7p82jxBLYzyg0bH9varDPkXwppvcClGpO+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:34"]},"IP":{"Case":"Some","Fields":["140.78.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRelay"]},"Identity":{"Case":"Some","Fields":["3FcWrdJwzRwfgoTbgXBqPG6PnX8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SaCqRv334zZvSxvSTm1q5xyH+5NWttXvyGKaXhYQrEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:40"]},"IP":{"Case":"Some","Fields":["70.55.113.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ThisIsForEdSnowden"]},"Identity":{"Case":"Some","Fields":["3EClnU10Tyw8emVexr86Wa+hxmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBP/9teP9qTMwwnsBntrc5sdbClKCxhgxRfcb2cvAbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:08"]},"IP":{"Case":"Some","Fields":["185.228.139.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:678:b846:78ff:fe18:5ec3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev2"]},"Identity":{"Case":"Some","Fields":["3CGRZj3UuuyzT5ScysP9oATOW84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gT9SESWv0r9J/rfwS4ZgyNW8PgxPGczxWiw6waVi1Tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:36"]},"IP":{"Case":"Some","Fields":["87.118.122.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:103:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay6484"]},"Identity":{"Case":"Some","Fields":["3AghhIO2EcUlWl3z9IijBXVhaz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YaOtb6jR95gdrmNuGC532Np1GgPYXmiuUs904koU9/Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:47"]},"IP":{"Case":"Some","Fields":["110.147.177.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spechttor1"]},"Identity":{"Case":"Some","Fields":["2+gvojuf48skYqb89Sid7Ty/Su4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+TJX8pgQgp39Vdny7v4vGx+hd6vNaL00Q690eOKuzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:14"]},"IP":{"Case":"Some","Fields":["138.201.169.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:35b0::4:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wc"]},"Identity":{"Case":"Some","Fields":["2+OLxaOI5ZbYUxmXdOtIqB8RAJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dhg7Os+c5f1pAJlhMF+kAoCAd3qkx/iG2nCO7opOjgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:14"]},"IP":{"Case":"Some","Fields":["138.3.220.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["nocabal"]},"Identity":{"Case":"Some","Fields":["29Z3Z2QBl/+W7GqHaERk/Ej2EbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0AX2rTbkONShmh5PPW9wQwZ1GKOvDUJumCx5nTTzgfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:38"]},"IP":{"Case":"Some","Fields":["178.63.52.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:7335::2:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AncanRelay"]},"Identity":{"Case":"Some","Fields":["29PtKTpoWmbGhy7DklhOIP99Ovo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jn/cQDw3UL1dvUuQ3lvsFHuN0jFe8ntnwMMb0uzSnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:42"]},"IP":{"Case":"Some","Fields":["158.174.112.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["25UcLPIHPsr/CO/2rBCLaxyeZ30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvNukiyE3KB7oqBUVQ47Hh4SxHrXYVqCYbqrZfOhvvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:56"]},"IP":{"Case":"Some","Fields":["185.207.107.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["24xhml6QYDtM3ilgUy4t7NLtGz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iv+Nwz4u6Vqc2zfKiZecrriF9xLJ/5tl4Um8Rz+PNMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:24"]},"IP":{"Case":"Some","Fields":["193.32.126.215"]},"OnionRouterPort":{"Case":"Some","Fields":[56660]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xcn"]},"Identity":{"Case":"Some","Fields":["24VvtQ8EQAcKH8VyrEfzIP3KsEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TcVqQhhSEjlbgEsHmquEZSPzNbWg8zJSuctED5fSuhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:59"]},"IP":{"Case":"Some","Fields":["103.158.223.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wienor"]},"Identity":{"Case":"Some","Fields":["23MDvk9Hnwck6aXHXOtaNZtvVYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuTKXJU2FrKbT7hE1wHhY5E5/z+A4GUAuz7X1td+o0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:02"]},"IP":{"Case":"Some","Fields":["89.58.19.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:fde:cdc9:89ff:43f2:5af0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreamwriter2"]},"Identity":{"Case":"Some","Fields":["22+z1uZCxeU1WqVPqA9kqBrkgI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwIpqLJYxapqM/NoS5b5cIwcDhzykj6mgKFMXxou5IQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:13"]},"IP":{"Case":"Some","Fields":["157.90.116.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:5035::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sauberesache"]},"Identity":{"Case":"Some","Fields":["22rH37JcnPxwNrU8ePkdjjqSec0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LmMkeAmpTBYFWol+sJXT2no/sLsLKws5iJwWIlDpsRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:43"]},"IP":{"Case":"Some","Fields":["213.239.197.35"]},"OnionRouterPort":{"Case":"Some","Fields":[18732]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:222:141b::1337]:18732"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackAndGold"]},"Identity":{"Case":"Some","Fields":["22gXRbpObYum6n1TgfZXAh6Sgho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N3OOcOuTlAlbBqiTEZsg/2VasMVBcV5EybtYayHxn4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:07"]},"IP":{"Case":"Some","Fields":["5.255.100.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Songino1"]},"Identity":{"Case":"Some","Fields":["21/26IBqZnTie/adHh6/MI2ah6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8J2i8OjbVBhiuGmrAUBlmk7yITSn3Z5thVDDPvRWHag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:52"]},"IP":{"Case":"Some","Fields":["180.149.125.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei06"]},"Identity":{"Case":"Some","Fields":["213oi0kU9gze71gezKjepZ7yapA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPVudADKpmZVXuYbSNlDDvxNYtCPjS70mDb5Udusr4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:06"]},"IP":{"Case":"Some","Fields":["185.162.249.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:6f8:98f0:87ff:fe6a:29af]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Wellness"]},"Identity":{"Case":"Some","Fields":["21lpRrGCBsxxtWq7NquQj44L+nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCvmD09sEegOV0D5xT7vO/2oVgAy/bXfSI+n76YyteM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:35"]},"IP":{"Case":"Some","Fields":["77.91.74.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nC982filxW8x1tkWAjI"]},"Identity":{"Case":"Some","Fields":["20UQN8I689Aorht+L4K+XKd7mKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wZUOFAHSxk6CllNnW2yEpvvPwwg3vSNy1NLyNfB+ROw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:58"]},"IP":{"Case":"Some","Fields":["107.189.8.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f49b:e2ee:34f8:c854:6f63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wokwaixtor"]},"Identity":{"Case":"Some","Fields":["2ydz1OwmRkLajGLb+iVLDM4OuL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7bGab9RtMZibbykwL7FzAeXYxY84fKaFRqq3V8o0SY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:23"]},"IP":{"Case":"Some","Fields":["159.196.89.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft2"]},"Identity":{"Case":"Some","Fields":["2yaCFTrAzK7NK9Hp6+mcaBWAeh4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rxyjljo7yr/4SDDzq3jAVjFcTGoBQQ7wpEjFm7Jg3m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:53"]},"IP":{"Case":"Some","Fields":["54.36.237.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1137"]},"Identity":{"Case":"Some","Fields":["2xbHc6DodTD9T8bV2B/7bW6y5dA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+V68Q4kZRW8VqwAqrKrtPUmgVUqcTaLEiKu0oznApZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:11"]},"IP":{"Case":"Some","Fields":["185.220.101.137"]},"OnionRouterPort":{"Case":"Some","Fields":[11137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::137]:11137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["swlt7"]},"Identity":{"Case":"Some","Fields":["2wiUEwsvwL334juADZEBfWFF06Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/E6PLxizik83b+vlBq1tpye9Z4myQSI5x5islmUunE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["212.227.164.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poopypuppy32"]},"Identity":{"Case":"Some","Fields":["2wJETqNEUfjx80LNX++ZFNznyKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf+eulDb1JoXuu0LEh4PL3cmTUUK2K0s1wbcV17/LOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:53"]},"IP":{"Case":"Some","Fields":["77.171.66.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WolfsDen"]},"Identity":{"Case":"Some","Fields":["2u+Li3mccRqGNQ/cQzeys6dbl8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYre5UfwlVKkdtKu7/EYD0eWRXcM2du4yI8npLUxx4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:14"]},"IP":{"Case":"Some","Fields":["51.255.150.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex71"]},"Identity":{"Case":"Some","Fields":["2ulIdxmbkl1fecKwDXuDTRaZOvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XuqvlHZLY92WsOO7M3v3KLpceDrp7pQK3P6Cpv1ARc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:20"]},"IP":{"Case":"Some","Fields":["199.249.230.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::160]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pablito"]},"Identity":{"Case":"Some","Fields":["2uZa0yoHTOyzCtP7t1BPDNxhbNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v4S0mBFDWNu4cFOaRtJdslVNgs1MEvvbGQrGT2hDQ60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:16"]},"IP":{"Case":"Some","Fields":["213.239.213.220"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:8070::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2uYFHV8X2GeVlSuEVvuIXOPl5MQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KinMrE28/RmE6c27YySlK5LqIOqpvasSSpQvwzs82d0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:53"]},"IP":{"Case":"Some","Fields":["23.128.248.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scatterhead"]},"Identity":{"Case":"Some","Fields":["2txzMI1TC3Vglpy5VM3b13wBD8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4wzhWYe83tTxoJL8CgjorXxITA95PpOR/lrNRhlqX1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:48"]},"IP":{"Case":"Some","Fields":["88.207.122.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:232a:99::45]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malene"]},"Identity":{"Case":"Some","Fields":["2sglu/BdZ4q96hwwhujZnPC78RI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmOVmnAuBq1FDJDxusIAD594LsZxx942e7fLvNiELlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:14"]},"IP":{"Case":"Some","Fields":["185.73.220.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["2se78fL5LnSLHrWblQZ04sOf6lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8L9EftEg9sdxoiDL0kdnhclowsQecEJgACtidKd8BVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:29"]},"IP":{"Case":"Some","Fields":["179.43.159.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex76"]},"Identity":{"Case":"Some","Fields":["2sD9TRptGKv5WvJIk17Fb0blqSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["auSPp7GJmIyI0RWjC/xyybxtvRKfyLJaYR32F/wngLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:16"]},"IP":{"Case":"Some","Fields":["199.249.230.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::165]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2rSQ9o1l6M6GyskUX6hfCpGY4o8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SKhuDKC9qtxZTko0aAsy1kRFK4D9a9ux1qWkPdmuRWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:19"]},"IP":{"Case":"Some","Fields":["23.128.248.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::47]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mxcz"]},"Identity":{"Case":"Some","Fields":["2quOeqgR3kAgVg19Y9Sjksa6Yho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aXc7gyCp4UNJJVg8ELZejhxWJG8R3vc2I5EGq+8FYIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:12"]},"IP":{"Case":"Some","Fields":["37.187.20.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:14a4::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse15"]},"Identity":{"Case":"Some","Fields":["2qDTsNc5fYUZkP3ywBQx3iWR8lM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orseNUhcS0F7PafGue18Yf87jWWWBeuArsBUvJDVSSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:58"]},"IP":{"Case":"Some","Fields":["81.16.33.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["babywhale321"]},"Identity":{"Case":"Some","Fields":["2p/McdFQ6kzXQfOz7N7AvMhv9sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYhXnTH4fWlAVKbQPnJnL3Q9qKYGZeXF1XeHtDdeMd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:40"]},"IP":{"Case":"Some","Fields":["205.185.116.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1c58::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigmekk01"]},"Identity":{"Case":"Some","Fields":["2p4Cu4CA5HMVcFL3BDm3iGqoVp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it85U0Gg+0iBLaFysETwn7esl3LSUQv+dco8EJpAbLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:14"]},"IP":{"Case":"Some","Fields":["93.177.67.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:38:4c9:83c:c0ff:fe61:fadf]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber20"]},"Identity":{"Case":"Some","Fields":["2pq66kn7+edensAgOA42Foijsj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmPYeqTGffVnYgkSfcC3v7guPTzniMxZfLlS5q79z34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:05"]},"IP":{"Case":"Some","Fields":["185.220.101.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::10]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["z0rb4l2"]},"Identity":{"Case":"Some","Fields":["2o129fWBlpO1yW9Jm6GfdAQBR2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bYWPFnY395QnjRkKnxA+/JI5Kh5udP5Hc1OhacPt1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:51"]},"IP":{"Case":"Some","Fields":["148.251.11.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1180"]},"Identity":{"Case":"Some","Fields":["2oerVxiF+36bR/Zuvl0ePy723/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqMH1XMxACk8eAxBVn71MyERxHhb3esXuHkam1WyrRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:53"]},"IP":{"Case":"Some","Fields":["185.220.101.180"]},"OnionRouterPort":{"Case":"Some","Fields":[11180]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::180]:11180"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torhammer"]},"Identity":{"Case":"Some","Fields":["2oTUF4O7tgWMud+MkGl+jV6mR8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f9zWbg40H87hejijtieq6Cm+GSVMyRMniUrwgdwcmVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:02"]},"IP":{"Case":"Some","Fields":["84.226.204.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b425:88::beef]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kyra"]},"Identity":{"Case":"Some","Fields":["2n0OJ7CPAyx2Y7WMMgheJSnLzaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["if3tXNKAH+6z6Z8F/aH8eVUbe3jBRgy0bY0cSddX+Xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:05"]},"IP":{"Case":"Some","Fields":["91.216.111.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:19c:10::60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["2nuzdS/ArSvqF/GJnL4pzD6Vl2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u+tmBuhMVic3u3QALqFPV9IE2kfgKk4TSoT6ObFruP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:54"]},"IP":{"Case":"Some","Fields":["194.26.192.187"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex65"]},"Identity":{"Case":"Some","Fields":["2neq/gzDjblYQytFkQ9HcU1hSqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e9UIB3upi1nVKxZiWi4jlUJ9TY/NxkxRa1a1oMLkVts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:15"]},"IP":{"Case":"Some","Fields":["199.249.230.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::154]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackstar"]},"Identity":{"Case":"Some","Fields":["2nESbh0LEWBVM7etOZ3Vp+yOLw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qm9vJmQLIDvRnlNaBUS2NZ8pxItTea9QiGBjRY0MSiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:49"]},"IP":{"Case":"Some","Fields":["45.80.171.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1f:1::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp4"]},"Identity":{"Case":"Some","Fields":["2m+YraaEAeKhaRlCmLNjQLJjmGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFYs9RDsSnEAPJP0VeaDU4+OVHVfkc3tU2xqu1HK5MY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:09"]},"IP":{"Case":"Some","Fields":["185.220.103.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lancaster"]},"Identity":{"Case":"Some","Fields":["2m4jH6fAdhOmRHPMcJ6lWsgnQB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bwrOsFVLUWJhHt0Bj2ju2shB5+tX9zqTjxV9sNlOS+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:03"]},"IP":{"Case":"Some","Fields":["106.68.240.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["2mHoSwCbMEN3wIy4KUa+pYOYt4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0VoCmLUAS7w9d1LrckT9MyTK1gyjtksxwASbTmBMMro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:08"]},"IP":{"Case":"Some","Fields":["171.25.167.73"]},"OnionRouterPort":{"Case":"Some","Fields":[56890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex99"]},"Identity":{"Case":"Some","Fields":["2lyaWNvUnoOCG8Vvy8itkgloDKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoIK1dX8Q4jLKWjPLQcZ20F+/aD1/xPNWZyInQXl4+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:45"]},"IP":{"Case":"Some","Fields":["199.249.230.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::188]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LowEndAdatikrit"]},"Identity":{"Case":"Some","Fields":["2k+cT0seJTCOS2rBarbaUf8HosY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ad6MTJ2ewXQXja5PkxAGf8aHcuMS1WNuDcZmp5NaLUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:35"]},"IP":{"Case":"Some","Fields":["185.193.126.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:1337:126:0:b9c1:7ece:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["idefix"]},"Identity":{"Case":"Some","Fields":["2ktIjCgm37vQTWNdoecaK6WyB0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWVvQtOwRuf6qpJywLLw9tEynh0M6tlTxflWZJ8aPUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:03"]},"IP":{"Case":"Some","Fields":["82.165.70.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp5"]},"Identity":{"Case":"Some","Fields":["2kevBn9Cg+tsjkDiGW9uxf3//c4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYlskDXMLTwdrq9LXFzsHe11weFCCX4j5xn1vR3cua8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:52"]},"IP":{"Case":"Some","Fields":["185.220.103.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ExitTheMatrix"]},"Identity":{"Case":"Some","Fields":["2kXamfZVq4vNqgneI6J2u/h21YM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s5hjPWTI0W6ATt8/pv3QgmFPu6/VMZ5HtLKLOqIYpOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:16"]},"IP":{"Case":"Some","Fields":["185.130.45.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2kUs+KnnfMy5VFmOWchNlNxaTUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7EwmwSBmx4Wo3Deav2t0i9mY1MiE4c+3u0MXgpdYSqg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:58"]},"IP":{"Case":"Some","Fields":["23.128.248.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::50]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer71"]},"Identity":{"Case":"Some","Fields":["2j9vsYz8YDfWakRyF/TEH7GRgms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpadddrRXpZocQtR/XgFGO+AnIxDKZCPAMsuY3NeAHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:28"]},"IP":{"Case":"Some","Fields":["185.16.38.112"]},"OnionRouterPort":{"Case":"Some","Fields":[6171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob00"]},"Identity":{"Case":"Some","Fields":["2ihKElmQq9e9iu42fYjHhKXruyA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Iuol767e9BhjfzqJvbMc6vsXI1VlBOBJstlqxR2PM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:00"]},"IP":{"Case":"Some","Fields":["94.16.123.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:a6b:34f1:88ff:fed0:52b2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemOCI2"]},"Identity":{"Case":"Some","Fields":["2idXDeqRkBiJgp4/+CsUATtJQjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jZdEnkYbvXOSYDfl0OSuikvoyVuKkiuVoIGy3mkG0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:55"]},"IP":{"Case":"Some","Fields":["130.162.211.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1134"]},"Identity":{"Case":"Some","Fields":["2iLAtYmVmt0U0WYGuaKlEs7WHE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gPA4Z/447o1AFBe1beBSuISFgg+Kb+MaKxiCG1fgcZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:57"]},"IP":{"Case":"Some","Fields":["185.220.101.134"]},"OnionRouterPort":{"Case":"Some","Fields":[11134]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::134]:11134"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mjolnir"]},"Identity":{"Case":"Some","Fields":["2huLjWF5CZAlcnkM6LuZ2lAsZIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ju/QoUMSgVLIiFnNvT62GWnyRP94arh/xN7fKP9JDoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:50"]},"IP":{"Case":"Some","Fields":["205.185.117.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:3ea:c2a3:1162:7224:e5df]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IloveHK"]},"Identity":{"Case":"Some","Fields":["2gS/II02GC57414apOOGe1rt4t4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0psYe96u3ZSO7BZwJ1DbWyebM9TOpcXN/cDl9I18PaA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:19"]},"IP":{"Case":"Some","Fields":["218.102.182.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["letsdoitUS"]},"Identity":{"Case":"Some","Fields":["2fne/oc/nI7YMmUrhJBZQJVWLkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oe4DG3OIOXedx8b2H/qyCSKA6Ze5dVX6Icbu1RttYJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:33"]},"IP":{"Case":"Some","Fields":["74.208.216.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:fd::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brrsundae"]},"Identity":{"Case":"Some","Fields":["2e2z3Mj0mi7ERksQP4WzldCp7Z4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KdOc4mvUTVh2Z6SKuzkzZ0grookBbJcAcGjawzJFPnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:52"]},"IP":{"Case":"Some","Fields":["172.245.90.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LIN0DEXX01"]},"Identity":{"Case":"Some","Fields":["2e1XSmD7V07GFRjWw0w1A23KlCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u2eTvmxan3cuMMi4NngcHYjVijP04NSD3Lsv6DZ5zkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:51"]},"IP":{"Case":"Some","Fields":["3.9.8.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ledevin"]},"Identity":{"Case":"Some","Fields":["2eT3+nQBUuvZjD3nUl9IjnyoWfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x521bCE0oZYQOauyEHK5WqMIIPy9LLygT/a6uGCrTh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:49"]},"IP":{"Case":"Some","Fields":["50.7.115.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["traktorzetor"]},"Identity":{"Case":"Some","Fields":["2dbDXpMv73EAoAyZwZk1boLat+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gHeWCQoNw8OH/46CjzVvwGozSEGfG7I/aJbWZVJE4jQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:27"]},"IP":{"Case":"Some","Fields":["37.157.197.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:1::2f0f:f001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra11"]},"Identity":{"Case":"Some","Fields":["2dLb6sd2IVsz6Z1Ov/6PulwQDbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cFWfHV7NrASzHuLEj4BnCug/q2qNZajK6mic7MG1vFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:12"]},"IP":{"Case":"Some","Fields":["193.218.118.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::167]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["2a3+JaQvWcAQPlLE0N4lt4d/oPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ax6ua8cTXLujLVDngB7SM5zYBFZcjZ4p9Fvp65lDeVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:25"]},"IP":{"Case":"Some","Fields":["95.214.53.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["P33Vieh"]},"Identity":{"Case":"Some","Fields":["2Z++L+z7q5T3r/0RSNuvCvYW4QY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d17w7qYlyh2oueDBYffMpZKzmMMU+/dpNx9NJWIvLRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:44"]},"IP":{"Case":"Some","Fields":["103.119.112.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["harutohirrii1998"]},"Identity":{"Case":"Some","Fields":["2Z+rBLF6wwV5UOya2F2PjtG+YfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K1HqPrJvcy5UxBYTXZq5eesInYwOG4/G291Q0J+jUzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:35"]},"IP":{"Case":"Some","Fields":["103.242.118.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chachahamas"]},"Identity":{"Case":"Some","Fields":["2ZCpeMbCekhnuMKoSRQUD7Zp/CA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Dz6MUEo4ttCdoXk0+cK9nw3r94bFuPCduYp87t9UeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:49"]},"IP":{"Case":"Some","Fields":["86.104.194.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["refuseGlobalJam"]},"Identity":{"Case":"Some","Fields":["2XTHQxHW5gq4g2EP9zqeiB+eMPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsindeJbhGxnbFjl5EQm2f7k6urA3UVmoby4XGyM3gs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:28"]},"IP":{"Case":"Some","Fields":["213.164.204.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2WQouDqLFHf4/6L+bywj7jalwRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gw/CDDFTWi6MvzRJYTukP1ugduN3k+nX996HIDVL2kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:31"]},"IP":{"Case":"Some","Fields":["23.128.248.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Splinter"]},"Identity":{"Case":"Some","Fields":["2VmAwV954JSuJVuo8bV/1sgfK1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsmStHQQ+8znXOiDVZXHsch0zUTWxhyWtqyDZNr2YM4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:00"]},"IP":{"Case":"Some","Fields":["200.122.181.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catRelay"]},"Identity":{"Case":"Some","Fields":["2VJxkCTyH+6mLAesnpyZbWgGuy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ag6tiy/p74ehA2Km5VrDLV7r2I0yeyYlkoelKn+gntA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:21"]},"IP":{"Case":"Some","Fields":["190.7.3.34"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["franovgnet"]},"Identity":{"Case":"Some","Fields":["2UdiOzDJ1uFC59kPxzaLGipPUEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ag6176S3lwmCe4dCWIJkAGvW8NrgTsLgaI5AmrXdQrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:22"]},"IP":{"Case":"Some","Fields":["51.75.64.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::205a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tardis"]},"Identity":{"Case":"Some","Fields":["2UHTgOUijntNNyr01IRimpbcSLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5kJti9GoRhbvlifLZ53s3euOL4x7mU1D0vf4I8+UZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:55"]},"IP":{"Case":"Some","Fields":["158.255.212.178"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:158:255:212:178:2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Odi1"]},"Identity":{"Case":"Some","Fields":["2SN1OIaC/K7pjn6JL523YA/GRj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qB4xtra0dEWDlQ0/2iONKXQBEQ8JoOVOw6uccfSR0C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:01"]},"IP":{"Case":"Some","Fields":["130.61.118.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["yesch3f3r"]},"Identity":{"Case":"Some","Fields":["2QnKtODqBEao48yc2E3WQs/+ZCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kIOxUrU4raiSRaELrlboqICmBmLBINzqdRIPKghDBH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:41"]},"IP":{"Case":"Some","Fields":["217.160.254.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:382::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2tor"]},"Identity":{"Case":"Some","Fields":["2PecbPOG3PxbaS4TxQiYlGBQe3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sjZ70njjCvDXNCXti456N2QTI2TuO72aavDDecbfAnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:19"]},"IP":{"Case":"Some","Fields":["162.55.190.170"]},"OnionRouterPort":{"Case":"Some","Fields":[12333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aRC0C7"]},"Identity":{"Case":"Some","Fields":["2POwoZpx+ous7Es24KhkXu/wHm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7wI9T3iLhatZl45OPGh9OPj9bbeHEn35cqI7ZJeNzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:16"]},"IP":{"Case":"Some","Fields":["132.145.62.236"]},"OnionRouterPort":{"Case":"Some","Fields":[1234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tryler"]},"Identity":{"Case":"Some","Fields":["2OoQXnmAP7AECowqZ22T2uos//A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gx0VI4Bh6HmlYqM4bsA97dzG8xZfrKH/VwlknQjwjQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:19"]},"IP":{"Case":"Some","Fields":["185.117.82.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:21bc:1e::1:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["2N+WYCYbFYqd9sPX1j3ZKw/Vufc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QuA7BukHen8b4qT22W57WcjbJbrStOJ9vGkCMSt+xB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:27"]},"IP":{"Case":"Some","Fields":["185.61.148.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::e636:5252]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwerty12345"]},"Identity":{"Case":"Some","Fields":["2Nx0pVvM0G35324/BWiAnTspc7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ty0lPrGUcIVStt480V/jTACXLgCyacRGKmwd3pNbOSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:27"]},"IP":{"Case":"Some","Fields":["82.197.218.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Papazof"]},"Identity":{"Case":"Some","Fields":["2NOfvfBUvQFhcAlJ0BFONrrn8Po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/MtVKmN1MRYAaV1V2QCOPibhPmZcn1FdNwyKnfvJ6E0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:31"]},"IP":{"Case":"Some","Fields":["91.45.199.210"]},"OnionRouterPort":{"Case":"Some","Fields":[1412]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cepa2"]},"Identity":{"Case":"Some","Fields":["2LmuLM+vMKeXSq65s/6vA1sHDYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wGcynflOYM4kQ1Pq2gAUMr9LNRO1vQw2buSfOKBd4CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:58"]},"IP":{"Case":"Some","Fields":["185.100.87.41"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:3c::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aberto"]},"Identity":{"Case":"Some","Fields":["2LTDHk2vnLyJ7BPj9dlorWzci/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OVW6aVdSdw+oYQs6Lp0Q/+50N0DQhhDt5VFRT4wGYBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:18"]},"IP":{"Case":"Some","Fields":["91.203.5.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2Kvxam/oZKZ2KH0cjJBaDYuOxpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b3M72HXOwobykfAINl0Y5De2AnMhzGqpF6CRHeSViAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:20"]},"IP":{"Case":"Some","Fields":["23.128.248.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::26]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porthill"]},"Identity":{"Case":"Some","Fields":["2KLQCAsMc+HcDsnzO0l/ZOX7P1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BhkmldM2uB09Gf3T9upYun91ymwCG+fWkPc40wd0e+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:34"]},"IP":{"Case":"Some","Fields":["136.243.176.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:2593::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexse1exit"]},"Identity":{"Case":"Some","Fields":["2KH1qOoa9T40FLnEj+axDDGsybI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eFVR5D8oXdCqdzLsJDNEoENnE27kpDsXGB2jA5Tu7CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:46"]},"IP":{"Case":"Some","Fields":["185.130.44.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:2:13::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Friedrich"]},"Identity":{"Case":"Some","Fields":["2JJn+xC/Yl0x/3aHr30SsDu/dXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLHPhGiwqJ37oOnNPKT32jk9/5SnQmnCudjxZnrVfl0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:08"]},"IP":{"Case":"Some","Fields":["35.182.71.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iceberg"]},"Identity":{"Case":"Some","Fields":["2I39va61/nl7vWWtcomMyTLAt54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+PAUdI3k2CDw1lht228lzY1kMuZjxMMZdrpOCuNiVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:31"]},"IP":{"Case":"Some","Fields":["89.212.52.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schattenbahnhof2"]},"Identity":{"Case":"Some","Fields":["2HqSfaF7n7eyzr7aNJ8ja8BAm8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3BFnG6paPtLjhsfk4eYbJn23Tme9xOFQvVrKEuWlksk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:38"]},"IP":{"Case":"Some","Fields":["188.68.53.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e34b:7cf3:194b:368:22d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saberrider2008"]},"Identity":{"Case":"Some","Fields":["2HMwSPyOyRAkZq2PMJhiK/G/cf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BlWiFCqxVqEKLcoH58MNkGWTYr5UN0r9hPxwu+vsmXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:43"]},"IP":{"Case":"Some","Fields":["95.91.170.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0a:5e1::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallrelay"]},"Identity":{"Case":"Some","Fields":["2GlmkgQNjjWSIuYLZArf2Tdqe3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZFAyn1fYxVdBaX9H/v4RtzLrdTzl/+GOPLAhE6mDzto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:07"]},"IP":{"Case":"Some","Fields":["93.95.227.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ljubo87bg"]},"Identity":{"Case":"Some","Fields":["2FFjIxBRdLLO6emZsBga/z1jyTo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Brf/uAN+T3P9LL3HJiFixTwDFyv/AbP+qcVus+t9bI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["152.67.109.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["trout"]},"Identity":{"Case":"Some","Fields":["2DgwEhR2LAe3hGyCbSpeu/zQiSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ZWVSatIaAtgQ6jwKJMqpgJI+kbDg0Dho1mmSMfhhyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:55"]},"IP":{"Case":"Some","Fields":["139.180.203.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7002:2ff:5400:3ff:fef9:1677]:9876"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Precious2"]},"Identity":{"Case":"Some","Fields":["2DgOCN7fbJCgnsN40fbBiB73lHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyP5VtpI6EF4EQhBmFacpsL/gBJihr/vvXZvJmpb0VA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:50"]},"IP":{"Case":"Some","Fields":["95.215.45.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::394d:31f1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet1"]},"Identity":{"Case":"Some","Fields":["2C0Y6DWe360LN0iHACq98fKepDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Gsy15IG1oY1V0XxS/U6e3GgtXG11qGKq3AUlKAb8fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:52"]},"IP":{"Case":"Some","Fields":["185.100.87.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:16::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blue22"]},"Identity":{"Case":"Some","Fields":["2CsUdxg+B5Fay6ByUDdDA9k/C8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["01Q0ukORqvWKmyUMaKMnc2wU9rkm7uT5iN38n0Rvm+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:50"]},"IP":{"Case":"Some","Fields":["194.195.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv120"]},"Identity":{"Case":"Some","Fields":["2ClDQ0skIE+/G0uBjP6mTyBd6sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQwgA9ubP3TRt7JoIj2KVWQgp5CHK5yZvC1hJF95w70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["192.42.116.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5520]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["2A9kkibMlrvg/3tFs3kZAVaf5aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZxZqIXVOk6NKytJu2dlnC+OUUMTX/OEvzns+z8rf8U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:04"]},"IP":{"Case":"Some","Fields":["185.220.101.38"]},"OnionRouterPort":{"Case":"Some","Fields":[10138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::38]:10138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["2A8yLK9H2JMk5Cr1Ygm16GBxA/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JrTMxSHRH6Vy6r4pv2qjEufyscsqi4FGsBnXqGk3Jmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:29"]},"IP":{"Case":"Some","Fields":["69.237.207.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bonjour1"]},"Identity":{"Case":"Some","Fields":["2A6iFia/roBE5AN/52UlLhV+NYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wcv+4bLjGQspWzhWuBMHD3Tb90DghHvnnZIugOg/lNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:41"]},"IP":{"Case":"Some","Fields":["188.138.33.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie1"]},"Identity":{"Case":"Some","Fields":["2AVsrUo9bufYJ0gCdHS/XFPladk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zMXMSIA7W4q0NwO5rr9gsWad3OG0J4OZhmL2gTp8QQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:14"]},"IP":{"Case":"Some","Fields":["65.108.136.190"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeBeePi"]},"Identity":{"Case":"Some","Fields":["2AJrc8vnbhbklTxc4/jINJZpKB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H12qWUIsXOJLa4G7FdxIRVu9wkD1obL0imPmLCzmZ4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:03:04"]},"IP":{"Case":"Some","Fields":["87.123.38.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9602]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapBLR"]},"Identity":{"Case":"Some","Fields":["2AGviDT97RwzmNeP05T+bZE1IgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eXTJw5EZy3I6XJJg6grXL2E6GiDAbz7sIlhxZM8KIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:16"]},"IP":{"Case":"Some","Fields":["139.59.38.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::a18:d001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ygWegnHEQ"]},"Identity":{"Case":"Some","Fields":["1+uTtQpNHu28U1TDEkKGgPOqkCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TLyKoEAdC4gDGVdmeSQxfxJt6iad3Zfz1ENDtnoXouE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:13"]},"IP":{"Case":"Some","Fields":["185.147.11.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["19xLrIgWn51VEiHiLDR2E6NpL8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5pg2gTqqkfraCiSjmuWDWIy7AvBxbXEHImjbJZJpnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:51"]},"IP":{"Case":"Some","Fields":["84.170.128.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay2"]},"Identity":{"Case":"Some","Fields":["176oGfb76WmuYIEymR1KQq7kCjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sgz6EjoH7rO0Now6w6QXxNPywbILrS/0BjvNxkziFtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:58"]},"IP":{"Case":"Some","Fields":["163.172.145.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:e2d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Platypus"]},"Identity":{"Case":"Some","Fields":["17NVgCAjXB83TuyL3hRo4ZVBHjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJjLTWqUK/dOJKr9uU4h3Um4HTdujjjUoSxzhx8QUNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:02"]},"IP":{"Case":"Some","Fields":["217.76.159.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:fe::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goodvikings"]},"Identity":{"Case":"Some","Fields":["16gOlYkqr1H/JM98LOSTEZMbVfc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ujkpEqEbXO1Yf45G05YVzL0vPc702UpmTKr53WvNJds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:15"]},"IP":{"Case":"Some","Fields":["198.50.128.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["niceRelay"]},"Identity":{"Case":"Some","Fields":["14KaIXJiIK93QBvlsrEyljoL6Cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gIBWMOCPRwG8IFmt2xrbTvJhGAV9qIUF3SCmI7J6LtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:15"]},"IP":{"Case":"Some","Fields":["94.254.74.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Centro"]},"Identity":{"Case":"Some","Fields":["14DI3nYYdgYJFdfcObEfO32+N84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Glk0KXE4NwP/0vnDk7iVc/Ojy5ltEN2X988zMiD0hig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:09"]},"IP":{"Case":"Some","Fields":["83.223.97.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slashcrypto"]},"Identity":{"Case":"Some","Fields":["13fTH5UIHQ9yI6rV+KdJd9UkFF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zDyDVIUhC0l3JDvQBhsNBBl1fi0VsM8pQS+MVK2f6Do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:57"]},"IP":{"Case":"Some","Fields":["85.235.66.146"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[587]},"Address":{"Case":"Some","Fields":["[2a03:4000:32:401:4d5:beff:fe5d:c220]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["13c4zhUIeqgXe7VoBonbOhPp3tE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCn15UPYdPBL3AtBTgA9hU7tS767I3UvtAth2zK+sMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:32"]},"IP":{"Case":"Some","Fields":["23.128.248.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::39]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2propstor"]},"Identity":{"Case":"Some","Fields":["124f3Ho9iZKCu4gvdBEbNqbRS2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S7iaRtRMB8ZUGTKUNOzuwpKtaVinGL44pCHghDykM3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:38"]},"IP":{"Case":"Some","Fields":["50.73.63.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SunshineInTheDark"]},"Identity":{"Case":"Some","Fields":["12nVRAYbdW4Se/Y6G3spYMBNxGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0xVynrXMT78MRKyH6Zyhy8tgtnoWGtdD58L5K/PU0xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:43"]},"IP":{"Case":"Some","Fields":["220.233.178.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wiwipower"]},"Identity":{"Case":"Some","Fields":["12eXn+TJnTEKRuxJA36f5+P2Tp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGOKxrMZ4wFGdIQck7w4RABImU7wK3EzKFctuP2Z8bE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:39"]},"IP":{"Case":"Some","Fields":["141.20.103.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor03"]},"Identity":{"Case":"Some","Fields":["12EQ53D7X20Jy4AdY3nDOhpsDMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HEUeLKjqD9Ar1oK0zfC2Il86s1eVm+8WsCf0IL6SQEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:16"]},"IP":{"Case":"Some","Fields":["192.99.152.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::348e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DizzyDuster"]},"Identity":{"Case":"Some","Fields":["10379gQ7kXu8Q14Ul9p0TQHR6/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3AHH3lfnbxZSqz2/d0cxCeb3M5dNoo49s7vp8dJP124"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:19"]},"IP":{"Case":"Some","Fields":["5.181.80.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["claire"]},"Identity":{"Case":"Some","Fields":["10eifGMbHJC+djiLxa9fo4nTDc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvzBlyz+X+a1qXKbFPMyLAaq7dFZKXpNLK8W13ObbIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:08"]},"IP":{"Case":"Some","Fields":["185.163.204.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:c800:1:1a07::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ThreatLevelMidnight"]},"Identity":{"Case":"Some","Fields":["1zixYeDCF9oVxslMGD14q2WO/Io"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QroKcR/lCcqIfz1HgZD76vyBO816cld2v0ECbcbUJNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:10"]},"IP":{"Case":"Some","Fields":["185.10.16.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NuclearShack"]},"Identity":{"Case":"Some","Fields":["1zFr9/1jPddHSxjDPh1f3rBNJqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["plXxl0gDF0GtU7S9ip4Czmdx5eLgMFIBlyWr3+ItCzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:59"]},"IP":{"Case":"Some","Fields":["158.69.205.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::da8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum3"]},"Identity":{"Case":"Some","Fields":["1ynGiDgswqV2CJcWvhBJDS1m/OQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XARCv1WcSAqVV2U0f8dEayl2pQ2V3cMqL34qoSF/47s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:01"]},"IP":{"Case":"Some","Fields":["62.102.148.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratte"]},"Identity":{"Case":"Some","Fields":["1ylqvUnBS/UHJiJ7+uGspCOswik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0eGc1xEiYZAYTALfDgcBgfYRa2QVAbj3bHMjL8esLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:06"]},"IP":{"Case":"Some","Fields":["109.70.100.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::75]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1xscocncfoymQVjhBq13CiEWD+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fW5qpnGF2G6H9XrG6/4uRjlyfeZFEC1jlJ8i8GfeJBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:17"]},"IP":{"Case":"Some","Fields":["185.34.33.2"]},"OnionRouterPort":{"Case":"Some","Fields":[31415]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:99a0:0:1000::2]:31415"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berlinwonderland"]},"Identity":{"Case":"Some","Fields":["1xsYxC1xVJxgZv4axd8P7B8DaW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RnxsaijyFtkaaDAF3NWqZALX9dg66T7cB+OFBeFQhII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:15"]},"IP":{"Case":"Some","Fields":["65.21.50.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:89f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor1lhvmct"]},"Identity":{"Case":"Some","Fields":["1xlCSap31cohm8MX4tz1tJqFeD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmEP2oGrlHCUzD3DrlBAvt3Tt9z6VJxY2deBrtMGrvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:21"]},"IP":{"Case":"Some","Fields":["92.117.9.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaders2"]},"Identity":{"Case":"Some","Fields":["1wpeAewU0HgWTV5YdgiUn4X9dxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3DEJp+Qo5XjjtKqVuz8T67rPSRzpYsojHTR/rlgHqAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:21"]},"IP":{"Case":"Some","Fields":["45.58.152.43"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pushfd"]},"Identity":{"Case":"Some","Fields":["1wakUAuxqQqwdup8wN195SdKLLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QY0li5HQx9H8xQYzHNUgqS454zrNTPlyYJsmcfbOLXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:46"]},"IP":{"Case":"Some","Fields":["94.16.109.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:51:9c6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnivUtah1"]},"Identity":{"Case":"Some","Fields":["1wGsr4ZBPpJSnqjjIIjH/EXqb2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yw7c9srgUD6Izh5jDCuD9IQ/zS0li8vUequBI1E5G3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:45"]},"IP":{"Case":"Some","Fields":["155.98.5.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN28"]},"Identity":{"Case":"Some","Fields":["1v8ml86lwMfahHl8LnEWOBT8JGY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTeVr4Jdw1OBNGIK26qieHPXfPsR5fJqB9ScmUtIfBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:07"]},"IP":{"Case":"Some","Fields":["199.249.230.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e651]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torzpi88"]},"Identity":{"Case":"Some","Fields":["1v8M6EZW1RIuX/6YArA2caFp/2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B0FT8rQ305zWcrPWB+rU5H+5mNWqq8z+FlO19Ph9pp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:50"]},"IP":{"Case":"Some","Fields":["77.220.198.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=940"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DELIGHT"]},"Identity":{"Case":"Some","Fields":["1u3TMqwEsdHo/vs/MvTAUM2zqVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mL/1mgjZre5HgeBvy/n6qKPim8G4Kru4jEXzGd/X/Hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:19"]},"IP":{"Case":"Some","Fields":["79.141.165.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1uu89PZQJYYIkRPYw3sP9aYVKlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y05HRR9EggR1z1J9q6IxjTnwHAe7q5FEoT+uy9d7rbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:17"]},"IP":{"Case":"Some","Fields":["163.172.94.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Titan01"]},"Identity":{"Case":"Some","Fields":["1uZfIv4AY7Vm5cKz4Yu41ehwVm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["owNy4Cwx1U1qwPM09RbHrsUtd4Nc+kK9WUMXQ2CkifA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:17"]},"IP":{"Case":"Some","Fields":["65.108.89.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:71a9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA04"]},"Identity":{"Case":"Some","Fields":["1tlnMQLfFDXBpm9MmOaLVvGSFvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9cMowt9Q9VOK77MSLaFWSYPSDxl2m8y9Ir0WqGqQsGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:09"]},"IP":{"Case":"Some","Fields":["109.250.38.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnosognosiaRedux"]},"Identity":{"Case":"Some","Fields":["1ta2YUye8trROsDJRIetjtO2h38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNibpolZdqfzQLZudW210gEL48LKErbYHVRfVFQK1b0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:34"]},"IP":{"Case":"Some","Fields":["185.220.102.8"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::8]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mittelerde"]},"Identity":{"Case":"Some","Fields":["1tZ3AUpYPm94OgP1I6bF3C9jR9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l76PEbwUQungsWm/rB+IuUNN0RmwFZGQH79gPwOcFJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:12"]},"IP":{"Case":"Some","Fields":["37.120.186.122"]},"OnionRouterPort":{"Case":"Some","Fields":[4711]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:992:98d8:54ff:fe3d:fc2b]:4711"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fourwinds02"]},"Identity":{"Case":"Some","Fields":["1svg2F7Tih1uRd+nAzkKno9geSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pK9zE0AqzHDzfnmjEzmBZfKQya2bcJfkuzjEoCkXLKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:29"]},"IP":{"Case":"Some","Fields":["5.255.98.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1sIwESEOHwFI+p8Z/UaaFxNXx3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GNksGD3yaYHuQa1ck8rbebgimNnGwviyFk8sXuYpJro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:18"]},"IP":{"Case":"Some","Fields":["141.98.255.148"]},"OnionRouterPort":{"Case":"Some","Fields":[55785]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["1r9Dv6WYqff6UQIu7QBhrf12TaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iww9o033XCZ3XVSZP4F/HC04es+BroMH0cMnIFRcX9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:40"]},"IP":{"Case":"Some","Fields":["95.214.52.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsalc2"]},"Identity":{"Case":"Some","Fields":["1q2gSJgOtDFJkNfyu0C4SNYF+YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uhNrSWIL1yYfKmelqQavmQlrzWu/vDu6sSOWG2nBJVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:04"]},"IP":{"Case":"Some","Fields":["80.211.130.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d40:72:2bf1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pipit"]},"Identity":{"Case":"Some","Fields":["1qnjIHF7wcjDaSkvxecpKz6ZTtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EXsdDoiyV2Haz2+122cBCm/7QYXasEydMmuRpRTuKLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:34"]},"IP":{"Case":"Some","Fields":["199.254.238.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1okS61pnOuwXlY0enKPwu7CU0fM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PjBapr9GxmxuUHN1F5wcNpHaeukrNA8pF9Xssq3CXqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:42"]},"IP":{"Case":"Some","Fields":["185.194.141.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XeSh"]},"Identity":{"Case":"Some","Fields":["1oXbFwzI/Ss2MOjhzt2IPx+LsOM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xd49GGDIIL3PjifbpeeHDDTUcrFtUKuAK/RinmShEds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:38"]},"IP":{"Case":"Some","Fields":["176.111.31.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drogo"]},"Identity":{"Case":"Some","Fields":["1mcPtUshgYznwTUkqgAyWLjjXTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tCuI6VpqVNncbq3SMX3kGO414R/ea+adfrNq53iTDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:55"]},"IP":{"Case":"Some","Fields":["94.100.6.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanwatech"]},"Identity":{"Case":"Some","Fields":["1lLVDx7TfAhKTxWGbg1XY393EU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zIzgFDqVwyMndQWBVVk8fY1qHD1BwhDlqsDVHcQjtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:10"]},"IP":{"Case":"Some","Fields":["203.28.246.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:cdc0:ffff:9ab8:4dd0:41ee:b98f:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glowie2"]},"Identity":{"Case":"Some","Fields":["1k9Uu+KYPumrwzmh5Ew8mmHQYpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z9WwEATj9F7090cYiLY2wXJxwDEB3S7yMkux7049G6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:51"]},"IP":{"Case":"Some","Fields":["139.59.39.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::1e0:4001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as204750relay01"]},"Identity":{"Case":"Some","Fields":["1i1KzWa5+5GsLqp88p5lSorsHDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mIGCDaodWvJZCUD2yCdYCmUcNlDxP8mnDWfr5J1QJg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:39"]},"IP":{"Case":"Some","Fields":["5.199.138.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3dc::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itsfavesun"]},"Identity":{"Case":"Some","Fields":["1ibQBpcqGP56hV3PV9C/wOkGTn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxHZg2tu/ghEvqNwcYI52YAbzL88bdBZ/u+0S9XTfg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:18"]},"IP":{"Case":"Some","Fields":["43.128.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tuurtornode"]},"Identity":{"Case":"Some","Fields":["1h/pC1ypdjHoraf7ZBzE95SJn0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["co16r398uZyVnFjqTIHtExUnC8IZOKFu2KdN/Nfx5JE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:04"]},"IP":{"Case":"Some","Fields":["45.80.170.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1hrpTrlNUSele5Fh6sZXEb8XIZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oJJ/IVpyf/r+V2kIUaZWv7HMM14b8VKIWkKxOhl874Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:22"]},"IP":{"Case":"Some","Fields":["172.104.226.248"]},"OnionRouterPort":{"Case":"Some","Fields":[41938]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1135"]},"Identity":{"Case":"Some","Fields":["1gTHv5ARkeWdeR74dY0Z7o6MmnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SA5tjncwUs3FKDnH5Z8AGeseq7TyojZmmW52fIVazMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:51"]},"IP":{"Case":"Some","Fields":["185.220.101.135"]},"OnionRouterPort":{"Case":"Some","Fields":[11135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::135]:11135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay41at5443"]},"Identity":{"Case":"Some","Fields":["1gFd73BzpVDbTnl8dqcfNdKEaKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4mR/MZt26DfPzK1XawhfG+0zAfIjtvvi8shoXFaWZfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:46"]},"IP":{"Case":"Some","Fields":["140.78.100.41"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["1fuA5qmC8g0xMYY9d13rKyQa9VY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZy+boKB0qeHD2k65sSI284P5thjY/acvm+QdHNTL0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:30"]},"IP":{"Case":"Some","Fields":["23.128.248.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor5"]},"Identity":{"Case":"Some","Fields":["1fc6fUoNe5DlFdmcokYqLrJKdlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mTK7JulKcJW1YvqH55hJyYWI2WVOCBKhmLQWnVtpAvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:09"]},"IP":{"Case":"Some","Fields":["193.56.240.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["1fCUl1SKOQcdFKyemqkmoPinSPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSFGtedspoT4pHn1yazUg2Mqno4cbaqyRLB7o/X0PG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:57"]},"IP":{"Case":"Some","Fields":["92.38.184.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:15::62]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strait"]},"Identity":{"Case":"Some","Fields":["1eyBinmycdrkXX11gQz6Ud5JCPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+EJ+9BFl05hhi7x1KR9/HB8aaMTBGtW4AwoLUrDS4Aw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:53"]},"IP":{"Case":"Some","Fields":["51.81.245.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Osiris"]},"Identity":{"Case":"Some","Fields":["1ek1allY5IkaEk+3SYKbMOt/jSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlY19P1gREx0Zym2kFH3JNOhNp83Kh+POpz4hTn+Ua0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:05"]},"IP":{"Case":"Some","Fields":["198.244.238.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:bec::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["piSORGaming"]},"Identity":{"Case":"Some","Fields":["1d/HK7c1a/TrrWKmuZkQBDFquXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddI/j81qAbc87pBdPN1zhXcA8R9tx23G7VwPF8jyFyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:29"]},"IP":{"Case":"Some","Fields":["178.201.248.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH102"]},"Identity":{"Case":"Some","Fields":["1d4lfjDlzkShh9MIKYyPzcGwE7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5BfGOCzJjyS3YpqfhMr2d12mP23PHDbFGa+c1VnMKug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:38"]},"IP":{"Case":"Some","Fields":["192.42.116.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CheenaTorRelay3"]},"Identity":{"Case":"Some","Fields":["1djDHh+EW0ZWSxEiM+7PtTkGCRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ev+8kAknVb8R7gkhEtesAR7QFcCHumG0LVVApbNJlAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:46"]},"IP":{"Case":"Some","Fields":["5.135.158.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d8a2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaycrunchrelay1"]},"Identity":{"Case":"Some","Fields":["1cuhZ3e01XFWBJmzGQHwA8hZK7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzCmfSkI+c6iqkiYAxosyQjNRELXpXewRrF9/5RkdEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:45"]},"IP":{"Case":"Some","Fields":["178.175.148.132"]},"OnionRouterPort":{"Case":"Some","Fields":[6999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:172::2]:6999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber07"]},"Identity":{"Case":"Some","Fields":["1cTYiNgPDVvpimcrXhC3jqXV1fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Be4G8JCi3OsDzqzFjnwimfBjzBQQtwRrIjfVDHWQ9+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:29"]},"IP":{"Case":"Some","Fields":["185.220.101.4"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZiqiaRly"]},"Identity":{"Case":"Some","Fields":["1aLHSUv8544YJj9UT8Dx14D0y/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pic4MsDVkpwABdQ8HX+QewmyK8SCKBaEzyzP78L2zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:35"]},"IP":{"Case":"Some","Fields":["67.82.173.160"]},"OnionRouterPort":{"Case":"Some","Fields":[4785]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["komeru2"]},"Identity":{"Case":"Some","Fields":["1aKzrh6ARwF6C7xyCf1iTbhNR84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sArmluk427E2+aaBgoz+5ujoFPpT6yINZWbp14FrUI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:52"]},"IP":{"Case":"Some","Fields":["104.244.76.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f99f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Enflurane"]},"Identity":{"Case":"Some","Fields":["1ZjihlFkr22ZWPyaN9glwoOoDDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ilft6fczCTwmF8QPR5+d23ADPuCSSCWDVubBg+QXYmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:09"]},"IP":{"Case":"Some","Fields":["2.83.38.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoolRelay"]},"Identity":{"Case":"Some","Fields":["1ZS8QkRjbMNClztZS3B2hdyqDIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gvwXrAXHpenQpseJLCwEa1CV9t5WUks2/POALkeEpmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:59"]},"IP":{"Case":"Some","Fields":["147.182.140.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::20ad:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["krustykrab"]},"Identity":{"Case":"Some","Fields":["1Yq8hWRPAhY4AQMQw8SzURqKQUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZRrsei1E49+jLuZ8JQ+g5HChBk6XEVmfPU46AtjvBwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:54"]},"IP":{"Case":"Some","Fields":["162.251.116.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mamadu"]},"Identity":{"Case":"Some","Fields":["1XgFOewFjTWFDw5kWUuJUVdF4lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZELNZwoyY4WUT7v8keapnjazudn6dHD05pWjTRIFPlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:45"]},"IP":{"Case":"Some","Fields":["85.195.238.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:a003:0:216:3eff:fec7:70b3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sTORch"]},"Identity":{"Case":"Some","Fields":["1WqY04/Dx14DR+7z3ZwSdJr3x8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vuw0xXRKhJuZWb1n1Bv7+lfZa9nl4PZFEOPI/DAHxsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:01"]},"IP":{"Case":"Some","Fields":["217.182.196.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jmlsteele"]},"Identity":{"Case":"Some","Fields":["1WImSNcCwEsWloFRLU7EUSe/ujM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1PI6jjhnmov0IROSS1Vs0EBiqXoogXXa2r/c8xXcRVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["162.243.168.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["peppertor1"]},"Identity":{"Case":"Some","Fields":["1VJ+SGjur/iZG9BPa/joe1CKN8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4FIcxzDXGAEoUN9cqRMNgvH5JLwOEBGXJTmoQHK0Hc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:34"]},"IP":{"Case":"Some","Fields":["89.58.41.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:f7a:38fb:a3ff:fe58:61aa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1U25OhDORbMnzmz+ZxelWcy+9lA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEZCSqY6bNgHnOT41vDw1YrrPRjNhOcQV979asqf27w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:55"]},"IP":{"Case":"Some","Fields":["185.207.104.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProtokollaRelay"]},"Identity":{"Case":"Some","Fields":["1S6KL3O6N/L4j1QQHFZvIRCS4XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gmwdQdV+sThtE0g2+MZ3xTxcN140NhAw662/0Vg340Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:57:49"]},"IP":{"Case":"Some","Fields":["84.248.204.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waldmeister1"]},"Identity":{"Case":"Some","Fields":["1SoWAwPGONn7A0Y/imt5NNV4f0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r8TMUM9oi2p3HPZHdddDKCIMO3GPz3yP1bAFmcU213A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:41"]},"IP":{"Case":"Some","Fields":["145.239.7.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomRelay9998"]},"Identity":{"Case":"Some","Fields":["1SZ2Jn4FCjiRdp6XdzoeHoftPxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V1L8dFxGbXnQnA3LT1Xme5WUTPQ1/c+Ed0+78VDnWI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:19"]},"IP":{"Case":"Some","Fields":["95.217.183.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:8840::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmokeAspectRangers"]},"Identity":{"Case":"Some","Fields":["1SKPpaqf2zgl5vGZr6n55vlSahc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMsCSUe2MSBz/pOtO8pud9SmTKc+Gk1GqSyCNUmM7ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:01"]},"IP":{"Case":"Some","Fields":["82.221.128.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TochierRedux"]},"Identity":{"Case":"Some","Fields":["1R2doVhLqui8SgoQ4fsgYYqJVww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mQ3rNAWrzA1yPFwCBnc2NV7a5T1TADBIeqhHE1mYPss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:04"]},"IP":{"Case":"Some","Fields":["198.98.52.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["1RvU5ZMIsCxr5BUQOPQX1BnWLm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LWbxfer7uyTqCSSRN0gqVdM8TXY3tXMzhAxUEO9ZOU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:23"]},"IP":{"Case":"Some","Fields":["79.226.66.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:de:2744:b701:bde3:de9c:63e7:6ef3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer23"]},"Identity":{"Case":"Some","Fields":["1Rri+x1pmy2fsR8rBI5+A1yYS0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7eHq/E8WaqbOUqIueXJkVI/42+EXK/q2+kaGEJOPBes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:32"]},"IP":{"Case":"Some","Fields":["185.16.38.110"]},"OnionRouterPort":{"Case":"Some","Fields":[2120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["indoprivacy"]},"Identity":{"Case":"Some","Fields":["1RAVVNCU+sn4DwJv7ogWaobVBuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B1ltOmEznOggBLSQNet9Wtd9ctgtJkxIFJtKBSWD6HA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:56"]},"IP":{"Case":"Some","Fields":["103.167.34.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["insula"]},"Identity":{"Case":"Some","Fields":["1Q33aYLw0r/bKKdTB5zdY6GSwy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dj+Ki3DARwlq6MbFpOlty7fuRZAubUPK1e/0thzvkQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:05"]},"IP":{"Case":"Some","Fields":["178.79.134.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:92ff:fe96:d244]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NICKNAME"]},"Identity":{"Case":"Some","Fields":["1QX7lcM/jf3ZHgu7ch6+0il2LsQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ruaKMI75lhmcvTe1mH850hCRVMnlDOsT4QeKFSNQCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:04"]},"IP":{"Case":"Some","Fields":["144.91.98.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:5297::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ELPrelay"]},"Identity":{"Case":"Some","Fields":["1QHpXVIZcLR/3dFE8nTnlYl2pzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D6wUyGOcLq3PeFwtnOypvHoE2etqybVnPXo3nbsGw1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:53"]},"IP":{"Case":"Some","Fields":["78.43.27.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8070:c187:3d00:2e5a:4e48:fbbf:95fd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex80"]},"Identity":{"Case":"Some","Fields":["1OWFzg43qLNPDVNMo5a5cjixK/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSetKGwCssh3YbdRLt3HBv4m+HqNtHpJZ/ZWpI1leD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:45"]},"IP":{"Case":"Some","Fields":["199.249.230.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::169]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andrea"]},"Identity":{"Case":"Some","Fields":["1OUNJKNSE27RNJD5k2efpyU+TNo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6LHGIZdxkCJc5Ns2FTL4QM8yhpAFfWU6b7lv+dmBuFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:51"]},"IP":{"Case":"Some","Fields":["23.137.249.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:7666::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1176"]},"Identity":{"Case":"Some","Fields":["1N1B/jaIfhnJC1l/innGg90Do+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4e46QEdi6Ft/J6fLVUhcVPTaB9DWp7VatfYDrtkDv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:36"]},"IP":{"Case":"Some","Fields":["185.220.101.176"]},"OnionRouterPort":{"Case":"Some","Fields":[11176]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::176]:11176"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay34L"]},"Identity":{"Case":"Some","Fields":["1NxwslQJuOSw/UgrinDKaj9KEjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0OLkDJvW+0DdVqPgiS/KZ83caXmXp2/j10qorBmGufQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:33"]},"IP":{"Case":"Some","Fields":["5.253.176.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1NEHaAsIl9/+5QDmJamKqoBgx/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYlXZv/fN6vFfcK/o/CZpvhSz2uo8ythk917ck9szJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:54"]},"IP":{"Case":"Some","Fields":["168.235.67.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2604:180:2:1bc::b6a3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0155"]},"Identity":{"Case":"Some","Fields":["1M+yPWiAE1uL8gyCDlnDQCkVNDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["89peQ5tJ/TzAvl4aGLRyxMbVg/046hpooAO7thsWd2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["185.220.101.155"]},"OnionRouterPort":{"Case":"Some","Fields":[10015]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::155]:10155"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev8b"]},"Identity":{"Case":"Some","Fields":["1Mp/0E2r9uLLZ5Qm9aoyBbZA0Uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["77K5iOaPbRZNsxbXwnmGZ2VM4PSL0t+JU62rkYKqF9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:27"]},"IP":{"Case":"Some","Fields":["46.232.251.191"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:66e:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1MFnMudl61LrC3Sds13BTI4N+ZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pk4lCNZkhaG8xYGSfk/MzBPwH7h2/PEDpZLzSso88S8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:15:07"]},"IP":{"Case":"Some","Fields":["144.76.168.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:4423::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Layer13"]},"Identity":{"Case":"Some","Fields":["1Ju3UUx49oMD2HmvfD1dZxSPWZs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1LKoOmuxR4qWNMSxvUfbqWrnz2LHwlEJz8ikHoYeSwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:05"]},"IP":{"Case":"Some","Fields":["51.15.232.19"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:2340::1]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dnb4ever"]},"Identity":{"Case":"Some","Fields":["1JpUhi0fwA5c5UyzK/MXdGbAWHk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W2iF3c5tC68ZYtRCwme0tFyDoNx5303ger4/G4iQ36s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:39"]},"IP":{"Case":"Some","Fields":["87.122.119.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cepa1"]},"Identity":{"Case":"Some","Fields":["1Jkb8Uv31LtoTlarAqRKbKY5FgY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yF6XPB6Z35zoJvtkuAdUOxB2tn6dnMYCnSPVJtaqxME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:58"]},"IP":{"Case":"Some","Fields":["185.100.87.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:3c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1IOC3t9bzBu76g5b3XIiqkglJVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sVxwOGpbpX4AZ1t8bmkTe3QTuGrLoe04WkX0jiL5XJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:51"]},"IP":{"Case":"Some","Fields":["5.45.98.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:20:3467:a5ff:fe26:453e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eigentor"]},"Identity":{"Case":"Some","Fields":["1EfYGA1ftn0OOtCKwKEj75Q9hNQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["soiIOvjj2jg5g/ajv//2OuzUkHB3K666SC6DLkjjaW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:17"]},"IP":{"Case":"Some","Fields":["188.68.56.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f776:5862:30ff:fecf:d2c]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Osterei"]},"Identity":{"Case":"Some","Fields":["1Dn8O18KgXlvRiIyAZepADLK5Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywTfRrBAut8g+rZtWSg3UEbHsP5Z4c4DHWw5b/MdWS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:00"]},"IP":{"Case":"Some","Fields":["94.16.143.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FarmanDK"]},"Identity":{"Case":"Some","Fields":["1C0mUF82/nnM/c2y7tYgyqnUTEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xrxA6wOw0tNrx0uwzCMz3+Z268l7AnEiv/aJd1BJ7JM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:00"]},"IP":{"Case":"Some","Fields":["91.210.58.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:626::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["harsha"]},"Identity":{"Case":"Some","Fields":["1CNs8mBSKtvcs9uVX4+WXDKBizU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2qZH4NpcmGpEnW8rmx2t4PcZolBj4FQ9EuUUJV2xCH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:00"]},"IP":{"Case":"Some","Fields":["5.255.102.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:2667::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1B8JJDa1yKoQvXGEr2TC+Yt7Avg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eaV3Fv1amgsjxSSWWgo1JODWuL/6sGzSv6DNvfXkVZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:06"]},"IP":{"Case":"Some","Fields":["109.250.22.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreadfair"]},"Identity":{"Case":"Some","Fields":["1B0XISOWVrvH1EFzUhbAHaI3l3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tReGH7vF5HmpeRH58VlKiFzJwsvSrVTIGozD46OXFTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:27"]},"IP":{"Case":"Some","Fields":["46.166.161.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1Bnan3dvmyR7E9bCzEv2Y6+spIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/VrfL0d7/6YME0aIKkuave8H03/MCmnmby9gQFj63k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:26"]},"IP":{"Case":"Some","Fields":["46.252.112.87"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[29030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI20"]},"Identity":{"Case":"Some","Fields":["1Bb3yNg8rZE/PgkyABQXDVT+aqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MHoONGUvW6rhOM/baOeV0hxVPsObWGlRIMffnRR4jAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:07"]},"IP":{"Case":"Some","Fields":["171.25.193.79"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::80]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1BBTdpo4v63m0G9LurmIxrNN/Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enY98zaSKE2XWFxoP63byqtrdJhxiG3iQVZkn8uoC2E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:53"]},"IP":{"Case":"Some","Fields":["185.206.225.59"]},"OnionRouterPort":{"Case":"Some","Fields":[15804]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gGDHjdcC6zAlM8k08lY"]},"Identity":{"Case":"Some","Fields":["1AX8zwat7fiY3y8pyTSNy2IwMbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gqzul03bJnrnUQnQcLK34cnJ1cpFje4Pm26umn6RA8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:29"]},"IP":{"Case":"Some","Fields":["5.45.111.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:2388:df98:15f9:b34d:443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["0/ZhYDREje7jaXgslvhP4UB+QgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CHZeFJcVR0flR3IpkGof7561hpHkW6caRh9A0aUyIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:21"]},"IP":{"Case":"Some","Fields":["107.189.29.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f24b::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transtbb"]},"Identity":{"Case":"Some","Fields":["0+n4Z93yjeGR6mEf02A1PIOE+Ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I3372+94ngBvs5lR79yPCKhBnYfp1c3GzrfnaJkK3U0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:02"]},"IP":{"Case":"Some","Fields":["84.155.144.3"]},"OnionRouterPort":{"Case":"Some","Fields":[14074]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["09eqH62r0fxE6hr2FqLszkEnUcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J4m1DNoVqVsb8TdjLmOgZFA33CzRYiJGwY9Dewm4r4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:39"]},"IP":{"Case":"Some","Fields":["173.255.140.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pissnissemoldova"]},"Identity":{"Case":"Some","Fields":["09LkLY5iXTZIkBWrHoCBzlIN8v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Um8LqbpYAqCSULsuKjIgLPED9ckQ7sBM+9tzncOE9u4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:56:08"]},"IP":{"Case":"Some","Fields":["91.208.162.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5100::139]:8081"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["str3DEicebeer63"]},"Identity":{"Case":"Some","Fields":["08pLEbTKHaDv/8milDQi0NeGayk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["63FFEq6a13og8Ba5mQSoE2aXtOCauYKPVtXumyDcYd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:48"]},"IP":{"Case":"Some","Fields":["85.214.199.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8063]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:436f:5800:c550:adf7:932:c52]:8063"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelaySecurity"]},"Identity":{"Case":"Some","Fields":["065B0y3jiR45OBMz7TcVyrlKLA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLYQkwSK/e1pjjvw3awgihB8MPtARTPxdzgwkmvxN+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:37"]},"IP":{"Case":"Some","Fields":["192.53.167.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe98:5600]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRelay"]},"Identity":{"Case":"Some","Fields":["06jtNFxhupalOC8mp5HKls+WjKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zv4zXkZ6GTtV5hTCcyLrJvuR8hPGjootuc5J3r+Wu1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:20"]},"IP":{"Case":"Some","Fields":["92.255.85.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex92"]},"Identity":{"Case":"Some","Fields":["06G33vNwy8YFXz/FQKUYyFdtdXA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2tsIwn47y/vt7kgHOmBmskVonGUzohj5/T2SJNnb1xE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:59"]},"IP":{"Case":"Some","Fields":["199.249.230.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::181]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3zpzl3mnsqzy"]},"Identity":{"Case":"Some","Fields":["059m3kkQ064cNBXkUBIZ07meGE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YaXXNIwmJGn/WQUMid6gOrKrn3jPns2aIGZWe0hdLvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:20"]},"IP":{"Case":"Some","Fields":["45.56.90.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FuckGoogle"]},"Identity":{"Case":"Some","Fields":["058s2Qojb5SmG3Zha0hzMp2neIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OSvhBmP1Q+AB+zgCRCRW2ympvOnMn57Pco/ENTJj5Qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:08"]},"IP":{"Case":"Some","Fields":["87.118.112.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:214:3235:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["044i+kPKD2ESCyFHi7Do94sOPug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X291I2ido8rGYkJ0lDanKtDkBkFA+rsP4jlTJdSn/DY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:59"]},"IP":{"Case":"Some","Fields":["23.128.248.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::98be:c7ff:fe83:9a08]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mule"]},"Identity":{"Case":"Some","Fields":["043f1ueaDiT7HPMyrhR7Wn3JqhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TS6F8jqrJ+TPy3XycW1qTWT5iRkxRhO7noNgUejjiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:56"]},"IP":{"Case":"Some","Fields":["103.253.41.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beachyone"]},"Identity":{"Case":"Some","Fields":["04UKulL8HEdWHo73KmBI5fEjSHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c0L63hZ/IL7KgvzoJbAxWbBbqMrf7YERtJhSuGAD7VI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:33"]},"IP":{"Case":"Some","Fields":["146.185.253.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["03+X3/pVthxmFUhRoq4kbjKxsZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggbeA9H1doGSL3VQI3orLpQ/ik25kWtZLdqAddgDsB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:00"]},"IP":{"Case":"Some","Fields":["91.223.3.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit4"]},"Identity":{"Case":"Some","Fields":["0315qTGW3jPiOLA3ltA/5qWHrmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZjDiHwv0e5PQSyTXsxrl6zSw7EFIZ8pXIdK5lCazQ5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:06"]},"IP":{"Case":"Some","Fields":["185.194.217.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2094:3600::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgarath4TOR1"]},"Identity":{"Case":"Some","Fields":["03FTCfiYJ/StLdHrcWZ12gLdd4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5tWYKz4TZNDvOD2Pe0mdJEPxl7AwqeWbekY14zFkceo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:46"]},"IP":{"Case":"Some","Fields":["213.65.114.38"]},"OnionRouterPort":{"Case":"Some","Fields":[65187]},"DirectoryPort":{"Case":"Some","Fields":[44444]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["08eRPfaL2Relay2"]},"Identity":{"Case":"Some","Fields":["027/skSBaU44R4f6q4D1aqpczZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wgaN35jxCMe+mRko3xG8qPO6jUK7C5Heq7DKtUR5rCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:08"]},"IP":{"Case":"Some","Fields":["185.170.112.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ae5:8441:4dff:fe92:25ca]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n0x0r"]},"Identity":{"Case":"Some","Fields":["02pypz+B7eUegffLrRxEC340vdU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKsPGXZ7dCx4wGQoSWKh40BNznjLcl94WB+NKzTQj9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:10"]},"IP":{"Case":"Some","Fields":["107.189.10.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f5c6::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["makarov"]},"Identity":{"Case":"Some","Fields":["01ktOubNbFAEXVQp1O/wq4o5GjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2vA0B0Ym/A/zEjMfJ2lZYspA97hx0h5i2Vum5+AcoQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:17"]},"IP":{"Case":"Some","Fields":["82.65.45.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveKhafre"]},"Identity":{"Case":"Some","Fields":["01aCq24p2RqgMOA6m+tCcA2Woe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r6/1ROwHwdUc2JxiRmk3Ja33LQvEmRzQ9uM4/rp40Vs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:16"]},"IP":{"Case":"Some","Fields":["65.49.20.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boots"]},"Identity":{"Case":"Some","Fields":["01BDmsDCSxmqwACnOXY7q5qJu/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1juqB5T1o+y9RnfardaN3Rm5lbJnFVGjpIzLLMPB/D8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:47"]},"IP":{"Case":"Some","Fields":["152.67.84.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:3:16fe:d191:b6c:c1ce:4baa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLicebeer10b"]},"Identity":{"Case":"Some","Fields":["00vicbhGMNXgjQQHQZzevSyTERg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["knLvfpFwoaWGBGIWo7JOqS6juQlNIddSwJYCADTv8Jw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:42"]},"IP":{"Case":"Some","Fields":["95.214.54.94"]},"OnionRouterPort":{"Case":"Some","Fields":[8138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN2"]},"Identity":{"Case":"Some","Fields":["0zKS/t4k3UDyOFKD5VyH+FwJQ7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vVRdtdR1xz7lMR7ZO/Lc8WXGG28DrrECLsSBWcA1X1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:27"]},"IP":{"Case":"Some","Fields":["199.249.230.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::121]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["satedaprime"]},"Identity":{"Case":"Some","Fields":["0xr+CYlvNKTnh8hvqXEyZRbfb1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["prc5Goo0+c7eeGSdAz7uM7MQXBi+9ULv58SEr9/pwlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:56"]},"IP":{"Case":"Some","Fields":["121.122.107.7"]},"OnionRouterPort":{"Case":"Some","Fields":[25783]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORus"]},"Identity":{"Case":"Some","Fields":["0xpZqkVBYpWFkOK7wmiACJdDvTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JG6ZFK/A6QeFTgMisb+mwt1UIhm4CsbBC7Ddsx/598I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:12"]},"IP":{"Case":"Some","Fields":["204.13.154.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["0xASQS2dc8aYAxicRXBwJbyOMV4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTutziuUPdVPruStTgBD1h2UIlfI3eHC9xl449SZgks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:05:21"]},"IP":{"Case":"Some","Fields":["74.208.37.237"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:31::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mine"]},"Identity":{"Case":"Some","Fields":["0w6dTWOQaGEdbZaGHJXCCZFAuAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O0IG+NKUze6aXptnzv4BMa/sqItCjdQ//G9liUdY6Tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:42"]},"IP":{"Case":"Some","Fields":["46.38.237.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:e5::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cairnes"]},"Identity":{"Case":"Some","Fields":["0vTaxZGLsIKlz6xSdbKfrJs5mys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rlu3f83rct/Cy2FHkUYW3bM98liVENnt97F3HTffveg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:41"]},"IP":{"Case":"Some","Fields":["95.211.210.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber18"]},"Identity":{"Case":"Some","Fields":["0vFedJVFl+QeFVRJoM6bTbiS3/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKbfLLssrkEqsoj2nAsSsKfm2u64XLEPlQ2BMh2lTbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:51"]},"IP":{"Case":"Some","Fields":["185.220.101.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::9]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0d210s"]},"Identity":{"Case":"Some","Fields":["0rhF1Q7VtJqLi0JatTDDjZUuXDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Bg8tD+yHWiY9gG2R7K0SBlLUaNiIv3aVaHFWKB3Br0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:05"]},"IP":{"Case":"Some","Fields":["13.48.138.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:d016:15:6600:2d1d:4e4:d058:deb1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Germany"]},"Identity":{"Case":"Some","Fields":["0rahbUTei1+xc5UHtaS6+KCgLiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxucMoUtC5nR5Dtwv5hrzhKxSEWxdzN2KaSbteGdcE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:52"]},"IP":{"Case":"Some","Fields":["78.46.39.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["0q3Wi6n3NQMYk8uKWFSDdegxtFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XH9NJI6d/ESaarOcoYzjUYzZcmT1hBMIz7Y6qMb5ah0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:05"]},"IP":{"Case":"Some","Fields":["91.194.84.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:1ce::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwell2"]},"Identity":{"Case":"Some","Fields":["0qS+5nVKlxHrD6xH8wWb5vwNcsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nVbxRi8Pu2fhACAFFWmWpyAD8/bLUs8DI2I2rlqfQ44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:24"]},"IP":{"Case":"Some","Fields":["93.95.230.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange020ca2"]},"Identity":{"Case":"Some","Fields":["0psx/bXt0tG5TNMcLxO1z0EbEmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3JG+hdwvwNvJB6+gwtgOn0lLf7OUdVrUFNVrUUGvdX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:17"]},"IP":{"Case":"Some","Fields":["162.250.191.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaders1"]},"Identity":{"Case":"Some","Fields":["0pOUbNNmRrzmQx7I38JXfrckRNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u5AjgRdjDJseh27KtCezvCRo47l0PKJO4Z9/ASmXIvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:50"]},"IP":{"Case":"Some","Fields":["45.58.152.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynR02"]},"Identity":{"Case":"Some","Fields":["0oHMtL71I5Hc1+kOc7MuMkBDqUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HyZPI+McT6PsxkiSsJ7+bh/uK8k0StLRssaWMnhO1QQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:31"]},"IP":{"Case":"Some","Fields":["89.58.27.85"]},"OnionRouterPort":{"Case":"Some","Fields":[44202]},"DirectoryPort":{"Case":"Some","Fields":[4037]},"Address":{"Case":"Some","Fields":["[2a03:4000:62:ec7:d42a:41ff:feac:7169]:44202"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MollyLee"]},"Identity":{"Case":"Some","Fields":["0n4AYYMQMs39goT+7np1sIQ3ro4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+Rv+BHSXUME3Q2HFx8xfehBWN8ocTwotbkNxnwJ8M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:16"]},"IP":{"Case":"Some","Fields":["43.251.159.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roubaix"]},"Identity":{"Case":"Some","Fields":["0n126CfpKZesa8s+h/9uYewHCZQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0/XlKdeCLgFj3+v8arQLTec0SgGrjMwnq78TqbBomD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:53"]},"IP":{"Case":"Some","Fields":["5.196.73.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:7b8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zlasvegas"]},"Identity":{"Case":"Some","Fields":["0n1IQcE7h6FA8JJG1TIemcaCS7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DM4gFNkS4VhrYr2borUgE9iRkc54exbinDLVbZYkAxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:27"]},"IP":{"Case":"Some","Fields":["209.141.41.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ymybe"]},"Identity":{"Case":"Some","Fields":["0l1BnBZ/PMjU0FzSp+KUW7KHk0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ZM12WrAYnEbERXscIZBDfO2HeOmJXAcTwUimY8o8xk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:49"]},"IP":{"Case":"Some","Fields":["94.139.8.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2454:4c1:4e00:3062:c7ff:feff:6e79]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anaxandridas"]},"Identity":{"Case":"Some","Fields":["0lYQv+MLDNfCJm6t1+9YYS8KHqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3O4CetNUFem9AAFQPqWJgv9n4yUzAw7CeUiV1MFe33w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:45:44"]},"IP":{"Case":"Some","Fields":["185.138.41.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow004"]},"Identity":{"Case":"Some","Fields":["0lUmi6y7RWJVTPIBR3Mb2g2MRSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["roB9L73Bv8riU+Wo/xZeFTQwiKEoMn3OolMDbOUCA50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:56"]},"IP":{"Case":"Some","Fields":["185.195.71.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexPhoulRules"]},"Identity":{"Case":"Some","Fields":["0lIQzgfEnypPK8elBusPXqf14sI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jpKNuZBSgQBlsVQBD+PcJigIabr8KaAueP/K0KPMHw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:30"]},"IP":{"Case":"Some","Fields":["199.249.230.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::112]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kukuruz"]},"Identity":{"Case":"Some","Fields":["0k0MKKtIdoz4t53XYtYdtP0BVnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDA3G7Z0qwE9jhZ+ftjIDUenvLsEj7B8rXK1qZ1FtSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:59"]},"IP":{"Case":"Some","Fields":["109.70.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IndigoMagick"]},"Identity":{"Case":"Some","Fields":["0jgHRZN6mU/h4ZhZy+vxgdu4BEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AWyDnaL/sjGQXL4H8byAiep5oWe7etdHEZ0kQTQXRXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:35"]},"IP":{"Case":"Some","Fields":["185.25.51.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::fb6f:72f2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gianni"]},"Identity":{"Case":"Some","Fields":["0i+T4mdfF7/20jL0ebWeeI/q+QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtuigNHOCpNipnZ0ilSPbe0yt/99KZj/WuOxuSA1X6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:47"]},"IP":{"Case":"Some","Fields":["23.88.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:49c0::1]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynethex"]},"Identity":{"Case":"Some","Fields":["0iOlwR3FWs/qZZpX8EafJjSIwzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbgBGnZgYLf8Hu4zVR6SyC182+Agx/rsf8mPgt4MzvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:35"]},"IP":{"Case":"Some","Fields":["45.156.25.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1132"]},"Identity":{"Case":"Some","Fields":["0htjggmasOLXRzD5Csu0lQSPpKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0vKxw+eKcC1td3vGA199kT0XyQfkgEB00aX00VZc2/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:24"]},"IP":{"Case":"Some","Fields":["185.220.101.132"]},"OnionRouterPort":{"Case":"Some","Fields":[11132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::132]:11132"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["0hhWHaWfCTq5SiJiDgY+zoc4FXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/uqAsF8nRX/26azEJ5+4gV9unuxKnGZPT+A3fNX3Rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:51"]},"IP":{"Case":"Some","Fields":["185.220.101.192"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::192]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashBear"]},"Identity":{"Case":"Some","Fields":["0haeZBssEMrOombTE3BHkgC7mtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eX46O1owFZ+G9/ybBpSB+uzZs2hzYvMErvHm+/8vTU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:05"]},"IP":{"Case":"Some","Fields":["185.22.174.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:115::8a3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StopFossilFuels"]},"Identity":{"Case":"Some","Fields":["0hC/CRYgYsBekx9xuuzZPdkQLxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6E47bqmr8XsifYj4m8bJeWhIs52fDvSZXfCYBDyJtgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:08"]},"IP":{"Case":"Some","Fields":["192.99.69.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["0gd15f7g2bsVVV8xrXDaTH1W1lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L64zsBbLZmqIxFNLJ2K1IMIyfZP4TRWSV/kkZBgRcI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:30"]},"IP":{"Case":"Some","Fields":["23.128.248.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::84]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moon3000"]},"Identity":{"Case":"Some","Fields":["0gbuIqoar5iQ9qBLKB53Tvkf5rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npllppoQaPcXYQNI24lgmh0H+mJaQeKuN42wjBGJMss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:06"]},"IP":{"Case":"Some","Fields":["31.42.177.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Amnesia"]},"Identity":{"Case":"Some","Fields":["0fe+w0pmSY/FZbwFdjImkV4xfyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hrispJHu5JLSPEyZNbbgoO6AN+EOOLKRdfon8vzzX5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:41"]},"IP":{"Case":"Some","Fields":["202.61.238.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor5"]},"Identity":{"Case":"Some","Fields":["0fLFyCCz+WvmFEy/uE/d+dDsCBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NnG6s5OAIFV8RCipRBws2IyzrWcnSQ9jOd6dBnEc8Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:26"]},"IP":{"Case":"Some","Fields":["51.15.81.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:2713::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kriefukegtai"]},"Identity":{"Case":"Some","Fields":["0fH1qlvPXatExETe+CghuL7GYUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVFXB9qAhIvHdeXSWHfhtIHZ8MUoUhgV4doMwWfdd38"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:28"]},"IP":{"Case":"Some","Fields":["181.119.30.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber04"]},"Identity":{"Case":"Some","Fields":["0eXEBtFEKb02usxu7mTmuMWDPns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3p72oYp9JNdq1CPvT60OwHurDX90vMZ62qofXPZ54jc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:10"]},"IP":{"Case":"Some","Fields":["185.220.101.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AmorousLibrarian"]},"Identity":{"Case":"Some","Fields":["0d8K5E5p4GFKdzBbOhLRocdxXAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cWCM5f56sMFBPVm3l+NfLeViVhGCH10lvjw75Fjgc98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:38"]},"IP":{"Case":"Some","Fields":["185.225.17.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8446]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c800:1:5::d7]:8446"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1141"]},"Identity":{"Case":"Some","Fields":["0dXWpa8blPT7M3EDSxH/cstAqD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kyEgUKxo2iNV6KZoaSeT9Je3CllUVFgYaS86swQiltw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:40"]},"IP":{"Case":"Some","Fields":["185.220.101.141"]},"OnionRouterPort":{"Case":"Some","Fields":[11141]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::141]:11141"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lint"]},"Identity":{"Case":"Some","Fields":["0czAqOyg2tgK5S/rO0LSixAYxvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3TGJIdkiCYF5OBC/QG/Pc7DGdDDMu5U7FMwgK8jJ3fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:46"]},"IP":{"Case":"Some","Fields":["84.211.247.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AFlat"]},"Identity":{"Case":"Some","Fields":["0crjGnCIfYpeTSKye4/6BCEb/mw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7/eJ6yleU7BRYiULHLjSTGMOYp43qEVckesghmjFY+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:19"]},"IP":{"Case":"Some","Fields":["51.81.254.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["juggernautrelay"]},"Identity":{"Case":"Some","Fields":["0cYPm88tugendZePZsmSfTqUkLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0TyyFiy0InrTW/H6K2nlfLfbncMWWXdNWJMdNfp1dDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:21"]},"IP":{"Case":"Some","Fields":["46.232.250.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:673:24da:28ff:feb5:e5c5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapAMS"]},"Identity":{"Case":"Some","Fields":["0cUJwMuTqLJoK46YqplIawM5riQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UxgMdVwRnprXVMK5Mep40fGKSy3KLME53oysjP9pZZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:03"]},"IP":{"Case":"Some","Fields":["188.166.34.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1300:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0178"]},"Identity":{"Case":"Some","Fields":["0cRfqtdm6BDtokATNcyOvejqhSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ocO1jtJFO9KjpjpMbMQueh49YzG4G4km5CLu4K3P6o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:27"]},"IP":{"Case":"Some","Fields":["185.220.101.178"]},"OnionRouterPort":{"Case":"Some","Fields":[10178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::178]:10178"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["0bhT7Sfk39yjpU0/LiacTZRnf2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4VlpZ3/b2Qy8ZbE+nZ8x0xn3eYZlcuVNebFUhE/CD0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:00"]},"IP":{"Case":"Some","Fields":["37.187.96.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:20b7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thekillingground"]},"Identity":{"Case":"Some","Fields":["0bMAtO2AQSu5zvq0Mj2pJnGwaBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Io4Jkkji9TiMASGmDw5qG35wURseD5h2wSRnsEeSM3E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:09"]},"IP":{"Case":"Some","Fields":["85.239.34.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nullptr9c01c676"]},"Identity":{"Case":"Some","Fields":["0a43V8iDSLpa2nZ5/MjizdHHW6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uiL+v0sPs7HTCgBYc6PJzYL3Sd7XRFhXKTGcNWB7rSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:39"]},"IP":{"Case":"Some","Fields":["141.95.55.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhatToPutHere"]},"Identity":{"Case":"Some","Fields":["0aC3liQmLs8QVfdmJN8DzMsWFWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["voV/XeH5AZyMNKW6WweYFg/52pdesSOslbrPcJKuqQE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:17"]},"IP":{"Case":"Some","Fields":["149.172.206.99"]},"OnionRouterPort":{"Case":"Some","Fields":[4444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8071:4486:9100::c4b7]:4444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["east"]},"Identity":{"Case":"Some","Fields":["0WyX6QPJHuCGj/R0oHFpzOS/kJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m2eD3WhS07yPREuaJIvdYa86XOhGKOOfh7O5weqTlsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:53"]},"IP":{"Case":"Some","Fields":["152.70.96.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ieYood1yaish"]},"Identity":{"Case":"Some","Fields":["0WszWnHpEHBl5kGazF3jHOxOMy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nwt5WoadG+jfIABgk/aEb0mc40Ix31f9AoJ6mvZlQ+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:45"]},"IP":{"Case":"Some","Fields":["107.189.13.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nxaat"]},"Identity":{"Case":"Some","Fields":["0WFiMRgiURRk6cbOL8YuSKBUiyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["asBMEJjiyNEfdpSXGRTgkXLkymrjLNc8N+uHPJA6jtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:10"]},"IP":{"Case":"Some","Fields":["138.201.92.183"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:3e7e::70a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RUBY"]},"Identity":{"Case":"Some","Fields":["0VPzQNlC+/BHT1xEAArtiu1YjJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yxTdoMWlQuge9Kjn5sqV+T0afDUCrVmn/LRIpYFMVZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:04"]},"IP":{"Case":"Some","Fields":["5.189.223.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:56::ec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nosplash3"]},"Identity":{"Case":"Some","Fields":["0Un9puPaPg+qyzaWkujWXV3ng/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lmMbJzQRyfvFlNB5/KgFJpsuZkCPwRRfzXmxIqzv3sk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:02"]},"IP":{"Case":"Some","Fields":["51.186.203.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluecrab"]},"Identity":{"Case":"Some","Fields":["0UL0f43FWZU/ZhmfH+fHxLoa5u4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhnlidPJQk0IAhcv7EhxQsT/1XhK5CX6KmOEeHdlISg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:38"]},"IP":{"Case":"Some","Fields":["74.123.97.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip7b"]},"Identity":{"Case":"Some","Fields":["0TaS2XI2wLjo4Z6i3ZUrXE+QELs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oq8SpvbANV28TpNWaBiGhIFpgxDrOY9XIY0vJUTX/fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:45"]},"IP":{"Case":"Some","Fields":["185.220.102.254"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::254]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AugustTORRelay"]},"Identity":{"Case":"Some","Fields":["0TC3qTIpBtOXyctBvCFFDT1ksyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQMEYtNcFRWCGjl7iUuv5KFKuBiVgsgFohY4Jsn7gv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:19"]},"IP":{"Case":"Some","Fields":["38.103.195.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:550:9601::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dmsdrelay"]},"Identity":{"Case":"Some","Fields":["0S1x3NnahITc0mfRhogjq4E7cjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jz+0mJYcxBzNO7mPAPiwTZJyDkUu2gktbA90GqzkPlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:49"]},"IP":{"Case":"Some","Fields":["5.196.70.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:3e2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bmwanon3"]},"Identity":{"Case":"Some","Fields":["0SPA+PVigEaTxH1oxheGAjspXpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwoV4qZUzNnaxctSDPpNVCmqjUBV/dsWbH1JWM2+C4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:12"]},"IP":{"Case":"Some","Fields":["176.9.1.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:31c2:5054:ff:fe00:ea09]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idol5"]},"Identity":{"Case":"Some","Fields":["0SKYufL6jfs5lY8oK/vOyfLLA4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VGGeilcMKHOX8bywqLgRZF17RLHffD/XIaf5YX+rsa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:30"]},"IP":{"Case":"Some","Fields":["85.239.40.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5cc0:1:1::8512:4a91]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gazelle"]},"Identity":{"Case":"Some","Fields":["0Ro8ETu9bMeonMarb9d4P3dJy2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVhPqvw66COkbswPO063UdaQuqZJPaAkpKnHgnLVlos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:16"]},"IP":{"Case":"Some","Fields":["135.148.171.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torSiliconhomeDe"]},"Identity":{"Case":"Some","Fields":["0RcasVdOxKGG9mE2TW/w11WDVvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enE2J2sDaSZd/3jj8sPIuZ6yrWWuSo8QITUYyLAfqPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:25"]},"IP":{"Case":"Some","Fields":["185.107.195.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:bbc0:310b:2::102]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["0RZlN18zM1biGg/itqr3uRuZFto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixu1aJkNrKhNqJd7DvN6KodOV2dTuHNyOoefMM9/4l0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:18"]},"IP":{"Case":"Some","Fields":["5.45.99.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:683:3805:33ff:fe78:a676]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kienjoch"]},"Identity":{"Case":"Some","Fields":["0RIXtEhz/XyHnlQYRLTCC5p+XPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AJyqlRck/KZI0rxzMZsz0veCy6h7/FzR57Mivv21mRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:15"]},"IP":{"Case":"Some","Fields":["85.214.97.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4203:7c00:2dcd:efd9:ce81:dd6f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moses"]},"Identity":{"Case":"Some","Fields":["0OGWKyRgulTYHhQmMA0Jcg5tQ+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGXPSMPPS4P3ibutnnJn4eJ9hic/07JQh2hRSRty30M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:50"]},"IP":{"Case":"Some","Fields":["69.164.211.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:34:ffff:ffff:ffff:ffff]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hotthing"]},"Identity":{"Case":"Some","Fields":["0Nmcyja0BvgTy35coXzuWPveiMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvDg5/i1ucIp7YdxodUjKfThkvPnTXmsoQA0V3oLIcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:33"]},"IP":{"Case":"Some","Fields":["185.244.150.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OROGOM"]},"Identity":{"Case":"Some","Fields":["0Nk9XotGvXK2hhe0AuLbwW+KoEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ot3xevk/T9RWqUS+5f2svAAu8KvMILJjUxhWW4GX17o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["50.7.8.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:49f0:2920::d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loewe"]},"Identity":{"Case":"Some","Fields":["0Mx+CqeSHeQ2TaUMuQqDyzK5PGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["//NUflE5cnawZZ+Ty/jz5c01U3R7TaJtPjAk5K8SYik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:19"]},"IP":{"Case":"Some","Fields":["109.70.100.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xiellettalio"]},"Identity":{"Case":"Some","Fields":["0MXoCHQ2yZrmKTJnY0BdIsLlqwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uw/jYhK2elkEcc4R+pfMpGojUQr7cZ/qjscTJoZGbJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:34"]},"IP":{"Case":"Some","Fields":["87.92.149.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation58"]},"Identity":{"Case":"Some","Fields":["0L9qZAAIHaYDFTbs6tWfeb2r62U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SV8Th/u/CsG+BOR+irNUxEESvsTJo25F6jh1Kl1dVM4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:47"]},"IP":{"Case":"Some","Fields":["51.89.143.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortefidelious"]},"Identity":{"Case":"Some","Fields":["0LbjfVyjZo+D2lGEV2zcXIiHQy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SORzhlccTx25tXq/wm5l3mU1eoRFfwJu4wlGvQwf5/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:28"]},"IP":{"Case":"Some","Fields":["51.195.29.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elites1"]},"Identity":{"Case":"Some","Fields":["0LOYQM9Xk5YGuarCc9CQcIQnNtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3gNjyGKmsz8HZNgrLxak0r/Vu8vLseqb2saQ3gqXMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:46"]},"IP":{"Case":"Some","Fields":["45.58.154.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thelastvampire"]},"Identity":{"Case":"Some","Fields":["0IxpRIWgAxaS+v6MMgX7u9vNlAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qzsx7jySSmju5/5oC1j9BU1zEAOqqotQ4VbkxKt1p0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:18"]},"IP":{"Case":"Some","Fields":["103.109.100.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spruce"]},"Identity":{"Case":"Some","Fields":["0IhqSvFAEj5HbXgE71HKdLrhzl8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLdFWIMmB1ladO5Sx/2DHiEjNp1Rp8hQcELktjQuXJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:43"]},"IP":{"Case":"Some","Fields":["209.58.145.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SNTor"]},"Identity":{"Case":"Some","Fields":["0IZgttcLYkmlfYm7eo8uoslSvTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sC8vtIl165iwNtLMtAZ2i0tyDSKgAfatqon1L7Xljvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:00"]},"IP":{"Case":"Some","Fields":["130.89.149.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2564:a120::57]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Transyl"]},"Identity":{"Case":"Some","Fields":["0H538GZafF+RGLNdypiMNGsoBIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jc+daU8yNnM39GdRLzcX4BKuYmzeTwXzeEYlEcUQ0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:25"]},"IP":{"Case":"Some","Fields":["185.246.188.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["0Ht7kYURmYXeu7L04Z9qGep0bO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mvKZDyqtE6ytBDLByhWlsPHquBZk2y1JnswrSpOXW+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:52"]},"IP":{"Case":"Some","Fields":["212.227.73.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:46c::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrkRelayForWaaaGh"]},"Identity":{"Case":"Some","Fields":["0Hbq1ISG8Fst8jSwhu5f6Ax+4jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bpJzNLIrMBaYcx2Kfe1uq2I6d/ctkwBLUo1nIg8v7Dg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:28"]},"IP":{"Case":"Some","Fields":["51.83.43.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Skyhold"]},"Identity":{"Case":"Some","Fields":["0HZWF2n1yT1ih3fj4F1GM9eD644"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bMZmGDaPuhI5ROdZFNdpm84TnyguuB93hSN2vrv2n4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:42"]},"IP":{"Case":"Some","Fields":["93.41.149.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b07:5d29:9575:2421:ca22:4b2:a431]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ajourmag"]},"Identity":{"Case":"Some","Fields":["0F9By3igAxHY7Eq7TpUVgugpjQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CBtgKDvlyW90n37k0QISUHHaDja9RQZZ/eqM68qDc+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:49:11"]},"IP":{"Case":"Some","Fields":["94.130.181.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:4162::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mitropoulos"]},"Identity":{"Case":"Some","Fields":["0FYrt0pcyIctEbIiZ3AJqJIvw4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cty8DxaWh46n+5m5tTv9qCoPZ3gHV4naorS82cqqcRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:44:11"]},"IP":{"Case":"Some","Fields":["212.83.61.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plaincrown"]},"Identity":{"Case":"Some","Fields":["0E6vRHjyZencDHtJcmuQ9YkUKG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NGS3BBXLmCkUPquDDXhpPQ+/0uWLATFd3gHBuC0es1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:44"]},"IP":{"Case":"Some","Fields":["87.120.8.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c18aa1b60d3c06"]},"Identity":{"Case":"Some","Fields":["0DQbSWiX+WCEVwtJM9UZyyWzXHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWK+xidZv6O7CNf8VlIC1aaxE254vZbS09UJzDFBDtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:40"]},"IP":{"Case":"Some","Fields":["95.217.164.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:73f2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de3"]},"Identity":{"Case":"Some","Fields":["0CetTmpXdVvICt0b9si8f1HoorA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pi/TqkeZMtL+UAkriw8fAJZpG4HoysbnJML6r8vEGls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:55"]},"IP":{"Case":"Some","Fields":["195.90.201.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kimchi"]},"Identity":{"Case":"Some","Fields":["0Cc8hWbMmuzkx2I3bJsGb+Dx2t0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F2MjEtlkSQvII5XOHxYfFFTQogXg4QxK1qlUbeAFqA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:50"]},"IP":{"Case":"Some","Fields":["54.36.120.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PGtorExit1"]},"Identity":{"Case":"Some","Fields":["0BuR1CRld34STVHCKbD5xXr5DwQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Enfk0DpVIGtNdrwg6lMoyBxlFAdXxca+RdR9T84FfAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:47"]},"IP":{"Case":"Some","Fields":["209.141.34.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["someTorRelay0"]},"Identity":{"Case":"Some","Fields":["0A/NHyUMcfc5+JGFtcQxMLPNjCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FgDbCZUDArlY1W747TWUvN0MIqbGyvw4X7J4762j6fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:54"]},"IP":{"Case":"Some","Fields":["185.65.134.167"]},"OnionRouterPort":{"Case":"Some","Fields":[55868]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aStupidTestBitch"]},"Identity":{"Case":"Some","Fields":["0AeVMw13x1NExU+4gAUx+rPED74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoO0OB2WDvL7nsxI9KsKwCX4+xQOSRuzrRWHTKrYyvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:46"]},"IP":{"Case":"Some","Fields":["104.244.77.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f503::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["z+91VJQpOwyWJLWaFJ4YcEpHVVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XQFa/Ayq9DVH7GBfPK7l1UbFl/LUU5moDQnRg0p2Yp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:06"]},"IP":{"Case":"Some","Fields":["185.232.117.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:5700:b9e8::75f7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pineapple"]},"Identity":{"Case":"Some","Fields":["z+oghaP90Ao495vt+bHp+POdRYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OKAAYRC99jA145jdtsT/0Xo9SYTgwmE8Quowqb2yUok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:32"]},"IP":{"Case":"Some","Fields":["124.50.144.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoldenPOP"]},"Identity":{"Case":"Some","Fields":["z+HLI5QC/kGsClejeBRHQYkHhd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HCxsBCKeFdtffQns6A2FbYW7JLPVBrgwO+9IFxG4eSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:46"]},"IP":{"Case":"Some","Fields":["94.140.112.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UlhasTor"]},"Identity":{"Case":"Some","Fields":["z9+Z7hkj2HAyn42uVDmP1FQJ8B8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GMklWNleh1csSmiqr6tO/8pFtW/gmyms0BwcAh7Q0sM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:27"]},"IP":{"Case":"Some","Fields":["212.32.240.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNETMONAU"]},"Identity":{"Case":"Some","Fields":["z9N2SdP8Qotbu0XErjK1svtcT6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0BxbYZkS4zp6FbjnNCLKSjGfRbceNkAdSZfZuE2cEHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:05"]},"IP":{"Case":"Some","Fields":["3.26.51.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Exit","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveLuxor"]},"Identity":{"Case":"Some","Fields":["z9NLHhxP4TY8ORadZTic84VoELE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DrE/x0lw3tUMIdYJVsodwtU+GZTPzmDfO/VwfbjD0Ho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:04"]},"IP":{"Case":"Some","Fields":["65.49.20.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["z9KJUgSuqoJDQ2O1XZU3uIzm3v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5+r9v19UWoMOX+MWcdExg6Kri7LqK2KErsrQ5yEGEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:19"]},"IP":{"Case":"Some","Fields":["185.177.206.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::139]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mytorrelay"]},"Identity":{"Case":"Some","Fields":["z7jOKNGxLuuGYlEa+8HQxveQZag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2rI0pd+vsVdDaUUoFk0IJLRlR2KereN67/u6P3G/0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:46"]},"IP":{"Case":"Some","Fields":["84.149.69.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kochan"]},"Identity":{"Case":"Some","Fields":["z7ffn76vnsEmprVXoa8XfK1Llqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6oZhcFpNV5B1t9YyPsEEt2WHhA+6aX2xPI3FLcFhOkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:12"]},"IP":{"Case":"Some","Fields":["80.108.10.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BFlat"]},"Identity":{"Case":"Some","Fields":["z7Y+WUccOOSvou7e6y5JxN9QZYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ABMkM5aOXmI1KrGOhUz65r2tYE7inmY9evsda/rEmGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:22"]},"IP":{"Case":"Some","Fields":["76.95.215.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay37at8443"]},"Identity":{"Case":"Some","Fields":["z7U1cVRCvA6favIkp5S7+gLQs0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIgexqBAiD2DWX7MAQx0wmW2sbfdxxKhChJnCsPkb/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:31"]},"IP":{"Case":"Some","Fields":["140.78.100.37"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["serv"]},"Identity":{"Case":"Some","Fields":["z6dEfGanCZMvA4/uawKLhKbmdug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KL+v9+2GDVbVIeBkvyGl+UeN8zpVs8NExOfsdBNVmjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:30"]},"IP":{"Case":"Some","Fields":["134.119.32.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeeVieh"]},"Identity":{"Case":"Some","Fields":["z6RaRzn75HfYxlAINLWfQadJopQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQD1ON5LetVGPZt87G7BdvlmDpMVIHCKgqDMNbf8oVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:21"]},"IP":{"Case":"Some","Fields":["103.119.112.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vunreteqrado"]},"Identity":{"Case":"Some","Fields":["z5vrPjVUxcNDAkZBqRzJrmuEmII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oOXRceW/PK97zchwbtcE5E/Uf7uEua3/OnZP63tnua8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:36"]},"IP":{"Case":"Some","Fields":["87.120.237.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["z5pUcIHJVmTIxzW63bkeYhD5eVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMFRXe+xuH514XD+M9M27g8IVVa5mqc/g58xELS2kj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:16"]},"IP":{"Case":"Some","Fields":["151.115.47.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jelegend1"]},"Identity":{"Case":"Some","Fields":["z5Mjbe4fV9QHLu3B+XUtt79JeJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lXjA8SXgQgNsmTLqzgY8ivW0YDLY1uwprZb8kZB3lQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:47"]},"IP":{"Case":"Some","Fields":["171.22.109.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::a076:fa9f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange034us2"]},"Identity":{"Case":"Some","Fields":["z4zEdjKY93/2Ta80DSbRu/M2LFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/qEjXHiZJZ1lnTMuuCaCoF+OxRxtRgvFcUEoYL7kzzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:27"]},"IP":{"Case":"Some","Fields":["162.212.158.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thinkindifferent"]},"Identity":{"Case":"Some","Fields":["z4J812pZ+s2uYOElmwCGrP9y80g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dYf2P9NXJzEdKiGLzomOUK21SRneTzgdNsPM72gG6Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:56"]},"IP":{"Case":"Some","Fields":["50.116.51.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe16:8f3e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yudejp"]},"Identity":{"Case":"Some","Fields":["z3Yu88hrEEwwFRGJRUfHI3H5UqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9y6gCvm9le/D0Xnl+IDbOrh61bUPaenAGUEAU1TNnBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:25"]},"IP":{"Case":"Some","Fields":["152.69.198.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashOuzel"]},"Identity":{"Case":"Some","Fields":["z3L7AQvwKhNygrfz6s4gGQXW4Hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELNsLU8H1Qyjo+SB4usiY0KHFB89HmIxvZzfvoCPPg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:36"]},"IP":{"Case":"Some","Fields":["5.255.96.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:a59::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["z3DMVC5GmS4jACBzZjZH95CetAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jizmm2noBfHLgYvGGUYkF4LnAsmQCwH81mYgKzqMFRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:33"]},"IP":{"Case":"Some","Fields":["45.142.211.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:b641:6f1:64::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Faravahar"]},"Identity":{"Case":"Some","Fields":["z20Kr7OFvnG44RH8XP9LR5I3M7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["71A9GvYqtUwnOpqaZOHmDQY4bINLsOIBjazcFK9+zTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:59"]},"IP":{"Case":"Some","Fields":["154.35.175.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2607:8500:154::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay01"]},"Identity":{"Case":"Some","Fields":["z2pggAkbshCqOJL+/i9qOW2gjfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQK4PfbOg2o2RSkY+QYJk5ZzOdJEypUXH/BoDqA5kSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:28"]},"IP":{"Case":"Some","Fields":["82.149.227.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:126]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schabernax"]},"Identity":{"Case":"Some","Fields":["z2WStT4zA/aUcenGqS6Kbuq33cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ri/NrfikGpb8aQ4PxQs5H//QoHWatTW7sP4RX2RnJ8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["89.56.233.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:7846:e95f:101:47c2:2bf0:662f:9efe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GreetingsFromTheNet"]},"Identity":{"Case":"Some","Fields":["z02w4EgP6x6PWcPXdOuSdSg9V50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c7xZ4LLDi1BTAEALFr8G4V89dAxgbVj8Fk37aYg4Naw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:03"]},"IP":{"Case":"Some","Fields":["135.180.40.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taniquetil"]},"Identity":{"Case":"Some","Fields":["zyCpEBpplUQ6ns+gdVGir4cxfZw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cCYorKc+vmgscmMj5SZUTIu9H1KiAQdWxiAEsINilmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:08"]},"IP":{"Case":"Some","Fields":["135.125.25.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d1bf:4521:600c:c37c:3457]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI10"]},"Identity":{"Case":"Some","Fields":["zxwYBMM81p2KdVh/q8Y9XQ4pgPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIIB4h8daN9Z3lPY9G8pe6KmQpXRlA9NyM7Jx2oJu/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:12"]},"IP":{"Case":"Some","Fields":["171.25.193.234"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::234]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1140"]},"Identity":{"Case":"Some","Fields":["zw9JwBftFO/VTpU/QorjUIp+2Fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i1Np1dcmC4Rjqs58UmbHcfq/p4Drx5knxmMdXu5G2I0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:55"]},"IP":{"Case":"Some","Fields":["185.220.101.140"]},"OnionRouterPort":{"Case":"Some","Fields":[11140]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::140]:11140"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomOfThought"]},"Identity":{"Case":"Some","Fields":["zwGfHZJCcRMlCjOLu6EJUEQr6og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["163Rmf2n9+3S5ZkXqnovcw5mct9tPSHw0QtYyzT6x9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:13"]},"IP":{"Case":"Some","Fields":["85.214.236.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42e7:b400:778d:ed2d:68b5:acaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FSF"]},"Identity":{"Case":"Some","Fields":["zugE+gOoemXKpryzolC17ZI8CL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FPAKAGUTgneE8GeIaCWktoET/p37S/bJEtouHOYCMHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:17"]},"IP":{"Case":"Some","Fields":["209.51.188.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:142:5::48]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strayWires"]},"Identity":{"Case":"Some","Fields":["ztV38JHcsVrYyH+9RSpR6p5gv8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9ss41siOawCHrB0hHQxULMC/z16DhMLuIxgmdMDw0ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:38"]},"IP":{"Case":"Some","Fields":["172.106.16.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["simonjester"]},"Identity":{"Case":"Some","Fields":["zq7WmzfwdRzlIb2MzpR4xCoIl2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a5rB3+YW7ZjfeS5kLa5rLzAaoTYV0Bn7mmBXWg95BRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:43"]},"IP":{"Case":"Some","Fields":["212.83.167.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer76"]},"Identity":{"Case":"Some","Fields":["zqhsMIFnvU8NKuaRkYBduW2FZxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P59LIpSWGPqy7FSVD+bdkuhF4Gz7MXyJdyTaBSmLJv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:56"]},"IP":{"Case":"Some","Fields":["95.214.52.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8176]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpartaNet"]},"Identity":{"Case":"Some","Fields":["zpY3Nsz3q2Bu+Dy4MhC4ZWhQP9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p7hNF48kRm46OM8bFjxEb8L+thwz6Mo612DyZFSpFEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:37"]},"IP":{"Case":"Some","Fields":["85.236.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webkult"]},"Identity":{"Case":"Some","Fields":["zpADIIoEeWAkYFLGBKITw78Jb2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSqKv995eWnkaMLRS6HrbvGyOAlU/IR3ALlMbBk7qho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:56"]},"IP":{"Case":"Some","Fields":["144.76.219.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:92c2::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mj4"]},"Identity":{"Case":"Some","Fields":["zoY8Iq1au+r2Bq41oieBxAnYleU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XXvvA7TI+Fj9T7FwXb8MPrdi7C+h7W2jvZp9dfAvP6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:49"]},"IP":{"Case":"Some","Fields":["93.115.86.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RichardSnape"]},"Identity":{"Case":"Some","Fields":["znZB3y8l88zDhyTmnTgstQPAaDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W3cMZ7nUhIEW2ijxiz2JYotgOtPQZXy45GI0H+E4d0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:57"]},"IP":{"Case":"Some","Fields":["5.189.182.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["updawg"]},"Identity":{"Case":"Some","Fields":["zmmRYqd0leh6ivNztnTaNsHqc5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pOAj01Mld/KXLstm9KBuPvSYs3RaSVbRk0HqdlusKZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:17"]},"IP":{"Case":"Some","Fields":["45.77.151.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation53"]},"Identity":{"Case":"Some","Fields":["zmlLqNAZ7mDY54OMwXfmic6oJeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lHuIrkYApuS3DPR5nApf/5X8pSpMn85M8QtWhLtCncY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:45"]},"IP":{"Case":"Some","Fields":["51.89.143.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0183"]},"Identity":{"Case":"Some","Fields":["zmURlorKpDQCY41movrF8y+aRcQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qHeqCfVESnbu6xquoi0kQ/OB4jBcSfbL1f2hQax5B4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:51"]},"IP":{"Case":"Some","Fields":["185.220.101.183"]},"OnionRouterPort":{"Case":"Some","Fields":[10183]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::183]:10183"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev12b"]},"Identity":{"Case":"Some","Fields":["zl70+2RFRNsvQwpgzG64b9fim6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXx4v4BP8fk2fEdGL2j7tAfAJMDxtLtxHBRW2vGDHmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:19"]},"IP":{"Case":"Some","Fields":["92.246.84.133"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:c2c0:1:4::2]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guidelli"]},"Identity":{"Case":"Some","Fields":["zljPZm8gmFdQL86vHLUvY4r/vWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1QqsbY27AQpuHzMuJAh1ct/gDOrkjHuj5WrBbA50mgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:39"]},"IP":{"Case":"Some","Fields":["194.187.249.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WindowToTheWorld"]},"Identity":{"Case":"Some","Fields":["zlVHVOJF9z0HdbTHkilt2uFuIoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iN089hfDRR73g5pu2AzqlvkkIrep1sjCR4x3vY1Yqz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:19"]},"IP":{"Case":"Some","Fields":["45.67.219.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["juanovo2"]},"Identity":{"Case":"Some","Fields":["zlJhH7ceK3jq/gxh4kHsfBFseos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dKv+oM5kQFvpN/LzkB2alx4T3tGPFeXr8bJc4kLgLao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:22"]},"IP":{"Case":"Some","Fields":["205.185.115.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rymndbjcyirjoytu"]},"Identity":{"Case":"Some","Fields":["zkn5MpvxGKHB1CAVN1qtKYRPkwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fqeE/Lx4AmXNuIuc6ATfvNAlQ9vlLseLK4d43ZvsTQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:39"]},"IP":{"Case":"Some","Fields":["184.164.24.179"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy61"]},"Identity":{"Case":"Some","Fields":["zkfwNW2GzwoaIAjZdiMhbVYPsKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n0AxWpzpyAMtEGPlp+Q7ucg/bcvlDUc9H/cuU5deCuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:07"]},"IP":{"Case":"Some","Fields":["212.83.43.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:babe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["altenfurt"]},"Identity":{"Case":"Some","Fields":["zjuYMj3aQMKcnUhwW7eL0siVMPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WkHAZvVFqc6p9YLGwIHWEkCIoSQv1MtfIwba3cZVj0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:29"]},"IP":{"Case":"Some","Fields":["95.114.74.116"]},"OnionRouterPort":{"Case":"Some","Fields":[42299]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:c23:b875:cc03:b841:b9d8:9d8d:1b1c]:42299"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ahehfxubzfxwspvk"]},"Identity":{"Case":"Some","Fields":["zjawu0yBtG+9hmXHf+h+W9SP4LQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f6UD3IQYqx0F9rpey6Eg+7NkffCjwUJiX6TBk22OpRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:18"]},"IP":{"Case":"Some","Fields":["81.169.239.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42e2:ce00:d4f6:291e:2df4:30e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UkranianStrong"]},"Identity":{"Case":"Some","Fields":["zjDOOW1itryd78g0Taib/WAINmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TbXC138wZ5GacsZsU2WJEjI2kyws3VyUlmqVD9+nEIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["185.225.139.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:3::680a:e7fc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorFakedOrg"]},"Identity":{"Case":"Some","Fields":["zhU+PIExhaUWw0HPjCvmvvun064"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wd9vN9NbqY7xqQxxeVNc4skfVKclgeAIV/V4lceoPSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:20"]},"IP":{"Case":"Some","Fields":["91.66.4.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8109:8000:d:b46b:61d2:be19:167b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zfauzqmpCSyphZp4ZSrmDTWaRPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JFyIUrKafhQmZrxRSOIBLWxOa9jquKOBq3tFU2LYvsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:33:07"]},"IP":{"Case":"Some","Fields":["37.120.186.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:23:489f:4fff:fecc:5244]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra88"]},"Identity":{"Case":"Some","Fields":["zfVvKq+kK/aRIGlSkRB+I2SMsY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x7uVG4SoDnTLEqyMY+ZWR00sM1vX78DiMFxKg5hCWG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:36"]},"IP":{"Case":"Some","Fields":["193.218.118.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::130]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrresdemorte"]},"Identity":{"Case":"Some","Fields":["zfNksXW89jqQM1Tl9XdktMNB4jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0NZNjSDeW3qPzCDZ9qquT88cBZ3SIAdSG1ogbDf3EO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:29"]},"IP":{"Case":"Some","Fields":["77.8.146.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBlackH0l3"]},"Identity":{"Case":"Some","Fields":["ze1hWtHMz3DBGIe9ipGNPQs5KQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y7iyfOsDlU+02m0XToabbTTIOVHO51fI4xY9n/9hFus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:30"]},"IP":{"Case":"Some","Fields":["37.24.145.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0b:18e4:1:2:3:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sidlecompote"]},"Identity":{"Case":"Some","Fields":["zeiv0YFoRI3K9V8YXBxRe4Fdy/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RddddZfZdL9ykux3sNRwOTqDKkw/V4XTXHmRrN8NBaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:46"]},"IP":{"Case":"Some","Fields":["81.152.88.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c7:d381:1301:4262:31ff:fe07:9b45]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r3"]},"Identity":{"Case":"Some","Fields":["zegfwBUB1NnQsHpzFMFPSjaVjC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bDI1rUxkWdpqkQxlNyOUHeLdM+7wyyOr4IddjgPhhUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:59"]},"IP":{"Case":"Some","Fields":["216.250.119.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["silversurfer"]},"Identity":{"Case":"Some","Fields":["zeTF3J1jnpFbmbRh7iQwRPyiZLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6u/c8/EJXLZAx6Q7kHx49gMNPnqSLpagmTk+8cmRbQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:37"]},"IP":{"Case":"Some","Fields":["178.17.174.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:4::b29d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["zeSSs00UoNlxqLBIIW7LK/R9wN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Y6WakiSnEucZLHzjt4MDjaWpMwB4geWBxqFAuak4Cg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:50"]},"IP":{"Case":"Some","Fields":["213.238.182.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rotorstator"]},"Identity":{"Case":"Some","Fields":["zd7DzEsP1QVMmbLShD3otgmkyro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cZJWxErEYEbspTrX9MYY+Q7SVoIx1Y6Tg4rYrjlkhFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:09"]},"IP":{"Case":"Some","Fields":["74.91.21.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zighimilan"]},"Identity":{"Case":"Some","Fields":["zdKW2MOOqmqUJC/PAyk+DW7EoNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mtjd15R9iNdBBpW3+HIc5nnC1afmgBDHmLsKf2TxaJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:55"]},"IP":{"Case":"Some","Fields":["93.55.235.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bulbasaur"]},"Identity":{"Case":"Some","Fields":["zcZD5Z0E9jrf3g7ERzrHKNmni9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rJYvWWYBoe5Fq14OyWC5GrqRVR7ybDHi61B/UA2D9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:53"]},"IP":{"Case":"Some","Fields":["172.241.140.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2mpdhack"]},"Identity":{"Case":"Some","Fields":["zbJgXSvSjaMcyRlW6LrRR7ffivk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AIwsxqmfkprsLT5dtVQutgBHgYVXSKTxIKwXjZhWwFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:08"]},"IP":{"Case":"Some","Fields":["24.61.235.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jonasBebe"]},"Identity":{"Case":"Some","Fields":["za66RY9hKXdmQ3UZNAdqUdhRw0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jc8HvwoPAlqSS35dSQGl1mOzBKFl3UpkTxlrWmQi/x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:40"]},"IP":{"Case":"Some","Fields":["95.217.203.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:4683::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2fjsaf2ja4da"]},"Identity":{"Case":"Some","Fields":["zaLDNq2H4i3wKYOIej90shBw0C0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fBETQmz9KrsWT2GCEKBeqExgdPjJU688yNXBVjK/NmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:58"]},"IP":{"Case":"Some","Fields":["192.145.46.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:42:78:c4f9:9fff:fefa:980c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["YAVTR1"]},"Identity":{"Case":"Some","Fields":["zZyJW6cf2US1CGHedv/xJnFwd3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F25TB2aH27tUQt21zwOLE+DowJX26gCSIdzln5TSy9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:54"]},"IP":{"Case":"Some","Fields":["45.156.24.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as204750exit01"]},"Identity":{"Case":"Some","Fields":["zZNIaOgBhg8fPesWJh5MS5vH82o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EsP/BmfoyLZheQx9GwQ6tB5csqMOJ/Yy+h0eU4cKQMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T18:31:03"]},"IP":{"Case":"Some","Fields":["91.212.153.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3d2::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["khasan"]},"Identity":{"Case":"Some","Fields":["zYCs5an7C/4CN71N7WaS0bu/R5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TYCar2wUAnR3hZj92IcUXMZgzTcAGBrkw4AKilf3Iek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:25"]},"IP":{"Case":"Some","Fields":["188.93.233.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7a60:1::a06]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uwu"]},"Identity":{"Case":"Some","Fields":["zXka2T1HLVUYvnUS1Cho86Con0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVkR8Iz/tjK+SFv08vrnMa7hLBCDXBDp9HJUPytn3Bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:12"]},"IP":{"Case":"Some","Fields":["78.47.171.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:6c79::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TRFIAntti"]},"Identity":{"Case":"Some","Fields":["zW6MVIcE9M5UTNcTZdRvEQUY++0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4yo5bSvCEzRg1Bzdy5IdhyopmPSqUqEcfscs2i7paY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:39"]},"IP":{"Case":"Some","Fields":["95.216.140.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:49b::159]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mars"]},"Identity":{"Case":"Some","Fields":["zWiQRNDmX1LZahrLm20PJMAy4a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bw2xCJ/ViQNK9i6aMwToTQbLqd8LZReZ+Io3aZMOwx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:38"]},"IP":{"Case":"Some","Fields":["65.21.52.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porree"]},"Identity":{"Case":"Some","Fields":["zWhfYc3a+S6hlE3IrNzS4qp6isI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B00yJKlO+EYAmSD1A6hiaqcyyzoipidvDHqxA9ntHBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:30"]},"IP":{"Case":"Some","Fields":["109.70.100.8"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::8]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["riceahap"]},"Identity":{"Case":"Some","Fields":["zWP/3/Tx36uaBYwFWs1ckMNKboU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HLk7xTmfSAElGkV2HhIZ0cOQPHx5rnuOFoyWD+LteA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:13"]},"IP":{"Case":"Some","Fields":["198.144.183.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["execs1"]},"Identity":{"Case":"Some","Fields":["zWI2MPw/+NiqkrT71gq+FZpITBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lgZPr9o6YOe4oOM/dTr0YkBO1Zsu+mAVDKq1eZsK9CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:59"]},"IP":{"Case":"Some","Fields":["45.58.156.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllieRoscoe"]},"Identity":{"Case":"Some","Fields":["zVzxJf7Uvl2l8ln3WvPU3RgsVNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vaZqmuVTCoJaLBge8zFXv3973HSbyxq7dFZqYsnufWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:45"]},"IP":{"Case":"Some","Fields":["217.12.203.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JAJTorBits"]},"Identity":{"Case":"Some","Fields":["zVokLX8JXTCPSM6Ac17k1L5VqvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHXvPf6IupRX9sqSt5wVrYMvp5+69TaMaJ3db175xzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:08"]},"IP":{"Case":"Some","Fields":["73.117.132.138"]},"OnionRouterPort":{"Case":"Some","Fields":[543]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange003ru2"]},"Identity":{"Case":"Some","Fields":["zVMWp1VUwtrbh+82JOldhIwwnOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G2x4mZBEmE3rs7++QbsSTh9LSpwIthyGnCgRdNAYT+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:24"]},"IP":{"Case":"Some","Fields":["185.22.172.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:29::9201]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["normaray"]},"Identity":{"Case":"Some","Fields":["zTnCWCZbJeqkq6T9yy35gQTKo2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qjcpeHgJmJxLJRuguXrTDwZD4nrnGSNshDVplcKozEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:22:16"]},"IP":{"Case":"Some","Fields":["94.130.200.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zS3VK4oK8MISzNNAJQdAK1hwO30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpHJ/v9LRvkqrvnMC0jKPhRAdaYy7pRD7hvzKhBcsRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:57:26"]},"IP":{"Case":"Some","Fields":["188.68.56.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["order66"]},"Identity":{"Case":"Some","Fields":["zSScwTtq3TQm1gO57VtR/HG41yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tSPx71dbPUgJce27Xeue79uOtlkw/UpvUxPOqjKct5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:46"]},"IP":{"Case":"Some","Fields":["185.86.148.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::ba45:e7f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arecoque1"]},"Identity":{"Case":"Some","Fields":["zR/SwfMwoyk9pgaOaiOGbQY9bcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nt+lfJ2JLBsYLcEsHS4JFcNF5Hy26hmVjQwFY8jkOnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:21"]},"IP":{"Case":"Some","Fields":["80.67.167.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:e701:1198::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburgoo"]},"Identity":{"Case":"Some","Fields":["zRkuFSFQX5Aqwx0X+p030DJ1vGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j3B5Gq8JjtwWmYIjeGLefsoe81e6oAz9bE7X1ay8H4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:24"]},"IP":{"Case":"Some","Fields":["159.48.46.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geheimkaisx"]},"Identity":{"Case":"Some","Fields":["zRC1KsyKCtfRtMQLhJdxvR0N/0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HJQV9bTbZ74XsvBpYQnFrq5UacPR9R315GnZ6wDiQZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:24"]},"IP":{"Case":"Some","Fields":["5.181.51.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayoneltab"]},"Identity":{"Case":"Some","Fields":["zQnNfH+IFbNyEMfRpihZnHjSLW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2bnxTli/+VEm/GewlJfJNJKgq+abIgqUEKDNDh+3LVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:25"]},"IP":{"Case":"Some","Fields":["185.220.100.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:7::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazonedemerveille"]},"Identity":{"Case":"Some","Fields":["zO9lIsxWijTYXcygY958YYzl7Pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uuu/LyzBG2CmJyufzSe+iA2buJjcD99mpNJVG4hgu24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:25"]},"IP":{"Case":"Some","Fields":["172.105.35.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["zO8Lvaj1LC5g40vBUM2Otx9b2o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KmYqcLH70yX2D5zbggjpg/vhwa30DUxR8npoVXIcTf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:06"]},"IP":{"Case":"Some","Fields":["45.154.98.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkomaro"]},"Identity":{"Case":"Some","Fields":["zOCeqOJ8re+2aW2n1UlhlTTfiZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EcszOIcRy6n5997QYdSoJMh3UK2aWVXr8HLB3qFWc2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:36"]},"IP":{"Case":"Some","Fields":["195.50.212.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:7d0:4dc0:7511:d01f:7eff:fe6e:408a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zM/Y1f0hrHliNNkU8bfMM63OUvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Za6XR+DWDe7VBkP41d8hO85Bc1HByvXGJLPjmV6lJXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:04"]},"IP":{"Case":"Some","Fields":["188.68.56.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheGauss"]},"Identity":{"Case":"Some","Fields":["zMtysWrbtOx9vzcD/j7c3tPKOrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8kWqSzCljvOcOGT2wdbsbdAiXavP/gZJbecxzDB/Zbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:38"]},"IP":{"Case":"Some","Fields":["93.41.144.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zL6x24jSCYuqMAbwrOxhlRkoKh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC0LFQ2u4wXvhN70LVUNy2C0PM44Fv4Mh00di5EUFr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:06"]},"IP":{"Case":"Some","Fields":["96.52.236.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guthard"]},"Identity":{"Case":"Some","Fields":["zKpiDVyrNM6V/jyGPZ5lIMB0Udg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Id8E0a4h3WlpuuQ1Syu8MZC7pyK4sI8QP/gV4sD4j3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:23"]},"IP":{"Case":"Some","Fields":["82.118.242.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zKmXONZOz44tR4+rqdOO2ua13P0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkRQxv8IhDmw0BpzI+qoYJiQSMrjtCzSAnvTtj/dtZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:25"]},"IP":{"Case":"Some","Fields":["5.45.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SVRelayAMS"]},"Identity":{"Case":"Some","Fields":["zKU3FOpcfOVR1Q+W5+GlMHEiWoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRDxUFfQE8n/OA8OANAm6OBZdoTRWVqCzgEOlhSAY/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:28"]},"IP":{"Case":"Some","Fields":["46.23.90.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenInsanity"]},"Identity":{"Case":"Some","Fields":["zKIlCbhnQZwQIlQ4aIwY5y5zdYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46yo7FXHoO1NYpjvgRgbBAfo3TQG9DrRViij1czbZLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:45"]},"IP":{"Case":"Some","Fields":["51.158.148.230"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:2000::a]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WeAreThePlague"]},"Identity":{"Case":"Some","Fields":["zJ8SemQx3WQiZKPMOGj5pxB6AZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kNZvXg/jgUGAGRCnuEsYhqJQaoE/+CNRwoWiuJGioDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:53"]},"IP":{"Case":"Some","Fields":["83.135.89.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation02"]},"Identity":{"Case":"Some","Fields":["zIshjtNhWCel3PAI/GJZje9TO08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJwEqNOd9Rbak4VxVQAmiC904Skg+0DcFFJ3BJ2ceFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:07"]},"IP":{"Case":"Some","Fields":["45.14.233.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e99f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IG11"]},"Identity":{"Case":"Some","Fields":["zIcy5uNNjBqmGjt/6V3dcbzpyIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpNPyQw/jWvo0GCQ2f2kNweY4YHLKSZo5gZtWP0g67Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:14"]},"IP":{"Case":"Some","Fields":["94.140.114.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::eb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zIQSoM4xxVz78yy6jqXAU0iEbD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1wcIzQJ4B1XIsHxK+OWNPlw7+WyVqSeWr5hvp0wQpmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:20"]},"IP":{"Case":"Some","Fields":["185.244.192.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["w000000h000003"]},"Identity":{"Case":"Some","Fields":["zIAcfjyzgXg6vIETpz/9gvAis40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yoeyJ1j8HyvKKnbUM9xsS/TUJ9JvpNyAHmTqYG/Ybec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:25"]},"IP":{"Case":"Some","Fields":["178.170.37.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:2017:1::169]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sutsuj"]},"Identity":{"Case":"Some","Fields":["zHAfzobWr5X8PVtxZF00MHlJEME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Px2Vj1Bgg+O8mcBZLyADuGais7UbU9wnJQYmMt8xeoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:40"]},"IP":{"Case":"Some","Fields":["157.90.183.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Camaro"]},"Identity":{"Case":"Some","Fields":["zG4emTJQ5Go4qc8gkGZud4isTvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRm5l7IJMtx0hOqYQjKAc9pTQeqmjA1Vu2KcHNbR/NU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:27"]},"IP":{"Case":"Some","Fields":["179.43.139.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN4"]},"Identity":{"Case":"Some","Fields":["zEo66WDjYX9Jv5iHt5GGwUy6aBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tq7HjlZ06QxPpv1aieZJJus+NEsaCtAJzM0DzodLQDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:00"]},"IP":{"Case":"Some","Fields":["199.249.230.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::115]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor9"]},"Identity":{"Case":"Some","Fields":["zEnAgW+KhS8dJNDUUR8jerNe1+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpEVZJ95DM/KXzbwD7ie0MFgMyqMFZESD5nUqQgysOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:08"]},"IP":{"Case":"Some","Fields":["46.41.142.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:25aa:1:9000::1584]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dustrelay"]},"Identity":{"Case":"Some","Fields":["zEQcp+u3f337t++3fHi7Nxrzomw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IjJnOj3wsIWweHmJCwkhV5U1DR9OGsh6nM0paIPm19Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:11"]},"IP":{"Case":"Some","Fields":["123.208.202.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zEF7MT6AhyiwGdgkRwfR3eBNmCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LsocjAiu1Qt71d4Y3XA6X+SX2psIMj0jHDFfSekKcRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:20"]},"IP":{"Case":"Some","Fields":["185.217.0.89"]},"OnionRouterPort":{"Case":"Some","Fields":[49834]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taxburrow"]},"Identity":{"Case":"Some","Fields":["zDET5tUNLMehyslGJN0tbAAh9W8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CrhltH3B+Knlxp6TmcV+GlQMIL70dxqJ8ix9RYYCzTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:17"]},"IP":{"Case":"Some","Fields":["185.193.52.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PapaJohns"]},"Identity":{"Case":"Some","Fields":["zC95MsmfmHijTu4BqQibTqw2yPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TvwPfkT20r9dJeASaHc7G0EphzVRPlRLDfHauxp7QfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:32"]},"IP":{"Case":"Some","Fields":["5.254.118.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange019de"]},"Identity":{"Case":"Some","Fields":["zCF5qX1OxVv6VrJ/IwDFMWLOu24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JZXrcuy/w3AKebLOAVm3/+ViO4TxM4dw+KtkFPq7ne0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:54:17"]},"IP":{"Case":"Some","Fields":["213.226.71.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex38"]},"Identity":{"Case":"Some","Fields":["zBTJfx0j7pd2aCj8jthYLiHhFmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a0Q2zO/i1ZWUKKo7EmdKFTmuTk71A22gIoRKX3nP0ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:07"]},"IP":{"Case":"Some","Fields":["199.249.230.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e657]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maulwurf"]},"Identity":{"Case":"Some","Fields":["zBHP9FPq9UtPtQwCq2mlFAkj9q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aRdYo/PvfVvylLUXqQKCvRSHrrUo4p7AZO8nkL/i+fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:36"]},"IP":{"Case":"Some","Fields":["109.70.100.68"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::68]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zBANwBeiXiRMNclku1GOQwhBWsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l9EjkbmqpIrJ6XqMic9YEY4ZJci8gGTre/l9PLKZKuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:34"]},"IP":{"Case":"Some","Fields":["37.191.195.63"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fedc:ac35]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc07"]},"Identity":{"Case":"Some","Fields":["zA7R07/H1ojzPZZ/uoIEWq4nkM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lkOT9o12GFZEEA5JW1DdbogLZcjOuY01psQ2jq6GGZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:27"]},"IP":{"Case":"Some","Fields":["185.100.85.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Grexit"]},"Identity":{"Case":"Some","Fields":["zAqJIX6ZmmR40DWBFskmYl+E6+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["joyqBh0l05Xgo8Wk5rjRQt6XrXeBVUkgziR21LYjE1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:14"]},"IP":{"Case":"Some","Fields":["185.4.132.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenStar"]},"Identity":{"Case":"Some","Fields":["zAnfsBYIGtUGhtrJZEC7LW80MlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f8qgPyirrTkKOvt2SuKhGmvnGiytgWsK3UqYqmWq4ZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:57"]},"IP":{"Case":"Some","Fields":["51.158.148.128"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:1000::a]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra63"]},"Identity":{"Case":"Some","Fields":["y/75DnowTpUVoETGHEEXzZdmBQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L8yfyZz8sMMsdq5HR5h2gH1qsgVShBvrm6OUw7bzEZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:44"]},"IP":{"Case":"Some","Fields":["107.189.30.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charybdis"]},"Identity":{"Case":"Some","Fields":["y/Wexbn9EICSrpFJ79rkH4gtpmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PA2m5epzjfbKdK4cZ6jUz7Y4l3f6JPL874pXom7d6Eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:09"]},"IP":{"Case":"Some","Fields":["92.205.129.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nope"]},"Identity":{"Case":"Some","Fields":["y/OICZzO6eZ//dP/qxGPKh2Ajzs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7x0J3/ktVXM4rt+zKNDlz57L4vBid6Dor4wxp6TRYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:00"]},"IP":{"Case":"Some","Fields":["64.98.231.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonlaogzed"]},"Identity":{"Case":"Some","Fields":["y/DM2dgNei+C5Pthw2+2iYpOulA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83Qqv23GtvWydyeJlPoSxIVYqn1q7aXql2UFrTjQ6mQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:55"]},"IP":{"Case":"Some","Fields":["185.220.100.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:6::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bad102"]},"Identity":{"Case":"Some","Fields":["y+E/740uoxxSYXfsJd9522hNVSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bxOAhXCZj5htojmOPMvgtxp2llNazoRnia+EDy/bVR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:05"]},"IP":{"Case":"Some","Fields":["138.68.52.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::2105:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reRelayJI"]},"Identity":{"Case":"Some","Fields":["y9/66ZXwW835b2VNdCfVr3CHSA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rte3zpD0K6c61ZUcdk0jrJQonOYmqX07cGTN/uXJ3U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:40:11"]},"IP":{"Case":"Some","Fields":["31.220.7.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bananator"]},"Identity":{"Case":"Some","Fields":["y9xW01RSnRzZaIJ1DQsqNEitBBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VRdfbH6/fvRUzVXzz3Fq513QKjcJO0moQEeEjzCM92E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:35"]},"IP":{"Case":"Some","Fields":["84.172.215.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nightie"]},"Identity":{"Case":"Some","Fields":["y9tM1y6oCBGdNyP3zaRK6taD/No"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Wzev+ITqIn7EWMu/ObvndNMih+X9Tj71LF4FS4vd6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:04"]},"IP":{"Case":"Some","Fields":["45.141.156.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["y9AJWKO4l3dOMz11wk5qdfUiDcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YgkKoL6BJ30tWZ7DeYkxHrp4vX38uvC0drl02NV2S5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:57"]},"IP":{"Case":"Some","Fields":["185.165.240.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RaspPi500b2"]},"Identity":{"Case":"Some","Fields":["y82cS4aZG3tC0MIht5ZBl0r9+rc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmqsmHa2CaayNA0RaY8irL2+qYyU/QYxtAMxJKMK6n8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:34"]},"IP":{"Case":"Some","Fields":["31.209.59.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xor"]},"Identity":{"Case":"Some","Fields":["y8yF8zXiBwX3kc/IaFlRyQ4kE00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hMcwIWCkBC4KD6YPWCUUxLq2fKdUnP/wd8Y1pWBiTLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:23:44"]},"IP":{"Case":"Some","Fields":["185.56.83.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:e80:3000:1:bad:babe:ca11:911]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NA"]},"Identity":{"Case":"Some","Fields":["y8gmKqushKrrklTD/Dh38Mli888"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IDTp9aO/fQVtA93hTH5j+ZJzv0awtJG6RMT7su4aC7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:30"]},"IP":{"Case":"Some","Fields":["18.188.203.202"]},"OnionRouterPort":{"Case":"Some","Fields":[3128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrmmlNott"]},"Identity":{"Case":"Some","Fields":["y7pA99nyhPR6JD7iwIHpZoJ0HSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5pjMihDxGhzIAB808EBbIGdEfWOIxdU50Bbz1AfgjcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:34"]},"IP":{"Case":"Some","Fields":["176.9.39.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:508a:a62c:457:6b0c:a1f9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YouSuck"]},"Identity":{"Case":"Some","Fields":["y7TujOgx1lM9UeoeiNoKV1zUhgM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMWaVr6BNz2DUKxcQ8KqgmPgszhDHBzOzA1G0X4fXe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:03"]},"IP":{"Case":"Some","Fields":["101.100.141.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["teutates2"]},"Identity":{"Case":"Some","Fields":["y6ZTuGeM9773wsG83KCAfNRJqKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VqzBPWW7rCO22sXw/Avb2bC7ZXyFhs09hloqAoIN68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:13"]},"IP":{"Case":"Some","Fields":["37.120.190.6"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["y56slFgyzsjTbMF4nJ0xXaji7+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7Qfc3VARF3VLHiIoWXsZ/7Bvbc+aQhq6TtRppKdbIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:09"]},"IP":{"Case":"Some","Fields":["172.105.26.73"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:92ff:fe8f:4c25]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pinkiepiie"]},"Identity":{"Case":"Some","Fields":["y5wsrClyIPxneANfnxRybQLRElA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["llYxC2219DSB8bnkNb158ILptaQ6l86r7GTn1zrTJH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:22"]},"IP":{"Case":"Some","Fields":["179.43.182.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["y4+fP9aolHujxb/dFNe74KzOP9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYmaClw9QN50WW/T+R7WyPqYKrQzsXzO5Ip28OVLNGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:02"]},"IP":{"Case":"Some","Fields":["23.128.248.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::82]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presidents2"]},"Identity":{"Case":"Some","Fields":["y4L+xBVq4GEmDEQkzxk3u/7TTW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4AUMTL+x3ukPbuG3hRp6k0Sv1j02pnCadI8VpKmzOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:34"]},"IP":{"Case":"Some","Fields":["45.58.152.46"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ss23voyager"]},"Identity":{"Case":"Some","Fields":["y4G8/UT8FCYWu1mDZIvYrwGTB4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8YKMoied6QbUXZbhH/krAZwTwmJc6rv56I3FZyj5WIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:22"]},"IP":{"Case":"Some","Fields":["114.23.164.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noconname"]},"Identity":{"Case":"Some","Fields":["y32xMXLhXUrX+UBGZwId999umko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9TOYgYsNIFAXI9pOZgWEl9XmxwVZWLb37I4oQ/cgIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:13"]},"IP":{"Case":"Some","Fields":["163.172.213.212"]},"OnionRouterPort":{"Case":"Some","Fields":[10010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN25"]},"Identity":{"Case":"Some","Fields":["y3wNhB/jdu9D94Rf8gGwKQwKI54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqjq9A51Rh8t8tylt/5thRjE/KEILgi8MPwgsoK4zLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:55"]},"IP":{"Case":"Some","Fields":["199.249.230.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64e]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash3"]},"Identity":{"Case":"Some","Fields":["y3QBlNZgZNimbLBxvggHleP/pxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nkt1/7MOREBJBFbf/XG+0/JuTu/BmfaRxYUzw8x2xRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:04"]},"IP":{"Case":"Some","Fields":["51.81.48.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who9USicebeer19"]},"Identity":{"Case":"Some","Fields":["y3Hd5wqeydxrSK0Nb1/TKsZsytQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dxp1BmWy34DXf42TTP2nqwMYePuzdonkcQUMV3XURkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:32"]},"IP":{"Case":"Some","Fields":["107.150.32.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8116]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yuuri"]},"Identity":{"Case":"Some","Fields":["y3EO5/PuMXpe8BRKfutbnbBqIKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7MGAi80IkfVhipHEQR17Facpj81w0if6GEmEn0Dzxx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:25"]},"IP":{"Case":"Some","Fields":["89.102.157.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["y28Huz2Boy7yVp/E4FEeNr8kwDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWPccMR+5vONjMwSXR5jvUSGwCEWRxRh8zwtk+6A7WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:46"]},"IP":{"Case":"Some","Fields":["185.177.206.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::140]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jehovax"]},"Identity":{"Case":"Some","Fields":["y0qgefnpBh1UHlqu2w6VKjiO7UU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ETuI701jQ8YMYye7QfUbA1gBhdKZ3gj5lJA0Lme7TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:10"]},"IP":{"Case":"Some","Fields":["5.2.72.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet3"]},"Identity":{"Case":"Some","Fields":["y0J3Lj6PNov1EciQ4AUajfKoTD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FMc2GyDMb2KndWNojCfmyBUdmbjgY90vrEMaTFlS9YY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:36"]},"IP":{"Case":"Some","Fields":["37.228.129.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:1:1a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CrashMe"]},"Identity":{"Case":"Some","Fields":["yzudmTKlHyouEg6uC1+UCe43HoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kd4EnflVqNy3m3u5tyEgI4XW1uNdbCMboUQelcAONTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:52"]},"IP":{"Case":"Some","Fields":["213.252.140.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krelln2"]},"Identity":{"Case":"Some","Fields":["yzCQ9vWTdvBU7s/wZyqy1Yv8unc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GClSlrEc3b7B0qKB9dbZNZ1dNBuHf2aAp3uPsvWFA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:19"]},"IP":{"Case":"Some","Fields":["159.203.66.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::81d:3001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay26at8443"]},"Identity":{"Case":"Some","Fields":["yy7I2AYkym3VCS4aeU3qSIqBtQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AeW+IX6uucLjtoAUosD5DUVt7/5r4BCFgHw5GIS6YDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:07"]},"IP":{"Case":"Some","Fields":["140.78.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra9"]},"Identity":{"Case":"Some","Fields":["yyiSXaYQaaQ1hAMNJhBHHx/9QQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aUgms+/3mmBFs4JlN+HqbwqQGE7z6Ke01ruKtpYI1W8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:06"]},"IP":{"Case":"Some","Fields":["178.17.171.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:129::4938]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leonidasI"]},"Identity":{"Case":"Some","Fields":["yyACNwkSn8OjE/t/NWjWVk3Ts0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQV46JMtfz0BeOJcBu1d5PbmxM68SkBpABj6W3/cfdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:20"]},"IP":{"Case":"Some","Fields":["185.138.41.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["esojcmlin"]},"Identity":{"Case":"Some","Fields":["yw4pIOykr2S5q9fjRuonUvu4Y2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xk4uzR0xoY3c1Gau0YRF+ajFFjfsHMChK+my8Ha0zwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:50"]},"IP":{"Case":"Some","Fields":["50.116.35.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:92ff:fed1:4cc7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay0001"]},"Identity":{"Case":"Some","Fields":["ywQIRsZH8zjuGVDGzAMmcQIIjFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xMPwT/ekJWuA2QmsGKuRSYzhN8UI5vQe6iVCJkX2+y4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:42"]},"IP":{"Case":"Some","Fields":["153.126.128.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:2500:102:3000:153:126:128:94]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Benis"]},"Identity":{"Case":"Some","Fields":["yvv2NlI2OgSVFSw85HpJHns1tKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kx5iUmIjXXheDei6FBtCuagrLKc6dmyWKItGUCeJA2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:57"]},"IP":{"Case":"Some","Fields":["144.172.118.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maschinenraum"]},"Identity":{"Case":"Some","Fields":["yuimS3n2HljZuKn69bLkijIbKpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JXdHKBCE36+n5V63/JmP4aKFUhkTc9LZzYn7Pe8yCD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:46"]},"IP":{"Case":"Some","Fields":["82.135.68.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beroal"]},"Identity":{"Case":"Some","Fields":["ysWQO6dL61hd2UfrZXsZWOJfbMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OG4CrEZAcCtcirGNC0eDfvPJq+bLOtTepXgovo8cd+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:20"]},"IP":{"Case":"Some","Fields":["192.162.141.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["yqrgVaGnfSNg+FG5Y1fZxth5z4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HKUBJp806S0uxdwhBGfdtgjfxJkjgNkS6ogNFQvt3zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:35"]},"IP":{"Case":"Some","Fields":["198.244.207.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:b29:116e::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt27791"]},"Identity":{"Case":"Some","Fields":["ypka1IsEaAh4D6B4Z8SII2U5FjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aN55/YzNxfRp4C1KPnZIZZXuqQPfquxSE3+tgchYzKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:43"]},"IP":{"Case":"Some","Fields":["185.245.60.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AS62788"]},"Identity":{"Case":"Some","Fields":["yphs7gkJC1ObyApXxb2Jt3AnsZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRoR1BvsBfBPnkp/xWOhvIX73O/2vk3wTya0OTNGkp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:34"]},"IP":{"Case":"Some","Fields":["67.219.136.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fd23:1:0:acd9:f8ff:fe5e:d77]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["renewablefreedom"]},"Identity":{"Case":"Some","Fields":["ypRwQhcmDnSD2ohxnKzXqUxWTVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OgDWPAO4l8tIHYGR/jxIWOd0OYPySBEHyoLT5/oHW5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:13"]},"IP":{"Case":"Some","Fields":["185.220.102.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yn9HDGNEJRSgvUVQpRgJndc/62g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKaU7y3WT93Cnj9OlFocXPmqO98pGVJdO+fq+XJRS1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:40"]},"IP":{"Case":"Some","Fields":["27.133.153.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taskbar"]},"Identity":{"Case":"Some","Fields":["ynvdHOubb7O52LL/uarH3ObsYdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTtiBS7A9+QIt+5mSZIU9fnn0xzSzR9VxUGJeZmayDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:27"]},"IP":{"Case":"Some","Fields":["104.217.255.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff1"]},"Identity":{"Case":"Some","Fields":["yna37QSvIdGvOLhsd9U5pMA0zxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L8rSV2ps8wJenhQrMzMlmsoKSBIolWZfIx2iJc5Gq9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:26"]},"IP":{"Case":"Some","Fields":["198.98.62.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["foxican"]},"Identity":{"Case":"Some","Fields":["ynaaTEGfu+r32NMN03Ohjefj2Ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OpcUPNW73yd+K1y1G7b/FBD1JFapTepiufOdQ5rU6io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:42"]},"IP":{"Case":"Some","Fields":["62.171.137.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrPi3relay"]},"Identity":{"Case":"Some","Fields":["ylnRLOiyOeTmINwtoC7f2r4F4FA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ato1V+NX7mszXDg5TgBt8RY16VK2POAwftF3NJG+vzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:31"]},"IP":{"Case":"Some","Fields":["207.216.25.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9002]},"Address":{"Case":"Some","Fields":["[2001:569:5197:1800:45a0:7316:2b70:2ca1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NYCMesh1"]},"Identity":{"Case":"Some","Fields":["ylLkI+y/fQe7jhE5o5tNhmjP4qQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c8bLb50lYXOGhyMwG5bPwgiCyYOIebuKe4/W1zbpPA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:20"]},"IP":{"Case":"Some","Fields":["199.170.132.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webthegreenmileplum"]},"Identity":{"Case":"Some","Fields":["yk24Jl8UqT2KjViOw86FG45ySCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/5vJaLUF5G7Um3GCqvH55Bj48LGMxy3JnVRS137aKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:12"]},"IP":{"Case":"Some","Fields":["89.39.106.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clanofxymox"]},"Identity":{"Case":"Some","Fields":["ykkH/i62902HuFpSjpeF9fSn6GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XNXm1v6dyZZH2AwrNYcHEo74cTXseW1zAvNNmK4dpLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:53:43"]},"IP":{"Case":"Some","Fields":["185.119.119.164"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:14:164::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sillyhydrant"]},"Identity":{"Case":"Some","Fields":["ykcMvxsHn6yiWmI52VnLy0yomos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6LKymTvz6DDBiSGHA1UwXfXViylSlCOwaj/gHhigGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:14"]},"IP":{"Case":"Some","Fields":["93.31.215.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE01"]},"Identity":{"Case":"Some","Fields":["ykX1S9XCFY7i5kyUM1he3ISw4UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wp8izanGc3Vn2yPHZO7Gb4XdNoBc6PbiQZUbUaS/t/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:11"]},"IP":{"Case":"Some","Fields":["79.172.193.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:730::2110]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedMKUltra"]},"Identity":{"Case":"Some","Fields":["yi64pdxL2KDIfkwwBU54IuU9PiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/3TbaroFSTClyj1frbHxJx/TMMDhYShfP1Xyx1K1Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:26"]},"IP":{"Case":"Some","Fields":["23.154.177.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beckett"]},"Identity":{"Case":"Some","Fields":["yhiy82tR30leEwqZouAYwqwI79k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GV0qvBWdrsd5YkDO08GRR9Ky5cRLuJ76X5yTap1vByY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:40"]},"IP":{"Case":"Some","Fields":["192.9.171.167"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["D4rkKn1gh7"]},"Identity":{"Case":"Some","Fields":["yhaEUWt/7PPbdtQ/0C9W2Lleimk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UUuxu15pcgrI++jH4fZztpf4PLITd0i4fkQQywFneW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:08"]},"IP":{"Case":"Some","Fields":["142.132.157.35"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:2ced::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pbx"]},"Identity":{"Case":"Some","Fields":["yg9ZFvIUd+rTblP9ej0O6l/aL6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4rgc/b2EdR0U5pl/mW2XxgrTbezWE/tWkmg2NC/RlFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:50"]},"IP":{"Case":"Some","Fields":["94.140.116.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::f2d7:40df]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["jetplume36"]},"Identity":{"Case":"Some","Fields":["ygrwqwPddeg/yTRFZpiWQuPV5DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J78M2II0iy5IS2HysuXrdurj8QAwIc693S2RfKjFswE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:24"]},"IP":{"Case":"Some","Fields":["195.88.74.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d0m"]},"Identity":{"Case":"Some","Fields":["ygrJGTtWZYGOpTIreUiaohlRxlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDSaUXXEBZshGCzjt9q0plqGEBgIpUhL/RVbrgvaS8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:36"]},"IP":{"Case":"Some","Fields":["51.158.148.216"]},"OnionRouterPort":{"Case":"Some","Fields":[8843]},"DirectoryPort":{"Case":"Some","Fields":[8873]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:215:208:a2ff:fe0c:6c04]:8843"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lantern"]},"Identity":{"Case":"Some","Fields":["yeLqwXWgFANVxkclrR5gBOcHLz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3CsPL8h04optWgyV2pHkVwAGteYvJhCaLv8sAfRKq3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:03"]},"IP":{"Case":"Some","Fields":["217.170.204.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CamusprOTon"]},"Identity":{"Case":"Some","Fields":["ydn6fsBW1izJZx9IBPIqCSahGHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RO4XmN4DHqLrTW+KZW06fFcKhqodUAKd3iBa11wN9fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:40"]},"IP":{"Case":"Some","Fields":["93.95.228.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8af34cb1"]},"Identity":{"Case":"Some","Fields":["ydArFkS9R8E243n9+vSXPRoc4Hw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M51T2CNbDadUQvtJq4yx4YSi2j3gBa4wob5Y4cuTHXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:37"]},"IP":{"Case":"Some","Fields":["193.111.26.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["remember300baud"]},"Identity":{"Case":"Some","Fields":["ycHRGkDW9CwZQsrO1s964nAGWkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBpytwTN1IsiQhrgcd5TmtIMLgJhQ7xkAkWw3wE+c+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:44"]},"IP":{"Case":"Some","Fields":["23.83.91.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fit4research"]},"Identity":{"Case":"Some","Fields":["ybdauOYVecfD0B2ZztVq5U6TPLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/JYHWY8JCmL+QuWCM3OaaPS4etFnJ/mBhU0P8xVrGp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:48"]},"IP":{"Case":"Some","Fields":["150.43.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sybaze"]},"Identity":{"Case":"Some","Fields":["ybaMgCyiDD5PpG13FT1u3IDxPPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IToEuAtzsJaDeLPL12XymKW+haNT3Kowi8xBmG5Ovnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:53"]},"IP":{"Case":"Some","Fields":["92.243.0.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:feb3:28bd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charles"]},"Identity":{"Case":"Some","Fields":["ybNKvyww2la9AGt7QmEAmAcr70w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eJylEZrmQpi5Tj0mfft+ZuQwmOetV5103/ajiukhRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:52"]},"IP":{"Case":"Some","Fields":["54.93.77.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CedarHill"]},"Identity":{"Case":"Some","Fields":["ybFrXTf1McjGwCgeTsTwVuhFQdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfIiNXGjSwmIocF/1BCpJAeht7oMRrBFWBWM0XTEdGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:48"]},"IP":{"Case":"Some","Fields":["45.33.27.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:feb7:9351]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a123"]},"Identity":{"Case":"Some","Fields":["yZp8/rHMvLIOZBInLMhsk7YeKiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZeogzYOGRvBR92KIK3nGKXF4heurcrJ4w7dJDSAsHAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["3.145.139.153"]},"OnionRouterPort":{"Case":"Some","Fields":[30002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yY6jm64sax6kRA8UOdd0RIQ16rQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CBif5NLnKhbnc6YkUTLYf+FXyGg2AZ/iPy8EbxtTt3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:31"]},"IP":{"Case":"Some","Fields":["5.196.71.158"]},"OnionRouterPort":{"Case":"Some","Fields":[41899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:49e::1]:41899"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BrightestNode"]},"Identity":{"Case":"Some","Fields":["yW1q7XluG5V4m3Ux+ISKyOxhbDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bq2Y1jMH/UO6mAqcrvdDwR68BkhA+TSUR6UJtt0vWQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:33"]},"IP":{"Case":"Some","Fields":["152.67.79.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc04"]},"Identity":{"Case":"Some","Fields":["yWLYZa5ytvLvCOd/OxWJS5U5wrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M6knfPir9iVQdeQpAIfbcZA3ExHm4t0STRg7eyk8mW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:09"]},"IP":{"Case":"Some","Fields":["185.100.87.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay41at8443"]},"Identity":{"Case":"Some","Fields":["yVJYcuOqkmQC2JmAhaQJx7vfrlk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kks0OkZiJt0legKLXegqJw6w+Vg+tWdoYntVNa9MWWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamster"]},"Identity":{"Case":"Some","Fields":["yUNDMCtjGhOm9RDpZISWCUiOw5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sbmlwp1CJQlWrvDGjPVtgE5J/Ej/HPYohlFKn1p3rRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:54"]},"IP":{"Case":"Some","Fields":["109.70.100.72"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::72]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FileDitchExit2"]},"Identity":{"Case":"Some","Fields":["yS3pIcNKyxwbTqfSwez0oKzSygA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEUOkw7Ux6ZuekF7UXFtJWyKu+864yT1OItHWvFwK2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:03"]},"IP":{"Case":"Some","Fields":["45.134.225.36"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ySpV4tTG/vVofzl4Cf5WvK5Kwjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YAH7CHddZMp1TLtaZBZ/yn637UPZk9rDZa5k5VOVxuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:48"]},"IP":{"Case":"Some","Fields":["89.147.109.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BantuRelay"]},"Identity":{"Case":"Some","Fields":["ySeLYCAl+uQ5u1VLxOEYTP8aKr8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a80Gj2LQi36nQtinKG7y11pqBf9AlITxuzfJo2L5nVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:45"]},"IP":{"Case":"Some","Fields":["54.251.87.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cowcat"]},"Identity":{"Case":"Some","Fields":["yQyjt/4BoUa4Jo1Wl33EosAkueo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKGdhSG0lyus1M8dGuy0tEsnQNnwbHYK3vbXRtUAK4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:39"]},"IP":{"Case":"Some","Fields":["192.160.102.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::5]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yQV8HFofdQzVKw/Eo7ti0Tmvmuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmNwKir9BeVxbf5fHRqGOjhpJMDziEctn4pI5NvqhEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:47"]},"IP":{"Case":"Some","Fields":["46.4.36.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:300e::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iceman"]},"Identity":{"Case":"Some","Fields":["yQVtMLz5FmW4KPN6hdwSfKxjI7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfVndLuiwT3jp0vWt38cxFYrypNbA4DxPVMjdcYx5x0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:33"]},"IP":{"Case":"Some","Fields":["95.211.184.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AAAAAAAAA"]},"Identity":{"Case":"Some","Fields":["yPSkdTbadXQZzuRF7UrVVuVr2Zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iMiZvzKK5b2X+6srprAdkqJ1kZfqj72oM3KYB/x16gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:07"]},"IP":{"Case":"Some","Fields":["86.124.228.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange003ru"]},"Identity":{"Case":"Some","Fields":["yPQC/fieW1HYYq1o2MF9+lo3G6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UWDQ/sksaWFrsXybKFFkU/gPQ0KbWwRwISK7F7lD+yg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:26"]},"IP":{"Case":"Some","Fields":["185.22.172.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:29::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pros1"]},"Identity":{"Case":"Some","Fields":["yN4m0tEZvn9Qnmcu4aPV+yXcupc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yp8TGSgmTtENi7GAnUKYuVLHgUEVbJ0jzQjfSC6y8d4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:30"]},"IP":{"Case":"Some","Fields":["45.58.154.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saucer"]},"Identity":{"Case":"Some","Fields":["yNIH/gHSQfmshvKihRzcLmmY5Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bSoMwWyNq+79il1maD0vFhu9Amg7KUifff1cwMiaVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:47"]},"IP":{"Case":"Some","Fields":["51.15.250.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cressington"]},"Identity":{"Case":"Some","Fields":["yMO5oRgwMUwVOM8Zq8OrJljtaz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QPDQD9JNUbdMg3q3uomfZcIuwUlYayeT/DkZ2LdlXyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:58"]},"IP":{"Case":"Some","Fields":["190.10.8.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rigel2020"]},"Identity":{"Case":"Some","Fields":["yL7z3wevOLaN0NqRsjsZ69LHZn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91CswAQpJjJnadGGn6xAaavz5fNti3PbfRzdfpraHJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:07"]},"IP":{"Case":"Some","Fields":["94.16.122.65"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipbb"]},"Identity":{"Case":"Some","Fields":["yLcV+WFo1BTlgKmFY8H4Y3LT/iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zmC6jN+1zxH9/k+Fy/QmbWjevLyFO2gu740mIiCGgV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:02"]},"IP":{"Case":"Some","Fields":["185.220.102.241"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::241]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dustsandstorm"]},"Identity":{"Case":"Some","Fields":["yLNPwxnjMBhZ/bvCOTNwgTAviY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4mr1908JDtsGjQUlkugRDq6EKjp7raLYWDbprEctuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:09"]},"IP":{"Case":"Some","Fields":["202.157.177.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei07"]},"Identity":{"Case":"Some","Fields":["yLI+pUP61vgg5YQag4DcKMg66g8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["76cx9XrQ2CIRVlrg8fKUsbgivBsq4U6XwOkQXR1j4gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:53"]},"IP":{"Case":"Some","Fields":["37.120.187.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:64f:5443:78ff:fe62:7ad8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mayforth"]},"Identity":{"Case":"Some","Fields":["yLDHcBh08LWvzasLriMf4wPIIo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y3UeV+Tm/67WetC+SXTPqbCYaD3FfO4O2kmksIA33cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:51"]},"IP":{"Case":"Some","Fields":["43.252.37.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rucola"]},"Identity":{"Case":"Some","Fields":["yK4m1IGVBNAVetTF3n1aCn4ZDRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P+Zi0VJvrPb+6x/003JZRW5NCEgMN+WFUX09uJE6+YI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:29"]},"IP":{"Case":"Some","Fields":["109.70.100.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webhusoB2"]},"Identity":{"Case":"Some","Fields":["yKtwRGg/gmGPrV1SG1XHeyn8ByI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wR9tJJoPx3Uj7Jeb+OaFrGXCpaSIps1TqypVBko5OhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:10"]},"IP":{"Case":"Some","Fields":["89.58.42.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:fcf::]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM05"]},"Identity":{"Case":"Some","Fields":["yKny5CSxnkeatbnPYqbJprOsElE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lw/nKbqcZuyDBiAl1gU4ID73VuXVHHXBhbhWOrsrjZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:02"]},"IP":{"Case":"Some","Fields":["185.239.222.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapNYC"]},"Identity":{"Case":"Some","Fields":["yJnyDcgAUDfIaw5EeFc4PZX8dCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ipE6b2SuybffGjKvO5u97AzmVEag6k3gLEs7CLyiRA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:58"]},"IP":{"Case":"Some","Fields":["67.205.139.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::237f:f001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman2"]},"Identity":{"Case":"Some","Fields":["yJYdu5sePb0RxSeciyq3GAvezIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9sA/O8Na2arwshYh6uOZT/JkjtRzRSyaU2HlI+x1Hvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:06"]},"IP":{"Case":"Some","Fields":["85.204.116.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:35c:4901:8a03:8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jabberwock"]},"Identity":{"Case":"Some","Fields":["yIl4LhL3OOIvCEjvVZyealBBt64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GGu2MrW32YIjIvG55WzN4U3N2U11Xpk+ZF491FSCxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:50"]},"IP":{"Case":"Some","Fields":["137.184.42.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::4f7:f000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809nl002"]},"Identity":{"Case":"Some","Fields":["yITEmb369+fV5mZya8Ox8j0vH00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["id/miQa7qnbVyNbqjH2jO7s6rsNEIdfKncLarPYOe+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:12"]},"IP":{"Case":"Some","Fields":["5.255.96.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:164::99]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waphul227"]},"Identity":{"Case":"Some","Fields":["yHPZ2N88tqT5KwencZPxoTk2R38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPk8c0h5q8J3rqgh0BW4WqnKmt9Ql8GiOPiRToQAsI8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:23"]},"IP":{"Case":"Some","Fields":["38.132.178.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["newton"]},"Identity":{"Case":"Some","Fields":["yHHJFImIbV4ulME+oaX9xLbcUgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3SvDwWrZ2Fg6iz3mdIioBV7Ibc64zTAjH4jNSvir+pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:02"]},"IP":{"Case":"Some","Fields":["203.211.120.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WdTor3"]},"Identity":{"Case":"Some","Fields":["yHAJFqyhHGnpimmlOvEXpKvukQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6bhejdDn9NMHT7ptJNL/EJTHGFgf6LOLVVPoANuRR5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:52"]},"IP":{"Case":"Some","Fields":["54.37.136.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xkcd"]},"Identity":{"Case":"Some","Fields":["yG8PdLr5G/zeGAB3zZfDOdz2ryg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFbSHOep/Zh4ND5NERhwDJl5AzqWX40FICxqOjPEZj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:51"]},"IP":{"Case":"Some","Fields":["144.76.223.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:1e6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charon"]},"Identity":{"Case":"Some","Fields":["yGxTjvCiTgEDQvMNvKzCp+t8qDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWz+K/4Od8o3+2/QOnve86QnhSM1aYIRkXbb3EkgQuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:31"]},"IP":{"Case":"Some","Fields":["173.249.8.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:1074::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra66"]},"Identity":{"Case":"Some","Fields":["yFswqDVugmQYy5ASVLdZX+FDBhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p2IX/0xZpsIxk8nOyfQ3O4fG7x4GL1AQ1gweqD+Rm34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:53"]},"IP":{"Case":"Some","Fields":["107.189.12.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["athenaharmony"]},"Identity":{"Case":"Some","Fields":["yE8kjTskZVzJbhezz0HguI0olH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IYr/jxbgG7Bq8L7SnhWdGGqJPIYIy8Weov6FgIxOsk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:15"]},"IP":{"Case":"Some","Fields":["95.147.65.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra74"]},"Identity":{"Case":"Some","Fields":["yDHP66JAfvSdkW9okPe5NnqotJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1KisQ/eWJRxoB9aJM6K9m4SLEsnwhH5mVMjukyRGEFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:46"]},"IP":{"Case":"Some","Fields":["185.82.126.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["yC9GE6Jvfihro9hc8ntgJ8Nf3yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KyQwj5ZY18iSiv/ws/jk8o7k7BYebNuqWu6aYly7eVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:36"]},"IP":{"Case":"Some","Fields":["5.45.98.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["yCmzxVfLZEpfq1mOjlcUmxFcSF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NZsaXrbjV0ljVUZteIwJcs8NAvSh1lDHZWh5BG5rorw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:00"]},"IP":{"Case":"Some","Fields":["77.68.75.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:d4::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["yB++tr+l0XzFcwMlwp+YrwDuzU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qG+W4Mw3x6Lhu80DW2rCNxUActiUOI6ZgthlnDP50Jw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:41"]},"IP":{"Case":"Some","Fields":["185.177.206.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::141]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Moonbird"]},"Identity":{"Case":"Some","Fields":["yA60txzotzssJXqmNHOab3ZVVhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jf0BR/p48x0rdhdDJhZ2UtzTtFpDwjJvmG8RM5ia+Qg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:04"]},"IP":{"Case":"Some","Fields":["198.98.59.243"]},"OnionRouterPort":{"Case":"Some","Fields":[7101]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MCdrKNe2"]},"Identity":{"Case":"Some","Fields":["x/9gbVnH9r7KijQdPPEbQj84LV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HOy5aPtgzZGQTNGMAlOHqKsbrxlCMsV8x3fEP0qVskE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:47"]},"IP":{"Case":"Some","Fields":["94.16.121.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OsamaBinError"]},"Identity":{"Case":"Some","Fields":["x+n4KiSlvwRiX65qT0sMWn9EG90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lejdaESR0jmdOqREAJ/cGeDSWTQ6HAjaAk/2bEaPEag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:29"]},"IP":{"Case":"Some","Fields":["95.216.140.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["x+SmNnA4SfEvn4Q4/vomtp/fJBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["12rG2yXJAujKCOsiAtzH+PJ7LF2Kv/dVStQolaO5pXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:14"]},"IP":{"Case":"Some","Fields":["45.132.158.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:4592::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lptr01ORFzF4Zq"]},"Identity":{"Case":"Some","Fields":["x9Bm1nJvD+oDY5kSL5/eSWh4qT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HfFCH6XQ3xnPVwQje/4tXCZx+iWKu0WF+mCrsiqaTok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:42"]},"IP":{"Case":"Some","Fields":["213.188.235.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webhusoB1"]},"Identity":{"Case":"Some","Fields":["x8cGaUfrLhbJlO/633uwal8eXiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aM+mrcgrB5BMvbqHuaQDAZiPbaGbYr0+Sxpp4rkJn9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:10"]},"IP":{"Case":"Some","Fields":["89.58.42.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:fcf::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedAssange"]},"Identity":{"Case":"Some","Fields":["x6grRi7+9EZRx5nL0wYh/g9Io+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j86DRS8Ja2lB2ewtjA5V4eYmMq6WblygLQ0fZeURZdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:07"]},"IP":{"Case":"Some","Fields":["23.154.177.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stars2"]},"Identity":{"Case":"Some","Fields":["x6RshmuWP8D1wOnc43XIadQPI+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YNlnAVpD0oMoDsYEQoQYhYVU9//g56OvI5Cp013/fSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:50"]},"IP":{"Case":"Some","Fields":["158.69.204.36"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["x6AW4fhc991zkUrkD1W3GD0RuP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KF9zFsJUXI+zbtZsTlLatmZeIUjlmdvokG4clFzscF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:56"]},"IP":{"Case":"Some","Fields":["185.220.101.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["x51P5uyGhhI5btZs3ednj470Zqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8gAqqFt0GXFhORU91EpHVYYZZxOxvWJr/dCXZWXwqVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:03"]},"IP":{"Case":"Some","Fields":["198.98.57.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zeilentrafo"]},"Identity":{"Case":"Some","Fields":["x5gg8rNIWyWdQIUWRitwDpkASHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kSZ/QFAEeKLfIch12uW/cr+Gd8gKgMr41vBAE14Ge0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:12"]},"IP":{"Case":"Some","Fields":["94.199.214.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["t0adwarri0r"]},"Identity":{"Case":"Some","Fields":["x5RtmhkrvkTByKkmqLE1rEldZjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qqo2kkxKjjXDPsQl/u4/89z1G3LBW16RVCdNz1YnT9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:30"]},"IP":{"Case":"Some","Fields":["198.50.238.128"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xqw33ds"]},"Identity":{"Case":"Some","Fields":["x5AuOeQjz8SXEP3/HOELo0Zz0KA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJMgiB+FSzNhS92pbHtORph6OqzAHDytKrg78xdJhbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:57"]},"IP":{"Case":"Some","Fields":["172.105.109.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:91ff:fee0:ba5d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex46"]},"Identity":{"Case":"Some","Fields":["x4r/7uMg6g+GCWF2PmE/0vrIVfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLGIyYAprLfmRMp4bcMZ/AQpziWOuWVr49+8/m+Qnv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:31"]},"IP":{"Case":"Some","Fields":["199.249.230.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e645]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RealityNews"]},"Identity":{"Case":"Some","Fields":["x4ZdWO7+lrkjM+PIvjwKqqAADu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URGwMTuCT/vPggf9cTMEE53HJ9iCN0huEEU60DtoIpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:28"]},"IP":{"Case":"Some","Fields":["79.77.182.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1b62::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["busywatchman"]},"Identity":{"Case":"Some","Fields":["x4P7HMSq6NppSKzYoMBwTQrbpPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KInkIqCf/gGnBnmLOojhtYcsMHTUAdgcmPpnImmG/0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:09"]},"IP":{"Case":"Some","Fields":["195.230.22.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MINJUS"]},"Identity":{"Case":"Some","Fields":["x3jZJ2ahu04gand7FN3XJZ+x1zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sFygM4RdE/88k7hWq3/HhCb5PF6LFRRDrj2JUX4v/9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:27"]},"IP":{"Case":"Some","Fields":["95.211.118.194"]},"OnionRouterPort":{"Case":"Some","Fields":[7002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tembi"]},"Identity":{"Case":"Some","Fields":["x3NfsDaQlO1jURMOgfPf7SXWf4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AeYtDp9YP3zBzUgWxbYpyyB8RFMvVORBa9A/51iqzS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:48"]},"IP":{"Case":"Some","Fields":["5.45.98.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:613:9872:48ff:fede:289d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["north"]},"Identity":{"Case":"Some","Fields":["x1jgNYfPHxeKx//T433MkdrHuYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cuGvuxGIxQ7bLHgbgeh0WSQgQRzino4/ho9x5QEE2W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:18"]},"IP":{"Case":"Some","Fields":["185.237.96.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["x1Q2b0bf+uqAw5SxvO0uzVbvsJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XyI+v+NgH1c88G4oDiXCfDS/rrai/JTDpquABto59pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:36"]},"IP":{"Case":"Some","Fields":["45.90.161.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::f05d:92ff:feb5:2932]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Midgard"]},"Identity":{"Case":"Some","Fields":["x0bxrEfyw0nkIJxeecJ+YDgJHjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["avzZjf8S4r4vp6HWGHUdruUPC3v7N4VKv7OJNV5yuKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:32"]},"IP":{"Case":"Some","Fields":["83.137.158.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9023]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["xzljJd6QceWO71pC/Uh/gRF8/8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0hyXWSzYku83ULUyVpyw/jJu5y+JM6rZ24daIhRJXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:52"]},"IP":{"Case":"Some","Fields":["45.88.200.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:45:88:200:0:95]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt98345"]},"Identity":{"Case":"Some","Fields":["xzENc1F5occpfmg0qjTAT2ylPU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hunsDgYAaddXmMItMDG1xvLKOruQY3k13uaP6QfxwGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:09"]},"IP":{"Case":"Some","Fields":["185.245.60.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xypQYd1esinN8Wutp0CUPuru/lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SfRoW3I8TAVKTzg7tg7MzaKeAdyRppMlZ8aR+Z+UNmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:46"]},"IP":{"Case":"Some","Fields":["136.37.102.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[9930]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrh3W"]},"Identity":{"Case":"Some","Fields":["xyog/TP7Kh5ohJVoFIjDcVpmy6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MwVV3XMdYumzmhxConl26UshRpXbMuIndKALMIAjuIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:41"]},"IP":{"Case":"Some","Fields":["5.255.103.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:a34f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xxeEOR8dolYlDAP3rL1IAdA0S7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mS7w/SGqe47VXrfJFGy1BqqyClFSdUeZiSQnUraA6Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:58"]},"IP":{"Case":"Some","Fields":["5.45.98.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["xxBvDGp88PWSy6/3x5vYEVOxtfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k8CZJ2toAlPFJz4KIcSTbcY34tISki0euoUAdoulXTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:33"]},"IP":{"Case":"Some","Fields":["185.220.101.207"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::207]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PhilosofRelay"]},"Identity":{"Case":"Some","Fields":["xwJedc+JV3HEBpOhekRRxUKbx2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VMT2B8JOFi0aZ1jqpzrBFkS8w0WsNMP9g94MHAOHDM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:35"]},"IP":{"Case":"Some","Fields":["194.147.115.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1142"]},"Identity":{"Case":"Some","Fields":["xv+ywXBZ4Tw3NllRWYMwzUkGWwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wjY9j0LH0JbmF3KHwLuhKQXpBWbHwKLNNtm6OoP4PB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:18"]},"IP":{"Case":"Some","Fields":["185.220.101.142"]},"OnionRouterPort":{"Case":"Some","Fields":[11142]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::142]:11142"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobo"]},"Identity":{"Case":"Some","Fields":["xvRgnTDBEOvhj1h1JAZYQe79sTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYa1n2O96QY24yYaZYDqAHSytmeDGE+MWeoIO1C1HxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:34"]},"IP":{"Case":"Some","Fields":["195.43.142.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LSRodentNinjaRelay"]},"Identity":{"Case":"Some","Fields":["xu8RXZlzF6MseErA+ZRK4Fgco34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UoAn8N80LvtacPb0UxKdhhj5WRg9bFuz1j6ozkU3o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:44:04"]},"IP":{"Case":"Some","Fields":["52.47.91.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrankhul"]},"Identity":{"Case":"Some","Fields":["xu19N6o8yqWGsi4KMLOVpeWCRAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zux3EZlGCr7W+K6+v7x/5vhfQK5+eObg1oyl/vD/fBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:59"]},"IP":{"Case":"Some","Fields":["185.220.100.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:12::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl4tjdevde"]},"Identity":{"Case":"Some","Fields":["xuzPKsE5ISQlJq6URGE90+dZXaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1NsDg0sAcm6VQZUY4nkFGHsI1Nm5bzz/LGnQQdPZD10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:17"]},"IP":{"Case":"Some","Fields":["89.58.45.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange023gr"]},"Identity":{"Case":"Some","Fields":["xuORDLrcptLX6TKrMaA47dam+3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ml9TH7KFHYfrBPbUgJs3ca8Y/mlq/hh+neqN9Y/PAxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:59"]},"IP":{"Case":"Some","Fields":["185.4.134.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:110::2d49]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsten"]},"Identity":{"Case":"Some","Fields":["xuIzRenbUyW2KulWym6K5tq20b4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["18A44JcOAkdDgcjQIahEyXl/RZ64btd6IOc5Er2NZsE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:12"]},"IP":{"Case":"Some","Fields":["178.174.235.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xsLzOYNuKh7/ZLna/LAMGg1I1cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/yPNC/t7CJEk745d7FH/TVZJ9M8Tk5SzBzZqgzoUKKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:15"]},"IP":{"Case":"Some","Fields":["94.23.150.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0172"]},"Identity":{"Case":"Some","Fields":["xrR+Hw08dfNvoAz2Orq7mE3ROho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0hwn90ra6gVuTAcOM9U7ImGjL86ZoObTFYluEblkhLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:38"]},"IP":{"Case":"Some","Fields":["185.220.101.172"]},"OnionRouterPort":{"Case":"Some","Fields":[10172]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::172]:10172"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesutochuu"]},"Identity":{"Case":"Some","Fields":["xqx2J0A1VkmSvge20SCJmMZnorI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/WyOPl2N1cbVwC6uFKh5X2WkpiZ1N7jEeGrYq1XYjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:40"]},"IP":{"Case":"Some","Fields":["14.9.101.224"]},"OnionRouterPort":{"Case":"Some","Fields":[8351]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[240b:13:65e0:900:8557:7d07:ef6:9efe]:8351"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["T0NY"]},"Identity":{"Case":"Some","Fields":["xqlavtlW2VsBQ18ja+ZtFyhY+XQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wgKWW9yOvSrPtkLk+DPudaTaK0n9cjdMbYnthg/BYdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:12"]},"IP":{"Case":"Some","Fields":["45.15.141.162"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enigma"]},"Identity":{"Case":"Some","Fields":["xqWLxf4KSV6eMiwjVhAeJ9sVLZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XnlqQMAO1ZghBHogYrFXSfzZE+0t1ckUoe31lQ6R3XQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:03"]},"IP":{"Case":"Some","Fields":["193.214.214.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notolok3"]},"Identity":{"Case":"Some","Fields":["xpRpflrzl5Tfbs1+9qCzmXLYf2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2k96vnKXNqH37+WBybAlpTeoMxwvhgDM1ilCg9KUX3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:42"]},"IP":{"Case":"Some","Fields":["193.56.240.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipab"]},"Identity":{"Case":"Some","Fields":["xoiz75qwNU6yeUF0UZu57Z5kZ+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["08Si/2ibOdi7VBas4e0qsUkVn1ccrT21d26E3Ou2zSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:49"]},"IP":{"Case":"Some","Fields":["185.220.102.240"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::240]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE66"]},"Identity":{"Case":"Some","Fields":["xneolA68/JrS3SRp4jCuB9xT7Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WedrMX6d5KEGwwdaJiwOoHILax9ODDTQEoeNe4L29ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:25"]},"IP":{"Case":"Some","Fields":["37.221.66.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:107]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra33"]},"Identity":{"Case":"Some","Fields":["xnOv5c+cxJ5fhk8PgNX+KBSlIjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C4LJlXkxiNe57ljEn0Y4eeY6AXPrff018emCMHNr3Lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:24"]},"IP":{"Case":"Some","Fields":["104.244.75.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frxctxr"]},"Identity":{"Case":"Some","Fields":["xnKVvtW8PmaVBZFZ4fBLJq1Oh9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xR2ThRu4zw0bBu00KYTVz39XhYNDEuE62v5yfvfdOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:42"]},"IP":{"Case":"Some","Fields":["194.45.76.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:4002:600f::666:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Northpole"]},"Identity":{"Case":"Some","Fields":["xl67PuXEitIKH6xjozZa8S3zRvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vFG7d+f/YMNuLaj8IoWpxqew5Ot+TL+UkEucMe9K/LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:37"]},"IP":{"Case":"Some","Fields":["88.195.223.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theseekingchild"]},"Identity":{"Case":"Some","Fields":["xl3kpzgLrKyUeFYZWdxZ3R/14bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MiweFa3m8V1Gn01reH5i6nHa4+7+y4LivfhJ5HCNqhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:44"]},"IP":{"Case":"Some","Fields":["103.102.46.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xluagOpcb6MiUeqvppHfbcn6reE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wauvN5g9PQbvVH95wCxwssOvAR7WivI0GFaLiS2Bvy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:17"]},"IP":{"Case":"Some","Fields":["88.208.240.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:b1::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marcuse2"]},"Identity":{"Case":"Some","Fields":["xla0Gu+0ChQZZ+v0nW5pYDybShE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aLtQs/eaIdd/PceSFNfGXXQWX0kXCnh2jyrn6vxgtqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:05"]},"IP":{"Case":"Some","Fields":["178.20.55.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1b88:4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexrelayde1"]},"Identity":{"Case":"Some","Fields":["xk60VTqjCNj7wxTXO0QXjkyxHDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DkDETDX07s+6SRUfqP8WYEhY9FfN0Bn6LkIYlqvWakg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:42:12"]},"IP":{"Case":"Some","Fields":["148.251.183.205"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:cc::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc16"]},"Identity":{"Case":"Some","Fields":["xkgCs4tBqPIPiEkyhAQp1vYR3LM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEXNI00geDFpaVdG7KIkGxq4ZuyAl/4mkCdM4MyDREU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:45"]},"IP":{"Case":"Some","Fields":["185.100.85.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["xkNLo7kyJcb+2qMmPYUvkU+2YaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y/KSkDVR4l7FVtx5vgRQxvjIYeY+WhI4IokR4t+f35Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:07"]},"IP":{"Case":"Some","Fields":["159.223.217.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::13d8:4001]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lapras"]},"Identity":{"Case":"Some","Fields":["xjnfizjqLhrS9VDyYeW4AyzRRIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lj9toc2criTpTgXIBqIqwxZ9zsWbWEzLkagDHLr3ock"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:02"]},"IP":{"Case":"Some","Fields":["172.127.92.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["xjLHdLbYRgAj9mSMX1/rePYMwhw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q92cnxFZQlVbjXH1oYJacn8f9Isl4Pgr4ElqAfCP5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:26"]},"IP":{"Case":"Some","Fields":["23.128.248.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::18]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xiP5eFjdwg3IAJgmDf3wU8YxMck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cf+Xq5jcd/VpWZSxV+kugbCw7IXzxmWYNtV8t3NbUmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:52"]},"IP":{"Case":"Some","Fields":["188.68.49.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting24"]},"Identity":{"Case":"Some","Fields":["xh0b56Q0pXxgpnuY/JClVR395vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NmIPpa3Rxnky6AjXQ85ULxqbODz/Jcg1PBjNAlVkNhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:36"]},"IP":{"Case":"Some","Fields":["185.103.110.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sam"]},"Identity":{"Case":"Some","Fields":["xhlBEtvtjHmBrVxQXLJD0bqJUL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["84Uhcyh3TYQ78Lx5mkVNMNq+H3Aih1sTnjQwdwPqoyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:02"]},"IP":{"Case":"Some","Fields":["142.188.85.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FCKPTN"]},"Identity":{"Case":"Some","Fields":["xgHfqzMG7w9+3zlvt3IGF1L3b4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVMiat4z5k07Dy9+46omAEZIXXahoWBDQenCCMCEdks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:56"]},"IP":{"Case":"Some","Fields":["37.136.151.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlliumCepa"]},"Identity":{"Case":"Some","Fields":["xfIU9/nMvwkyTJqgMnYBUCQ6GWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNgp4e/hDqQRjCAu5p42YCfLsAmKlWSJ9Ri4KKueNFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:09"]},"IP":{"Case":"Some","Fields":["51.178.82.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HjelmEnterprises01"]},"Identity":{"Case":"Some","Fields":["xfBZGha9aOuIFw2SGw4zHxgOYks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xE0YhpSgqK1gOHqfSp52Zb30kXKXP+Are4OK/WhVhu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:22"]},"IP":{"Case":"Some","Fields":["192.121.108.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vigilance"]},"Identity":{"Case":"Some","Fields":["xfA+enmMojfnvdRAkb7+NfL1muE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p9tDV7qiIAdFAmJHWQ0F8vISKd8SXsFabRzetMqM5NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:19"]},"IP":{"Case":"Some","Fields":["87.236.197.123"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BridgeMcBoatee"]},"Identity":{"Case":"Some","Fields":["xewjsFjSdfjUjKFycninnifpzPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2NO9POtdZz9FusL9TlQBw5LhA7Ru2n72eymSWP+tycI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["142.132.171.253"]},"OnionRouterPort":{"Case":"Some","Fields":[7349]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:9d01::1]:7349"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xeunJOLRkhTp1ipHz0w/stuUYZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CiP3Z74q+BjPA7mbSJ7IGof2cnvhqjM/pDnP/D3NGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:38"]},"IP":{"Case":"Some","Fields":["93.95.230.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anoncicada"]},"Identity":{"Case":"Some","Fields":["xeoyctnrnZjnT0U4XdVSpHsGRvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DZHlZPUGuzLRCSGggf2t1DdGC6e+IVEMkfiykpF/scs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:27"]},"IP":{"Case":"Some","Fields":["51.79.71.20"]},"OnionRouterPort":{"Case":"Some","Fields":[3304]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TreeFiddy"]},"Identity":{"Case":"Some","Fields":["xeQg+vBWgO5ZBUKuchbHdgL+aNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wbOpmRIkXlUMShr/3FTIT01kEvrKY6WUekiGJMNHrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:25"]},"IP":{"Case":"Some","Fields":["64.223.229.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pudzian"]},"Identity":{"Case":"Some","Fields":["xeD/aE+kN7kF9TruRXSdqxho1dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wwbmvG4fjWqtNU60Y0/bt8JUriGhRT6VUGrAI/gctS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:43"]},"IP":{"Case":"Some","Fields":["144.24.163.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venusisland"]},"Identity":{"Case":"Some","Fields":["xd+guEq7AZA5IzzUo8f7kGJ+Y6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P2gSosogGsFwHl87KVpNhsx8Q8HLPy43zHnoa+bcOwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:37"]},"IP":{"Case":"Some","Fields":["47.242.236.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smortRley"]},"Identity":{"Case":"Some","Fields":["xd+Vq6Ypn5n1ApktRv6aZNqxjKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tVEnvasEPunkcit3aVzNuJmhLWKGWrmocKwj8J4v4Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:05"]},"IP":{"Case":"Some","Fields":["65.108.130.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:2e69::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aggie"]},"Identity":{"Case":"Some","Fields":["xdXmNdEVySHAYJKf2+oI8hQokZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["To2wiPntWBJPuV1BC2my18LsAfK+cMrzxO1gELdtqa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:21"]},"IP":{"Case":"Some","Fields":["107.170.219.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:1:20::24a0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohsally"]},"Identity":{"Case":"Some","Fields":["xdVdEfJsUqa/7o3SPCUFSKpn6aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ALtEfEqZGyeHU7S0BhPqdB0MqUCbpY0iNImfDdO4X9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:43"]},"IP":{"Case":"Some","Fields":["93.95.100.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoychev"]},"Identity":{"Case":"Some","Fields":["xb8nVg5LAHNl+6ltMvnnRhQhjI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91jDkKPEOCWsiTC+x1pk+OCnuwZDWkXTsZw0QxkmoWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:41"]},"IP":{"Case":"Some","Fields":["104.238.167.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste23"]},"Identity":{"Case":"Some","Fields":["xbj7wCN/SgTyBVEo8lff9unBRbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["agy7FNneA+QYSd3lf/IpHEuCs7xCJ3LPYOfUo5KHi0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:24"]},"IP":{"Case":"Some","Fields":["89.163.128.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::10cc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leshy"]},"Identity":{"Case":"Some","Fields":["xbYi5SZUtXCt/WVqxht0zIS77pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vZI2cZfLroYF1HYnMCU+KvNdv/ZIk5/RJ1NeL2D/AdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:25"]},"IP":{"Case":"Some","Fields":["159.69.12.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:75d8::1]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["xbBF1vyn1sSc5TOXWQzbw3OXj8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nh/4QjHfeBnYqjkePNRTuMCuj8QtqAatH+8b7MWz9hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:44"]},"IP":{"Case":"Some","Fields":["23.128.248.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::219]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jivin"]},"Identity":{"Case":"Some","Fields":["xab+5bw74Z9bnrCGypXa05PYpPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m375qp0pi3FK8blnFBzkgtkiYOnNdzCRPs3aTkLpMlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:50"]},"IP":{"Case":"Some","Fields":["103.28.52.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:df7:7400:c10d:216:3eff:fe79:59d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex17"]},"Identity":{"Case":"Some","Fields":["xaU7zBdO+P0NyyI+Sqkp+lV97bI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lHaIzSe+fnUFqDafjVgM7whTLqmDqv2l8d64utHIzvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:06"]},"IP":{"Case":"Some","Fields":["199.249.230.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::107]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC1"]},"Identity":{"Case":"Some","Fields":["xZ4HlDc0DjrRTmeFwKkaW28yhWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rvqPaojpuY2+oBaoABiqlUxqqk2ZMC7K9GXlEqbxbjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:21"]},"IP":{"Case":"Some","Fields":["204.85.191.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xZDzZkRWXrAM8ZZi/BE90WYMfoI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["czGTvZ0tygZ9n8ABXvDreKzR8I0tfDuK4ffdyWlO5Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:01"]},"IP":{"Case":"Some","Fields":["23.128.248.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::bc5c:57ff:fed7:5ad3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gopherHeaven"]},"Identity":{"Case":"Some","Fields":["xZCc8RfF/nidkmy3IeHBXA9ssyA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sM8Y/wViAv/Pmu/liFZiaFMfHcmcMTwIv1lh01C6nC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:03"]},"IP":{"Case":"Some","Fields":["206.212.229.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xW+RAiLSwfrZ+noVyptAP6ASj5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLrAXJa0dBp52C/r21CPCxp1nb5CmRCfXdmgrVT4rEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:22"]},"IP":{"Case":"Some","Fields":["185.194.141.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whocares"]},"Identity":{"Case":"Some","Fields":["xW6Y6TTtte76kyLV1IGOCTJfeoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IMy84ZSfecvyd2X6Jgmk7H8ddBIbu1vTvhmc8p30ji4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:31"]},"IP":{"Case":"Some","Fields":["92.205.17.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra56"]},"Identity":{"Case":"Some","Fields":["xVCfzO9yrIKDgod+zpMBGcX61iU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P8y9lYerQZjGwG5HftPyWkLcrnkuWazsONbPZj8VwuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:13"]},"IP":{"Case":"Some","Fields":["94.140.114.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DefCon"]},"Identity":{"Case":"Some","Fields":["xU6B6wR9fsHgWwrG5yO+G/XK9SA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bur2TAGtmCfLWzrFbG6NIQjw0LTpR9GUpEc+vDpT+Ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:03"]},"IP":{"Case":"Some","Fields":["84.61.79.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fedoriansRelayTor"]},"Identity":{"Case":"Some","Fields":["xUq388yrAbr2Gm9zN64fYNi7lA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsnIbMqdPywiGZlRJ+qiW7RFv7zzCDb7hzbMaa7uhUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:38"]},"IP":{"Case":"Some","Fields":["37.221.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:61b:85e:b6ff:fefa:8752]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["literalchaos"]},"Identity":{"Case":"Some","Fields":["xUpbCgxeLv9Lmxylyin/qVRbYm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5w/FT22hDnzkURjbRehMQxIOP1adAjRh52TwuzmoAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:43"]},"IP":{"Case":"Some","Fields":["202.61.193.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:58:9d2:88f:58ff:feca:3aaf]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xUaHNLVrWAaqB27GHNAIIlNMJLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xjkv1hC8ssmKf8tlr5PrulIucMB6A1Gfle4grHb7Slg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:41"]},"IP":{"Case":"Some","Fields":["185.207.107.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dystopia3"]},"Identity":{"Case":"Some","Fields":["xUOw+fXargpAPDubd+fiQOvDxf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJ2x/NC947D65yvMol1RZbHgy4Nl+QEhk3tTMbZNO8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:25"]},"IP":{"Case":"Some","Fields":["65.21.106.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:bf0a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xS96AmSufGUJdhZuoTmCUB7IEM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATmvXSZqt5rltoHq4r9sGaPQaNltZaHjqAnVAq5rxYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:57"]},"IP":{"Case":"Some","Fields":["188.165.213.156"]},"OnionRouterPort":{"Case":"Some","Fields":[52743]},"DirectoryPort":{"Case":"Some","Fields":[52345]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:a09c::1]:52743"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["xSiyLUuiIGOfnc6GpQu5i90vz7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1erztvXzafHbnPF+w74V45gKTa334DVUgG6734xNX90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:33"]},"IP":{"Case":"Some","Fields":["185.241.208.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bazinga"]},"Identity":{"Case":"Some","Fields":["xRUDQevkLC386ZYxAFFLV3+jCmo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B6BUkb9kPVmmFaeXjrq4IzzN+t+T8PhUcoTvPCuands"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:10"]},"IP":{"Case":"Some","Fields":["172.106.19.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorStinkwuselBs"]},"Identity":{"Case":"Some","Fields":["xQ9SnqH2PHS5l9pV9+w+JtpwrWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NDJCFxcMos6oyOre/9ZreySLqMDAdfSwOki/SMJcImI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:31"]},"IP":{"Case":"Some","Fields":["178.2.30.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xQz4XL4KMn4y7noAEWHEe7s4znY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cd0QuSX61F3mFUbu+8wcb1rd/CiqlpfbE+QOBwepsfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:33"]},"IP":{"Case":"Some","Fields":["46.142.147.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra90"]},"Identity":{"Case":"Some","Fields":["xPfsmZfwSXl6+vWpQaGwlpM99/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyAcdClaDM5HzN2qdJH7GCYPFieBConeygfzowZVZDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:45"]},"IP":{"Case":"Some","Fields":["185.125.171.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["keepthenetfree"]},"Identity":{"Case":"Some","Fields":["xONRBdUS8QRRYaYaUjItdwLeSbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0pwBLnxN/gcaum8fWx4OBYWrotMmCpKJhssLj8SeZVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:05"]},"IP":{"Case":"Some","Fields":["93.200.77.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["xM5Uv3zzVUM/9unYAkAHD2W2uW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ni41RhUGwnRLAucYc18FDuQyFiaSkmsRZobMyYM0oVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.52"]},"OnionRouterPort":{"Case":"Some","Fields":[10052]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::52]:10052"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI26"]},"Identity":{"Case":"Some","Fields":["xMUb6fCHCX4UVk4F2Q5WScrwm5g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a9LT2q85cZf6dO05yOMYWu/5thXvmBpITimKKZvGoH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:25"]},"IP":{"Case":"Some","Fields":["171.25.193.235"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::235]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["s0yb3an"]},"Identity":{"Case":"Some","Fields":["xMRiUG1U7cjvyOiOMvSuAUdVA1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27jqC74VYhPzw8ZQcejQb7cB3HDzCfCAYYiQjohACZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:37"]},"IP":{"Case":"Some","Fields":["87.171.69.190"]},"OnionRouterPort":{"Case":"Some","Fields":[10222]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lenin"]},"Identity":{"Case":"Some","Fields":["xL2/0QSe4dT2l3xCSF+UzV+XupI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5m9s1iH0AUoxNjeuZ6TcROPdcL1Fi6dSiN1EgsGHIu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:54"]},"IP":{"Case":"Some","Fields":["95.216.12.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:c5c::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FOD87"]},"Identity":{"Case":"Some","Fields":["xLhUNFgt8yqV1CyVUrudP9nw7eQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TeyBR1cpE0yIDvT32tKiQhK0leEepiU1m3K3CJXZlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:59"]},"IP":{"Case":"Some","Fields":["67.219.182.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff36:2:666::666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM11"]},"Identity":{"Case":"Some","Fields":["xKKXX+aEJrlCB0wFo8lpSVKxn3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r3OxSW8TFDsayenHhyJf8OWamGfyYPDrs5FOWO2cEGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:29"]},"IP":{"Case":"Some","Fields":["185.239.222.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange028usX"]},"Identity":{"Case":"Some","Fields":["xJ4+NFkRcqU0Ch035bTj0LkeDxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpOgtjA+4XYH+P9qSU6nM7h/YYB4fAXpxgSFsmuPxLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:09"]},"IP":{"Case":"Some","Fields":["185.196.2.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OzV8Bogan"]},"Identity":{"Case":"Some","Fields":["xJIH+9Uw+58wfGJvVb1QLaNiPqw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["39fH5yluHg7JyPkDNgmUmFMsCNNB3HmS/18UviLp0jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:59"]},"IP":{"Case":"Some","Fields":["175.34.246.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KaaTorRelay"]},"Identity":{"Case":"Some","Fields":["xG5nKZS1MZJzcUwrrgdBHLTvWh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/8OU2iZH6ZCvRcB/u/4mv5ddaRgi4cMzh0r+ILMyVno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:16"]},"IP":{"Case":"Some","Fields":["82.64.197.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5be:f320:5c7a:b8ff:fe7f:a026]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lamia"]},"Identity":{"Case":"Some","Fields":["xGVI1EwMpYVcF1zib1gX04+DPJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z+ApAeea3p65Z8WIyneUfJPWnzme3lrMpb+dgrD9lik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:25"]},"IP":{"Case":"Some","Fields":["135.148.149.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::b63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frozone"]},"Identity":{"Case":"Some","Fields":["xF/lxBrMN+TqRof/xUp08SRzna8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gv0c22tOako9//hql/DFbfNRrDNzQnmnBOXm1eQBYdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:38"]},"IP":{"Case":"Some","Fields":["144.76.166.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:428c::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EiH9W"]},"Identity":{"Case":"Some","Fields":["xEYedRwpz0sJSx45FTynZtYnJEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/KXPXlEz++jNNvfahIdYHMIe40bN7tJEM066bZBSrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:04"]},"IP":{"Case":"Some","Fields":["46.128.114.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv19"]},"Identity":{"Case":"Some","Fields":["xDFDs+rl+jZC8IKlKG2/9zQ3DJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pl+imZZgWQ5hXveRvWPBLHlUSYKLSEBAANRd6Gfp/5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:16"]},"IP":{"Case":"Some","Fields":["162.248.163.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xDANPAO7QfX2K66Pxix4rA6Y0bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3nfD+UkJoxT4wxHYxGQ9kzCqGABQj6Da755efKNywS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:53:10"]},"IP":{"Case":"Some","Fields":["78.94.141.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["xCpU7C0twjaUIu0c+5Hj0eH7Dxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mm6fK9nUJDQHJ4HvMOwfD5aOCSO0Mj17p4x7bN0XxGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:33"]},"IP":{"Case":"Some","Fields":["91.211.91.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei13"]},"Identity":{"Case":"Some","Fields":["xAzgGM/rcGVHJxhEvuRxC106egw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SDtVbbHy4UByOO6/zBcgxyMBJQ30idBU2rmGtXrb8pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:13"]},"IP":{"Case":"Some","Fields":["185.162.251.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5dc:242e:cbff:fe4d:cb31]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HodlMonero"]},"Identity":{"Case":"Some","Fields":["xAoOee6+PdphH4qkfg++5S2M008"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XCxvcn+at0+D/QB3K86hMgh3NBwlF2E97dKMHhD01Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:58"]},"IP":{"Case":"Some","Fields":["185.236.231.142"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kul5"]},"Identity":{"Case":"Some","Fields":["w/w3phlP3XBTGg5GzhmEQd+qmS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imgDhCQnh1He/qH60N6/kaeet27e53Jz9X5IhKhXZbw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:01"]},"IP":{"Case":"Some","Fields":["89.34.18.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie4"]},"Identity":{"Case":"Some","Fields":["w/fz4eMqZLIrLwc058ejEvmT0QI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smKadwnD0z3GHNKiLIxMgc/utms017r62PMRGVC+RS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:36"]},"IP":{"Case":"Some","Fields":["65.108.136.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imherefortheparty"]},"Identity":{"Case":"Some","Fields":["w9+3vUCwcuttRlePG+Ah/dnWBxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O7ZW4X2DP4JSvElLMw6WrTNtBCUZfpkZUc68irywGUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:03"]},"IP":{"Case":"Some","Fields":["116.202.55.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:439b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mangtor"]},"Identity":{"Case":"Some","Fields":["w7vxQVHQ3b0+zdj7PyPO/JZ0P/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e4hR0sVt/Vctghi8WJFNiqs1OJQ++kPsr7ODjGNbyeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:16"]},"IP":{"Case":"Some","Fields":["207.229.65.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexrelayfin1"]},"Identity":{"Case":"Some","Fields":["w6ywSSpkTielSbw83zt6EpGG478"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7nu/GguHeXmimf4VJBMLE7NahALLLKPwmwOs5NygZnU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:07"]},"IP":{"Case":"Some","Fields":["95.216.3.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:3d4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pataky"]},"Identity":{"Case":"Some","Fields":["w3+HwBJeJuas9UNm+iGYIJ6Far4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z4lVa7zSCcxOjXCflb9npbQPLoNCJ/YDhkGLu2W1rbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:42"]},"IP":{"Case":"Some","Fields":["185.80.222.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2498:f000:0:216:3eff:fea7:a0bf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cebollero"]},"Identity":{"Case":"Some","Fields":["w3r3i/ieaXlRysbf1eNSs2/laqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yx8OYkrypqc5IEquVYOTptg9Q1CXhV6ysTfD23Zfrfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:33"]},"IP":{"Case":"Some","Fields":["188.213.5.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torfan"]},"Identity":{"Case":"Some","Fields":["w3FPRBGKG9f8Vzlk7aqvU4th6ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l263LrcvrvHNzQM2jA6NIGjk5kBhn656E8IZrI6swqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:14"]},"IP":{"Case":"Some","Fields":["88.208.115.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev3c"]},"Identity":{"Case":"Some","Fields":["w2x2mSGYMpwNjzTgHQkr8qzgtrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["caUQQ9SKBcC0pcgv4w5fkuUSQTJYVc8dAhbY8sf4WMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:56"]},"IP":{"Case":"Some","Fields":["87.118.122.51"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:106:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jorcanada"]},"Identity":{"Case":"Some","Fields":["w2Y5HmeinOlZoVGT0M8vntlPNXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C/aSJP7ItUrahiQ5YFEu5Kyd4qx+hy30gCoV236negU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:01"]},"IP":{"Case":"Some","Fields":["216.197.207.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["w2HpGtYxx0vxCNIStjDr75th20c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLtHtlxx+KSYfmvLZTyXsGBjxOFRYRbr+s+dpdkrpEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["185.14.97.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:14:97:0:176]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themerrythoughts"]},"Identity":{"Case":"Some","Fields":["w1yfo/xQG9wiqD/AUQJzOVHjhtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdQjCudZe2EqNHgD09V/JIxE1qKYp1I4z0mxBC+/uEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:38"]},"IP":{"Case":"Some","Fields":["185.82.126.100"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::c0]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lachrymator"]},"Identity":{"Case":"Some","Fields":["w1A3cPRl2m9Un2Blr/e4z79iwiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fMkguHG3/VGae3/EM5VBYfJ6fKobakolDAhLmem6JQE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:03"]},"IP":{"Case":"Some","Fields":["71.79.166.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skibidibopmmdada"]},"Identity":{"Case":"Some","Fields":["w01qynzn9Uz+gzw3i62IcPWn+oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SrLnlR9nVn6NQVIXJ+qh99Mu7bOL55U3WGZJscx8ovk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:17"]},"IP":{"Case":"Some","Fields":["116.202.97.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:ba1d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLightSpecter"]},"Identity":{"Case":"Some","Fields":["w0OKt0BoL0byIWcpkb71EArqFDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HNHkdwFWN6xudfJl1vZ0CMb3xLZ4w5ziUI2q1kNd0iA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:00"]},"IP":{"Case":"Some","Fields":["146.70.80.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Cir0X"]},"Identity":{"Case":"Some","Fields":["wzs229V21N4UFEPSgSJXXaFZ0bM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TN3Wysey4am6i3xZ45GqSU45FL87QJvxKtwdJ0uNVl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:29"]},"IP":{"Case":"Some","Fields":["37.120.178.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mistersixt"]},"Identity":{"Case":"Some","Fields":["wzJQ09E96rsD/tzu71HPCXfy0Eg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5wfweLT6a2Z5DOR2Yn/AfQEymHApWali2hd8QXGkH+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:59"]},"IP":{"Case":"Some","Fields":["94.16.114.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:365::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RainbowBulls"]},"Identity":{"Case":"Some","Fields":["wy9LalCzVxtcs8fAEkIfcdzGL1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7szfh0MIy3/xwRR7uYG4wvLXsc8jGy9yBP+bY88axgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:53"]},"IP":{"Case":"Some","Fields":["107.181.136.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isekairelay"]},"Identity":{"Case":"Some","Fields":["wy7lPaT90Rm9mMLK1VYMvQ3561U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ePQ1xYKwdc9jWtxwHHuxpn8QjCXZ0Tmy9NryBKX2XI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:06"]},"IP":{"Case":"Some","Fields":["185.112.144.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FinkIT"]},"Identity":{"Case":"Some","Fields":["wy563gHskO9wF3FyJUKWb2xYdVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9KchFmK2xniDNqKLTXpJPDUQOvE9ou6YD1XAuOkbTtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:00"]},"IP":{"Case":"Some","Fields":["85.214.246.62"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43f6:7c00:7dc2:a993:e2ef:fea7]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["wykF0Y8rChBLA5oQ7UHD0MC98Do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRUMGEC7qvZe5LzMfg06/SlzMQwwcIgPHMJNhQKoYgA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:10"]},"IP":{"Case":"Some","Fields":["185.220.101.36"]},"OnionRouterPort":{"Case":"Some","Fields":[10136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::36]:10136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itrickl02"]},"Identity":{"Case":"Some","Fields":["wyd/vquUZnLUaOkKFrsCe0ysxTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t2mMGbi271Rsp6rEHanl6HK2oq/FHDRIF4i69GDuB1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:50"]},"IP":{"Case":"Some","Fields":["202.61.204.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5b:65a:6403:7cff:fecb:38b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor6"]},"Identity":{"Case":"Some","Fields":["wyY/S06SEnt80V6Pl0a0OCIzQko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i511tBCRTo+VF1N9krUbHobr50HVMUVKrw17cKHJogE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:14"]},"IP":{"Case":"Some","Fields":["51.15.91.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:819::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DicedOnions"]},"Identity":{"Case":"Some","Fields":["wyM7F0epcPcEPwkECfWJOpBk7eE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2NYMrfbu5JLx2Wtwy0y6ZjP1NeH/RCKylk09oT19mic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:16"]},"IP":{"Case":"Some","Fields":["209.141.51.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:2417::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x766c6164"]},"Identity":{"Case":"Some","Fields":["wxQTwyPbK9VbQ3Gl1GiA2evS+oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ws7nwTwDqVF6W8cdKiTEppwRVG8qHbGc6/owKHskiYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:15:24"]},"IP":{"Case":"Some","Fields":["86.127.196.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9161]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra42"]},"Identity":{"Case":"Some","Fields":["wxLEhaflWV2RfhkluhXVUPtxpvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OPkHBAAKEVfkvR50g2eF0YAIV2nxesKQycL30gJ1dOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:02"]},"IP":{"Case":"Some","Fields":["107.189.10.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission12"]},"Identity":{"Case":"Some","Fields":["wwMDj9zHKAWhYP9k6ZQzOkns2nE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZzATD9vkAKiEAvJQnDy6IjUJOo4Vq5QfAvpml4GJ8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:03"]},"IP":{"Case":"Some","Fields":["54.38.219.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheTorRelay"]},"Identity":{"Case":"Some","Fields":["wwFHMnVoViCoiF4dfzA/RV0CZf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzCUQW10j6de9IXNyk6NSDfhiHS5NrxImaoGmRygJ3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["89.58.43.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:d8f:d4aa:d2ff:feb8:b2bc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RocklinTorRelay"]},"Identity":{"Case":"Some","Fields":["wvs0bs6kj8mArUQrrbfNEOFOU6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZAPl3XDwDzDudCoTbWUVDgX0rjVAUTgf4UPBJgqyYs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:06"]},"IP":{"Case":"Some","Fields":["76.14.151.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bastard"]},"Identity":{"Case":"Some","Fields":["wu5A7oRR8nwjV+ix6h6Ob2Qic+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K/wdsCP/GBFkELt4luznuS+qLg1V/+EX2S2ZHjpY910"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:07"]},"IP":{"Case":"Some","Fields":["217.197.86.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dckdad"]},"Identity":{"Case":"Some","Fields":["wuZuGqIKYmP8MCkpbGQT1Xmg5o4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["giAf5quKrlTIUkqlm9zdVJhfDuyuC5JRidS+7P+9KuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:03"]},"IP":{"Case":"Some","Fields":["172.100.126.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["wuSysjFvGBJCRUe2W/u+TEYTeS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OBIHKSg/CZsNeFfg4azF4+k/L3rPUR8TyxYfjwyBDTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:01"]},"IP":{"Case":"Some","Fields":["23.128.248.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::51]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["wtWb88DMTyPXGqgLUCj/G2MRH6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YMoY8h9BOG5gZKgC54kdMwd4j8SJE0zCOYXk1Xxw6bI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:33"]},"IP":{"Case":"Some","Fields":["86.200.196.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spagh3tty"]},"Identity":{"Case":"Some","Fields":["wsTJwOH3LY7ujfQG+AeNzldstTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/O5BYDJYm8RNbwsD7NzUzWGN9PXfbYNRnkTDMxBh8hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:11"]},"IP":{"Case":"Some","Fields":["107.189.13.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["secondTryFFS"]},"Identity":{"Case":"Some","Fields":["wrr4PF9vt74SxK+BY5lpGnU46vc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c2h+B/rRxdft/nmfsjdud7Jd0CAaiy/rqWzNiVwuL2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:16"]},"IP":{"Case":"Some","Fields":["37.114.62.88"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thxFreedomboxTorApp"]},"Identity":{"Case":"Some","Fields":["wrhnh+rjMdBHBoLmsO7TkOkGN78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xlzBRCj7M6SffuTXvDX0+1xV3KCz9RkzG+q720q7pOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:26"]},"IP":{"Case":"Some","Fields":["82.64.75.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:8e:8b20::8210:82fb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["c0ca1eaf"]},"Identity":{"Case":"Some","Fields":["wrat9O/qc8ou+yeJ4rdMEDTB9fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LC5ahPHeRuTk8yCZDShF1SijzAM5sS4BHNmT5HmEkts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:18"]},"IP":{"Case":"Some","Fields":["45.91.77.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:4ac4:42::704:c0ca:1eaf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor2"]},"Identity":{"Case":"Some","Fields":["wrRRmfxvmOIb+v4IMzSPKI+jN+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3qqB3wHdaT1F0eTLAGt41GSGP/IU6mCNS4xRC0tEbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:06"]},"IP":{"Case":"Some","Fields":["51.15.39.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:e42::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["wp/vakBecw3gfsdMzwYj2V8NOk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yRk9XeAHCK7ghaQ42TAZvPDNWWDnGjIGOWQ+6FGbV6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:38"]},"IP":{"Case":"Some","Fields":["185.241.208.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stNet"]},"Identity":{"Case":"Some","Fields":["wosIAIb2zzJ/asPNN2M7uR6QkhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RQiMFFwD7hTaCXsa9wQ4uMoJmujSqDiNLsluAXOEMA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:57"]},"IP":{"Case":"Some","Fields":["89.163.178.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erbse"]},"Identity":{"Case":"Some","Fields":["woIkhZfRyFIqKnUl5hyLd7vDdhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mdpDrGeuaE6C0N2dI4iF3P5sbp6/sdtZ0rqN+iCCP2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:54"]},"IP":{"Case":"Some","Fields":["109.70.100.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["woCMrAiW0KxO+q1OzUZ/4kXM/fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dUUg4ZjSl1QAGD5FrQEyGPdMfjKWAw6hdJJpLg4/CV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:56"]},"IP":{"Case":"Some","Fields":["5.45.102.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheRun"]},"Identity":{"Case":"Some","Fields":["wmVRclcVSr0AOGHyuRTjULARquI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3l5lOYUsoeczXDlfPxbqDIO7FEbhixoV+D144oIxmtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:32"]},"IP":{"Case":"Some","Fields":["81.169.186.16"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:429c:9600:40e6:e961:9cf7:31d1]:29001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1131"]},"Identity":{"Case":"Some","Fields":["wmTPfAXozG3H0i0DktExGx9/XiU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bf6M/H0vzXNDeEW+orLlP3N9TYVa9/2bv6DogIyrdak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:31"]},"IP":{"Case":"Some","Fields":["185.220.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[11131]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::131]:11131"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KeffalsIsNotAWoman"]},"Identity":{"Case":"Some","Fields":["wlWGQqgfTsH2eedCpR540pYgUxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rUjB9WXFsRxij6R1blcTA7Sm8oxYvy0qbwIuZBMUER8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:40"]},"IP":{"Case":"Some","Fields":["194.76.137.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:803:2::18f4:a2fc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FaerieOnion"]},"Identity":{"Case":"Some","Fields":["wk8i1CnRZ2fokj34d7pogQqYOTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7T3PfnRwOK5OmcP8IqMH20wQjWkY2KbvEmRSjBMx6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:04"]},"IP":{"Case":"Some","Fields":["119.17.158.221"]},"OnionRouterPort":{"Case":"Some","Fields":[15151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra0"]},"Identity":{"Case":"Some","Fields":["wkb9nfHDlzCqZOMUylqknM4Ihx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0C0qOtzJ+zkNcEKt14YZIrkBCS6bKQzZSe0NE5dBdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:59"]},"IP":{"Case":"Some","Fields":["185.165.171.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShorTorExit"]},"Identity":{"Case":"Some","Fields":["wkUFr+Ra0CfYIFp+6izaNxdZ1f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PV8kMucV5tupSh5MbmA+cJPiArlPP+N4S+VFtjpJCgs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:19"]},"IP":{"Case":"Some","Fields":["128.52.137.59"]},"OnionRouterPort":{"Case":"Some","Fields":[5101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["downstairsfull"]},"Identity":{"Case":"Some","Fields":["wj8TDrkbJF99tslLjasLUa5pCn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbdZ7oxxHP18gLUm0Il0QMY0kWrzCFWYNHozDatzwf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:45"]},"IP":{"Case":"Some","Fields":["23.137.249.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:212c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pacoCalienteRelay2"]},"Identity":{"Case":"Some","Fields":["wjc5LcEh31DGTHB8P7lQVeaLAMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uHguJkeeFLDQix9LDwO/xe7oZ1jvlMYP18t6vy+zGDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:57"]},"IP":{"Case":"Some","Fields":["51.15.242.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:654:1a2e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv11"]},"Identity":{"Case":"Some","Fields":["wjSZtikj0mOwy0DEyMRcPrJd0bQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wvyfOlMhsJHolrM4GTlcZoh5j5NmfTZ0kWPSmftONv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:47"]},"IP":{"Case":"Some","Fields":["162.248.163.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrankyThePooper"]},"Identity":{"Case":"Some","Fields":["wipZH/TuV3xAja/SbHUwJhXlFl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MP9zE3AI3RVF5my57QciNVaAhXCOmhrQkFMtw8QvVwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:52"]},"IP":{"Case":"Some","Fields":["82.223.23.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8188::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AwesomeTorRelay"]},"Identity":{"Case":"Some","Fields":["wicM4Vzi/8Yp4JIySSKbEN9OVR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lfyQKK9jXETMmc4HjPEqeA8TKElEYM0yavpO/Pp+hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:38"]},"IP":{"Case":"Some","Fields":["185.217.126.97"]},"OnionRouterPort":{"Case":"Some","Fields":[666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2069:6284::1]:666"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smortSmall"]},"Identity":{"Case":"Some","Fields":["wiTolwuy1E685RMcEaraNdgRzKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wuU15RLFKKFhDmrorXe0xK/5uhqZuK0pAt+Ws/iC48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:16"]},"IP":{"Case":"Some","Fields":["194.208.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["whipEM70PvXkufyfICan2jlY2fQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CZm2H7eu8pyobs9B+K7co2C0nO/qAvEqtLNiGEYaWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:35"]},"IP":{"Case":"Some","Fields":["185.220.101.46"]},"OnionRouterPort":{"Case":"Some","Fields":[10046]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::46]:10046"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreifunkIbbenbueren"]},"Identity":{"Case":"Some","Fields":["wg+j+smGfduMfAZyTN5hSqNkZGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n2w201lg4s6+aiQe+ktjvy8YI9Q2aacqWGuE6fWc+Rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:06"]},"IP":{"Case":"Some","Fields":["92.252.116.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ylxdzsw"]},"Identity":{"Case":"Some","Fields":["wf/yejjfjcizENB4wT4j8ICvKVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1DleviF4u4ymafSJOJPN38PVCv7vgDFarbmsDVg6+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:11"]},"IP":{"Case":"Some","Fields":["207.180.198.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2028:9179::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["46620"]},"Identity":{"Case":"Some","Fields":["wfcpNbGjKarJIWEBua7wvIhdbkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n3AMX93w3Ka2BdZNFVXmOTAy8I/2cCId4ZhaYjp7Qdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:10"]},"IP":{"Case":"Some","Fields":["209.222.4.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["satfreaked"]},"Identity":{"Case":"Some","Fields":["wdzEcMgPbXAsXtEVFZNkRL06AlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnC2sL5v+ZlrBk6agLYf2I196Fp0doevCrww61BVn+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:12"]},"IP":{"Case":"Some","Fields":["86.86.173.62"]},"OnionRouterPort":{"Case":"Some","Fields":[15020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickodee02"]},"Identity":{"Case":"Some","Fields":["wdS2cOim5hQAPedc7M01q+fDmX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["41P3V0hTir5c8JSygUMi7n7X0DocT5UbTbdT9iBiK04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:28"]},"IP":{"Case":"Some","Fields":["195.230.23.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay14at5443"]},"Identity":{"Case":"Some","Fields":["wcpOYD8VLoyG6GT0+/EWKjv99Yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yUxHH9z6NpjLr7xwkJwl9zQ/SNUbpRKb//mA9rso0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:41"]},"IP":{"Case":"Some","Fields":["140.78.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gofasttwentytwenty"]},"Identity":{"Case":"Some","Fields":["wcpFeg4daeXJpLfruXYEOv8k57c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKsDObPw3ldFRfuBtcXI7LGzXw7q2NZN6qQ/JHDIofk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:40"]},"IP":{"Case":"Some","Fields":["94.140.114.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay654398"]},"Identity":{"Case":"Some","Fields":["wcomQKsncubdmOwAFgbu9J7BKxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m12ygkaT5wZhmWA6L1GVZznRjARabqWXrrVZmMSgwdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:59"]},"IP":{"Case":"Some","Fields":["85.195.214.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9842]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pros2"]},"Identity":{"Case":"Some","Fields":["wbtn0/vtaNS61ADRpJxbeezjll4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3WMX/8kd0tvGEW3MQ10uYmTJ9zSbnRGK8HFgO/8UzkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:44"]},"IP":{"Case":"Some","Fields":["45.58.154.219"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MapleCrew"]},"Identity":{"Case":"Some","Fields":["wbjGiHhnztJWRFQFj5CCMR+vGsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kz9ak49CvQYDj2iuJzWUR/ujORoSARISNsxD/w8OxKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:07"]},"IP":{"Case":"Some","Fields":["192.99.35.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenSepia"]},"Identity":{"Case":"Some","Fields":["wbav4YxvZWMaTvZ+GhkYtZMW9Z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lY8KUv1g60GLhTYXbWiK62Pu53VUy+QsvPg239QZpc0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:32"]},"IP":{"Case":"Some","Fields":["140.238.34.159"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a1]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FJB"]},"Identity":{"Case":"Some","Fields":["waIhJPxu+4sqQHky77bxljBgqFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JUbPsGTLlHMvJvTft4mnqLPE3Bhiavo8CDEgXQBEgE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:31"]},"IP":{"Case":"Some","Fields":["185.204.1.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTIWith3"]},"Identity":{"Case":"Some","Fields":["wZ+7wllT2qeviTQEi5ebkd7mTrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eEvRRkbUqT9Z5X59+sohaFoDaskV3E5f4zLY+yTHY0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:32"]},"IP":{"Case":"Some","Fields":["82.221.128.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaynig"]},"Identity":{"Case":"Some","Fields":["wZjUPD8y8u6icrvGjJKAPvmr7JY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kUE2lccsfUyqBXxehcFVFt/KR6K6LB7SopZBGxOyg5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:40"]},"IP":{"Case":"Some","Fields":["209.250.242.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5001:3498:5400:3ff:fee0:21f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Symbolic"]},"Identity":{"Case":"Some","Fields":["wZfZ+h4rYppd2C0mhhwD2he9Rp8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLQk33LMbCaZOei+Vt+eCjGbun+xm3oFsnqifZg6CRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:32"]},"IP":{"Case":"Some","Fields":["87.98.243.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay10L"]},"Identity":{"Case":"Some","Fields":["wZOdNmSd6YogJCljHY78cBKNX18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTZpdxjVRYPdE0ln4y8riOC3dhoJdRUrONJySImsfso"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:28"]},"IP":{"Case":"Some","Fields":["178.254.20.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AussieOnion"]},"Identity":{"Case":"Some","Fields":["wYQeS6fEoba6AS5DIFcKvvZtYLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/iG1ZqUOVSosrKjsCIQtemNjmkgCn6beIFFhdDVHXlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:41"]},"IP":{"Case":"Some","Fields":["124.170.32.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bwbtor1"]},"Identity":{"Case":"Some","Fields":["wXYoT7YezIdhoG/Oq0mNqEhRmxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAhGxSA16Ycv/SIjNPfyBloLljVInerkpKXXImadv6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:20"]},"IP":{"Case":"Some","Fields":["185.130.45.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:3:1ed::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UncleBobsRelay"]},"Identity":{"Case":"Some","Fields":["wWnlR7NVlwhQNbEc6KaeRDRagu4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MElkKwS9n45n5mM7k7elALtX+o/48LDb8yo57/VAijc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:33"]},"IP":{"Case":"Some","Fields":["24.230.61.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberdade"]},"Identity":{"Case":"Some","Fields":["wVxnQQG2arsW6GkT9oMHGmPX1tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hwwr9XAsWqYPVlSYYJhKoymPjZDWlYdUDc2XfiuVwNE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:32"]},"IP":{"Case":"Some","Fields":["20.206.84.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainyValbo"]},"Identity":{"Case":"Some","Fields":["wVqL5GoAJTccPEEkfPiRGtgqehw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kgj6nDLVmeI5SGSopRQe0+Axq+p+VUyjC9wbtSVU8o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:37"]},"IP":{"Case":"Some","Fields":["213.141.71.102"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNewRelay"]},"Identity":{"Case":"Some","Fields":["wUABbUnMtnOm5P4ZMpOxoK5EayM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O/vo+C7dedHqaVfheuaJuPXkeHCohOrDh2waomlzoPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:16"]},"IP":{"Case":"Some","Fields":["185.194.239.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::2f6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicTor3"]},"Identity":{"Case":"Some","Fields":["wTCg2MGCIuahCNZc24n4+z8pvD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HP64AC2LSEcmqGc9rXVEQ5ry8jJNpwqA3PQU31G58qM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:13"]},"IP":{"Case":"Some","Fields":["31.42.186.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jbktor"]},"Identity":{"Case":"Some","Fields":["wRxy9+C0m5K5xOrVIjrHQWPvuxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RkSqg9w5g7ojU6GnKmXFhf6emi7vY8/JLkzqjtwQVt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:38:04"]},"IP":{"Case":"Some","Fields":["93.181.1.9"]},"OnionRouterPort":{"Case":"Some","Fields":[62306]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["azbycx"]},"Identity":{"Case":"Some","Fields":["wRVKunnYlZW4YcnJeU+I5oOW12c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uilz6ub7uXRiANVYNSIMfy9RmlL0985P4IhJsBfsdmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:50"]},"IP":{"Case":"Some","Fields":["167.86.85.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2025:1163::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonobo"]},"Identity":{"Case":"Some","Fields":["wQSvmgfvN8y2K7BITSGSf9spR3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5NJPv+YMo4f6W5hn0RHlUjAu2jIE0xjx8lJX6dC9JZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:27"]},"IP":{"Case":"Some","Fields":["109.70.100.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GASERI"]},"Identity":{"Case":"Some","Fields":["wP3UOeeMPUuhQXMkfoS7aNB5ewU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/v9ohyvI9biJpNw0iyDE/IuqdW5l24fyIVtbQXgpWdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:37"]},"IP":{"Case":"Some","Fields":["51.158.166.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:39::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rittervg"]},"Identity":{"Case":"Some","Fields":["wO2wjXVA0d08ppgJ7RfZefUbZuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["soLGvWWq/KYuKR0V2Znt0Zzbd8AX1cpU/vH9EaH/r2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:11"]},"IP":{"Case":"Some","Fields":["97.107.139.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe96:d927]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["snowballer"]},"Identity":{"Case":"Some","Fields":["wOtZN+O4qi63GH6Rf75tphKjbPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L/DIuNISvOoEoKSrPqoIvtrkKhZoqTv/HOUhpqO1oAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:06"]},"IP":{"Case":"Some","Fields":["192.184.93.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cupleak"]},"Identity":{"Case":"Some","Fields":["wOpuwjeWXyLVdSECiLi66s6dVU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S5AosvyIEOp3ScFJEP5HZy8znqn7ozpW+8Vs8YXf4X8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:15"]},"IP":{"Case":"Some","Fields":["45.90.57.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9406::33]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ytm"]},"Identity":{"Case":"Some","Fields":["wOn+v0cEwdvvNsiXIFxg2FrCqPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ONF2bQIwuFdn62koeKVK0BdsASjEazYSo8YOBebtSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:57"]},"IP":{"Case":"Some","Fields":["194.36.89.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonbephomet"]},"Identity":{"Case":"Some","Fields":["wOczShgRhKvQdpjQStwZ4V4+4YQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHLs85ryiC4SJzRpC2V4NVOAqN3h4uH1pniONKAzTqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:59"]},"IP":{"Case":"Some","Fields":["185.220.100.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:12::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomForParrots2"]},"Identity":{"Case":"Some","Fields":["wOamZwZDhbnLWmhc6wa4Xt2mqgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kciVPmkkZI6rRmB3SyKKWcX/I4MH16+CAUqjtKw7huA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:08"]},"IP":{"Case":"Some","Fields":["77.123.155.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thauriiya"]},"Identity":{"Case":"Some","Fields":["wORGO1PzPT8m0RJ8iG7o/l41/Ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iKAMvqQfmjD8VX73UE82Vx4ZTLLCgLGmZY2sIqTvXBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:52:29"]},"IP":{"Case":"Some","Fields":["108.26.0.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mitsuha"]},"Identity":{"Case":"Some","Fields":["wNqq5e5GG74TlF/ktS8yq9xrw3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6bBmx2faqljDm9/xCloRYTiocQAbEn+Don0d9TopELE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:39"]},"IP":{"Case":"Some","Fields":["51.15.246.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47b0:1756::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinha"]},"Identity":{"Case":"Some","Fields":["wMiGSjf6aB7Gdw3cvP/v/+hUySQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fKiXf0Dr81Nlg4lYUmrx9cofsn1zFxEYL8A9ttjZK+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:00"]},"IP":{"Case":"Some","Fields":["15.204.141.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit2"]},"Identity":{"Case":"Some","Fields":["wMMAvC6EpQPU9Rpq1js/a/PhEsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hlmlFPstQWUvHAsosgF8a5prMVU9tAmHusOwx1hIHxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:59"]},"IP":{"Case":"Some","Fields":["185.129.61.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["wL2rZsCaMZMx1HPaDhK9XTUFCv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCjv52qfy1SeKqXEZMSjlnSDQ45U8DeNDuV6n6ZCS7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:03"]},"IP":{"Case":"Some","Fields":["142.44.203.139"]},"OnionRouterPort":{"Case":"Some","Fields":[19385]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twofish"]},"Identity":{"Case":"Some","Fields":["wLq5LdGP+D4xXMEUI49xz254LWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t6QVm0AmBiS54hbYXMwbPIooDUKypjBYVRx7/txspSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:53"]},"IP":{"Case":"Some","Fields":["164.160.129.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["wK6robVVGf5ThKpE0DEr6YIW2nE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P6AbVcRLa9EK8a6fGywEj6wwK/NSgMch3oIAcFjBdzA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:06"]},"IP":{"Case":"Some","Fields":["185.220.100.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:14::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["wKsyTaiS7WWAASxPpMJZov/HfpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uBx5+bfFca5byrfutd5cx+LYxnuerEX3fKqF7tokV/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:10"]},"IP":{"Case":"Some","Fields":["194.26.192.186"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber12"]},"Identity":{"Case":"Some","Fields":["wKhnCdSuOOh5QmVJZg4a0YzFAM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aVsUIkToBXuHEu07NfJwkvJ63+YVGSlPMwaJkiEVrbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:29"]},"IP":{"Case":"Some","Fields":["185.220.101.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::6]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YAVTR3"]},"Identity":{"Case":"Some","Fields":["wKLL3a7CsfygeczcYm56BQnnl8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lmr0TFsMsTChAT+1SQDVK7/wWFhpGDr2wsnCc4Rq3Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:54"]},"IP":{"Case":"Some","Fields":["45.83.233.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOnionRelay"]},"Identity":{"Case":"Some","Fields":["wIpbxQS51uzOKqLuUeaRJaOdBZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/7rXZ7b5iJ8z+SKdphxP0NEdRHHuLBybE89XuBvKFk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:54"]},"IP":{"Case":"Some","Fields":["176.123.1.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::3f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PCGG"]},"Identity":{"Case":"Some","Fields":["wISM96F9SRePcJOBKFIfCbwimEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/siHPVrOPF9S3HHE+7JHlhJLOMbjnFwLMiGrGY9a2Xw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:09"]},"IP":{"Case":"Some","Fields":["124.187.101.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hera"]},"Identity":{"Case":"Some","Fields":["wH3KCyMb4FVKtNV0rAV8dXK9bvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yt9UpunZ/iAHpj9G1XTnJ8m3SWA/f+HULjCAjveQoLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:09"]},"IP":{"Case":"Some","Fields":["185.232.68.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4e:c87::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmallStupidDonkey"]},"Identity":{"Case":"Some","Fields":["wHvW8gwqURDhXWPksWqY/1fQv78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7rByHopIGBurdbHX1pS6yiuAz0P0rcKAGMxuOb7PDKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:31"]},"IP":{"Case":"Some","Fields":["37.1.220.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["wHBE5Fl5N9U0OMtTm1jas4xrkQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pLtByoEwLtsH2INuyS97aChNzZ0FBgxEPAXU7KMBsV4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:47"]},"IP":{"Case":"Some","Fields":["212.192.246.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["wF3Mh9dmfQjuQ3DWzbjL624LQxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/lSS1F89/BoQwXmYlzmUzlFAcab4g58/QC4fgTmTYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["185.14.97.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:14:97:0:176]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["endthefed"]},"Identity":{"Case":"Some","Fields":["wFbZiHyZno2dtDzzAOH3On4NHXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["exlQEt0eKUvbxlL2QkxBc13CwaHzawDia3xYGvS15sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:55"]},"IP":{"Case":"Some","Fields":["46.165.253.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["toritoinfinito"]},"Identity":{"Case":"Some","Fields":["wEFwccN1SIUpb0pZNawbwcq9vDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i5tV34VxRvG6XZEe5zW7E4CP45Eu/aNJduXevzVH3Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:36"]},"IP":{"Case":"Some","Fields":["187.207.96.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2806:106e:19:2f73:2ca:5aff:fe00:2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay36at5443"]},"Identity":{"Case":"Some","Fields":["wDYOtmQBe4Mf9z/ipBoVTOJk+sQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8RlQYc50PyUet7HToEWx5ZEQdtS2JDKvvS/g1LF/Z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:37"]},"IP":{"Case":"Some","Fields":["140.78.100.36"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobodysawmedoit"]},"Identity":{"Case":"Some","Fields":["wDOWg6qLzRGySY0Zf8frnQd1if4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DKdtxERSJFV/LnDA/3ZX43lrUHYUpAQTEyH9ss9RyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:48"]},"IP":{"Case":"Some","Fields":["82.196.8.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid4"]},"Identity":{"Case":"Some","Fields":["wDIJ9UvCmZJ8p1gRR0NPQ583yss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOaXwfcKQnNLsiOJiwwROGIn9Hyth3b1+wMb0zo9b7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:59"]},"IP":{"Case":"Some","Fields":["94.142.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::2]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["manipogo"]},"Identity":{"Case":"Some","Fields":["wBkv9D53clAIQXX05ZrBuiKQzjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9y29ZAh9ktmSSQwCi4tZlMYQrnenMI4lYndKfgd+eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:20"]},"IP":{"Case":"Some","Fields":["192.160.102.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::9]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["striga"]},"Identity":{"Case":"Some","Fields":["wAySYSTJ3MZkeWSTG1a9h0uTHo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["882lWeuzLmEFXyuX0w4lQkr3LVP8fPe6sy/9WanRkd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:37"]},"IP":{"Case":"Some","Fields":["23.250.14.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ufer"]},"Identity":{"Case":"Some","Fields":["v/c6X5AOl0n7opI6/ELagDokp8o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["etEDlaf/DWD6hgmk4/2VVA3e1M+ko/H7wznOUWLkyfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:23"]},"IP":{"Case":"Some","Fields":["45.35.85.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MazeParadise"]},"Identity":{"Case":"Some","Fields":["v+qovpBIRg6X3jg88Tlp0d+mML4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tRKViY1z5U7yTqxDrLP/we842nimPINXBVJTdR6esVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:02"]},"IP":{"Case":"Some","Fields":["176.126.70.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xangaen8"]},"Identity":{"Case":"Some","Fields":["v+QBQ7IsUPQmH8EHUGM/FzHuDEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ixqs/D3zRYikrigap6R2c3HVGyLEGB4oeUGrvi+5abU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:24"]},"IP":{"Case":"Some","Fields":["77.191.228.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["v83nxE3I8iIhaqz/RtPijXItMtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I2XnISSrM6d9SxNdPa4NPrqJ4o6byMCT1S7ha/9UDC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:30"]},"IP":{"Case":"Some","Fields":["62.80.227.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk12c"]},"Identity":{"Case":"Some","Fields":["v8bn8pjVgTRN/Olbt+6e3h/AdFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R51BPmzNeq0hh4tfNqfPsw3HYKINz31MkWmxRDgR+bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:58"]},"IP":{"Case":"Some","Fields":["163.172.182.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:63b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antifaang"]},"Identity":{"Case":"Some","Fields":["v8QEQRkIDYvucCGJeO6Dw/wWrno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XExWnanlxajrMikuuDazkx+++93y33ZeOp8BN1lgKBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:35"]},"IP":{"Case":"Some","Fields":["78.46.123.26"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:62d9::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ckaket1"]},"Identity":{"Case":"Some","Fields":["v8NGn6VX2nYX5nSKMeis5r2Rl9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zp7U3ArCzg8afwoZh6Im8Gpg8qnEZif/keYRv97vdcs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:16"]},"IP":{"Case":"Some","Fields":["85.239.55.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:10::28fc:a3c7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ncbanerelay"]},"Identity":{"Case":"Some","Fields":["v8EwXIs35RYcLjcTXfLU5TzDis4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bh91YjQsHFeRRO7FsfPY4lYQIEPBz/R4vgAufeuUis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:49"]},"IP":{"Case":"Some","Fields":["188.68.46.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:22:62::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["styx"]},"Identity":{"Case":"Some","Fields":["v7OZlN7nTSOx5p7OcCtxbOE7Qco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvWC+dWk8xptVPqmF2pKprP6qpauCncQMVOh6/1EjfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:56"]},"IP":{"Case":"Some","Fields":["130.149.14.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justSomeBoringRelay"]},"Identity":{"Case":"Some","Fields":["v6clgRr92Jw9DO7Ewjj5cugtFxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rpTUQV7wXEk4DTPBrCDAS4cWTHGXy0Tb4hEFOVILs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:59"]},"IP":{"Case":"Some","Fields":["77.242.78.127"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chfarley"]},"Identity":{"Case":"Some","Fields":["v514EAQ+MlxPMRTipmtRmMRDn3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0MXJkK4y6PtxiT1h3TVQKj9VnX9L3so/FjxPwdwex0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:35"]},"IP":{"Case":"Some","Fields":["5.135.199.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["labaliseridicule"]},"Identity":{"Case":"Some","Fields":["v5NZQ4SgLedonE/YIeJjjaLNR5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3BBnQQHteMQOcKhkxcTqPAkjg5FLnrNHnJHWwywcxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:40"]},"IP":{"Case":"Some","Fields":["95.153.32.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["partybitsys"]},"Identity":{"Case":"Some","Fields":["v4Yc6Uo9I75MGdXfdX/goMiwivA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z0oaE1Ik0KrAvp5H6QCKUV5uVonEhzVo6DoXET4ZlwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:03"]},"IP":{"Case":"Some","Fields":["149.56.64.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:120:176:146::69]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff2"]},"Identity":{"Case":"Some","Fields":["v4MMaMt3CR/jcF0WSHBNCuORUqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kGUoc54klcOAmemqCpMhKXSkqLBGo7xTDQFnlp+hNvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:52"]},"IP":{"Case":"Some","Fields":["198.98.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["v4Ah0uyKjcck012VkPn+8lHwBtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EGCTaoGYjZEUPSHtnRpduI8NLRrNdCYyNqRQ9MPg4tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:21"]},"IP":{"Case":"Some","Fields":["104.244.78.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f046:56c4:177b:1cd3:5449]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iDIDeditheconfig"]},"Identity":{"Case":"Some","Fields":["v30QyB4aHlv15rA7FezGwp9moxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GDO2Qji1k5HUOaTHecHw2SesNX+0mkmg/1J1yMecXjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:10"]},"IP":{"Case":"Some","Fields":["85.234.221.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:578:85ef:f00:91fe:cafe:91fe:cafe]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["covfefe"]},"Identity":{"Case":"Some","Fields":["v3opxnsFAs8wgrEzK7+8q6rFUNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AcJwkL/Rmk5mKJ3oRaxJdKixh4Vqbe2uR/4zfXTrGDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:44"]},"IP":{"Case":"Some","Fields":["77.58.104.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:470:5179:1::233]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange018us"]},"Identity":{"Case":"Some","Fields":["v3FoYjrU/1QqnpQMTM9XXZvhYyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5oOPc+bMYSRAHVJg8R2e8MEEVEkX1c0I2eP4Fsh4x+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:38"]},"IP":{"Case":"Some","Fields":["193.160.32.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lenny"]},"Identity":{"Case":"Some","Fields":["v2+EFaVyWb+3yHjElWxon7fssko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9IvLq243hNYuKTHsJPOlxFGFc2FvB3m2Tz0GIOQEKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:47"]},"IP":{"Case":"Some","Fields":["91.67.204.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:810c:4040:20af:6749:9bc5:a9fa:c730]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["v1wMXTocZlT+ul/2awBzTfBz21A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["11iuQjy9GR/MNADKUKz03HTt80u+uLN4CqG3XNLHbZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:34"]},"IP":{"Case":"Some","Fields":["142.4.209.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:60:e1f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["v1bHOJTBPyHZjJzT5Zv2rZaOAds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["25K+5+3xCVtu1ULMIow5KCO69FLj3lxAIC8sbhsDdDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:57"]},"IP":{"Case":"Some","Fields":["95.214.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transliberation"]},"Identity":{"Case":"Some","Fields":["v1UnnnWgQbe87o4s5SZ7nMi9H6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gb6s3krrA+yI8I6syJZhNyApMYRJpUMJLQljNXMyLW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:42"]},"IP":{"Case":"Some","Fields":["46.226.104.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe97:4d5a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gesdm"]},"Identity":{"Case":"Some","Fields":["v1TuMZN1FIFXm6fMfY4d8KAa+zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pWoD+PfM7aHkuHPcbOekt6h2wfI1TjBvVidj08qVMwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:05"]},"IP":{"Case":"Some","Fields":["18.18.82.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LupusreginaBeta"]},"Identity":{"Case":"Some","Fields":["v1Dgnu0luChhz5XhqqQtz+9T5dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["THC8BvdOws/69/ysAdhLbcK71PmzBFQH3NAgDosgZ/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:12"]},"IP":{"Case":"Some","Fields":["213.113.4.171"]},"OnionRouterPort":{"Case":"Some","Fields":[6881]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cordel"]},"Identity":{"Case":"Some","Fields":["v0N1Kp83U40E7FwyLVhX/kjl19Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AULA5PIjs3y1udhkV/HYnJibky3J2zoqsXTgEUIp9N0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:28"]},"IP":{"Case":"Some","Fields":["45.136.198.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgDE"]},"Identity":{"Case":"Some","Fields":["vz9vvbNcm4TxWKLKkW9ZZf4J2l4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ESpKMpDSsZ3WgxmM9FS2DHFga3jG77tDymwOYeXcJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:05"]},"IP":{"Case":"Some","Fields":["212.227.182.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WodRelay"]},"Identity":{"Case":"Some","Fields":["vz6bl9POQJn3OqS9cMoUtjX6POo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1G6AtDz6EqT3F3Upa/5pvJCjoOxcyqVBjqPevM2oawI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:35"]},"IP":{"Case":"Some","Fields":["70.120.126.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AkisTorNode"]},"Identity":{"Case":"Some","Fields":["vyVXkQAGAudKvi2pMgQdZNTtVlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYbs9xddbZiYiYjpwF3gUDIuQuutZ+1KsNXVitH8oeo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:49"]},"IP":{"Case":"Some","Fields":["31.19.81.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["34b666a42d0b46"]},"Identity":{"Case":"Some","Fields":["vx6+6gSgwNgIGLK0Z/28ah8KHsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AyvOrb2dyYAhiJJ81IsFE4cZWnhciyvp/kG2fGa6Reg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:57"]},"IP":{"Case":"Some","Fields":["78.47.62.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:317d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e2"]},"Identity":{"Case":"Some","Fields":["vxtmLR2k5V9wDBMKxYV0tH+3644"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3647N1kvzuHEEz0Q8/xVI2KRtOEADSrsOdQ3hkMMCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:02"]},"IP":{"Case":"Some","Fields":["195.176.3.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::19]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chimerazkp"]},"Identity":{"Case":"Some","Fields":["vxsb/5F7oOjXnkse4z5e+dGpmlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8lIR9iNKE5Cb0Oap1SgluBs0ia3xSs4RK0MaDB33Fhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:27"]},"IP":{"Case":"Some","Fields":["83.27.199.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erwinsrelay"]},"Identity":{"Case":"Some","Fields":["vxp3W3KC7DH8r444/JPR/sRDpWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1boEtIg9FlpsRu/+vI1N/aWrusZdIyBe8Ufu90iFc6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:40"]},"IP":{"Case":"Some","Fields":["82.77.238.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wolverine"]},"Identity":{"Case":"Some","Fields":["vxVc0uOKojBrcteJwZUsg3PEkOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJ2onvK9er9WG5wyZmW4XUsPg7/8l5UmMeV3j/STkDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:48"]},"IP":{"Case":"Some","Fields":["144.168.44.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quadhead"]},"Identity":{"Case":"Some","Fields":["vw+1guN/c4zTPDZREl8ncnBbuOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MeVgQyZXv66t6ddpTCY0zhgYf3F6zYEsBF6vofqgMSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:02"]},"IP":{"Case":"Some","Fields":["148.251.190.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:c68::2]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lwbghtwox"]},"Identity":{"Case":"Some","Fields":["vwD2KP3h8yDg2pR/Eye5o81ySNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JHxSrOwUVjpr4mVYCNRZXyAdDRuPMo1797tt3Vsqsgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:47"]},"IP":{"Case":"Some","Fields":["94.75.237.68"]},"OnionRouterPort":{"Case":"Some","Fields":[42842]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oranet2"]},"Identity":{"Case":"Some","Fields":["vvsAv6AHswOeiUONi6SimdCXjUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VOLU7KsJXdlrcTiue4xjsLfeI4NtO0/+3kcq1CzLdlU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:03"]},"IP":{"Case":"Some","Fields":["158.101.160.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman13"]},"Identity":{"Case":"Some","Fields":["vvmDHMCzn6lvYQrTpd590mqo9R0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L7Kz4XZbTdsFWAzgbyFnp5h4TRq1E06k3yEjsvbun7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:30"]},"IP":{"Case":"Some","Fields":["23.137.249.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:26c3::1]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OrbotRelay"]},"Identity":{"Case":"Some","Fields":["vvHjk5GPxNHTUIT/k3Lmylt4edE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqdIb7iepcOTSuvaj1XhwSH9Ye0Qd/yjl7OmskfpG3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:21"]},"IP":{"Case":"Some","Fields":["85.228.183.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["vu0obz5BYVX1y4vJ1ONLoijydLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fN6qpgu0WCdrSStZmPFPNTvABAM+SEB2JTZiNFzZqMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:46"]},"IP":{"Case":"Some","Fields":["70.52.10.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vuBx5SGkfHQMn2GE/rz3i/9fEnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8L2T7p6S8uQZ5iocBPkiWvbjaDAIJZfuQtw+BALD8Qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:32"]},"IP":{"Case":"Some","Fields":["185.220.101.34"]},"OnionRouterPort":{"Case":"Some","Fields":[10034]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::34]:10034"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Leg"]},"Identity":{"Case":"Some","Fields":["vttY24sjhh7zXL7DfGuO+3pxaXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r4jjF+3jtWisJ9WYvkQSHxKMHLaEpJGKFiGfUcBB5u8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:14"]},"IP":{"Case":"Some","Fields":["31.3.135.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["node1"]},"Identity":{"Case":"Some","Fields":["vssASvHncDT1qre3B0zohd1orO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dE9df1ePISDSUttR3SECFmsqbPst8LfXGd4uFnIAv+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:41"]},"IP":{"Case":"Some","Fields":["95.216.66.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9119]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:2c5::2]:9119"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["vshUJL1COXXhHtBb9P6rOnUmUQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m/q8FHxJD0G5EEvwToZQLhDDYzOb+EGPII+55XkRRrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:37"]},"IP":{"Case":"Some","Fields":["220.233.73.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3400:240:6d01:6db4:1a6:1f94:100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kwasikof"]},"Identity":{"Case":"Some","Fields":["vrw3CGsiUEwuquux3C6ERHpSVEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WD8WXUorLzwi+3bC/eMDfYYEXeYbw8pGwVx2sFW35c4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:27"]},"IP":{"Case":"Some","Fields":["83.150.4.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeAssangeSnowden"]},"Identity":{"Case":"Some","Fields":["vrjiR02NswdgfciwG1svPflUdFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mTNzC+Y1r2M6lYMhgdoBtbwmMAeF8U22RquJatPFrQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:34"]},"IP":{"Case":"Some","Fields":["104.167.241.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NootkaRose"]},"Identity":{"Case":"Some","Fields":["vp6lNKZm5rng9RBH8YyMkQ66dHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KjFT6Kl3/LBbJoc3vGzHG1ncq8UpEWdDF03VeF36w/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:31"]},"IP":{"Case":"Some","Fields":["99.199.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[55003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toroQQ"]},"Identity":{"Case":"Some","Fields":["vpe2ibbnqUEXeJ3Z+Q0ehML5EVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5BXST6BHXON24UX2stSBUKLLaR9M9r0tDj/htDgqjhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:42"]},"IP":{"Case":"Some","Fields":["96.22.210.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["vo8490GDr4xsX+MyWovntiJb8j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nqdukjp06QVhgnz8Yclnv3Ih68SIHepQpbgtQT5R6Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:22"]},"IP":{"Case":"Some","Fields":["74.208.37.237"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:31::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["supersingulardog"]},"Identity":{"Case":"Some","Fields":["vnvCeP354QY3ZM6FeyhyDE2O+bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4tXhiV6ski/pF3I8Tw+zOkwn9KsHVedFjTt2VV7xnfo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:00"]},"IP":{"Case":"Some","Fields":["209.59.144.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Sideswipe"]},"Identity":{"Case":"Some","Fields":["vnb7tfjRBx2/7XfFQxUMHJ2KIcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Ihot96fir2sdIIRthc3FdYA50pz7QZiRONACO5ziz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:47"]},"IP":{"Case":"Some","Fields":["213.171.214.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongHoldMonero"]},"Identity":{"Case":"Some","Fields":["vnDOIYG9OmgvxNre7mrHX7wWOoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cfj26BzvrhwrLvaRv/Ic5Vm3KpZ9GqvokWyUy89Qy04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:58"]},"IP":{"Case":"Some","Fields":["195.123.228.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubHorizon"]},"Identity":{"Case":"Some","Fields":["vk8y761ZGTKWOguocPkTo8v+3T4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o/WRajvrMZtAm75yq8AXVLSD7MrPA9mb4fdSF68k71Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:05"]},"IP":{"Case":"Some","Fields":["103.9.76.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ledgh53"]},"Identity":{"Case":"Some","Fields":["vk2OlfOPM1hAplA4MnH6imDLpYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+c1gvDKttOcq+gzcPp3xJ7p3LNwysdI86aYDlfUhvCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:45"]},"IP":{"Case":"Some","Fields":["188.68.57.225"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f832:38fc:feff:febb:5c26]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeeJin"]},"Identity":{"Case":"Some","Fields":["vjuQJKDrvnL/ISl5+2lfxhF+HvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8oxQW/AwxMQU/KEiZzIURbzBFu/kt0ZOrYLSDm44R5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:09"]},"IP":{"Case":"Some","Fields":["223.25.69.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NerdreichRelay1"]},"Identity":{"Case":"Some","Fields":["vitouLiL/DUzAjYNWKz5vZupgCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wKEkbrz/GoQW21RF0mZlRIfsh8DcxYGlfsKr3jNJ+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:53"]},"IP":{"Case":"Some","Fields":["89.58.3.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:e6a:d8cc:e3ff:fea6:f015]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MrOnion"]},"Identity":{"Case":"Some","Fields":["viYjWKkbeupWiT6B33a1IgTE9ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RuuOAb55nSF+ymr+ojVHJIqCxBdT9SqgEihv12bWQuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:42:47"]},"IP":{"Case":"Some","Fields":["134.122.27.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::21a9:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayDebianUK"]},"Identity":{"Case":"Some","Fields":["viX1KBUnpzkdU0TuLtkJUD5t7mE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R5pdG86z4eMkXIyyDYikxtq2CA9+2bXbnZ4samAT874"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:52"]},"IP":{"Case":"Some","Fields":["81.134.36.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justAnother"]},"Identity":{"Case":"Some","Fields":["vhEU0bQYlcLWfFlizjVq5onODNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["derd2peI9IIm4UtUBLZaw640F7H+QrEiFTduJULjiJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:08"]},"IP":{"Case":"Some","Fields":["135.148.54.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrgaVPS"]},"Identity":{"Case":"Some","Fields":["vgdSH2a8xDCDRFtqsWjt62u/SvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vYAHrCFpduir0nnbS4UNz1yr35eKlKrdDWKLLkHXJ0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:58"]},"IP":{"Case":"Some","Fields":["212.44.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["r4v3nrelay"]},"Identity":{"Case":"Some","Fields":["vdCdXbeCtgI3kdv/1G8QCx8COrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RS20mzcCvJ7eOSL86MeMfLRgX16ecWQt04smdNej23A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:12"]},"IP":{"Case":"Some","Fields":["198.98.59.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tungsten01"]},"Identity":{"Case":"Some","Fields":["vcj6qyLQ8llt9Aud8ilKlaTeCOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Iq+NyzVIWncTc8xb3qzMRIXikMAvuIPpgMZKnyMvmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:12"]},"IP":{"Case":"Some","Fields":["47.155.56.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GIZeStiC"]},"Identity":{"Case":"Some","Fields":["vcUm2igPoARLhMXrLcCmfJvhK6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L14T2ScHpKMsOCZ+U+TgN+C6mV4o35WRjohHaQX490A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:00"]},"IP":{"Case":"Some","Fields":["198.72.123.109"]},"OnionRouterPort":{"Case":"Some","Fields":[1220]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["cragg"]},"Identity":{"Case":"Some","Fields":["vcEXTHlLVWxHt8zmH/5l+xZye2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WRSDKHAxJTPpXjxu6nR1J0wTjcnmIpkxBSEbdPqe0V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:43"]},"IP":{"Case":"Some","Fields":["190.10.8.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiekoetter"]},"Identity":{"Case":"Some","Fields":["vb/tbornSgNuUTzYzWu/CZZlnAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cRtpndx/EwJ51jIRlwJc0/HkAo+dOmI9oq40tmYr7LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:40"]},"IP":{"Case":"Some","Fields":["95.223.37.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9002]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Skadi"]},"Identity":{"Case":"Some","Fields":["vZ75LgIBAzQZpxvWn17H6xgd/J8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZN5YbeatQl/vhvIutlhymvYRO87+ZMxaJLDnqBB3myA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:32"]},"IP":{"Case":"Some","Fields":["83.137.158.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay001"]},"Identity":{"Case":"Some","Fields":["vZdk7yY3pWgQddbv+Vzb6MhFGKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JnSWgOF1bEZxWXUvb20PQRjlJczuIbKnXb9QN84kZaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:35"]},"IP":{"Case":"Some","Fields":["87.98.240.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PiratesCatalunya2"]},"Identity":{"Case":"Some","Fields":["vZTz6P1MWzh7QsI5A3cjnDFChn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vXHfqlL4MbJYi5cH0A0ue5Tl1h/7g/LmawHvB5WQyYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:39"]},"IP":{"Case":"Some","Fields":["87.106.236.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frigg"]},"Identity":{"Case":"Some","Fields":["vYctC5tHrwD+tE3KIShiv4WtZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2N3Bqu/0cUyv/dLgB2vKnqx94KSUbqdsnX0oCfM9FNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:05"]},"IP":{"Case":"Some","Fields":["185.134.28.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["aprelay5"]},"Identity":{"Case":"Some","Fields":["vYa0Jk5S3hMuViJP2doh9MLyoh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfLiUTxaD8wybwCj3/gSpyyAIYEDWt8oxF6p+Oa4K24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:00"]},"IP":{"Case":"Some","Fields":["82.223.17.68"]},"OnionRouterPort":{"Case":"Some","Fields":[8054]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:809d::1]:8054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defconrelay2"]},"Identity":{"Case":"Some","Fields":["vYFck+nYf/syIGw1QL2FWQA9MyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GsTl5bSC89vtyjkJ+tIBa2VMJOCrYOaKtVxAAZE3dVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:38"]},"IP":{"Case":"Some","Fields":["50.230.231.84"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:327:231::84]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonjour2"]},"Identity":{"Case":"Some","Fields":["vW//GtWoio1Dhw1D7ERQCBtLK7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iy8s8G4EpU3yHrxF4NBgral8w7U0NYGvvY+3n7n+tnw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:33"]},"IP":{"Case":"Some","Fields":["188.138.33.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maatuska"]},"Identity":{"Case":"Some","Fields":["vWqCklXLCOZvvn03SDY1huRrOBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ppMLaS3SyQSNnjhKKYfUZRY0+llVDJMMUAOujHFgsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["171.25.193.9"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[443]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::9]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer03"]},"Identity":{"Case":"Some","Fields":["vWSGmcr+DsedSnonzJ58xabfiiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dJnUBw1ds87WQ4hBlfgv+S31ggKH/uELrmSGfXXBBzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:32"]},"IP":{"Case":"Some","Fields":["23.234.251.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HouseDimir"]},"Identity":{"Case":"Some","Fields":["vVahw2GW7paLKjRjzNZAGbTlJtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9b8neTxusBEgcBX8NDBAUf/AwzRO0o2tvRV/WFCU9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:42"]},"IP":{"Case":"Some","Fields":["86.115.32.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CuriousLoophole"]},"Identity":{"Case":"Some","Fields":["vU9WMAGkYRkxutZ0wYxINXcXxRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjDZPKwJLB5pp/+iuaKHcQXZAcIikAKspurtb3SkdOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:22"]},"IP":{"Case":"Some","Fields":["51.68.231.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["regar42"]},"Identity":{"Case":"Some","Fields":["vUxkdQgWL1nLROTfwcKyuKk4fMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZpWWUsGHtE1zYriQ6bDzwS+L6Cy/Hb5rG6YYAyGb2ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:30"]},"IP":{"Case":"Some","Fields":["62.210.244.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:3680:4242::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RealityNews3"]},"Identity":{"Case":"Some","Fields":["vUrzL+G0GbSlBJoysPwtg/1U30Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["89IEmvW+KlVp3MPg0EiQdJ+1+JSDTkdVa+VR9IzTZuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:48"]},"IP":{"Case":"Some","Fields":["79.77.182.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1b55::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra22"]},"Identity":{"Case":"Some","Fields":["vTPvGAsRGLAL3wc+J3EhDjvd2M0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YOwdfgS1NtLO1J/SEn2wUvKqwuHkB5Ry1GxDilqkvDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:30"]},"IP":{"Case":"Some","Fields":["51.178.86.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay654399"]},"Identity":{"Case":"Some","Fields":["vS4LW2k1Zk3/6DB84f8mnyq/qOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EBsLV6RPWp8ycQTdHjyEVY6QauejfBnFn+WxoNL9uDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:22"]},"IP":{"Case":"Some","Fields":["85.195.214.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9843]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blix"]},"Identity":{"Case":"Some","Fields":["vSvEFdXYrjw0Qw5w7ILPOwxhvd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3vPubBSgQWE9pVLG9YJKNkwMKZK6GrvLxFfxi06tk8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:31"]},"IP":{"Case":"Some","Fields":["185.177.126.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vSo0reTmA6Jy+q0jrvOJgBuyI7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCrahvppEfjZUlPpap70XBL8ULdMgHTJ+fKXoaCboa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:58"]},"IP":{"Case":"Some","Fields":["185.220.101.210"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::210]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz2"]},"Identity":{"Case":"Some","Fields":["vRyMphpTgmp8M4hadYb5+hPOeUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRV1BAwmY+2miAbN3ib4lroqYcALY4CJ1nuQ/qduStk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:10"]},"IP":{"Case":"Some","Fields":["195.201.63.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra44"]},"Identity":{"Case":"Some","Fields":["vRQHWBNaFWBZlszuO7+kEn+XsjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DN/3lGzwWFpFKsa2kGVfEYPBiCg4LxNxZ7pU7BaGEPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:27"]},"IP":{"Case":"Some","Fields":["104.244.72.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pluto"]},"Identity":{"Case":"Some","Fields":["vQINjts1XFNxmUIKryZJ+gRTbJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ZVgn0S+Cxs/3J3LK2A7V1A2Z8kq9iLE6PFfALxz/pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:34"]},"IP":{"Case":"Some","Fields":["167.86.127.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:406::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metricspace"]},"Identity":{"Case":"Some","Fields":["vP5UjqP/igs2EHecI4NQEkqO1t4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AN8okpjPky5nYo7szPnBPTtwfvjP1v6Mdh46c7cFxqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:05"]},"IP":{"Case":"Some","Fields":["74.106.232.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f11:617::10a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e1"]},"Identity":{"Case":"Some","Fields":["vPVfhl7m7xfiXv6vhRvEKfGQuF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["14bVRbTpqKTi2nNLM73u0YfUk90BV2wJreDDGo+QUoI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:37"]},"IP":{"Case":"Some","Fields":["195.176.3.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EldritchReaper"]},"Identity":{"Case":"Some","Fields":["vO+QgZWAXgPpLM/macSHOOVWucU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1DHq6tnjg3/vUn6qvwa8OZ3jf18NZaaBfNcrK2Hty4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:01"]},"IP":{"Case":"Some","Fields":["65.108.231.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:f500:0:d0d0:15:dead]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gurgle"]},"Identity":{"Case":"Some","Fields":["vO32wZOqaHrkcbiiLr9rxXwtKF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1nFNFBA5odOVYr+kYUzfZQPhlfxHeVUAJ1msGffWkMA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:40"]},"IP":{"Case":"Some","Fields":["198.96.155.3"]},"OnionRouterPort":{"Case":"Some","Fields":[5001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oenx"]},"Identity":{"Case":"Some","Fields":["vKNfcMsOelg/xuy4P3VbCD6eLfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GOA/nzt5wK4KkxN/4Ng7IgMoc0owCGmWkmqbSKysV9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:07"]},"IP":{"Case":"Some","Fields":["149.28.183.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5801:836:5400:1ff:fef8:30ea]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["vJJvjB8U5dyCf+RRvBiZuUth0n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6mnVkuN05EHNdqfOxgQX/VhxvYZJz213YmG7XfElEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:53"]},"IP":{"Case":"Some","Fields":["188.68.37.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["vIXObM9S1pFem84YI2iOC/41BlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/+aVzZQ8aIuRC9WkSTKC6ABr0WyAvHrUK40yboLTY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:11"]},"IP":{"Case":"Some","Fields":["185.241.208.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YagaTorRelay"]},"Identity":{"Case":"Some","Fields":["vHrPrASFTHcWfH1mt+RxMU7YxBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["keYro3Roe1sInH1MHNjHeLGAPWM95qhhQxP9Pe35o+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:28"]},"IP":{"Case":"Some","Fields":["116.203.140.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:e646::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay43at8443"]},"Identity":{"Case":"Some","Fields":["vG6AdEMU8WBUpk7g8jAvCCySmVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dker2vI3QGDbNyBDklzUc3dpiwb71kTxfDtfVeEOol0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:04"]},"IP":{"Case":"Some","Fields":["140.78.100.43"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv119"]},"Identity":{"Case":"Some","Fields":["vGRQNmTJC0qdqRNzbDYd6tMTsTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pcO55am6xb57p+9MOs0ha01yGzlHR6mg6MjcA2ug454"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:42"]},"IP":{"Case":"Some","Fields":["192.42.116.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5519]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["vGFjZUbtIaSf7ApTIGTblTj3xDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOMz0a7N175ijSePnTghi3swlPuKXW6DIrecgtWh3dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:31"]},"IP":{"Case":"Some","Fields":["51.15.138.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nognu2"]},"Identity":{"Case":"Some","Fields":["vEBZByMxKORt2bK79d3PJQhVr98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VJ0+Zfvk9bWEFOiVjh3+RHelPCcCtQeRnOb1ZaHNGgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:42"]},"IP":{"Case":"Some","Fields":["185.243.10.170"]},"OnionRouterPort":{"Case":"Some","Fields":[45531]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:bc7::2]:45531"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flexbit"]},"Identity":{"Case":"Some","Fields":["vDkkfGB/q4Y04eH7KfwE0jxj/ig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6WwuKSR1pnS9uXcug0V+1htpBGgig3Z2SEUABiPYgAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:50"]},"IP":{"Case":"Some","Fields":["193.233.203.125"]},"OnionRouterPort":{"Case":"Some","Fields":[123]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9203::190]:123"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h7nOq"]},"Identity":{"Case":"Some","Fields":["vCBmZYA9t8cwwloTFoiaTX57/wM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rhajvR6h4sF0XHBYb8KxvudSBFyL/yOblW91+H70I1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:45"]},"IP":{"Case":"Some","Fields":["85.143.214.143"]},"OnionRouterPort":{"Case":"Some","Fields":[20]},"DirectoryPort":{"Case":"Some","Fields":[21]},"Address":{"Case":"Some","Fields":["[2a04:ac00:1:8a99:5054:ff:fe01:3103]:20"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["razek"]},"Identity":{"Case":"Some","Fields":["vB6fZ/G5n0pSKHCW3aijJPP0v6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2cZla8pBL55mKz/IH/i2U4sIdI2YarxsXBcZ0Qnp+Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:21"]},"IP":{"Case":"Some","Fields":["181.43.104.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackMesaAG"]},"Identity":{"Case":"Some","Fields":["vBI9t/YenbMfI7N79ioW2qEBD8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OX07zxFa7raFN8seHvypbS5e1EVM92gKN90erH/34yI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:00"]},"IP":{"Case":"Some","Fields":["85.215.88.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["vAgKwNL3V4Y/Pj8UjCaOXIWE6K8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V1nswAkHGaoNUqlskRoIo6skuZR2w78jQat8QRUap5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:18"]},"IP":{"Case":"Some","Fields":["88.208.215.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:8162::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vAakroR93CP9YwguOIuzCSTatLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YXI2cOJIIWGUBvV2GxPpzX1VKF5YMZDz37oj0MgQnS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:52"]},"IP":{"Case":"Some","Fields":["185.220.101.62"]},"OnionRouterPort":{"Case":"Some","Fields":[10062]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::62]:10062"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckwar"]},"Identity":{"Case":"Some","Fields":["u/h2PFUfh6HMy2ZSu8CsM2v66i8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuN57hIETCqsOu+xZW6U3nyfxqTX9HsBwqptBjLff3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:07"]},"IP":{"Case":"Some","Fields":["82.196.11.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["kator2"]},"Identity":{"Case":"Some","Fields":["u+1CgipJl+lOWyilH7ZDmqi4NPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uF2AnWVxO6b0RfZXpN9OGZKZFFZXInW4IMrbvbrcKYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:39"]},"IP":{"Case":"Some","Fields":["81.157.78.106"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberation"]},"Identity":{"Case":"Some","Fields":["u+r/JKnTQG3MlUhN6zt935ipmYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pv31k0F7HHwarZe1FIYO5cYhJODK15gdo1RsuoIj8nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:58:17"]},"IP":{"Case":"Some","Fields":["87.236.199.239"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wombat"]},"Identity":{"Case":"Some","Fields":["u+Hb9gCbYmevtN73ifYv2dipQKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1freMiQKCOzvqROQZ2ucOeyvJsZCAoHvkW9PIoooYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:07"]},"IP":{"Case":"Some","Fields":["109.70.100.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hanktor"]},"Identity":{"Case":"Some","Fields":["u94SwyD9HD/77BUgL0bVYg/BRE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoRidu5rDplbt6LgT14YNOixvKEXb9/bNj0kNAAY7sU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:54"]},"IP":{"Case":"Some","Fields":["178.17.174.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:cafe::a3f6:4721]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ambrosia"]},"Identity":{"Case":"Some","Fields":["u9lfOM+RxKYgD+CaOVHGi+EY/54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c0absO6Tjr/jadXBaVyJcM0fNB2bobp4eyV/sEGrdDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:10"]},"IP":{"Case":"Some","Fields":["45.134.238.190"]},"OnionRouterPort":{"Case":"Some","Fields":[4430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sprucegoose"]},"Identity":{"Case":"Some","Fields":["u9j034/1xppqmJ24we4sp63+B1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SCjUNAbCnJAW2BYfblyCRNmlQCDIctm1Lo3XdPZcUYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:32"]},"IP":{"Case":"Some","Fields":["66.206.4.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blazkowicz"]},"Identity":{"Case":"Some","Fields":["u9GxoiaVOWx13/M4qP96EoBKYHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbcw3M57hfFAzJphhy6A5fUOJR9wVpUsq6hw18YMsPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:42"]},"IP":{"Case":"Some","Fields":["178.162.194.210"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorIruka"]},"Identity":{"Case":"Some","Fields":["u8Ya0uGK/nDpvkJtCyKpglIAD7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hn3VPQoDGZmzi96OS2AHl8K68nkDvS8vhBrMNspSseI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:12"]},"IP":{"Case":"Some","Fields":["128.199.131.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::1a6:f001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["u8SiFVD7lXugPkp9Qb4gMEhST5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwaFeb/chCwZFTTNgLx3pJW1mpkw2PZPyXxXDIBBq/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:04"]},"IP":{"Case":"Some","Fields":["23.128.248.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::55]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["caligulasAquarium"]},"Identity":{"Case":"Some","Fields":["u74PlG418Ls8xIYF0xIC9f8cjzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mnrFkGfb6XUJ7kvek4WER45/3YtYmpsCq5k17F1PCIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:12"]},"IP":{"Case":"Some","Fields":["198.251.89.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f154:dece:a5ed:dece:a5ed]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["motor"]},"Identity":{"Case":"Some","Fields":["u7u61FMmPXhuw0q2igYhQoiRA0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t+wd3ji48OLk/g0z13FZyMUuKlxozczfF3TEhOIZdVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:52"]},"IP":{"Case":"Some","Fields":["84.172.112.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9321]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6020:b2c5:d84a:bbbb:bad4:5326:3d78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andrethemac"]},"Identity":{"Case":"Some","Fields":["u4kXpHJH3XW4OjmFsgdyxBPJyRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9zcDJ2s+BRzm8R6TisCtNiXK95a6Mr3FbptleTwxjqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:42"]},"IP":{"Case":"Some","Fields":["84.196.9.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde6"]},"Identity":{"Case":"Some","Fields":["u3cjvFqsqKiH4zrVRvGjRlDMW7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XLwxtHHXljcy7VBVnLq/9OY8JZFo45c2aKrAVDQK3M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:42"]},"IP":{"Case":"Some","Fields":["89.58.17.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:fb6:200::208]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porcupinemike"]},"Identity":{"Case":"Some","Fields":["u3ADyvs+SYalzP5xvUOeuJSeueM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oAToHormhN+CTXRAE5/nzezdwQ6b5WK3Gdqu6AfcEts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:22"]},"IP":{"Case":"Some","Fields":["109.250.88.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0rexxxpallas"]},"Identity":{"Case":"Some","Fields":["u24aeshwLsYk3/m7bcSvMJflfKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b5FdoF5r8Kgu+J2jrvRQS6MlfGVHOtDR5vS1qn0Bhnw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:44"]},"IP":{"Case":"Some","Fields":["213.252.245.153"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::35da:3bca]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HumanRights"]},"Identity":{"Case":"Some","Fields":["u2W12Imd5fj2AY4H4lfNcj2hMlM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ePIGzuLQZ97HsX7ojqBtzI+UrI8InMozkz2n/S7V+/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:51"]},"IP":{"Case":"Some","Fields":["107.189.28.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f67f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YonderYuccaN1NoExit"]},"Identity":{"Case":"Some","Fields":["u1+uULzlsTyBDNF6kxoEmORoHUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a1gPW4syOv9aA7qfM2RhWAZ1IMILX7nYqgsuRCFpiCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:37"]},"IP":{"Case":"Some","Fields":["212.51.136.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6a16:1130::31]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thefrenzylands"]},"Identity":{"Case":"Some","Fields":["u1rC7HiajDUlodGWfqTPPXtBQXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+AGK4AMQFRh2g9CNzqkyKqUtqXL3DIAWbVR6Lk0/nY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:00"]},"IP":{"Case":"Some","Fields":["158.247.225.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange010us"]},"Identity":{"Case":"Some","Fields":["u1YwlnYH2Ki2yoVK+VT+g3LRZio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtIl6+CYgiMZiN5gNPFZ5SL9LjhuYauCfDfk4uRHzhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:25"]},"IP":{"Case":"Some","Fields":["147.135.114.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::2d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soporific"]},"Identity":{"Case":"Some","Fields":["uy3XhvionbXL+1fhupmbNz+phA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AB0TBx8DTMoWCUjP6jwymM/ayBL1DT6UTL0Kng1vQRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:14"]},"IP":{"Case":"Some","Fields":["23.238.170.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeroPlayground"]},"Identity":{"Case":"Some","Fields":["uyr8F0v8/wLxVKnSSIZXXjJrd/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BeUFo7hXzxUiF5GxPFMUlaPY1w7TcbE+C2KhPEwf3BY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:06"]},"IP":{"Case":"Some","Fields":["77.68.102.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bruhrelaynyc"]},"Identity":{"Case":"Some","Fields":["ux0pEKSSaGrXIdzMFwwsOWfzqCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bl3ioAjuy04ZunKoBtY7nFo1DkM+N4/zSkY0047yCmU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:31"]},"IP":{"Case":"Some","Fields":["159.223.120.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::199b:2001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uwfpgj3nnOyakG7MjK3FamU1e+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcajfbKAbIFJPdKVtzBBquFHEewY2nzDPfXuiFbPCa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:37"]},"IP":{"Case":"Some","Fields":["23.128.248.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::c047:adff:fe9b:8d65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckwar"]},"Identity":{"Case":"Some","Fields":["uwWaWuNUFBLdvM9JNWptSrCBfT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["68KIbV8nXwFZZiuuiKTPMj8Ny2nQk6BIlZ5P+RNO3Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:58"]},"IP":{"Case":"Some","Fields":["5.101.51.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip1b"]},"Identity":{"Case":"Some","Fields":["uwNMNO2eYPdwntk/tDKpuhKi8rY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frOuMa2/Gw11px9JvG1MfS+J7S/8nDoiNU/LtcjW0PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:59"]},"IP":{"Case":"Some","Fields":["185.220.102.248"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::248]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uwBMf0xcn65eABhkU3+JOIRE9XI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gX/2PhWT3N4ecDfcpXvFw8BG+mzQ3j0rFsZZbgdg3Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["37.191.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe4b:98c7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra85"]},"Identity":{"Case":"Some","Fields":["uwAFWPEMHXYNnIxWVao02qOGnK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w5y1UcACbHZdO41lrJIGThLE92t0mhTQBmSKA/Th7wU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:17"]},"IP":{"Case":"Some","Fields":["185.146.232.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darkwizard"]},"Identity":{"Case":"Some","Fields":["uvIj6d9i0yYfFnXGz8Tl1Q8V+lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VQUn8RZXPLiMJNOnOguEZoDaD9yyvSnj214JAm6vuI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:31"]},"IP":{"Case":"Some","Fields":["62.171.137.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amer02"]},"Identity":{"Case":"Some","Fields":["uu8x71fp+vOD0OcJn4yHliR5MBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6JoBP9NS3bfOJo/6ylM63OE8K++6DdnLozrxHhPjcKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:58"]},"IP":{"Case":"Some","Fields":["192.99.32.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uucLWmGxKj0x3ulOaXrx/ampuC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aykzNpFo9YHZYCwjsKyBMksNCrMs9YfWZaW3RGixYL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:44"]},"IP":{"Case":"Some","Fields":["96.224.58.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarknSpace"]},"Identity":{"Case":"Some","Fields":["usywdwWxur5cGxq0jiPZz5923us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Ke1fZERvrjTUj2HKupLBjsoIQuOuBa4Ypnd8oZI7Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:44"]},"IP":{"Case":"Some","Fields":["89.40.13.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:5928:dd9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip2b"]},"Identity":{"Case":"Some","Fields":["up1/uatO0PvKVpQdoiz3dwuhpLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ESP99P5UClggAQxy4Eo+0taxziTOZzOtf9nCpVpJeng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:52"]},"IP":{"Case":"Some","Fields":["185.220.102.249"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::249]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop3"]},"Identity":{"Case":"Some","Fields":["unw7la+nSgIdfSLIVvh+Kr/vybU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y86ALnfVZhnE4SQzJnbw/Egc5h7osQOBgB2XDuIXzQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:38"]},"IP":{"Case":"Some","Fields":["82.165.70.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["unhy+8lsxxA6zzpZgWZ0NFTWkKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rI5RIJLOaUS0Jeznkf48P7xCNm1h8WNWTSJ9NGnpqbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:39:02"]},"IP":{"Case":"Some","Fields":["146.19.173.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra86"]},"Identity":{"Case":"Some","Fields":["uncUm07adlQ2mPBRBPXCVH4wbXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ww/rXXBgj/FThJAi8PI/Dba6//Y8hNE83BrwWjXHzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:54"]},"IP":{"Case":"Some","Fields":["107.189.14.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwoone"]},"Identity":{"Case":"Some","Fields":["um4GRZa4avn1XwYDqCyQ6Vjobno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["49/q6/BKAe1GQkxK5wvqQECBFt+US3/bBSchvQiYEkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:34"]},"IP":{"Case":"Some","Fields":["135.148.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ContaboNixGut"]},"Identity":{"Case":"Some","Fields":["umcbcOaWqy+FrKPZmLgAjRRVZxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0a4hxKdAGV1yA3CN+20cZQFEO/B+EGiR8Zu2k+GJ8QA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:06"]},"IP":{"Case":"Some","Fields":["5.2.78.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:358::2bd7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["welcomehome"]},"Identity":{"Case":"Some","Fields":["umXLYfqYwOHKI/VCOO4P/snBHf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfnQwWsf015q+XNNxCa9O+FwJK0Cv41vnXgr79H8gmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:23"]},"IP":{"Case":"Some","Fields":["102.132.130.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Echidna"]},"Identity":{"Case":"Some","Fields":["ulciKg7J7N8AOu1mXfsLEofqA50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3swJ4qtgGJrdgQVqz8DsS/YnB+1wBMhtXedyXIBy1Zo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:37"]},"IP":{"Case":"Some","Fields":["51.81.201.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::cd0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3raserRelay01"]},"Identity":{"Case":"Some","Fields":["ulOfMwFORrz3aNYbRiBNnd6hfkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SrLzlKFIvQu2YQNs1pWcoC2wTEjYv4whjEqUdn+XpuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:35"]},"IP":{"Case":"Some","Fields":["135.181.37.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:b3db::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fc3"]},"Identity":{"Case":"Some","Fields":["ulCQt4S0O8LRpBryumYw2nqZ+BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wpIVaO5PW33SHpekQnynfd4N+NDWVeRxvb/6mgzSjZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:20"]},"IP":{"Case":"Some","Fields":["136.37.16.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dattor"]},"Identity":{"Case":"Some","Fields":["ukgaPIBEfvtngRk43dObH3nhwG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8pCbxjSJIL8W2/d0bGdYgBj3VcdCvuoTX/W7CECXzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:38"]},"IP":{"Case":"Some","Fields":["137.193.65.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Serge"]},"Identity":{"Case":"Some","Fields":["ukSoieZLk/qisRTgLConmoVVxTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sG4ylP5agzXxxBPIZr468grEzj6LiOaKlve7cscR7F8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:28"]},"IP":{"Case":"Some","Fields":["66.111.2.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2610:1c0:0:5::131]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["At2lanxztaRelay"]},"Identity":{"Case":"Some","Fields":["ukPkvc5EmdvyJ6EBVWnhWzK0ADc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nu6ZTLcisGlxWoV3Lx3m7AOOYo86cpMWqwDSoQSVkMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:49"]},"IP":{"Case":"Some","Fields":["45.32.219.137"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5401:15c6:5400:4ff:fe23:bde8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7d9"]},"Identity":{"Case":"Some","Fields":["ukO8pbbM+GJ0+M3//3ppL1+Vt3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j6te5FzVPE1Xi6IP3MG25wL7a1MgTmUAPuX+4oVq1b0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:39"]},"IP":{"Case":"Some","Fields":["65.21.57.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting22"]},"Identity":{"Case":"Some","Fields":["ujqk82k7+nuuXwmZ9+Y5kFF74vI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/MdYqeKTE0jMp55XQDBh3GO65VIlpssnpq/ESoC9F8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:05"]},"IP":{"Case":"Some","Fields":["185.204.1.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WWW"]},"Identity":{"Case":"Some","Fields":["uiV1ueE+uhWP2RY5TFBGpr1vYZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xRV1BaihtV681+g/ytV8jhlh6JpOKcd2IaVIUcfVY4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["141.94.71.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::afec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blu3Sun"]},"Identity":{"Case":"Some","Fields":["uhP/OGH3iN8ZxUGIIKnZF9wmvhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HMi5IEst6Kvk4LPyxYS29r8XigOLKyp3MY5BdKiRy0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:03"]},"IP":{"Case":"Some","Fields":["185.130.44.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay10V6Rocks"]},"Identity":{"Case":"Some","Fields":["uhNMey5o7rNhJNrI6+lEzXL74HU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjcMdh24bkVsi6AjPt0nyUWDB0n5UKQAnTKoho9Ak+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:18"]},"IP":{"Case":"Some","Fields":["185.194.142.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:773::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeassange"]},"Identity":{"Case":"Some","Fields":["uhMyRxlIXcO1/yWMIWAyh/Gv/QY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCkgy+mgD7hfB7DRsw5aoNQH6kOxNbarejB1dEHKNFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:46"]},"IP":{"Case":"Some","Fields":["144.76.201.253"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:82ca::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schuehlein"]},"Identity":{"Case":"Some","Fields":["uhIz3BMuNYzPjYlaWFdDFpVCBnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P0chqSLyE1FYyMQhGgy/Subd9t1iZ6qO1ygXTgpFUeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:39"]},"IP":{"Case":"Some","Fields":["85.92.108.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["uhDtLdB5rfPuftUWreGqsI84D3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LO8Ap8/4DiUhV/SOPBZTUSqiZaO01N1Jk86diVQG52o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:34"]},"IP":{"Case":"Some","Fields":["23.128.248.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer02b"]},"Identity":{"Case":"Some","Fields":["ugU8cuR2weudBSN9DWoonBj76Oc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bgEZLd8rvX2JHOlpIOG14Pe14WdSb/g2WCATBgjMJrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:37"]},"IP":{"Case":"Some","Fields":["82.165.169.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vanbo"]},"Identity":{"Case":"Some","Fields":["ufafFE31vi/ZLdv55nxlnsxeU5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DxsEJOU71rxDqSkF2Ijr2T1pg30B23wJ5pTuEYrNvNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:07"]},"IP":{"Case":"Some","Fields":["178.63.3.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:44d3::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv26"]},"Identity":{"Case":"Some","Fields":["ufWnVl72dFZBkqwY1t6zAboKFaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jEr6TYE/kR8TYFjKVxRSI60Ly18rxSTqhdd4USY+GM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:25"]},"IP":{"Case":"Some","Fields":["45.62.224.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skiff63"]},"Identity":{"Case":"Some","Fields":["ubrMrt5wK4UnwGzRZRoDOVabrLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fapNnVZ3FthPECASuJnBKi6JGa6xx8syVYN4+idkD8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:56:46"]},"IP":{"Case":"Some","Fields":["45.94.107.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversdeFrissons"]},"Identity":{"Case":"Some","Fields":["uazjFvkx0J9c7yDHNxz9yGnWaHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["utC7ewz4R9vIXfM558qMh2oi3lWJCJusFcF8gUpS4yg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:48"]},"IP":{"Case":"Some","Fields":["190.103.179.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x0"]},"Identity":{"Case":"Some","Fields":["uahPYh/wTTs6lrsxTSfBS/pUptc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KUXLtEpi8PI+np0CfAcRBWr+rknmJS+t571iYi/5nXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:41"]},"IP":{"Case":"Some","Fields":["185.133.210.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:e880:1:f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uaXLLYTWV6TA0pBHhHIh9fuVH9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["foAd7R8nSKuBNjgWX0kj58a7u8XWuwRv7xuCmIpw53o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:05"]},"IP":{"Case":"Some","Fields":["217.70.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc08"]},"Identity":{"Case":"Some","Fields":["uZxot3rgbND9PBnm9VUocr4udgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdJd0iCbcrsY+x/cg+JqhC9JQJDb2lqcbxA/Xkw/QLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:37"]},"IP":{"Case":"Some","Fields":["185.100.85.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mobbingsyndromde"]},"Identity":{"Case":"Some","Fields":["uZYsGTrkMT1iXpv7lBXEMGIU0zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3BXqGrQtz6zpRC1E+4GGoMbU6S16mTOII6ElXWbsKuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:33"]},"IP":{"Case":"Some","Fields":["176.95.148.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRandomNodeWw2"]},"Identity":{"Case":"Some","Fields":["uZLToFdzHWHmDYIRbs6wMp18vrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V6h1wNZecFdgZ+PP586txnL4tSlBOdtHLe8fWUQTE7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:47"]},"IP":{"Case":"Some","Fields":["212.51.143.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8059]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uXiMRQsJ58Ls1mrXj2/DdZr67DA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TijONyIUJ/WgnL/E/yZ2LtHrCwpivlmTj0GZQK553nM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:57"]},"IP":{"Case":"Some","Fields":["23.128.248.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::9998]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay39at5443"]},"Identity":{"Case":"Some","Fields":["uXcVyKHucmecdEgPMBsRrAFbTFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bfEi0LC6hAmMVQBf54kJ4IB9ctdAkTRgrBaK1W3ZcTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.39"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gengi"]},"Identity":{"Case":"Some","Fields":["uXTwyBXHB/V/l80VmHR3BpK9p+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Qrs9NLJLGH6Z/iNMwfliOTax6bL8N3ODc0IkU3tTVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:23"]},"IP":{"Case":"Some","Fields":["42.191.75.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamster"]},"Identity":{"Case":"Some","Fields":["uXD3Il/X9gK5rptn7YtmgOjRTCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zNv1VEmc6eUED3PpJv1C9bbjTbuJw+rAPttTjQefLC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:29"]},"IP":{"Case":"Some","Fields":["5.95.167.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Guy1Relay"]},"Identity":{"Case":"Some","Fields":["uW3SABimZSYBa9SCGEKfdUxgf/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/flCXksghzRYX0JtzKBU8vB33AUnr19JTXHNyRe9Izk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:25"]},"IP":{"Case":"Some","Fields":["23.126.9.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc1"]},"Identity":{"Case":"Some","Fields":["uWot8cI9+RadcK3gmTvQAzEfUdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KSQgWd7cw+3UUedm+ob3pQVw49l/it80hHuRGf+1GYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:12"]},"IP":{"Case":"Some","Fields":["91.11.218.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hooyah"]},"Identity":{"Case":"Some","Fields":["uWmqFpjztwIK0ulxswBq0xmZbiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W8MItYzAjiTzANnwXmR5HJoKTsuIGooFK1hRAIT4vPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:09"]},"IP":{"Case":"Some","Fields":["68.6.151.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defconorg"]},"Identity":{"Case":"Some","Fields":["uVaoKpVZ1ILhrP6r2Jj9w/KZEAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JGsNnxtrAz2yqKaZp3J0LOtAUD80iEocVcFWjtbLCeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:07"]},"IP":{"Case":"Some","Fields":["50.230.231.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:327:231::84]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MightyMasturbator"]},"Identity":{"Case":"Some","Fields":["uU45RU2Ot+bcfI45+Mi43MoAM8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EDIIAVHgwjNVIvMGqRo0il0BJCc7sTAyy+qlm28GwkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["109.229.210.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay30L"]},"Identity":{"Case":"Some","Fields":["uTUD1FjZ/pfeXBLSEQgocdCPEoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4Y6ZMabKDqedAsqnOfqAhN25Jx4c+dkwLg8U5H4fm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:19"]},"IP":{"Case":"Some","Fields":["185.4.135.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:217::e528]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seth0r"]},"Identity":{"Case":"Some","Fields":["uSfpv2ZgPca5lrWKLCt6bXITrh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6gS/qL2OrDWiL6BwMBBa94g4QeiidXZ180OSitaiBIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:50"]},"IP":{"Case":"Some","Fields":["94.16.122.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["456f"]},"Identity":{"Case":"Some","Fields":["uSM1iJF8X2t9p3ERhwcJBZG8TIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oi6cXuKnea8/QMRjJ0TlZOJrgtvuz5Km7vwrFaL2Rpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:50"]},"IP":{"Case":"Some","Fields":["91.213.8.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bitplane"]},"Identity":{"Case":"Some","Fields":["uSG4uPkBTn0P5y3m5cQx+hu6GpE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yo2Ifg66VxokCdz9aP7R98uWT9rC/fQx70ggVPUKf4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:18"]},"IP":{"Case":"Some","Fields":["74.116.186.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2606:6d00:1ab:e701::235a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay16at8443"]},"Identity":{"Case":"Some","Fields":["uSCOrR5ojp7kOgUVms1GOOtN/Yo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUiEfNLXB1+fITIqt6Slx/t3XCCi0sVx+GvdrapPT/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:05"]},"IP":{"Case":"Some","Fields":["140.78.100.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange008fr2"]},"Identity":{"Case":"Some","Fields":["uRoesw5m1SAm780elr/A6WbIPm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5724z/OO5+/RAVz+rM/fhwNKCBs0/c9wNH4c6AnI9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:54"]},"IP":{"Case":"Some","Fields":["62.210.105.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gandi24325exit"]},"Identity":{"Case":"Some","Fields":["uRb6hz4AoaEITbpA3XZ/tlm+o2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0l9b5o2nO//6p5vBpGdxVDefmUpzR3yOF/S3N7CACcs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:13"]},"IP":{"Case":"Some","Fields":["188.68.42.230"]},"OnionRouterPort":{"Case":"Some","Fields":[24325]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:9d0:c8b0:10ff:fe6b:1cf8]:24325"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aplestia"]},"Identity":{"Case":"Some","Fields":["uPrk3jw03L9CV4UgVAigBLecaNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ye+8o9lmhYDajFHhetnd29vUAQSj7pquVdKqgnhNGgQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:33"]},"IP":{"Case":"Some","Fields":["199.195.249.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:bd4:a109:2316:1352:1488]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["uPLNoT5QgBvB4G/dHKmEredrz3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdvEFW6JxVzDSDoQX/AVLG6dICBvT72F0V09yQmMwTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:34"]},"IP":{"Case":"Some","Fields":["92.223.65.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:154::b9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MalfunctioningEddy"]},"Identity":{"Case":"Some","Fields":["uNxOrqmEYm3NUtoevQO+8TWrK8Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9rfp1dwLUNhlnJfCATsuyBtT2HoyUzaz7ShDnZVpmDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:11"]},"IP":{"Case":"Some","Fields":["71.192.152.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:558:6017:16b:e5cc:c5c0:daaa:dd12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soltor1"]},"Identity":{"Case":"Some","Fields":["uNjgdEjgQF9CdeUohO2c72P+5KM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v9yOSd+iAK1Ujl8SYPl8zgDeP8wFCikiPskk/IVl0Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:33"]},"IP":{"Case":"Some","Fields":["206.55.74.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["memcpy2"]},"Identity":{"Case":"Some","Fields":["uNReWONfYiAbkG7JJ3ldM2SawQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P6OlJwQ6I782M8Z/FGd+4JmX+qp/2ic76G6NFiGpHZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:52"]},"IP":{"Case":"Some","Fields":["141.148.237.212"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6eff:4be1:c987:15c:da63]:8081"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay40at8443"]},"Identity":{"Case":"Some","Fields":["uMnKepCi2UQGxtmJk0DraNpCZbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjsVpD28TsqVyrNzZsOHrhUCyW/eW1mjBhVUOpIWRvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.40"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange009de"]},"Identity":{"Case":"Some","Fields":["uMfVa36Hs5vQh4xdHWkTBZbQv60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["du0hc/qFv8yTAR3isRZAy2w0OP4Xo2Se4FdAbN4cIrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:14"]},"IP":{"Case":"Some","Fields":["173.212.239.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2031:2233::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pIetr0d1C4rB04711"]},"Identity":{"Case":"Some","Fields":["uLtAcC568tv+odH1xCU+qtOGmCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuvvnK8TGfr6Oh+JVHJSU2iyfHq16/a7N2++H3arJ8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:03"]},"IP":{"Case":"Some","Fields":["130.61.189.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["uKwlnUABcpl9CBILO9WkCQhBsG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n83w5AfUci2zv4UlDi+g9/GL1vd2/EW4J2Wn62V65Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:59"]},"IP":{"Case":"Some","Fields":["185.220.101.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrolantor"]},"Identity":{"Case":"Some","Fields":["uJHLY3DPfFHG+yTYCUevt+1GPQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GKfdaYM9G94rkMdZd/44zpBvFbidjFlqrKKjOE10JRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:22"]},"IP":{"Case":"Some","Fields":["185.220.100.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:9::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uIi7r1lbufXxH0t71BOKwATfpfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M77fs9qGLYXJRbSsebJuLdPAhgHR72qWqARmf0C/es4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:26"]},"IP":{"Case":"Some","Fields":["161.97.67.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3006:3185::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["franksToeKnife2"]},"Identity":{"Case":"Some","Fields":["uIINTQnJHObehExaWCS9Hef9dKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZIkh1xMxsijcLWg/PJ6yLy3XpKAWE/cuXsuUS542eNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:13"]},"IP":{"Case":"Some","Fields":["72.182.120.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9923]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["who8USicebeer41"]},"Identity":{"Case":"Some","Fields":["uGt4XeQW2v6O1mscgpsOb1czRRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Kqol/jjB3/Hc419a9+YYMPn4W19lwpnWZWgCanOQqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:04"]},"IP":{"Case":"Some","Fields":["69.197.160.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8552]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy60"]},"Identity":{"Case":"Some","Fields":["uGE3rpaBcBkBxnIOVcFoBbRr2OM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bc3mdeqS8Z7gJCnfYX4c162SFVPbhSa6lpH/x0OCRUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:08"]},"IP":{"Case":"Some","Fields":["212.83.43.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:abba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mj2"]},"Identity":{"Case":"Some","Fields":["uEmCT4/NeusTDfNW9ZK6QMaGygg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EWyaOQsYD/jq/G2eXm1yafRiDAPw5ezqcob5yge5ozo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:57"]},"IP":{"Case":"Some","Fields":["93.115.86.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet3"]},"Identity":{"Case":"Some","Fields":["uD3BVY8NNDU7uZLvk6/q/bImpz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNiI1b/2zf+E2JsKMG/F5yMphfPEeWYiMJozIU9A2fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:41"]},"IP":{"Case":"Some","Fields":["193.11.114.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::101]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trustn00ne2"]},"Identity":{"Case":"Some","Fields":["uDeJRmkg/6qkG5IzM+I4OahI/BY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9o9bqXqllDQiqhN7G5i9KSwhCMm6DKsiMZgZXUp7+pA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:37"]},"IP":{"Case":"Some","Fields":["84.234.250.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheKrustyKrab"]},"Identity":{"Case":"Some","Fields":["uCX2FNZAKzbhuOjY9Pfhw60Mu2A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEXxx5/fESKQQR7K29NUzqUp/WFigv8s/BXcjafizuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:05"]},"IP":{"Case":"Some","Fields":["70.173.175.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["respecttoall666"]},"Identity":{"Case":"Some","Fields":["uCQKTHFaJZXOVMgqsXXIAhR2i0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwBE75Kv2c6O0/vVp/CE7/H3q6vCNCtPtq1RfIdZWwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:27"]},"IP":{"Case":"Some","Fields":["83.35.162.197"]},"OnionRouterPort":{"Case":"Some","Fields":[12813]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harlock"]},"Identity":{"Case":"Some","Fields":["uBs4kCvwJr8lkcotc7mc7rA/CGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8h1w7rkmkwpD97ZIWU2NwWaAr7o1U1rPweSzRjXnXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:58"]},"IP":{"Case":"Some","Fields":["158.69.205.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::4dc0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uBI1UL5qOf9+wtAVyGdVUXkHVX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbqMHk/yrfeoOoDzucBhN2mg5H2Ppuy6mfj0K4wWh2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:07"]},"IP":{"Case":"Some","Fields":["188.95.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay3"]},"Identity":{"Case":"Some","Fields":["uAwGhT980LQ1/sv9Vyq4UEOf2gI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4lfKwWhCP4wcAJeifyLn33esnQeUTfW9A7MRhrnsCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:32"]},"IP":{"Case":"Some","Fields":["66.175.235.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GummyGooseberry"]},"Identity":{"Case":"Some","Fields":["t/kFKEjbd8C5ZyLppHruwlea3JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QqT9AFURE78Y68E6rzSBsSWxiyJ6qSFYu8uxMp7HBew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:49"]},"IP":{"Case":"Some","Fields":["99.199.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[55001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation56"]},"Identity":{"Case":"Some","Fields":["t/YKgXN85jXnUcW8pnv9INryYVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tEBi272jfkE2Fp0dgOnd0UqzFPrS9czigxvwhA3j4as"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:43"]},"IP":{"Case":"Some","Fields":["51.75.162.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex52"]},"Identity":{"Case":"Some","Fields":["t+zZxqkQoXC1UWV0IEnLzHd0lPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SSKRsoK02J/WhMke6h8gP+BzUi5Vh9+sjbUtn0d1yEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:12"]},"IP":{"Case":"Some","Fields":["199.249.230.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::141]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["t+mEnURvxX1L3tk3uOF/Oqzh+gY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkPpCEmouHbxgzyK+o2mLAbK+r4TeSwT+h1PrU+KfRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:55"]},"IP":{"Case":"Some","Fields":["185.220.101.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi2"]},"Identity":{"Case":"Some","Fields":["t+PxQviOK1XmB7ODKA4ePvbmKss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lm7ipuwv63HCgx9LIyVSL3y1F7c8y86iwNAeO30GgA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:21"]},"IP":{"Case":"Some","Fields":["193.31.116.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shibuya"]},"Identity":{"Case":"Some","Fields":["t9tJtE3ZM8lktHw5mlD11Q/fkYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofQrkM2/vaLSILxRxsa7+x6BxNaOq4X4HDY9J4MEDpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:42"]},"IP":{"Case":"Some","Fields":["82.197.199.203"]},"OnionRouterPort":{"Case":"Some","Fields":[48912]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["peep"]},"Identity":{"Case":"Some","Fields":["t9dz4hlttbQSnTwFDAY9sPjfkaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RLsbSCW4aQdQWfRHB7n6FDNJ9hH8XeJx3tdfwi9mSa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:46"]},"IP":{"Case":"Some","Fields":["195.201.94.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:6f8c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["t78C6FbyA7KODXEIjXHxgG0LatI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rGoHQfqGKvXmSPtb21T8hPmfF3O6d0RjisHay2BvtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:37"]},"IP":{"Case":"Some","Fields":["37.187.205.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BonoboDanada"]},"Identity":{"Case":"Some","Fields":["t7lEWP51uSGH2+waph6SjYKhySI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CAoSGwEaK8wmIUpUgNmg+BreDk+Dln07gwcoGulUz3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:16"]},"IP":{"Case":"Some","Fields":["173.71.120.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glowie"]},"Identity":{"Case":"Some","Fields":["t6nz2pL73kmJpHb26LnHC2EW0sU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkVKQJS58GYhgov1ZMYPFrHG1CIK+AFwwtdt4CY1qzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:34"]},"IP":{"Case":"Some","Fields":["194.195.253.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:93ff:fe08:4486]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["t3a6FXOlVDRCFwpnvcjq1N5zHI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/YtiIF6roAnRn665ZI3HVWDR+VMHkrVUtyumbBfeJp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:49"]},"IP":{"Case":"Some","Fields":["158.69.225.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["movingdown"]},"Identity":{"Case":"Some","Fields":["t3GsjxPbHaGzU88FDEwiwhB7ymU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVvFMzINRftZGsuDlR7EyZoJNexfnLQKLBBmLkau1HU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:01"]},"IP":{"Case":"Some","Fields":["66.23.203.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fracturedcode01"]},"Identity":{"Case":"Some","Fields":["t1yOAU4gtqN1/j1bAdJVTNnOxK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jW5Zy/W59J1uNg53q0ZLOO9dxLxl3WKemsWir5roCZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:17"]},"IP":{"Case":"Some","Fields":["140.82.16.129"]},"OnionRouterPort":{"Case":"Some","Fields":[6910]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EliteZealot"]},"Identity":{"Case":"Some","Fields":["t1xDnzJnh5zi9vne41Wza0SFmWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UYJRJ8vuhZBSlRdrffss1Fyu0Jd2INpyz5APjCoH5sY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:53"]},"IP":{"Case":"Some","Fields":["78.107.239.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorSL"]},"Identity":{"Case":"Some","Fields":["t1JtoEYBDPCGaSdF6L0FKLA5w/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmgt+TDNV+czGKOI6OdNyuSYsmoCF5nlN55sLkJEPFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:02"]},"IP":{"Case":"Some","Fields":["213.128.141.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedomRelay"]},"Identity":{"Case":"Some","Fields":["tzf7bL9+UU3Y2LQyoUl7nb0MRdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ArLdX0tHlWC4WlaxcSqTAyYHBHJaeET3VHajR2RWe/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:46"]},"IP":{"Case":"Some","Fields":["135.125.55.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Maine"]},"Identity":{"Case":"Some","Fields":["tzJ7VZyhUx0YI4biG0ho/Lfw9FY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oq+K31MtdcxJ2LygpobCHx/J4t4cfwnJ8sB6hKB+Ggw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:07"]},"IP":{"Case":"Some","Fields":["107.174.138.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hastyfire"]},"Identity":{"Case":"Some","Fields":["tzJiFanPsTkmGIQfI6DZ95NasQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8kqEKuXAawXLsNy9My4hhT3od+ZUF8naKztGpvLvCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:52"]},"IP":{"Case":"Some","Fields":["91.203.5.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alien"]},"Identity":{"Case":"Some","Fields":["tx5oqAxRVnRd3ndB9t5eMgKr0JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ZRpIyQ0RoZ2T7k75Jct9qdt+NTOLJCJ90rWD+k6uXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:55"]},"IP":{"Case":"Some","Fields":["91.203.145.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mesrouilles"]},"Identity":{"Case":"Some","Fields":["txFySlvNfTBDcSHa972foljDjZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jRFFZv5/lMcvJhyTlNm5/7V1BKFPxingFy0EgIt7ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:58"]},"IP":{"Case":"Some","Fields":["109.24.157.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hdjfgsfkmNflnzjg"]},"Identity":{"Case":"Some","Fields":["twl4ijWO2DXvhgjSegL10dYy0jQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbECWPZYfNnY7hRdx6oiHF6xR7ftcYWeqWwPkOFlBHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:43"]},"IP":{"Case":"Some","Fields":["162.250.191.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WestonReed"]},"Identity":{"Case":"Some","Fields":["twfJhTspWMef/qm4EuVHtH7haDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PYvX9UjPTrxtHWU0MsnDvPnoUqWtmqh0axlV22SDkJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:05"]},"IP":{"Case":"Some","Fields":["23.134.136.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fb9f::dead:beef:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex11"]},"Identity":{"Case":"Some","Fields":["twR/venFPDkBHKhOXLKo41QwZtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hjze1dhBgWB5mPZ4J8724UztyUDZwdwWmIx2JUbctP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:20"]},"IP":{"Case":"Some","Fields":["199.249.230.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::101]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elhombre"]},"Identity":{"Case":"Some","Fields":["tv1e8oz0TYgmYMBC09q+dxSgWd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNhPPM+QKx+TML9w6nIp8dYSXTg18jRYMF1vH3pAeAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:47"]},"IP":{"Case":"Some","Fields":["185.151.242.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8081]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sliderzz"]},"Identity":{"Case":"Some","Fields":["tvERMwZ4fU9Y+qwnWa/wsutClEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gaFvHr+/KFZAsJZ927WkdUJeunqTJveQkpJhuKj3VqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:55"]},"IP":{"Case":"Some","Fields":["172.106.10.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HerthaGresham"]},"Identity":{"Case":"Some","Fields":["tu18Zvtnr9Bx00CpBAQbHiu6fM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["foHd0Yb77IHgXyqRdAO7Lw2AmWbeVtwIuJF0RuWwdmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:26"]},"IP":{"Case":"Some","Fields":["5.181.80.110"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Neyo"]},"Identity":{"Case":"Some","Fields":["tuQBZ76ELyebEbKg9ZRxg4eqdeU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/8IGT9ULDq2C+/96E2K0muuRvFgFe8mUlBX5y4fxEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:42"]},"IP":{"Case":"Some","Fields":["188.213.31.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:3c:a257::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ttgRCzS9QBrfhbetByXERcVetls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4fdvz8eXkU00Rv8qZtOvCdy9rQIUAw3vh/u6PtWaWFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:30"]},"IP":{"Case":"Some","Fields":["185.207.107.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay03"]},"Identity":{"Case":"Some","Fields":["ttSRapjZkCfaJdQtcNaG8LNmPzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSFJbGmiF91KvXHeNURvYueUgIny9kzHN/FJHQ4gUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:52:49"]},"IP":{"Case":"Some","Fields":["87.62.96.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monetlemmon"]},"Identity":{"Case":"Some","Fields":["ttGq5n6Me7l2yojMSGnK6WA4aMI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnyT1d+AmawolBYn7fuAmeZY9xEZUsX9EhEfK1ldvGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:32"]},"IP":{"Case":"Some","Fields":["162.62.231.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0133"]},"Identity":{"Case":"Some","Fields":["trq5XDCyof91uAteKwiVuX/4fS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sT8LWiEygAngAGXf5Q0pj68DOkIMd8Xg73QcqD1RRII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:03"]},"IP":{"Case":"Some","Fields":["185.220.101.133"]},"OnionRouterPort":{"Case":"Some","Fields":[10133]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::133]:10133"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TerraDelta"]},"Identity":{"Case":"Some","Fields":["tp8eWdpsf9C2FGp2bqXmHYSTd48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["le48f5zb3ER7j//b6EIExTr5IZxSwYnzOA6zVVxI/Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:17"]},"IP":{"Case":"Some","Fields":["23.137.249.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:82fa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode5"]},"Identity":{"Case":"Some","Fields":["tp8bx4q1eVpTEXyY1JBIOkkad5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAB5IpSU8zz71VkElxFVlfMSHY34CGm70Q4bbE8AwVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:27"]},"IP":{"Case":"Some","Fields":["193.26.159.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4c:fe8:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tpP/tP7G1a/EtEAQtRMFhTsM3As"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZFBZfLU2tdDEDjbLVhvOMJJLsG/edEmXn9xx4r+ow4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:55"]},"IP":{"Case":"Some","Fields":["5.45.102.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sauberesache"]},"Identity":{"Case":"Some","Fields":["tn6OSzf+AN/wKDqRrMSHIZf7S/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p0afuV6d0TeZXw/z2a++BKDMVArIS3GV61a3k+lHhDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:20"]},"IP":{"Case":"Some","Fields":["159.69.91.16"]},"OnionRouterPort":{"Case":"Some","Fields":[18732]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:26ee::1]:18732"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["tnxwObBEh4VBKaZrFvXuPP/LtJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WyWyj/C3Dvam9x5G7sdn6u3OTvp0C9Q0R4f1G35So9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:52"]},"IP":{"Case":"Some","Fields":["185.241.208.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["simpletorrelay"]},"Identity":{"Case":"Some","Fields":["tnnGuIRv7lNpzcGaDS0Db0EA9fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+lGt1gwrG67gvFPl0NnvmPZSpG3qxYBdeYhHLZbU0o8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:57"]},"IP":{"Case":"Some","Fields":["93.135.92.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tnbo/sEQnNpCQmrqDG6/VJDbyFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["maPdiFReRT1I+8x5O9esLbtaHq67iGZCg5JwbDRw0Cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:02"]},"IP":{"Case":"Some","Fields":["37.221.198.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:26:6831:11ff:fe02:b39]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tnPyoBboajHtoXPPPMR7+3IbbLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lygOpbBRC14ly3Mo59TA2Q+GEw19g4QYocfcijWEpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:55:20"]},"IP":{"Case":"Some","Fields":["185.207.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["tnCwvhV8wqGbdvBDQbX46ZUNRVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l/bUt+bLbJT2XEF3iaDpQ7Y0ZQOt5kW6jhxq4AsmkZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:36"]},"IP":{"Case":"Some","Fields":["185.241.208.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay18at5443"]},"Identity":{"Case":"Some","Fields":["tl68jVlrvK0K9gksczwAhylZ/Wg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLF9q1Bch38GmhXMzxHfzjRRVrJaG4sdmeTSx+oDxeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:08"]},"IP":{"Case":"Some","Fields":["140.78.100.18"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vps2249555"]},"Identity":{"Case":"Some","Fields":["tlzpuA775GEziQavVh+HE2A1+Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3KZzwTvMbRgs+b5aCNo8BrOzwmRW0rUTbABQxW6pPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:55"]},"IP":{"Case":"Some","Fields":["93.186.200.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:e5c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["tknK6nygO8F4ImCpM9qyXDkfXBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i0h2ywsMJta7Dzi6ZPB8j5vivpNU9p+9lzX5xCdsMBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:05"]},"IP":{"Case":"Some","Fields":["185.220.101.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::194]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frell2"]},"Identity":{"Case":"Some","Fields":["tjj7wDIXTKqUCbg7XO/7SQbUNDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ktEL7/h0Oy28dPupBhBuQsbisA1LKNdPPELyzzWVnsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:13"]},"IP":{"Case":"Some","Fields":["85.10.240.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:282::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["tjZlw1fxDJz6xEicRDwmUcVgnvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BTzIclBddzYzE3VxDm94x+vmVonHbk7KFBcc1Q8Q19k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:49"]},"IP":{"Case":"Some","Fields":["83.97.20.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:54]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumaine"]},"Identity":{"Case":"Some","Fields":["tjYmo8pvBSGEeFPd7G1ARMgLkD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8RenAnVmGjMyILXc3OPIPu44qZEZYezeJC++SIJUzl4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:24"]},"IP":{"Case":"Some","Fields":["79.124.7.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN10"]},"Identity":{"Case":"Some","Fields":["tjIORKIwMCx7+TGeZ1l6m4eIIkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KKtV0dZT5JAWS0nP+rNn25IkdiYphErdPAu4hdrWeuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:10"]},"IP":{"Case":"Some","Fields":["199.249.230.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::e664]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["thrfpZ8gIw616jrLNwH9FXIE7IE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q89Yfm9xlj5nAdIBhnf+MH0rI8NwJzP4+Z96At1X1nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:55"]},"IP":{"Case":"Some","Fields":["89.247.198.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0167"]},"Identity":{"Case":"Some","Fields":["tguU/A/Y328tnGEfd/x+9mZGpFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n03rcXV38Ii3y9q/i+hWw1Pb3gonZ5yV827N512Jg9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:42"]},"IP":{"Case":"Some","Fields":["185.220.101.167"]},"OnionRouterPort":{"Case":"Some","Fields":[10167]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::167]:20167"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal4"]},"Identity":{"Case":"Some","Fields":["te2Z8DkfKXatq6zTmkUFQt/QIIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y78EQGfo1zgXtP35VIVE+ftN3/TFYs93AeyQimCQSKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:11"]},"IP":{"Case":"Some","Fields":["46.148.21.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sillyotter"]},"Identity":{"Case":"Some","Fields":["tew3trqDB10yYIFQxXlBpDU/d8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4hDXicZJL/R5E1z7c/VceTwF1Wu17Cr4DI6KLGg3nPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:32"]},"IP":{"Case":"Some","Fields":["99.89.238.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noname"]},"Identity":{"Case":"Some","Fields":["tecsT2IhF2cHV3kK1JqMNgokCSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AElfZvTyJOoH1uvEepGPWlLCz3IzdpgyKZiTIY4XJr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:10"]},"IP":{"Case":"Some","Fields":["158.69.123.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CharnoTorEntry"]},"Identity":{"Case":"Some","Fields":["teAbDaVQsViAvwl2r1S5CGnH2wg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IASlo0+XGAxahZVihcuJxqh8p33+2+jHFAXCmcaS3uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:19"]},"IP":{"Case":"Some","Fields":["212.51.149.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:5735:5::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uncle"]},"Identity":{"Case":"Some","Fields":["td6Cu+grCVCir7SI8dUeySvwpvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVs6Z9cHaO+72WTnFV7DvGbfQwSZ7StQ7dkf5sigAQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:24"]},"IP":{"Case":"Some","Fields":["176.126.253.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowdaash"]},"Identity":{"Case":"Some","Fields":["tdAbIKw9BNw1W27UtDCOXoHbX0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnRF26+cp5Dn3M8Zu5Hx3qsS3aWwroULfxqM67quy+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:34"]},"IP":{"Case":"Some","Fields":["179.43.182.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e1"]},"Identity":{"Case":"Some","Fields":["tc7Wg0vujjjSxi8AzLZxXwRA2iE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/FLk31djzeDkkhRT4oYSz+L7IRIsSSdUIQi+3OUn58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:02"]},"IP":{"Case":"Some","Fields":["195.176.3.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["C00010FFD00D"]},"Identity":{"Case":"Some","Fields":["tcl9eQKkjlNII3CAOw4By5L+sI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rlFvUfeeGLRMLIP4UGpwBb3KDh2+nwLN6EIeMnmBS2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:26"]},"IP":{"Case":"Some","Fields":["88.134.98.123"]},"OnionRouterPort":{"Case":"Some","Fields":[61000]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lagarennePIrelay"]},"Identity":{"Case":"Some","Fields":["tcY7OsMUFIpoXXz8rRJdMHXl1yU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dvp5qXn4k8Od6UAoODgtXOoXHZmAhTJ5irxDB0S70BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:32"]},"IP":{"Case":"Some","Fields":["91.173.202.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:372:b0c0:5662:3d0c:6091:512b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maiden"]},"Identity":{"Case":"Some","Fields":["tcNCXI/g6aizPFQ5UeyLhXdSXIo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NldFw4QEL8a3L91DVOokcHN+HgXpHEgbbxN6SB7t+iw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:26"]},"IP":{"Case":"Some","Fields":["168.119.118.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:eff5::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["olanstra"]},"Identity":{"Case":"Some","Fields":["tcK16To4b1+LLljP5LmP0d66b1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlS/MNxNmdH6oHd/URy5TeRyJ94mVf36m1lvRrWXQ84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:35"]},"IP":{"Case":"Some","Fields":["193.56.240.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["taZbmXyJhYP5xMoW/mA7c0fIlYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQxPIJzgI4DMvrgeenQ6cumG9kdBM9T/8HtZorQ/U7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:18"]},"IP":{"Case":"Some","Fields":["185.241.208.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heaney"]},"Identity":{"Case":"Some","Fields":["tZTv3boqjxLe+Cff7mmSpusxCyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["in/C07Z9oOKp0ikaxUI7gP4Pp9gyDBaiKfI7+3nEcMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:17"]},"IP":{"Case":"Some","Fields":["93.115.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LasagnaCarbonara"]},"Identity":{"Case":"Some","Fields":["tY2DGTmzXELD5Hsff2ab3+Aao2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4BTMAzKFaSxk2V3dCX5eyqtEvnDa0zaTx5ca+V90BC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:07"]},"IP":{"Case":"Some","Fields":["89.208.105.235"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mwittig"]},"Identity":{"Case":"Some","Fields":["tYARGFW5xFLrIkynkytibijTwuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ciYJop5bOZk5ZdWCM5H8o75q2VwGQ6hEAJyZs/yNhgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:35"]},"IP":{"Case":"Some","Fields":["185.235.146.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:8a40:f313::29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Paphos"]},"Identity":{"Case":"Some","Fields":["tWuf6T+DtPppI0sXoGDoqOdEbRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/LrkC9yCvtQUzBZkY2YxIsjhNxKaE9huK6FkOvBpgVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:25"]},"IP":{"Case":"Some","Fields":["62.210.205.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oniontb"]},"Identity":{"Case":"Some","Fields":["tWK/Mgyb6JZSueFMVLULc4eqDAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PLCZNDjeRtL3IDHvFtzFK0JRF4kA/nrjSGvEMQ73aks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:25"]},"IP":{"Case":"Some","Fields":["5.255.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:9a1f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH101"]},"Identity":{"Case":"Some","Fields":["tVWM+nClMIWCsldnyWmObb5qkLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4+3POvM6JuuV1FbNiFBxHD3kUMTO70Q269KeW6Fl/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:01"]},"IP":{"Case":"Some","Fields":["51.15.150.228"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orion"]},"Identity":{"Case":"Some","Fields":["tUvA63z4If4rmm1xFr7nUhf87jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g9RY4qy3bBNFCTNMtz3Xj0XgvP7NQ2TCOa+vgWDRd4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:14"]},"IP":{"Case":"Some","Fields":["190.2.154.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tUFYHLBZmjYmkZbvzG4j9nt1KFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iNlz7+fJ+btOLWT3yjmJ+v3saJnBLZrLlvpe9zlFeBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:03"]},"IP":{"Case":"Some","Fields":["5.45.96.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:669:582f:2eff:fea5:9474]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreamwriter"]},"Identity":{"Case":"Some","Fields":["tTa3Gh9VmcOfyLGRXS6+Og3rFAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JDerdENHrDNcY5XePgPqJ/ZhxkfaTyGxcRmcVNT58VU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:41"]},"IP":{"Case":"Some","Fields":["116.203.159.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstor"]},"Identity":{"Case":"Some","Fields":["tSEttoWioPz7rkJXOOR40SNhcQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9xXsK2aoNxkYpZH49Y8XflSiNQ1osu3TY0u6tmizL50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:46"]},"IP":{"Case":"Some","Fields":["93.115.97.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:75c0:36:2124::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay18L"]},"Identity":{"Case":"Some","Fields":["tRcZi4azhZwweFfFn2ZgooH8i0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vY3vtiDHFx/mHOq8yV+9gUdxqUV8aRVww+XcA61ssr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:32"]},"IP":{"Case":"Some","Fields":["185.82.127.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tQqYJnpjcT83MZ2JXqEVHEsnvk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/2mERqkGD+LYEgtvf7ZEoAwHkvhc9G+oJ7+P2eGasQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:42"]},"IP":{"Case":"Some","Fields":["82.128.229.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stephen304"]},"Identity":{"Case":"Some","Fields":["tQU6v/hFyWsd2PRdzzLmvh5j8Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y8tnfsv25tOdevvty2K6gillnjvgjRf+FcrgUFO3GJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:01"]},"IP":{"Case":"Some","Fields":["50.236.201.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["tOb8emEyKH3vHbqxL1KQ31RSQps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EFcHPHtsfAliYo9qSTJ1e8eeBykh7d/ReZJcZ14NwFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:35"]},"IP":{"Case":"Some","Fields":["23.128.248.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::67]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcRelay1"]},"Identity":{"Case":"Some","Fields":["tONUawWP62VabYaY2XwUWaLfjnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dIgEfKlKrEE51q+Xlho+ln+lZVAKveLXWQBNkM5PUDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:23"]},"IP":{"Case":"Some","Fields":["130.225.244.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:878:346:1cf9:446a:c4eb:4548:7061]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greek"]},"Identity":{"Case":"Some","Fields":["tNPdvIPjQvQLxaLplyIZ/ta8B8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/NjtKb87Cr+/c2iVatpPcWu0tChKif81+l7SfUZy5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:57"]},"IP":{"Case":"Some","Fields":["173.208.247.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netimanmu"]},"Identity":{"Case":"Some","Fields":["tMr9nL+zTsXarBRpINx9+v6R6iA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LQi/Pauj29KchRuFdH1D6OE56peOAxWf31fvOyDfWt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:52"]},"IP":{"Case":"Some","Fields":["212.47.233.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:630:194::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0162"]},"Identity":{"Case":"Some","Fields":["tMSYlmY4TECRQZenZ+HR0pnnNnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+5Q3o5RHBvQrDA4yFqKkNVYwdpislRKoc8BZ7Nen8fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:34"]},"IP":{"Case":"Some","Fields":["185.220.101.162"]},"OnionRouterPort":{"Case":"Some","Fields":[10162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::162]:20162"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luraleen2"]},"Identity":{"Case":"Some","Fields":["tMOa1GGyGqSNtPs3GwAdkaMEPAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uHwhTlSNeSdaYmiuZuWHpCNhU8NrIOuBp5z56sOrN14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:28"]},"IP":{"Case":"Some","Fields":["144.76.175.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:53cc::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tLublwx+v7AhBWwZLEM36ChVF8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ky3F4ZwzKfE2Gm3A3ZVBYIgtR0bSX8zjhXHbk6h6144"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:08"]},"IP":{"Case":"Some","Fields":["23.128.248.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::5853:f7ff:fe2e:8818]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VagueAnger"]},"Identity":{"Case":"Some","Fields":["tKIAgtofZrxMMg96YA5U+K7DuAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BNiUaXD8XrMoSz6p9abdgj/TSS2WYEsccn3UxULxAAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:06"]},"IP":{"Case":"Some","Fields":["185.67.45.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bagespottedtide"]},"Identity":{"Case":"Some","Fields":["tJ6q5GkOXOdi0d+LAP3gWXCIDq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HPSfBugCe7Hcrn2l+w+vB3I0RBODxkcrQrGAH6knz1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:29"]},"IP":{"Case":"Some","Fields":["103.253.41.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digineo3"]},"Identity":{"Case":"Some","Fields":["tJZJNAuqv3Tpyl1QFORRVTguChM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NaIbAGDLhe1M8ziKrlVs57dDbuaM26VvlCBVeJa3gJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:40"]},"IP":{"Case":"Some","Fields":["185.117.215.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:8781::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["samsrelay2"]},"Identity":{"Case":"Some","Fields":["tI8Cp20C+5HXiOpptm0qAps6inw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N0zJxHdgRJ2WOtnsCE5eHyAzGxx4aDTAJHfs+zFla+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:15"]},"IP":{"Case":"Some","Fields":["71.229.166.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PIAjpn2exit"]},"Identity":{"Case":"Some","Fields":["tFWXysHe2VgFaiNFirSvuOOKunU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQyGH/0vttRUM85V8JIkdoi98aRbN78QFe6d3I1ghXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:37"]},"IP":{"Case":"Some","Fields":["156.146.34.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tEvBlMn/3qvxETwm22B+6x213j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ThhHUQOtltFk8OQaBxyTgaKxFyDLSCDb2S+1oH3eEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:39"]},"IP":{"Case":"Some","Fields":["167.71.33.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firefly"]},"Identity":{"Case":"Some","Fields":["tCx5fMjNY8YPtkPoIKEdET309cg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esw3Mk0Zu3bn9t/FSvzelQ0k58uyDL9mJ3Ipn/ZgDAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:17"]},"IP":{"Case":"Some","Fields":["217.23.8.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["traktor"]},"Identity":{"Case":"Some","Fields":["tCa7WS4gAIt+2enXrFZR7YsOs54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["39k7dRUaqud51OO+gJdwTici5t1eX9/YqB+E89dE4fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:44"]},"IP":{"Case":"Some","Fields":["193.224.163.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:738:0:600:216:3eff:fe02:42]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blizzardpaw"]},"Identity":{"Case":"Some","Fields":["tCYK7Fbc7MMByJsRfXVMYFsPojE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58LjJzRjAwJ3/qoqtq7hCTODcoWnpLd6udbB3fbDRwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:13"]},"IP":{"Case":"Some","Fields":["185.7.33.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dipoli"]},"Identity":{"Case":"Some","Fields":["tCU8o4eq7wZB0Opr2uHF9Ga4kP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wK+ioBvneH01w1fDRBkcN3qaREa0PiRIsPMLybRf/CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:29"]},"IP":{"Case":"Some","Fields":["90.255.244.127"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diggers"]},"Identity":{"Case":"Some","Fields":["tBtnvLxUVWT0OmvxLRZV9tjAOoc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IR+hyJqcs+gZyjC7vgMefHv4shIcZh/dRQTxt7pCX10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:12"]},"IP":{"Case":"Some","Fields":["185.120.77.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transformatorbrand"]},"Identity":{"Case":"Some","Fields":["tBZF8KbvtUFvNc/gIsetRf03TTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TF/74p81mDUOxeznB/+/HPjmgUGB/9K8OnOQxg7NdAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:52"]},"IP":{"Case":"Some","Fields":["185.207.106.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7be:aef4:d6c6:923c:e658]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pulsetor"]},"Identity":{"Case":"Some","Fields":["tBECfJJqm//PfakePK8YVqMh7/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3Ty2gCNEcx2VYBcM0iaDa5eKtVYwfCRwmTmmNPSbh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:24"]},"IP":{"Case":"Some","Fields":["51.15.76.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1e42::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seeder"]},"Identity":{"Case":"Some","Fields":["tAKDJ1aaBZ0VbA2TuxYINKiwnPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMnHIcRJKGYxzRH34QnpyAynVq7TDAKdwegF/u53aFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:41"]},"IP":{"Case":"Some","Fields":["66.183.173.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["s/3XZ+7xXdddyNJeX2rpLZojU7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EuKiO1Rxkbss92AWi8SvShwmaS7MVnSYF0mHwWaY18g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["95.214.53.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra2"]},"Identity":{"Case":"Some","Fields":["s9hLIJRR1gioH16HGJznnj36h7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rp2awZQw8w6byyJFbAByx8U0vxEyf/pWYuXomcK6cKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:28"]},"IP":{"Case":"Some","Fields":["104.244.74.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geheimschreiber"]},"Identity":{"Case":"Some","Fields":["s9Yh4GAgqFigbDeDX9GaB9dID0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gqE5ryc88P2Uju5PF7FBKq3LmkW5dwn8AOmv73r2gc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:07"]},"IP":{"Case":"Some","Fields":["31.52.239.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["punkpop"]},"Identity":{"Case":"Some","Fields":["s9OYs4b68st4tEf7pGvyZIw/SM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6vaYs8GdMojLSRScQzXuF0B90aMwD1Ax+zWnjet6MBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:42"]},"IP":{"Case":"Some","Fields":["162.55.131.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:271:5d58::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theseekingchild"]},"Identity":{"Case":"Some","Fields":["s88I6d9w1Gu+tRZaQtCH2zUidd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eEz76KUlYSWQlBfZhXy7JWKULfo5E9wbmhc0GQCUjeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:32"]},"IP":{"Case":"Some","Fields":["180.150.226.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaninglibertarian"]},"Identity":{"Case":"Some","Fields":["s8cvQtTIQBL5gawa4O7TYjezUrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G/Sp+HCGcE0Vy7KccWg4XtPLulKqvdYRsXGiNka3s4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:02"]},"IP":{"Case":"Some","Fields":["125.63.1.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AirElementX"]},"Identity":{"Case":"Some","Fields":["s7pZkklTxZkbA+qfxQhLs9tVRZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIGirBJ/5rQUx1gnaB8nIFusmkm7u3fJeo9XDL81eJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:48"]},"IP":{"Case":"Some","Fields":["194.15.115.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tarmac"]},"Identity":{"Case":"Some","Fields":["s5vcCkp8ge97PzUJfcQUnwkFa7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WKKaXEWTP9u96n1GwAYQUxeMk0wOyvcuQFGSlcLejYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:10"]},"IP":{"Case":"Some","Fields":["172.106.9.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["s4/nVNfl4Vy4p97fiWAN0HPaddQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["04f2QHItpF3riBydFZbOt/qZuo9QseYg28ws2pd40mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:46"]},"IP":{"Case":"Some","Fields":["185.220.101.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::197]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonkers"]},"Identity":{"Case":"Some","Fields":["s00Hv8u/F5zW0PRAKToXd4iT63Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ABsPuiJASGD214d+nfH8w9P4rOhjPwt4faUdDQtiS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:54"]},"IP":{"Case":"Some","Fields":["198.24.164.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute12"]},"Identity":{"Case":"Some","Fields":["s0zJBWJQhH0ZgPCChbAc8LcYwLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hk4utaDVG7dWInvgW3ENZTiqfQ3M/PV+X5XE/rJmqQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:34"]},"IP":{"Case":"Some","Fields":["162.247.72.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rathergonaked"]},"Identity":{"Case":"Some","Fields":["s0g28gJ8FOQEBHh2iYa/6oJ7Rig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k3Cff4G46AYJDrtD+ygIk4fOCqIPwL5VkgF3huuAKvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:12"]},"IP":{"Case":"Some","Fields":["217.85.169.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ephemer4"]},"Identity":{"Case":"Some","Fields":["s0Djulh+NkYtjeRNrg98q2dI8GQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y56raFN5a46Pitgyjg0PouspFy/UiYKiy9At9aR83FA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:41"]},"IP":{"Case":"Some","Fields":["128.232.18.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:630:212:2a8:a6bf:1ff:fe25:b961]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalyptos1"]},"Identity":{"Case":"Some","Fields":["syy/1kHBrQGgQzEG/hOqpL2fPD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n+Z71U7+DOJU+/Ks9cA2WdCz2CwRv3FCwYrK2keWRe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:52"]},"IP":{"Case":"Some","Fields":["51.77.59.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RagnosystemNode1"]},"Identity":{"Case":"Some","Fields":["synP2kfKJDB2huBsURI5dWjqnyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TZnbGaQQ75oSEBVVZ8nslm4NJ4DhP1OD5riRcUCodaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:21"]},"IP":{"Case":"Some","Fields":["167.86.76.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toshiko"]},"Identity":{"Case":"Some","Fields":["syHONgVT1+Hp+hKajR5NbFNaaB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HXkPyonvUV2pI5NodowaMwhjUy7dBggl7WIgQcoXW9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:24"]},"IP":{"Case":"Some","Fields":["107.175.245.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["torflower"]},"Identity":{"Case":"Some","Fields":["sx2Jgj/KrDHT4hJ85eyiYopsGuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pluqcU+to4RzxSTBgAz8UgrQaBIw/N+wy3ssWvfUB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:43"]},"IP":{"Case":"Some","Fields":["138.2.176.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion250"]},"Identity":{"Case":"Some","Fields":["sxpnenSkdiG8YHOsMgZvhfMDNZQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tekvgOVXLLHIU04wZKhShIZKrh0yP8591QamQPN/U+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:15"]},"IP":{"Case":"Some","Fields":["38.147.122.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["sxHzYvEFF2XalP54BInLDkhNejE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9BpsRLouplu+xeYdeSuOYJ1o/4fnO+yixBcAtoxTq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:48"]},"IP":{"Case":"Some","Fields":["45.32.254.111"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LessIsMore"]},"Identity":{"Case":"Some","Fields":["sw02+6PdMA4RkWoIbXFmpr4xaf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+29q2AXY5wvXrVneOABNd739VVjuOkw6b41j2P7Hiz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:41"]},"IP":{"Case":"Some","Fields":["89.147.108.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9105]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorOnChene"]},"Identity":{"Case":"Some","Fields":["swoMl4V8kmOHngqP0mcoBPQ4ty4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ry9F/a7JRTnlVI/WGf9JTyPrmfC1rTwBKlg7lSDZn60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:30"]},"IP":{"Case":"Some","Fields":["77.57.20.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mangold"]},"Identity":{"Case":"Some","Fields":["svs6MCtW79vwygYehL5FmTBc5Hc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R7zO505wZJHgxHy/VgTWaSJ7zd2kI4B63GDa6sOz11E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:42"]},"IP":{"Case":"Some","Fields":["109.70.100.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::10]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveCalakmulII"]},"Identity":{"Case":"Some","Fields":["suDzOxp+cPIXRMPsN7R1+OwHEuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WLNI/yfeDrL+P3cuI2eyVXFDny0Yy9GLMKesU3RRPC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:52"]},"IP":{"Case":"Some","Fields":["65.49.20.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ecrehd2"]},"Identity":{"Case":"Some","Fields":["sthWC0w26IdFq6smNQzv9iKTp/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pdzJ+kbed6L/07rVeYVMyA0lR8SnTD5oFnAjcfzipiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:54"]},"IP":{"Case":"Some","Fields":["85.214.226.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomfoo"]},"Identity":{"Case":"Some","Fields":["sr1U3sKC3+XGMvofshlpoXwTgic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYy+AQRGIqxX9d8tQBEV98mGTqy0zsg1qttcq2Pz5qA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:53:33"]},"IP":{"Case":"Some","Fields":["91.232.37.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagaminesConfession"]},"Identity":{"Case":"Some","Fields":["sqve0KtR+uHX5oLLMYSf/xAwMLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GcxMcbn4cNqCcWyS5ttueBj+73scFjkbiBzN1eFUD8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:48"]},"IP":{"Case":"Some","Fields":["138.2.22.17"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a2]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["spY2rUyzk7m2sjuCDJmgUBeyqBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2eRW1XK9VnKBCvCSSY4W4qtVJwr6GCVVoLJ6wYl1fiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:32"]},"IP":{"Case":"Some","Fields":["46.4.176.48"]},"OnionRouterPort":{"Case":"Some","Fields":[44945]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionGhost"]},"Identity":{"Case":"Some","Fields":["sn8eh8KaxGTot48BzwtiuzpuDSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ov5HmYKED1randChcaZUdQJuP+xuzHe0bzCE+uyX06Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:21"]},"IP":{"Case":"Some","Fields":["79.41.231.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["radieschen"]},"Identity":{"Case":"Some","Fields":["snzx3O7NUPeZKwfXINf2vw7fnUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZBupcCr8gkdzdHmDPtc0BLQEsDrkXHc4Fjk3zbrYc+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:41"]},"IP":{"Case":"Some","Fields":["109.70.100.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChillOutZwiebel"]},"Identity":{"Case":"Some","Fields":["snSoAY9YDKWrGd4eXeZCXu4unA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqRZ3dFzwSNtRGMUM+2MPXYMurnaLisfQtC+YLDdWi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:24"]},"IP":{"Case":"Some","Fields":["82.165.20.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["snRZnNN/TVssQH3IHkeBNfMpfv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6X3kQGo3q8ovOwZekoRcmRuUBFwmCcInXwja1k8F7vQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:46"]},"IP":{"Case":"Some","Fields":["104.244.78.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f046:56c4:177b:1cd3:5449]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBaconaTOR"]},"Identity":{"Case":"Some","Fields":["snEVogsF1AcwpAIBRe+mM4HZ1Rs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ivk407iiJJgmjEQNJM5felF8QIy6q3CDU6mvbI3CwcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:01"]},"IP":{"Case":"Some","Fields":["38.68.135.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tsarm"]},"Identity":{"Case":"Some","Fields":["sm00XZlvuIAtsUKCv+GiSaQEnKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjlezLOkzRq+YAmdSJzJbPQjZ8uf55RkJzSr7kDm2o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:55"]},"IP":{"Case":"Some","Fields":["84.239.46.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7d8d64935ed96451d1f"]},"Identity":{"Case":"Some","Fields":["sl4CATowaTVWSAJ0JAuLOSqwQXk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3lDnCtqOIX6Q3Ew4ARDCnjZc+7RP3PVE5TXosdSFhCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:57"]},"IP":{"Case":"Some","Fields":["82.149.227.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:50f:3::236]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["slLZR02LNvwSmfbbKchT1okAw5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IZDfKXxL+sirVJN7FVaqdshrLYwEW0AYfNSTH0Zt8RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:24"]},"IP":{"Case":"Some","Fields":["185.228.137.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz3"]},"Identity":{"Case":"Some","Fields":["sk47s/Xl/OuQkFTmgQFgk+YFFHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qbXOpHjnCrqyT46vhZr6VE2FJ0+5rXOUsupWuRcoMUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:49"]},"IP":{"Case":"Some","Fields":["178.63.41.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrwellExit"]},"Identity":{"Case":"Some","Fields":["skr7SfVjY9t0Fd6SY86hJFX0wUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LhHnjt6Ce5AgPblAlkGOHnF9DfPVlpLQyujXS5qwv7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:24"]},"IP":{"Case":"Some","Fields":["93.95.226.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amer03"]},"Identity":{"Case":"Some","Fields":["skiF/iGHTu50vCKMurivEPm3Yqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nD1QaUhhbl6yNweZW1jAMFGcFsoVhUndwj1TWHKSRnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:50"]},"IP":{"Case":"Some","Fields":["192.99.4.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labitat1"]},"Identity":{"Case":"Some","Fields":["sjgHBMU5R7HXLny802HnOQHvdEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NyCSFE1EpV4Ninx5P3RQw6v7lB+q5reUB0SZdQhGh1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:48"]},"IP":{"Case":"Some","Fields":["185.38.175.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::130]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion251"]},"Identity":{"Case":"Some","Fields":["sjJSNHwzaOw9QkSa/DFQK08AA3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L/DuY4cViHeXXIg4+bvArEyrumfbdvyjpPJEnzkA/hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:11"]},"IP":{"Case":"Some","Fields":["38.147.122.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beattyNetRelay"]},"Identity":{"Case":"Some","Fields":["siMqzTYtOGKTMORN7dDqyafTrOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7f4vGWZxkCpCWrNuO4lZ55BxGyQn/l9LCl9p1ok7adE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:54"]},"IP":{"Case":"Some","Fields":["50.64.108.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer21b"]},"Identity":{"Case":"Some","Fields":["siDxjwjMDnsEe8ZZlEDsCF+HGxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dNDhoxrbJ+8wb0tPAIcneEcBB0VWxbigA3eBs+dpIXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:54:14"]},"IP":{"Case":"Some","Fields":["173.208.190.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex41"]},"Identity":{"Case":"Some","Fields":["shl8I6T/XRxJ7kW6doi6i8zYmgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqfW1gN5JbMacub4hGq7B+SnK2BFuTxH2dC1nhfK6rY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:46"]},"IP":{"Case":"Some","Fields":["199.249.230.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e640]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sakura"]},"Identity":{"Case":"Some","Fields":["sg+mwbKw91SOyENKRvNhFwDAV70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wt8ukEPVPNKeRsuHhomzXeeoyqAilEhKuWkJmp5zDhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:01"]},"IP":{"Case":"Some","Fields":["49.212.166.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eskel"]},"Identity":{"Case":"Some","Fields":["sg8ImpSQLrQ/d2JtT00XrIiLihk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDDEHDL6IRWBgIVq8Tm50nNRE9xUzctzbf7rIRjabNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:21"]},"IP":{"Case":"Some","Fields":["107.189.7.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:b107:c02::dead:feed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hp"]},"Identity":{"Case":"Some","Fields":["sg5dnbUpHRdBFsJuCRemmu9jXV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HtAg/ogcwGgLwNF4ZKCOPevHMJ7ozwe46nt/PHKqGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:43"]},"IP":{"Case":"Some","Fields":["104.244.76.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8e8:b7c1:9d5e:ab59:545c]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hel"]},"Identity":{"Case":"Some","Fields":["sgrIzlxdF2Z1nDD2k2zu9Q4/HXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/VDrKepNeJUk1d8BXa9TbhVBCX1dySdYVTBMSsp6xYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:37"]},"IP":{"Case":"Some","Fields":["83.137.158.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cry"]},"Identity":{"Case":"Some","Fields":["sgTedbNwZO9qTGuvlVxXJFeNCzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dcTl/BeFOe598yhyikbfZrcaBxXTOd04AoUR5yr/Bgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:01"]},"IP":{"Case":"Some","Fields":["192.42.115.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:101]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev13b"]},"Identity":{"Case":"Some","Fields":["sfkm2jiVqJryiGI/Wk+ROXkpnFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["csKZ+3ILIeaAYZwN1GKMtFYPcnYCITdmlxy7eSzWqKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:58"]},"IP":{"Case":"Some","Fields":["51.15.59.15"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1419::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThankYouMrSnowden"]},"Identity":{"Case":"Some","Fields":["seN7eNWzVLmbaRk6m2zvbknfgiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["03CrioWK2eE/DXmPklQRli5PlzWJlIGZaLfN0CKN93A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:13"]},"IP":{"Case":"Some","Fields":["161.97.166.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:8483::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange033de2"]},"Identity":{"Case":"Some","Fields":["sc5LWnp/EuLQ8i9oNBAdr/ua5Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ljHSwkfy4OH8VZjkEIgCrUoTgbLw4JBICjLfNKB21LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:28"]},"IP":{"Case":"Some","Fields":["80.92.204.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neviem"]},"Identity":{"Case":"Some","Fields":["sc1X6gpjzEXM0U41YM/I9SesvY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m6TJL02GTUPQuFvEI26NqyFojFmWBAfAxiH6BnLSOfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:10"]},"IP":{"Case":"Some","Fields":["178.41.161.172"]},"OnionRouterPort":{"Case":"Some","Fields":[7149]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yetiready"]},"Identity":{"Case":"Some","Fields":["sbaHw8TvRiSdY43Od93HqqOfKZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tnhdvpmo9CYd2qQzvJy6I5G7/9bvlqQo+U70sEt1WqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:15"]},"IP":{"Case":"Some","Fields":["91.203.144.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenWoRd"]},"Identity":{"Case":"Some","Fields":["saDxFDeJRmqt1frllIyBOFSO7Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NWxg4bQ0S+1Wz0R73n7nDyZDC2B7BUneoJmkAa2SmxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:19"]},"IP":{"Case":"Some","Fields":["158.101.132.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::c1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bazinga"]},"Identity":{"Case":"Some","Fields":["sZjAtLjFUfF0+7hBoXJhbj2zEk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMDxNWVysc5564zSzkt7iVxW57DA6glhA/LqdOpy2tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:23"]},"IP":{"Case":"Some","Fields":["93.180.157.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::2ae]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EGOTISTICALGIRAFFE"]},"Identity":{"Case":"Some","Fields":["sX1zxqwapdan769Th2i/NU8lR64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RFMXsExJTcnpF0d2vOO5xK6F/GwS03vWIM/tuqOLCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:43"]},"IP":{"Case":"Some","Fields":["65.21.54.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6abe::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["sXxHmIBmCete/wzsnFh2kNnpReo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZSyCcm10kq8rUW7jklBkK5ypJsTc9YLvP5bu+ApfsDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:09"]},"IP":{"Case":"Some","Fields":["84.19.188.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wedontlikenotseas"]},"Identity":{"Case":"Some","Fields":["sXryY9KPcawE7W0Kfpel6C8t8k4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1R3hx3TWxsxRIgO5Ixmn8Vo4LwFneKJ1cORcFcZbC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:40"]},"IP":{"Case":"Some","Fields":["165.22.191.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["arthur"]},"Identity":{"Case":"Some","Fields":["sW46OXoHz+SiPmMPxusTaQCDcVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wml/dKSRiN4tVSNJ4ILzDVFPBdJQeK58zyVRuEl7v0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:41"]},"IP":{"Case":"Some","Fields":["185.44.81.4"]},"OnionRouterPort":{"Case":"Some","Fields":[20]},"DirectoryPort":{"Case":"Some","Fields":[21]},"Address":{"Case":"Some","Fields":["[2a0c:8881::e464:4bff:feb8:16c1]:20"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leSablier"]},"Identity":{"Case":"Some","Fields":["sWv+XF3S926rcuP9QaBicGkSsPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WzFJexVVBTbK78UE8fERY+uQ8y0GoofMNTtRz0FjDNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:40"]},"IP":{"Case":"Some","Fields":["46.165.253.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Loukanikos"]},"Identity":{"Case":"Some","Fields":["sWb+riOWzTpLlMfPBtFTnxcrpA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8NLVm6nuvEGJf1dZSwCZszTVuOtZGVPwUrLO7JElvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:58"]},"IP":{"Case":"Some","Fields":["146.0.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waka"]},"Identity":{"Case":"Some","Fields":["sWHgNq1D1/jSK6GPthIgDmphOKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xyln8AWliXSittPx4kmxErXn8z/EroDGrPtKUd4oC18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:21"]},"IP":{"Case":"Some","Fields":["109.251.55.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:d0:fc27:0:dea6:32ff:fe44:be84]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cytherea"]},"Identity":{"Case":"Some","Fields":["sVwAcer1CKruKdudB2B8hKot3rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MTqH8uavXrIgPw1IjpkCPecTjhwQQaGgxm2mfwWBhhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:50"]},"IP":{"Case":"Some","Fields":["141.105.67.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ASCII"]},"Identity":{"Case":"Some","Fields":["sUyiTX/GlN3h6NOy6xXQ0PhsEr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u2luIi9r4O9QOcYGkV+EudfLPRlEJCRTRjAXJ6GYxtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:17"]},"IP":{"Case":"Some","Fields":["81.170.128.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wardsback"]},"Identity":{"Case":"Some","Fields":["sUPUObctI5pBn43OB7io6xtIb6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1DMbNv90k9q9/wNIsmb/QEofQ98ZZmNAFSUFb3Djpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:47"]},"IP":{"Case":"Some","Fields":["212.129.62.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay19at5443"]},"Identity":{"Case":"Some","Fields":["sUM1lWDhkwNHgl1EGvkec3pLnfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiOfuRkBt2doi36eXC6aBi1Gu2dD1JzFAzGiqD0EFjI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:12"]},"IP":{"Case":"Some","Fields":["140.78.100.19"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porte"]},"Identity":{"Case":"Some","Fields":["sTwsVp8/0MUwt9luX/eTPfeg6DQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQYNtp45/fdz00XSOyZAXTnPHc2q784BAoCXsw2/XhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:08"]},"IP":{"Case":"Some","Fields":["85.208.144.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:8740:0:3::13:4008]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste51"]},"Identity":{"Case":"Some","Fields":["sSfeS9w8zoVkyErWt6S2RJuQpKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXso8OUo7zTwYHIrlQe7hRtR/lgiQ3LamZxBkwR40UM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:01"]},"IP":{"Case":"Some","Fields":["89.163.128.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::abba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra40"]},"Identity":{"Case":"Some","Fields":["sSU28vG7/gtH+q0NXQW/rsbC3p8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mbHCRUy/rt71CFlGF6jqkvGcS7DDYXRPsSZ1hXAphOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:33"]},"IP":{"Case":"Some","Fields":["107.189.30.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["sQG4Hzy3woSt3xnNu7zwSgUMYG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXFJ8XV2DsN5OIhGnMYu7CjF8UciFTeFmSrLfWRgBzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:59"]},"IP":{"Case":"Some","Fields":["23.128.248.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::80]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sPWm+b3iGu25Ku6lvJ0CHLlrfcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tip34R4lLT5TaOt6grtI9jgcILvrOsTGp/19E5qrFGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:57"]},"IP":{"Case":"Some","Fields":["185.244.192.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["root1Moh"]},"Identity":{"Case":"Some","Fields":["sPR5p3FOQw+v+jAHFiQ11qPB+mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RLdiSQ4fLEGcvJ9S+SDFMd5pWb7oJAKb3OKuuOnNNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:10"]},"IP":{"Case":"Some","Fields":["80.140.14.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sPHVRbmD5CaA9/Igpp15/4IcUOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jZXHPQMXhtGEFCQ60Az/Q5kazv26AN3FoNj14M3kLg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:37"]},"IP":{"Case":"Some","Fields":["5.45.106.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididntedittheconfig"]},"Identity":{"Case":"Some","Fields":["sPF6VvqGhsyzPT8wL8QPBvRjtK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubH3EZcC11c3lyrbUVhuk3jc3PGJakaIFaKIU7FANSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:28"]},"IP":{"Case":"Some","Fields":["142.93.169.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SkyLights"]},"Identity":{"Case":"Some","Fields":["sOk7EL2BclCoGKv39cJESvNk3Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59ulu0LGGNH7APw4r+AnxNTMHF77drkuVqYTSvDjuYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:16"]},"IP":{"Case":"Some","Fields":["173.237.206.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow005"]},"Identity":{"Case":"Some","Fields":["sN1Se+AYQtRgMCZfvZkoIXpwnyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ar0urT1GeLQAGcHIIdgxztuuw05d1vCvdBLW6AXZGJY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:37"]},"IP":{"Case":"Some","Fields":["185.195.71.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARDIS42"]},"Identity":{"Case":"Some","Fields":["sNsvFz8Ns2S6v3pGXXlrPASPHzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VtGuh+0C96nTDRxp1tPTTTwtpTrczMrOR6ZRNY1ZwT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:52"]},"IP":{"Case":"Some","Fields":["217.160.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:803a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sM8xMagJf/r56bVFZvEqLG5WDEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8Hc8liUzHPNumyrt6eoCSOKY88AHuYjHhEZO641540"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:15"]},"IP":{"Case":"Some","Fields":["37.120.185.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexColinNSarah"]},"Identity":{"Case":"Some","Fields":["sM2fm1tgZRrcWRnA8eqofbodkkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DKRzDlEYDB6ZqNIfzjwt84/tEgawFTiRxVv8ejX9pqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:24"]},"IP":{"Case":"Some","Fields":["199.249.230.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::111]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EnjoyFreedom"]},"Identity":{"Case":"Some","Fields":["sMKsST+IBpIP6gBClTMpIwnuw58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXXxF62oXEuJmBnJ9cWSR/B/55vErXnNtueYUFIiIm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:48"]},"IP":{"Case":"Some","Fields":["79.41.84.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor70IPConnectinfo"]},"Identity":{"Case":"Some","Fields":["sLXfMkAW3N3iIKAfowlUXKYWTXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kA/C5FDx1+Cq8/ZLd7WzAAFQmKgPjLgVctyHSv3qL/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:58"]},"IP":{"Case":"Some","Fields":["194.5.96.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:67c:440:f240:194:5:96:70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast6"]},"Identity":{"Case":"Some","Fields":["sKE0yvRJSzkT4F20Y0djPZxKios"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCwYnhCplkjeZOJaTWwW7zKBAMsIzZG9iTbgEDmbMrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:12"]},"IP":{"Case":"Some","Fields":["45.142.213.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:7c43::70f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XFMRELAYS"]},"Identity":{"Case":"Some","Fields":["sJDGDM6OsHO4lxHfPZ5EVQjGaZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTNzN3qmSzxwYRCYBMzpR59j94yOPO37N7x209+UqHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:58"]},"IP":{"Case":"Some","Fields":["188.214.144.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9000::94]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit12"]},"Identity":{"Case":"Some","Fields":["sIm+1TnM/2ZgarbhIWolkBx+zm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ea74VKXrF+ky+fY2TNWP4tL00f8BW+o6SmCSjt7T8po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:08"]},"IP":{"Case":"Some","Fields":["37.252.254.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1b:aa2::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitMoldova"]},"Identity":{"Case":"Some","Fields":["sG8JOj1N+tPpI/TyinSQG9T3TrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["goRvR+5/jhm5+8egnJ1Ob5nJtdECPPOaU21W7AtpcGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:21"]},"IP":{"Case":"Some","Fields":["178.17.174.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:8b::5b9a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schwurbelingen"]},"Identity":{"Case":"Some","Fields":["sGMCumv7VQwug8wkmmQ3vzt9fWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ti253BzFXBCOTDkD9pl8kIfxqylpAv8ZBgQfEHUk+nU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:19"]},"IP":{"Case":"Some","Fields":["202.61.192.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coen"]},"Identity":{"Case":"Some","Fields":["sFtLtk/+U3Pik9LACHmPupyQi7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhkLa0wp8Ly9TTSOjqSTqmtIwEntXf4OatT+JDZOMyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:59"]},"IP":{"Case":"Some","Fields":["185.154.154.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a0e:b107:c03::dead:feed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipressedplay"]},"Identity":{"Case":"Some","Fields":["sFj73qaXdMKOrBER4We8CtSpBOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uzAAJgU3agoNb6hR3ManlOMSoO745mNGgSfiAVZgd8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:27"]},"IP":{"Case":"Some","Fields":["93.90.195.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:82ca::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoingNowhere"]},"Identity":{"Case":"Some","Fields":["sFXBf3mQRaVhyysKgaqRcnFY1Lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2zs2hpjFTVIceL9xGUGN2AH/n260uSApdL7zhgGVnvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:04"]},"IP":{"Case":"Some","Fields":["69.164.210.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiubel"]},"Identity":{"Case":"Some","Fields":["sFUxdarbBQHlph/GHOo5cL4TD/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/otTLGt+jWF8Jfw6weH5IqklrJ0ck5Xia6YZ0xsSZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:54"]},"IP":{"Case":"Some","Fields":["49.12.115.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:3bd0::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN9"]},"Identity":{"Case":"Some","Fields":["sChweWnY7YTm3qWXqIT3iq1HGXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["263xdkCTHBp1jBwSQcSgixYAyPfNS4fiD+KuvNP92ls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:41"]},"IP":{"Case":"Some","Fields":["199.249.230.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::123]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra50"]},"Identity":{"Case":"Some","Fields":["sAV50aI/H/sTog/WUOpg02fzZQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NO7PcsOxWQhbTjAGnySsbMvkTd9tRbf6pMfJQERrfDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:14"]},"IP":{"Case":"Some","Fields":["45.61.188.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yahta4ee"]},"Identity":{"Case":"Some","Fields":["r/0UfbzAZaXO9yWLwTZ8w1hVpDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MlCyquNanySMsfrv5eeB1NF9uSSqI2qLX1SkgnbIw90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:38"]},"IP":{"Case":"Some","Fields":["5.9.156.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sulaweyosrelay"]},"Identity":{"Case":"Some","Fields":["r/j01Y4qX+rSjR7Uo4+41g5AajM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kWOKm2sWMnLbgX5GGFxp624Donvk5oGiUZkbCzN3qzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:27"]},"IP":{"Case":"Some","Fields":["90.146.66.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["osterreich"]},"Identity":{"Case":"Some","Fields":["r+rzqeDbHYN76P8Zg7oMZaPnHXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPRCuKQqMIr5hC9m+iMbEDIUmE/14YdCKyTLp8d5b84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:41"]},"IP":{"Case":"Some","Fields":["172.106.167.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thicantor1"]},"Identity":{"Case":"Some","Fields":["r9hITw2E+V6qEdYtgidn/mOBqV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iuOFK+4YlUhReSdsmjZExrt3rllwC5fit5rZyHdyV+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:55"]},"IP":{"Case":"Some","Fields":["188.165.6.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:c513:0:dead:beaf:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Saga"]},"Identity":{"Case":"Some","Fields":["r8DJ6uwdg01SAWZjuKpyI2jxtZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tbW8ZBtUlevBS40vhn79OxxmIYTei7I97XBYcgqPDg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:13"]},"IP":{"Case":"Some","Fields":["83.137.158.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WGL4Freedom"]},"Identity":{"Case":"Some","Fields":["r7ZSL51SmDC8cE6H4D44HlaTuUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJqdStf22I0wo4wd/UdQTaVw0TRvY7qum0TiSQ74dpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:23"]},"IP":{"Case":"Some","Fields":["212.227.148.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeerWienerInvader"]},"Identity":{"Case":"Some","Fields":["r5r5/CAY1ry7tXwvFBF1qlX+YhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYTGkDRcRhsrA70LMR/YYulSqCaQ5/UnnjlCS61z3Lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:55"]},"IP":{"Case":"Some","Fields":["138.201.247.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["notoloke"]},"Identity":{"Case":"Some","Fields":["r44thYWWV5vozEhZXBqwmOW4Pnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6FuCDMEzXUd00ZJOVZfZ5DTrK+VVRVN9mcxtvCKYFy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:48"]},"IP":{"Case":"Some","Fields":["94.140.112.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NLfreedom1"]},"Identity":{"Case":"Some","Fields":["r42ydZYCebh/CYsWzJx4CS4RjbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jvJf43X2J/mw/X5pmfY1aqwt9qAoBOiMLxPeNIYfqTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:49"]},"IP":{"Case":"Some","Fields":["103.251.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tashbacca"]},"Identity":{"Case":"Some","Fields":["r3gbx2yX1jcmgL3GdaK+i+51vTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Miuz0hfNTn9PfmuyAVIPWtmaJNqD1lcxYyppkTMLyMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:57"]},"IP":{"Case":"Some","Fields":["5.255.98.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:234b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev10"]},"Identity":{"Case":"Some","Fields":["r3CUtihk3pQdzYii8Nuv7POZfkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d+LxcgFqt6NoSkBGAnzB5UU2mHotTTfZlpXPC1Zd4ws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:35"]},"IP":{"Case":"Some","Fields":["185.170.114.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:928:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousNamespace"]},"Identity":{"Case":"Some","Fields":["r3B5DB5qNSFA6wOcFsqm+Z06Wfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jHl1SgWjGhbPbp1eLVC19lQhittuL1AVAp7H3q7pO/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:15"]},"IP":{"Case":"Some","Fields":["79.116.25.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5a80:1210:a800:6af7:28ff:fee5:6b3a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cerberus"]},"Identity":{"Case":"Some","Fields":["r2v9EBwNtXV2x2fkinz911CQZyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i+tFfQrZnbiW3dLaYfW8apHm2qGcm2XFSyf33ijUUyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:30"]},"IP":{"Case":"Some","Fields":["193.1.12.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:770:21:193:ca1f:66ff:fec7:9862]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex97"]},"Identity":{"Case":"Some","Fields":["r1cnXQZ6zx6t5R4yhgyOVpGQuyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tDDKMFIdnQd5DnR/+0NHP7iP2MXF0i6sIINCnouWaXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:16"]},"IP":{"Case":"Some","Fields":["199.249.230.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::186]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DuckYou"]},"Identity":{"Case":"Some","Fields":["r0mXc44M/AFM0E+wmmcNLF8eeaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qDzUzfxFnEJ7ObH35hCL3rwJMtoCzObZSUbBzXbZhx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:24:34"]},"IP":{"Case":"Some","Fields":["185.191.204.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra31"]},"Identity":{"Case":"Some","Fields":["rzUR+otBjHVr26l6bt6XDR908n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQ364sEFCSObMzJXQXCwJkYQC/5GKeqCLswSrPtItmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:24"]},"IP":{"Case":"Some","Fields":["107.189.11.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saturna"]},"Identity":{"Case":"Some","Fields":["ry5g3uqZcfaVakbOC2vJTvVYJA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbDJVvOEqz1fFpCsIbK6uw6C7dTfkI13yB8z8Ep/8xw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:36"]},"IP":{"Case":"Some","Fields":["158.255.215.41"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justinjoker"]},"Identity":{"Case":"Some","Fields":["rysBTL6Y0uZrKIMjtH8ujd3ZkE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cUC3EhzOZgVBmS9HNDnMZBF65+lrwme9xOoJO2ocuLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:39"]},"IP":{"Case":"Some","Fields":["144.76.166.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:42c6::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["duchin"]},"Identity":{"Case":"Some","Fields":["rx8VgZrHZtZQiisF2piematRH58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FIp0i4K4COiUaeNX20tcLL2D1Gfy4gW3OgOvoJZTxHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:49"]},"IP":{"Case":"Some","Fields":["91.203.5.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zebra"]},"Identity":{"Case":"Some","Fields":["rx6IsAWCzYLqtoxQIR3qR0KdXos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNDjYg7xpj/4x0JJ5xZbgYJ5ouwkbiC/YLxDwqjMKJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:41"]},"IP":{"Case":"Some","Fields":["109.70.100.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lonninator01"]},"Identity":{"Case":"Some","Fields":["rxhSqs9JB1XtAKJFRhjIyNFy0wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R60j/VBCqTwgqp10Id4tousJzvMTCVCrPG0Hj+RpUX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:07"]},"IP":{"Case":"Some","Fields":["84.61.104.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MidwayStation"]},"Identity":{"Case":"Some","Fields":["rvbB+6D8FvSTFji/BlCFuXTT6Q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mhhPYQ5YGta7UovN2hnl+mfRGoXskPBaNDdEIyiFibQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:26"]},"IP":{"Case":"Some","Fields":["178.32.233.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:5377::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glxbltrelay"]},"Identity":{"Case":"Some","Fields":["rupdjLLqGb0XrnBaaOKUqybyeaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AKGyZ9uqcY6moyTdvaMDV2Z8xCyNSKMba9gQNsavWiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:07"]},"IP":{"Case":"Some","Fields":["45.15.16.171"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1c80:1:1042::1009]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["str3DEicebeer64"]},"Identity":{"Case":"Some","Fields":["rt8fzmoc5/qpJQRjdXt2hgrlgmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5DTd8cP8ypjdyBpf8laEyIWraSUAlpFVwGTgRDbgZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:51"]},"IP":{"Case":"Some","Fields":["85.214.199.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8064]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:436f:5800:c550:adf7:932:c52]:8064"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["linss"]},"Identity":{"Case":"Some","Fields":["rtrHCBrhS40kHs8P8XooWKtDg9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3j/6Wybp8otVD+sHD5AVW8v0rVH5P/8jzi0OlLAz4pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:06"]},"IP":{"Case":"Some","Fields":["45.79.108.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01:e000:131::8000:0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra91"]},"Identity":{"Case":"Some","Fields":["rsjVRd3twDEfp/n5qIXWdNHxwv8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oOP5C3lg8GbM3xD/hqKdoVR9q408YEX8X6wdy7ZWTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:51"]},"IP":{"Case":"Some","Fields":["185.125.171.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mustang"]},"Identity":{"Case":"Some","Fields":["rsMub1oM9DG1m7PqGJ0Igr916j4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nZBjJAvc5jP+Ic+6wD+WPlkz89o8hPfX2a6ffnI1iUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:49"]},"IP":{"Case":"Some","Fields":["45.135.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM07"]},"Identity":{"Case":"Some","Fields":["rsB0B+cwcbhung7NwTwD9aOswb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m6tfiEAkuevK0NZzVqzmjRKbP4mBQrBS2GLLo9pJ/98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:35"]},"IP":{"Case":"Some","Fields":["185.239.222.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["rq5M4vsMtz4Hqu05o92O0Y3iK5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7i16PfHTn7SRcgcfndPY+mqlBy84Jlsl9J5W4/q3pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:15"]},"IP":{"Case":"Some","Fields":["23.128.248.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::56]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rpW9o3pbtGhf67fwZknWzpSbUxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I7U48BsdQhbr6MxQMtvWpvTxN3634kviC+Fkp9zCdWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:35"]},"IP":{"Case":"Some","Fields":["176.31.229.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rnol5rZWpiUNn+02LlSNXzPmud8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thzj0F0t3Bs4sxr6x02dFYsfOVqjqrE2BBtccXCi6W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:20"]},"IP":{"Case":"Some","Fields":["59.106.211.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1blu2DEicebeer73"]},"Identity":{"Case":"Some","Fields":["rmzitALCkw669ZphboCtQ/erEjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oBqsEO73/c0el8WaXzYhk3rJIyHFcscx3UTFJSAb+Sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:56"]},"IP":{"Case":"Some","Fields":["178.254.44.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8173]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel21"]},"Identity":{"Case":"Some","Fields":["rmqMGOdJm1hs02JGrEvK/7v5OrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X1wQTWQ+hSSJv4qyUF4S3sACpAoXdPQCFHSoxda1qhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:12"]},"IP":{"Case":"Some","Fields":["89.163.128.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::10cc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sc1ptk1dd13"]},"Identity":{"Case":"Some","Fields":["rlv9LPo/73uRBnvh/LILYs07a+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fq5ikX85o+E+G5k29ggICB2DwtRuN/NgygltoE3JR5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:40"]},"IP":{"Case":"Some","Fields":["95.216.5.245"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:60a::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tadpole5643"]},"Identity":{"Case":"Some","Fields":["rlQdBrff/UwqJUIDz8QbnL50sFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+hJNbgumQ881tGL/2V26pMipjHfjaH4bbpSvLBGD4kM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:04"]},"IP":{"Case":"Some","Fields":["107.191.39.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5:53f6:5400:4ff:fe11:b4b2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["sinkrlogin"]},"Identity":{"Case":"Some","Fields":["rk+uLrXcXQeEWPD8vys39dc/CGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HUFD8rOaITd0O7Wsk/AaoRjTOgz4jmtkBWPKjcEp3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:32"]},"IP":{"Case":"Some","Fields":["95.216.198.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["umbriel"]},"Identity":{"Case":"Some","Fields":["rkB1Nd2Qj/w8eg+EKM4xUZYlRBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIay5e2j2Hi8UyHG4LdIAqtRJ75+4h5UrnLLlDC47uM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:36"]},"IP":{"Case":"Some","Fields":["185.243.218.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange005nl"]},"Identity":{"Case":"Some","Fields":["rjw7cWW5EuGqXsTxd8qOTafI7Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KmTBlacjJrhxLenJLa4ivs1r7n/ASSuYGfX/LlLzOt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:14"]},"IP":{"Case":"Some","Fields":["51.15.4.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["south"]},"Identity":{"Case":"Some","Fields":["rjN86UXQaZZP14qU4dMqqUzX2sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QGFI8EbTDBshVeQsDkjh7kMbSjwguQtHsxRGjFMABCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:28:05"]},"IP":{"Case":"Some","Fields":["83.229.71.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6329cogwheel"]},"Identity":{"Case":"Some","Fields":["rh0+zLkn8P8e31nqCrmU/nUcVYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVCKTRqTl0urn77u5j0onLBq4998lUzHyUlxCdpHVOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:07"]},"IP":{"Case":"Some","Fields":["114.34.165.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gayming01"]},"Identity":{"Case":"Some","Fields":["rh04a8rVcEu4cwCFCUAsRXmByPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w8DD9huyRsyIKbfDCBwTFwjtlfYYTWKW5Kt8JKfqpfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:38"]},"IP":{"Case":"Some","Fields":["74.208.203.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:229::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockstars2"]},"Identity":{"Case":"Some","Fields":["rhsam0Tch4IdafBNxJM97MVV5TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEKL4aksiZzYmPjaQkf0p2YMBjjSGGm2ZHCIUzBCo88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:58"]},"IP":{"Case":"Some","Fields":["174.128.250.163"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnR30L2"]},"Identity":{"Case":"Some","Fields":["rfmhauhHjN0gPKNmSpuMo+OLd64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["crkfJYos80mOHkJomxMH01BbVxpqSd1SgyYhCQF3KNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:45"]},"IP":{"Case":"Some","Fields":["185.4.135.157"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:217::e528]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["rfDVGUbaMpTB8kKwrK3JH/XwWO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kv1B7lXkYQtR6OJZYc+PIx03qlSrSc0plrK5qosnIoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:53"]},"IP":{"Case":"Some","Fields":["185.220.101.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::206]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MichaelAngelo"]},"Identity":{"Case":"Some","Fields":["reo9Vgn87B7y9EJsSTE+uC3+Pms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ySiagQ1Fqwqp7FsBhO1M12v/rpetjqPxqMHuV3ufi4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:27"]},"IP":{"Case":"Some","Fields":["178.63.40.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:205b::2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l0bst3r"]},"Identity":{"Case":"Some","Fields":["reHP1ppvu3rClw195OQCu1Kc9i0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6/DhB7927kuA/xWT0ZjGXQiO9+SuDnDbwKH49vB6doA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:10"]},"IP":{"Case":"Some","Fields":["46.249.49.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1ca8:2e::c80:519b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vaN1ph06"]},"Identity":{"Case":"Some","Fields":["rbuImo3LLmDwAcyerLw3rdhEw1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5aQeRuucSnS6qFMvgZB0AXraSQWkhQClL5YbS0ZYkrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:44"]},"IP":{"Case":"Some","Fields":["88.214.35.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange008fr"]},"Identity":{"Case":"Some","Fields":["rbmLJ9ej+1cyBo/SNgKhvLO+nzg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gryDaI25962BzoHG/Vh0telRpE9XzZp5gngW3Idquyw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:19"]},"IP":{"Case":"Some","Fields":["62.210.105.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BerlinSpechtpark"]},"Identity":{"Case":"Some","Fields":["raqwD3E82RM+tltKr0tV0u5qPMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OEEtwmazkIALt+HADCWnW0TT2ec12YG5YRlevWBhA30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:40"]},"IP":{"Case":"Some","Fields":["80.144.172.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ralMSPLZoO0K62UxHA0dXLOOE+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RzWQxN6XMDAj/HbAiWt1Tvw5lvxw7H09Cx3i8ZflyuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:59"]},"IP":{"Case":"Some","Fields":["185.220.101.35"]},"OnionRouterPort":{"Case":"Some","Fields":[10135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::35]:10135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv04"]},"Identity":{"Case":"Some","Fields":["rZsiQ7gSP3OtBbBd1D1UImdW9Kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/t2IVl5hVuTTPUVo+fBRmARp0mOrQ7ZG32Iz+guFrwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:51"]},"IP":{"Case":"Some","Fields":["162.248.163.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor1e2"]},"Identity":{"Case":"Some","Fields":["rYbNGklXPVKntvSjV1DxYarYnIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fVwMeziMb0cNGOryhLvc47xaYTggecc3a6xb+SXe3Mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:44"]},"IP":{"Case":"Some","Fields":["185.195.71.244"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rWREwCgP+8UeCIsqfGi2P5EXytI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJVVmWTwc1igJ2F4IplnOO/nBU1LYu9djs7acEO+UGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:22"]},"IP":{"Case":"Some","Fields":["5.183.87.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNickName2"]},"Identity":{"Case":"Some","Fields":["rVZVXDzM6epJhylnsMkPFp5+t1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdrPHjCJpcJ5MVGmhgBgCLWLCKD7fE22vQrRwoCxNVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:43"]},"IP":{"Case":"Some","Fields":["176.98.22.123"]},"OnionRouterPort":{"Case":"Some","Fields":[55555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sputnik"]},"Identity":{"Case":"Some","Fields":["rRlJDH27JtOmjvyCT2fmmwqW5gE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i4YXGQM2leJaeFAMM3t0X+I0VTx4nlqFDdOLP5LyDJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:58"]},"IP":{"Case":"Some","Fields":["188.40.128.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:1ac1:dead:beef:7005:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["rRR5htAz351GmEYmISqyUQ2WNNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["33X/jzIxPkAsWRqJFyaM8Rq/Lw2ZOX7bgCpfmGGONmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:03"]},"IP":{"Case":"Some","Fields":["67.198.37.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen"]},"Identity":{"Case":"Some","Fields":["rQ/P2D6kiZ2zRzXlmXAVkt6hNpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H8RF0kORZLDwELk7RjVxCPmx0sMoIfcT69OXp25apCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:16"]},"IP":{"Case":"Some","Fields":["202.61.197.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LutziLebt"]},"Identity":{"Case":"Some","Fields":["rQ12GLbnpNElq7B7U+rLIUb/yNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDYTxp0u4CkA3amG7szE0lMma1t3IZ5sdRm4T1afBuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:01"]},"IP":{"Case":"Some","Fields":["128.0.64.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetherStar64"]},"Identity":{"Case":"Some","Fields":["rQ1QhpR1o6I26nq4UsIVvhGlx3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hk+loM3R7vMp02jIEc+vLy8THveePCDHq0eznkYxTBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:37"]},"IP":{"Case":"Some","Fields":["217.93.80.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["rQhYSsaipCHa7fIn2m8N5T3+QLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+MHZ1bSii96IGTpRhHpChcud2nMAwAXLwp6UTMu/Zec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:07"]},"IP":{"Case":"Some","Fields":["179.43.159.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raphanus"]},"Identity":{"Case":"Some","Fields":["rQZS72MfnJnOfOIfGhVq108n7VY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y7VRs06eSspR8Iseh9KmPU2puYAA7OYEjrlOyJOvSgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:17"]},"IP":{"Case":"Some","Fields":["164.215.1.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alexandra"]},"Identity":{"Case":"Some","Fields":["rProWJcXs/EXZvDegmQn6PpAWL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GHwo8qqgGvet6SXNbbDZtiMz69lWV7ah/v1Fdaxab0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:31"]},"IP":{"Case":"Some","Fields":["189.147.190.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mmagtech"]},"Identity":{"Case":"Some","Fields":["rPrA6+c6oFjqFnUaFp8UpQLjbXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9LU6hRUcF0WqN/tnfT6zSZIxr1aNw2x7tfYGzfh6T3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:00"]},"IP":{"Case":"Some","Fields":["99.43.23.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDiversity"]},"Identity":{"Case":"Some","Fields":["rPj8bBQDKgRbRPa5hSXuXARy3VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0ik7cgZzB85NZ1hoHukoWVvcgiIaaL+Ee4kCoeIqf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:28"]},"IP":{"Case":"Some","Fields":["91.208.184.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["rPiwecBaMTpRINVk3q7/LXU7GRY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aG/2deUjBRuvVRJz3uoBIV6FZFw2uIbpqPWbzm7AKZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:47"]},"IP":{"Case":"Some","Fields":["188.166.76.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["laukur3000"]},"Identity":{"Case":"Some","Fields":["rPf9W3NoG8AbvoF2xj5GdbJ0ER0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbwtKdwKnUskDCOlh+j1aMCgo0hEEcYk7DCz7NbrfUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:56"]},"IP":{"Case":"Some","Fields":["139.162.63.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:91ff:feb1:8ece]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz1"]},"Identity":{"Case":"Some","Fields":["rOQghyrx+KfgZEA9kmadFMXOdK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y2/ZAg8MineVa1oXKH7zRh+HzYlEJTwcJuiRv5GEcUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:43"]},"IP":{"Case":"Some","Fields":["116.202.233.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kulcosictor"]},"Identity":{"Case":"Some","Fields":["rMh0rW1NOsMIy2wERiChWaESMZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPxgU62RDMX+Du0nCwuM3St4oCDlL+ZjrhtV2rebmu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["193.190.168.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["centorLyon"]},"Identity":{"Case":"Some","Fields":["rL89UEz/PXTRmRr99qwHBgYjKxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xm1uvBbrCW1oy2HH5IM6CvgZVwjyxMmrbViBBAyH4Do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:25"]},"IP":{"Case":"Some","Fields":["82.64.20.171"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[59002]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shadowfighter0"]},"Identity":{"Case":"Some","Fields":["rL56IiUZTgXCAFGylI0GmpeUgC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qWHh6X1n0sBDqRQ6fku+E2hB6UmqCdpVnJtWCyF+TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:43"]},"IP":{"Case":"Some","Fields":["84.148.245.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire62"]},"Identity":{"Case":"Some","Fields":["rLu0Js4dBkGlkL8fwc8FQW/A/28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uUitGUqhl/sG7KBXa28Hwu3IZM9dqaigSSrgIVKqjm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:52"]},"IP":{"Case":"Some","Fields":["91.143.80.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torgate"]},"Identity":{"Case":"Some","Fields":["rLWczYg0AK5QVsI1G4ZRaj8wWIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hNB4g8jgMICusOkjvqg//MiIq5S9pta/IPEzm+Jm/DE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:38:50"]},"IP":{"Case":"Some","Fields":["85.214.235.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryMay0"]},"Identity":{"Case":"Some","Fields":["rKrhcIFE9khar/1Zw8bqoepKqrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W1PxoPpsyTUNZpweIREnnd89bWAUzLHNwc5JbKIt2DA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:00"]},"IP":{"Case":"Some","Fields":["46.4.32.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:3641::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["rIfbHZZTYvvLn8i6MphnGNPsarY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["etB/vQoldARlDZ9QYh6hm+JCIFkw4VojVpxsmEhlLko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:47"]},"IP":{"Case":"Some","Fields":["185.243.216.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:91]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["churrodawg"]},"Identity":{"Case":"Some","Fields":["rHyI1nM5uQ8sEP97cC3LHvO41mM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CCnry9xXklDXOVHBLk3VP+W1pT4q/+onmriVb6kTpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:38"]},"IP":{"Case":"Some","Fields":["138.201.196.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:3e99::2]:9993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcRelay2"]},"Identity":{"Case":"Some","Fields":["rHwPnVfa2tXY9FaO4VQ+8+IqR84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yqp2qqq3DagM0ljPHMD41FyjkRmLBXfdQ6lnqM95tWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:57"]},"IP":{"Case":"Some","Fields":["130.225.244.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:878:346:1cf9:446a:c4eb:4548:7062]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SODrelay"]},"Identity":{"Case":"Some","Fields":["rGM8kOEm4LypbxTs5dIitYb6DVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P4ub4q0CkFlgbHiYp5saq7V5OD6yVt8Km7kvh0YCY4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:51"]},"IP":{"Case":"Some","Fields":["157.90.92.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:252:3df0::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortempel2"]},"Identity":{"Case":"Some","Fields":["rFrKptkbcXLIgM/Ew8JrYta6Jn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXBSrtJndHty8Q+bvBrX+ZwAn6fCEopvhRCZhVeOoHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:14"]},"IP":{"Case":"Some","Fields":["178.254.31.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9596]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benignrelay"]},"Identity":{"Case":"Some","Fields":["rFcZzm8icWYXwKV7m5gBMby2BfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IolvT69CAEMjuse3LQo/qRWh0bLLQ0qrnLt2Kd3VdkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:21"]},"IP":{"Case":"Some","Fields":["118.99.13.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["rEGj8y1faTcGuSBDGBYZkKxRaI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J7lvPG6B8AikQBX99KQ0F7r0ppTqPA4eldwDlytjmmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:33"]},"IP":{"Case":"Some","Fields":["23.128.248.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::33]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schokomilch"]},"Identity":{"Case":"Some","Fields":["rCvt0LrHKDjqfm8RP4VsToAYrNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlS/DS+hvGww8QlMkU58UET2GRqmrWnFhebONiBdKEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:37"]},"IP":{"Case":"Some","Fields":["176.10.107.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torcz"]},"Identity":{"Case":"Some","Fields":["rCceczBaCdcrkCWii/eO3DM9yFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["69EsB1Tz6jikiOU1Z52FntJrKkVfFIfnjrlNmMl6Ks0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:10"]},"IP":{"Case":"Some","Fields":["213.211.43.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["rCScVsEf3fqejeVrGCsTrIpGcr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QG05eNVxwYXNjXqYxlZYB6GOZf8rS/ojzF+KfCZSWzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:36"]},"IP":{"Case":"Some","Fields":["188.68.51.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["q+bGW2cdDmDso88sOw/+vVImTwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cdVKe2YvpyvNJFcrCchF2wQZOJ91KG+kWIH2N8BPnGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:02"]},"IP":{"Case":"Some","Fields":["185.220.101.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["millemille"]},"Identity":{"Case":"Some","Fields":["q90lo9b80QTxPwWgrrYCfOMrehk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HPW4GXZsSt7KruDdgjq8ZStc0k0UiMwd5P5Q6Ba2Fk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:55"]},"IP":{"Case":"Some","Fields":["178.254.41.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["q9wlIF5HKAnVQCfpysRniyvPIz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PeqAxaOLAreLl0P5s37as3UKrwLHz//HtS+qafRq+kM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:02"]},"IP":{"Case":"Some","Fields":["193.178.169.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc01"]},"Identity":{"Case":"Some","Fields":["q9nUbDwCbPa4hXSgcH0L91oGeZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IKsycsQfkAyzetV5j/wwF0zXNTS0bBKMYXzexPukN24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:18"]},"IP":{"Case":"Some","Fields":["185.100.87.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLicebeer26b"]},"Identity":{"Case":"Some","Fields":["q9Y3xPqFykrybgnKhPcLOWYD/zw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ktn+lGswnpSPperB/0h3Kh0Xv6VVKh5dtkwx6E1q6LY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:11"]},"IP":{"Case":"Some","Fields":["95.214.54.94"]},"OnionRouterPort":{"Case":"Some","Fields":[8170]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myQWERTY12345Relay"]},"Identity":{"Case":"Some","Fields":["q8vhiUStPErKgx7SSOtsZtN5Jrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WZRVt0J2S6GWzKQzovhs8EGQYIHtTScJOPshgicFRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:48:16"]},"IP":{"Case":"Some","Fields":["83.78.178.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Playstar02"]},"Identity":{"Case":"Some","Fields":["q8WnptXGCVEvXXzStJDOc2bwDWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dF7czDcq3jQsiv9o1T6CcHKcgxjyVbh4URKdxrgW16A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:53"]},"IP":{"Case":"Some","Fields":["192.121.44.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2af8:0:c4c9:3dff:fea3:f4fa]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bergjuden"]},"Identity":{"Case":"Some","Fields":["q75LTB7wGzwXZe+g3sETyoMZRvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtvPvcvzHkPCrEbHR/GX9rIN26Quy+/7M4W+COQuYpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:03"]},"IP":{"Case":"Some","Fields":["88.198.71.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:151:52a1::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CzRelayFuckPutin"]},"Identity":{"Case":"Some","Fields":["q5r6B8MSwJiaFa5j3FoA8sypCuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7DhUJbzkKCjp8i9K/nuRvEmfWnS+5m1S1n+rSgNoxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:31"]},"IP":{"Case":"Some","Fields":["149.202.124.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv24"]},"Identity":{"Case":"Some","Fields":["q4uPZuEpizvlF2eJoQOLk4Kw/Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYzTSCop1gcQVmWm74c/6EyOUfmmQbPvqT4WGu5hzj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:21"]},"IP":{"Case":"Some","Fields":["45.62.224.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bunnyriot"]},"Identity":{"Case":"Some","Fields":["q4cM8dwwUM7Uma/ACLv8J1ZLM8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X5R7QGxloarQRFs9w69OLMyoZ32IOpUHpEwGbqos5Ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:50"]},"IP":{"Case":"Some","Fields":["217.233.71.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["q3NmklxEZCTn7jMXm+q0sS2GlrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+p8GlMCssWHiEJlyE+iK4jq3B4Ne7MwGc5gOVRfQGVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:25"]},"IP":{"Case":"Some","Fields":["188.68.49.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YoloRelay"]},"Identity":{"Case":"Some","Fields":["q3HytqFSh7idJ6UrR9EQaQy3I9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NO/eCFt6CRveM610P173yOCogz8XCdlj5bblNcJuoqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:01"]},"IP":{"Case":"Some","Fields":["82.65.148.75"]},"OnionRouterPort":{"Case":"Some","Fields":[39185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:438:9850:4ecc:6aff:fe3c:b8ec]:35433"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neuronMail"]},"Identity":{"Case":"Some","Fields":["q2aQqvRfU/fzvIQuI3efJMk0bfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R0ga3k1RAilU7EZsrD9AizNtpO8FNGlKt2KbaI3DsPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:35"]},"IP":{"Case":"Some","Fields":["45.79.76.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mikoshi2"]},"Identity":{"Case":"Some","Fields":["q2aMtPKVPYecKxre9bbPsyZ7gls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5A5lM8BslF+wHnnWSr1hftVcVqxieX/zTsGO0B9vK9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:10"]},"IP":{"Case":"Some","Fields":["84.157.61.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AaronSwartz"]},"Identity":{"Case":"Some","Fields":["q2ByFmNmwuJF+VkFMQQxNXtYH5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1mkBhGhxjqO7416NXvuwYX+IV7WG8h31sDjeXGUnelg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:43"]},"IP":{"Case":"Some","Fields":["104.178.168.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c0:5678::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gaciiz1seish"]},"Identity":{"Case":"Some","Fields":["q17/+ajmyMLveNX2UH3bInjKn8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVex0IRdT+fR/rKLR09z3BgI0L0TJe371nhMIjwjmBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:49"]},"IP":{"Case":"Some","Fields":["205.185.119.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xXxsussybakaxXx"]},"Identity":{"Case":"Some","Fields":["q06Fb9/7qI8rV5wRhIbn6Q7N8UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lV8Me22Y79b/uP3iGdo32IUsIJQhcOdKvM+qLHYA0xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:54"]},"IP":{"Case":"Some","Fields":["129.146.138.146"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv118"]},"Identity":{"Case":"Some","Fields":["q0dh4jr1EegwbpXnj36C93suSH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HbHRz8kFedkbwOsgFUTJeBT13evtWhABtR1Hw6Q2QfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:02"]},"IP":{"Case":"Some","Fields":["192.42.116.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5518]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eva"]},"Identity":{"Case":"Some","Fields":["q0D9eNik3lMPseA1XnTYA2d4Rhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q9zKDAXORuqqik2X7T2mCH4h/ZLOAGAdHCMzF8trWq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:57"]},"IP":{"Case":"Some","Fields":["31.164.230.2"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[42069]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luxurywood"]},"Identity":{"Case":"Some","Fields":["qzIn20cLF4g9JNgw6oTr+9x9WBU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtcWQ/xrdIYdES3YauAZvSXHMJWE+yxrN9GdXJrRUco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:43"]},"IP":{"Case":"Some","Fields":["206.192.255.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b:26a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["qx/r9pgi9KoULHAxkk3QhJbL/uo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g7/1wfa1V99b7Q5ahiGDVkhKVUVKXMnp4CJnkES46lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:51"]},"IP":{"Case":"Some","Fields":["213.238.182.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r1"]},"Identity":{"Case":"Some","Fields":["qxgQOKfPghbga8yIvULng9W8C0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nw4tJBzon39hlyUwf4A/NOzgJDav/BTnDyOi4+TSE8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:11"]},"IP":{"Case":"Some","Fields":["108.175.14.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelloPerson"]},"Identity":{"Case":"Some","Fields":["qwj2YkS5O5Xf8gmOpoh/+JZExlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l3uzHT3AetOGFLbUbzypPoCKI1Q1MjDIyUz8XkO12hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:30"]},"IP":{"Case":"Some","Fields":["51.38.176.84"]},"OnionRouterPort":{"Case":"Some","Fields":[13373]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onemoretorserver1"]},"Identity":{"Case":"Some","Fields":["qv+mirYSOPkES27Lpi4lJkET64g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6PCU0faNrWdoU9DazS20B8tKROXIy4/fx7gUj3r+eA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:22"]},"IP":{"Case":"Some","Fields":["164.68.106.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3005:1808::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jceaonline"]},"Identity":{"Case":"Some","Fields":["qv9KmXVD2w2IH08RY4SFt9Rx/s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLLekP8bXyCV0IPSWmL9y45vBuJkZt5ntyBRXn+2QNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:15"]},"IP":{"Case":"Some","Fields":["51.159.34.131"]},"OnionRouterPort":{"Case":"Some","Fields":[47168]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2ecd:caed:746f:7200:746f:7200]:47168"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noob"]},"Identity":{"Case":"Some","Fields":["quhTTSEuelzw+ZeTqPZa2RtSmSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YxGl6gDUPJL9rK2sXZVbCKU/UeY1ge0JyauZFiPqqZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:44"]},"IP":{"Case":"Some","Fields":["96.234.41.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strator"]},"Identity":{"Case":"Some","Fields":["quAVxvE88G3o/SjbkDcr5VyKowc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCIQmaQH8yl9kQfuOKP+502eziyBzNW0GP8faadulxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:41"]},"IP":{"Case":"Some","Fields":["81.169.240.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43de:1a00:7fbf:f902:d7a7:4f2c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NicerDicer"]},"Identity":{"Case":"Some","Fields":["qtH/5EQ1J3tsC9xlaEqDb6NY8nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QjvGZVLAUL4jZrjd625A1GPBl642Dm6w+w0ibZdQZYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:56"]},"IP":{"Case":"Some","Fields":["87.181.29.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber28"]},"Identity":{"Case":"Some","Fields":["qs1OCeZboYyvNfvIVe9llQWzbp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rMV7BS6TBOVBBB5QJzqoFAispbOa+8rOmadd5S/T7Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:31"]},"IP":{"Case":"Some","Fields":["185.220.101.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::14]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pi4TorRelaySlow"]},"Identity":{"Case":"Some","Fields":["qsqHfodovQdXwYkVBqIAPhPS4Q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9ltIzrxUX1tqLCglYflj810SxWv63fi1nAcBhVLQv50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:20"]},"IP":{"Case":"Some","Fields":["73.41.140.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tonyTOR"]},"Identity":{"Case":"Some","Fields":["qrb4sDvOL3wYU+iv++uzOSoUO/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yMqrOPr4jpxUrxzCzdVD6WeE39pWZQ1+AlhmEL5ytBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:53"]},"IP":{"Case":"Some","Fields":["193.226.78.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["qqslGcJ+9ofjIW1YjMLGrMOwUaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2a0o7hXYj9BrR3L2z4p6YH3Q/YzsEO6kMkZD3U8KM1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["95.214.53.221"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d9]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WorldGate"]},"Identity":{"Case":"Some","Fields":["qqRN4PaRrJp25xHirvs8hL2Sf04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QyzP9AYTASadlcOfrEwWk49asq3AMLHCFnq2ijIGQu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:30"]},"IP":{"Case":"Some","Fields":["86.202.188.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:b8:df00::19fc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["larrabee"]},"Identity":{"Case":"Some","Fields":["qo61rT9uiX+fKDsZn4VKyk7vgxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPqtonCnc8s4/rUB7BUEP1W6h/HzD4kWigUj5J4UoKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:44"]},"IP":{"Case":"Some","Fields":["110.4.47.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["indawoodz"]},"Identity":{"Case":"Some","Fields":["qojU9bBbTnsgDiniOlrhpvwsen8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XATV0jA7W0xXSmOJ8i9XhWcrFoRrxXFjdsDUCvJWQXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:29"]},"IP":{"Case":"Some","Fields":["76.65.151.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Magicland"]},"Identity":{"Case":"Some","Fields":["qof0UqIQZDwcEupsExI4v7M926Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6p8uqoWXrJbsazJD8Yz3bMuGuzS+i35ISYHw2AaaAf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:27"]},"IP":{"Case":"Some","Fields":["185.215.185.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cryptornite1"]},"Identity":{"Case":"Some","Fields":["qoXU4nQy7PXDT2SvNbMjat5lOP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCBHubLeRyKoSK6OlgBDowVKHXCRbjbn8WRNbuSNzqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:59"]},"IP":{"Case":"Some","Fields":["92.116.129.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["R1lyeh"]},"Identity":{"Case":"Some","Fields":["qoGq6toS2OD1iou+1c0B1xxOhOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZ0aPoFSssEoQ0zwwcV0l0FtlNOA0+erk08YH/16ms4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:48"]},"IP":{"Case":"Some","Fields":["5.255.98.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:2e34::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbaddie"]},"Identity":{"Case":"Some","Fields":["qn8oSBPX1dZzZ7p4ujO33HTweu4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p0aJE2QNebJPZ8/zvs42idwxmgxrJf9utMNTXGEyB00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:58"]},"IP":{"Case":"Some","Fields":["45.61.185.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JustSomeRelay"]},"Identity":{"Case":"Some","Fields":["qn1WnFL6RNeSG7gRS1AEToDRefg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+AnhM4CjgE0jiM7uYlwleU04YD7FesZf68nc5hHO83E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:16"]},"IP":{"Case":"Some","Fields":["73.90.7.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skid"]},"Identity":{"Case":"Some","Fields":["qmtY+f1R+TLhT3vYezs5QwNr74k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nWvTD6xcvlB6r+T1N1HQG5oRXA3ESsjNQfoC8B4/iw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:43"]},"IP":{"Case":"Some","Fields":["91.90.120.195"]},"OnionRouterPort":{"Case":"Some","Fields":[37187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roTor"]},"Identity":{"Case":"Some","Fields":["qmFjFbqXcp6kfa2HGPpZJpxyKec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1KgSgxrOmnseECjwJ/A/aPqTZdYk2s6iROZCd4ySQOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:26"]},"IP":{"Case":"Some","Fields":["94.105.123.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:578:853f:1500:ae1f:6bff:fe45:cae8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["opix"]},"Identity":{"Case":"Some","Fields":["ql1KrSfyVHVhG3Mi6gckofFzn4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UCbk2y7ZPdn0+teg+kl1j6cEY1TjkG784+tpvv/9CY8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:44"]},"IP":{"Case":"Some","Fields":["94.19.200.5"]},"OnionRouterPort":{"Case":"Some","Fields":[44040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:3580:2e1f:900:f402:5eff:fe33:d21a]:44040"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qln7T7KnQQ7MdlilhInJ1R1xhnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ndgAbRV2HdmlerPFS794vjhaH1NlyjEz0Lspha5yszo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:08"]},"IP":{"Case":"Some","Fields":["82.168.132.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DadaRecipes"]},"Identity":{"Case":"Some","Fields":["qlHDVTR8ZxzGauiDiCN3LEPsLl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KInfhJHxiHZr9ZtN6+aN6hRdryRT5fNz1DMxplz5gRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:10"]},"IP":{"Case":"Some","Fields":["38.97.116.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipda"]},"Identity":{"Case":"Some","Fields":["qkryfWpXOw7rI0rviXUMpuYUHA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EN/Lo+HqEmH5k15wxtyrCCMV48Znzw0i8kIbW6YYA2Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:56"]},"IP":{"Case":"Some","Fields":["185.220.102.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::243]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["qkZE8OxYnuovUBu4Z+MuWZ+Bado"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KN41fxTa5TPXrm3qv+OB+cC3AfI0Ycvh1hGkaHBME9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:33"]},"IP":{"Case":"Some","Fields":["5.45.104.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fl0"]},"Identity":{"Case":"Some","Fields":["qkDW/BCAtVzjoXGWWEKzwv1WAuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xCGQrneD2vjdYRPowo2HaYqWhzZKsXJcM0/raRvIZZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:05"]},"IP":{"Case":"Some","Fields":["188.80.195.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTorRelay4321"]},"Identity":{"Case":"Some","Fields":["qjXmo49x8yTb9j6NQ9+D0N0MNTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ywzTWMgGh/kk0B1tuQzAYQlxXpp5S/N5cNOrh3PEF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:00"]},"IP":{"Case":"Some","Fields":["190.89.104.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontstopmenow"]},"Identity":{"Case":"Some","Fields":["qia5e2ynV79jMo7pZwUSBgnPSq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/Nvaiy9UfDe6NTZ3GZ5VzNeDU0cQd+lgm0Y++4uSOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:19"]},"IP":{"Case":"Some","Fields":["173.212.200.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:935::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoSoul"]},"Identity":{"Case":"Some","Fields":["qh5YQlH8t8Yv7j6rSApfyQmkSTw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xbkRtq03At4h7jWN1MMICVUKU5y/c+9ziWSSNWjk9nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:06"]},"IP":{"Case":"Some","Fields":["217.92.175.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qhsCbuDIqVjinGfH2Ihf8nVyJp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3psQt2bsPpcuez3ppBadApftkKmWFf04TJXX85hK8gM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:12"]},"IP":{"Case":"Some","Fields":["212.129.4.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionSherpa"]},"Identity":{"Case":"Some","Fields":["qg+DxaN+Ql0NM5mGgy+3RbpK9Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QCbhqN2ehFidd4g3OPBoFh2YKvwoiQwUnQE+grChU1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:52"]},"IP":{"Case":"Some","Fields":["199.195.249.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PERLURGroupCZKO"]},"Identity":{"Case":"Some","Fields":["qg1KJ14/HN/6z3N0cPzpypDU1P8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xpv6hXyqXFF4tIpyU9r25atJ4LlrfOPV8GGHlmHriiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T17:54:43"]},"IP":{"Case":"Some","Fields":["82.209.54.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["damita"]},"Identity":{"Case":"Some","Fields":["qfcYVJnFeE41tcJXRO1Kt1Q3zl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqUrmftrHnOvFladjiWx69dT3FDsgbBUIr6WXU+9MOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:26"]},"IP":{"Case":"Some","Fields":["91.229.76.124"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ethe"]},"Identity":{"Case":"Some","Fields":["qfYhunjN8ydsp3kyrkfKsKyKJuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8VagYM4YwoNX4Sm/F8q3Z8B6+WqaPc7BTtSrm4Im+8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:36"]},"IP":{"Case":"Some","Fields":["139.59.92.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torthias"]},"Identity":{"Case":"Some","Fields":["qeQ0Me9HO+7w7smNvd0bjD4/sHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2lvDLbQoVGbdL0axfRf3JooIld40KHCeY8WHd2Jb2Bw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:10"]},"IP":{"Case":"Some","Fields":["94.130.185.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:453a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnappyL"]},"Identity":{"Case":"Some","Fields":["qeBqRpwpQjpIzBLz08UhRyFIv8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jKy7W4nxMohazg0FW0jlN+/uj+NWbOqAcX4raLT/J+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:39"]},"IP":{"Case":"Some","Fields":["24.124.18.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AMSRelay"]},"Identity":{"Case":"Some","Fields":["qdpzXJ3nyJG57da0M7RY92h+gps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHToI5UCeAOiEX1CRRjm8kNxQCj0LPdCf3tRc1zM4w8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:54"]},"IP":{"Case":"Some","Fields":["146.190.22.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockerObfs4Bridge"]},"Identity":{"Case":"Some","Fields":["qdUsSqhVa0mUHseWy8lIOfDaVPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfWI9CTFpGd/X+qarofsQIrluhG3TRZaPCSkwQl+OcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:49"]},"IP":{"Case":"Some","Fields":["212.8.253.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viola"]},"Identity":{"Case":"Some","Fields":["qdGobnimMO2GAPtJSu3L9hsg6xg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["onmIb5Ta8tDXwBtZSebPlqtRX4HRxvsKC81tBolJ5p0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:12"]},"IP":{"Case":"Some","Fields":["69.40.113.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu3"]},"Identity":{"Case":"Some","Fields":["qb6i4GmdH2BSHIoRZzQJRaQZ0QI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DaOWXNl4l39hNGAZJ0yPYVH8OtsGiCKnne0il6R7DJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:13"]},"IP":{"Case":"Some","Fields":["104.244.72.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fb5a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BWV639"]},"Identity":{"Case":"Some","Fields":["qa4gooeyFe4EnAA3PJUvQ/CAvMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gcWknCzqUD7vWZetzBXNhP+w1+dbnK7DgreqYlnubqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:38"]},"IP":{"Case":"Some","Fields":["173.230.137.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fedf:a49f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["u698id1147"]},"Identity":{"Case":"Some","Fields":["qaQhPqPXB4VzaMaD8iCMg7h1XYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wzeX1CC1498aFKDn1SOoRn4C84JMh1Zs9B+sM9iXi/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:43"]},"IP":{"Case":"Some","Fields":["91.233.116.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buttercup"]},"Identity":{"Case":"Some","Fields":["qZsNnl/VvDyPLQBuyR+Mf0DgnLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVkKdpDxWKhqg9Uvm9Szum0i9W70EKtiHHQ2/LhmWqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:53"]},"IP":{"Case":"Some","Fields":["46.4.78.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bolar"]},"Identity":{"Case":"Some","Fields":["qY9JL2UxrjoGjdNTlcqfW+jwNVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQep1heJ/MYsp38Rc1seCQmjYjeyKwRyHo7e4KqP2G8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:41"]},"IP":{"Case":"Some","Fields":["84.212.255.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kuba4697"]},"Identity":{"Case":"Some","Fields":["qX3LHkhgBNbzJljf34DCIafBJzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LJ5yAonYEgo5rVOA+nUoNtEo6TH/MyWtdNjTbjHZsXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:26"]},"IP":{"Case":"Some","Fields":["77.253.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1148"]},"Identity":{"Case":"Some","Fields":["qXNM+V+kPhTDdX2yHPxsyW4gB/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UTNGVUnpY+kFvp8PS92aXH4D2zJuPBDD7iRSEYgPIx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:31"]},"IP":{"Case":"Some","Fields":["185.220.101.148"]},"OnionRouterPort":{"Case":"Some","Fields":[11148]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::148]:11148"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH106"]},"Identity":{"Case":"Some","Fields":["qXA2JkBSuBh/kBfjF8NO/adBJes"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/MAUR4Flju9fRFMQPp5vh4QbQcHv8yYCpcjyjIomqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:07"]},"IP":{"Case":"Some","Fields":["192.42.116.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowflakeMentality"]},"Identity":{"Case":"Some","Fields":["qW/I3/MqwX6DlANUg662ErRiTVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVQRqxT9IYYYm4l1pVkNf4e9yaA74g/KkywkSSEXaaM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:17"]},"IP":{"Case":"Some","Fields":["24.246.29.240"]},"OnionRouterPort":{"Case":"Some","Fields":[5190]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NerdyBloke"]},"Identity":{"Case":"Some","Fields":["qW8Qgo9dO6QqyJJ/A23r2ZTvBL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MrK/UFUsQ7F4E5FmT6hflU8LpNm/nNqFNb7ZeBtljTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:46"]},"IP":{"Case":"Some","Fields":["212.159.177.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f09:d10::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["qWP0z7VjX8m1gy4rwfvNO9T/lz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0kfgDwq1gDqS3R1HWw5UAPCyygg7woM4haNtOgnUekM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:08"]},"IP":{"Case":"Some","Fields":["95.214.53.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qUo0HrmABsVEFn5GvNzxcAhAbqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["liuDvxhkWW0UWBGOOiw86ARVPAuCsYIZsTY+ROnUMm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:35"]},"IP":{"Case":"Some","Fields":["136.244.109.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ullr"]},"Identity":{"Case":"Some","Fields":["qTwKCKnznUjGE6SXJGqzIfRKdTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uELzLaNbcfWxUXkafVZG41eCDGzj+F9rgIW5eSI+yKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:08"]},"IP":{"Case":"Some","Fields":["83.137.158.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9013]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation55"]},"Identity":{"Case":"Some","Fields":["qTL1b2nSSpagy8TzKSKmLe/SjHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjNLn+M7+muf+CkjN6+BXNU6eXgfN8XUAWBv9uQIpTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:37"]},"IP":{"Case":"Some","Fields":["51.89.143.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wideBus"]},"Identity":{"Case":"Some","Fields":["qSIk9qgursgamrNVrs/mZPR2Er4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PbzbFl68qxvJbCam6ggeAYnA53n0JOlnsjVnnkL9kw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:25"]},"IP":{"Case":"Some","Fields":["172.106.167.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex81"]},"Identity":{"Case":"Some","Fields":["qR8+TSzNgfXIZeFDUl+Sp5DN8X4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RPmMmFb+iL+LSbDgno4O/gtVU7OSr1hGGhcWXm/Hhw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:50"]},"IP":{"Case":"Some","Fields":["199.249.230.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::170]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["qQRLmuA7yjLe7LcKlz40wC9yz8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vEjoKIFE6tQhJRxrmDZoPP+LIPmLDTR8H3AfXk7UTbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:49"]},"IP":{"Case":"Some","Fields":["185.207.105.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R5SK1"]},"Identity":{"Case":"Some","Fields":["qPtz2Re3wrhRo1hyk1nhPrpZePo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c4qV+5TlZ1GjxNY8CEL/lgfUKcQP2+aW95CepyJQHbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:14"]},"IP":{"Case":"Some","Fields":["132.145.22.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:c007:cab:5235:2d:534b:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingpins1"]},"Identity":{"Case":"Some","Fields":["qOtwmDzC/D4skUGehOvNRyJlR0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oajTfg0FzjCxLl72nh1yX160ospaoz1rpfQZkZtHRoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:35"]},"IP":{"Case":"Some","Fields":["45.58.156.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vidaloca"]},"Identity":{"Case":"Some","Fields":["qNNMoE3e+rePbVNBsd4AxdTX2Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75p3zk3YWPGUfU1lKxHW0BvhHHqWnJvW9cHYFMtxKjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:18"]},"IP":{"Case":"Some","Fields":["162.251.117.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fcd5:8:0:1602:ecff:fe6f:1e94]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qMjOIp4vAA7Ko944N1F/2GDqUP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3PCcuGpgUujOkaNL+G+Z5/E2tolKRZCIBxafI2s+A3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:54"]},"IP":{"Case":"Some","Fields":["151.80.47.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raphanus"]},"Identity":{"Case":"Some","Fields":["qMgiIKEZblKiFAz06J359nL9mwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CdBg/CD3/LdX/JhO+3R771lkBCakhXl8tK3IyDNqHoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:04"]},"IP":{"Case":"Some","Fields":["149.28.247.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Madeleine"]},"Identity":{"Case":"Some","Fields":["qMWKd2khuJyE4ITWVn8aKwOYBeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PncyC9B5fjNoyE+LSSGGfQu63lE1FQ4H8Fk11NKPogs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:49"]},"IP":{"Case":"Some","Fields":["82.66.192.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:173:7840:216:3eff:fe7b:d385]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex88"]},"Identity":{"Case":"Some","Fields":["qL6xUPS61RvGMJ7ZO/1AAipyphg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Y3h/+wnbjckfuJCFKHV7lFk1vxSgNOC6pZFMzoYSWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:43"]},"IP":{"Case":"Some","Fields":["199.249.230.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::177]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex83"]},"Identity":{"Case":"Some","Fields":["qLiHs9yLhk4vC1j5KwwQ1JO1r/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qjd2iH//VRMhqMUQHvX0gbiBUWKgLST7DyLvVRZQW24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:35"]},"IP":{"Case":"Some","Fields":["199.249.230.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::172]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex70"]},"Identity":{"Case":"Some","Fields":["qKxcG6CduUEj4ruZCYS4qJ4olrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzOJmC1VwQbuGdAc26TjXKYCXJnrMfSSpLzzdpBRlLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:45"]},"IP":{"Case":"Some","Fields":["199.249.230.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::159]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["qKdL2IUWKyP7pdti+/HWkZxhq1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3a3OVyWrEkokbjx89NVG/O1M8iiElYB+89U8By1aUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.63"]},"OnionRouterPort":{"Case":"Some","Fields":[10063]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::63]:10063"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["computel"]},"Identity":{"Case":"Some","Fields":["qIdOLEX0RdukYqkU7Y068EVzT/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7h98HNBvEGcDgBu1rbovgTAJJ42n6O7uDryGmH5oKe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:59"]},"IP":{"Case":"Some","Fields":["109.190.177.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saltishimporter"]},"Identity":{"Case":"Some","Fields":["qH6uLwlQlVaPz06D/DwOVPlGwzA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u6Qm8SFHfcPi0/6HQkzHVrEpGDfqj1TJicM+O9Yt2mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:38"]},"IP":{"Case":"Some","Fields":["37.123.143.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM08"]},"Identity":{"Case":"Some","Fields":["qHW/uDvYkfkuruAuxPxDVgP+j1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S37iB4yIq6bzu3HcqEikCJwpkRR1ASI9QaoNIYW3V1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:29"]},"IP":{"Case":"Some","Fields":["185.239.222.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM16"]},"Identity":{"Case":"Some","Fields":["qHJNPb07Ni/iWlX9gToVJh0GHVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3qQ6hDYCzoqY0g7QzpaA1pqiWMu4efzPRcnGggBL0Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:07"]},"IP":{"Case":"Some","Fields":["185.239.222.255"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex51"]},"Identity":{"Case":"Some","Fields":["qGgwMSaYeQLVHytvBt2QA4xFsRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/viDJjfaXvHNZXUhQ8c8ZN4OVPacGAfuS04Mw99zr3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::140]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glacial"]},"Identity":{"Case":"Some","Fields":["qFfajzco3kR1v82G2RNR9eMCs98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9rkfUt4knDTmzz9/0wNIykZiSHLOZtRTBIquxcD5jks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:24"]},"IP":{"Case":"Some","Fields":["62.112.10.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TransRights"]},"Identity":{"Case":"Some","Fields":["qFA5A/l/8n9dHDyjiBcyn1gZJeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QSAHuTbXiq60sSuGTBflMQP4v8knGODkRE5R/FB0lhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:11"]},"IP":{"Case":"Some","Fields":["82.64.238.84"]},"OnionRouterPort":{"Case":"Some","Fields":[1930]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5e4:1d0::acab]:1930"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorStar"]},"Identity":{"Case":"Some","Fields":["qDgpa58BqeJIe8OiXV5fL7ipefo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ETKjShpFZB1NOu+RWw/XLmHIqvfuG9GuKLBtsob1kE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:36"]},"IP":{"Case":"Some","Fields":["151.20.222.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pilpur"]},"Identity":{"Case":"Some","Fields":["qCx5KF2xLoKGSx86QmOarhEDB8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vxtckkem7qR4h9Sh+mM5pWqsFAiUQUo5CDxCNFtRq80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:56"]},"IP":{"Case":"Some","Fields":["176.31.151.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jbrelay0"]},"Identity":{"Case":"Some","Fields":["qCxOejPcQT7GMKsGqubz3NqX8UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8YlTU/yANs8NwH6qdL6ps5ojUsnh8sJqZcP6uUOESs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:24"]},"IP":{"Case":"Some","Fields":["79.254.119.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowFunPark"]},"Identity":{"Case":"Some","Fields":["qCrzQtVI+kAARi4MIjAHQhD7ypo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NGvoHmlY1U7J3XaWjRgVrFQwZrSBIEF31YRyWms9zGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:29"]},"IP":{"Case":"Some","Fields":["103.234.220.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["STSLin"]},"Identity":{"Case":"Some","Fields":["qCTo7ZNGDjK6rIFVvgzKQ+BAi/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Svn2O0k5reqtUbuNmUUPTof0bRJe61lhDuwYJ84boJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:31"]},"IP":{"Case":"Some","Fields":["188.166.186.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::1063:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oszkugay"]},"Identity":{"Case":"Some","Fields":["qB30uwtfhgYb6/wt6URkA5SZQ+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DlvYrUiWvQhb2csv5ig6WqqPZC1G6gki3QDs7v/I9/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:13"]},"IP":{"Case":"Some","Fields":["83.230.40.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["huebing"]},"Identity":{"Case":"Some","Fields":["qBD/Hlx5g9Q7NRdQZHknS12lrHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hXPbqAK/VRj6E8IVpWc1Lxb+fchBMuJwU6JIQIBdTow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:14"]},"IP":{"Case":"Some","Fields":["185.227.82.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WooptThereItIs"]},"Identity":{"Case":"Some","Fields":["p/gKt+BMAATo3goAN/jtVCkkWL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2AWowAMmhq4rZ8TYFlMzOTqlPGMTUoBRjwSV1LSpWsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:25"]},"IP":{"Case":"Some","Fields":["149.154.157.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ted"]},"Identity":{"Case":"Some","Fields":["p9F1l6Z/CtZO4fOkFKCtygCAF0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0+Rq21zrcIyKeB+Pfr976XPYD2xkcSB0OkkIFNNcCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:36"]},"IP":{"Case":"Some","Fields":["185.217.0.85"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute13"]},"Identity":{"Case":"Some","Fields":["p8frKg37Lj//wSt3VnB0M91VD54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gdw9gPJAiHqnOSbavkRgxxnnHEzSpt34DOWhENsiMtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:46"]},"IP":{"Case":"Some","Fields":["162.247.74.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor05"]},"Identity":{"Case":"Some","Fields":["p8W0DsD7UXXohAdd3IdTHTU/Z5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0LidNflSyzw0oo2JRS6BBdU8or3+vqLGYvciLCgN9+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:44"]},"IP":{"Case":"Some","Fields":["178.63.19.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IceMateria"]},"Identity":{"Case":"Some","Fields":["p61ZlGiWi/Nhi3aTDhSoe0gXODc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FC8oiJfPNc2Zjx2YQe7NsSp6azF5zne8IJD++Efp3xM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:20"]},"IP":{"Case":"Some","Fields":["194.76.227.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dominos"]},"Identity":{"Case":"Some","Fields":["p6oyyhDhvtoel2pln9lsqZwthv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMWKYvSylrwvqEa5+VbyoRXydQoLQ9h1TljD/v+rmeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:46"]},"IP":{"Case":"Some","Fields":["5.254.118.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andrewhack"]},"Identity":{"Case":"Some","Fields":["p6h+wBAUyi+X/0lkXcMa0drr/SM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EE9Z1GXC+GA4i4TAFWm9vy0dhSO4YAWcQx2mbePJpSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:47"]},"IP":{"Case":"Some","Fields":["195.34.103.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Beppo"]},"Identity":{"Case":"Some","Fields":["p5n99f8T0fZV0VOmuoaezUP11ws"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmoehTFrlizZMN/ixZCg5RqMFzQ629WY7WeG8AFEFKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:45"]},"IP":{"Case":"Some","Fields":["79.209.169.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HefeweizeIstGut"]},"Identity":{"Case":"Some","Fields":["p4mkj8sng2qWUsZm+UBUVhA0RyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ZlFgQEAGe5Up81X4xyNN4If2Wm5g3VGa7fxRLtdfMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:06"]},"IP":{"Case":"Some","Fields":["80.255.0.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.4-rc"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["laeviculus"]},"Identity":{"Case":"Some","Fields":["p4Ny7GnWCHerNPQSj+NJmljdLDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yCNwUje+kogLbIozXyPoBjp3i6CmYl3EShDLSV+tWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:30"]},"IP":{"Case":"Some","Fields":["51.15.77.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZwiebelRouter01"]},"Identity":{"Case":"Some","Fields":["p4Kk+srTzqvetRq+Q4W78CP3Od8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3W2bdV4ujDnuZBvf3ochxntOPxt4orJQgNRIxPfbkuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:21"]},"IP":{"Case":"Some","Fields":["212.227.148.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:190::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doboz"]},"Identity":{"Case":"Some","Fields":["p38WprMTHq211R3i+NCRT3Aq01c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJo83umIjtAmmID1+yMqC82ql69hK14lMhwYX5w69ps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:39"]},"IP":{"Case":"Some","Fields":["83.255.155.80"]},"OnionRouterPort":{"Case":"Some","Fields":[49030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jugendhackerassange"]},"Identity":{"Case":"Some","Fields":["p2uDmCk94Y73ZsediY2rHelYlJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RUngmDetga/yHblRjqse4fw4ApEYLze8DvxqL9VC8qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:09"]},"IP":{"Case":"Some","Fields":["89.58.0.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:fab::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["p1lt3cVw75nYAH9stj4+4mw/rOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1hAu2pukk0fwEZuDF5Wr4NmzR9hK4bP31NgBCB8iRGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:24"]},"IP":{"Case":"Some","Fields":["194.32.107.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:172]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["p1K4OsiHRXXz6qrnrOzQGp5ebtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kQub62EI3k+DodAHy7zMig49uIqvNfIGpijhtyw1gVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:51"]},"IP":{"Case":"Some","Fields":["23.128.248.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["p1HYvuIiVkt7plf3S2ZYg2/xruo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAocgKTyJUmVcczucRmFK81u1TlQ9la6PaepZ28ntlw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:53"]},"IP":{"Case":"Some","Fields":["185.220.101.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raptoractual3"]},"Identity":{"Case":"Some","Fields":["p07Otd68R0EmpdH+7kHML6o2WpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w+qUjTHFHrkZGzbda5QYB77r8nDoqs5o+AtFhLqnCUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:41"]},"IP":{"Case":"Some","Fields":["192.184.162.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AktionNordost"]},"Identity":{"Case":"Some","Fields":["pz5PnaCSgBenHLH/3yBGNq+aGI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EXC+Vmc1OoD8W/8+dnqpoNX1X2z/+jLQxtrH1PSUMsE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:13"]},"IP":{"Case":"Some","Fields":["95.217.121.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:3656::706]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv125"]},"Identity":{"Case":"Some","Fields":["pzeKIVSDxq2ZaK1QXaFFT34pR5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwD2AHwAfCl5A9TTHtSrtvzjSfZNoUzICHse6c8U6VY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["192.42.116.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5525]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei12"]},"Identity":{"Case":"Some","Fields":["pzF2c7kjtZEGYgT/0pmrLEFQtr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZHPeYg1p0Ox934KdKj8M/m55P+EulA9tIv4voeTGWqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:25"]},"IP":{"Case":"Some","Fields":["37.120.184.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:512:8475:54ff:fefe:912d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maibrunn"]},"Identity":{"Case":"Some","Fields":["pyzXF72gN0JTfo5DGYC8GG3lZ3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmjaobSsigKpr9Sm3Zhq/l0X6wuxbyYVO/JccXkGnu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:02"]},"IP":{"Case":"Some","Fields":["179.43.188.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0d9d82df278e4"]},"Identity":{"Case":"Some","Fields":["pywROmRsMmqbBuwGF1EFYjpOR6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uggAN0RQptJR6gARpIVqPNr05AcRDs6UToYNtEX+TA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:20"]},"IP":{"Case":"Some","Fields":["95.216.184.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:22bd::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockerTorRelay"]},"Identity":{"Case":"Some","Fields":["pyW0Ibn0z+5obgVrgaay+Z/1Opg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wAfpHbB2WZRTjXBU3cb3QVtqw8RvFYOKfad0D7Ji4U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:42"]},"IP":{"Case":"Some","Fields":["158.101.173.50"]},"OnionRouterPort":{"Case":"Some","Fields":[1234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedEllsberg"]},"Identity":{"Case":"Some","Fields":["pv/RAbluhtlbTM8duZ0jG/fNFss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mOv01Jd24+z30vCh/DfmslN/F8op1dup1JcP2G7gRLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:56"]},"IP":{"Case":"Some","Fields":["23.154.177.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenVonMecklenburg"]},"Identity":{"Case":"Some","Fields":["pvDpaeRhkcq8ZXfUCWTu/0n2RuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dh/2J317yxIBlTFWL34hpAGaYupApp9lzVpt17Kvxrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:10"]},"IP":{"Case":"Some","Fields":["31.19.10.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8109:8900:21a8:42b0:34ff:fe36:d87]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dewebit"]},"Identity":{"Case":"Some","Fields":["puOjxs6WLpF6EuWGrnUIBYmcEXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRtFkkPDFqgm2CyOqyZpCCa/1myPM5Oelv3iroH/Jes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:57"]},"IP":{"Case":"Some","Fields":["194.59.46.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["severepactrend"]},"Identity":{"Case":"Some","Fields":["pt7HW3qMSFcvUjzp+yWgceBqLjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BOyEDJsqMj1BF+Bx2Z7dDLRwnMgTwwWYcW1oAQVk8g0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:45"]},"IP":{"Case":"Some","Fields":["142.132.151.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:27e5::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["formia"]},"Identity":{"Case":"Some","Fields":["psjzWvE8ZH3KhCDzhAPf3diFVv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1thgzgow6GYX+1EsLzOLRJ2d6GeveTPjtJvevM8TOXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:46"]},"IP":{"Case":"Some","Fields":["95.216.184.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:288e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["OwlRelay"]},"Identity":{"Case":"Some","Fields":["psO2TsjuINd5h+vF6JTKbM5LUpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BX2cvE9eQAnKG+e4B8RrwNquqUSg2dzuqw13eXg8L9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:22"]},"IP":{"Case":"Some","Fields":["45.132.245.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:48:57a:a875:45ff:feb5:8541]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATLANTIS"]},"Identity":{"Case":"Some","Fields":["prvTNpWk48RUW6NwYFpNzYfZi+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8o1dqKToCWO2+/FcUcp7l4CK37uEJbU1fa8QKJdMrVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:17"]},"IP":{"Case":"Some","Fields":["188.68.224.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HatOfTin"]},"Identity":{"Case":"Some","Fields":["prkwKG7ZtyM/lhsdsOD1ye2Un3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WIpjJZzPoKIChe2GvgBORYzvUQZ1gRvkC5Id+pp1HqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:06"]},"IP":{"Case":"Some","Fields":["185.119.119.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:14:63::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["apx2"]},"Identity":{"Case":"Some","Fields":["prBSHEwfuR+2Y5iq1SOtdz6C534"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAiKjEIgWqW886hiBs2Sx/gs19C+KHfBhQhN3TaTp6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:54"]},"IP":{"Case":"Some","Fields":["185.107.47.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk6"]},"Identity":{"Case":"Some","Fields":["pqqUtAB6DikZstqOzyz6PKF2GhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["juE+age3/aMrbKDA71HSgAN7Wqs/9zYwdvmtnTgLUxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:36"]},"IP":{"Case":"Some","Fields":["62.141.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:32:4104:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thor"]},"Identity":{"Case":"Some","Fields":["pqRaB8OvTzf2ra+1vO5+QtRKOJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b29eUyzqQDDZyQGm/sjvbqIv54V3LQ8RQqHMbIWs1TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:54"]},"IP":{"Case":"Some","Fields":["83.137.158.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft8"]},"Identity":{"Case":"Some","Fields":["pqNhwMwAMQOpQ+MwSyEgNfWjj9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E+B7I6lNcNFJOtgRhdJYaZQnkYe4xrrgRFCSHyryxSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:56"]},"IP":{"Case":"Some","Fields":["157.90.246.152"]},"OnionRouterPort":{"Case":"Some","Fields":[445]},"DirectoryPort":{"Case":"Some","Fields":[82]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:5fdf::1]:445"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["H3rmi"]},"Identity":{"Case":"Some","Fields":["ppDGqoECwCfSl680Ab/haRjM96Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIKwqJ1pXmO8VpIbYVPuMp6F4sPeErWc52IKqHGxkKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:54:50"]},"IP":{"Case":"Some","Fields":["91.45.176.132"]},"OnionRouterPort":{"Case":"Some","Fields":[23]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange033de"]},"Identity":{"Case":"Some","Fields":["ppAj9d7KUxG0CO1eoe6GEKHuimE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1azyp9HnDue/SUt1W9u9BTjNoI4WlN84hVnwbaCDyEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:51"]},"IP":{"Case":"Some","Fields":["80.92.204.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["olabobamanmu"]},"Identity":{"Case":"Some","Fields":["poCX/pfTBlsab0znGH11P4uFE/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["80Nwzjzk++/jMySL3srr0dC4hSiW5cgLo8+TbSNNETM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:35"]},"IP":{"Case":"Some","Fields":["51.15.40.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:25d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["pn4ELTldVOC/ARKjvJCSQDa+KWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ow2DmSn9p0C+OFk6mFaMMQeuvOGpg0fWUhr7LlZJg+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:46"]},"IP":{"Case":"Some","Fields":["185.220.101.198"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::198]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu2"]},"Identity":{"Case":"Some","Fields":["pm5Xgv5gl9KCQERGZ3b+kSrv2Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZJFXGl5Rngwb5zwQZQtrexrvCbBOkkh4zwNtgD3mjLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:02"]},"IP":{"Case":"Some","Fields":["209.141.54.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:274::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4punk7r1"]},"Identity":{"Case":"Some","Fields":["plnqOnpTqnOgzM2gqb0t2VL/CLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Sb1MPaFMHKn5kjeVif4QQUgvj2qoxgdvdnaYbi/NDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:35"]},"IP":{"Case":"Some","Fields":["185.207.107.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnotherGate"]},"Identity":{"Case":"Some","Fields":["plkdYPFBHAKt+arIxB9JCA2zNus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o1c4AP2GKJYDuJYdhz1S8FyCUZZBFPwoNDasKgOuOuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:14"]},"IP":{"Case":"Some","Fields":["51.91.58.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::4902]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra65"]},"Identity":{"Case":"Some","Fields":["pi2Pd3Kmx23Qf0MYEM5oaC3N0tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/m/FQKTB4FphxhY7drgarOeIeDCvVhZchMGTfMnGwOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:08"]},"IP":{"Case":"Some","Fields":["104.244.76.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elias"]},"Identity":{"Case":"Some","Fields":["phtWpQ0T3CnbsjxqAz+j8MV0IM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iniqyiVY+5OWexbfzSPYKUU2LgbB6pxHxo/3hw7SVO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:00"]},"IP":{"Case":"Some","Fields":["144.217.80.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["comasmr"]},"Identity":{"Case":"Some","Fields":["phnlq/CrBTOSEYeKKJz5OSIzwkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RwOnbcGI83oUg2TOsEqpSIpokI5nUv937GpFuWy4OQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:00"]},"IP":{"Case":"Some","Fields":["66.85.157.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Montreal"]},"Identity":{"Case":"Some","Fields":["phiy6VCTomg6ZmNje36tDVgK6uU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xqFNz7SiUxP4og/ooVgQX3KQmTS07CKsLGh5b6A+s7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:34"]},"IP":{"Case":"Some","Fields":["104.152.211.147"]},"OnionRouterPort":{"Case":"Some","Fields":[4128]},"DirectoryPort":{"Case":"Some","Fields":[41289]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:1c6::1]:4128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boing"]},"Identity":{"Case":"Some","Fields":["phJOl4fydRTPiNAVuJXVaPsUmXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntgAWI+q7XYNr3onKV+C+SACC9k2KHmitaqnT3wYnnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["13.58.202.28"]},"OnionRouterPort":{"Case":"Some","Fields":[25555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["phGvJszRDbQ0InXihL++qBOEIWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tYjtJGrvIfLJOWeizJKX04pNWShhzE9O2GPYt8GKI7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:46"]},"IP":{"Case":"Some","Fields":["176.129.156.18"]},"OnionRouterPort":{"Case":"Some","Fields":[10221]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adlon"]},"Identity":{"Case":"Some","Fields":["pgr6b/su645KTFMfump4r1hqrLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g5MbVs0M5SD58DIS89mBIDgIJRl3ue5hVGWjCcDGug0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:25"]},"IP":{"Case":"Some","Fields":["185.73.240.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4740:10f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk2"]},"Identity":{"Case":"Some","Fields":["pgaX/zg+7uLohQXdTjBcB78yaxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a4+1cBSdywqrK7ZSVvAqH1eaBCHQkr7ADrs3b3ksPtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:02"]},"IP":{"Case":"Some","Fields":["80.147.33.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt31142"]},"Identity":{"Case":"Some","Fields":["pgVlOBZsXrUOEnTK0glN/n4sGno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KnYFEyIXr9IHy6JDatiw4Kn/duBOCuBsLPu0XPBc9i4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:32"]},"IP":{"Case":"Some","Fields":["185.245.60.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9rain"]},"Identity":{"Case":"Some","Fields":["pgQIbq6Dh3T4CYEZJaIj3P27HRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XStLTsWfuOug9na/1Dgz71So6LcYkM7b3WmCeZhIPFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:26"]},"IP":{"Case":"Some","Fields":["5.9.56.12"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse09"]},"Identity":{"Case":"Some","Fields":["pf9gzqyBVMhRrv2tQLQhz8lyl6Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EO/Fgioj1hwjm15LVqB45nhHsavIrudVW71dFnZZXUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:19"]},"IP":{"Case":"Some","Fields":["46.167.244.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["peQvGjr6lIp/L9sZVKTPbGSJ1Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUdtnErbaF35GH8OdiyvDjg2wpgE7RrGy0hiH/bbwbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.243.218.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NiceRelayGuys"]},"Identity":{"Case":"Some","Fields":["pdqR4KGhHJgWWt4PxttdZ8wod2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/xbAvu9aWT8fh6pedg6E6w5ohxpfpdACThjlOfNR00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:44"]},"IP":{"Case":"Some","Fields":["65.21.122.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:4ae2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pddPb19wT75qJag3D9u126JY9z0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kOMQWC8U5XXm4u7bkvMY+oVP6yrQ9M/KKAJ68G7yr60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:05"]},"IP":{"Case":"Some","Fields":["23.128.248.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::f477:54ff:fefd:dcf6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pdKMuHyT0xyq7crmT2+mPfQaFTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c46+bD53lNCi9OL1vglhGhjUNEmzeHLsEoz3xvm841c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:46"]},"IP":{"Case":"Some","Fields":["51.68.143.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5126]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["pdIvZrXr5mDUyB+BqVYCLWUMjL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8GmhCHa48OzsOU6tVohXvLzNqo/HE4H5D25loGNkyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:44"]},"IP":{"Case":"Some","Fields":["23.128.248.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::52]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH104"]},"Identity":{"Case":"Some","Fields":["pcWtxs6bUr6GDSVy/0hWncniTGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OALuB6Mlr152W2t7cBqR6WEjSgyDlo+/k6Xbligmr9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:30"]},"IP":{"Case":"Some","Fields":["192.42.116.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["pbvCxhsfawkJcBHEzla75X3lrJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xy8yWwPYqhdzH0MWY8fxrBgqb8ulYjVIx/0JBdObG88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:44"]},"IP":{"Case":"Some","Fields":["5.45.102.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demonteal"]},"Identity":{"Case":"Some","Fields":["pbFdWQwgdEa/tvc5/KZ96MF29DE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mEomqMusb18H6Tbbl5DZE3cSgUoKxmAsTDZ+qVRewU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:15"]},"IP":{"Case":"Some","Fields":["138.59.18.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thesistersofmercy"]},"Identity":{"Case":"Some","Fields":["pZv0rtI9WhFMxWSIJtWMUUe2LR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6VEFyp2saN9tBEKyyxHQZi22H77hhpjBtytNAhrhCIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:45"]},"IP":{"Case":"Some","Fields":["37.252.191.190"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:10:190::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARDIS42"]},"Identity":{"Case":"Some","Fields":["pZrYT5Ky5aduv+O+YtOyivm/0Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GciOyO1BBKjcPjFAdb3HI8kvZw/0ZkTt4k5BrgJvQC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:46"]},"IP":{"Case":"Some","Fields":["217.160.255.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:28d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p20sfme"]},"Identity":{"Case":"Some","Fields":["pYxRe1Sidl3pAI4PJGypYUBkpD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RovJ2vXvmlUxAuteO7SUHn1/G9jn+w76R1mB60qfivU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:18"]},"IP":{"Case":"Some","Fields":["91.244.14.219"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torment"]},"Identity":{"Case":"Some","Fields":["pYS6bdOPc9ugcwAYz3imXuH31JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ExSU5fnMGybLLsbk/mDldhAOLciSStcuTkdlsMYG2vc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:39"]},"IP":{"Case":"Some","Fields":["185.182.194.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FarleyHD"]},"Identity":{"Case":"Some","Fields":["pXhZTsby2elnmcVI38CJ2rPC+50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sqiSKHPeIMhl5H1knmAR+BOvcx0wf9C+ojg01JHBs84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:51"]},"IP":{"Case":"Some","Fields":["102.130.119.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt35265"]},"Identity":{"Case":"Some","Fields":["pXb0GAbi0cOE1h/60Y5d0nj3xBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DVp5Z4R5sI+L7gnrZZ5oUlFcsFnoVyv4dVoCpiyQ/HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:51:36"]},"IP":{"Case":"Some","Fields":["185.245.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r4"]},"Identity":{"Case":"Some","Fields":["pWs4RdKQeRyya86J/kzgjPfciiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0A5ymrwlDT1lhN1g/i3w749Tr663PcpYQ2Hl0xaGB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:02"]},"IP":{"Case":"Some","Fields":["216.250.119.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pWoBIKIVV4MgANXGj8194I6Co7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l1t9fzMBjuhPzzwzV3CruetGlJHDqf9n9C6fgNtT/Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:26"]},"IP":{"Case":"Some","Fields":["37.191.201.85"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe01:344d]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit2"]},"Identity":{"Case":"Some","Fields":["pWUooMAq0nk7a5zF498gHQLsIVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1SXAKL6c90YjnRwODH/++wCg8/CdSItrEb3bk+SMqkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:39"]},"IP":{"Case":"Some","Fields":["173.208.163.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3:223:8bff:fe8a:8e0a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lc59relay"]},"Identity":{"Case":"Some","Fields":["pWIFHdEz+KoKy1y4t8oC2+qUBbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wl18Tg/WKlkfI48sczdIaHl29lAQFsm5XeFJqHoKH7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:08"]},"IP":{"Case":"Some","Fields":["97.119.224.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra77"]},"Identity":{"Case":"Some","Fields":["pUv1DFdK7v4O4+fTsrDx+qaVQUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qpvUPPK/nflB1JUwrGtg/CKq2ilfbq31x8P90f8xGLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:25"]},"IP":{"Case":"Some","Fields":["37.228.129.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["pUnlf8KgYPogBRU35nOLPtW5hGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUGOV+crJIvucfhsG2XxjNfAl3QAirVm7bw93N75oCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["45.154.98.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waglula"]},"Identity":{"Case":"Some","Fields":["pUfRceLk1LVwFB9MnO8bKnOJ6tA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZuSt7fP16nKdADP2LtfpSUkJjMjLNzTlSHlfOiERSrU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:39"]},"IP":{"Case":"Some","Fields":["92.243.20.101"]},"OnionRouterPort":{"Case":"Some","Fields":[403]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:45:216:3eff:feb7:79bc]:403"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bkjk"]},"Identity":{"Case":"Some","Fields":["pUJN7t1akTFG5xd6ee5I+vfLhho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7sNH7zt3+oX4ks+1lfDCyVOdAP9onxTkGcEBp1Rt014"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:50"]},"IP":{"Case":"Some","Fields":["23.82.136.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alittlehelper"]},"Identity":{"Case":"Some","Fields":["pUJD9jbk/LL/WjIRLxJvvznQvWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xkz1GaWkTGsSi71LI1diMFXwq/M9bOHVETCC01A8o3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:53"]},"IP":{"Case":"Some","Fields":["79.205.254.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["pTclpgyaUFoGZSX0M/ivQvrMRP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KqQMTVWcvl9D00fqnKJUnJrhhtnwwR4w4wC3iElkyyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:07"]},"IP":{"Case":"Some","Fields":["185.177.206.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::131]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA02"]},"Identity":{"Case":"Some","Fields":["pTVpyzM+mJWkSVRwDMB9ITWAFRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XRv+od6SGItCwSeyEY9XPKVsCDWiTP1pVs8NgQ+7UhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:40"]},"IP":{"Case":"Some","Fields":["2.56.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9006]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weirdoo"]},"Identity":{"Case":"Some","Fields":["pQ8CCdDGhcjnfJJEuN744wzM2fU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/BBjv3uLe0tfHR5YMtFqLzRqdy5KoqZwZLUbU7ow7RA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:43"]},"IP":{"Case":"Some","Fields":["80.71.138.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yayarea"]},"Identity":{"Case":"Some","Fields":["pQz6ByWOPOp7BvybYkiiV1ZSh/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9r5mgdWV3OH8IEQlxKMJ36mYsyV/nVVmQDrWe/aS7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:35"]},"IP":{"Case":"Some","Fields":["64.4.175.33"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f598:f001::33]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOneRelay"]},"Identity":{"Case":"Some","Fields":["pQvFjDLTcWjAQLUL6Xf3903YFIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UHpVhNPbBE5UrKqorZmzVrqal3wInspv38ISbLZXzB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:10"]},"IP":{"Case":"Some","Fields":["152.70.175.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0168"]},"Identity":{"Case":"Some","Fields":["pP6aH2p+tqACofPfoxOkM5DiLG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiFIil6iu7kxy7J8GxJ65jbNBxGcf73zgo9fxkN4I1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:37"]},"IP":{"Case":"Some","Fields":["185.220.101.168"]},"OnionRouterPort":{"Case":"Some","Fields":[10168]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::168]:10168"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["pPQq5l8RY0xCo/OVLnGfRwkb028"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ev94QSA5qgF4PtaAQ1GR24sXqHh0H6vpxbeFEGeGjDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:55"]},"IP":{"Case":"Some","Fields":["188.68.32.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:42:896:37ff:fe75:d532]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrocks"]},"Identity":{"Case":"Some","Fields":["pPEdaT+rbpSbK3wYFTw/eYmJYAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2gHSV09wRgUKrG37jpc3IOzAnKeOrVBpjYrfUv/0uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:36"]},"IP":{"Case":"Some","Fields":["194.55.13.49"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[587]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nashorn"]},"Identity":{"Case":"Some","Fields":["pPD1Fsg94RspA4S5tKTJKKeO06U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/8TSpuoP1hu0F1BZ+R9JtQsgr90c9mP2jrmQjzakGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:18"]},"IP":{"Case":"Some","Fields":["109.70.100.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::67]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torototela"]},"Identity":{"Case":"Some","Fields":["pOdEENg3Be7/JLwmXeKy/zm9pW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdSEhoWi49AqgYGo0JObKwA1+4NXLG3k+PGq0y8dWU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:22"]},"IP":{"Case":"Some","Fields":["79.21.93.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit7"]},"Identity":{"Case":"Some","Fields":["pOZfKUle0REaaaEZM+jspwsBZ5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlCMehbC8Aycc1/2C5PG5U0CGbfz4kLnbYJrbWinoTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:31"]},"IP":{"Case":"Some","Fields":["185.129.61.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer06"]},"Identity":{"Case":"Some","Fields":["pOR/CLjVZCjfdrF+3Wc4vLw/Xvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rmEev+VCQYTsctaLB0DGF472nUQMC+v2UwAqqnlvGck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:15"]},"IP":{"Case":"Some","Fields":["82.165.185.89"]},"OnionRouterPort":{"Case":"Some","Fields":[4492]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse12"]},"Identity":{"Case":"Some","Fields":["pN4/wazsN2f1xASbzvVzF+ewWDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dfAEZHz+jRPKlykdQJQXs47KTcUNlXbhBEgmdypFCXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:56"]},"IP":{"Case":"Some","Fields":["82.220.38.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kiwirelay"]},"Identity":{"Case":"Some","Fields":["pMg8K+tPGzHUDoDVUkxmoRfXfFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W9lF/h4kvDz5d80V3Gd3GhxQScGrcooCbW8LwFbKQxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:41"]},"IP":{"Case":"Some","Fields":["51.81.209.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::a02]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lickitung"]},"Identity":{"Case":"Some","Fields":["pLLypR9z1AhTD6bIr2On+v/aoPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MUx1gaE1vvfHya89BM3/aan9ewYpwdPBKUWvRKUQ/9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:25"]},"IP":{"Case":"Some","Fields":["102.130.113.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["pKeeK4KUqiVytGxcdy4Un4T692M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YWty7eeGHWwNSFHG+apfmIBogxzVKDjgtB23Nc0wTj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:09"]},"IP":{"Case":"Some","Fields":["104.152.209.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal4"]},"Identity":{"Case":"Some","Fields":["pKYUF32JyZMmw5VT97f6WQm6Sx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QA8ATFRHXrqPQoF5QChQqo3BWH6nd7MhUXx1tMF8toA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:29"]},"IP":{"Case":"Some","Fields":["141.147.4.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8003:db00::705]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex44"]},"Identity":{"Case":"Some","Fields":["pKOT/vSGQJYarOktBBk0tVNIzvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZxmBKYVHEGVsDWjV6yHU+l/QoWRFcLZnVBmhbOuSy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:39"]},"IP":{"Case":"Some","Fields":["199.249.230.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e643]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9rijk"]},"Identity":{"Case":"Some","Fields":["pKJe2riA/0IA9MITFvO54HLJ9GY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vf6hv7Rdoju0e68HCmeZj2TyYLG37SXrjeRYjKAmpsc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:19"]},"IP":{"Case":"Some","Fields":["194.126.175.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["pJ+orx4U4yOa1+MQvvb+KHXM+wU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMEmumlvY+QoWuS8yt4fufDoNNoP0Y0WGWu+8OItSlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["173.82.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hp"]},"Identity":{"Case":"Some","Fields":["pJFRCDKXqWbFGIBSt7iuvSDzHS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTBlMzWegRKtfpuhkWu//Z1uffWxqbZhxUk7eOkYdgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:25"]},"IP":{"Case":"Some","Fields":["104.244.74.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f625:20:20:0:2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trurangers2"]},"Identity":{"Case":"Some","Fields":["pInTcHClCB2BTB8RITnu8N3AOkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+7abmo6cPBVSiEfXfxz88FWh94au8MvPtBYOJYcdmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:09"]},"IP":{"Case":"Some","Fields":["185.175.158.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipenburg"]},"Identity":{"Case":"Some","Fields":["pIDYyfmxES5Hwk4z2sBBnK8agho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bddW8pkG5NIiiX2PJ3US7UbABFF8nh3W1l+FA4uOkI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:05"]},"IP":{"Case":"Some","Fields":["77.174.164.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:a46c:5d12:1:7e10:c9ff:feb9:ebc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xcc"]},"Identity":{"Case":"Some","Fields":["pHyODWTnM+3Iy0QJveB9s8DtKKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HxiYU2qkmdKqHI2/lFMbCk2iEdoqKgO7mka1fj8i+VI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:51:03"]},"IP":{"Case":"Some","Fields":["185.183.159.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:3d:1827:b1ff:feec:f6b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["testtesttest"]},"Identity":{"Case":"Some","Fields":["pHRGr/eIts6Qo5UJwjpbTjpzIMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jUn6Rk5iftqT3eGoKNQGLgVBJwQja6afszd9TuAhYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:09"]},"IP":{"Case":"Some","Fields":["46.41.148.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman1"]},"Identity":{"Case":"Some","Fields":["pFfkL/B+wXr4wpijQKh0NKgC7ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HzmTl6zq0X4HNJtBlPDiXTx2zHgUZftYY2R0sQtfi0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:40"]},"IP":{"Case":"Some","Fields":["85.204.116.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:204:c66e:a519:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["pFZDP1QTw0nNi82VaxCRLqbE4F4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hS+nhBUZa9oIYeV9YL7PtLnaUE69Pe/14cm7i0D2h2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:06"]},"IP":{"Case":"Some","Fields":["74.208.33.181"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vrienden"]},"Identity":{"Case":"Some","Fields":["pENucLjX58VILvzFXVPTnsaukF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJcAolnNyN7WiGJ32Av8baNuIsJYrXZnzwZFr15htf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:27"]},"IP":{"Case":"Some","Fields":["51.81.56.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thepastatorrelay"]},"Identity":{"Case":"Some","Fields":["pBjZGVZR2iSw9R4o5Ukj2uK5wwQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XKfJkaBQ5c2CzgaJ/HNb3pvD4inEyV1aUKoff80gcvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:14"]},"IP":{"Case":"Some","Fields":["164.90.148.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mcnulty"]},"Identity":{"Case":"Some","Fields":["pADPg22jUa3a2bo1DBq6NQJkpOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdVCftwHALxURGpRq01JaidyDNuTe5cRWV3Yc5+vmII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:57:37"]},"IP":{"Case":"Some","Fields":["51.158.165.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:2202::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oranet1"]},"Identity":{"Case":"Some","Fields":["o/UeFg/3jpw8TRJ7XLQ2gIPQ/pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kq72wnN0sKPWhrkOXryrcEly1fgdPc1lpx6HB8XXqzg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:50"]},"IP":{"Case":"Some","Fields":["132.226.217.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crabshack"]},"Identity":{"Case":"Some","Fields":["o91As0inXzlMja8RrKEG7PcxaOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["grNPBvbREShVnJksHxHk4RyA8G9RJ1w58a3eo/XhrZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:25"]},"IP":{"Case":"Some","Fields":["83.171.236.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2mproc"]},"Identity":{"Case":"Some","Fields":["o8L4gcO2dNPUD9KSC7HeSVuOw+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/DsPomlpY3hTaTrUwlHRKHqloNQlGG72dY/5xGP1/vM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:21"]},"IP":{"Case":"Some","Fields":["173.48.193.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["o73Orhjb/1k8w9ovIlVQfax2jzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hgnq64PSuIWmXzqtuy+PGlSwRyT6V64VKklDwO7L97c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:23"]},"IP":{"Case":"Some","Fields":["45.55.141.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::14:8001]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["o7USKkU35NDw2FKXry6zEV96FII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5h5XC9YMoV3HnUNKdIWwkbHECI200bWrywXhTRP1kJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:13"]},"IP":{"Case":"Some","Fields":["151.115.48.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isthisthereallife"]},"Identity":{"Case":"Some","Fields":["o6+97jAjjkSJnJ+LdmbRKwnI7jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RAQ1RdzKs9pQsN28JkmV5Bghud8oQRMaWsv1LQ/Yvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:47"]},"IP":{"Case":"Some","Fields":["81.6.46.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:169:4918::666]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["o5gICmpy+CjcRHbeReKMWJLKEHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXYUAepDkpeQh2IQrHLySOqDoVJot47C9i5HTYIJuXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:35"]},"IP":{"Case":"Some","Fields":["185.220.101.49"]},"OnionRouterPort":{"Case":"Some","Fields":[10049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::49]:10049"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sighif1relay1"]},"Identity":{"Case":"Some","Fields":["o5RZHogOs2EOCdJAq2OYhJGET7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ttwqsSh5PCft6O4x0qjydpv51lvGQbAPhSwzOwfM3Lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:21"]},"IP":{"Case":"Some","Fields":["46.101.165.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::dd:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex59"]},"Identity":{"Case":"Some","Fields":["o4nFI747KepZx1rFV79c+2lYbcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aT2fSk0qWpONjSs/nMeQzjvRwpqCVdvaJIIpM9cVu0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:36"]},"IP":{"Case":"Some","Fields":["199.249.230.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::148]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayLama"]},"Identity":{"Case":"Some","Fields":["o4eMPmreJ3Nb+kFXvohNgpL/diQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQhwhv+LC/8O0SONuzmixYWAVzGly3YaQUzbKlpdID4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:07"]},"IP":{"Case":"Some","Fields":["51.195.121.102"]},"OnionRouterPort":{"Case":"Some","Fields":[6672]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fibonacci"]},"Identity":{"Case":"Some","Fields":["o4MXzvBEDiVPtoSBOVcggmGqsPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZeU5HNJIqGXyhqQ6yJR9ow9cfSKaTB2QHZReSoHa/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:49"]},"IP":{"Case":"Some","Fields":["94.134.50.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9e8:1537:df00:e65f:1ff:fe25:1a75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["junker666"]},"Identity":{"Case":"Some","Fields":["o3fmMlgK5KIORH5doVOq7DRtogo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rogibi+TnAjIfSvNZkW1GtCwlYzkcuNkoo4ushuD8L4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:36"]},"IP":{"Case":"Some","Fields":["45.15.16.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nss"]},"Identity":{"Case":"Some","Fields":["o3IfxUnNX1Iv7gSaivGL80UGiHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R7DNDjvsjCAk9MEaGiplyiT5bcyftzZwlIO3naUz0cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:26"]},"IP":{"Case":"Some","Fields":["64.251.255.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorion"]},"Identity":{"Case":"Some","Fields":["o20TA2dQ5HfgxWKKW+T+y2MobYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lve1cfZIeRgspX0yfj5XIuLDBE6R8iPTGvRIiHaq9O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:36"]},"IP":{"Case":"Some","Fields":["45.91.101.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GenericRelay"]},"Identity":{"Case":"Some","Fields":["oxaNCrU7hwkWD3clc5FG3kZoKDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+z/hekE+9zZdNTaKKIBmTmwUneYzKW0tugZIlahGB3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:31"]},"IP":{"Case":"Some","Fields":["185.207.105.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:714:8411:92ff:fe73:f0fc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deviant"]},"Identity":{"Case":"Some","Fields":["ovuHUjUNDcAxKVZuGX39fEsyBao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q/rIt8BV1IinqKUHknP7S5gwH0g1qpBot/57VxFlpdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:55"]},"IP":{"Case":"Some","Fields":["87.173.24.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor99connect"]},"Identity":{"Case":"Some","Fields":["ovXfFjEyz4/8H2NDE10zl8qFz4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0vKPtuSdxWqawcmFPJPhRj6k/D/mpQS8u4tcp4vjE/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:05"]},"IP":{"Case":"Some","Fields":["87.54.90.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy62"]},"Identity":{"Case":"Some","Fields":["oua7XDkc1Gs4xVtDKcNTBFQHcfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YI4h3MHJSBZZal4dXu9pcs5X/uqxHOvBqiYW3t3E/QU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:04"]},"IP":{"Case":"Some","Fields":["212.83.43.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["ouLHjhngLoAyMoZuhKBFUrdwK9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["62wqrD/P9qGmnxyF38PMZi5AaO+5afn+wXg5EAn8UkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:24"]},"IP":{"Case":"Some","Fields":["51.158.122.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip3a"]},"Identity":{"Case":"Some","Fields":["ot0O8xgT6bf220NVBKQG4a0rdqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2/6hCC2Bk18dy1Opgn5IRXJLHZcTgt1x4yqVqzOBdlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:11"]},"IP":{"Case":"Some","Fields":["185.220.102.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::250]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RSFPressFreedom"]},"Identity":{"Case":"Some","Fields":["otspP/xadqcYhjvxrtvI37HLEJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DBCTzbMP0HTF/dQlBr1x/OINn4gPEkurk4M0QaKQEBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:05"]},"IP":{"Case":"Some","Fields":["185.220.102.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RenderLab"]},"Identity":{"Case":"Some","Fields":["os4dN0QUcZiiMSc6+SDTjmbnoM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DK2o8cn0Ecfd7792SEYURm2bLvu1arTaEW+stmLI7p4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:31"]},"IP":{"Case":"Some","Fields":["68.148.242.19"]},"OnionRouterPort":{"Case":"Some","Fields":[44444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa0"]},"Identity":{"Case":"Some","Fields":["os0y2dBmjbdkrWjHRc4paTyoUbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ky0fyT8CCGIVBiEaxHeVblzrFv/SNHwR07fQivkwrm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:54"]},"IP":{"Case":"Some","Fields":["95.217.112.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pogRelay"]},"Identity":{"Case":"Some","Fields":["osxt54F2q1MdLn6oeukD2hXzdBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DnaE1+TRQQeKe/zNuuZ1qCjIzc691pU145xlGaFrq5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:27"]},"IP":{"Case":"Some","Fields":["136.49.10.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tournament"]},"Identity":{"Case":"Some","Fields":["oshdtsPWTXF40khI/YoOWTR/Lm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2qBhu0+vBAtWRPJLH17ApYFqjU/vdb++fqDc0iOfQFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:45:01"]},"IP":{"Case":"Some","Fields":["74.123.98.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex94"]},"Identity":{"Case":"Some","Fields":["osPLFSDHW+2yEkT9HfHDccJulZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIWiqYE4/l1OXdw1ds9JnN0TrL3bG/JbF5OFeh52j/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:01"]},"IP":{"Case":"Some","Fields":["199.249.230.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::183]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nordtor"]},"Identity":{"Case":"Some","Fields":["or/afrSscRM25w8F1BQL1V0CgQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tnu/ZtFYNLcKMuFcSVX4kb+SbpptwCezEJG6c99Lmv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:00"]},"IP":{"Case":"Some","Fields":["89.58.13.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:60:e0c:447f:e3ff:fe70:dcae]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversdeFrissons2"]},"Identity":{"Case":"Some","Fields":["orAwIlQXQSBl1Z403W8QRgutKng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jq+0DhfT/hWys/vGNIf4qoUeLW0yvEKKc2bNl9F+fCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:13"]},"IP":{"Case":"Some","Fields":["190.103.179.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RoteServerPaul"]},"Identity":{"Case":"Some","Fields":["op0qeKipVIGeIgzvvrzpXS/PpU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vS47OUbeuocxIQDYkHJDCUdrWzNI61H9hRaKbsM2/Cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:55"]},"IP":{"Case":"Some","Fields":["87.128.3.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IOT"]},"Identity":{"Case":"Some","Fields":["oo8M7kpanqdaOoEZL622GnSHVyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TjG5zO77FgiGu1dM+EpzKQPJBuXMfQdFUY8bkVAS6+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:12"]},"IP":{"Case":"Some","Fields":["188.40.220.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE64"]},"Identity":{"Case":"Some","Fields":["oo1sC6qe69KIcTNXxGz27wge9nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zuMarEBNgjlMZj1hyWVJDCKEHzWMy1K7hlHQD/TQCW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:28"]},"IP":{"Case":"Some","Fields":["37.221.66.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:105]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamuelFireman"]},"Identity":{"Case":"Some","Fields":["ootQEABAAJ1tla28rZbmzitsGCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3siekV4CipBrdIhIhTJAKcsitibUJnPLAdct4eaiUL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:08"]},"IP":{"Case":"Some","Fields":["176.123.5.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sabaroff"]},"Identity":{"Case":"Some","Fields":["ooDm5T25si4djAatVx5W00KPZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OXeY8hP0qgNCNB2SoWdcQfk3o/rZ0ujXoF7wDJQcM68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:04"]},"IP":{"Case":"Some","Fields":["50.7.179.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MPW"]},"Identity":{"Case":"Some","Fields":["onGkjNyi9igvFAXkte2eA8URt+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E54FJ4bY/WMAKvc03DE9Z/vxzhgYs0V1b5QMc7QThzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:26"]},"IP":{"Case":"Some","Fields":["193.200.241.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3007:4389::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM13"]},"Identity":{"Case":"Some","Fields":["omwifMll26v4ZQjhhoyQdJiqPRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n7inGA9x7SJIpDYK/kd8QZ1ESxRizGxhRShG3R2Az6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:26"]},"IP":{"Case":"Some","Fields":["185.239.222.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idoediteverything"]},"Identity":{"Case":"Some","Fields":["omkapcyK3kRNh8orMFUu+yPPu/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtHUhHDGa5kpFtUvGt82CELg6l/00jfcxPtWarbGWSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:22"]},"IP":{"Case":"Some","Fields":["193.200.17.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:8::96c2:69f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LawyersGunsAndMoney"]},"Identity":{"Case":"Some","Fields":["ol9r3m5eRVVeL8zE9QRgplVE1h8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XZLRavaO5PuKw4cSEpWMHVhCDIggz4VynbIO++sVc94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:48"]},"IP":{"Case":"Some","Fields":["208.94.242.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange007uk2"]},"Identity":{"Case":"Some","Fields":["oljXD4udtDrlNgnAlU1WJJ9GY0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pn+rSSolYMlu+nto1NQGJhDtv125kzF3nAYRwSIPBNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:22:51"]},"IP":{"Case":"Some","Fields":["77.68.30.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iVPN"]},"Identity":{"Case":"Some","Fields":["olNO8jOQyuB5sVhvD9+c4R9VYGI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NPY6fMXrbQnLhOS+NXfkUB1XA39JrxmuyerYdTB/4+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:53"]},"IP":{"Case":"Some","Fields":["185.220.102.6"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::6]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ok6cTpTwCOA+JKIMPtQKbZPznJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["57MgwUEkTt0V+NCBok7vcBPNYfPm7Qc+8h5+RLYdCI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:12"]},"IP":{"Case":"Some","Fields":["194.32.107.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:171]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemOCI3"]},"Identity":{"Case":"Some","Fields":["ok4c9+1hmL2Q3/ClmPLRskMnU6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bKXt44s65koSwTt0Yftn25qMczbB1yWRSE0oPHnYZuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:59"]},"IP":{"Case":"Some","Fields":["130.162.45.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["okEXnUl/yzDG6zu1mHysXALoI/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cT0VW+vs/AFDXrKqb0epyyzIUu12ViiyaoOhpppn0Q4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:23"]},"IP":{"Case":"Some","Fields":["167.86.112.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Init6TorRelay"]},"Identity":{"Case":"Some","Fields":["oiscLvIlWYf4q4qgsajiP1Aj7rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EcANdFv//GJSqu+q/ga0+nOyunbRAycfsa5lBsBFVfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:12"]},"IP":{"Case":"Some","Fields":["65.21.85.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3a:271f:3::64]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwotwo"]},"Identity":{"Case":"Some","Fields":["oiEb7AzrcMJjT0JSAMgrid/7mSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbV9FbOZDEcGxC3OjVbTo6NTDbXe+ldrvQQA1vU/sAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:36"]},"IP":{"Case":"Some","Fields":["135.148.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Galactica"]},"Identity":{"Case":"Some","Fields":["ofyOQkFnrXC2+klT2TSLzYLOt4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tGRPYDBhbWoM2VzLTmw56Kw3a/r7HOUvj6A0S5MF6eI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:23"]},"IP":{"Case":"Some","Fields":["185.217.95.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nutellabr0t03"]},"Identity":{"Case":"Some","Fields":["ofrG4EHuuuKFefom4k5RLY6QD3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+kSZ1FOCTUPTBXKqUO/BKYP9XOPATxC6PdqP8Tbw80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:13"]},"IP":{"Case":"Some","Fields":["82.223.10.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daeyang"]},"Identity":{"Case":"Some","Fields":["ofDOeWVEmHMvEAklIwvp5IAd+7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ewgA2Z70fEaFmdJoq1qS0nLQCEXyEQ+fxY2/5/k9SU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:53"]},"IP":{"Case":"Some","Fields":["172.106.112.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid2"]},"Identity":{"Case":"Some","Fields":["oewNCGGvdt9ardwXrRjdyPQoH+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AsGxwabPECEbLB11jkAjgtok4NHMoCoRaYgVKEifkxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:08"]},"IP":{"Case":"Some","Fields":["94.142.244.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lilonionboi"]},"Identity":{"Case":"Some","Fields":["ocUVQy72vy5pmmGE7XjfC5pZVlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VXUqacyZN29B8CmpysdJ9I6p/ArL5IdKTw+6YH4HQZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:28"]},"IP":{"Case":"Some","Fields":["192.183.199.139"]},"OnionRouterPort":{"Case":"Some","Fields":[59090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["obofFTC9rawTRYo0jdMbt/RVHd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOubce1JMpcndAuMfR5B91qwnl75VllaItndwS0XASw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:52"]},"IP":{"Case":"Some","Fields":["160.251.82.247"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1186"]},"Identity":{"Case":"Some","Fields":["obh+BaCUvxMCWA90ZdquARUW80U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVz+IUpCvkNeifC5bh0+tVEmOOGG3PnRrXqt/3VlXsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:29"]},"IP":{"Case":"Some","Fields":["185.220.101.186"]},"OnionRouterPort":{"Case":"Some","Fields":[11186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::186]:11186"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arnall"]},"Identity":{"Case":"Some","Fields":["obfB+D5dpDdv0uHbp6wopxqzMq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VypuYcGdVhc1FaCyWYXqTsnF2kXnRNec+KH5033ai3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:36"]},"IP":{"Case":"Some","Fields":["82.103.140.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["omue"]},"Identity":{"Case":"Some","Fields":["obLjLkJvcA033/FCKOG5V6Is8KQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NHyRNsvltVMU519uQ6GU8oyxVp81/idKRE6wv3gOGvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:09"]},"IP":{"Case":"Some","Fields":["94.134.7.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["camouflage"]},"Identity":{"Case":"Some","Fields":["obFupyxd8jNGs4FlgaMJN7Xq/JM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tw85bJvq4EgHG022GeVO9twe1KzQVDcA9ThgPy4K4Wc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:30"]},"IP":{"Case":"Some","Fields":["185.26.156.186"]},"OnionRouterPort":{"Case":"Some","Fields":[46523]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:d0c0:200:0:b9:1a:9c:8c]:46523"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oasTQSP59TTH4JtoQafsr9AoIkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LM9ZkZUHdKF2sPvE3X/RFMUf+Gn/FTxtpBSwgPapJTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:03"]},"IP":{"Case":"Some","Fields":["188.68.56.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandstorm"]},"Identity":{"Case":"Some","Fields":["oaKSQVgZhZLD6Iyw3yPBTZ/mQyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAUOwj4llHLdK1XKCwAYRH9Pt5PUGmBZO0tPcJNj3O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:11"]},"IP":{"Case":"Some","Fields":["51.81.56.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1189"]},"Identity":{"Case":"Some","Fields":["oZgfaYCsGvl1aUBmAmfAHRHhWwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["owSaklYht+1s3jR9W8gv1e9kQAssUfZqccoeuSCFMpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:21"]},"IP":{"Case":"Some","Fields":["185.220.101.189"]},"OnionRouterPort":{"Case":"Some","Fields":[11189]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::189]:11189"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed42"]},"Identity":{"Case":"Some","Fields":["oZO82VlC3NJUGDW2PlzhcQeI5IU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yaru01cM+g01rDGG/lGcrROEt9yqpsiPfJbItR2NB8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:10"]},"IP":{"Case":"Some","Fields":["213.138.102.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41c8:51:194:feff:ff:fe00:352]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["lspooner"]},"Identity":{"Case":"Some","Fields":["oYs/1uKwWBhZ1HttjFpymSoGDgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXBh/D2H/6cS/h1ZNAYsg7b7quCs6Wkv7RKAiVj+Fko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:04"]},"IP":{"Case":"Some","Fields":["185.125.171.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mephistopheles"]},"Identity":{"Case":"Some","Fields":["oXH4MyqgN6KFXDkEiPjv39Q4quY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rwCdvosXWa8AadAdrW+TtBjIN52ttNmPwjoYN6WUWJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:32"]},"IP":{"Case":"Some","Fields":["185.163.45.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2db8:7::a6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yournicerelay"]},"Identity":{"Case":"Some","Fields":["oXAVO/Y6nS4vvKP82GcoasO4DOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qWLchuHWLAvIriGYMjnpcUXb+JWj2IugV7+afHFrpPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:18"]},"IP":{"Case":"Some","Fields":["31.165.21.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hulahula"]},"Identity":{"Case":"Some","Fields":["oWuPKqw+oOpjr8/FZlOUZpNNOD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["shiBjTLKHXUNXruHIn5A050rALPclTwWAWmq+kuKIAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:13"]},"IP":{"Case":"Some","Fields":["78.43.210.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["oWimlyNeXjfvFYTOHbP86ZOnOD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3oZGE1vdd7EEXvzFWncQ5kI6gAP/Hoa3uyjLVHGhq60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:18"]},"IP":{"Case":"Some","Fields":["146.59.234.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatnick2"]},"Identity":{"Case":"Some","Fields":["oWiJcuSqTyTEyaojcs04e4KDTEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XhUD+zfCq9uOhKEFCcLJfSWxG4cpsXqgIZaqWgY8OYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:49"]},"IP":{"Case":"Some","Fields":["78.47.14.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:13aa::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reeses2"]},"Identity":{"Case":"Some","Fields":["oWKrM6dQlqeAzY0VpH3J7Gq9xMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3A8eAT6d97hCRcSiwS7H50mBvUU42z33zaKuCezQzSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:17"]},"IP":{"Case":"Some","Fields":["172.106.112.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oVZ29fDyunscpURG3bRr7m9pmpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bc9aIUvqK1xs6eg1CAKMGiyJKXCt/xtFngb0jzbOUAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:38"]},"IP":{"Case":"Some","Fields":["188.68.49.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bornhack4thewin"]},"Identity":{"Case":"Some","Fields":["oVJt0LrMRJkQGuWVhimN/VXSU0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uOqEJgXtytaF1o6WBZamSMAQmnwRHA2YvONbVpMg0TE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:44"]},"IP":{"Case":"Some","Fields":["185.38.175.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::133]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams01"]},"Identity":{"Case":"Some","Fields":["oU2W5sTDpa89flesCoWugr37D0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qDj1aoXoCB/kjiDgI21WkFBl8FhtTQahVeiJdBTaF5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:17"]},"IP":{"Case":"Some","Fields":["45.151.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::a]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anion"]},"Identity":{"Case":"Some","Fields":["oURj98Y4wCfiOCnsu2effiLvJis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LHSzjN3r8OfVszDY0CqUXLUyHFlfhY6WwJqPerSnY08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:52"]},"IP":{"Case":"Some","Fields":["193.30.123.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VaticanRelay"]},"Identity":{"Case":"Some","Fields":["oTxl6XHZbiXJXtTbKWa5rLpUzr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEKsGyPIElO87uSbEzAgXl5npOXy6FeIL6j1+SR1PcU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:29"]},"IP":{"Case":"Some","Fields":["64.83.167.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SydDornexzyRelay"]},"Identity":{"Case":"Some","Fields":["oTKcCmnPWbhvjI6hgVPtTr96Mwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s/hqB+H2xzvIlXReGYxlInO7jNx+jmkItW9y+Q/JnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:13"]},"IP":{"Case":"Some","Fields":["45.76.123.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5801:98b:5400:4ff:fe23:18c4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Desperado"]},"Identity":{"Case":"Some","Fields":["oTKB29j45ITpXdJzs+5/wUwbCno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3dvfAUjGwIfIOZxIPdRskMXN/fvcpK+UE1kmzoJucT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:38"]},"IP":{"Case":"Some","Fields":["78.47.134.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2b00::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer78"]},"Identity":{"Case":"Some","Fields":["oSeyUMkgeYHinBiqi6MRt0/FgbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q1ZpkiniUgxV6AJl5eqyKxa/RQGksE0xN24yLE/XEhw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:34"]},"IP":{"Case":"Some","Fields":["95.214.52.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["assange710703"]},"Identity":{"Case":"Some","Fields":["oR7nRxkc9IjreywSlSYPziYkvW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LzafY17EJ5WWuzo70+WtEbFo6IdQJfYNHrk1J6TxBD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:14"]},"IP":{"Case":"Some","Fields":["95.214.55.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zighinettohome"]},"Identity":{"Case":"Some","Fields":["oRMSSiLLzQwRQ+o+D4V+xB3QZr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P0wxjYY6VPneEOf8pswwvSymO/biwUN5Xu6GZGvnrHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:01"]},"IP":{"Case":"Some","Fields":["95.235.188.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kryptonit01"]},"Identity":{"Case":"Some","Fields":["oP44SG0ydRl0OpRFNsPOrjhJsZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TKzqG5znTajuB7D9h7JaNEZ/EMcbJcMClQrhMG5jBMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:35"]},"IP":{"Case":"Some","Fields":["37.75.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9091]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dhalgren"]},"Identity":{"Case":"Some","Fields":["oPBsL634jTo5qjBytAbwnXCVrJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xz6Q9GnNE4x3L0hJs1JY2QV0+mCLFs5N4kzoo7iC7rI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:01"]},"IP":{"Case":"Some","Fields":["46.165.230.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YeJunPeacemist"]},"Identity":{"Case":"Some","Fields":["oO29qPJHV0KdrIKJEYHZaHBiPE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1xh6EEEPyv03V1u5qRch3cY/wgW0KnC/wEPmiUfGzFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:28"]},"IP":{"Case":"Some","Fields":["51.75.71.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::264d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oOPTkbg87S8mTNbTlSXjd3XqHus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sVncVoEfd5o/eg/ZAia/2mEvR2hNUH7HxvDx0IUWxkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:15"]},"IP":{"Case":"Some","Fields":["185.244.194.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isprjr0"]},"Identity":{"Case":"Some","Fields":["oN+zEjHHGIKfoY6rTQzVHe264Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLjbC2VK787ibGdXPz20KvBAZ2Q9TD4nEvlgg2/4eUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:52"]},"IP":{"Case":"Some","Fields":["163.172.151.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN29"]},"Identity":{"Case":"Some","Fields":["oNuCD+yHwEBfe/Bd7l5K3tK7mQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pCSX94QxuzmrOHC3e0QvdIkuVHMWFYN6WxQdKYU5YQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:30"]},"IP":{"Case":"Some","Fields":["199.249.230.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e652]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OmegaRelay"]},"Identity":{"Case":"Some","Fields":["oNIXHPrseAspMOBZ4DUF15kpJ5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q217YrygCGwdMbCQAejCzUS0WWmQhxv8VX4f+8ilzV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:35:12"]},"IP":{"Case":"Some","Fields":["104.244.72.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TerminaTor"]},"Identity":{"Case":"Some","Fields":["oMWUELkDCsE4XEykTI2/4Tr0vJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["duC8wVI7WC6Eq6yAWaBrX3sv4shuYVs5jRehkefd9Fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:38"]},"IP":{"Case":"Some","Fields":["62.171.142.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2034:5805::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Strelnikov"]},"Identity":{"Case":"Some","Fields":["oL0QTjXTb1YwsB61NwWX6wkgTJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Md18m4LR+Sp+PV1M1X6bhMWdRWCVJnQxFHPrvdNJsCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:37"]},"IP":{"Case":"Some","Fields":["98.128.172.245"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra27"]},"Identity":{"Case":"Some","Fields":["oKkZZwRvepvDFUx7PD/eNMArEBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h3V+JitPdnNp1lxYWzkraUyPp32RjqbK6lx8UlaOi5o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["104.244.75.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluediamond"]},"Identity":{"Case":"Some","Fields":["oKHaxBzkyQppqgskgLvaZnpgf7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CzP2ABobXFKSn/w3uPjyCIx+Xb+D1bwkBRQplu+kt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:08"]},"IP":{"Case":"Some","Fields":["45.79.222.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inhonourofecho"]},"Identity":{"Case":"Some","Fields":["oJ2qrRbj93wu0aASvYoY/8v+tCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZ4xovbP+w2kDKy/cPjVcSdbgrnSFBwMgCbFOEM+r3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:25"]},"IP":{"Case":"Some","Fields":["88.91.65.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4610:a:4d::30ed]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Applejack"]},"Identity":{"Case":"Some","Fields":["oJ0g2F0KopxHyQq+r9trekv3/Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mVy6qOLFWm5AFvsjXtmHi5IlzfpgdpaSJZTbxiNaGDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:01"]},"IP":{"Case":"Some","Fields":["78.46.177.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c17:420c:c21c:f5f6:5559:d7c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["oIOXCQ43N6a0QjqICYLJWEmBKtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A9Hsg2C/eJz4AtJtaoS6nfEasGTbo1PWoGiSBAeuXLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:56"]},"IP":{"Case":"Some","Fields":["23.128.248.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Punggol"]},"Identity":{"Case":"Some","Fields":["oIHUNxJBSdBkWsqhJ7pMYIKJuE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iF2f8gkOyL4hJhY0sfcwIY+2QVNgbioUuVPIaN0jtAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:11"]},"IP":{"Case":"Some","Fields":["194.233.75.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddfkmuaxgt"]},"Identity":{"Case":"Some","Fields":["oHF0pVifAR3HKi4FhfJn5MRrAU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s811yVoziOnbX3PBo62Zdd8t9ZuuczFsCe4l4c+m7lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:36"]},"IP":{"Case":"Some","Fields":["193.32.127.233"]},"OnionRouterPort":{"Case":"Some","Fields":[55509]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["violin"]},"Identity":{"Case":"Some","Fields":["oGzaeSLiUiutN6q9tRvJU8xBvrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntRzZkY63MsAFwNHK9dL/iGvd3gMY2/wHNy0ifjXVcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:22"]},"IP":{"Case":"Some","Fields":["135.148.150.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vlado"]},"Identity":{"Case":"Some","Fields":["oGbnmDdYx8wAl+Fqz097cbr6ROk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hqT+uPzndz5a1s03OanpyDZM0MvI4DMtYD+rihx0VMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:40"]},"IP":{"Case":"Some","Fields":["104.244.76.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapFRA"]},"Identity":{"Case":"Some","Fields":["oGVqAIGQLYYKc8QMTxDVtA2aLl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D6M7twqsewMW1w7mT9tSd4DxCYnoRPWVH1AM+MzEeac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:10"]},"IP":{"Case":"Some","Fields":["165.22.81.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::136f:3001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetMini"]},"Identity":{"Case":"Some","Fields":["oEjSNoH+xrBzbneJvT54X5aEw+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Pv/jBaLIuWmaGDp+Pev00WEM3urBIrhqxsAPEN7Wz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:23"]},"IP":{"Case":"Some","Fields":["211.194.185.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["oClt3J7FCqQu2dR31R3UYH14dtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bJg4zuhapgelIN5C+YatyYAlvjLS8qgnV0v/SL7L1WE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:18"]},"IP":{"Case":"Some","Fields":["213.32.104.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SunnyDayz"]},"Identity":{"Case":"Some","Fields":["oBwE+gDhc9G9ACeYpv78rTfzQmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqBC5xWu0yyLEYfrFT3/q2kgcjY2GKARKQQQ7+jl5io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:24"]},"IP":{"Case":"Some","Fields":["74.208.212.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:225::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firefusion"]},"Identity":{"Case":"Some","Fields":["oBm4E+f8UZko53savqDxjnShQ0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BqlY3RZrZ8yxKkvXAKJaIBy8U9+igZxBz7mcaM4YH7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:19"]},"IP":{"Case":"Some","Fields":["62.158.24.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["siffeurattex"]},"Identity":{"Case":"Some","Fields":["oBO78ukxp9WKNwfIR2Gz9qqrJdU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7U+TuHyoxpERkzT2nembbghywdViX2WJbVWP3tR+D3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:36"]},"IP":{"Case":"Some","Fields":["45.142.100.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode5"]},"Identity":{"Case":"Some","Fields":["oA6QBTTf92NxBkwDcUdT6vi4iCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zhYftn3+TC/HVuSt7LH4h08SngPvHlnMck80mbQd26Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:38"]},"IP":{"Case":"Some","Fields":["198.98.57.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:449:d588:761:3910:8268]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Grexit"]},"Identity":{"Case":"Some","Fields":["oAVuDzdz3ZnB7SmLlWoqzuG/tf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vhLgNL0SClDqDsGwCXHv8uQo47PhkMk45LDLJwRS0mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:12"]},"IP":{"Case":"Some","Fields":["185.4.132.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarmokAndJalad1684"]},"Identity":{"Case":"Some","Fields":["n/oe5/5lP52gc5Jb3imadNysdZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["clfKQ1AryhjacRNpDxB/3i2J6KFuX74D5AKt04GalbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:33"]},"IP":{"Case":"Some","Fields":["107.189.14.43"]},"OnionRouterPort":{"Case":"Some","Fields":[26453]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8da:2b2:a293:30ad:506d]:26453"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE52"]},"Identity":{"Case":"Some","Fields":["n+ltLsJcqEHWmgq9BA1FNEMiofk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkXYqi/Yyd2z8C9qnfBNkC1YOr2BjGWdIpH7QrB6bxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:37"]},"IP":{"Case":"Some","Fields":["170.231.236.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber35"]},"Identity":{"Case":"Some","Fields":["n+jLSxUtX9NAqiswc1ZWCj2v4N0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9BKfMRpbywNX4zeGl9hXhwKwuCC6NAcleHSsroRefqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:33"]},"IP":{"Case":"Some","Fields":["185.220.101.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::18]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HighEndAdatikrit"]},"Identity":{"Case":"Some","Fields":["n9xzHO59Cm6qoBfowA2MjyydIrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d6I4Qb0s1UtCqcZtF6qhfDaONtQ4MkyXN8ZMwMFyO6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:40"]},"IP":{"Case":"Some","Fields":["51.195.166.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809tss"]},"Identity":{"Case":"Some","Fields":["n7d6XeEeTJtIHMT7RONFDWfWksY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5VMPqmEtyBpmd5LYzOnKFeCSgZve/N8pmeeYuAX94uY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:03"]},"IP":{"Case":"Some","Fields":["178.175.136.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:3352::12]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG6"]},"Identity":{"Case":"Some","Fields":["n6ihYWP7a98ijkXjKbDlrO29gwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t/9AhMot5b92WAa8nTReJRjnE45dHAmM30hlUHdU0GA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:50"]},"IP":{"Case":"Some","Fields":["193.189.100.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::199]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MasterTF2"]},"Identity":{"Case":"Some","Fields":["n6ERuIBUDiz3WwnDUwEaBP+31IA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4QYiP+RBODzsKK8Ov4JeRyevH0/6hd9zEl0imoqz6JQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:24"]},"IP":{"Case":"Some","Fields":["198.98.59.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra71"]},"Identity":{"Case":"Some","Fields":["n5XGiqy2fmJY7HprqUBsInq60/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AuFMuY7HOUxoqQMKlH65lq5oJiT83LsZHx92Q/+YNIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:08"]},"IP":{"Case":"Some","Fields":["51.75.161.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noa"]},"Identity":{"Case":"Some","Fields":["n5B4OmcgFdTUDyKQKWS5KtDqDBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q4Dq7zT1uRWcwxzm+kn7AkBRYg3CwJqm868yX+5xoqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:09"]},"IP":{"Case":"Some","Fields":["149.154.154.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:149:154:154:155:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nivrim"]},"Identity":{"Case":"Some","Fields":["n31uZCAYPCt2086ZYk68mKIaln4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RCqAJGS5x/ZeXn2zC8NYiIidSeaBCmfk4nepXd7lxWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:45"]},"IP":{"Case":"Some","Fields":["46.28.110.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XORJSRFL"]},"Identity":{"Case":"Some","Fields":["n3SnfrnXby/M5ZHImibg/b0RCrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ciwrlRUf2XymyiTxqjFRrAWuTrsZWsX6/ecnykxDNd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:45"]},"IP":{"Case":"Some","Fields":["46.165.252.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sn00z"]},"Identity":{"Case":"Some","Fields":["n15/Wk1dgIuBHfxtg0g/2SUIVpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yEuN0Hn+xRAsDdZi1HkzDqAIGOH/TaIwRULweM6ffmQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:51"]},"IP":{"Case":"Some","Fields":["37.187.179.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:404:200::4b3c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel26"]},"Identity":{"Case":"Some","Fields":["n1BoMQgY7XxwsLxAh6tVyxLLQ3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9lRDI7LTdNspVzCTSwG/++tMLCG+31QWZCS5CgAO6Vg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:15"]},"IP":{"Case":"Some","Fields":["89.163.128.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::cafe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ripley"]},"Identity":{"Case":"Some","Fields":["n07qZBNJ9nUzXwbz9XDRSuOQenQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XM+BdCzmgkAb9OZO65KKjbkDs9lNhEwDEENMq3gT24s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:58"]},"IP":{"Case":"Some","Fields":["216.210.83.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickenlegs"]},"Identity":{"Case":"Some","Fields":["n0rzB1H3RqAAC7d8pghYyzan0Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oQ7ONaNA50cMtegfL4A3wspgaL+ltjdWkF0xCqqoHXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:43"]},"IP":{"Case":"Some","Fields":["103.227.99.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infinity2"]},"Identity":{"Case":"Some","Fields":["n0WdR1aqYdftBdAA6kx1f6GaxAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkGfBQBWWUpeizqfGy2WIqL3VDydPRHyB9kRQLoG72M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:47"]},"IP":{"Case":"Some","Fields":["89.58.37.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ukna"]},"Identity":{"Case":"Some","Fields":["nzU03aSGXAqI8++Eu18ebDWFQ3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HxoVeh7jg/nJHDrDuWOO2OYgc/w3mIRprz6qQA3EqRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:45"]},"IP":{"Case":"Some","Fields":["123.253.34.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber45"]},"Identity":{"Case":"Some","Fields":["nyzyqCIf3kvimmd+pasn8uouoks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WFohNIWl6z2zRnoyBnGS33DfMMnPMhFxUrl5VgSLExo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:10"]},"IP":{"Case":"Some","Fields":["185.220.101.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::23]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex15"]},"Identity":{"Case":"Some","Fields":["nyhW9tK4mtTvbVcj+rFn21pTUZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1jnmpO4EOapSqA/+sjNK8DmyllK7aF4I/6ahzOUJBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:57"]},"IP":{"Case":"Some","Fields":["199.249.230.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::105]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["biber"]},"Identity":{"Case":"Some","Fields":["nwTtwk8XMbYd/4CggQFQc3pHhxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8IVNBt++9X+nPV0ERzyY2Uvz1N0wQCOcVcUrwi82EI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:26"]},"IP":{"Case":"Some","Fields":["109.70.100.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["nvSaB1p59ldwj17gCwXOewt52jU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6O4SKq8icjNVQ0Gu0dEUiQXkzSuCFUFzxqLt+8sdtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:13"]},"IP":{"Case":"Some","Fields":["45.154.98.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NixOS"]},"Identity":{"Case":"Some","Fields":["nu6GHNil/iah8naHkyMXL1uRCCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sRNg853hwS/Lf4y2w8lVa5bzM3V6RI+Mr/KiecUTQCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:58"]},"IP":{"Case":"Some","Fields":["176.9.161.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trainmaster"]},"Identity":{"Case":"Some","Fields":["nuqgLjOM31kZ+YPzJFqpWnkLm2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g8lvL9YyT87JsOv42eHQAQXOdacDVWrJNG3NhotALrA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:06"]},"IP":{"Case":"Some","Fields":["89.46.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse04"]},"Identity":{"Case":"Some","Fields":["nuY5hw/efUCmD34cm5Epd9Gu1xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsEsDECW412wY0WiNY36j9gdWDBvJwiK5Yh65aFyCrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:55"]},"IP":{"Case":"Some","Fields":["77.68.88.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr167"]},"Identity":{"Case":"Some","Fields":["ntjkXSxmbwGcF/I/9Wfp6x59rbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MPdiQFSfys607JRXf4Z5hp0Yre/ocPCRavNl/scnI5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:44"]},"IP":{"Case":"Some","Fields":["85.208.97.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Password"]},"Identity":{"Case":"Some","Fields":["nsT/rxVrnYk1XAcJFmRAfvnJ50E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6KSPNrIpGHw+ui9ZjpaxXb8XHuJbT+BLIktvRGKSIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:08"]},"IP":{"Case":"Some","Fields":["185.100.87.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nsPcEuwiLRcSH3wEvkJgNhV+GfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UbI7a91SxGqNLYrM52Q1UHz+DBT7kru1QtEUjjUNbec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["80.162.238.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["blindschleiche"]},"Identity":{"Case":"Some","Fields":["nsJL0Ncdl/K7/Dlo3Jxbu1UY6cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aOC9OYLTeWFON9Uzqo8/vJjQz3ru2HwxrZvB+VP+4Ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:18"]},"IP":{"Case":"Some","Fields":["109.70.100.77"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::77]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fa11en3"]},"Identity":{"Case":"Some","Fields":["nrWBms2l2pTM4EJEczXQBtwlY+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4s7ZN2QZAZ3+5ErDitsGPySmsybmiDcukgdtziCFclE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:05"]},"IP":{"Case":"Some","Fields":["51.15.227.109"]},"OnionRouterPort":{"Case":"Some","Fields":[7890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:67e::1]:7890"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatconfig"]},"Identity":{"Case":"Some","Fields":["nrP9hAZeViKlfv7xTkGgG1uZoCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vvA68YVu71EKKpcDgdpVSOmtlRppllTa3Nr9MwSOJCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:13"]},"IP":{"Case":"Some","Fields":["213.206.184.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:beef:2011::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedWikiLeaks"]},"Identity":{"Case":"Some","Fields":["nqxhy070RqAMWg+NLBgF0nrdhfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QHsBBQMmX+YXpkp+/cAeEUJyR4REEHtX++ogLJg/dIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:02"]},"IP":{"Case":"Some","Fields":["23.154.177.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lumiRelay"]},"Identity":{"Case":"Some","Fields":["nqZdG7YHraS5prKli6oslg34veo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PYNWAM+/7tC8urgCUGKruLZWX9EkBFNInorCC0r8bas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:57"]},"IP":{"Case":"Some","Fields":["140.238.168.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OldCup"]},"Identity":{"Case":"Some","Fields":["nqDfDgRubvngHmXQS0hc+ylvjDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["737SCJlJQxW3ZbrVAlAFVX4g4qU8EW6a8GRTFBcsmKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:18"]},"IP":{"Case":"Some","Fields":["139.162.251.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:92ff:fe8d:d119]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["npoTVbcN5nW3TE4UuOzfcuQdi/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t6BUDEq1ixofcwkeoY7vnoSwnSv7EqsRe8ypS1tOKR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["167.235.229.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:fc5d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Gentoo"]},"Identity":{"Case":"Some","Fields":["nplz3PcIB94ZKwLBBcXobGAgIDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qN8Q730OSu1FuBVZFo0USXVYd9qPpcPnt7v/cOAK51s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:46"]},"IP":{"Case":"Some","Fields":["60.241.48.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:6e::5eed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["colagioia"]},"Identity":{"Case":"Some","Fields":["nojHxQ2gY5QkpkHhQ6YAAQiYoRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OF6JgsO1zlJkNXHbCDT0uDwYkgUP46Yzo3j5AQzmR1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:15"]},"IP":{"Case":"Some","Fields":["72.14.179.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fe96:1cd9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["UntilNoEnd"]},"Identity":{"Case":"Some","Fields":["nmJ5KN/l3V5RikUqUD1AiAEV36E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["15eVtSuXFGUFQyekTWPWuyDztZiCGxYmdaB9cWGvY58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:16"]},"IP":{"Case":"Some","Fields":["65.21.1.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:1c3::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv127"]},"Identity":{"Case":"Some","Fields":["nmJODl66MVa/2piscDvP+V6aL/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G8Hg055DG1K9nqR0h6e08zRqtiKlh2LaN3Moch0fav0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:50"]},"IP":{"Case":"Some","Fields":["192.42.116.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5527]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber55"]},"Identity":{"Case":"Some","Fields":["nlaAs/XCynaPKCyF26oRcy10VtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6JsEjy3rE7W9aY/JC7lbIIyByxP0G9Yw5Qxb3Owk4mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:31"]},"IP":{"Case":"Some","Fields":["185.220.101.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::28]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trycs"]},"Identity":{"Case":"Some","Fields":["nk0Xcs7JhsdSYGVziLvFfVg+uB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMMN7SxlqWaELK5WFaU+GT7UHBAWDLgiUgdP5xdWthM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:20"]},"IP":{"Case":"Some","Fields":["176.9.42.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marla"]},"Identity":{"Case":"Some","Fields":["nkzGTE+Uw1nUPFugkJQyP9vv2XU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqBEZpm3gQ5IRPz6qGiFKdPiUxTgzrweoW6wbzKcW5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:28"]},"IP":{"Case":"Some","Fields":["185.117.82.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:21bc:1e::f00f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["nkM0U9M/hbcmqrrQQ93QDhcTKcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBef6VWKaVZpvuyo0hz/inFO+2mbbQhMY/jbgaXLqyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:08"]},"IP":{"Case":"Some","Fields":["176.58.110.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe33:3c13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["equinox"]},"Identity":{"Case":"Some","Fields":["njk8lWBdlvBk26EJTfOQCcAU/V0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7YrFtJ+uWW9OawHJe6Ki94LSUY9cnZ3k1acOBHTKB5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:03"]},"IP":{"Case":"Some","Fields":["5.254.118.150"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP07"]},"Identity":{"Case":"Some","Fields":["njY0I5JOzDclqdTUd3JCEZijqEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OKuJuSdf4IWkxVxNxGop9YIwF+yZxj9xjzLMfiRPGl4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:15"]},"IP":{"Case":"Some","Fields":["15.235.29.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex47"]},"Identity":{"Case":"Some","Fields":["ni18aYEmlASqGXC1OJFwGiBCTvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hQV4bycwPvfxDmGFVKtsmmhytm6mbz757yeQb23LRTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:40"]},"IP":{"Case":"Some","Fields":["199.249.230.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e646]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WomTor"]},"Identity":{"Case":"Some","Fields":["nipLGud3EALbDMmg56BnrCLloSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpoUTtJamNyxrwSjxlugFbE6aGOnRV/e80HNnKg1jgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:52"]},"IP":{"Case":"Some","Fields":["51.15.49.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nh4Di2JCwbcGEpD0YQjQQYtEuaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbmxY6Oh/52DeWhnJ91KtC85grLq66rpuNq2HEkOY3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:22"]},"IP":{"Case":"Some","Fields":["23.128.248.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::c9d:f5ff:fef5:272a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv114"]},"Identity":{"Case":"Some","Fields":["ngBYMAQB9mh+rln5/oLbiSMDRME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HIbTPgKOmT1gaqsGcu3jXI9oe9WjNXUbI2SIZDNJB1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:05"]},"IP":{"Case":"Some","Fields":["192.42.116.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5514]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nfHC1LYYLy97Lesa/EsnFRDQ4/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CxGjMOyF4vH8vxM8F7BEPO69G07rgEVC2DSOHEC6XNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:14"]},"IP":{"Case":"Some","Fields":["23.128.248.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::36]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ne2XGY37bHpxJ3GY1EiGbzb01Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXd6VxwjF31CDOv/FzKsI9m6n2FRh+nIMllBE7RGVvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:54"]},"IP":{"Case":"Some","Fields":["136.175.8.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit5"]},"Identity":{"Case":"Some","Fields":["nep7ZTG0RuoauQietZ8E51xST8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1eQv2C8szGflsu3ZVXSZb7pzcewwtb+4UEJfntL8lP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:01"]},"IP":{"Case":"Some","Fields":["185.129.61.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myHome"]},"Identity":{"Case":"Some","Fields":["ndlp5paY4sdPv2YvmGuqYaoKxVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnPXPdOOrEujuZTCjq12UyeD5csqEoZF6P6RybzGNsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:56"]},"IP":{"Case":"Some","Fields":["79.223.122.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["akira"]},"Identity":{"Case":"Some","Fields":["nciwKCqNPEUhIWfEVLUDJDvJOVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EeOU+Zt40qoB9DtqxgZaQ8UxBu9ORASM3oMxNJrAdgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:33:46"]},"IP":{"Case":"Some","Fields":["193.105.73.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["philotes2"]},"Identity":{"Case":"Some","Fields":["nba83BCu+ywDKFfhFK9YWiUunPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mFatIpxH3AwUKi6eDd5gWsLD/J0pKq/30ppghQ+tRvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:07"]},"IP":{"Case":"Some","Fields":["94.16.118.250"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMeDaddy"]},"Identity":{"Case":"Some","Fields":["nbZv0cQUmDgGh6zLiJfhx8g4800"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dq0V21B7ZIbdfPp690mgI/jO3FDS4MP6LkvgF6YaEvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:04"]},"IP":{"Case":"Some","Fields":["97.115.184.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HungryTREX"]},"Identity":{"Case":"Some","Fields":["nafvnp1gcM2LcFm4qMxbQc7AJyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xXoNZleV34KzE4HGlLT77L8gbe+S3Tv0BXdXVPNpj4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:24"]},"IP":{"Case":"Some","Fields":["192.99.151.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bifrost"]},"Identity":{"Case":"Some","Fields":["naUoSlECGnEeyqZ3yB5UCCIrnyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLNKcgyzw0nXdC5rOTCW2RVYeGM4I/QTuoSm9yo5TLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:11"]},"IP":{"Case":"Some","Fields":["90.129.255.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay18at8443"]},"Identity":{"Case":"Some","Fields":["nZf4LxYK7z/9egqyv7aLaREhyxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w+N7XvYGOsHMzJfZybPmlh6lU3skG/ky0aYghpYiNgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:32"]},"IP":{"Case":"Some","Fields":["140.78.100.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay42at5443"]},"Identity":{"Case":"Some","Fields":["nZcLf7rDU9j2BJrU4M7ga73k4X4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNVyeIB6BmngZN9ma8SXsinVPVxvgbVyJdP+mRrITC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:57"]},"IP":{"Case":"Some","Fields":["140.78.100.42"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diale0"]},"Identity":{"Case":"Some","Fields":["nYQcpzmTCJTSNWn6WLZjIkpEDMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b1ltSDqDGNgSkDjqIjViooYDLPz4+0Qpn5hUqwBU8lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:53"]},"IP":{"Case":"Some","Fields":["95.33.88.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nYGKKwmW+7UwD7l73YpxvXedGT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJbAFnTnfrY+hK+T06f9TBybZKbY3UbLOvw7A52snf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:11"]},"IP":{"Case":"Some","Fields":["23.128.248.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::86]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who10icebeer46"]},"Identity":{"Case":"Some","Fields":["nWbsrtOOVNeEzVcXcD34MCL7ZPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P08LP3DdPFr1T0lVsOWhydC3OmQ18j3iM4LmDSw3Fvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:36"]},"IP":{"Case":"Some","Fields":["63.141.233.118"]},"OnionRouterPort":{"Case":"Some","Fields":[8224]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aib9ushiekee"]},"Identity":{"Case":"Some","Fields":["nWPZlTWhKlylOSx5an8OLVN8JJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLFKiiH/bAATXekOaAAecrJQHxggP7oBcoxbPRqZfZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:21"]},"IP":{"Case":"Some","Fields":["107.189.8.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lptr02ORFzF4Za"]},"Identity":{"Case":"Some","Fields":["nWF6wXSnheHQNNIG1orzSoeloLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4D1M4ElwOraahaZgna576UWma+SbZAft2sQIRnjQ92c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:53"]},"IP":{"Case":"Some","Fields":["173.212.242.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2013:844::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShayughulRelay"]},"Identity":{"Case":"Some","Fields":["nV1V476J1hLXH9X8XtUmlQeC/00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2pKnJcFmgGxC+LkzaV9RXmjy03YmWZRmZNpQx/81eQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:37"]},"IP":{"Case":"Some","Fields":["216.221.110.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["nVp6gbxhlFVc51H3X7GW5KOYLMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+s4q+VauZ5FJ11aklj9FMTZWgWnRgo2A2MboUMi47WI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:33"]},"IP":{"Case":"Some","Fields":["185.220.100.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:13::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nUt69fdXjrpfYRKvlzf4XULCMhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJOsjPk6epSEfGc60IWHCWWVSFD4rpVaHFnTdrPcWH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:35"]},"IP":{"Case":"Some","Fields":["23.128.248.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenjaminDover"]},"Identity":{"Case":"Some","Fields":["nT+qLM1I4IeVpyQYRpF0SRczhik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1osu9B3+6xtGrR1+5DIkXSFhtWUxioydENiJDcg+is"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:02"]},"IP":{"Case":"Some","Fields":["178.200.140.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:1082:4b10::b002]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal3"]},"Identity":{"Case":"Some","Fields":["nTBflZFIw7jOELbAzhaJqxfXAUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o7csanNB33hqTmuFP3aJT03oTI3AaN2gAFCHz+GwhPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:19"]},"IP":{"Case":"Some","Fields":["51.79.156.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8000:800::e5b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeworld"]},"Identity":{"Case":"Some","Fields":["nSyigc5d8cyCHqBkbC2uOyya1lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tjFWZlX6n96OBNNwxqfKC3Rk4RpNg3fdNjWe4t1iD+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:47"]},"IP":{"Case":"Some","Fields":["186.190.208.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex16"]},"Identity":{"Case":"Some","Fields":["nSHwNMO/9OdzfQjPd13BdFcGgB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YpaaGDw7Oxkyk+L0qSe6uZOWtLHqkeDQFLcoFfe1YhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:39"]},"IP":{"Case":"Some","Fields":["199.249.230.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::106]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nQ9kDmuNdVKuv7+mSBtENQePM7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["395nNkEGAdD6WWtw/vOrDji897kVwgKpdeXLZDmgbog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:51"]},"IP":{"Case":"Some","Fields":["23.128.248.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE70"]},"Identity":{"Case":"Some","Fields":["nPf0JADpb0lpe8a0j/pBdtWreF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvHPsgGKrVKLJQsXP9n4uroaXqq/ytFzFCFkWY/OuWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:45"]},"IP":{"Case":"Some","Fields":["37.221.66.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:10b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R3S6"]},"Identity":{"Case":"Some","Fields":["nPfoTUA3GcvQsjgauBDwr52tJ5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pJ+Xv9L9wbwQOPTWHFeRfzJHZKENKMudgKXT/31m0os"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:55"]},"IP":{"Case":"Some","Fields":["185.146.232.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:164:0:5233:2d:5336]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoGodsNoMastersDE"]},"Identity":{"Case":"Some","Fields":["nOE3q1gk22fyTlRAbpCfaYygPm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oYp1LV1qO2ay5io6gepWKs6DnHnQpGdBx/kdF300szs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:17"]},"IP":{"Case":"Some","Fields":["78.55.245.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra47"]},"Identity":{"Case":"Some","Fields":["nNOGu4BPub7pL6EeYOkkFVXMt5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aK3h3VEI3cgmmWQCFaX3YyOo1tT+eApM5dn4epdLEX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:27"]},"IP":{"Case":"Some","Fields":["193.218.118.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::147]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse08"]},"Identity":{"Case":"Some","Fields":["nNEqqKPIwePxZF04wwmM0icMVug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiEMOOk7FQJHUZXxkixEx6qxFZ/wUrOGu4X6MFU8NIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:50"]},"IP":{"Case":"Some","Fields":["195.133.52.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Saturn"]},"Identity":{"Case":"Some","Fields":["nMzvhegk5AT56rhP/MeseaVDMZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QoLRSVu9tC1TZISOTyngcgRb0LjQpXvWuQzkZOs8D98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:03"]},"IP":{"Case":"Some","Fields":["23.129.32.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fed2:fc0:d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigDaddy"]},"Identity":{"Case":"Some","Fields":["nMPpwfQZbU8R8rgV+OoLYwofzIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YZIO8sVVvT5xw+1baM4rJyT/y730jmBe6LDGVKx6PSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:08"]},"IP":{"Case":"Some","Fields":["185.21.217.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10041]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorA"]},"Identity":{"Case":"Some","Fields":["nL6MBvIORuR4DdvITyFhXcVCs0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ADFaJWoDFuw786blGGR4+uuifR2yi9efSi1zNxtp/ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:20"]},"IP":{"Case":"Some","Fields":["85.195.232.50"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:ad8b:50::a]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NightRelay"]},"Identity":{"Case":"Some","Fields":["nL1JNxvbiPuPsnjCWuip8d4UmOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mAZUsQ5TOJGe32KNUH2fMP50swdO05nbSpnDWMyo78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:14"]},"IP":{"Case":"Some","Fields":["185.101.139.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enif"]},"Identity":{"Case":"Some","Fields":["nK04Aoj8CG5oBqWenEByzXXyYiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zW4prxl2zJU0eIYeonWee80DfDpJk52XU3EgmKlQgeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:54"]},"IP":{"Case":"Some","Fields":["144.76.50.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nKSrKwQsFzrFZHnGn19Dbp8eD5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kFYmsUlZ1kFaDBAKgaPNhjAkHeYSX7/W8GPjmWKYsQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:50"]},"IP":{"Case":"Some","Fields":["46.227.67.92"]},"OnionRouterPort":{"Case":"Some","Fields":[51505]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["protesilaus"]},"Identity":{"Case":"Some","Fields":["nJflhAV4aXAwq/x3hEQuMu/Y6R0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7hDFp0AHp7CWiBUqaVDHyEqwCeJHTKXu8Yo9BrkXMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:44"]},"IP":{"Case":"Some","Fields":["132.145.245.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8000:6a00:1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bledo"]},"Identity":{"Case":"Some","Fields":["nJepqDLOgqvncQJRuCcj7qCRRqw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHynU/JRwn+MZkAbebYFK7pOA4EnW1+GogMWyZIo3Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:52"]},"IP":{"Case":"Some","Fields":["92.176.200.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay14at8443"]},"Identity":{"Case":"Some","Fields":["nJeTn9cup6MBGV5B3NqQfkSUqbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7tp67ymmtsG5/dseYhBg5zihsBM02PeQ3M7xt3TXuWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:18"]},"IP":{"Case":"Some","Fields":["140.78.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RAPTOR"]},"Identity":{"Case":"Some","Fields":["nJaZAxler2g9oTAC7NW7O0D8sO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QwmXVBFBuGLR8insLNleNGtPI4LtuPKaEA/T5a65zr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:14"]},"IP":{"Case":"Some","Fields":["205.185.124.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:789:a7fc:5e5:7f84:de31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["santaclaus"]},"Identity":{"Case":"Some","Fields":["nJYq75eElmEsUh0JYy5Z7QVdU+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UdXlPDF9roEGZC1cVIRwYAZ4Uis2awBLoTiqSrgvdVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:08"]},"IP":{"Case":"Some","Fields":["178.17.170.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstor2"]},"Identity":{"Case":"Some","Fields":["nJAKf29d0DTP/RktrsnMqoE9sCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COkQW+8AgAewpDVK2rYnUjrdst6zuHelO+9kff0GQpA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:52"]},"IP":{"Case":"Some","Fields":["86.105.212.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:75c0:29:39e6::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torntgonl"]},"Identity":{"Case":"Some","Fields":["nIqw1f7yQoHfzblHhKauTxuilo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fm7rsc9qlEDXuZMrKjah0vTpzGD+VIdwXn74cINX81k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:06"]},"IP":{"Case":"Some","Fields":["95.217.129.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6a56::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bashfulbear"]},"Identity":{"Case":"Some","Fields":["nIT/HxO3OOy1OA91yUM6sqGCdGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvHQIBnLv2GPfScKqg3VX1r7az+ucc/FiUhXMuId4uE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:09"]},"IP":{"Case":"Some","Fields":["31.171.155.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nGzeyDbbU5ELivUJsXgeFA+mnFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KHgN2+A4x2zP3EavS9/dpZKpURHjbrez4IsXJXy5bBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:03"]},"IP":{"Case":"Some","Fields":["148.251.50.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:1015::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e2"]},"Identity":{"Case":"Some","Fields":["nGH8CgFAHt9xxASGZeU5aOgTUfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4qxzLNRtdxXQQNMUqCEWRiQmkXcpOjGTlAKEM6JMrxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:32"]},"IP":{"Case":"Some","Fields":["195.176.3.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::23]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coffswifi4"]},"Identity":{"Case":"Some","Fields":["nFr9Sark4CcrrXgMbdcc4aNgEqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ugubOemkNFDGLO0BETo3SzIVgNztD4mxaOjoZ6BPxpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:29"]},"IP":{"Case":"Some","Fields":["82.223.14.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:91::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay27at5443"]},"Identity":{"Case":"Some","Fields":["nEzTIb/qeWzocfGGd2AB+++IZCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gcTcAUwXmNjGop1K+hsuL2xJAuz53aZHhGlkaz2NjQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:47"]},"IP":{"Case":"Some","Fields":["140.78.100.27"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim04"]},"Identity":{"Case":"Some","Fields":["nDBbwJhSx8ti6aQfnsoQi7+yNSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ERfb1T27IGoVty/Fe9w2HF3Sp7uHsHXI24t2RkhIaeo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:55"]},"IP":{"Case":"Some","Fields":["178.27.85.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepGreenResistance"]},"Identity":{"Case":"Some","Fields":["nCv5seMOuxo4NvoEvu6MwZLMHls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8zFa8R+xhRsHVhYqGsy7HOTMm87MucNeLHvcUVqak4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:41"]},"IP":{"Case":"Some","Fields":["185.165.169.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clan"]},"Identity":{"Case":"Some","Fields":["nCSkQQAOZjbUBB//1mnI3RZnLLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rWZ/mSVZhTDhuE/ogJ6oL+zzJCg7atoODGASOgxhzvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:58"]},"IP":{"Case":"Some","Fields":["205.185.123.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trimblelink"]},"Identity":{"Case":"Some","Fields":["nCLAFTLQMMJJ3joxVcbjorwzs2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hipuAQlTgUkfJJdMa4B3cVWDWuKoXsjKEDaTNpQET7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:37"]},"IP":{"Case":"Some","Fields":["46.246.126.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex95"]},"Identity":{"Case":"Some","Fields":["nCIyrezOxq4MRX0u065jQlVAxZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6W97zV30w1PxmxquObaid6KJ9UOKpMOl6XOuS4+PIVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:43"]},"IP":{"Case":"Some","Fields":["199.249.230.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::184]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN21"]},"Identity":{"Case":"Some","Fields":["nB59khFdQxOFuMrqanwV+4nOI2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0IhZdg42QPrjMabmN7MjQnta0dcpkBtXcSzPrGQsA5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:35"]},"IP":{"Case":"Some","Fields":["199.249.230.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64a]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei04"]},"Identity":{"Case":"Some","Fields":["nB5H/yBfNJ1p1WmuftFTZqVVSkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GTQqYrb/ZVl+PFj4l1XKGfSFQZpvfQA8ZrLl6qNwn8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:34"]},"IP":{"Case":"Some","Fields":["185.162.251.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5de:6489:b7ff:fe8f:8434]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JanKuciak"]},"Identity":{"Case":"Some","Fields":["nBVZxGrQJ57vb9GH4bJ9k5wwMIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yjxf0AoXEuq2jvkO9x8ysOC4GBoNKk1Je1C+Hh/y8fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:29"]},"IP":{"Case":"Some","Fields":["217.79.178.53"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:5bf::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra52"]},"Identity":{"Case":"Some","Fields":["m/YA1sBqP74oIWxYzSQaiZMcvn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F3F6tdajJ6Pwmo4qKdr7FXXG6HyWqwbz0durh7gGYvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:25"]},"IP":{"Case":"Some","Fields":["51.79.204.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LonelyNeutrino"]},"Identity":{"Case":"Some","Fields":["m/ShNzB3SGXvbdcQLZivGjPlTgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zTgJeOubCBxo13liaqY3jOFIY9FiqFnq55NK5yDqJQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:04"]},"IP":{"Case":"Some","Fields":["46.4.183.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saturn"]},"Identity":{"Case":"Some","Fields":["m/Gqu4t4ZC3BJB6GoqdYi4SWxo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdVZKM/QPRbXYGL/Pxnab1FZ5xLTU5K/urnkNz+Yxe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:17"]},"IP":{"Case":"Some","Fields":["183.88.130.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wendigo"]},"Identity":{"Case":"Some","Fields":["m+wiKbo+MOmFeSCe/KQoFYYR1X0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tewiIoPs8LfvscMCYewipPxBPDeOgpgJEu4Sf3e/4Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:31"]},"IP":{"Case":"Some","Fields":["65.108.82.81"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:82e4::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["LandShrimp"]},"Identity":{"Case":"Some","Fields":["m9Z2UIbo9LFdF/Fm9BkRSU7Xi94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Eeb5cgI4W67bRxpLWfaVSi6KY5z2uE3Ibzoj2BRTO0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:44"]},"IP":{"Case":"Some","Fields":["95.216.22.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:1669::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4mnesia"]},"Identity":{"Case":"Some","Fields":["m9DuebuYeN1tjY6ioojV4wHlwTY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tER2UUt7tudxMkGdqkLwDjL5NXlB52oW/NQ7Gsk7Cyg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["88.99.2.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:173:2953::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lavaeolous"]},"Identity":{"Case":"Some","Fields":["m8new3HRcZDwGF182kLzCmF7an8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bb+jky3nfld2oaLaNYgZiA5hGsyiwBpw/KJUjle1lzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:28"]},"IP":{"Case":"Some","Fields":["37.48.120.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1af8:4700:a114:6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fogelholk"]},"Identity":{"Case":"Some","Fields":["m7t4g6vRi2hHDoII3rWqSyrjkLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Js8LSuShrdQ4go2GSwEJ9U/WB3922C8gEUSWuxgXbCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:27"]},"IP":{"Case":"Some","Fields":["31.208.128.22"]},"OnionRouterPort":{"Case":"Some","Fields":[990]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OasisWorld"]},"Identity":{"Case":"Some","Fields":["m7n5OORC9XqPUJy7qWP8gNC7mWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9UpZhcflwjyn0PbZm9HOGyLrbNUj7XX9xm0C5jTkaOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:35"]},"IP":{"Case":"Some","Fields":["193.124.176.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pellirin"]},"Identity":{"Case":"Some","Fields":["m7a2hVv/t7LGKLTIYRyHqbbPjnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s3BQxVHtBxRi/BwGWtBLdaMsB1t+9Mk4g8tobb1BuhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:46"]},"IP":{"Case":"Some","Fields":["179.43.141.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iamnordischerring"]},"Identity":{"Case":"Some","Fields":["m7ZrPmBVPl/rek27Upn+v0XmBbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8zBDZwQYfi14kDQSENR7CvdlBijYcnxmGgOViocqMBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:58"]},"IP":{"Case":"Some","Fields":["2.205.237.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["calator"]},"Identity":{"Case":"Some","Fields":["m6qpy6MQnCyAfy6E1cnAyMFH3OY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/i5evaZ7r8o5RVMOgmeQVgk1CN0x/inktiyTgKUDm3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:03"]},"IP":{"Case":"Some","Fields":["178.17.174.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:73::d735]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FASHIONCLEFT"]},"Identity":{"Case":"Some","Fields":["m6kzTadpp8ltRk+eo4qXAIi2/ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kWQphYC4LwIpcXD1YrKL7HACqa8d+4XnJ5416c7GW+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:51"]},"IP":{"Case":"Some","Fields":["95.217.223.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9ed2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ekumen"]},"Identity":{"Case":"Some","Fields":["m6hOjJAINnb4bHQnyNEFkl8TcWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["honaJjm5br0kSFfKD5RnPsg7j3Lu7YrUYepjUbNhbPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:50"]},"IP":{"Case":"Some","Fields":["95.142.161.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:47:216:3eff:fe3d:888c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pivo"]},"Identity":{"Case":"Some","Fields":["m6EonNz9kHuNQKirEvNr5iDdQIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T7GYRlA5lUhvSBZpuigkqVDn2YiFQRu0FHjnIA5sIFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:11"]},"IP":{"Case":"Some","Fields":["207.180.216.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:1052::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation59"]},"Identity":{"Case":"Some","Fields":["m40IJ1yFKmd+jGXh3adEMb5Qm0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jXElPlVPZAWn2CGQTnoUBIfQR3a7VLwy/AOVv4HLI8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:21"]},"IP":{"Case":"Some","Fields":["51.89.143.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["m3uuMl69rYWYaNLGC/ZYjKWUkDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzUa9NrUqcMno63wHY4UfpG7T05xhp0OJKorkLRwlxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:04"]},"IP":{"Case":"Some","Fields":["83.136.106.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:3abf:d9e5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThinkPad"]},"Identity":{"Case":"Some","Fields":["m3NP8W9XeFAJFv4kOxxG2TI54bY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a01J+97HcSanmhTLbfF6MHZXWuZt6M3RgpZyhgY6JoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:11"]},"IP":{"Case":"Some","Fields":["152.86.13.206"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fleischgewehr"]},"Identity":{"Case":"Some","Fields":["m17TNw4AKuuyqbJeMhPBgXzNLYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DnJRC4rVPqlU5ge2wEy2S+PRKyPdS7qMMt2WN0aXq6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:51"]},"IP":{"Case":"Some","Fields":["51.15.65.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:180b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5gnPr4VhxQm2zHcHQcm"]},"Identity":{"Case":"Some","Fields":["m1Cb6Dh8poddPXzaR3i/keHPcdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RXsZ5+S87mV8kEpVCuNdkXTg6LlGTU2nplikUapVlxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:38"]},"IP":{"Case":"Some","Fields":["61.197.78.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:24:337:21a:92ff:fe22:c7b3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scamtown"]},"Identity":{"Case":"Some","Fields":["m0R7eHj38YnQfTJuzDmTt6DF3BA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2f42nizlZcME1PcLStK5elYOA/9Cl06MWAjJdwwIoGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:52"]},"IP":{"Case":"Some","Fields":["206.189.110.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scaletoer"]},"Identity":{"Case":"Some","Fields":["mz56CtmgVJhMyH58qdXBFyAtRdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NuKmZ4U4wv0vTyqYDDj05oyobOoK4aT6/iG2Y/A1sxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:49:28"]},"IP":{"Case":"Some","Fields":["51.15.36.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:e12::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitFinland"]},"Identity":{"Case":"Some","Fields":["mzHx8cFVT5/7NFWRH4LoGO98eIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zHSyemm2QAAi42rl+DWhrC70+hyeUrKfS3fblrzPYAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:22"]},"IP":{"Case":"Some","Fields":["185.100.86.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:1::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MIGHTYWANG"]},"Identity":{"Case":"Some","Fields":["myvH79ZhByr63FM76NzxwZ2MLcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaXbHZk4mVn+xOBsYlajcitBy6C4lQE3G7oFwzaiXtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:06"]},"IP":{"Case":"Some","Fields":["188.127.69.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29d0:8008:c0de:bad:beef::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Agafa"]},"Identity":{"Case":"Some","Fields":["mynk9J4XEI/koZG8bOnFn/uocnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b6uPylZlxjne4+49sELWV+R2vZ4xauFy60KvPoyXlDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:57"]},"IP":{"Case":"Some","Fields":["95.211.120.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde8"]},"Identity":{"Case":"Some","Fields":["mySyFJYxFncENi4HNWqem/wfDwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d430t3AUc3+cX1g+ybjyxiq+p39p98Hb36AJyMDMrZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:33"]},"IP":{"Case":"Some","Fields":["95.216.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:3d9:200::201]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["horriblefarmhouse"]},"Identity":{"Case":"Some","Fields":["myJYZZlGoHhZWZ99NhEpxPkSgk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sAKQ3zK3H5R30qGbgtnIYheLK9JR3WprwFZqwgWAHcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:22"]},"IP":{"Case":"Some","Fields":["84.168.126.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay"]},"Identity":{"Case":"Some","Fields":["myJUK6CF+OzMi20PiJe42xxubWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vuMrELDFjAHUFKtx3oQIjnvUX2+s95LexmSS7tBEqGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:35"]},"IP":{"Case":"Some","Fields":["139.162.142.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe08:e487]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer86"]},"Identity":{"Case":"Some","Fields":["mxwP4A/Z1Fvh+bCLXZITQweeNHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+9FDFBrSOrb9C+hM3iwPqQQ55G+wnDre7Bm+YuRXFuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:03"]},"IP":{"Case":"Some","Fields":["95.214.54.101"]},"OnionRouterPort":{"Case":"Some","Fields":[8186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM04"]},"Identity":{"Case":"Some","Fields":["mxLA1aNDUATz3hSfg+dS5EUi4pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dGS6nAhN+0XruP4ywtGd5hDMYOnGfC5oVGLV31I2/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:40"]},"IP":{"Case":"Some","Fields":["185.239.222.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mwcKBL48k2TH4NlhuzVpwzRmPKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSw/xWO6y7myt9ncYOTdchIrMyNYvu/yFT/gEBtcJvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:35"]},"IP":{"Case":"Some","Fields":["185.220.101.50"]},"OnionRouterPort":{"Case":"Some","Fields":[10050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::50]:10050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torrible"]},"Identity":{"Case":"Some","Fields":["mu03O9lBXoO9z8c1/KKIF4gpRZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6WsWliLbRg2l61ER7vrfAeXXtYI+8JdIq8mgeS0Vfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:17"]},"IP":{"Case":"Some","Fields":["45.79.218.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fed5:bb1f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1190"]},"Identity":{"Case":"Some","Fields":["muj1TtSAK5K4bsCFwq9XopzYlEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwWJmQKvROmG3vhtIVAGnx/uwgu3ZJZAylL4qY91+Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:11"]},"IP":{"Case":"Some","Fields":["185.220.101.190"]},"OnionRouterPort":{"Case":"Some","Fields":[11190]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::190]:11190"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["muQ8va6XeRGTbIr3+24rqxlaGDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gn0C3n21RPElEHF9sFRftfJ/nSOsWp3HDASMglMwvmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:33"]},"IP":{"Case":"Some","Fields":["65.21.53.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c012:66a0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay1"]},"Identity":{"Case":"Some","Fields":["muOJZCWoU5iVJGckow8t0QhbO08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LKgy4roqGcB/uY/iJh/gHWcgY5nr7VKXJoddy2gL9Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:01"]},"IP":{"Case":"Some","Fields":["74.208.140.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fokaia"]},"Identity":{"Case":"Some","Fields":["mttD2EKFL03gOzUC+pDLq58ECpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ifgWrEV3mJ+OHjWmtMed8WjI7dhADNUE8Q30gWPS7IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:28"]},"IP":{"Case":"Some","Fields":["37.221.192.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:69a:74ab:8fff:fe06:a47a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip5a"]},"Identity":{"Case":"Some","Fields":["mtkDF92i+JjrCuDyCXbql+evkBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Fjqctq3sa5NV/BdFKwU/IFBKgfyhlTvsV+QAIjm1do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:34"]},"IP":{"Case":"Some","Fields":["185.220.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::252]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rand0mByte"]},"Identity":{"Case":"Some","Fields":["mtKFRNrlepipEeJb/yTflIRgZxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d8K2UZcZjk2ydmJHknhuAQt2hP4lcMe/QrfcEC+pHDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:21"]},"IP":{"Case":"Some","Fields":["212.227.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YonderYuccaN2NoExit"]},"Identity":{"Case":"Some","Fields":["ms0haAzL5lpdWmONhag4ioXW7gU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+MBDqP4sZeSkj6aWyvFCWuUtkbJ5p7FcYj6/lKhBIDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:31"]},"IP":{"Case":"Some","Fields":["212.51.136.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6a16:1130::2:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ingmar"]},"Identity":{"Case":"Some","Fields":["msHm1tZdgDakLz9riK3Cvr3hfxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5q2G0tQPJuyRU8iRaJCCiaLXyWg06HCyZJ3WToyuLNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:17"]},"IP":{"Case":"Some","Fields":["93.95.100.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atomcats"]},"Identity":{"Case":"Some","Fields":["mrk7VCIUnl3/S+ajgU4vbZZI22o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkKYRJxYg0/K7d+Cj8hjjMe/kiy7rM2XAVVC86UcFj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:38"]},"IP":{"Case":"Some","Fields":["51.68.204.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:158b::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["instrdayRelay"]},"Identity":{"Case":"Some","Fields":["mrjeNizVPvAv6HptDnWINdIlais"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28jxN2hClABsGdJkFk862Lgr2Ks+fNrcaxl/o6Dp9rM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:14"]},"IP":{"Case":"Some","Fields":["76.219.192.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torexitnode38"]},"Identity":{"Case":"Some","Fields":["mrLvIinvDTZIz1+hSR3QJnILrTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ8pUNWIJR3YFFhTlNhSOHDvpUeDnVj6v+vlxLFU/TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:29"]},"IP":{"Case":"Some","Fields":["50.215.11.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:3024:1c3a::81b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1178"]},"Identity":{"Case":"Some","Fields":["mqvfWo5dVGZjqReI7P2cSEdA12E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W1aTVpTwZCCoRUHAN4TI8HPoWnCMfevBMezXQ7UzL6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:33"]},"IP":{"Case":"Some","Fields":["185.220.101.178"]},"OnionRouterPort":{"Case":"Some","Fields":[11178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::178]:11178"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eniac"]},"Identity":{"Case":"Some","Fields":["mqsmiLyTNMcqoZ7L6uceNGqJZWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5x0NwtZSKSe1exTYTL2lb5ge9KKMD/DdUg1wj7tN3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:12"]},"IP":{"Case":"Some","Fields":["51.81.56.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flurry"]},"Identity":{"Case":"Some","Fields":["mqaS/ptq4zmxZbawNNt2kHIwXcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J63VAIr6UxQ2V2Vyccr6zL64HAO8+mcRvI6YB8fM//k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:30"]},"IP":{"Case":"Some","Fields":["51.15.73.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.12"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e1"]},"Identity":{"Case":"Some","Fields":["mqP/NeelSdIzfpYjM9Nm4QL+TVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wk1in6OAUBsUKyxIbdkk2HpeN/BFNifueSL60/m4cOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:00"]},"IP":{"Case":"Some","Fields":["94.230.208.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::147]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FromSwedenWithLove"]},"Identity":{"Case":"Some","Fields":["mqPsO9M0yJmHYs81h2EWTSJIHrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b7wBwTjP6Yo8Rvave9D1ZSTRoeI4BupeOtPFFnGN79A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:54"]},"IP":{"Case":"Some","Fields":["46.246.44.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:752:0:18::17c2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv123"]},"Identity":{"Case":"Some","Fields":["mozZzWKynbBUnioRfrLwFPWv/vE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bplP7RjUsa2GBjk4m2H/WGbEmTD680wWYl1d+wRQZhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:52"]},"IP":{"Case":"Some","Fields":["192.42.116.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5523]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["mokCuYXi9YvHQGcQQOcWWskE3UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f5lKRfu3AOkXVkO6Aj8CriGtoLyb5zYXo/W+85wfnwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:09"]},"IP":{"Case":"Some","Fields":["185.241.208.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["naruto"]},"Identity":{"Case":"Some","Fields":["moIRT3Z9Ci5ag/9ggVtkBErCJLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOki9glWK8PgxcJJppC0ymxL8SJZgeU7VSE2pxjxtZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:48"]},"IP":{"Case":"Some","Fields":["162.251.116.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fqglu70q6"]},"Identity":{"Case":"Some","Fields":["moDLhEM6rpay9q3EBbVm4YuenQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rn8vu3pD1ExKiUuxqkI9VLIVyjJilZC9NTYn6DUmGfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:13"]},"IP":{"Case":"Some","Fields":["82.66.185.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipga"]},"Identity":{"Case":"Some","Fields":["mng8qp2roXjZhkRx6ShwRcv9xyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Syhbsa8lobSIQf0xct8iQvD3fJ9UnX8PYrr1x/PsR0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:39"]},"IP":{"Case":"Some","Fields":["185.220.102.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::246]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["D3S4RS1"]},"Identity":{"Case":"Some","Fields":["mnXMAFyg2S/9P5YAOyUkwgsFPig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MRNltQH+8KK2DdyjDoI7P6fhBJWGP+j/ZnriQN0rtLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:11"]},"IP":{"Case":"Some","Fields":["78.47.43.253"]},"OnionRouterPort":{"Case":"Some","Fields":[6080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mmZxilT79XUadBZQK6RzjO+kgj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b0WRn2/2OO3SJESr89xdYUYQQYFNGqQ75yoI1Efqtho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:52"]},"IP":{"Case":"Some","Fields":["185.220.101.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::192]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frodo"]},"Identity":{"Case":"Some","Fields":["mmMYUmoRv0DF5thvlpKILLA0eLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcBVuypfy0jPSuTf5iGV1KnFOiSieVDU2Pr1YH3zhdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:47"]},"IP":{"Case":"Some","Fields":["185.170.113.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presaultboubd8"]},"Identity":{"Case":"Some","Fields":["mkusbWsUVvs/jAkkBJ1Icumxr5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SBtpP9CptR+iKaxpemIzQc77R6KmbgK9XBRpeBX7RZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:01"]},"IP":{"Case":"Some","Fields":["193.46.254.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raktentechnik01"]},"Identity":{"Case":"Some","Fields":["mjnnOUKdvEzlmLcSV2TWwm3HP8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wvpRijboVWohaueuk1MxDLtT/wNSN4SdZVslkb/Mew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:57"]},"IP":{"Case":"Some","Fields":["144.91.124.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dcon"]},"Identity":{"Case":"Some","Fields":["mjmwt1cJ3XR/XZSn8kxr/YC8WHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zpGvn5vAubBHnosquND/uOIycZmrnREyZxQ7qaHzXI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:48"]},"IP":{"Case":"Some","Fields":["92.204.40.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mjOPOExf06NgTjJQzPX192Kddxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w73U6Cgyl5laX1vUaohhrBzzzp9BsPpOW6UT4EhSYQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:58"]},"IP":{"Case":"Some","Fields":["185.220.101.202"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::202]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber40"]},"Identity":{"Case":"Some","Fields":["mjB2xeuNhRULbKargfnTV5CRZZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3VswIt7YJC/51fd0HdzzoTzjo9NpUhm9lIwGXAvA3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:44"]},"IP":{"Case":"Some","Fields":["185.220.101.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::20]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Todry542"]},"Identity":{"Case":"Some","Fields":["mip+Vcwh3yxhcQaP2d9rNatQQTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YrkMGdtMOGNDYBMaJmI7atZpHxkEIUx8sKxrhQGvkok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:09"]},"IP":{"Case":"Some","Fields":["92.141.40.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9393]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigBob"]},"Identity":{"Case":"Some","Fields":["miDbvGWSiSFYy7GbaFwrd0UPX7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hA12ieDqR1EQR8mY8W521tHomPTuxKE0d3+dpWUx5N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:01"]},"IP":{"Case":"Some","Fields":["194.113.58.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mhOaQYgcIHRrJYpNeLQ+wcv7qdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esu6yHVuyuegVO0n6knZRBHzcyeWl+Vn9KmQrvm/sac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:08"]},"IP":{"Case":"Some","Fields":["23.128.248.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::ec53:d3ff:fe97:298a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lnag"]},"Identity":{"Case":"Some","Fields":["mgqvLkO+N0TNHWzVMshh9aVo96k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ObcPbPhMgIgck2VsJL6Vu3EmO98CY78MwEWajcjC9gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:49"]},"IP":{"Case":"Some","Fields":["160.119.249.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThisNodeDontGlow"]},"Identity":{"Case":"Some","Fields":["mfeFEnhfRSNqNTIqFkOqCNxjmbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2WJOIwuGv3CoccLdccZUUu0HjibfmOJfOowO1ObdPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:52"]},"IP":{"Case":"Some","Fields":["146.19.213.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9114::149]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masterchief"]},"Identity":{"Case":"Some","Fields":["mexk/p7w4OzsPhJaIyfCd5weeUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsW8Qi3Nzt3953URZuDXl09/cI6Q8lbC/Wyp4SLSrLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:30"]},"IP":{"Case":"Some","Fields":["46.4.66.188"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:244f::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["meunK6CO+Zo+CuTb/SeSvyoYxGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xviLKeXNIHi2PuXlxHaa6HHTceIns+lJu1bWggWCj4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.35"]},"OnionRouterPort":{"Case":"Some","Fields":[10035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::35]:10035"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["meY/Lrhgkh3544jaMOz1JFUdk8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["22iN/e8q0YMXmv9WTTWVvAVwVgEHkdWhUJFG/MCzE20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:22"]},"IP":{"Case":"Some","Fields":["180.150.77.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViDiSrv"]},"Identity":{"Case":"Some","Fields":["meJG20gLMTowErwzYwk8wmzSCcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rUS74iF6iT82lbThV/V3n7dOzSeHqO5iuohMn/riIpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:30"]},"IP":{"Case":"Some","Fields":["173.212.254.192"]},"OnionRouterPort":{"Case":"Some","Fields":[31337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:3972::1]:31337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber06"]},"Identity":{"Case":"Some","Fields":["meFSzbEvWrvgjAoupbEmzT8frF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xBMhlCiYb0v4INfFBB7sr3Gn0Tx7YmKrLV9/GchpcPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:05"]},"IP":{"Case":"Some","Fields":["185.220.101.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis65"]},"Identity":{"Case":"Some","Fields":["mduZ3yLuUrmzoydJwS7ep48Waz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nimdbCU1Di2L/WADpxAdZU0sSXLAnnRxLbAVMflGOjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:13"]},"IP":{"Case":"Some","Fields":["91.208.197.112"]},"OnionRouterPort":{"Case":"Some","Fields":[4620]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5120::5e]:4620"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyStIC"]},"Identity":{"Case":"Some","Fields":["mdq/98KOmKwIzzKEhHJMjcQjvfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G6T3MRKicUjFVXX6VAAoG60aaPmmV1FhnpUq6UAtu1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:20"]},"IP":{"Case":"Some","Fields":["116.240.187.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie0"]},"Identity":{"Case":"Some","Fields":["mdXJpacjiYbR6h13cc+BtKGSxNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["77jI1TDRbwxchwvnnUv5hmn5Nu3RakXKZ7RqMWsMLf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:46"]},"IP":{"Case":"Some","Fields":["65.108.136.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frikadellenbude"]},"Identity":{"Case":"Some","Fields":["mcyeHEv1wR1/yc8kndfgQ14FddI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bheOzhkiS+Aybz/KeK10a3E1tSxlJOnvhMKYDSWZUog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:40"]},"IP":{"Case":"Some","Fields":["65.108.135.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:32ca::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prayerfortibet"]},"Identity":{"Case":"Some","Fields":["mcWs71rI49PE3nkATzrGSbN1iRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9PaNUCEjv+SWvvZNlfQkv0lzy1XISgQcrDJb1UKB6Ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:58"]},"IP":{"Case":"Some","Fields":["91.244.181.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isis"]},"Identity":{"Case":"Some","Fields":["mbLL9u/YCs0wPoCJZWZo7yNgFc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xVmaZFtbXj/zXveQ37AUMeS+7zDVi1O8wPdN/ZdDRWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:55"]},"IP":{"Case":"Some","Fields":["188.40.159.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast"]},"Identity":{"Case":"Some","Fields":["mabt7ET3M6yvJTmzUxGPNtJzIuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqr3xjOLO1n8DO3wRV+3gmgNJLi/9+a1sz9xIQb8TOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:21"]},"IP":{"Case":"Some","Fields":["85.31.46.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NjordSkadi"]},"Identity":{"Case":"Some","Fields":["mZtKn4N6NF6qa8EcLx9wHF0R49w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4upKXkaa0NcKkIx7ueErKdOpxBJ+vLZMjsENr81exVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:46"]},"IP":{"Case":"Some","Fields":["185.25.51.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::f1a2:de3f]:5005"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["udeserveprivacy"]},"Identity":{"Case":"Some","Fields":["mZKQQAVOwe8JJ0Z+RYijeHmJHJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQkrvtoVQwmsru/ZPTvDGkXdlIru0neNQCy/IjknWRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:03"]},"IP":{"Case":"Some","Fields":["51.68.197.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plugrlogin"]},"Identity":{"Case":"Some","Fields":["mYagumWqCdtecNxwgc/Kcs9+1Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gU6B5zvngdcTzGU4pyx34WqEWruAbqeUyNYd6UKS1XI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:45"]},"IP":{"Case":"Some","Fields":["172.245.134.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mXPh6XMKWP26nhEtKzNC0sDZIbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jGPUDqNOq1EjR4z3gTqe3zjRUzwK848RsufHEZheWVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:59"]},"IP":{"Case":"Some","Fields":["185.220.100.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:3::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mXH1GjJ0dYtcWeHWWA7SwT4Ty+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bd6oG8+cfxNBNhrNVA6BSI8u+tPVACEye5A50cixRHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:11"]},"IP":{"Case":"Some","Fields":["185.220.100.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:2::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reeses1"]},"Identity":{"Case":"Some","Fields":["mW9M/XgTAgO4DoVKTvbKI1XGxyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TlpxUDMPgmFCZm0xcQ9ZF8fcf08iOvBziGGq8vEQ8Xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:36"]},"IP":{"Case":"Some","Fields":["172.106.112.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mWvI8u6eFbOotla8FNPNJQvcVW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IusutdXar8j+m/3RKViy0+D4Px7/ZnOtwQuNoveO88o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:34"]},"IP":{"Case":"Some","Fields":["81.169.173.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42ce:4d00:9ee8:333a:7b86:8014]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mWaetxaJW9uyv0eh+r37/+sebcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWAfsm77XEe7V6iVmfflhfHQ4QBo+OP8G7uq/s2FY4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:16"]},"IP":{"Case":"Some","Fields":["161.35.2.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mVjslJIvElLh4dp0il7jiJzjy4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VMZCbR5QPPayvSz/9k5CBqv8PIhvbVTgK6zkNivz4nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:10"]},"IP":{"Case":"Some","Fields":["65.21.56.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bassblitzed"]},"Identity":{"Case":"Some","Fields":["mVNiwE6vshS8lr6djw8LcS07t2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ERhARU23ERpPonbl0lI1Mnz+I2tSZpezRw65RVMhhc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:53"]},"IP":{"Case":"Some","Fields":["192.24.210.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0184"]},"Identity":{"Case":"Some","Fields":["mT0x3dcu/4w/vFpImd+F4GLk4Mo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DE3Uz7qVbjeg8b89d/aDwSV2BBJOiD7KtHpnjMVaGV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["185.220.101.184"]},"OnionRouterPort":{"Case":"Some","Fields":[10184]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::184]:10184"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WalkAway"]},"Identity":{"Case":"Some","Fields":["mTjjqsZM6dVrdD7NiyyiNa+533Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jv/2rkeGfc/8bNmL3RJYb+5IvuJ0EVhp2MMJmTrQaOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:50"]},"IP":{"Case":"Some","Fields":["31.43.153.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mTOfPmi8zBORvxTIIdgHZv4MWVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TVJxcbQjNF3o+0r5z4t+hEmtxgow6Wib9AtZ2xVITQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:56"]},"IP":{"Case":"Some","Fields":["54.36.166.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WaldoTOR"]},"Identity":{"Case":"Some","Fields":["mSIUcwCA7JEG7mkS5dfYlvo0hic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ULxCniCwz/XCsZ4hwYarmJbGuO5W6SMESLULtNWsacg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:11"]},"IP":{"Case":"Some","Fields":["69.174.143.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda2"]},"Identity":{"Case":"Some","Fields":["mPt1dJMtvW/p51FpmC7fulD4YXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2IDklm/Kpm/Uf7E1a49I1wh83Sn+6Sh38dmuTQ+Wuno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:51"]},"IP":{"Case":"Some","Fields":["78.47.117.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:1c57::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mPeTxzIM48FaRTU6/MFldHpANm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28mYJxLrJvVgfkajAWg99K2+NfGLplqqc3tLQldQnTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:51"]},"IP":{"Case":"Some","Fields":["185.220.100.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:1::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff3"]},"Identity":{"Case":"Some","Fields":["mPFiB6UhHQfkeXbkv0rEKWOegjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KJYZseNSEEsTpyjJrnq1R1YxiU0Kh0R/9LRjRzo9vjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:48"]},"IP":{"Case":"Some","Fields":["198.98.61.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["agrajag"]},"Identity":{"Case":"Some","Fields":["mO85gfdm+fh9fDmebdD/w4Z3Ea8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3TSZbt/w1tsw8DnTSv+UdDNnOJvOgFaQeZMcT99Ap8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:32"]},"IP":{"Case":"Some","Fields":["46.252.5.19"]},"OnionRouterPort":{"Case":"Some","Fields":[11311]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:deb8:a5::2]:11311"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpectacularFogNode"]},"Identity":{"Case":"Some","Fields":["mO4HwBk44BTDhkC2W1khYUOgUqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tDUqncH/JECeVvBwIo/uXekFqqLKqXTHLD/2NU36CF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:56"]},"IP":{"Case":"Some","Fields":["5.255.100.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:78fc::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OMICRON"]},"Identity":{"Case":"Some","Fields":["mM3a92QZxdvLz1Eth+P5m6XyJ3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmMkXMkiVvQjgCf7VTlZIS3tlm604WMSdPfKKD4xFhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:15"]},"IP":{"Case":"Some","Fields":["185.142.239.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roffelpoff"]},"Identity":{"Case":"Some","Fields":["mL1HE6bR4PTHqujDTOfYQ1dtPw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aG6IPbZC/FU5nTckcELGCmuJUfvsBoP8rgc91DrnuF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:06"]},"IP":{"Case":"Some","Fields":["87.106.229.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:f6::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTITor4"]},"Identity":{"Case":"Some","Fields":["mLSSO8Y2vyERwQD2ky7jOguTfrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dwWreyPRR8UA/dSrk5PCK8dcMIGbKJwIVH9PYAxnF64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:40"]},"IP":{"Case":"Some","Fields":["82.221.128.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PerplesTorRelay"]},"Identity":{"Case":"Some","Fields":["mK5H2FHXd96DLNyiiBcGOonSFo4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wubGskOhy7NpbAGUbQUq0f5WVB2Ht56lGR3PFmdAq8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:40:27"]},"IP":{"Case":"Some","Fields":["149.248.12.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:38d4:5400:3ff:fe8b:65f6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortare"]},"Identity":{"Case":"Some","Fields":["mK4GqbssZRd4hP0Rd0r1DhtyHY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/D8dWJIdwIdVtXynGMdNLkKlO0XUt8aIEnh3qawCRCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:25"]},"IP":{"Case":"Some","Fields":["188.241.106.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maplefire"]},"Identity":{"Case":"Some","Fields":["mKYCLTndJZAtdyi2W+KOVVf1uRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u3yGDYbH0obgxT6NqvI6CmJVAPEa9U95GBNoqvMcYaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:19"]},"IP":{"Case":"Some","Fields":["116.12.180.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wild"]},"Identity":{"Case":"Some","Fields":["mJdvhNRflfiDBTBJ33ihSrYF25M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jb88ep8aXeNWjngBC0kcRF0IhAPetBQ0aDb0vPSQdwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:04"]},"IP":{"Case":"Some","Fields":["77.91.102.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei03"]},"Identity":{"Case":"Some","Fields":["mIZ/UkJQWi3VgchbHOJWCQuH8Tg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OSD07c/ONjyUCGJV1Jc+gQnFIlVD/72fnbJZjOhgKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:54"]},"IP":{"Case":"Some","Fields":["188.68.43.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:688:b854:7ff:fe48:bdcb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedominsteadofnsa"]},"Identity":{"Case":"Some","Fields":["mIBj3w+9Pbc6j+H1ggcSuV0kjHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CgA5alV8UT3YTKoT6spmGAPdcm+50Hm/sRLm3hCuoVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:57"]},"IP":{"Case":"Some","Fields":["136.243.102.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bolard"]},"Identity":{"Case":"Some","Fields":["mH0HBtQgcPHiFCqfzLVrOIeAjTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ThAsBesVLMv/EfIlb7M7tTuQvxLn5tF5HDgl8bwBe14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:16"]},"IP":{"Case":"Some","Fields":["31.131.2.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubPhantom"]},"Identity":{"Case":"Some","Fields":["mHz8Vv174rlAuR0IfIj4I4ZFNmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["evQYQWcN0AVLJiC8bAIRXC3AxZTW0Yb2RUKXMKLIH0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:24"]},"IP":{"Case":"Some","Fields":["84.239.46.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontsnoopmepls"]},"Identity":{"Case":"Some","Fields":["mHtRQACvGpQ2t6k7+bE1nFG+xjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zh9wzWLRWstgkG1au2YA2xNI4M2yE2dvN0wj1sR0X78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:47"]},"IP":{"Case":"Some","Fields":["119.18.21.202"]},"OnionRouterPort":{"Case":"Some","Fields":[12760]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chad2"]},"Identity":{"Case":"Some","Fields":["mGEyq7XVEvr0DmN3W2wHInqKnLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x96TWWs0Fath0bPUFAFVbQ1dhlZPAvpnO2OPZG7EC68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:28"]},"IP":{"Case":"Some","Fields":["132.145.38.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilgrimgreyreborn"]},"Identity":{"Case":"Some","Fields":["mF/eh2ivFR+1dgGxd9I7XChaoS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLCw9YEK1G8daV4H6R8uiAooAJNNg+1+zYkaQzEBjMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:04"]},"IP":{"Case":"Some","Fields":["174.110.108.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KruemelFreedomRelay"]},"Identity":{"Case":"Some","Fields":["mFeaYNzJGdWccTbGsGzcj+OuVxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DudZ7tS1sMFaxLGNcTqz/ENyBkyRvp7Vh8OJZUQOPEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:05"]},"IP":{"Case":"Some","Fields":["130.61.48.162"]},"OnionRouterPort":{"Case":"Some","Fields":[3456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8002:5100:4d56:ebac:3c5d:a65b]:3456"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelayepsom"]},"Identity":{"Case":"Some","Fields":["mFGPdHAiFgSSgzNZmLZtxmQEwEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2SZ8HwKZygOZlixG1mCGzAGbXRVLFG5KcInEvFflgbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:38"]},"IP":{"Case":"Some","Fields":["82.39.132.97"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athena"]},"Identity":{"Case":"Some","Fields":["mE0iRNfaVDxBkVvt8dgCZDCrZr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JwRylgUVbMddgJz4p2bENFqFfg+NJmL8CdNrr5n5oZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:31"]},"IP":{"Case":"Some","Fields":["5.135.163.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e6bb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ppebBSDRelay"]},"Identity":{"Case":"Some","Fields":["mEis5lRtxBcvcOWwP9r6TuwuKnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k1z/New6TPH6yHWJGhEdL/n2PKxoO//H4Kau8Uy5TPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:58"]},"IP":{"Case":"Some","Fields":["97.99.232.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LadyTremaine1"]},"Identity":{"Case":"Some","Fields":["mDXVDVbHhxo8G6HIqGhl1IEM3HA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZEM5Bf4BYUP+5xgeP18ZSSEua6/SFQ9CN5qdPMXuk10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:52"]},"IP":{"Case":"Some","Fields":["212.51.141.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["mC8mHsXS19uJ19AyAAngLnUt/mk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ObwG6gBOCMMcWuS2BEwpolJo4SztfGKbzBMny6gVPug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:03"]},"IP":{"Case":"Some","Fields":["185.207.104.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809eff"]},"Identity":{"Case":"Some","Fields":["mB34goQiB6dZ+sjOV2UbjeiiHMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OkwdgOsQUMp8+K8tS/LY25vG6MbsFJox5ZVgPpBeTlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:34"]},"IP":{"Case":"Some","Fields":["74.91.26.170"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3e9::170]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission09"]},"Identity":{"Case":"Some","Fields":["mBON/T4sjInY9asR75tr/yctg7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ECxKpIi1x/VI0FqYuRrNDOzeeSOraCKT3Ooq86r2tNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:25"]},"IP":{"Case":"Some","Fields":["54.38.219.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myOnionBox"]},"Identity":{"Case":"Some","Fields":["l/wCggkSRBvC3+Os9DPkVXFLCvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0GKkG4vr43+zps5Fu83kRGYGkVwaeN+O5ewc8HT7kZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:15"]},"IP":{"Case":"Some","Fields":["89.247.206.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip1a"]},"Identity":{"Case":"Some","Fields":["l/Ua9nka0zmBziXceiYYQp8ls7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xECuRbgaRdrWwhcKvgBtRB93cqh4rSxn2GHaKpGQL9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:02"]},"IP":{"Case":"Some","Fields":["185.220.102.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::248]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nil"]},"Identity":{"Case":"Some","Fields":["l+agCRhfzypY2IRUXk4Y/2ErewY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kwhqh4b42ieAEe4pXZyoqwyhGxN4J+w4po2roWxVLww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:49"]},"IP":{"Case":"Some","Fields":["92.244.31.5"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["l+PN/cxy0xQjKKJTrZTHQjweiMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SepnCpjPqRpzv/r85OVN2sPB59EE10ZxXnfPwO+jNLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:00"]},"IP":{"Case":"Some","Fields":["23.128.248.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::8832:85ff:fe5b:13b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay21at8443"]},"Identity":{"Case":"Some","Fields":["l+NIznj5UleX2kgn/K6UwV/f+ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MAfwLEs821vWBO9RXKKemVWdvlqmijDLluB6oNR7iFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:37"]},"IP":{"Case":"Some","Fields":["140.78.100.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["l9gJ30CltBAvLElWp9t+cJthGDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0XaoK3QfjTU5jhwPoxf9LrCYHa2DznX1u96YP5b1Pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:53"]},"IP":{"Case":"Some","Fields":["185.207.104.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erasmus"]},"Identity":{"Case":"Some","Fields":["l9cQjQsC9Zr7lMOqIjDxyDSllVM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVni08wC1Y5mywi8+skbksP5mn4ALxw3ec4LdORYvpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:12"]},"IP":{"Case":"Some","Fields":["198.74.58.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe73:8ad1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi3"]},"Identity":{"Case":"Some","Fields":["l9PYP0LQzQYE3zvJvZTPyup0yCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6zbLOVzNeHn4aX2N1vq6t/88NIOIVIzZrTdxWhT8c0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:30"]},"IP":{"Case":"Some","Fields":["46.28.107.15"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldfoil"]},"Identity":{"Case":"Some","Fields":["l81Mz3avzXU0A7JBSfSa460/DCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VIqfu9/SKsz1IYYQ3aJPmm7QeGkbZk/apTAnDWRx6yw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:52"]},"IP":{"Case":"Some","Fields":["142.202.48.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeezNodesNo1"]},"Identity":{"Case":"Some","Fields":["l7xqR0c2kEiIm4QqWfkhsGAyens"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["osWKbKSpQ8eJ/29ONH0Kb/Au6FYNGRV+NiYOejM1Bb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:19"]},"IP":{"Case":"Some","Fields":["88.88.16.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["l6XAo1Uhnu7cjCv/snymmVsm9ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VFRC25Oa5BV+csuegzrSt/LcLgmgMs6fA5Xii4x1O70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:33"]},"IP":{"Case":"Some","Fields":["95.214.52.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Octogon"]},"Identity":{"Case":"Some","Fields":["l5suZ39tlIIM2NZFYm7Xdtyxy2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDmZtlt5swU2zwb8XlzH6sXEUjOIIzFomXUmDqFYjkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:23"]},"IP":{"Case":"Some","Fields":["131.203.32.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["l5QLlCZGTCS8q3B5cRwqllgA5Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mx40qukW0SkGaNwmepRAsxZCE339jiqwFIhl7tKRONY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:06"]},"IP":{"Case":"Some","Fields":["23.128.248.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::228]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["l4Gw7oHpWUEHOvo3VCs27XEBjUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7rm1F0SRzgMM4CprxdDh2uIl2+E0juCPVCcDRfaRYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:04"]},"IP":{"Case":"Some","Fields":["136.37.102.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["l3576rOCvZ4SxuC4uhXjhrFbx/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Ls+VuTbgBctenDbRKqOVYq/6iuwqS2KjdT4PZ15GjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:08"]},"IP":{"Case":"Some","Fields":["5.45.98.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:20:3467:a5ff:fe26:453e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sidereal"]},"Identity":{"Case":"Some","Fields":["l3dbVgdJwNidh5PbgtP/3g8fJM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tVKS1rnfvxcCpC6yfZpu8fz/XfEQy2TlPhqEz51XhW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:56"]},"IP":{"Case":"Some","Fields":["167.179.187.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:580b:bbcd:0:4f91:ccc9:dec9:8227]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet3"]},"Identity":{"Case":"Some","Fields":["l3VUVefcTpXw8u5mD88Rcmtr9po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xXhb433SCIV8uNnVxp5Zzrn4igrdxiQZ5Ap92mhoiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:34"]},"IP":{"Case":"Some","Fields":["94.16.122.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:4b7::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallsweatnode"]},"Identity":{"Case":"Some","Fields":["l3LvtTU5fJQsOriAT7Nc/60BJDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2Kxjeic42Kho9G2I4r9gRKheGj98ycH10nYArn6dFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:00"]},"IP":{"Case":"Some","Fields":["37.153.1.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nopejustnope"]},"Identity":{"Case":"Some","Fields":["l21iN0D5EO/m+X5ULozoVqgs7YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ISwxg3gYx9bGZclJTzoGj89PZQ1m7227vXfwV73jTfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:25"]},"IP":{"Case":"Some","Fields":["45.33.99.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arknet"]},"Identity":{"Case":"Some","Fields":["l10TjghRwG0q1SDffyRmCAKXDKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D5UXyR8yLezMxcPUpgmPu8BI4vr2zCTGmRtXzbKhZEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:30"]},"IP":{"Case":"Some","Fields":["75.10.170.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["astolfo"]},"Identity":{"Case":"Some","Fields":["lzj49cOGza9XB9Dc7UKPKBPKKF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P1U32J4SoM4svI5wrI0k2g2QdprzQfL2RY2TkkwSIuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:55"]},"IP":{"Case":"Some","Fields":["78.46.85.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:1381::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atoratvm"]},"Identity":{"Case":"Some","Fields":["lze+sC25/mqJ8qAiCB+33ax1Gus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYUfKuYTBXXFbhNl+WtbzYYiSyeKf8sYlcIUUXzFsxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:30"]},"IP":{"Case":"Some","Fields":["37.218.242.84"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c6c0:0:151:3::84]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eddy"]},"Identity":{"Case":"Some","Fields":["lzYHUmvpyP2gPruvUn1nrm/9Zd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qfhk0AVhs5DuZpaUuXCuzvcVsyOmY0xNH5qn1OoN3qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:47"]},"IP":{"Case":"Some","Fields":["109.201.133.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Karazhan"]},"Identity":{"Case":"Some","Fields":["lzKiMF9KtYlxp4PsVtcLMN/sMQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JolENc+WAVR21PRQdm/+mQ6I25nm4To4lprXAmKK0w8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:06"]},"IP":{"Case":"Some","Fields":["188.25.224.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2f0a:c209:1700:dea6:32ff:fe77:532e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defaultconfig"]},"Identity":{"Case":"Some","Fields":["lym0oc/oxiPiKqIvPFBPnCCpEgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AekiWoMaXUfGQX6T8f7olXapyx5yYjZjtAlpoZD1Q4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:15"]},"IP":{"Case":"Some","Fields":["51.195.166.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["memcpy1"]},"Identity":{"Case":"Some","Fields":["lx3ePD6KxNQk5UHEVPNZ8cd2qsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nu21S+wI9LJfdEnGG2F3I7YkQp6DRGDB+hw8lPMi8ZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:32"]},"IP":{"Case":"Some","Fields":["95.216.2.172"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[8082]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["csailmitnoexit"]},"Identity":{"Case":"Some","Fields":["lxXIG6jFsMaYiCA191xn1tZD2+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E4jj1wx+n9U5BFnsl2KUpv/HYtlrFvzrauspWecaQ9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:33"]},"IP":{"Case":"Some","Fields":["128.31.0.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0189"]},"Identity":{"Case":"Some","Fields":["lwqIMrrs3M9futSS+NZcPAhLbxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8bzX1YgFfgFkhth/n4PKyHwGnyVij+rKK7ppnUyQS/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:57"]},"IP":{"Case":"Some","Fields":["185.220.101.189"]},"OnionRouterPort":{"Case":"Some","Fields":[10189]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::189]:10189"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RatchetR"]},"Identity":{"Case":"Some","Fields":["lwM+0c9mVi7H6de/zr7dcWhAwjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iR5orBncTJ8qEpApZjp/fXZQw6Tuq6/PW8vNn3SePjQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:58"]},"IP":{"Case":"Some","Fields":["185.117.118.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["lusjjzuTd1SUui3KLjJoLr88mYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xHQLjVkjH8scjQCbbNoDW0Gv2z2jXznfNCwFxUBjb+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:47"]},"IP":{"Case":"Some","Fields":["23.128.248.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::220]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["karfiol"]},"Identity":{"Case":"Some","Fields":["luCV1c2/w5iN63COwVU0ZHJALDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BrM/IQABkoG/gwLcMDpa7utZJ3XvIc0yUyf4+GO3KYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:49"]},"IP":{"Case":"Some","Fields":["109.70.100.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueLightning"]},"Identity":{"Case":"Some","Fields":["ltZWOEVZkQg0z9sSjYQ/gZ1dL9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tnx0xsy+2fqaVg2horDXPv7o/uqErXNAZucUI6zMKdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:45:50"]},"IP":{"Case":"Some","Fields":["152.89.105.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:39:604:9866:92ff:fe56:17a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yopro"]},"Identity":{"Case":"Some","Fields":["ltP5ShZ/XglTt8jlmcS0fVLQlPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9XQACRid2BJHr4pLCjnycgIkYQ1e/djHKZiAwn4epU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:21"]},"IP":{"Case":"Some","Fields":["45.136.199.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay01"]},"Identity":{"Case":"Some","Fields":["lsqpF/ZbzWLOzSNvZ2Ur/Xxp5S4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EyZ/fMJN/V0I1KdgzKrLRiLRMszPWF5V4S7+jEqqpjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:18"]},"IP":{"Case":"Some","Fields":["104.37.193.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["lrfkqPYz/BBa9gMtEyEeXVdqRNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S/Yu6eJ4kG+p0Y1NCzjN/xcolyMUGlUq1EasNsU0aGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:32"]},"IP":{"Case":"Some","Fields":["188.68.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Florian"]},"Identity":{"Case":"Some","Fields":["lrGl3vlBFWERvFLWGsmRr9vQmx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["omxU/njtgZkaHyERZ5CApiufrLdbDbC8p2+JXYA1oOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:31"]},"IP":{"Case":"Some","Fields":["185.248.151.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigFat"]},"Identity":{"Case":"Some","Fields":["lqBuYbkOkiko7f4Tg/5Zrv+YLcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RKvK+hOpDmwKhCHIAQaN7qJk5Y44mcsXue6Olk8oE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:22"]},"IP":{"Case":"Some","Fields":["5.45.86.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moria1"]},"Identity":{"Case":"Some","Fields":["lpXfw1/+uGEym58asExGOXAgzjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7lffo694USblbCXQaJvFMlYKpvOMCZdHkT4K6IU8QKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:25"]},"IP":{"Case":"Some","Fields":["128.31.0.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9131]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=1-2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowville"]},"Identity":{"Case":"Some","Fields":["loq9pNnphLy3TB77JpeyAgXgk60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DJt8+hKSIVFGTwGz7QGhU9VTVq9VH7FnkwCJdoGGmhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:31"]},"IP":{"Case":"Some","Fields":["62.133.45.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedRiderCarbid"]},"Identity":{"Case":"Some","Fields":["lnM99Sn1CmnfWS5PzBFtyTgyyR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wd2qvm4N51Yde3uHBe/WI9aanx0yrR9rWwIZS5jHdKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:54"]},"IP":{"Case":"Some","Fields":["87.120.37.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange038bg"]},"Identity":{"Case":"Some","Fields":["lmWhpuubmMV+RGpIPnXgXwU5tBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cmb3Ee9/+EtgNxkmvtn0UHCWeycC7t6Y9jMmb5LiSaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:15"]},"IP":{"Case":"Some","Fields":["185.82.217.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erdapfel"]},"Identity":{"Case":"Some","Fields":["lmGslXF3mIhPPjcn02DdmNZnJ8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GxKV3xx8ZktwsCIYtMAiL3vE3P3ArViDUCygA9lC0xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:55"]},"IP":{"Case":"Some","Fields":["109.70.100.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myfancytorrelay"]},"Identity":{"Case":"Some","Fields":["ll5bRmBZgEVbV31odecV3RziT1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PhQqOnBmkwKDKkidQMGT2FSWQl/uX16j62qXyoeqQ9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:42"]},"IP":{"Case":"Some","Fields":["84.134.208.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r2"]},"Identity":{"Case":"Some","Fields":["llxmdUH4ih+R82BjkLHa7TZqAbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CiOqmOcO8vgEYBeqtgM4xcisLsTsZ02fgdSxjY70Q+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:13"]},"IP":{"Case":"Some","Fields":["74.208.136.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman10"]},"Identity":{"Case":"Some","Fields":["llHIAz5Rm75V5KW4wfdQTXLQkxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zo5MFRPmpu3D/uxbRamdomtH7ZQfwFzMArTY5mEeFFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:24"]},"IP":{"Case":"Some","Fields":["23.137.249.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:66c4::1]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MHcXthX9Eb34WYyEN7H"]},"Identity":{"Case":"Some","Fields":["lktOinUmOml2lUHydkVj2r3ZldI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vK6kDgLEkLWKbMxt9BEupiJcBTQvv1NmIqmlPHOHLVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:17"]},"IP":{"Case":"Some","Fields":["68.67.32.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sichermannac"]},"Identity":{"Case":"Some","Fields":["lkQAvXL4Xk7zVB3YV46RMepijdg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+URf/W4OXvV5qaNOc+Sg+KyikX1O6zL8Ezu11ZEZ/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:32"]},"IP":{"Case":"Some","Fields":["46.142.133.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwothree"]},"Identity":{"Case":"Some","Fields":["lkODgxO9G+sc3IRMA3mnddxEv50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["we6JT+lKo5+bkj3AUL/n3zhs58A8iH8yGPXJhbPfIEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:53"]},"IP":{"Case":"Some","Fields":["135.148.52.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["93227a015ed992"]},"Identity":{"Case":"Some","Fields":["lja9T4LBHCsGhaAhXxQJnG4e4+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zf5oQy6YdXyI/Z8RRDOVM/oCufPmk+skoOJ4PIt+Z5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:50"]},"IP":{"Case":"Some","Fields":["95.216.203.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3b00::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kristallwand"]},"Identity":{"Case":"Some","Fields":["liitt1CGL5ztND3PwdAzHqAG3o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fiW3UkF71cSSDWrAI6DxN2JAYZ9sX5uW5DcE5puAEeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:38"]},"IP":{"Case":"Some","Fields":["213.156.137.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nx1tor"]},"Identity":{"Case":"Some","Fields":["lihD+/hRP1fhGQ/Uwt3wg6AMeGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R84LornOjeCJnh6Gmd3rM7Z1rPBTiQKEyE2cCDNPy5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:05"]},"IP":{"Case":"Some","Fields":["64.5.123.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:59:a000:9666:216:3eff:fe7d:dae8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange015lt"]},"Identity":{"Case":"Some","Fields":["lidZIRBdwtQbea11gEowFzi1Hkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTK9Rpw9WeFNSzl+vx4D5kE8uGVbrFtU5EEGF3+NbBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:45"]},"IP":{"Case":"Some","Fields":["213.252.245.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::e308:9180]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["upsuperRelay2"]},"Identity":{"Case":"Some","Fields":["lgcGmHFNwHris3eGRiW372TjO/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMXwunKfKWPfvtW5FP/7J5iTC22Ay6tsbftO6J3zYOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:57"]},"IP":{"Case":"Some","Fields":["212.24.100.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:d418:648a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob01"]},"Identity":{"Case":"Some","Fields":["lfp1hxfRhcvB1e6ZKq4IStBBkn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnn4Ng3GpLvOf8ii6yVrYVDPB00+G39aSP7LcOEGp4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:15"]},"IP":{"Case":"Some","Fields":["152.89.104.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:39:e7:98ab:ff:fe95:7778]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debaze"]},"Identity":{"Case":"Some","Fields":["lfIqEp/R7lv/lSGN26g4v2272n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sD3lIIQ9Ia7NdbqTDclpQGpxWEB/CdJkfR6U5f3F6Rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:05"]},"IP":{"Case":"Some","Fields":["92.243.0.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:fed6:a283]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["matimbo420"]},"Identity":{"Case":"Some","Fields":["lej4R++HmKYKgYcoH5OBMkXYDio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L+5oxorAgNDCifioqH2G4HtfddiLLIoypmZKvJHMOLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:08"]},"IP":{"Case":"Some","Fields":["130.61.161.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:697e:954b:e582:cfdf:9743]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay5"]},"Identity":{"Case":"Some","Fields":["leHxwQ6Tg8MpW8UXDf+yTTE1T/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hpd8UyossBd92zLo+OuqDDM+3z79tEoxVM2DJ6JlXkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:38"]},"IP":{"Case":"Some","Fields":["89.58.39.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:c7a:4439:2ff:fe4c:a26c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boomshop1"]},"Identity":{"Case":"Some","Fields":["ldCzRezIT9K/J6M7J2XfXgd6zb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oH1VFPFuJErWIt5FIE9+8QixIrsvCN8MVfCoVo6KbwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:01"]},"IP":{"Case":"Some","Fields":["176.9.50.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:70e6::2]:9901"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flogginet"]},"Identity":{"Case":"Some","Fields":["lbla38/t1fqm93OfI2SO0s6K3JQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f3oRA6M54055EZKfBLnRAdPiXqctkUmOuVwiaXNnvvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:27"]},"IP":{"Case":"Some","Fields":["185.100.87.202"]},"OnionRouterPort":{"Case":"Some","Fields":[31622]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["lba76CLYg6+DBYOAi91M+cQcaxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c8+mJZu8LkHriw6gMvcROAHnjy1RN8CSKyQ3Zld9yhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:14"]},"IP":{"Case":"Some","Fields":["88.208.240.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:b1::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireOfRing"]},"Identity":{"Case":"Some","Fields":["laocLkmFCyWv+S4I4fbJOtFinDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vOvWosQFhNseTdJAxCLFPMVkHyJyGof0QDgyDRmzVZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:00"]},"IP":{"Case":"Some","Fields":["5.255.98.81"]},"OnionRouterPort":{"Case":"Some","Fields":[127]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:c5a4::1]:127"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["KejeonFFM"]},"Identity":{"Case":"Some","Fields":["lYTCKErv1L2pDLl7zfLmnjv3bWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dH2mZwCPCq6R5AsvXQn6qBdPbfnDLBkLWWlbtEj1XoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:00"]},"IP":{"Case":"Some","Fields":["95.222.114.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1136"]},"Identity":{"Case":"Some","Fields":["lX+ATtXu4/vspSX8oirhUnrFa/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4uG42wtsobS1r9S7gKbpV/NG9G/u4zSYou504funsQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:25"]},"IP":{"Case":"Some","Fields":["185.220.101.136"]},"OnionRouterPort":{"Case":"Some","Fields":[11136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::136]:11136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeissbock"]},"Identity":{"Case":"Some","Fields":["lXte8+bKg7K/ZANlVoLuLHBNq2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XmRo0Z7W2OQVyZyLhU28uiVRxdTzwEsg3wNQC97yW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:40"]},"IP":{"Case":"Some","Fields":["195.128.100.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueMonkey"]},"Identity":{"Case":"Some","Fields":["lWzVM7fDMcZ10wpQkAoul3fUJ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VwJqp2QetfmhXN/ri38vj6pP349ZnyNlz4zCR914b1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:59"]},"IP":{"Case":"Some","Fields":["13.211.32.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SDRHausSEA1"]},"Identity":{"Case":"Some","Fields":["lWsNCAJGOfnX8/MzKD7USAuAfY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mFb2xHqIdEb6CsHsRlj7Gy0vX/qPLE6pieyTxCvRGRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:51"]},"IP":{"Case":"Some","Fields":["64.42.176.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:9f80:2000:83::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["STRelay"]},"Identity":{"Case":"Some","Fields":["lWcqPT7ArpfyCKF+IS3gIRCmUI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yBFH1Ux7V5YL7DFDlnzISwQmJBqrLm8/9E5axzDqDUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:44"]},"IP":{"Case":"Some","Fields":["180.183.117.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FiveBoxingWizards"]},"Identity":{"Case":"Some","Fields":["lVT8DPmlIAVC4zdciuTpOcRZQig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VA0L1keWztvAoGYLMtPOoa6s93GdPCG9YgFmfZc0hUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:19"]},"IP":{"Case":"Some","Fields":["83.44.171.172"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[81]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["lVRcunGtIRNsQMkn8ZwGf/EoB48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dREfiWmROGSn8CpYBdBJ8lG4Mv5tOtOQM0P+Mk7Wwd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:57"]},"IP":{"Case":"Some","Fields":["95.214.53.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3561]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lUsiHP3D9WoV/jwp+F1f40uxRLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mOWoNOG7/9F+wlkEEFs9Jc4AL4xLkDc4A75uSjNzBpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:14"]},"IP":{"Case":"Some","Fields":["50.116.47.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notabitologist"]},"Identity":{"Case":"Some","Fields":["lUMpH6nN7ITZBX3sPfLSrvA/NWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WvtlFRSEskHeLVVXwnBImBHpu/4x0b4P+O0QRaVQZPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:53"]},"IP":{"Case":"Some","Fields":["5.255.103.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:4b9e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["procrelay"]},"Identity":{"Case":"Some","Fields":["lUL4/7Yn+hN5LhXnH4ZSwmgU5S8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5WQjtjiK17OBkroSN9Sl6nDla/6l2kpAAOU03VqRwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:55"]},"IP":{"Case":"Some","Fields":["54.39.86.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:7792:1f0c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chopin"]},"Identity":{"Case":"Some","Fields":["lT23CfKi3syNdWBmH5NOZEEURPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yVc/yHO0XImazjEusb94ySILXx8Krdmc7ys4QDidDW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:14"]},"IP":{"Case":"Some","Fields":["93.115.96.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:35:5488::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lTff8fNaI+9bAhtVFuPHa3cmMTE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVKwZp7h2Dc1Ib/5kOK2ddQAX5abVztYyuodPY0lTXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:12"]},"IP":{"Case":"Some","Fields":["23.128.248.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::64]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BuNGOfAr"]},"Identity":{"Case":"Some","Fields":["lTM9hiQPZAJlbS65ZxYlVjT2wAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVY3OYKcvGLjttMwrpX6qEjlr9IdmavF70t2KlgbNMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:57"]},"IP":{"Case":"Some","Fields":["185.66.91.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firestarter"]},"Identity":{"Case":"Some","Fields":["lTFzBLdIyvwl+I+4nOB7yjlVfSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8iyuXaKe9mhySCGqhcBQlZWNj9oK7y66rVB1a+ctKWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:13"]},"IP":{"Case":"Some","Fields":["71.60.169.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bugabuga"]},"Identity":{"Case":"Some","Fields":["lRHmBp3XzgKL+U1B6P9UHCTD8U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l7MvbopmIK/k87QmfF2Kmez79tzYvZJtPmF76c0m00o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:14"]},"IP":{"Case":"Some","Fields":["194.163.128.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cello"]},"Identity":{"Case":"Some","Fields":["lQ4C2zJtKBAeKShgRMVxSiBPMiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJrlEt34w5Pp8YeD0diG/jaYbPm/Dcv2M0LieJKxNr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:58"]},"IP":{"Case":"Some","Fields":["135.148.150.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FakeVolleyball"]},"Identity":{"Case":"Some","Fields":["lQE09KujKR7uTnovJlRttwcHdqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lBdOI7P64q49rju4sydAkSniWqmMxsSjv00wddefYrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:30"]},"IP":{"Case":"Some","Fields":["195.123.212.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27ac::245]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torRelayTaledoCorp"]},"Identity":{"Case":"Some","Fields":["lPakiTqAFJru63UJvvzboa5NWJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5akA1ae4HRsFYGyYzibuBMWl5RrBsWY6OHN0A2jYOHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:16"]},"IP":{"Case":"Some","Fields":["51.83.132.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5a7f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kuro"]},"Identity":{"Case":"Some","Fields":["lPVimuXy3ECc1EZoF2WX/0gpa6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuL6zM8qFsV+2A9pt9dKNci+/xLDxqx49trWBTtLidc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:38"]},"IP":{"Case":"Some","Fields":["148.251.83.53"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:5368::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeZion"]},"Identity":{"Case":"Some","Fields":["lPNnoTApbJ65K+MuJarrfyJ94NY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VvB3P8YZXRG70SVSeMsKFQ4nKRQgdUX78KMGyJUGTCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:53"]},"IP":{"Case":"Some","Fields":["82.50.42.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["happyfunpark"]},"Identity":{"Case":"Some","Fields":["lPJTP2wc3bhf0AOPVCCbizUMObU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i9v2me0Y/pYtl3CxRhWRecanXGO2u6mcdqI7JOjBkH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:04"]},"IP":{"Case":"Some","Fields":["149.202.4.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarinaOvsyannikova"]},"Identity":{"Case":"Some","Fields":["lPFtor3boJKVT/jsKfkjSmmUlAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2+rOMl11iN+EseQOfX6eVDe19FORBhm8bKPRjqRj5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:55"]},"IP":{"Case":"Some","Fields":["77.162.229.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a446:5ef1:1:d072:53ff:fef4:ea59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThirdMusqeteer"]},"Identity":{"Case":"Some","Fields":["lO/naSA2TZrPqLoVfHyBSE8Ky/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fyG/druRAWWQ9yrUQs36ji8mrkVU6/FsAV3CTJ80qvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:25"]},"IP":{"Case":"Some","Fields":["45.8.144.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unix4lyfe"]},"Identity":{"Case":"Some","Fields":["lOw0uHGTZQS+cGcbRHYLyZJC4fM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qdustKcCxvRBUkT4zygS/zH9TM3RCdTpdNqwNefifqg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:49"]},"IP":{"Case":"Some","Fields":["71.19.155.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:17:a800:ff:fe3e:bcf8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schweren"]},"Identity":{"Case":"Some","Fields":["lObabDeTvRbRVV2W93z7a51h5aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4niNA1/EXvhtIZH7BAUIuNz64UuL89fSb40oXX24Eoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:44"]},"IP":{"Case":"Some","Fields":["202.61.202.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lNEt91m83PlU0ZQwd2yP9Vzdk3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xm4lIGvwvnjdkKtjQwcjH+2SM0nFIPP7CcMMxQICcv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:38"]},"IP":{"Case":"Some","Fields":["23.128.248.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::34]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BostonUCompSci"]},"Identity":{"Case":"Some","Fields":["lMS3uMUMhqkraiAQdTnuJnjPmig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnX7vmfHC7X/0uQrHN7ErZRH7dpScnmTalUgWyn9++k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:47"]},"IP":{"Case":"Some","Fields":["204.8.156.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["lLcQxBuej7WS0JFucbWon/SZWZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEbgKM9R3otWmNOOAXTqg5zIWkn/HMLFKuZX+b1zwZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:56"]},"IP":{"Case":"Some","Fields":["138.201.35.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:369a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bertha"]},"Identity":{"Case":"Some","Fields":["lLLal6erpd8uBlau3BBodkdeZy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a95TOBAgbvwgxyKm1IGcd0DVbTP9n74qtD5Qd2B+1+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:14"]},"IP":{"Case":"Some","Fields":["89.58.13.214"]},"OnionRouterPort":{"Case":"Some","Fields":[3920]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SupportScihub06"]},"Identity":{"Case":"Some","Fields":["lKiXbgDGjtI2ldBmjYez5/Emr2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gDa/VKqbBqCcc3BeX+94o6d4IfKpDDx36I/BkEZKB6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:39"]},"IP":{"Case":"Some","Fields":["155.248.213.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["avega"]},"Identity":{"Case":"Some","Fields":["lKMPKXWx+WxmzfvzyOcsXEkyXFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0ZQ8ZD10tpQ75oVKAi/CjZ4+Bir+VDb/A+D7nyigD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:34"]},"IP":{"Case":"Some","Fields":["185.173.235.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:b7c4:1:141f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Telinnor"]},"Identity":{"Case":"Some","Fields":["lJuWjRuNPMCX2SGBq7OMaThhKX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mkz+FBqPbk/dsjlrgyvaLwKdaub147aCuoFeAgfi4KQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:21"]},"IP":{"Case":"Some","Fields":["178.254.2.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SPFCFutebol"]},"Identity":{"Case":"Some","Fields":["lH//RWz8713KsJQi4ZRajSGu7GI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTVrfx6+UoTXX86DJCPoq0ott5/Oj7YHN/rc4lToWxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:08"]},"IP":{"Case":"Some","Fields":["81.17.60.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lHYvV9hoTAXrulKpTesIdG60qAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["izV4n3fftwRqDmPHL6ldCNh7VZho42cb3JmTQWfJs2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:45"]},"IP":{"Case":"Some","Fields":["165.232.148.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::a6:5000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lGHn9Pk8lykJFSs/9eSOzUX5G5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U1vko3YFPSLQdGTb9Lk/mT77utkUfYbzkY4v5q4ykIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:34"]},"IP":{"Case":"Some","Fields":["145.239.81.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["lGC9D80Q9eWKCppn+cIEGKEgrmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mebip/99byPP3eX9UgXOeUhQEx4WgRAut1MzTL3EvCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:53"]},"IP":{"Case":"Some","Fields":["194.32.107.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:171]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollon"]},"Identity":{"Case":"Some","Fields":["lF/EwkRhN5yTxRGcDc3XNd3ZQ6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["78BGtnsXb4t9qWvvFegfFyN2MgCcftRB5LhvDC8kFSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:33"]},"IP":{"Case":"Some","Fields":["212.147.124.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lFqi9sLsZEtTPQSMeeA1ps8JLE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j5CH2OXsvtO4Q4ra9BHbPV0RUOC4b39cQQvcajTI+LI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:43"]},"IP":{"Case":"Some","Fields":["51.255.39.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:302:2100::78f3]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["lFT4LUfroMsMKkv+eWYYHb8QgUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AFMxLCsCvFXZQdiJUCJ2BAaL8tKd8QdXcqyrEeAsomM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:31"]},"IP":{"Case":"Some","Fields":["185.220.100.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:14::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perch"]},"Identity":{"Case":"Some","Fields":["lE6UfKgNHPiy6+PDJHssEZMUOLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KpQUXKZpJZ2skxZoRFoEOMzhws8+v///OTLHzCJjZx8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:38"]},"IP":{"Case":"Some","Fields":["130.162.218.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbrother23470"]},"Identity":{"Case":"Some","Fields":["lEA/+OhO/Z7urAx2A7CDS1worgc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Im/ViOzOW7RaX3M9IQTpdzERwDzc7qqr/iZfYOdHPFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:15"]},"IP":{"Case":"Some","Fields":["82.66.10.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rs1"]},"Identity":{"Case":"Some","Fields":["lDSUs4z3T73THSbZLWbVNYJFTis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MKaFCEQOKA3y61TSpyusjPFRO0cgy3vSB6i2DxwdiPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:34"]},"IP":{"Case":"Some","Fields":["37.35.107.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:2040:1:533:e23f:49ff:fe6e:1004]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["byrdeman"]},"Identity":{"Case":"Some","Fields":["lDGMwimaOCbYGJnrI8JaK31rH/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CHR9JTpvZ9venRDB7AmombKVnmSoYC4BBLHGkJzeNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:58"]},"IP":{"Case":"Some","Fields":["213.227.133.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["lCOnK7yLXGrJ3p9Xc16ysI5BVug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByO/1uP41mBFV1d9KgQm5eL7YtrcDwzrG9VtTmrFD2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:54"]},"IP":{"Case":"Some","Fields":["185.220.101.211"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::211]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lBuoOjVB07LA6cvlsMkka1UUmR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHwviYPvKClDZIl6oVi9t24nRu4dQRdzSEAhXSzyZak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:43"]},"IP":{"Case":"Some","Fields":["23.128.248.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::58]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kogis"]},"Identity":{"Case":"Some","Fields":["lBmFzeLcnWf+wHA6j/0GHjtLqKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdoE2fejg9Xb3Zx2pbosnh5kA2snBz0Zeeuj3Gm7Iso"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:08"]},"IP":{"Case":"Some","Fields":["188.165.236.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:b712::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Extratorrestrial"]},"Identity":{"Case":"Some","Fields":["lAdZvtpFhK2LDonY78sOtUD3ouQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["daV/Cg1cSMvQJ2mZBlbk1vxmuhcRiFG52Nu6HpEqGf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:00"]},"IP":{"Case":"Some","Fields":["67.219.105.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["test1111"]},"Identity":{"Case":"Some","Fields":["lAcEtlquXgaON7+wjS0HLgHPbmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BplKcnRd7+9Lo8g8JhdI9sKN6pIB7BaQnB2goX14GKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:11"]},"IP":{"Case":"Some","Fields":["79.219.250.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM03"]},"Identity":{"Case":"Some","Fields":["lACvUuwpKdpB5t3TtoTyNkO8MWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWYdWNCxZLUZU/wwLi14dFOiMJMTDaYOIOa2WdYyIJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:20"]},"IP":{"Case":"Some","Fields":["185.239.222.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["k+/VonQDqH5Ei14NjCcyn9bmgp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["swr3L8Eq241vVE4mgri/CWF5L78uojp722snp0Wn2ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:53"]},"IP":{"Case":"Some","Fields":["185.220.101.193"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::193]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes1"]},"Identity":{"Case":"Some","Fields":["k9O1CIpoE/Z5pCYyOuASX7T+dyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JP2i66UkBXyqy4nzl+K0YB5DfRn5UnLZcCxReigykcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:53:04"]},"IP":{"Case":"Some","Fields":["104.244.75.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["k8DwjmYYVOedYXjI9kRpHmvVMYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3tBfb+GdJbkO7g0tAF7o94jC8C24nFUplcWGL91Jvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:17"]},"IP":{"Case":"Some","Fields":["91.223.3.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORo"]},"Identity":{"Case":"Some","Fields":["k7/D7AJav2RweavupeUQ7dz72sY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJsceYpVPyXs1bz/et3I5oiBiWGwtBKWKambKARA2qU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:46"]},"IP":{"Case":"Some","Fields":["185.101.105.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop4"]},"Identity":{"Case":"Some","Fields":["k5+z5UaRg55EnxcBMQHYrafwAG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzgKxvX7mF866kWNTVLvnhPteHRWjy7jQuOgHT7gL48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:06"]},"IP":{"Case":"Some","Fields":["82.165.108.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["k5Em6k0lyyEqeXRsEzGU+KJMQ1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1erjJDn6A3neP26mzTKwSjEqG8gEhBBHIyEN4C05uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:20"]},"IP":{"Case":"Some","Fields":["185.220.100.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:3::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RingGate"]},"Identity":{"Case":"Some","Fields":["k5B8oltsJz9nmVns5HGXjHEtzZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1VJUDJU3og2uUVHlQi+dPiPfJVUhuIUb77uLMxzIPMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:11"]},"IP":{"Case":"Some","Fields":["108.56.237.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["k4+/1Bcvu8QkVjexnhWBymMz8X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1dddyPpl/9qEpDWCUf/ycskO2rNsVT1W6VpK2j/80SU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:05"]},"IP":{"Case":"Some","Fields":["23.128.248.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::21]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay25at8443"]},"Identity":{"Case":"Some","Fields":["k4X/E9njurk0q8umHuY+EDRuNnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gTbUW36oYnrOtpDrxOMi2xQeuPmlYf2IDD1NU2rv29Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:55"]},"IP":{"Case":"Some","Fields":["140.78.100.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perun1in1"]},"Identity":{"Case":"Some","Fields":["k4WI36DKFwLEv++IiGkYyUTUlKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+q3ch++HDiULLf0cc/RaSNxemPdhLKiy10lxkcX7urU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:25"]},"IP":{"Case":"Some","Fields":["157.90.148.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:14cb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission02"]},"Identity":{"Case":"Some","Fields":["k38gHSeXMUlT8mjSUvXJjT+p9x4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpXGUKgRfhovMna3IuncqpDQlvUNZGT3rOXd7QMuIeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:53"]},"IP":{"Case":"Some","Fields":["149.56.94.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["k3akNpXLtmwlbcyHky7oheqa9ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNL6XSOro6oPE1C20ZmWnLDEALJGRg3hU741ypFxZao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:48"]},"IP":{"Case":"Some","Fields":["188.68.35.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex72"]},"Identity":{"Case":"Some","Fields":["k3D1XUu/cvvfE8QdZci4FLQwDMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Ed1FW3ChuGS/6lFD5YMO+mkQxof9kh1zRfUWAwD4gs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:32"]},"IP":{"Case":"Some","Fields":["199.249.230.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::161]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["telephonetoughguy"]},"Identity":{"Case":"Some","Fields":["k28BNn1OW/jOH+5tUUKDztEBRaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w3xCmn/yod2eBr4uXK2WKuBroyBZmsGyWXVnCsFF39k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:08"]},"IP":{"Case":"Some","Fields":["172.241.227.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PremiumTorExit"]},"Identity":{"Case":"Some","Fields":["k2YYW07LHMNjT0ddIP3f56MCuvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnLh0JM60aTajlsL4xQ1xfSihWJz4lb5f9iA3iYRc8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:53"]},"IP":{"Case":"Some","Fields":["185.100.87.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["k1tu8L+Vf0Y7hM+KeududfxzJc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["225pVlvb7iGlDxw9Js2mhGHV15CubQG7EEIKJR+KrrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:01"]},"IP":{"Case":"Some","Fields":["185.241.208.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["k0QDswWYlVxBYCMSKZQjqAC+Ax0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W6o3m0oTL7t0cEmstbOtWtVoB21OrbLZ6eOTouYLHPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:14"]},"IP":{"Case":"Some","Fields":["23.128.248.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::25]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1130"]},"Identity":{"Case":"Some","Fields":["k0JUYA7tDq9hwkL6bsuSvwE44XI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2ZN+a4xPNokRE5nbQB5eVxsGPsTL+KqMMXZXjq/EHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:16"]},"IP":{"Case":"Some","Fields":["185.220.101.130"]},"OnionRouterPort":{"Case":"Some","Fields":[11130]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::130]:1130"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubElectric"]},"Identity":{"Case":"Some","Fields":["kzwenFq4AT4wBDikHERZ3v4nhJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pma2/t9lV2pRhvTgTMNbGa4InP7r/Lcqla9klT+9Ezk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:06"]},"IP":{"Case":"Some","Fields":["50.7.1.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BouvierPrivacy"]},"Identity":{"Case":"Some","Fields":["kzt0/551Y+WuPWR2f/RYLiNHItE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1NyOy0TSw509nl7UHnl5htnwyeyCFrDkylg1UlvUKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:01"]},"IP":{"Case":"Some","Fields":["62.210.189.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aRowdyRelay"]},"Identity":{"Case":"Some","Fields":["kzbZ/VWNCeIchVpS4B2m4Hu2qtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Npq5/YiNt3HQRda0YXf381xC0mHcDZrWN9Yxl1SFyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:29"]},"IP":{"Case":"Some","Fields":["172.221.117.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["kx45+D2vDB8TqqY3LVmy1x3UzaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zmeg7H5GF1Rc/eSpZgKlKCuoTLgThgX6K0DPXpAD6s0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:18"]},"IP":{"Case":"Some","Fields":["151.15.113.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLeonardNimoy"]},"Identity":{"Case":"Some","Fields":["kxx2LfpxzgUXasHzQC2GayoMke4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l6u0WxO7ufMNGRhr2dXIL/wciHg1bo5ou1yHvDZsByY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:14"]},"IP":{"Case":"Some","Fields":["198.74.61.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay35L"]},"Identity":{"Case":"Some","Fields":["kxwW6D3jZoUgcpEsd1YxEtGyseY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXfrsBnWTthZx4CgOaF7jXEjABE6UnU8UfX0Mf07bxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:11"]},"IP":{"Case":"Some","Fields":["85.239.40.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5cc0:1:1::de78:1017]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ArcaneGA"]},"Identity":{"Case":"Some","Fields":["kxYX+yFJTtJInUgFT4ziavbXeKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZlP+mxq9DNfQJrAJ1LaQh/dDI922/b9JRbKop2ljANk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:39"]},"IP":{"Case":"Some","Fields":["37.120.167.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:4424:1482:57ff:fe2d:edb7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex50"]},"Identity":{"Case":"Some","Fields":["kxS9lQO5AUJhplwiHXflc4nbzME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LCgBxoCIbrzhCcDO9QcfAU+n86seFZ6hzr5bKJLkN0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:24"]},"IP":{"Case":"Some","Fields":["199.249.230.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e649]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrashcanPercs"]},"Identity":{"Case":"Some","Fields":["kwwyRm0P0t4zPp08PsH9NaBs9Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EkXCxvSOCDn9W6EHVMDwCPWcojyC6SE14wK1i5zyAp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:45"]},"IP":{"Case":"Some","Fields":["185.72.86.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["popular2"]},"Identity":{"Case":"Some","Fields":["kwMNY1qbdnHyfd7SjksXpuyiELI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frs9FtKn8ltQeCgsrxbcSVF2MCWEDfBpzs6bJCkP0og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:18:08"]},"IP":{"Case":"Some","Fields":["45.58.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgravia"]},"Identity":{"Case":"Some","Fields":["kwMMIB4lHcqbYyFC3WeLjmPqybU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V33NSbzuvSmAXSFMrzkA4w9Pf46n0cKFZrdD5yn8ypI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:53"]},"IP":{"Case":"Some","Fields":["65.109.16.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thesergeant"]},"Identity":{"Case":"Some","Fields":["kv2nZHtDHjZbimSYUcNULnoMooA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TCDocSrlh1skEKmu5m2z+1FimbzfcabgzkHNkrNng8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:31"]},"IP":{"Case":"Some","Fields":["194.13.81.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:43:216:5443:2bff:fe16:c6b5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop2"]},"Identity":{"Case":"Some","Fields":["kvyHbIna+Kx+kNGomKT+PAbDLPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KWpAeQOgXtsvqusEDasWw2bycUxDcJ8lBlIAY+Q174E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:54"]},"IP":{"Case":"Some","Fields":["217.160.50.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv05"]},"Identity":{"Case":"Some","Fields":["kuTUkAuE5PsRp3HDfuuqCTHPi0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bg6vb2vP0dEeibrepo/PuUigxIIItgBA82S+PdZPRuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:28"]},"IP":{"Case":"Some","Fields":["162.248.163.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rulers1"]},"Identity":{"Case":"Some","Fields":["ktuTrhzXT0ECSiaFpHW79cSXsLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Q8Myev2Ue2da8ygFT/FlSMCwQz2fthUC7lGqJ9SgRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:05"]},"IP":{"Case":"Some","Fields":["45.58.156.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qki"]},"Identity":{"Case":"Some","Fields":["ktHcNtXQR6Two8j3vGp7uaU8xNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+9f1bjwbZGY0HsaPeWZnCCSUHt1H/VnHUTIF9CgbanE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:24"]},"IP":{"Case":"Some","Fields":["74.207.234.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fe2d:54c3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaytor"]},"Identity":{"Case":"Some","Fields":["krijDB7xi1uMymuT5ysf5eWxjAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["okcOIr0Q7d8EGQ1MOSfCrC+0hD5zdO4XF87NZ35M7lI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:05"]},"IP":{"Case":"Some","Fields":["54.37.75.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::8596]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0164"]},"Identity":{"Case":"Some","Fields":["krFjSn0cNd3Os04PwSKWAtCu37Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cp+yYX3ilUuefQx2GOblKQyrnHf4hUmQ+yRww2ip5O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:52"]},"IP":{"Case":"Some","Fields":["185.220.101.164"]},"OnionRouterPort":{"Case":"Some","Fields":[10164]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::164]:10164"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809ffs"]},"Identity":{"Case":"Some","Fields":["kqknko4xQzhv7LWpS9qvXJr3WeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfHlEoa5dZFBiZVitulUOz8A1ZmlXgeMQVw+lfTPsPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:27"]},"IP":{"Case":"Some","Fields":["199.168.103.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:8e::138]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mpan11"]},"Identity":{"Case":"Some","Fields":["kqEluatJGvwITkJXtVLQ+1YJDLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmIgzGzB9YpTkesNp6ccKoUVB63JJmBP9qSYiC1yCK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:42"]},"IP":{"Case":"Some","Fields":["89.74.86.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XoaseRelay"]},"Identity":{"Case":"Some","Fields":["kqAQOJcvNoIAsD3A0ZSyF7pEHVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g8b9kB89omnkgwr7nxCyuH2MM7PsR8vFpPJXxAoUxfw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:32"]},"IP":{"Case":"Some","Fields":["89.185.109.216"]},"OnionRouterPort":{"Case":"Some","Fields":[18360]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1ad0:c4fe:504::11]:18360"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot65"]},"Identity":{"Case":"Some","Fields":["kpvzfGV9T2nHYyTl/qdgpiSDgTs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jAKrB9KmTZALkV+/r63AtKSAYr65SeRdouWoHBMbX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:15"]},"IP":{"Case":"Some","Fields":["193.108.118.228"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:b1b1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission11"]},"Identity":{"Case":"Some","Fields":["kpu4SmgZjONeLygogShAr1wsvEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["190A8AFyR+f9M8PR+Ro90MG3uJI4lzN0DiuKjc5uBpI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:32"]},"IP":{"Case":"Some","Fields":["54.38.219.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1166"]},"Identity":{"Case":"Some","Fields":["ko86Mc5yZFHa0yMW3pHV+2+MENU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8FoWK3UzWecOloPHtxeWSHTtxZB6XSVGPgCxKLC0Vk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:55"]},"IP":{"Case":"Some","Fields":["185.220.101.166"]},"OnionRouterPort":{"Case":"Some","Fields":[11166]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::166]:11166"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BexleyRecipes"]},"Identity":{"Case":"Some","Fields":["koxHCeZjsP8VL9Hxy91qr6O1SNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYwfpiqY5FyiTdFQDQGrv+VZ7d5vOwbkeNG3b+9Sj1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:26"]},"IP":{"Case":"Some","Fields":["38.97.116.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay9L"]},"Identity":{"Case":"Some","Fields":["koi3W1/4hh7/Mqa+iCXMOKT5+MI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Np73LU+G+inFPvQos0moazgQLBxsGk3VRJJ5BR2ctHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:35"]},"IP":{"Case":"Some","Fields":["107.189.2.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f825::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH112"]},"Identity":{"Case":"Some","Fields":["koJ1qXMGxJSyAIdqH4XR0huZmD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r12oZCPbABxEMtn6mApgiUjf8Pi8ufY6R2dQWYauxQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:37"]},"IP":{"Case":"Some","Fields":["192.42.116.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:212]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["knnwDUw83F0/RuqDf2z1N7wYbNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f8iwxcgC9OPjn0rWOUdGNzNLbw2IpX3+8epF0QmehUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:39"]},"IP":{"Case":"Some","Fields":["185.112.144.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["kmXFHSdp4lPEe6VUZ1JwoP57J3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XIKiiJsWofPhNWF4ngu7Epl8oWosagMkF0UK/OJK5fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["185.125.168.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:42]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NSDFreedom"]},"Identity":{"Case":"Some","Fields":["kkskr6fwddBZ6O6yhMxACzPT0DY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+CdwxrvmFSUmP6f9ugIjM6Eg4lHrPX1BJ/ZcHirJDEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:27"]},"IP":{"Case":"Some","Fields":["96.253.78.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kke1Tc1JF029gXqnP9begE3+wsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F4XWVJhkrra5uwct7BklL3LYr1Z6MmcQVDN0krXX2Nk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:38"]},"IP":{"Case":"Some","Fields":["185.207.107.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atapihidden"]},"Identity":{"Case":"Some","Fields":["kiU69kDy+eLhLMA5Kygey/8UL+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thFaLNQMorLWSQesSn9uyaP150v6yRZ0I4/YZsH2+y4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:57"]},"IP":{"Case":"Some","Fields":["178.255.47.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["khBUjbSYo/jgzuYUKUwRWsTa0a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2OAfzqDwi9Roq2dTLFeTkNDGKGyY8zINATG14FZLdaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:02"]},"IP":{"Case":"Some","Fields":["185.220.101.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::193]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oOoOoOo"]},"Identity":{"Case":"Some","Fields":["kg/wkNioU5RuQHJBkW9srokL9iU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8gNENNIg6NMaIB5v4OxAmOLnxIZIZff7D15NAtBBsuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:16"]},"IP":{"Case":"Some","Fields":["89.39.104.175"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libre"]},"Identity":{"Case":"Some","Fields":["kgmQVuy0qPWlxH+ryfp4zvQ9oqo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QjGOF8c1XBwphJXxq/NofepRbX7zIKYOHBNXpPOnlxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:43"]},"IP":{"Case":"Some","Fields":["89.58.8.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krishaw"]},"Identity":{"Case":"Some","Fields":["kgfwCWMoJc+4H20yOAZ8LJ9o8C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4XtOgqchFamxmYbxG+aBxBhSEqygwCqB5y4xotrA2og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:32"]},"IP":{"Case":"Some","Fields":["151.56.176.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["kgYos3wFuCswWOO+d4phygTwNho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HE2qEygiN4adrWC6hTzjMWGAZdHcbLMUduuPDkpK2pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:44"]},"IP":{"Case":"Some","Fields":["185.229.91.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:36c::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lowFog"]},"Identity":{"Case":"Some","Fields":["kgS8B2S9tA3o3kpWsMSux8K0nYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VhwdRqV8Nf3lbxVF27TzAi8O5rqBzXIGdjMPOUN3tAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:56"]},"IP":{"Case":"Some","Fields":["147.135.16.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission06"]},"Identity":{"Case":"Some","Fields":["kefKa40KrXfHz7j+olv09G2hBCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o/p+tej3HLpJQn1j8S7IeQ/2ROXlGd55uTOTJ5tCbW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:06"]},"IP":{"Case":"Some","Fields":["37.59.76.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CryptoHouse"]},"Identity":{"Case":"Some","Fields":["kbq1TGkjRU9OXtxZMTxFACsjhmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9EZdrC8aONjkJoZnH/ThuvzzKiHhUkdYPkl4TKwTLq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:00"]},"IP":{"Case":"Some","Fields":["185.228.138.252"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:409:748d:52ff:fe41:cdcc]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ka3N/KgwobutOhA3eyXWlakr8lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6t8+qhCqsh/pJEan/aBmX7eQdICAf/R6gZZjEoUbPHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:48"]},"IP":{"Case":"Some","Fields":["145.239.158.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TeutatesTOR"]},"Identity":{"Case":"Some","Fields":["kas3qcK/78kWGkhvcXkUMWCRf60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rnzS8nMljNrBrsRpm2beVuQQFY6s/MqJTwfFYCU0oWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:20"]},"IP":{"Case":"Some","Fields":["78.194.2.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eficommander"]},"Identity":{"Case":"Some","Fields":["kZWCfqT9z7fQBB0sn75Vr1sfOj8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m0I5qgln36wtGDCviNDv7ui3rJjkyJ8bRX7pd6E449E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["54.213.206.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Kenrelay2"]},"Identity":{"Case":"Some","Fields":["kY5x4tQ5YeciIZc3jH/unhUYsuU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wcI1ZNvAJsopv2HJMwLYF/mwohuibJ9rTBcROnjvuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:31"]},"IP":{"Case":"Some","Fields":["178.17.171.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:61::8695]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chooThaineha"]},"Identity":{"Case":"Some","Fields":["kYknIPkmLLN7kacXbT0igPevFL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oqjtA7H33ltagMSR9NeAzpz7GEv/xKgoHLAdhBHdJ24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:40"]},"IP":{"Case":"Some","Fields":["46.4.66.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:2459::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oldePika"]},"Identity":{"Case":"Some","Fields":["kXHhXr9mV2j4764icdR9kixO7UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Uc8pOToH8dJpEPCHt6j0SCN3wCUQDoTQCjQQp9OkZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:47"]},"IP":{"Case":"Some","Fields":["51.15.135.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:1b36::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier1"]},"Identity":{"Case":"Some","Fields":["kXEQHnCa3liB9eLKEQDUBEtEJj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2alpMYPxIRBfObNqfw7KgSOQDoazHt4XD0kplkDDwWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:40"]},"IP":{"Case":"Some","Fields":["95.211.138.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["defcon777"]},"Identity":{"Case":"Some","Fields":["kW3DGZ9jkWjNIK7E1FlpJo6Adpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oZIGPZQLAVF5ga5Jv11YuH31jx7w+UcSQ1T2jh4kQzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:34"]},"IP":{"Case":"Some","Fields":["148.251.136.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:210:400f::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp3"]},"Identity":{"Case":"Some","Fields":["kWQkj5yaYv8iyTaF02XqdHigASM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOXJq3Z/TengG34GDD8R6E11KhYSZ/N+UdInSRkhq7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:21"]},"IP":{"Case":"Some","Fields":["185.220.103.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay39L"]},"Identity":{"Case":"Some","Fields":["kWDTtizdeBQqsL+kJ24XQJV18+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4HTcVVdbqVe/qgtDebCR0ugmu+ijeOm4c4hAtfdyxJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:37"]},"IP":{"Case":"Some","Fields":["45.90.58.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9406::155]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pikachu"]},"Identity":{"Case":"Some","Fields":["kWCl2pAhP+uJnqvTokp4xM3KXeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDFrImMS9C+8vmapVuI0CjWh1lCYDB4d/6RMeuvo75s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:30"]},"IP":{"Case":"Some","Fields":["133.167.74.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:3a00:202:190e:133:167:74:94]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD3"]},"Identity":{"Case":"Some","Fields":["kUxD0oz+TXglhKfRCJpQiy+SGLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFv8i+7XMKdqxdZX+y1zKAJAh1E8gZrF4eCC/K8eOOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:10"]},"IP":{"Case":"Some","Fields":["185.104.120.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::30]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0146"]},"Identity":{"Case":"Some","Fields":["kUs6s/zznOvhX/90PArBYUWR6WY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8rjNG+p2UBYkGPj5LoiB+f3d/Df5NVKIkXOtxdJ32ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:26"]},"IP":{"Case":"Some","Fields":["185.220.101.146"]},"OnionRouterPort":{"Case":"Some","Fields":[10146]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::146]:10146"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP06"]},"Identity":{"Case":"Some","Fields":["kUkKB928O53RRiKJlb3/o1VSuig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3CAFqEcw2ot9F3sb0PcPU/GFFx9968y7TX082lK6ZAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:50"]},"IP":{"Case":"Some","Fields":["15.235.29.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::36ee]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TomatoSauce"]},"Identity":{"Case":"Some","Fields":["kT17aZIw9yaB5WJqlKyvb7xs40Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XsOxmXUTsqfUAv4YhO91y8+7Vy7ECWvHivJMGvsDG8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:49"]},"IP":{"Case":"Some","Fields":["104.217.251.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dakkartor"]},"Identity":{"Case":"Some","Fields":["kTkx7F8fnMuWTX6sGt2YaWhEpSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/JeL3Jfq3XH9AG84p7QNvd/gGvCUmY5AvJ/kYtAnnVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:22"]},"IP":{"Case":"Some","Fields":["178.162.154.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchyLinode"]},"Identity":{"Case":"Some","Fields":["kTOVUOIt6m4U3Ywz3syHAuUAxmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3krYbKna4VIEHTbiIKpTAjDDj06tvF7q7TVIaWWRe/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:43"]},"IP":{"Case":"Some","Fields":["172.105.93.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:92ff:fe9a:1f81]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Myrtille"]},"Identity":{"Case":"Some","Fields":["kQzhRCmIdIY5GeT25Y/SZ8H+rnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZtlLQJzjHPGrDNzFgM3rdkr1Ri4UXtr6XwpxHT3DH5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:23"]},"IP":{"Case":"Some","Fields":["212.227.206.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:1f1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1fdaf44b188706"]},"Identity":{"Case":"Some","Fields":["kQc0wwfhvQQPOChRS+VzRiR6dYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VS0eZvU1CYYb9O9jPKmQGhL0QHvoaQC9y/Rp2+0J1rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:27"]},"IP":{"Case":"Some","Fields":["65.108.248.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:b0ec::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marylou2"]},"Identity":{"Case":"Some","Fields":["kP2DDDV6UQmrPFBSh3E/GsgRF0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XdoLB1Gh+IUM515uiNpu+VmYYd1kkXAzh4w2EqL5PM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:39"]},"IP":{"Case":"Some","Fields":["89.234.157.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2608::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moukari"]},"Identity":{"Case":"Some","Fields":["kOUKsF2UWG0P7SRrAdYyx5y3YRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CTlfTXcokszElChj26NixOo9zvAb6Q/uMSB0yGeG6Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:01"]},"IP":{"Case":"Some","Fields":["84.249.29.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AkashaShrooms"]},"Identity":{"Case":"Some","Fields":["kMIAAYDZWIx2QehlpEirwU9AVH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aK0OqiXh7cCxtcq5gyy/yHzKG0o9/a1FhUUVYnP7Krk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:19"]},"IP":{"Case":"Some","Fields":["37.187.104.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:386f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coTor"]},"Identity":{"Case":"Some","Fields":["kMHo3dM+retnraiMDhNpj/h4rlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JGryiLDcswo6w5jv9YqghaWEalx0Rpme3nUEvMl60OA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:38"]},"IP":{"Case":"Some","Fields":["95.179.247.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MegaRobotMecha"]},"Identity":{"Case":"Some","Fields":["kMG8EN8IGgHVDjgtcnGVXgH89sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BR4SLahHBKShfHWtJgZSuEHSJ9DwP3ace46KSF46vkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:46"]},"IP":{"Case":"Some","Fields":["45.79.92.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:febb:6d1a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex69"]},"Identity":{"Case":"Some","Fields":["kL9xR7Qiobq++lA2VuvReYdCREE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hnUY7fgpu+yha7CaSyang3vQRbC0gdHBlb3EshzNsd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:20"]},"IP":{"Case":"Some","Fields":["199.249.230.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::158]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowball"]},"Identity":{"Case":"Some","Fields":["kLy/c3B5u1BHyyrq5J+8G6kbXts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LiFFNvEx+hXIeVXFx2WRqYoJP2Ex21FIGZIlx7u0BZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:09"]},"IP":{"Case":"Some","Fields":["95.216.13.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:d54::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["kLv48wiFeUCFH1Skw9Xb+UnVJjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UTlAqpSsszMSeGYQzcqv/aVgdHL0AzsEqvaOx3Dxzgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:26"]},"IP":{"Case":"Some","Fields":["188.254.194.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uranium"]},"Identity":{"Case":"Some","Fields":["kLgYkC1CgApeXzGiwNmisLMerF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXFHQLJoJjooz171kweQ1SGEUxiOvGyRz8JbWkOVca4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:18"]},"IP":{"Case":"Some","Fields":["185.36.81.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Haxalicious"]},"Identity":{"Case":"Some","Fields":["kKrGJFOIqanscFCBB3VQMAT+QL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HM29HHnCieSoh3d6eV6evTNpNa4NfBqzUouNawRrZpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:36"]},"IP":{"Case":"Some","Fields":["23.88.131.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kKg9Om1TYZIRkJ6W7cMMkQZ2oys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GzU4YN8sMsCEFs5uhBVHroSnyAvLKvLxMr2hbCuoxuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:13"]},"IP":{"Case":"Some","Fields":["37.120.165.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor09"]},"Identity":{"Case":"Some","Fields":["kKXRNVxLWEDpUOth5nOGOmrjrKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iQcm3NRhkR1NUddlsCuBMsC+Y05A8nnCVuxvWufxVJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:36"]},"IP":{"Case":"Some","Fields":["54.37.139.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1b8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleTorRelay"]},"Identity":{"Case":"Some","Fields":["kI1QsXyBrXlKP7EkNzxtRYQ3xn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m50fpIxgjpWcGS/QAu5n2Dlm5uyDWLSsDrUAR1EfejI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:54"]},"IP":{"Case":"Some","Fields":["130.255.78.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kekw"]},"Identity":{"Case":"Some","Fields":["kIWjB4P7s436ls4CTtxaD59fqiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mIhjLkvoprVPC9ecS15k8QORSWlWLYIlX5rjdauU57U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:25"]},"IP":{"Case":"Some","Fields":["209.141.37.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kIV+C1kSBjr4dw0MJEIkaXxb2Hc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EagLabydu30lRmQR8OdiiRVdNjBPRxFLH54w8pXEyZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:32"]},"IP":{"Case":"Some","Fields":["199.195.252.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["binrlogin"]},"Identity":{"Case":"Some","Fields":["kG80DCl6Zvyf813cki9dW5cSyXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K1MhcrdSPYFWQ9rQ2xq6V9ZkgxArRsFlND/GuNI/O80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:38"]},"IP":{"Case":"Some","Fields":["23.94.134.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deeno"]},"Identity":{"Case":"Some","Fields":["kG7RAX7QRJsC4RXxe3QFso8gr9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RIcMNrnuNf9ReHn/fUyVy7u65yGwI9NgZZvnoll/5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:45"]},"IP":{"Case":"Some","Fields":["193.203.202.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thanosdidnowrong"]},"Identity":{"Case":"Some","Fields":["kGpC3YgKLL7dUvPyj+n5Qqhl9xU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+SysLgsWW5TYQyCPSZ9AI+FhxBr4DR7It8jX2VJjPQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:49"]},"IP":{"Case":"Some","Fields":["173.255.250.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeoR"]},"Identity":{"Case":"Some","Fields":["kF63emOFfm788E1zSlR7CZXYXDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xYuYIFOr6YYbW46WtR0/bQTP9NQLuExtRkikvvRzUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:13"]},"IP":{"Case":"Some","Fields":["3.225.115.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun03"]},"Identity":{"Case":"Some","Fields":["kE8256/mNG9dHWaXH5IP/MR98SA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy7KN6vGx4ydo/nAudW337M44ROn6XJjsio8KSvAboM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:26"]},"IP":{"Case":"Some","Fields":["94.46.171.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buenoairs"]},"Identity":{"Case":"Some","Fields":["kEmSg2qs3nL17dVsKFT1/0GaDto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["djiBAdVVu5jP/L9j7ZmUTKUNbAzXjDnjYhCXirFkXm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:39"]},"IP":{"Case":"Some","Fields":["190.103.176.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nottryingtobelame"]},"Identity":{"Case":"Some","Fields":["kDymfQ3rdM+7AUMoQKJsuMbBj98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eGjJ+VrfxzY7Nsho/ivBV6h9mtXmSnN6oznxIsudvkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:49"]},"IP":{"Case":"Some","Fields":["72.23.65.169"]},"OnionRouterPort":{"Case":"Some","Fields":[8503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torelka"]},"Identity":{"Case":"Some","Fields":["kDoqeZHIOOcP9aWGzTh3SbNYlmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6K+yf4SAZVr7gC8W812o9J0UZjbSnduoG6TbkyFL/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:36"]},"IP":{"Case":"Some","Fields":["51.15.219.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a4:1b34::1]:9111"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zebala"]},"Identity":{"Case":"Some","Fields":["kDM8198mAb5zVXdT3um0yERLXko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zpbigbOaf8NIlFUVBMsDjqAIFmBo08LGO7zT/dJIi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:30"]},"IP":{"Case":"Some","Fields":["95.211.208.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip5b"]},"Identity":{"Case":"Some","Fields":["kCoTOZ8U/8fikSRjMAx4olwfdrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ON3f08to1BtGtldcV249JdLHJYcnLfe9+mmzQab6SNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["185.220.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::252]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catan"]},"Identity":{"Case":"Some","Fields":["kCdz44FiC3PTeb7OkZtsL7rCvi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFC1W4GuHv9vaACh2sbeBxsE5TkmXg3NV6Eq/VqaXgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:14"]},"IP":{"Case":"Some","Fields":["185.10.68.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Gilgamesh"]},"Identity":{"Case":"Some","Fields":["kCHJZ/k7VpirH1OQf30Plqn7IGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+fRRFYU0YfSrrI6B8/1OAUjUFN4DiiUthidZLWM5VC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:15"]},"IP":{"Case":"Some","Fields":["94.23.121.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:4251::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp9"]},"Identity":{"Case":"Some","Fields":["kB45sYzFm8sYq8l91j3Enz33QBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7A+j+TqI13PPWk9ZA0zeifBJE86NAcVUXiamclcR7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:41:36"]},"IP":{"Case":"Some","Fields":["185.220.103.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DonateMoneroi2pd"]},"Identity":{"Case":"Some","Fields":["kBON2yXB4RkAeu7Af2lVB0qhfa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mzbpPAZjjdf727S5/zeXshPAZFbmMIUje1l1ZU+ixg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:15"]},"IP":{"Case":"Some","Fields":["185.123.53.75"]},"OnionRouterPort":{"Case":"Some","Fields":[896]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra89"]},"Identity":{"Case":"Some","Fields":["kA9UsdSDpmiVnpdvN+MnwRIuyBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83WEE9GeHhed5MabVTq2J/k2Z6oQTYaU8DLED6HzLbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:42"]},"IP":{"Case":"Some","Fields":["185.125.168.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:210]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["j94mWIeqdB9HjcnqP0AmJXcNna8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8oAT5T5BjN/hchEZZkQvAUUOtziG7W0rXFQVb2nrAHg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:40"]},"IP":{"Case":"Some","Fields":["88.208.215.96"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1ee::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xeracition"]},"Identity":{"Case":"Some","Fields":["j94HN5j/N48w2VJNPFvvX2nL3tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+OXJTBpf5EE5bRbc4q29QNauxgObiTgAauAsVZ3LMq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:57"]},"IP":{"Case":"Some","Fields":["212.227.115.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN02a"]},"Identity":{"Case":"Some","Fields":["j9O69eFOvhEk1iU9WYgq/hwrm44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RQqbjOXOrZQtgPLTvpI0NZB+gX9RwgQVbR3dHHH5/p0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:07"]},"IP":{"Case":"Some","Fields":["217.182.196.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["salope7"]},"Identity":{"Case":"Some","Fields":["j7DC23kTI2TKbn9ty+PkDDJ7sz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["epM3bpKv+Bg0T+zqi+sXCzkHVLIEx+ldo6e9E/nndMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:38"]},"IP":{"Case":"Some","Fields":["68.183.150.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD2"]},"Identity":{"Case":"Some","Fields":["j6hWTo5RyxB79IetKNdwA0sC34U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7vodW6ymYOe7bM+jDiRVLbHEVjttuWSn6XUVD8hO4js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:48"]},"IP":{"Case":"Some","Fields":["185.104.120.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel22"]},"Identity":{"Case":"Some","Fields":["j6N7kzlwFbK8WlJckISFJgvp9CI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ydUeZHlh8FxAJRTQUMZBgZ3gjXERYvH76aaOdqH61Zo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:16"]},"IP":{"Case":"Some","Fields":["89.163.128.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::abba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortenheberxx61xx"]},"Identity":{"Case":"Some","Fields":["j6C+sB+levKe9twVLVSZeSY5CjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/M1nLywvG9OGkPgLN4JKZKuMf1uv8l5UAbEEbmscAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:20"]},"IP":{"Case":"Some","Fields":["93.218.76.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9361]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shevchenko"]},"Identity":{"Case":"Some","Fields":["j51YabTFm/pdmCu9qaecSR4sAm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yEPnS+8nRBew6LOkR7z/xblb4gsHIJh8RITM/4sOHrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:49"]},"IP":{"Case":"Some","Fields":["185.246.188.67"]},"OnionRouterPort":{"Case":"Some","Fields":[46711]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GTUniversdeMagie"]},"Identity":{"Case":"Some","Fields":["j5zZN9AXe+isnifRhgT5Mhbfpqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uwCpAiYFMYVZzPG9dGlvLpEZ+jYwjSqYPw/dkmK0+pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:32"]},"IP":{"Case":"Some","Fields":["78.159.117.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PT1TestRelay"]},"Identity":{"Case":"Some","Fields":["j5VQylWFsDdrqYMR5bad7cbpDMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6gufW/j7a0QbNhX4bAru4T9KTTlg+KpkpW0+l2408dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:15"]},"IP":{"Case":"Some","Fields":["124.121.123.12"]},"OnionRouterPort":{"Case":"Some","Fields":[15923]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jdtr"]},"Identity":{"Case":"Some","Fields":["j4uureFCh0IhL/UNwPbRO11GwH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mDA7uPDnpIGeb7od+ZGhuHWRpbG/i101SMD/hv3r5JQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:29"]},"IP":{"Case":"Some","Fields":["213.188.119.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b98:f181:1f2b:ba27:ebff:feb7:f806]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SygmaGuard"]},"Identity":{"Case":"Some","Fields":["j4nQM290RL48/7hEhLMhxIO5bCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MZzE7TyrUN4Ub7BP/Lrpv8Fr6R52+XFhrkhMPs9m6LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:27"]},"IP":{"Case":"Some","Fields":["82.64.223.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:2eb:8171:7877:c6ff:fe8f:58f8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoohBear18645"]},"Identity":{"Case":"Some","Fields":["j4krvEcVqiAc7Mj+Yxav9a1AwfI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzK6wjNnOJL/9MoF+GGEVvnDNTpfABIeYCtoHRPD6y0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:19"]},"IP":{"Case":"Some","Fields":["205.185.117.232"]},"OnionRouterPort":{"Case":"Some","Fields":[15698]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:19cb:dd92:af73:5b09:3e0a]:15698"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["count0TorRelay"]},"Identity":{"Case":"Some","Fields":["j4WeS1o7W8VSQnx4JPBM7aWNzkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X2w1tB8mV4STiRuoHWIKb/SABY+SmGtPdTxHBFgBUjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:08"]},"IP":{"Case":"Some","Fields":["188.126.189.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilaDortmund"]},"Identity":{"Case":"Some","Fields":["j34SDB1Dcf6hnjwVjBgNfeTuUFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k1/+PRQmlJJi296hJC/rFDtgupQZXCUIVn9Ntxuurcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:30"]},"IP":{"Case":"Some","Fields":["91.204.6.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbrother23470"]},"Identity":{"Case":"Some","Fields":["j3UhztqatwWkIlTh6Ckmje9Xxw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rDF254SkLsVSJxjFkeHERIoGR72iTNX2nJm24yVlI4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:03"]},"IP":{"Case":"Some","Fields":["82.66.10.17"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber01"]},"Identity":{"Case":"Some","Fields":["j3RGBRmedcJvdOgYveUNmnMl7JQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qMll9oIk8TfWAMA9JHCAHjZo83mySyiYlTvtJ0Ht5Bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:44"]},"IP":{"Case":"Some","Fields":["185.220.101.1"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Logforme3"]},"Identity":{"Case":"Some","Fields":["j2p4seqRfyvyIeh9FDYcBQpwzMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9chFUoIMk7p8wP/Olp9pZM74op5OKAYfsXKBeygKgoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:07"]},"IP":{"Case":"Some","Fields":["81.225.229.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["j2US/iVfuRKnW6/RhqoThMTfSpw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9HylzbXuqzNixOe7jSil7rCTkMUeclBALsEMvjD3Jmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:01"]},"IP":{"Case":"Some","Fields":["161.35.225.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::51:e000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Martell"]},"Identity":{"Case":"Some","Fields":["j1rLQLQmKARebYykyxA82usRKj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FKasgnqDGAl208qXVPX3smVovFd6vj62QvtZ4bBPNCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:30"]},"IP":{"Case":"Some","Fields":["3.121.167.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gooserider"]},"Identity":{"Case":"Some","Fields":["j1nBtVOTKNEey9wi/uCO07vmvEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TCkzyAf0HOCw18H25Th/hxdtTRpGWP5OivfzJreXxdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:06"]},"IP":{"Case":"Some","Fields":["94.103.188.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5160::343]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["phosphr"]},"Identity":{"Case":"Some","Fields":["j1lzEpjKkjnAeijulUeU/TDwZHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5tmc/daLdmOMcY9NTYTM5wQdMSwmvExYuub4FRJF+4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:19"]},"IP":{"Case":"Some","Fields":["160.3.172.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1154"]},"Identity":{"Case":"Some","Fields":["j1LgF3rTX1kMW4OWCqEe0A9yYpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hBT92iM+7mb7zVx7wDgZY1VOimxWlukWLY2vy5E5PKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:47"]},"IP":{"Case":"Some","Fields":["185.220.101.154"]},"OnionRouterPort":{"Case":"Some","Fields":[11154]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::154]:11154"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KerckhoffsRelay"]},"Identity":{"Case":"Some","Fields":["j0SRLpN/bmSWNbbkAMljNvVJjcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pwVhe3sdwpiifhWonFQrbYAAZxf4Djj+IGQ4u78BuFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:48"]},"IP":{"Case":"Some","Fields":["79.250.151.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashDuck"]},"Identity":{"Case":"Some","Fields":["jzTmTliYnmQyfAjP17Gwx8T88zY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rIDEkknpN1IPgQldsQsFiCnfgKja5BYfu6CA47MvNXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:29"]},"IP":{"Case":"Some","Fields":["5.181.80.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["futrelay"]},"Identity":{"Case":"Some","Fields":["jzAVw/NwuidNPElg6kzI4UNIpSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cGkz3JreRIcJJshpFmEg4ucctbLpsbXm2it6LWTL8bU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:17"]},"IP":{"Case":"Some","Fields":["83.22.195.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["njo1017"]},"Identity":{"Case":"Some","Fields":["jyvwFknbIBXJKGirV4g9EyEeNQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nSRqHo8byP4K7Bo/3EpH3ZJ71qTXiiO+2ydd1brbwk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:43"]},"IP":{"Case":"Some","Fields":["80.142.187.122"]},"OnionRouterPort":{"Case":"Some","Fields":[31107]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra24"]},"Identity":{"Case":"Some","Fields":["jyk6ZISglzFnsVxJl6ufJMIRQ/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iu25qPMI3yCcg2bs3wU1FelQyjm0pThJgas1dVQx+A8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:58"]},"IP":{"Case":"Some","Fields":["51.83.131.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jay"]},"Identity":{"Case":"Some","Fields":["jx1w3kLHISDOjkkodBTfz5T/8fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w0UCtIdT/IWkVy9w+AsQz5Ue09he37Qq8rmlFAmdQYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:19"]},"IP":{"Case":"Some","Fields":["94.217.169.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pointderupture"]},"Identity":{"Case":"Some","Fields":["jxYinVQld03KVm13N1lheBU9uDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPU1J4n/6aGeQg8k77qoAeRs8vBTYs3OVI7kEoRjGQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:31"]},"IP":{"Case":"Some","Fields":["195.80.151.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortals2"]},"Identity":{"Case":"Some","Fields":["jxSBX7YLuyPkvEbhYuN8FCjqHM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VrKafNt1CRXF9cT3AIyKej/AGkGuGOu3juf0s0tNayE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:00"]},"IP":{"Case":"Some","Fields":["45.58.156.78"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor6"]},"Identity":{"Case":"Some","Fields":["jxOANibzkFOTHKf3+Ud4wL+Iqfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdeCcv9Jt+KLVDnKTf0e/yVxyv97EgcpI0qv1Wl/2DY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:21"]},"IP":{"Case":"Some","Fields":["193.56.240.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["jxGy4lPOxMXEY784qxymRbcpTVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YD/UIAL3OaZjUGZVowCYBlMJIh/tDu1ZMNuCfCPjw54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:00"]},"IP":{"Case":"Some","Fields":["185.220.101.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::203]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TormyyrFI"]},"Identity":{"Case":"Some","Fields":["jvdI/M8aniuWUdxqvZIfjusk+nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6D17Az7ZurAHACLXw+ILImqdXl2YwNU8wGm+GTQsBJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:09"]},"IP":{"Case":"Some","Fields":["91.221.66.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nels94"]},"Identity":{"Case":"Some","Fields":["jvBSAzMJ2FTWIGpMMPF60nyHiT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gyPo32d0UsimN015FiJOcO+HAQBjNkvyF0sSrY/oUo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:31"]},"IP":{"Case":"Some","Fields":["91.155.241.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ju2jTObW5gXtMXknj0WIJlSSMoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ih2cOxYT3uOEhXLBLZmqX/2B8MHuc3qR3j4Ns+Nf/Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:03"]},"IP":{"Case":"Some","Fields":["77.68.26.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:31b::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["juRHF/pVcFwSCG8+zR+NnIZ2/QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ENZ2WZZXFOOfgL4hOhvYOmdZgHf5ukj/2Ix8yXouB8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:55"]},"IP":{"Case":"Some","Fields":["185.220.101.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thalassa"]},"Identity":{"Case":"Some","Fields":["juKOrwh0r5sD6715tetQWeJUc1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rS/nFPiwHhgj7uXjPQID/9LtS1wXqRJIJy3bs7A1KHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:46"]},"IP":{"Case":"Some","Fields":["198.16.70.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kauwerkoud1r"]},"Identity":{"Case":"Some","Fields":["juDd5LSMBwuNi+VFKwwbyHsOsCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["woSTY+ooSr5kRMp20Orlemxu+frC0m83/IQ66xp+lOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:37"]},"IP":{"Case":"Some","Fields":["85.146.181.175"]},"OnionRouterPort":{"Case":"Some","Fields":[42219]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeeckaRelay"]},"Identity":{"Case":"Some","Fields":["jsuIKbLuJST5or4+GGy2kPpeVXA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YQKqbZqH2nYFiVThfqMC4rwrBbqO9uyu6WNK09UHa8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:36"]},"IP":{"Case":"Some","Fields":["51.68.124.47"]},"OnionRouterPort":{"Case":"Some","Fields":[22443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jspAJbrpOS6TGIVZEqjnHtXdKZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DBswn6lGcCrOFzKmzuVEz0mDZZnCsYmNNZubLRZpPJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:08"]},"IP":{"Case":"Some","Fields":["23.128.248.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::87]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ingwer"]},"Identity":{"Case":"Some","Fields":["jscgvjO39tWaNJW0AL823qa5fSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0tyVlQfrSimZvEKL7O/ogmzgBYIoV45shDh53HFFccA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:41"]},"IP":{"Case":"Some","Fields":["109.70.100.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::9]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman3"]},"Identity":{"Case":"Some","Fields":["jrUU9U9JqyPisK6C7U7ynyzSgIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SAvXZwxtWneydqdcvqt6unSfSUWy1l1sogRi/E0Nc5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:30"]},"IP":{"Case":"Some","Fields":["85.204.116.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:334:4dd:f2de:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeusExMachina"]},"Identity":{"Case":"Some","Fields":["jqyPFhfwdvhGXWTZ3IKNw5feyuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3kbKLBp9QjMdDnjGubzDfo4buy4+s78MKuFnOTcFKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:27"]},"IP":{"Case":"Some","Fields":["107.175.44.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jqtZq4ZsuPNPH4a2c2hgxMumOz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8MHrPnyB9DQENgpot8WEnFOo9CYdmCGm6vT1p2F7T0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:10"]},"IP":{"Case":"Some","Fields":["23.128.248.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["True"]},"Identity":{"Case":"Some","Fields":["jpsLjhs+5ya9Ij3B42yXIJOt170"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2sozE77POJKr1KVKOMdIWjCy3qvmSoPwOdIkb6mKz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:50"]},"IP":{"Case":"Some","Fields":["81.169.195.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43ed:6f00:8cb4:c347:72f5:6772]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["itsnotjesse"]},"Identity":{"Case":"Some","Fields":["jpep/bwmKi2xyHtT8Szxklhm81U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NIYq0wYekx5xickv10jfoIvYVMQpCzBEl52p6fOZjmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:16"]},"IP":{"Case":"Some","Fields":["85.239.34.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:7410::12e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lightblue"]},"Identity":{"Case":"Some","Fields":["jnrK2Hi71hCXwODVVxYPXVm85co"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ylrMam3N8Fx6tnKVknAu6c3p4NfCKAn5wD6tiU47zRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:04"]},"IP":{"Case":"Some","Fields":["178.254.45.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JimmyBulanik"]},"Identity":{"Case":"Some","Fields":["jnbx9uhJnM6XXEUVYFhqX4vwv9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wxyE9pcciMHYwqOJsYnFHCOn6NA8J4DdCC9U90wLy8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:56"]},"IP":{"Case":"Some","Fields":["185.86.150.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::eb42:8ae9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlGrothendieck"]},"Identity":{"Case":"Some","Fields":["jm7aeNjjq6iNh3w+N9bU8JOMe58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qNmn6y+P2rI+7Y+R9bzP3SW+vw9knEUB7OmFxT5z3WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:14"]},"IP":{"Case":"Some","Fields":["80.67.172.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:910:1400:107::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["jm582s4kGCVKhT1pUeyXhB5bB/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oW76glaA+4ngtKkUR2J4NGxQaDQenQRFNTD3kKfUyfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["185.181.62.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::fefe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skaalz"]},"Identity":{"Case":"Some","Fields":["jmIlvIp3DfY7IKL9rBq815WhiYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FWgTpJWhIDgmMQyx5Z50JkUjyPM6tSIHqvcYDN1DF6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:53"]},"IP":{"Case":"Some","Fields":["193.56.240.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingyetwewillsee7"]},"Identity":{"Case":"Some","Fields":["jl6pCijoiNMG+kO5IQoelGe6OuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IrQt+jsiwnUqrY0X/4cVTf4E5JtLQDkbIWIYKDumGS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:43"]},"IP":{"Case":"Some","Fields":["178.62.24.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::284:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flachmon"]},"Identity":{"Case":"Some","Fields":["jlsTJvWA0C5Tn9qr+Zo73hB3JS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vEADoFHOiNvrgt0gmfOEFN0U0q0pk3rg++5UvZD6Ur8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:02"]},"IP":{"Case":"Some","Fields":["192.196.200.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["jkd3WFR/YSZZvShkyR1kFFKDM2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4hsho0hw3HYBb7UpYt25L+Hmjs6C99Sre1e+kll8EY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:17"]},"IP":{"Case":"Some","Fields":["188.68.40.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jkCfMSd/g0MfW5ohTXrRTR6lPCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wOFrzsNusmqezcBwbs42+pnMlIqVgV9501P5HNsB4zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:22"]},"IP":{"Case":"Some","Fields":["176.36.150.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debianRelay"]},"Identity":{"Case":"Some","Fields":["jjrbj19Ur30edP1OuZErlqz6LAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVedjgooF2kmOOLGJQHjt3z0YAg47Q4rMHf0aBrAy7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:35"]},"IP":{"Case":"Some","Fields":["138.68.9.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::218c:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["jjixHoSTNtYqtiZPuumwPHDweGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LStJvN28NB3w6Pi11LWxP3IVkr5qSdmKn3NVOV3UX6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:27"]},"IP":{"Case":"Some","Fields":["185.220.100.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:16::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gandalf"]},"Identity":{"Case":"Some","Fields":["jjgsBsogpnpbEdaOqD334IvnGPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CQOS7lqQFHibnImFhgBafXF9SPtUQDCDVh+q8zBvVXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:19"]},"IP":{"Case":"Some","Fields":["193.218.118.117"]},"OnionRouterPort":{"Case":"Some","Fields":[3942]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Untamed"]},"Identity":{"Case":"Some","Fields":["jeDsC8Vo/NNu2ZVyLM+0axrk0ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiOLC4+A3WmrrNEn29sMNJeqZdu4gzzB44CMCU6z3bM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:46"]},"IP":{"Case":"Some","Fields":["107.189.7.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f2a0::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jcovoVfIDi1XSwCfGCq6lp/OezQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJDzAdmxDNwcvZc39/mwWxE26fn7BYGgUKgXCwC2O0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:14"]},"IP":{"Case":"Some","Fields":["146.70.82.90"]},"OnionRouterPort":{"Case":"Some","Fields":[12684]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alnutt"]},"Identity":{"Case":"Some","Fields":["jcgyq9ycl7i3H3SrBB08s/qVeKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CkDgSgQEonhMlb56YgbA/gP75UZwYhDB8nmOb5vlxnM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:21"]},"IP":{"Case":"Some","Fields":["95.153.31.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["analumi"]},"Identity":{"Case":"Some","Fields":["jcbh1Im8YJUR/HaHkvlm0u6MnqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWGxL5lkvh9I93ok3KWd9H/mgOQlY7acmSpmEKRwqEE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:18"]},"IP":{"Case":"Some","Fields":["80.49.184.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ameno"]},"Identity":{"Case":"Some","Fields":["jcSgYFRA8asBSOr8mY5pMdJlPYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2+FAJBsvKugrSX4TFBUqfWJkzgp0wxAbCPnG4fkL0Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:32"]},"IP":{"Case":"Some","Fields":["82.64.107.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:4d5:27c0:d3f6:2608:164c:6751]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ContinuumRelay"]},"Identity":{"Case":"Some","Fields":["jb742CRDd3AmG0x0U/KBXbf8kWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CYYKb25KEU1RZbhi2pnqkscDUl0fiPiJkzraDqV/m+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:36"]},"IP":{"Case":"Some","Fields":["71.178.206.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myawsomerelay"]},"Identity":{"Case":"Some","Fields":["jb2LkNBdHDWQRBKmThqyRQXiDm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYm87sxRP8VH97xW0W0LX0lN8dSemmZw2cu9B95ePQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["178.79.164.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fe1c:dc8d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgCA2"]},"Identity":{"Case":"Some","Fields":["jbokgtpKKFeQxdkmK1AdTnvkpxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wqJi/DCxsHHpKx7IOXZu0aOZi1IxrpbHmt8lFYa848"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:05"]},"IP":{"Case":"Some","Fields":["167.114.144.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PikachuFlu"]},"Identity":{"Case":"Some","Fields":["jao+EI9IZTBc+Yt097sIroKBWH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Zt4Ff9VaPgTDUw/OfgtFVYNN9np0sQ5C3yFgLdVNdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:09"]},"IP":{"Case":"Some","Fields":["185.53.129.109"]},"OnionRouterPort":{"Case":"Some","Fields":[49413]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["vianullorumunorumq"]},"Identity":{"Case":"Some","Fields":["jZ9KN13op9yXTAn/3XG1zXqdh40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["10lWM8Xrn3K8Z6/dBHNp3cSGAWBObJGkHxsa+4TxOFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:19"]},"IP":{"Case":"Some","Fields":["130.255.78.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["BarryJames"]},"Identity":{"Case":"Some","Fields":["jZqcIWk23hb+bKejPXtSDXO3zAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XyGFdEsbXUK/yJWTiHp40ja2MFqvCECRwJOMkIqOWv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:31"]},"IP":{"Case":"Some","Fields":["52.8.68.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZipSlack"]},"Identity":{"Case":"Some","Fields":["jY3Qcm/1PdLc9c9WC/cR4TbfnOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4wEdmCam56bIhg0GVCNchmxT9phhB3sUel5HVN2r8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:48"]},"IP":{"Case":"Some","Fields":["65.21.195.116"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:1cd7::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zoe"]},"Identity":{"Case":"Some","Fields":["jYxy3C6+JKM0GJ9CNIf5ICOdWbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jqDBBvKXMNH9j5nrYFZs8BtHwmSKKYRAdJtJxBGvG0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:13"]},"IP":{"Case":"Some","Fields":["194.108.49.124"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["jYnspMk5KHEaC9bbgPVHoJrvLWc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZdLsQJ7NUKsZnm7IohExZYccKyBHBzscvSIQCRyHTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["95.214.53.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3560]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RAVEN"]},"Identity":{"Case":"Some","Fields":["jYlsizZ4EwMFkaANt+dyLvbEwjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJPVJmGzTA+6W6urzt1DfXdB4YSl7gnopFZ9AnOYqPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:09"]},"IP":{"Case":"Some","Fields":["107.189.11.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82b:c986:c57f:3adc:b9da]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RainbowBullRelay"]},"Identity":{"Case":"Some","Fields":["jYhzHB2dPoG1BAwSzostix0HZAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nYkZB56NBsQF/IxBYl92PGY7x8RuzSZtO9jR0nqe/lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:45"]},"IP":{"Case":"Some","Fields":["185.105.3.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTorRelay"]},"Identity":{"Case":"Some","Fields":["jYZm76S/eFNUN4GmNBh5YKHNhzg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XuTPJaI6vn5BS5NJQcNtud8ZE4C1V16GKUiWRua9k5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:28"]},"IP":{"Case":"Some","Fields":["188.174.58.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:a61:3bcf:4a01:1437:2aff:b9dd:811c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thanatosDE"]},"Identity":{"Case":"Some","Fields":["jXn3Pc2R/E9QF0IvrHAHTW243YE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SkEtqXOkHXnGiqu/4ITojR+L3O0ChD0Nkb9+SHGK43E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:15"]},"IP":{"Case":"Some","Fields":["5.189.169.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pifmoob"]},"Identity":{"Case":"Some","Fields":["jWXA07EBl/1UiMphR+sNWQFOoPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["41TsNy1GzxTMhYxKqWa0R0LnxAzjOKVOe6vHgRzXQRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:48"]},"IP":{"Case":"Some","Fields":["192.184.148.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["portoloin"]},"Identity":{"Case":"Some","Fields":["jVOSof5WghHvYsyvJX2uWEqlzaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/N7gXEnGxv6A1LnTvaCSIbfKD9aD9aVy0FB9de7uzK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:27"]},"IP":{"Case":"Some","Fields":["46.226.106.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe49:506d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psYchotic"]},"Identity":{"Case":"Some","Fields":["jUGZTR0Y6UQDw/Z9BpnkydIkjUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["de37wB+uu0Ft2k9KGGDSttxuQKftzDmaBmpkbx3OsGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:44"]},"IP":{"Case":"Some","Fields":["5.9.80.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cuptor01"]},"Identity":{"Case":"Some","Fields":["jT2bv/G4NVQ7nrD1pXmiNWk1tVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8lc9mY8t+bTj1lK3USRIq56ODbNsrJATX+riIxoO5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:43"]},"IP":{"Case":"Some","Fields":["45.136.28.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:6c4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jTRMC0PlPmRC31KnHZAB6Gkr5yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlNNd6Tlw/jo0t3GAvG/lvuINeRYckrlxS2q83hRQSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:33"]},"IP":{"Case":"Some","Fields":["161.97.97.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toph"]},"Identity":{"Case":"Some","Fields":["jSs4l4ezY2UkSBapge5A8cA0f1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/S1qulsLFWKWBR4lk7X+w/QdvcsHpo0hT8/2NWp4wm8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:04"]},"IP":{"Case":"Some","Fields":["85.214.55.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["jRFUIUvWFR8EJ9ShWOcdYuIeB2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8BzblIZva3dvcfjXZ4cF7PPZWOKbeczvJYlkApW8nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:35"]},"IP":{"Case":"Some","Fields":["185.207.107.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra32"]},"Identity":{"Case":"Some","Fields":["jREX77yRJwrh/OVeIfnSUJha+rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p1ZxE0/Q1v6DfGIoPrS6q0DiaqB0d8Kf6jmHiZ9gSj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:04"]},"IP":{"Case":"Some","Fields":["104.244.72.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raptor"]},"Identity":{"Case":"Some","Fields":["jRCF6BjQRz7Gk+OwkR/xh0Hx8t8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eiIwOYqQ5p3ErTBOxn3flvaXVwnk8Ro9m5neglLvnxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:16"]},"IP":{"Case":"Some","Fields":["91.203.145.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow009"]},"Identity":{"Case":"Some","Fields":["jQk8nCtCvCJKUxmmYKbPXt7+g58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sl82IKi6RAFihdt0Rk6ooOWbWfnc8/N7N+O0DeQRZqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:37"]},"IP":{"Case":"Some","Fields":["185.195.71.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["jPsWrwAaKnfkCe8FHAQx0FJCleE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zPNM7eqSRaft/UzJVYh6GOZ4EB+cRv1+uqiI47rGCb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:30"]},"IP":{"Case":"Some","Fields":["23.128.248.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::217]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OkurwaRelay"]},"Identity":{"Case":"Some","Fields":["jPnRZj7H/Hm/8xrqwckH0HUVNHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EaKKliOXfvNduFnKg0AxrIz+riqeoSJT996/2qkPGTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:19"]},"IP":{"Case":"Some","Fields":["159.69.11.74"]},"OnionRouterPort":{"Case":"Some","Fields":[1050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:31b5::1]:1050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zucchini"]},"Identity":{"Case":"Some","Fields":["jPmH/0P7fz2apMTz2W/98keppsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VDajIAhDSsx59369qk1ChsmdOPaHKmFFci4HYjWBKI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:26"]},"IP":{"Case":"Some","Fields":["109.70.100.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theintern0"]},"Identity":{"Case":"Some","Fields":["jOnhg1uTP4XdnQlnRDJrX0SIeoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IluV16pM+eAbFSDI/e4tgkm89ZT0nKWNf7M3Zz42rCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:18"]},"IP":{"Case":"Some","Fields":["66.70.190.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["jN9Kda52MaAV4CDP+dzpU2zkxWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rji4UKZD5e1d0TA2cPjmRHtB6oAyYxzxVKwY03ork5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:44"]},"IP":{"Case":"Some","Fields":["185.220.101.55"]},"OnionRouterPort":{"Case":"Some","Fields":[10055]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::55]:10055"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StJames"]},"Identity":{"Case":"Some","Fields":["jNP4AZ+vrG0YxW5R3RQ9h5TgjU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y50kQA+d+bX4OHjZPA9laKlWvzvKrpjynaLW8kFDEk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:35"]},"IP":{"Case":"Some","Fields":["172.241.224.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarkTwain"]},"Identity":{"Case":"Some","Fields":["jM7TkdLhtu0eeHafvc+3DlyRhJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eBMKD5hmh5UBV1BM15IPCJIDbPaOUxG1xGnyFfC7tew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:37"]},"IP":{"Case":"Some","Fields":["141.14.220.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["jL0vCy8LgOknw7AXukcpdtZFOmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UlndMclMeT1w7wVPZHuqRQH+HP5Cwt/LrGXSqhl1qag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:10"]},"IP":{"Case":"Some","Fields":["80.64.218.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::f1a:87b2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy64"]},"Identity":{"Case":"Some","Fields":["jKpHC5BXWHQiA+PrRZQXGfyp/uw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DGkeSsyYn2Q86+FKs4IUmS8Lg5K8sgG1PBLrtOSx+TY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:31"]},"IP":{"Case":"Some","Fields":["193.108.118.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:d00f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Auroch"]},"Identity":{"Case":"Some","Fields":["jKFuh4KT0R8OCAPl/An5OlxmaIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n5QF8gz3Qyw7rIrOzX02rN9iwmjmn2AFIxPDWcotHIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:29"]},"IP":{"Case":"Some","Fields":["178.17.174.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashSalmon"]},"Identity":{"Case":"Some","Fields":["jJ5CdzmcYSwgMs08mMBS8NbqSWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rxH6UQ/UTebLe1r/hC4UW5wR7ZSoqEIrrnAhLvUVhuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:07"]},"IP":{"Case":"Some","Fields":["185.244.39.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["stt"]},"Identity":{"Case":"Some","Fields":["jJRK0VjkENSgZii8XpbqoLF/D58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwjKStVkey4DVAo8sT4x8Ne9xIS8GdZxAZmOW4kP6PQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:00"]},"IP":{"Case":"Some","Fields":["118.241.8.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Intrepid"]},"Identity":{"Case":"Some","Fields":["jHqYEcxsFmT0LZwr2IwURPznnUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EJrsKypUVY7ygf4V2DxlvRZJ8u03G1BlxgrsEAw6cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:58"]},"IP":{"Case":"Some","Fields":["87.236.195.203"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNode1Relay"]},"Identity":{"Case":"Some","Fields":["jHg0qMVP1cUmCcWlB/NrY0ydyII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3UHns+jKONXVX+4DKnWzA2URuUa2xfiTt7+zISgg/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:28"]},"IP":{"Case":"Some","Fields":["82.77.87.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber39"]},"Identity":{"Case":"Some","Fields":["jHaWfCeR4nCRNYRvFy7XSvo8Jg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zOXH199C8ztbun1FlF9WB9LLai5xpTI4Fb4lmSTlP8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:55"]},"IP":{"Case":"Some","Fields":["185.220.101.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::20]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reccenode1"]},"Identity":{"Case":"Some","Fields":["jGL18vQvUy6j5S7VuCb6W8enlWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QCwhG3sdMnx2iVETYHr+pXOH/L5tK8wyV+2HJ+0uepU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:27"]},"IP":{"Case":"Some","Fields":["152.67.71.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["davy"]},"Identity":{"Case":"Some","Fields":["jGEiE8S1wVT6kIR/NvvzbbeKsaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8HgUXztX/pQ+23dmOn1aw6Bg+kAPfgGoT6GFkGSqO2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:54"]},"IP":{"Case":"Some","Fields":["185.225.69.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HappyNode11"]},"Identity":{"Case":"Some","Fields":["jDWxXB8Ti95NUKl1Ep5Hc7RKUD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOyZwQOAnPxxyPXy3FpHTkN/hi1vIN0PhOYA4Z43VXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:53"]},"IP":{"Case":"Some","Fields":["45.79.138.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jDUoa5rP7Un7hAVrXiAQ2Ede/2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CskmZAxpYjwfLOTqWeLBkhl/6QOZdFtXWfwN7fX+V9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:37"]},"IP":{"Case":"Some","Fields":["23.128.248.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::53]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JaldoDoneunMising"]},"Identity":{"Case":"Some","Fields":["jC4wAK293L55Eut9Nnr4Cy/BpoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CK1nXcQGeeHqQ6yLOs/WS28CCm6wLtihn1V0pHtia5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:24"]},"IP":{"Case":"Some","Fields":["14.51.6.220"]},"OnionRouterPort":{"Case":"Some","Fields":[52739]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ts"]},"Identity":{"Case":"Some","Fields":["jCfbGpEpe7NiCmlyemy+5Kzhhow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CFAH7fsNOrS1tFE8K4UfivDlAFUmSGus8x1I14Gp0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:10"]},"IP":{"Case":"Some","Fields":["82.66.81.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:56b:ee10:8e89:a5ff:fe2c:e66d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e4"]},"Identity":{"Case":"Some","Fields":["jCW6E01Xm4qvQg4BIV6yzwaq6Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FzPidd8iqUs2kRd30uNCrDUZPXo/sMUJ5VoDm4tu6h0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:53"]},"IP":{"Case":"Some","Fields":["195.176.3.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::24]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra68"]},"Identity":{"Case":"Some","Fields":["jBiOcSJpNWZoOAc2O1dtmcCxc4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsRDZgOS8yYKzY/dC2jI1aOmRm6GTAh/VQ1azeW1aWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:19"]},"IP":{"Case":"Some","Fields":["185.82.126.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rmdck"]},"Identity":{"Case":"Some","Fields":["jASC3KjEpDnDVOSzAE88GnIJJK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GOYSSOPvSr+EwLQxJls/dNZMJHGw/aQixX4PFJxhII4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:38"]},"IP":{"Case":"Some","Fields":["90.39.100.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionmatic"]},"Identity":{"Case":"Some","Fields":["i+y7VzMYv2Bh7RECJOpjb85OWYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GczeLxZa2UhZhYyo3clajFdq/lAfx7t27k78t5JGaIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:23"]},"IP":{"Case":"Some","Fields":["162.251.166.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shadowdancer"]},"Identity":{"Case":"Some","Fields":["i+pauPld4ZIHdaGo9MNLlHp95QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5TKCAfXGNk5ixNS4Agc1k7t4xBT09ehavYpz9b0jWKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:27"]},"IP":{"Case":"Some","Fields":["139.162.166.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Minotaur"]},"Identity":{"Case":"Some","Fields":["i9vkmBgMQSSdMjD8UJLLPrWmJII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DJIMddZFdSspGlFStBrEPUf23w0ZdJnUtjSDdssjpNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:59"]},"IP":{"Case":"Some","Fields":["72.167.47.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["branlay"]},"Identity":{"Case":"Some","Fields":["i9pf4OLDkasHs7C7/VXcgCOXhKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HSipJFKeLRWQvR/xODoGB3UWCyWR8dHehf5Yomrcds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:10"]},"IP":{"Case":"Some","Fields":["2.58.56.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["applejuicetor"]},"Identity":{"Case":"Some","Fields":["i8kRvML0D2jjFLg8xBDgqt+UUPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6GOfRF3Q95WfqhMx4bsH2IDY2ipT7b/g4grRdgbuiC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:09"]},"IP":{"Case":"Some","Fields":["202.61.255.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoloUnivAretino"]},"Identity":{"Case":"Some","Fields":["i7VaOvu35dnrgyFd7I8hnmjfm20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oHPXJ7oW47lWe5WWGowj0KRyn+sb0xWYxbTMQdNFoxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:05"]},"IP":{"Case":"Some","Fields":["95.110.254.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d41:200:2::e7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["i57VJefZ0oJuFhyntE0hsWm54Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fu7Wt1eo/RCpisKANcbHQt6sQK6hQQCPtbTLXdt3pPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:20"]},"IP":{"Case":"Some","Fields":["23.128.248.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::214]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["i44wsKSevu+WPSparCjzvTBorew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F8WWzLT4lSnZfoIfe6t/X8/tL1ANUKtkamErQptd21U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:56"]},"IP":{"Case":"Some","Fields":["95.214.54.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3646]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobtail"]},"Identity":{"Case":"Some","Fields":["i4ieBMYOMNURATGJ08KtzlIuHzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4WQ+6NHuDM4tUQC4XubnowHtVM+FtxlvfsMISa0vbRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:52"]},"IP":{"Case":"Some","Fields":["190.2.133.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex35"]},"Identity":{"Case":"Some","Fields":["i4AWm+9xRQ/EBpoZCFNSO3rqReE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cFpQ6MeVz7zcRZRBu0t6mrqP/yUcj7AqfZL198vN3Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:08"]},"IP":{"Case":"Some","Fields":["199.249.230.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e654]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockers1"]},"Identity":{"Case":"Some","Fields":["i36ajrlOlQ2qL+gILs1yIiC2xw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x8ATRP/c8r9qYSwxVRuX/Q6YnwcFjBys/hDDiMLRC+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:08"]},"IP":{"Case":"Some","Fields":["174.128.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["laurita"]},"Identity":{"Case":"Some","Fields":["i2sQoK7YlAjlCdRCLskmyJx5M9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u+Zn7f3XOKOIVcfWmwevVk4eJQ/XzsPc0PFcgeQtBsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:46"]},"IP":{"Case":"Some","Fields":["95.211.205.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["i2cyHWFahIcETERyJlQoXm08V2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLprInn0dyDnoaZADyWtQ0b1lL/D8DFbpgtITf81PwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:17"]},"IP":{"Case":"Some","Fields":["5.45.103.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:5:c437:17ff:feca:57d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["i14oLQp9oW5kTRer48njehT343Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ri6ISEWnyuoM/1mBYPVu1bmGG8zYEt72Y8GFmjQTeRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:35"]},"IP":{"Case":"Some","Fields":["104.152.209.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim03"]},"Identity":{"Case":"Some","Fields":["i1oZsVltrUyJ4CW+LLo0JK6UNpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FbwDyxaz6ERfIrIT4xRXna3WxtCPqguwgE2AY9NA3xs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:00"]},"IP":{"Case":"Some","Fields":["178.27.85.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9029]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spellunking"]},"Identity":{"Case":"Some","Fields":["i07LdZ0Tv2d4rKpS1mbrKj59Lu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rtHwxot9gWdEtM07/sSbtB3ePaAT16ie9pabQrlw3+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:33"]},"IP":{"Case":"Some","Fields":["91.223.82.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freiheit"]},"Identity":{"Case":"Some","Fields":["i0lvPvO/XMMqTCDs2+wqBufqQ1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixWWC3pfnl0fj5VKQdzo518D+f8F01I/lLU25FshPC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:22"]},"IP":{"Case":"Some","Fields":["217.79.178.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:5bf::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ooooFUCKoPUTINoooo"]},"Identity":{"Case":"Some","Fields":["i0YJufOLsMnIv4RqFOvSExp2oW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cQd9JI9kgzxWKQVpQEyekMFEMkaJgKztCX1Yt4vp438"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:16"]},"IP":{"Case":"Some","Fields":["79.205.236.47"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FTheFeds"]},"Identity":{"Case":"Some","Fields":["i0B1uRGUyfB71IVu+waabV3aeQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A9u7GzZ76kuzFivRhCxdFYyNGoB6V4jOKrRzCv9ZNxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:38"]},"IP":{"Case":"Some","Fields":["172.10.228.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tanveer"]},"Identity":{"Case":"Some","Fields":["iz7dqxm77Q/xespvemG4fc77J7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0pf1j2AqEqTdLKaqzUkGwIl1ATfDyrhbPFG3fk7Gng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:28"]},"IP":{"Case":"Some","Fields":["143.198.183.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ConcordiaConstanzia"]},"Identity":{"Case":"Some","Fields":["izoH2RVedrtK6SLI+Zrjq32I3SM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iPY7KrwRfsZL3GfNRhBjvsgg/Jvn9VugDBjnFZ6+ge4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:57"]},"IP":{"Case":"Some","Fields":["46.38.232.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iy6yu1OdC4enukvhZ3plAaBLiJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H6s2ZkwYQA/ZJIb90JFEtfcpTGVj5Kwtji/aumyeML4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:44"]},"IP":{"Case":"Some","Fields":["109.201.142.53"]},"OnionRouterPort":{"Case":"Some","Fields":[48794]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["ixmnmOnUzYgBNXzRVqVczURI+70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00qn3VZaEIxMDLrOpMgSNTobph/il1Xw3BHDGldC73w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:19"]},"IP":{"Case":"Some","Fields":["23.128.248.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torNodeCom2"]},"Identity":{"Case":"Some","Fields":["ixJjVjteD7fL/qz9UEsLx5dZyr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E78P/qsbgggyEw1eLr5rkzq7QcsvfpU0KpCUsvLb6JU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:52"]},"IP":{"Case":"Some","Fields":["204.17.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pato"]},"Identity":{"Case":"Some","Fields":["iwyFjdICNhBNaYHz+VIB73Mr8L8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+989tRS2nwHyDiSRkv3b0yGf8a53fCG0Uwx7oiy4Q3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:04"]},"IP":{"Case":"Some","Fields":["89.58.17.212"]},"OnionRouterPort":{"Case":"Some","Fields":[7444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:e35:c4dd:60ff:fe34:7d02]:7444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ams1"]},"Identity":{"Case":"Some","Fields":["iwQj0l79YfDd7In7U4o5jXnIs9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqbInvBUow+fKcjvE0YjwTW0llNEVJBVXVBWG1baF6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:31"]},"IP":{"Case":"Some","Fields":["188.166.103.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eing9wies0fo"]},"Identity":{"Case":"Some","Fields":["iwNPKvvi8nWcyu5YVdDZG7CnA20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKTs6c/jRQysyXxXk3aCXj7v8YtVNnCJvpr42xgqlrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:09"]},"IP":{"Case":"Some","Fields":["107.189.13.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllOfGarden"]},"Identity":{"Case":"Some","Fields":["iuz0h6xvqaKmZP9ypTl4KaZHjmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9WwdytRbeqoYNwjOQ7h2YVTtvv6j5t/WCaWd5pljy+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:51"]},"IP":{"Case":"Some","Fields":["67.183.168.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:601:9a80:2f80:5899:261e:182:6161]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleSister"]},"Identity":{"Case":"Some","Fields":["it4T/oHpVxdxFDjTq9BAIDHIDzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkbVnhcP3dJ6kM8Apg1aWDYA+yEhNwwO8X3mlgow8OQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:35"]},"IP":{"Case":"Some","Fields":["185.21.217.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tommyTOR"]},"Identity":{"Case":"Some","Fields":["itl7BR1H07uFKdt9hXV0Jp/VCCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbvU9pvzdZLyrscvOTErLgBX7IvN1KSPzNpCPhi9gw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:00"]},"IP":{"Case":"Some","Fields":["193.239.86.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SkynetW"]},"Identity":{"Case":"Some","Fields":["is1zvZvdXlr8lxacWDfF4Pcyos8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3kH/CFxQrMQmyp+mfiNyQwpyZHyl8PzAMSlpj8LExB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:24"]},"IP":{"Case":"Some","Fields":["82.165.244.94"]},"OnionRouterPort":{"Case":"Some","Fields":[2424]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:858a::1]:2424"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay38at8443"]},"Identity":{"Case":"Some","Fields":["isgakaEZbCwcvtcclqogT3sP/gA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3QQioAZ8qGvByarc7kafLaUUzd9R5g2rI3wkSOlb4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:05"]},"IP":{"Case":"Some","Fields":["140.78.100.38"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["isfmTWdKFnuhdXQeWEN+KJMXqdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vO4Sojjsj/HX00kp/DGg4spChhxef3t832GtwEk6kUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:32"]},"IP":{"Case":"Some","Fields":["23.128.248.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unityone"]},"Identity":{"Case":"Some","Fields":["isRmc94pTl2TL5PoV/hOp48tR5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2yQfJShyp/I0m013SHfNujCq5bTdodlCIL6IN5r7iHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:17"]},"IP":{"Case":"Some","Fields":["70.34.206.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:f480:2000:182e:5400:4ff:fe11:58d4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNode"]},"Identity":{"Case":"Some","Fields":["irxXars7Jhw5RGkXiJc+UeY6X04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yGtpd3ehUmDfrDh7qh30HmTEo4cuhU3pyIJKikCTZ/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:16"]},"IP":{"Case":"Some","Fields":["3.142.73.219"]},"OnionRouterPort":{"Case":"Some","Fields":[11000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UDEtor"]},"Identity":{"Case":"Some","Fields":["irxNX2GCx+ebCH0e2eXPZSyD5Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qXQSXjNdsB+bDOv3GffgFdDmCZs0i6Lnr5YM7wruwpY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:31"]},"IP":{"Case":"Some","Fields":["132.252.186.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:638:501:4185:250:56ff:fe85:7034]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0188"]},"Identity":{"Case":"Some","Fields":["irsc4L6s/yyfi1O0woZhTlLlc4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IuSLWKXeGNtmWzMt4n69BWYwNHNrpvCqcHkUPEY0k2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:00"]},"IP":{"Case":"Some","Fields":["185.220.101.188"]},"OnionRouterPort":{"Case":"Some","Fields":[10188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::188]:10188"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["irdm+xvlRmlVm4IWWWS4152oARk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qJyXPwR2YzjqJpuAiBJNuME206QZC9DK10IJEmDUEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:04"]},"IP":{"Case":"Some","Fields":["188.68.32.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:42:896:37ff:fe75:d532]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Slowbro"]},"Identity":{"Case":"Some","Fields":["iqPozSOqmsgQO68Kz/TRJEPFofg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RyavqUoYRD/MMHNB7I8VWj3hrMzeoIPL3q/dw9lEwaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:20"]},"IP":{"Case":"Some","Fields":["102.130.113.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vaseline2"]},"Identity":{"Case":"Some","Fields":["ipYlSCos0vMvZxPBzHMUSL1K7is"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+EFwI/9kTggk82wRbhPqE2Uo5+RXKwW7JdGRKpjkgQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:05"]},"IP":{"Case":"Some","Fields":["68.71.25.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7ltorrelay"]},"Identity":{"Case":"Some","Fields":["inQmlZiuqTfxLNi9hvtxLq9i0Oo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["THhuNnmeFc7dm/HNoRfg1aAyjhbNaBcpC+E7XwFd070"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:28"]},"IP":{"Case":"Some","Fields":["217.61.218.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex78"]},"Identity":{"Case":"Some","Fields":["imPkzIbkr/VOB6+dI0Df37hnQxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TPFMSZ/LygMPI4mTsAJspQbxxm85uVvUKewqn4oYAbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:01"]},"IP":{"Case":"Some","Fields":["199.249.230.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::167]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taipe"]},"Identity":{"Case":"Some","Fields":["imIxKndms5hHjICktNODGpYo4A4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+NumsGy7PKhEyd7gby6Ta0NRgIR3dNBGOzGz6UljZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:37"]},"IP":{"Case":"Some","Fields":["185.217.0.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freejanich"]},"Identity":{"Case":"Some","Fields":["il7RQPBfSTTP8CTQbcqxe5yEUjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slLg2w/3m9OCege2BohAV+2GVbtOZf2yWFTXiyyUImQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:55"]},"IP":{"Case":"Some","Fields":["77.91.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nirukoru"]},"Identity":{"Case":"Some","Fields":["il58LQmDWXS01YJSutUf2K1U+c4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7yEMOT4NJcZm3Xn4LuMeEziM2LOhrH56VBXoaIP0NTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:58"]},"IP":{"Case":"Some","Fields":["85.214.42.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:430f:600:5628:8879:3e0c:7547]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iduna"]},"Identity":{"Case":"Some","Fields":["ildJol0EDnJW3NTyomETXe3wdQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GFbvVH4lfrmfEJJX1VdVJLH7N/N4evU6905PN41GdNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:12"]},"IP":{"Case":"Some","Fields":["83.137.158.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["ilMKnOLvjqfZ4rSWVm/YR+dsceY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HtSf5GqetLxpBH/cSdBOocN8j8ANQ5R0jVEXJr6tB6I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:02"]},"IP":{"Case":"Some","Fields":["178.254.45.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:4a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ilIvMKPOp8aSoEGMk2Iyui5U+LM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z/gy1kUvPlVwVTxwmoCrxQ6dxC6zGi6GmeNs/eYawEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:56"]},"IP":{"Case":"Some","Fields":["185.228.138.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:785:3494:6ff:fe3f:873a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomeCanadian"]},"Identity":{"Case":"Some","Fields":["ikhZQqGmjQEoq5m66wD8HAAFQZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JbHRvllOBetqumSifCx538BZt400lAS3GFUOLf5T5vU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:39"]},"IP":{"Case":"Some","Fields":["209.107.107.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["ijyGVzhyajNfvPJxSrednoFZw9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27ylN6KCAbEU85M8d8DmmBwlw99i9aJoqsKoenEMRkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:49"]},"IP":{"Case":"Some","Fields":["23.128.248.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::17]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomthisup"]},"Identity":{"Case":"Some","Fields":["ijh6RMzTbyv/FMZ7wgpmYANtzSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1jbjbrHh7qQqbLBAHMGJd3xrOR5oG7qN2grr9cM3fOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:47"]},"IP":{"Case":"Some","Fields":["51.68.207.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["koala"]},"Identity":{"Case":"Some","Fields":["ijC0vyyGx+ZcLlKpXognGOY/p0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F9sLPpODntsJek2WZQp4Hy1d/2c+Y0auXj7O3oYmIv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:02"]},"IP":{"Case":"Some","Fields":["109.70.100.66"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::66]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum2"]},"Identity":{"Case":"Some","Fields":["ii1xy8oz8To+qWFN4orj9mnYSYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eqCHamiI3rpE7IhCW34AzYEorwd1HVYMLYG36uTaMqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:28"]},"IP":{"Case":"Some","Fields":["62.102.148.68"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalunk"]},"Identity":{"Case":"Some","Fields":["ihaesjHRzPL4qXBfj3yYCKqjIlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["StF8VsNzMYaF7hSavwsc4jLJPfKR1UhbEsMn5h1uzgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:21"]},"IP":{"Case":"Some","Fields":["176.123.8.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blindislandB"]},"Identity":{"Case":"Some","Fields":["ihS6OS9fATdp9ktKkhx6e4CrFv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npKibsp2j6fplorCoGYfZWbK+z6cCTBSwhrMmqgAfbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:41"]},"IP":{"Case":"Some","Fields":["47.243.103.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snaakbarrelay"]},"Identity":{"Case":"Some","Fields":["iguWspS1wOQOlE2hSZLxJn3PZ4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFlBMVO/MSnuGf4i5FbSphvfG+hKpZ3hApgy6fK0RPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:58"]},"IP":{"Case":"Some","Fields":["85.147.65.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudslovewater"]},"Identity":{"Case":"Some","Fields":["ifYGMikwChjwwlxs9G9Tx3jyCTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWp3L42xqbEkGmo1h5DVjsHD+vcP6nFqcrlGZhaMX7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:19"]},"IP":{"Case":"Some","Fields":["103.15.226.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ifUJS9yyzTqEZeWthDS/pg8UnYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ez1BiDVuwc0yCEg0HCMvCgMt4B9AfMvbe/hankRmytA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:20"]},"IP":{"Case":"Some","Fields":["80.64.218.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mania"]},"Identity":{"Case":"Some","Fields":["iekkEV9n/HXqxeLEzzXVM4w1BiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJcheJr5DeTJX9p200kDE4zxq4TdAS5zeKZBXcSF+TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:02"]},"IP":{"Case":"Some","Fields":["169.239.128.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["iefmFGJSM9QCSeYaLkE21PV4z3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MuCzudAfWM0gRUUfReJxrgnmoI/ilStqNq4iQdJ+fco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:37"]},"IP":{"Case":"Some","Fields":["78.142.140.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:78:142:140:242]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ieG12gws3/4GZSD6hSRI7gxPNWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OZbGVFEcw0w8naN5lej7IURdsALvfMLPI/Lzq8uZBGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:47:50"]},"IP":{"Case":"Some","Fields":["104.244.77.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgAU"]},"Identity":{"Case":"Some","Fields":["idHKb9qFziGDeBBSqyOk+iN9lgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0qPjoyvDc3ttg/EyquCjwtXirbPq6G8x/5mT4HcZP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:52"]},"IP":{"Case":"Some","Fields":["139.99.192.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["discworld"]},"Identity":{"Case":"Some","Fields":["idDzH5Bj+afglZzngzpqyUOumgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8pm8RZ48dCwvC5b921yYKO07KivFDh4o/3IoIQojaWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:10"]},"IP":{"Case":"Some","Fields":["107.10.73.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev13"]},"Identity":{"Case":"Some","Fields":["icfoUswvpTfteHda3DvqJGcrQVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+NPfOSGbrNVMfPDinZ42u8Ams9b6pWHoD8Ii5x0uKLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:18"]},"IP":{"Case":"Some","Fields":["51.15.59.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1419::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COMPUthings"]},"Identity":{"Case":"Some","Fields":["ibRZcWmp27Fx8LRinHPA/VXXZ8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YyHFB+pAqTs27+x2tz2UCU7t+/VQgfWEVtWvw7mUG+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:24"]},"IP":{"Case":"Some","Fields":["213.49.172.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet"]},"Identity":{"Case":"Some","Fields":["ibE9f01Ct5UjMYk70UhIEGAPtKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SQdewO7HbrFAUFSPUMlCJB/DRH8X6wgQySNPj4EYZkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:40"]},"IP":{"Case":"Some","Fields":["185.100.87.202"]},"OnionRouterPort":{"Case":"Some","Fields":[14450]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["ibCmn7hhIS9V1fr1N4vmKdQrTOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DvvxlvKBpNgvvPdEjJUA85DbpTodHeQGJfZZlGtWqsU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:30"]},"IP":{"Case":"Some","Fields":["128.199.59.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blanco1"]},"Identity":{"Case":"Some","Fields":["ia+HXZW8NCvz3lmybyoJ3tBFguQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["74KcfvoLihQhtWDTqTLeBEOiSCNlpQ81TSD1QjQHtB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:05"]},"IP":{"Case":"Some","Fields":["84.183.226.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["piratecantina"]},"Identity":{"Case":"Some","Fields":["ia5flsuXkZ7xOxcuDk4stQzDPxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K/YxlDBwSoNQxs/RKwOuMhMJ7sriJtVdMWMvL9QjNcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["195.144.21.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cyber1Creek1DE1raw"]},"Identity":{"Case":"Some","Fields":["ia2fMrCJvJNi2WE2bDP7Y82Dttw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SW2HfYhHUUJuhNu0pfBSf9vYiC2O8eMrpavOy8FUyXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:07"]},"IP":{"Case":"Some","Fields":["173.249.26.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:1:111::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["megator"]},"Identity":{"Case":"Some","Fields":["ia08aEoZQ6HyuEzoVzbXwHMXxn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c26jaOUb4qZUKZjrFKPHIAq7+deRYRE8TKozSiufUFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:29"]},"IP":{"Case":"Some","Fields":["99.199.29.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AtomizedRabbit3"]},"Identity":{"Case":"Some","Fields":["ia0IQC0do4T/a92Pfkv8v3+j1j0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OGadlCJU+AViOJjbqi+yZECS5MrivtTqAvWgxPQzeSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:40"]},"IP":{"Case":"Some","Fields":["178.211.96.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["none"]},"Identity":{"Case":"Some","Fields":["iaza3tsBPkJuLoGQ6J7bGI3krD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SKLXarFXdgVPhPYlQIO1F6CEovWOGk6lNG/azrIi4eU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:36"]},"IP":{"Case":"Some","Fields":["152.70.50.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6802:c2b3:edd1:683:b456]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["iZ0dErv27URQSMswLA8UttFa3KI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRWpgNiEKIduIWFOyN7bUj+wDEJMDIGy3H4QZ01BLB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["176.123.10.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["iYeoEU073FD8Dog8cMY9gip1d6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Q0AbAB8NFZ7Q8EQolsN9L5aXaae1OPumq78UT6QrMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:37"]},"IP":{"Case":"Some","Fields":["23.128.248.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::22]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RabbitPlannet"]},"Identity":{"Case":"Some","Fields":["iYcu61MjVaVm1QQBrfqy/+Kipls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REmheJGrTH/LzDDp2R7W1EOkZRg28XpwfO5ZBsuzqxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:05"]},"IP":{"Case":"Some","Fields":["185.140.251.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heims"]},"Identity":{"Case":"Some","Fields":["iXpn281+nVw7X9GTSUM+ImOgHQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kn92zGxvQWVvvSTzAQBH99dqFyl4wCRwZpF3qrtwS/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:06"]},"IP":{"Case":"Some","Fields":["78.130.128.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itpol2"]},"Identity":{"Case":"Some","Fields":["iXLa1XNCLbXYlcxZPEWdc3TGqJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["43rbAdkNsv4OOW07qx9FDx+BXE+FNeNV9PfUDfEusxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:30"]},"IP":{"Case":"Some","Fields":["89.150.131.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackmamba"]},"Identity":{"Case":"Some","Fields":["iWNkt5lvXfug4V0aLgbQuYtVXdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u3q1wW8dWd6WivYlU/ZkIjbpph4ox5Tq6uQgEzUYweo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:54"]},"IP":{"Case":"Some","Fields":["198.50.223.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:7ac5:198:50:223:16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["iWLGLh4CVgzA2KRlUuOkpbOemXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FvX/5bXloXd8I4xcUVFi6eCd52WVe3uEpwUATEFyHxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:26"]},"IP":{"Case":"Some","Fields":["23.128.248.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::40]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["iVZyuGMwIHVH9nfBtcuJBFeZMRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zy5RaWw9bDxY38qVcS9NvosKoo2+1QmUW1/ouaghEEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:49"]},"IP":{"Case":"Some","Fields":["173.82.105.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc14"]},"Identity":{"Case":"Some","Fields":["iVIQyCN+NFeuJZXjugU+sjau9p8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbMIYaqWpxAjg/uxB0YU5jI2smxhWgGsXRtt7tLfqdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:43:21"]},"IP":{"Case":"Some","Fields":["185.100.85.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["iUptXLd6jOdxqkZ63LEbRM3BDus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eUSkv1eG6e0t7USXhjwkrl7zKxnhosMa2hOJqYXIhbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:22"]},"IP":{"Case":"Some","Fields":["23.128.248.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::229]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv16"]},"Identity":{"Case":"Some","Fields":["iUNifzHiwcgeQCWhRBHxzM1ws6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3zRGqiMoEWehZcI/GB7/A2yLYL68jgYDIHpeszUsl/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:44"]},"IP":{"Case":"Some","Fields":["162.248.163.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackBoxx"]},"Identity":{"Case":"Some","Fields":["iTn+32+3RP2Oaf9s5HMxjyG33a8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WhZH+dQv5rP7dcTVvA9YkNNwCVTDdEgeYGg5U/hV1IU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:00"]},"IP":{"Case":"Some","Fields":["203.76.225.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yomi"]},"Identity":{"Case":"Some","Fields":["iSqCe/Z9snDjA2d6M/5XcGnd5Vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQ4ambN3T0dCipM6qUHfVrrEZXcwJ4BjI/5JQBkD0tU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:58"]},"IP":{"Case":"Some","Fields":["104.244.74.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8b5:620c:dc25:c624:aafd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH107"]},"Identity":{"Case":"Some","Fields":["iSmvVVS+Yi3j/jSBLAPWX+fV0PE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j58gY9nigsRdV0PpL8EhoDQJ1YfqQ94iVk94UlEv3sk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:08"]},"IP":{"Case":"Some","Fields":["192.42.116.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["iSetN/OdEMP0z91SE2BuSIHM9rA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7YvyAmc/nmh44U7S3AfiaXr9xSjYV/VoiVqM0uUaHZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:33"]},"IP":{"Case":"Some","Fields":["51.15.218.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex84"]},"Identity":{"Case":"Some","Fields":["iR91yeqQYBC+kJfZVz9y9GLYihk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+XD1C7vLuwyr2BUUV2KKMLM+1jThjFAi/6jec/Kdkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:26:34"]},"IP":{"Case":"Some","Fields":["199.249.230.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::173]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange039us"]},"Identity":{"Case":"Some","Fields":["iR5yQkNuDviSwIZbE3Poi+sqdjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XHipqYmGlkZcoo8Kfaxw+EyJRZgAZCEGp1HwkVkBqyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:40"]},"IP":{"Case":"Some","Fields":["107.152.46.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindbyte2"]},"Identity":{"Case":"Some","Fields":["iRFSXAcTQX6e0lSFqUkkVZBlh1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OJKIOKgkucSo6N3UP4WjlTlN38GqyZ/Xp6MrvQChe0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:10"]},"IP":{"Case":"Some","Fields":["130.61.50.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frolix8"]},"Identity":{"Case":"Some","Fields":["iQ8yuNz8Bw5Y9dUK6Owr3gEBNGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O1hQF96mt9iPajCW5wSCQIuioDh2CMZYUwY1qdz+Uhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:58"]},"IP":{"Case":"Some","Fields":["153.120.42.137"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["v1704"]},"Identity":{"Case":"Some","Fields":["iQna1khKPayF80II02Id48fsQIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAOiC/z/yM2nJeJjqeY1pFDYYlK3qmYl6njMHK91pIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["37.114.37.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3e3:55::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Privacyignr"]},"Identity":{"Case":"Some","Fields":["iOCKMrZ1pyVtsaGLyAAe8mvy2YE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMoQw4SVr8lcItKYKi+pF7PT2Yvg110/yFK0BmSl9o4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:29"]},"IP":{"Case":"Some","Fields":["64.98.115.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayDE88866"]},"Identity":{"Case":"Some","Fields":["iN9dcI6THEMZAqqr6pgeeVHgAIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jQxUSLcdGx1sB304bLU6wwpXAsmVhvGraGDDfZISkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:40"]},"IP":{"Case":"Some","Fields":["87.106.193.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer72"]},"Identity":{"Case":"Some","Fields":["iNzSZ20n6aN+K0Aq4bQa/hVEECc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZDkJ95u6CR63tMNLwaEZD6IVL73qL5b3Tefb5LFj+Js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:02"]},"IP":{"Case":"Some","Fields":["185.16.38.112"]},"OnionRouterPort":{"Case":"Some","Fields":[8172]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeHackCom"]},"Identity":{"Case":"Some","Fields":["iNajwPwo6ua5rQuhCCIjwDwbMvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dEBbaAvyt89jD0LRyqA+zjOxwCkFwxMGa11mj8NQDfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:17"]},"IP":{"Case":"Some","Fields":["137.74.119.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DiraE2yhvB"]},"Identity":{"Case":"Some","Fields":["iNXwvYf5vBqW/L/c7bHA5rqx0U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQdYZIcNwy2a61W3emlWM9He/VRGKiWbsxg6B4cj5kE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:20"]},"IP":{"Case":"Some","Fields":["92.35.24.60"]},"OnionRouterPort":{"Case":"Some","Fields":[1025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:dd6d::21]:1025"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay02"]},"Identity":{"Case":"Some","Fields":["iM+NQtSbfI6dA6vl2uevJemQIAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ijj9r+xTNlNddryNTSElhh+s4RvInHLZTw2iVf1HglQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:00"]},"IP":{"Case":"Some","Fields":["82.149.227.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:125]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RasBifrost"]},"Identity":{"Case":"Some","Fields":["iMYVrF+Vkb/UjbV4slK4mnL1w6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4U9TRFomK1N9IaKwOJPZLbEgO4tmV5h8VRnEAnCxWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:48"]},"IP":{"Case":"Some","Fields":["46.244.239.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Determination"]},"Identity":{"Case":"Some","Fields":["iMWGM8lTei4Pk6XsCb30D8MkdxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYtwRzHJZ3yCc+fICZ1A5Tmmi+kZ6Mxmj3RgNShRUPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:52"]},"IP":{"Case":"Some","Fields":["87.236.195.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viresinnumeris"]},"Identity":{"Case":"Some","Fields":["iLCiE7RbPzcBAA8atOR10d3L8ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlgAUlnwBo0drMCGjMnv9O0UX/ETNNkaVLi/yN5tD7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:13"]},"IP":{"Case":"Some","Fields":["51.15.139.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:628:f32::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bahabugger"]},"Identity":{"Case":"Some","Fields":["iK2ZuWgt05E8sEJPB2Ox2DHn5E4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OWhtCTHrf0yK23qUrHo+vBE5WNRRMh+YYJKs42q2nOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:08"]},"IP":{"Case":"Some","Fields":["27.255.77.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mowgli"]},"Identity":{"Case":"Some","Fields":["iJlE9UDBVefjLJCbnhQkZ3aJrU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/wrFkb322aR9jxFST1NFOmKPYtPv5Ek4qE9Wp9wFw0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:34"]},"IP":{"Case":"Some","Fields":["51.81.93.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iIXqb3SmlIJbE7inCA9s8WTfdPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWOf4ZblPuc6Kcf0gycUlmzeYUStVef2hP2JBMFloFU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:27"]},"IP":{"Case":"Some","Fields":["144.217.95.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::49be]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uglycat"]},"Identity":{"Case":"Some","Fields":["iH11DGntgdFLQrc9ZSnZjDwlpXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+mqI5f9iBkBwhf945TTvdK7+4hbudqoTxDeyyO8TdXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:29"]},"IP":{"Case":"Some","Fields":["73.41.183.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonkostchtchie"]},"Identity":{"Case":"Some","Fields":["iHyrUBqdtoosRO35i/ULAwTu2LY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pwRcSm5lo/b1/Zkv3BxZPFrwVZX8GqkykojtBnKV3rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:17"]},"IP":{"Case":"Some","Fields":["185.220.100.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:7::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TruthSeeker"]},"Identity":{"Case":"Some","Fields":["iHVK+baoIGFOFP6PH+pCMXnoCX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AcjMU/RK/X1nI3T8527alazVoARSQoy0A7YOaIosw7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:38"]},"IP":{"Case":"Some","Fields":["8.42.76.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sugarlabs"]},"Identity":{"Case":"Some","Fields":["iFyj3VtQmAzUHFG6f/yNi+RrZlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwFx/YlAeMViN5DdMdebWwEMbwpSSMEjU/DujacYBCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:38"]},"IP":{"Case":"Some","Fields":["192.184.220.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:5a8:601:f::216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay19at8443"]},"Identity":{"Case":"Some","Fields":["iFx7brlDBot2IHDiduKZMZ5asIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jk5Ilnpdmac5l1mkq/eSNpNbbTYG6csKyEApF/x/FOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:40"]},"IP":{"Case":"Some","Fields":["140.78.100.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1151"]},"Identity":{"Case":"Some","Fields":["iFAvf8SPM9l+5eeVCCsVn78ESnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8nRz1k7YBlI9s/vbfNF5prIhZErbbxoA+rx4eNWTi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:43"]},"IP":{"Case":"Some","Fields":["185.220.101.151"]},"OnionRouterPort":{"Case":"Some","Fields":[11151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::151]:11151"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FoxEarsTechRelay"]},"Identity":{"Case":"Some","Fields":["iDdy0Vm0Apnol0ToR/xfMqqtUVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtcUdFsCpI9zH9ToUyrVhtFAsuKBEq0IiPQ5rqicX6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:04"]},"IP":{"Case":"Some","Fields":["82.65.243.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:1e9:5160:ba27:ebff:fe68:d2ce]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cheetah"]},"Identity":{"Case":"Some","Fields":["iDZyPS2X80/k6TMETSyg/hSZVXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IM+XIYT40IyS22c7iUj6eYsDPAxEtCHEeI2pArzwR/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:26"]},"IP":{"Case":"Some","Fields":["108.180.138.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9905]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:569:52c7:3400:9aa5:cc38:121b:24ef]:1720"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sexytiem"]},"Identity":{"Case":"Some","Fields":["iCaYssocPMizR1FHi/uQzoTHLzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0BjM7h28VzZHuqhEvP4Jjd7lLUleT+9mOZhiNGm8VTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:03"]},"IP":{"Case":"Some","Fields":["95.216.107.148"]},"OnionRouterPort":{"Case":"Some","Fields":[19731]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:75d::124:148]:19731"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iB8JJ5+U6arT3jByffOtfCzpAN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SLFFfP0EbYqprQEjOFLlrPaBJ96IsDGKtJxPafhXbP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:39"]},"IP":{"Case":"Some","Fields":["88.99.171.75"]},"OnionRouterPort":{"Case":"Some","Fields":[2479]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:419c::1]:2479"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Karin4713"]},"Identity":{"Case":"Some","Fields":["iBv7QwzEO9nSALqDSMaem2Jc+t8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhr41ALzaUbL70MxZ9EGsrY5wPuTk5nWTfMHtxTI/U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["83.209.9.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["weisswurschttor"]},"Identity":{"Case":"Some","Fields":["iAKJ8rYykgWFQNy3ZAO0izwtpOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZcD/HgDOOhv08v4dHNOcdksisgkhK/CgfLzdg5uuRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:41"]},"IP":{"Case":"Some","Fields":["3.91.76.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1f18:452a:fc03:9323:da54:e44c:4e2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RightToInformation"]},"Identity":{"Case":"Some","Fields":["h/4f+CPo4TWdLugLmzGzs1i+4hI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oRnayh7fEweFILUNtdifFgcxlgVYcFHq/if/kbP7VoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:28"]},"IP":{"Case":"Some","Fields":["81.169.134.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:439a:1900:43d6:a3e4:9968:9811]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Maple"]},"Identity":{"Case":"Some","Fields":["h9/ViiP73PtIweUazVYXtIUnnmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DXDGIa4oHgb6cDiqwgs+DED26VtuUe7x7295+eyl7kI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:17"]},"IP":{"Case":"Some","Fields":["162.156.191.108"]},"OnionRouterPort":{"Case":"Some","Fields":[55003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ireadtheshadowconf"]},"Identity":{"Case":"Some","Fields":["h931vtesyoimLQlSkF3kVK6HTXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDN0ALCTWyhhVCB4h9YB+hktuVmf9DATLzk/nFHzqp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:10"]},"IP":{"Case":"Some","Fields":["185.194.239.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::61]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["h8CN39MsYvPFbTcfl3TSe/27gHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0E6E9c4lDgQZrOPM61wCvAkBydNGu/y6sHYW5NjH4Bk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:01"]},"IP":{"Case":"Some","Fields":["23.81.66.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeSpeech61001"]},"Identity":{"Case":"Some","Fields":["h7uVlc3GxFPp6iNcadESQhotDpQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cq1/xCtnqsEy9Ti9rXEuvDxvBb0l+dGXye001ShzogI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:10"]},"IP":{"Case":"Some","Fields":["87.177.68.243"]},"OnionRouterPort":{"Case":"Some","Fields":[61001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f89g65f21"]},"Identity":{"Case":"Some","Fields":["h7NVfz55IhfivE6ZI+rKSuxbqcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a9HWGdj/RV7+iu5j+IqpnW86E5ZG9J9PRly/ijvTXuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:30"]},"IP":{"Case":"Some","Fields":["90.191.152.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NukeDukeNode"]},"Identity":{"Case":"Some","Fields":["h7MQPhADKrxo5a49FzLqUlJMCkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iY/FzHBVm5pRXPhlXgb1U8S9pJ6K4NlvjLSdqxnX3LM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:04"]},"IP":{"Case":"Some","Fields":["87.17.211.252"]},"OnionRouterPort":{"Case":"Some","Fields":[8325]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tvSORGaming"]},"Identity":{"Case":"Some","Fields":["h7ChXS9Hff9Bm6Iy/QI5KvydeXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BqkXkJz6peVMKGQIgn5WhFDEsKeZponlRlisLvUGJJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:20"]},"IP":{"Case":"Some","Fields":["65.21.126.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarryBen"]},"Identity":{"Case":"Some","Fields":["h6ob5KOVKd2GGUc437WdxpjzE2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KQHS7EgKYZq37PzBEV+X/JdMD9N8NX7HHnOuZOeusTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:50"]},"IP":{"Case":"Some","Fields":["52.205.15.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kbtr7lv"]},"Identity":{"Case":"Some","Fields":["h5sDZGjTCrGiGV+W0skfPKqNHcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ci44Nugn8lT9CkHcqbndtJPdC0QFzylOvvQn0ThVHbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:22"]},"IP":{"Case":"Some","Fields":["94.140.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay36at8443"]},"Identity":{"Case":"Some","Fields":["h3qqHfCNkC3KZnBW6238TNKwZlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jPrm5P9oao4Nw5+RMNOxwg69s2Ex2xxFc9NwGycMMSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:23"]},"IP":{"Case":"Some","Fields":["140.78.100.36"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nexxtor"]},"Identity":{"Case":"Some","Fields":["h3SFP3dCOt2fldIg6jCfEvjT6Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QpkHwIY0M6nzeqNKSNytvd1kHhzyTLPetEZ3v024mU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:52"]},"IP":{"Case":"Some","Fields":["65.108.212.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:12f8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowland"]},"Identity":{"Case":"Some","Fields":["h2x85Dd0NmJQ0+do5pDaudS11aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ad8Q7K8p+1BmRHq9aipVgZb+ukWl6v4ZatEtMHhw3LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:57"]},"IP":{"Case":"Some","Fields":["37.218.242.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG13"]},"Identity":{"Case":"Some","Fields":["h2ulxBq39KipmqyrmAwIHbphcRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQ/9Nz7UR3n+rcR/ANewT1DoidLFNz/NpM8wD3AS+RA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:51"]},"IP":{"Case":"Some","Fields":["193.189.100.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowsun"]},"Identity":{"Case":"Some","Fields":["h2mvbcxF2rnCGc2fRk6uMmhVDP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPzKWVS2XKPycRPMDqUxmAW+SQ9Uh2E1XOtIzR+Aqo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:52"]},"IP":{"Case":"Some","Fields":["178.175.148.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:ad::e746]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["h2XGr/YsJmo42Mc6dmBKWxZp+qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWuaGCvao0VkJFUe/2PuI/g2BlFSljuWBVEIPdmShc0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:54"]},"IP":{"Case":"Some","Fields":["152.70.64.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2603:c024:8001:dfea:2::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ldExit3"]},"Identity":{"Case":"Some","Fields":["h2E4Rf4axshN7AyQ59yVdp9TLiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9SJC2LOc27R/OFEpXitjlzagg6IzoEt62MQ++IrIo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:48"]},"IP":{"Case":"Some","Fields":["185.254.75.55"]},"OnionRouterPort":{"Case":"Some","Fields":[56718]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:d9c0:3000::a22e]:56718"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Babylonian"]},"Identity":{"Case":"Some","Fields":["h190o9wUc3vsoG+LUAAiFU0aKdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["03bhRN5esmm15bJ43KKb1d9i1zlW3x2KMG5J2QBAKps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:29"]},"IP":{"Case":"Some","Fields":["83.226.248.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spigen"]},"Identity":{"Case":"Some","Fields":["h02EOCyJLz9hzJ4Qa/CIQ94Lhlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvyyrldjSqmpOCy2zsRmDurhxBNI0C+Gmo/+V0cGooI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:54"]},"IP":{"Case":"Some","Fields":["192.42.113.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:113:192:42:113:102]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda0"]},"Identity":{"Case":"Some","Fields":["h0zn5zKjYoow7ku3E/pF+L4/MsM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JtwBGhLw225JAGMB6OFbivCSmq+U4/yPWfWMk1vcJ74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:57"]},"IP":{"Case":"Some","Fields":["88.198.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:222:19a::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["h0ilws6L6LYJkBHau9c226H6vWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vElIvXO21wttdPsv8dvxJIUjcWFutQqU6GilUnvy1jk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:05"]},"IP":{"Case":"Some","Fields":["185.220.101.37"]},"OnionRouterPort":{"Case":"Some","Fields":[10037]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::37]:10037"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["L29Ah"]},"Identity":{"Case":"Some","Fields":["h0WTxXFjfGX6MySz6tfdVC4rtkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wsNckB5DGsOUhtghi6chKMjp+dY2HwcM2C6NCwcm85M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:35"]},"IP":{"Case":"Some","Fields":["79.137.197.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsten"]},"Identity":{"Case":"Some","Fields":["hzxaydz7oshS6x702wjqq0ctsxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nN0pxOALicaiZEQm4YBHcMalMzEUIw90IuU7dLF5qpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:03"]},"IP":{"Case":"Some","Fields":["135.181.144.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:e041::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["IronFist"]},"Identity":{"Case":"Some","Fields":["hztlolapaWd5ZMoE437JVVCJ2zw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ME+GE5rZqeo1RPOvJJBAnw1TnC/EHjl8y68EzByzNjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:45"]},"IP":{"Case":"Some","Fields":["216.73.159.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq06"]},"Identity":{"Case":"Some","Fields":["hzV/zCvywh8GlxQ4G8psPn78vV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S8kjuNnuLsF9CNpYJqTqvxDxKDzXyVCaSyAvCXWXpEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:52"]},"IP":{"Case":"Some","Fields":["193.32.127.157"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0144"]},"Identity":{"Case":"Some","Fields":["hy0KDevpFOw8PjEFt6jMFXZi+mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByYSqgM4ZlA1J3m4nntMujohjEv4Y6tkLix+4BfVXfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:29"]},"IP":{"Case":"Some","Fields":["185.220.101.144"]},"OnionRouterPort":{"Case":"Some","Fields":[10144]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::144]:10144"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["hyEIxSxSzBAhejUciD6ZGu33xHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gPYJZN9D6gvVfz//SOgaRU1ik7Lg28NzdPZ9sTii5Ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:59:51"]},"IP":{"Case":"Some","Fields":["135.125.89.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lennosplace"]},"Identity":{"Case":"Some","Fields":["hxVKLdmzidvZrQlwCawnsMX8/mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x9cLzHle/vGzpB7hdezR4kJyLejQ7bsqVdstio2z12E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:52"]},"IP":{"Case":"Some","Fields":["60.241.239.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:44b8:2128:1800:85ef:14c9:a370:276e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rocketrelay1776"]},"Identity":{"Case":"Some","Fields":["hxLhf70Na7q2Dj6JezJvrlHhWwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dFRJkJny6FNo3dkA6RkveITrW4MlHvW8/1XPtBwt3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:10"]},"IP":{"Case":"Some","Fields":["107.189.12.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Proteus"]},"Identity":{"Case":"Some","Fields":["hw1k+HRY13Bq1oR5Q4OSBso3/RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9jnSs8He1Ln1ebDYkof5LpbKYSXF/wGncONwvyRq9LE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:20"]},"IP":{"Case":"Some","Fields":["92.210.13.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheFastBoi"]},"Identity":{"Case":"Some","Fields":["hwwBkEIOJMpJBfpLBd/bMSymfBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6lF4jSE/XzBiZRDad6+ilGI4heeZ3LX5tiUgWCjwEJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:01"]},"IP":{"Case":"Some","Fields":["150.136.83.160"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1188"]},"Identity":{"Case":"Some","Fields":["hwNTDFzv+eaLbpr3VDKjkMYxTEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AltDpyOYKJaee3I4j3Eq2syjf7dGQGfRxYSm7PHqCQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:08"]},"IP":{"Case":"Some","Fields":["185.220.101.188"]},"OnionRouterPort":{"Case":"Some","Fields":[11188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::188]:11188"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc2"]},"Identity":{"Case":"Some","Fields":["hwHnCsTAyeH+R+qFP8mX0pvl1lw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXuZvNe0m/XAjTJCSwDlBDIUFTFptaUTVAk3NvmwvnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:36"]},"IP":{"Case":"Some","Fields":["95.217.0.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:4eca::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG12"]},"Identity":{"Case":"Some","Fields":["hwBuHjjuHTW/73XB+9IUtwSWPcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r/Ickc+QBnEmdM5m7skpkEP8gKpaf6eac9rq1aot/sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T17:06:47"]},"IP":{"Case":"Some","Fields":["193.189.100.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Potatoe"]},"Identity":{"Case":"Some","Fields":["hvunU8jSVlPghrmP/4qghPhi22c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["63dDK0bqGtkAvqsnyArxaCK9hWOZkdOCkzO94OTuc8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:03"]},"IP":{"Case":"Some","Fields":["139.162.232.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:febb:4d59]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uovobw"]},"Identity":{"Case":"Some","Fields":["hvKCjLSwh1UVYH9OIJeVFUK3E+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+pasFOzsn0BHPA4Y3s7WycA07Qg5hCoEDRNTR4yr1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:19"]},"IP":{"Case":"Some","Fields":["95.217.2.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:4d4e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra20"]},"Identity":{"Case":"Some","Fields":["huR5Jm67mC4gQAlTLtRgYoaJ5bU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cllxc0v0UbczlC/GkJxFEW6w6x7+/B/D8I3XRoBkVUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ngggermany"]},"Identity":{"Case":"Some","Fields":["ht6pvvSvqTLIjRqS0ydsh7NqC30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2D+f/OqfSRmrmNMojMJ6m7/pNkiRDqh9YqDE0K/W9O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:01"]},"IP":{"Case":"Some","Fields":["37.138.45.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoldMyRelay"]},"Identity":{"Case":"Some","Fields":["htlCl1W2RtjBKWwbbLyal4dtbY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b5zCB3DUFV0RPKwOT9lltTuLrR/vUn8Vn7rqL76WG5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:23"]},"IP":{"Case":"Some","Fields":["51.195.46.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::58b8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mnesys1"]},"Identity":{"Case":"Some","Fields":["htkk7eFJi04d0I0iYPPp/kVAEuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iAN8EPkY0FNfLNuBbwvtETXEg9pL3eG7CCXukEGbKYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:44"]},"IP":{"Case":"Some","Fields":["193.30.123.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay07V6Rocks"]},"Identity":{"Case":"Some","Fields":["hqVVS0DwjgKuLjP/HTo3IKZ4n9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kSxBHTVpPVEZJX0PBx2SEei20F1zF2OklxM+Jl2m2Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:10"]},"IP":{"Case":"Some","Fields":["185.170.113.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ad2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Njord"]},"Identity":{"Case":"Some","Fields":["hpy2ky74fcFS1rEr3+XIJneXXnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pn8ptKV3Znh7sarlkDFuxBL2ufeVyXV8OJhMSWwk/n0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:51"]},"IP":{"Case":"Some","Fields":["83.137.158.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrorist"]},"Identity":{"Case":"Some","Fields":["hpk3FBXcBSpgvKOq1o5V2bdZyuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8/Se8KSoyWikWHiKLk40JF+dRmDYF9V/pBizAKr7UG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:58"]},"IP":{"Case":"Some","Fields":["185.73.211.3"]},"OnionRouterPort":{"Case":"Some","Fields":[50001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8dc0:aa00::13]:50001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor01"]},"Identity":{"Case":"Some","Fields":["hpbcesBHD27Vx6xIAwAC19Nxb8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAIe4bwDm39+geZAvMpoPDURcrLMxqCwRU+H4r6LXKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:38"]},"IP":{"Case":"Some","Fields":["206.217.136.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk4"]},"Identity":{"Case":"Some","Fields":["hoolPDMPQPvkNdkyCEk5f4WCPoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q25WLTGMq2XuQJCxJ2zvmzRJovn+f8OC5Ib0ykAKZJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:17"]},"IP":{"Case":"Some","Fields":["195.234.152.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Challanger"]},"Identity":{"Case":"Some","Fields":["hoWsOiWqDU7KroCDU0Kx7QEeR6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubi5y0UD0pLnVAoTiTGk92gQguk7H6PI2xsMdhBReI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:53"]},"IP":{"Case":"Some","Fields":["179.43.139.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber38"]},"Identity":{"Case":"Some","Fields":["hnjGKdNeLKag0aPT9MX1YTT165o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nsvKQMSA+Q7aOCntNrysmNne1jpIY5uXjaKtX7njBC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:01"]},"IP":{"Case":"Some","Fields":["185.220.101.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::19]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE71"]},"Identity":{"Case":"Some","Fields":["hnV0RseXjTfeO0BEuutP2zT9dM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IFPICJ4I8x7aVihqmw+qsyOgRYNwJ8ggVcvqn6JpmYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:48"]},"IP":{"Case":"Some","Fields":["37.221.67.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8r0k3nN0d3"]},"Identity":{"Case":"Some","Fields":["hma6wIfGGFgBs4eIF4cZo9riUJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BojnFDERYl7GrJax20dPKf4A0OrIPv7cmqrzCp+XQ+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:40"]},"IP":{"Case":"Some","Fields":["98.46.21.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["hmK16fsK8NL0U069WtnUWOGWbKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tsruehVo/yZUjR4dlPIZZ35jU7yUkQ8/Phy/BwOANOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["95.214.53.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gentor00"]},"Identity":{"Case":"Some","Fields":["hllsOoa6v1JOq3T1bmZuev2A/Qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WN8e3CeTtDB21J9dd8qFNdSKqr6+VeEErugvmfU4af8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:22"]},"IP":{"Case":"Some","Fields":["142.132.162.38"]},"OnionRouterPort":{"Case":"Some","Fields":[6667]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:fe63::1]:6667"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["hleptIG6OaYMKeSa+tXOVSNneBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92HVncSj+XT4otNl8ZkV9U3MtDA6ThPX33G1V6CY+Ps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:41"]},"IP":{"Case":"Some","Fields":["188.68.37.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mercurya"]},"Identity":{"Case":"Some","Fields":["hlTJpdHbMhPrjdg8Zz3yQHdXPF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WUabS1xFoPiWog0F1tHdeLTyNTwRHe7VlhGSxkukB3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:40"]},"IP":{"Case":"Some","Fields":["178.209.46.173"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq03"]},"Identity":{"Case":"Some","Fields":["hijSrMocm+WW3tHfnQCZu9sTUrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1DpY4+w7ULPul+S8o/F7dhjVtie0Im8vK0P8yvRvUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:02"]},"IP":{"Case":"Some","Fields":["193.32.127.154"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["405test2"]},"Identity":{"Case":"Some","Fields":["hiWCGvpXn4kvH893+KKsmkrUz9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZUG1s7lu2hRxx3637jLD407rL/n0KVwCzDZx1hm3ko0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:35"]},"IP":{"Case":"Some","Fields":["68.12.219.144"]},"OnionRouterPort":{"Case":"Some","Fields":[456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itomori"]},"Identity":{"Case":"Some","Fields":["hhvP3RSJc5hef+l8dFXJ5KxOE74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbmSdXXQnsWEzp4j2nVpk4k/6erVVvxXQbnR/u7UJfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:43"]},"IP":{"Case":"Some","Fields":["148.251.22.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:8367::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["acidp"]},"Identity":{"Case":"Some","Fields":["hg+81tCaCEMIj4hSe/vTjxvHDwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wXUdVC8E6U9opr3JjENWIVg3EVyaO+kn1s2ukDX20zU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:39"]},"IP":{"Case":"Some","Fields":["87.245.110.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["narp"]},"Identity":{"Case":"Some","Fields":["hgQvb87HzOMu60lel/7rqLXPtd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sclTRFt68WW5srBsWExm09tCrYgUZc8FlEfiIeXDI9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:50"]},"IP":{"Case":"Some","Fields":["51.81.208.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FancyMahalo"]},"Identity":{"Case":"Some","Fields":["hesa/PE/KVu20hFuVkjbAx3tpys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W16TsFcdQpRG/Msk3DMNfxoFkmd6QlU9N9YZhIG+vvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:18"]},"IP":{"Case":"Some","Fields":["45.142.179.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["letsdoitAT"]},"Identity":{"Case":"Some","Fields":["hd4+1WmJpPVNUNgt2HqR3C8w7N8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["unoh3I3XyCl5HK0IAgIA8VVuorHocx9UkQ1Xxcw2RGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:03"]},"IP":{"Case":"Some","Fields":["185.119.117.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:140::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hduvsc5yJlBFiRzwFxmZBaNozcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnGSIOpHO7+BgboolQo6tAp4scRTuWuedKW+L77zC1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:46"]},"IP":{"Case":"Some","Fields":["126.119.12.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hdlkk0ziiUFnEPMC19MdEHbFzbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/B/7QvZ+nFMZPIW5w+NGy+US3EmeiaRiHLZ3PJTeUz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:07"]},"IP":{"Case":"Some","Fields":["23.128.248.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::8ce0:42ff:fef0:263c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mailboxorg"]},"Identity":{"Case":"Some","Fields":["hdQIgUixppVMm//8oBDoXgqoj/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ijcYs9KdgH1j//zO4nnZXtl+af5XVOXJBxA0/7dQaM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:37"]},"IP":{"Case":"Some","Fields":["80.241.60.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hdPQw9RpmvqJf+ndknC6rLvj4/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PibSxIlcSknzfB11TPx4eCHDd2lgDWGgx5EZNbjmWiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:39"]},"IP":{"Case":"Some","Fields":["185.112.146.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["hc+ADKu/cDfH8nX+fn+MTy9Cw5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdkmyiWqQEx+61xijYBqzpO3iScz+ysLjSKXfXBcEoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:29"]},"IP":{"Case":"Some","Fields":["23.128.248.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blazeit6969again"]},"Identity":{"Case":"Some","Fields":["hc0yyoM7p2FfVkhg2lkcUy0U+44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1nc3C6rGIZTHeVRW0nw8LFoqH2VBQGHQOV+F1lj0yq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:51"]},"IP":{"Case":"Some","Fields":["205.185.116.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9696]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Euphoria"]},"Identity":{"Case":"Some","Fields":["hcnk//m2nUPMVPzHBtrIVUxslYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wdKQ+pNK8F1hzkhCuzb8WdsCfJMAGQ/hvWjrAx+M76M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:16"]},"IP":{"Case":"Some","Fields":["147.135.65.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipcb"]},"Identity":{"Case":"Some","Fields":["hcKdB2Nr66z8oN9asxszOIJ0UGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WDdjsIsMhdxYoHpCn3OqFCeANJLGYPvo56ZpgOUUenc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:27"]},"IP":{"Case":"Some","Fields":["185.220.102.242"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::242]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wr3ck3d0ni0n01"]},"Identity":{"Case":"Some","Fields":["haiFQz5QsYdPEc7JvphFHiRmCXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QzaUALE7sYCzS7XDGkuY9MpFIDEvbY1iVAu5wm0Kbyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:17"]},"IP":{"Case":"Some","Fields":["178.254.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ufm"]},"Identity":{"Case":"Some","Fields":["haAz7sJOvfFiGM9i5wphbHxn3y0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoM+zxisw58QvIcFvHS0QdJ4ep8kEGqnfCG9VPV43No"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:32"]},"IP":{"Case":"Some","Fields":["193.111.115.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hidiey9ChaeL"]},"Identity":{"Case":"Some","Fields":["hZN49r/8XkT3I+tTUdQ+7nb75ZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OrrWnsxdE5J4CvbldXvLct4Uc4f7Uhux2rlx57ZsoI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:51"]},"IP":{"Case":"Some","Fields":["45.61.186.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer16b"]},"Identity":{"Case":"Some","Fields":["hYehtMzQcA8WTM1Yj3l0PHT+hwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kblc3wZEYJUfQqF1KdyIYTvU/NuuwpIWYfs7xKZQPIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:07"]},"IP":{"Case":"Some","Fields":["95.214.54.108"]},"OnionRouterPort":{"Case":"Some","Fields":[3814]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["egoldman"]},"Identity":{"Case":"Some","Fields":["hXsQWW9JYtaaz8RgATVbh8BYy+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IU2ujjp1dTUeZOxgQKw//aIVIXzhovuUbGOoFd7PMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:52"]},"IP":{"Case":"Some","Fields":["185.125.171.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hasle"]},"Identity":{"Case":"Some","Fields":["hW2rL9ye7Yiie+ImX6a9VInvF44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aygv/pJwgv21DhlAsfhoxEBGnpvwUDQUHiaraKO1duI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:26"]},"IP":{"Case":"Some","Fields":["185.109.64.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei02"]},"Identity":{"Case":"Some","Fields":["hWt++34J0Cop3S/wJLfh7+If6es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIdsiCDJZmzl0VJaiUC+yWjKxw9PmctAenEQswpIZO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:39"]},"IP":{"Case":"Some","Fields":["188.68.46.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:22:175:a452:acff:fefc:987f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AtariFanclub"]},"Identity":{"Case":"Some","Fields":["hWHA+2VSYIc1uiciX/JKQOf9rMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5mTqjn2RVf2K8y9eBNATaJgi6l3SeaZiLiVU7in2XSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:14"]},"IP":{"Case":"Some","Fields":["88.80.20.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc11"]},"Identity":{"Case":"Some","Fields":["hU6ZxyoubsWzs9EWcKgR+sA6OUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AZHvypr9pfR0SEmm+i49lZRb9+UXyBl2RXubrtq9OKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:01"]},"IP":{"Case":"Some","Fields":["185.100.87.253"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv20"]},"Identity":{"Case":"Some","Fields":["hT6DW7RWnQEdJgbmMB+AJE0sII0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["muYaWAN6Z6s2ytp3JniBayDWp5+ecgEEouNrxMw28T0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:22"]},"IP":{"Case":"Some","Fields":["162.248.163.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spinoza"]},"Identity":{"Case":"Some","Fields":["hT4t85l9YhWsu4bVPlYwZplho5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KVPPsJOizaWIrvRlbWxUGim81jNc+GwcYNz6ErMg3zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:52"]},"IP":{"Case":"Some","Fields":["46.166.128.173"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["hRhtTC8OQlfIMAHVjW+rGvk6oic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X84GF/JmDJr1432VKrISAS7xm+w+dKRwRrvj1Jt59Pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:34"]},"IP":{"Case":"Some","Fields":["5.45.106.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza2"]},"Identity":{"Case":"Some","Fields":["hQUpbJYmq4s5G5TE5tThXDJdyO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wou3KPS8aSUZP2PoMDdyOuPGA7UreLzEiUSbL7xQSlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:49"]},"IP":{"Case":"Some","Fields":["140.238.197.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartleby02"]},"Identity":{"Case":"Some","Fields":["hQQefF3wQ7A/LBlCGZjxdRwALkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6Vnq0uLxJOOQb8qvjL1SaakX3XH3XZ8sAFq4fba5hI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:11"]},"IP":{"Case":"Some","Fields":["86.127.236.181"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Normavilla"]},"Identity":{"Case":"Some","Fields":["hQDGapgXvxH7uL3LpzMEUFKN+Jo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4M66wPr7KgZZNiyHrlmNrnjvB59AmR2+tNokUKnorbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:39"]},"IP":{"Case":"Some","Fields":["93.95.231.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taeuschland"]},"Identity":{"Case":"Some","Fields":["hP8FmDx1N+i89v3PbRaIxGtoRHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REP5Bl24y3uJ9n8nF8BV940d/KJ0iADXRIdvzs9QFjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:18"]},"IP":{"Case":"Some","Fields":["95.90.95.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9292]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Admin"]},"Identity":{"Case":"Some","Fields":["hOX50dugdxguxP5oQtiZYv1ZUsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTJmjMo3zqt/yB50BL/j97THmnyVzM0CXkisVud7z90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:51"]},"IP":{"Case":"Some","Fields":["5.255.103.25"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:96a5::1]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Erik"]},"Identity":{"Case":"Some","Fields":["hN7Ew+sFwGvhW/Drql+w1QpmJFk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Oo++ke9XZU20Q18B2Xx2DzlCJ2kqvGUxR/n2q7mT0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:19"]},"IP":{"Case":"Some","Fields":["181.191.0.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.2-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kleptoman"]},"Identity":{"Case":"Some","Fields":["hNfqQEaCbjErMvgipZJlESGJDq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["53kFe7HY8VNBFaQix+/GCXMQIIJURDfpE4yPdokEgC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:54"]},"IP":{"Case":"Some","Fields":["193.0.213.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute03"]},"Identity":{"Case":"Some","Fields":["hNNhtzaozR6IGND8GGiS6Rq3aIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mNWtN0BeSlxBrJ/5exttmcKJhHexKS1hkidD42gFtQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:06"]},"IP":{"Case":"Some","Fields":["162.247.74.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inland"]},"Identity":{"Case":"Some","Fields":["hL5AONrZmBXXaxERFtrvGq7iUvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0fIUNZldmQ3GmHblaBk92gu74zm6IrU3VRRI2OgN8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["139.162.10.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:92ff:fe7a:6f74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hLS+uQIL+mJfP/rwTmk+J86IaSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PukDtSz2n3sodVzOrHStOnhPDhPLZIaa5GMoF+2nXIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:19"]},"IP":{"Case":"Some","Fields":["132.145.79.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flyingcubetech"]},"Identity":{"Case":"Some","Fields":["hKlHNmUlC3UrYhiSg05x7svWEP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AXfxAHCZ3kt1QCSTgPjj/ppGypj6OKJX7zhtRYX6AqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:36"]},"IP":{"Case":"Some","Fields":["54.38.33.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3200::c3e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomRelay"]},"Identity":{"Case":"Some","Fields":["hKjkHQOGWCInL2R9N4r/Sscxh/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TJqWsQ8qDCwQM32pEMCT3caieGBAKpbgvahMvJ2AtT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:07"]},"IP":{"Case":"Some","Fields":["46.182.18.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["hJjfGhI9mmFCl7UHR5HB0DOkHeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6KnPje0y6ANl5t3xJK6IIm0gkVY+o36bMnY7e7mSLEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:01"]},"IP":{"Case":"Some","Fields":["185.241.208.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionsHaveLayers"]},"Identity":{"Case":"Some","Fields":["hJYmoqPdE2ToxRQj1vMhOjrhb/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t4D5nA+3tEeUJoRNJ9kJ8cR/cXf3ZVf5U8v0VOfp6NQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:20"]},"IP":{"Case":"Some","Fields":["104.192.3.74"]},"OnionRouterPort":{"Case":"Some","Fields":[62309]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KnowWhere02"]},"Identity":{"Case":"Some","Fields":["hJAzXE5W3uDxjJkymCfdsOvhlPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jl7Wm0yllRbAcLUUrBVvATSHXTlZy3zwdyy8va1urMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:12"]},"IP":{"Case":"Some","Fields":["84.166.214.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber26"]},"Identity":{"Case":"Some","Fields":["hI+4epm7mCtEFipAUgE6LNQuBu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T6MFmYu5v3n02kMH45rC+ueCxMTATaWbfyhsUTZWHGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:57"]},"IP":{"Case":"Some","Fields":["185.220.101.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::13]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buchikuchi"]},"Identity":{"Case":"Some","Fields":["hI7ZeqF709BsklSar2jK1fviO/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EX1SQotvOtSurSvJGXFtV1yr1zCp150LjXG5sRzs7qU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:15"]},"IP":{"Case":"Some","Fields":["2.206.247.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raccoontornode"]},"Identity":{"Case":"Some","Fields":["hIoAqZThtiBB3s8LlASgnJ73L3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3FMSM475kkJV98R2f5y1coClBWGcdbLT0v89IASr/zQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:42"]},"IP":{"Case":"Some","Fields":["199.195.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sashaRP4"]},"Identity":{"Case":"Some","Fields":["hIKHltNaObLQkdp4nHl7k2tyHUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z90HN62sq9DoO/QkbWE5sf/eS0qgxAJyYjX4AdHY834"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:22"]},"IP":{"Case":"Some","Fields":["5.147.146.222"]},"OnionRouterPort":{"Case":"Some","Fields":[2443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor26"]},"Identity":{"Case":"Some","Fields":["hHsfhQNE14dkkaVIkvkEk05OuF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zDETqArJGIsajjJLjQR6/ehKYktZ1HN6bcg6eE1ZSQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:10"]},"IP":{"Case":"Some","Fields":["86.59.21.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:858:2:2:aabb:0:563b:1526]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hHMDu9iMldGDBrDzvaaEL9Xe0KI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0paF0PsTFrTXAqWGYsPn0wbD1mwhEY3ByYCr76crgvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:07"]},"IP":{"Case":"Some","Fields":["45.55.47.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk5b"]},"Identity":{"Case":"Some","Fields":["hGs+qvDAf/cvx5rrsR+jrcWPJA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eDCdJupanaqqZ8klds7qBOfCVz9+gmi5wNVGk0FyZmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:24"]},"IP":{"Case":"Some","Fields":["62.141.48.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xinchaovit"]},"Identity":{"Case":"Some","Fields":["hGQGJSIaTpYwmv4IELOGRrxg9Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M+e3dAJMPHFuJlHKsThhBE7xUa+m6YlT4l8j1Scjo0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:16"]},"IP":{"Case":"Some","Fields":["125.212.241.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oef"]},"Identity":{"Case":"Some","Fields":["hFu6VRp6Zkat7UhvPB4SQq3Z/vc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eNON+pVS+3o2esUvVHdbobtA3BMwImiDnoTrHN2QGjY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:39"]},"IP":{"Case":"Some","Fields":["86.149.30.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c7:daa1:8f01:d852:9629:5535:dfc9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudy"]},"Identity":{"Case":"Some","Fields":["hFghzY494CPANIO460Kg9aVYLdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U8JI9xLeU7An8pLAPHD22LClYp91QugjjIyIG0xA7Xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:35:28"]},"IP":{"Case":"Some","Fields":["167.71.141.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:e0::472:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Smeerboel"]},"Identity":{"Case":"Some","Fields":["hErpytBDJelV4r4VIVY7ef5wlLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2/M4lm9tzysoH+Mf+ZdgavREHz6lUixN2CqfA1C4JC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:40"]},"IP":{"Case":"Some","Fields":["192.87.28.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:3028:192:87:28:82]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tigris"]},"Identity":{"Case":"Some","Fields":["hEnIZCqcmiwrIhi7Ju4mIzaQ5QE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HaIBcEmaN45+Un/+UMiTNmofcpRZo9AdvJXG8WJDK2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:34"]},"IP":{"Case":"Some","Fields":["162.251.116.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickenlegs2"]},"Identity":{"Case":"Some","Fields":["hEG+pAV+c+LJ34LeYQeMiLaQdgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qCKBOY7T58+VpJ5nBqqXo96/LqzL/t4rsQ8vNbY8AA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:27"]},"IP":{"Case":"Some","Fields":["5.180.183.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DidItLateButNow42"]},"Identity":{"Case":"Some","Fields":["hDxPd02iZT2tuluEejPMZGmV9qE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VLxfD9hQrXHyyoXk8ejKrrzelzoKeQhDtqB4oADrwQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:17"]},"IP":{"Case":"Some","Fields":["62.72.82.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Precious"]},"Identity":{"Case":"Some","Fields":["hCsfbEueQfyQWd9nXF31vanw/HM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z79qLgmnKNbHlb4Nld8PbuUNYzL+U0cZhBE7HDasBiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:28"]},"IP":{"Case":"Some","Fields":["95.215.45.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::ed92:293d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dani"]},"Identity":{"Case":"Some","Fields":["hCjALM0c8BcVyR8YGbpQfBp5qTE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uPl3Ys552F+IRoNSIJ00b9/kiaS+r9AK1IE0+34fw8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:25"]},"IP":{"Case":"Some","Fields":["160.119.249.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kurnel"]},"Identity":{"Case":"Some","Fields":["hCJ9UUPsjEdX91KmtK2zzgyWrwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ls7xp/pNDqCDMZIPlOWE8YYowfyE5cCiAayOZBIbb9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:47"]},"IP":{"Case":"Some","Fields":["102.22.35.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8rijgto8"]},"Identity":{"Case":"Some","Fields":["hATouKq5ggj677Fye2NxM62cb68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPldrO1mMaA4bDqtUoXl7uovitYecXb7/1ERBHoVUOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:51"]},"IP":{"Case":"Some","Fields":["66.206.0.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["hAS8nFFMssb6UERS/P2N43MF95c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvxqTtJriprwxd+y2ReZjLeeceMBPs6DsktrNakNKMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:49"]},"IP":{"Case":"Some","Fields":["208.67.104.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zhuknode45"]},"Identity":{"Case":"Some","Fields":["g/dbxXiTI8qftVgTp6zWEpHjESM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL/ibHnaIJ6kKBRKxBWBtte7UwK7U1HIeT6Mbv/6kMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:13"]},"IP":{"Case":"Some","Fields":["77.232.149.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FaulsRelay01"]},"Identity":{"Case":"Some","Fields":["g/WcKwh0sve0XDeryFAPeDNG2TM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uqxn0lpwCA/+Zkr44yW+CvR13CdB1y2mpTuuLTDlmXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:10:23"]},"IP":{"Case":"Some","Fields":["63.225.114.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KarlHessenberg"]},"Identity":{"Case":"Some","Fields":["g8UHhFKK04I8t+ffSzS5KkLMdjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EX+77pRuqzP/iN6hrmvtKkRAQQTBa391nyGTSIrFlj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:13"]},"IP":{"Case":"Some","Fields":["195.37.209.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strssadag"]},"Identity":{"Case":"Some","Fields":["g8Iin/Tk4LrSAptsajUNS03wPJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lnGvJKgAQGwE0H//fxjgvuhtXZPnhE66/SQxZy8DmHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:20"]},"IP":{"Case":"Some","Fields":["45.32.154.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubcygne"]},"Identity":{"Case":"Some","Fields":["g7+ycPAZObN7DYmvKOKjL4iPoCs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fp2IB1SFAX1uKUmVZEb9QmvMLy4dzcLNihtgBbGbxuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:46"]},"IP":{"Case":"Some","Fields":["185.155.96.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f69m01"]},"Identity":{"Case":"Some","Fields":["g7y7+3F8EN7L4nWvpRLko5Bt9B0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b2orl2fcMclaVGgTAJS2vXB1y/fkA/cV08lSFtmAEtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:33"]},"IP":{"Case":"Some","Fields":["108.175.7.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:19f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woodland"]},"Identity":{"Case":"Some","Fields":["g7XblApxm2f1v2Fv7snY1Pdk0as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0E1EeSOCgS2KZ6rKPRUjmALkvX3MHtXzlZuw3zUsGV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:29"]},"IP":{"Case":"Some","Fields":["216.210.69.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["focaltohr"]},"Identity":{"Case":"Some","Fields":["g67b20vjrQ7ZGFC/GlIbhDB3dZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8y6TIgzuYDweCQQ+KSdmT3sPvXHNEDcQPNsCYq5s4Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:53"]},"IP":{"Case":"Some","Fields":["198.251.68.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masx"]},"Identity":{"Case":"Some","Fields":["g5iJvvLhWFIlMD0zLqRHH+MpthI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lZlCyXitjQ/EHXy+EkDV0qJbqjSb9rk71Hl+QTvGj5I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:43"]},"IP":{"Case":"Some","Fields":["51.15.237.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:630::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber50"]},"Identity":{"Case":"Some","Fields":["g5LPfdPosXaF3emLC8TnOR9yckY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0N0rd4VHnuMo+QV1QhbtQnSP/TrijAyFif1d0OcY9B4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:27"]},"IP":{"Case":"Some","Fields":["185.220.101.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::25]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NyymiSipuli1"]},"Identity":{"Case":"Some","Fields":["g4qxGvk4VuAwK44re4pHdn4yGOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zh5c1jX4X7ko9H53vJuNvmeMleZdiNEGwCfPD9FyIRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:55"]},"IP":{"Case":"Some","Fields":["185.218.193.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:8f02:2015:1::109]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE63"]},"Identity":{"Case":"Some","Fields":["g3nDJlOVjBZanCEDUMEECyavnns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyBC1bt35rWEzkgW09nIBQZL7uLGlsnQMwreHXAeZcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:18"]},"IP":{"Case":"Some","Fields":["37.221.66.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:104]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedArea51"]},"Identity":{"Case":"Some","Fields":["g3k75qJvUKlGNtBEYZIMV6g1HAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PmUdqGLxHGdRqKsofW4lhtsNmu4cIlVOAcWH8PLF9pY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:45"]},"IP":{"Case":"Some","Fields":["23.154.177.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay24at5443"]},"Identity":{"Case":"Some","Fields":["g3QF4y1w4bKc4f/oXAU+QcvyZ6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZhFBB4d/iTIrfwzwqNIOELbxMssAJTUdE+1rgPx4h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:04"]},"IP":{"Case":"Some","Fields":["140.78.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["McCormickRecipes"]},"Identity":{"Case":"Some","Fields":["g3D8TBkNACD6WU2CMt/jS1swrwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUe2vSZ8FxXXugd1FG1qYwmO5ZMbxjaoyvE7ymujIHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:25"]},"IP":{"Case":"Some","Fields":["38.97.116.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["g1/+ZC76O7eTZmPSNloV0xn7YiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZFt02FI5MqwcUeuaCGwy3Su3ta4Azf+SRvJr3WIjbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:18"]},"IP":{"Case":"Some","Fields":["109.87.25.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["g1i92pyaaAtOOigJ5cJPWzYk1cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["or5wJySXJZAYIUmTGHCCV8Ael5H45/wKK/ExfHUhc+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:38"]},"IP":{"Case":"Some","Fields":["51.91.73.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["gz1/GvtGcI+TUbOOU5Gn9r1/tjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fM3f3/p4Gk+xPLf/Sf6EvocTuKa5O5zGR/f9xzbWhuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:57"]},"IP":{"Case":"Some","Fields":["69.237.207.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["GentooLibre"]},"Identity":{"Case":"Some","Fields":["gzzt0ozbfzouw+xzmGSfPIlP4a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWRflPq+TZvrhuS6Q9QP4dxMo0G1gPkSO+vmjPdZ26M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:45"]},"IP":{"Case":"Some","Fields":["60.241.48.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:6e::8888]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["derailleur"]},"Identity":{"Case":"Some","Fields":["gzDIxSpNxWITU2nTF9hoh7v+FoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWegAGOVWLt1WpPZRVdyE9h/DY8XxjIqKp0CXKRjZxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:40"]},"IP":{"Case":"Some","Fields":["131.153.152.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gzAks8SJOvEGY0g/KMUebKa9ZQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JPpXDCNREKUMW6QBP4Uz7cbvowYDPmfJ+FLMHRrysa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:02"]},"IP":{"Case":"Some","Fields":["185.220.101.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["df"]},"Identity":{"Case":"Some","Fields":["gyRmhTBkw5oVygJyWZvtIY7wBD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZkGNvXwUaxfyqDAhQ8mjp8wrWZxKEDfFQXEfLCSmuOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:57"]},"IP":{"Case":"Some","Fields":["195.211.143.223"]},"OnionRouterPort":{"Case":"Some","Fields":[65065]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay39at8443"]},"Identity":{"Case":"Some","Fields":["gx9zG6RpU5777vYJ1N7gOCu4/Gg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyOY/zyKzPNqcHtSSZW3iznqMfEbn7EdIFDFwsgxe0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:44"]},"IP":{"Case":"Some","Fields":["140.78.100.39"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay06V6Rocks"]},"Identity":{"Case":"Some","Fields":["gx8fO27PhvH1wJAq1H+oyZI2sNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L1xz4jy/tdS9RmIzq5Aq3EKZs0rov23hMpiz0kYyKjY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:54"]},"IP":{"Case":"Some","Fields":["188.68.49.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d51a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tuferi"]},"Identity":{"Case":"Some","Fields":["gvCtSCez/8RtVekFIxp6Ryz3XTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ihX9HeADG0gYnhcEcp8q5RiWTK0I5SgNfBRRKS2DXr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:51"]},"IP":{"Case":"Some","Fields":["50.7.14.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["guwDvexGXpus3RGawLc5atbcByA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m7jGo6KRj3n7Xs9/feXm/siR7uSEwof8/SRD/NWWvjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:55"]},"IP":{"Case":"Some","Fields":["193.122.15.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot63"]},"Identity":{"Case":"Some","Fields":["gtqWeKC65gCHqmij4dbmosQkbW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vCtYgHYoSc2nSMcUFPRR4tYrEufKKZy6OpSIBm/Wwb4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:36"]},"IP":{"Case":"Some","Fields":["212.83.43.94"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darklab1"]},"Identity":{"Case":"Some","Fields":["gtGi26vmI9QgEisdWZZSdwB7lEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GSng5KzWfzqAyDIffQqgJkmT0TvAoDrqZWNck2noFkg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:05"]},"IP":{"Case":"Some","Fields":["89.58.27.84"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["gs5C0EtbphbmEeR1iGHIZLKs/Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2thSThMS3bF1Uf+HgKvm/89lg1z3pGZp1S+jB2jFjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:28"]},"IP":{"Case":"Some","Fields":["37.120.185.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fairner"]},"Identity":{"Case":"Some","Fields":["gsmONIjp8ZsXrboCeEwBECD99Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EJoxc8nTfGdRW+mhbtr6Zbj1sEbIQvolLbrNSGMIghM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:03"]},"IP":{"Case":"Some","Fields":["79.112.101.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2f0e:531f:8a01::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skydiver"]},"Identity":{"Case":"Some","Fields":["grlGY/FBl4+yJSoWan/P8Lo6FwE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y0Uf8afDHXgz7Kfxs/8OwfO7vd8wT7bgKK1sYFvsB+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:24"]},"IP":{"Case":"Some","Fields":["93.104.209.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipfa"]},"Identity":{"Case":"Some","Fields":["gqzCxU+o5T+xqcmQzQzQAHcynf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ayCpNq5UriaKtBM30sjm7VSdmCIKuBtAU341SE0X39E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:31"]},"IP":{"Case":"Some","Fields":["185.220.102.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::245]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DaGamerNode"]},"Identity":{"Case":"Some","Fields":["gqtkclpWK1F9h7UVETu3knRiZ4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KoSpWjEBVDpYXDXFvtTsVKIMhBKU8c9DjkJS8zRJMII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:03"]},"IP":{"Case":"Some","Fields":["5.255.97.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:69e5::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Nyarlathotep"]},"Identity":{"Case":"Some","Fields":["gqstDkn/vqbooUoSSNRbLOw+SL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qAvmWZu7ePO/KmhsbA9kIHYyAxu14lgv9yccS+/HnsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:55"]},"IP":{"Case":"Some","Fields":["82.197.187.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:529a:fb1::221]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["gqgLdahUNQc0weaMELt7H3gal3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ndubXAZvFl7Jt14STALWD47dqAyn8ZM0k4P9Dkvn7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:05"]},"IP":{"Case":"Some","Fields":["23.128.248.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::44]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["operator"]},"Identity":{"Case":"Some","Fields":["gqS9CTO1nlpvlL6gGo71WrwDFyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["so7K3B+1EOl7Ko1klw5FWLsM5ys7LGCoOXqVjoYH4vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:10"]},"IP":{"Case":"Some","Fields":["148.251.237.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:80ed::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gp7Br4W4mkzZ4Qxycf7/GaZMSnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oDqkbaYFHLYwNZgvwigL9nU4Q9EuZ7s0vernL3rYn78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:39"]},"IP":{"Case":"Some","Fields":["185.220.101.43"]},"OnionRouterPort":{"Case":"Some","Fields":[10043]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::43]:10043"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip4b"]},"Identity":{"Case":"Some","Fields":["gofa3EFbPmZ8YX7vtufWVMesDEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/MCrQIsVOTdmDhVj3dK5J1YUQwg2UqgpbL8gc3aoxWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:58"]},"IP":{"Case":"Some","Fields":["185.220.102.251"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::251]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Turik"]},"Identity":{"Case":"Some","Fields":["goTIpF0i8pgcS2KHx/tDZxFufM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4r2rF5aRdEBEVrRCoYZYxh3AA8chr2LiMYURBkJib0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:09"]},"IP":{"Case":"Some","Fields":["176.9.38.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:161:353a::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssp"]},"Identity":{"Case":"Some","Fields":["gn4Nh2sWpbzAgQTQmhxBIeaI8a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t63Y3atfP2zRyxifWcWi9OgmZpvfIrFm7aExxfKAWxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:33"]},"IP":{"Case":"Some","Fields":["103.54.56.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2"]},"Identity":{"Case":"Some","Fields":["gnWkNcjXg+7INaZKPqKt+MPEUx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IX2WhjwRPIN9dpGAFcS+SIm6tNvzOaCIaKu0Pw9plao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:36"]},"IP":{"Case":"Some","Fields":["45.151.125.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["glrV0zsqXEG8ZHBH1rY6xBxMUCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rf9smfmi60DnVd7jMM8StwyNqdMgkIEAnmpmI6b2Cac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:46"]},"IP":{"Case":"Some","Fields":["78.94.253.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Monaco"]},"Identity":{"Case":"Some","Fields":["gk/drc6biTOC4oulTFJAbb43QMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xyKDA1CrVtodHVcICktFfinbedM+/o+GtiVP1QoI7c4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:24"]},"IP":{"Case":"Some","Fields":["23.88.75.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit13"]},"Identity":{"Case":"Some","Fields":["gkhixAqBMn3oB/RKfbmCemK4a1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQRSIzSlQVuAZw6aA71mNlrdRuksP9EV1zZPyQFSOAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:29"]},"IP":{"Case":"Some","Fields":["37.252.255.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1c:311::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowfall"]},"Identity":{"Case":"Some","Fields":["gjqoHid/NmUFVFUiztwvUpzk3D8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PsSQAtb1bDI++nj0VLAdEERIDRshIkfZbQThzvXWZo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:36"]},"IP":{"Case":"Some","Fields":["192.160.102.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::4]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["meehIrmTor"]},"Identity":{"Case":"Some","Fields":["gjfPw1ZM2voKSwz8WyLoTVs3WGs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IZnF/CE0EIQD7TzhWai0TwdB9LtAxSnbAflaUqWWTX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:04"]},"IP":{"Case":"Some","Fields":["82.181.230.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["giXFSIKWQ5T4UT45f+r2uAd3wRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EjnbOFFY40Rly9NkoL2w5ntq7xsLQ59WM8WG8V+KSts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:19"]},"IP":{"Case":"Some","Fields":["194.26.192.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toray"]},"Identity":{"Case":"Some","Fields":["ghf3agQYbRHgQBgC82bZ0VBNCLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDYXRjFrxXw89+9P6OMKBz2iV1BPMKCt5Z0C410QNN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:12"]},"IP":{"Case":"Some","Fields":["94.224.67.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:181f:0:4063:99b9:9381:14de:a4c1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute17"]},"Identity":{"Case":"Some","Fields":["ge37yPb1x88K3V+OCLyPq6BAicY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbA0DV01HkjmN7G6qaw3XNyce01dMbW8B69DaBAksd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:35"]},"IP":{"Case":"Some","Fields":["185.220.103.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrimQuark"]},"Identity":{"Case":"Some","Fields":["geBMyhM1FfpXT6mMCEmjkox69pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/iCMRj7uHOH7hNGE9z/zoLF1HKEwlOX7soDKqqkBfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:08"]},"IP":{"Case":"Some","Fields":["193.32.127.231"]},"OnionRouterPort":{"Case":"Some","Fields":[55990]},"DirectoryPort":{"Case":"Some","Fields":[56033]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["gd6qjEY3xEXoinNJlLp0QQLJAGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LeeA/i4pmze8Y5LhkFUTFzwB9nRJfuNqzoppllJWtxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:46"]},"IP":{"Case":"Some","Fields":["167.86.100.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JebacPiS"]},"Identity":{"Case":"Some","Fields":["gd3Za1hV8odHeijNr+wLDPMeAxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3y705AXABL1Qj8JFeAcLw4r7RUWqZZy9rlf6l2O2ibE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:02"]},"IP":{"Case":"Some","Fields":["188.112.42.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["risk7"]},"Identity":{"Case":"Some","Fields":["gd1T8DhMLpWbg1cJPxuF7dVB6EQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fg6EpSVYtDuorCIdNlZWYkT8hAKYpEvTe6cdE2n1Ew4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:32"]},"IP":{"Case":"Some","Fields":["167.179.99.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal3"]},"Identity":{"Case":"Some","Fields":["gcuxJgFAZFRQ2PWZyKm90on/hTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wAPosk/jFMbstPawOG+p5X1BIQkGGW0q0jjQkWQ3G+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:42"]},"IP":{"Case":"Some","Fields":["46.148.21.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["InMemoryOfJohnKerr"]},"Identity":{"Case":"Some","Fields":["gcVdQDqCv258P729QdECtwiJANk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n/ZgCd4Czf/X6PyZN6cZ3qzQkw9yuuA/XwbZSEa6X78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:56"]},"IP":{"Case":"Some","Fields":["162.255.84.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:16::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gbiUOeNO4QpPlMLBcjX5zmfENFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3/12LQodkNhnmANONdFvFnX3F9zhAkOhufxCHcrmamw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:07"]},"IP":{"Case":"Some","Fields":["134.195.196.69"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fec3:0:1::69]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClankC"]},"Identity":{"Case":"Some","Fields":["gbgiLBB8wKq1dbg7+Y0kktsfYJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U290YKPLp74wBahwiaUIADKStyoqWy4mlPrM+7jHXG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:05"]},"IP":{"Case":"Some","Fields":["194.34.132.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv104"]},"Identity":{"Case":"Some","Fields":["gbddU0+Rv7fFerZ9oQvO9iJYKug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5fwzSA2oTCx+qj9J8S2Ldb2E5j7VDT4/ZiSXn2yjZYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:32"]},"IP":{"Case":"Some","Fields":["192.42.116.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartor"]},"Identity":{"Case":"Some","Fields":["gbdWq8++jUcZwGEPjiTTTcMJBbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cgwikggBPyRFjP8lRm8Z174ALIoJXbJcA8kRky8SYx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:16"]},"IP":{"Case":"Some","Fields":["188.61.80.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1210:7262:df00:9818:fed2:2a90:f143]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blastoise"]},"Identity":{"Case":"Some","Fields":["ga4jDU4pFcxWLA0gLRmz8POFFEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEtKedbvZNsVcr9YqW/YXMRIc733toSRbaAU3Gmcocs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:53"]},"IP":{"Case":"Some","Fields":["23.111.189.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chutney"]},"Identity":{"Case":"Some","Fields":["gaWXZicolNJ/6DdcT4OmukU2ce8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ci38rayd5ACPYwZs7mOX4kHTw4OEEp8wXx/UiA8kmBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:02"]},"IP":{"Case":"Some","Fields":["37.252.190.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["evudalhessempos"]},"Identity":{"Case":"Some","Fields":["gaHXd8Aj67He6ef6hzVim6j3SXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00utG+CwISjNXO0iVCI9mT3NM/vkjPGJCfqN48Fk5QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:31"]},"IP":{"Case":"Some","Fields":["185.225.69.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gZ1bwxFy3C11SIsarGYBPrFeRZs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PTvrD3btfzPG28eXhbiUvpm1M951Be5hUhZmsc0wpLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:54"]},"IP":{"Case":"Some","Fields":["203.158.42.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Helios1"]},"Identity":{"Case":"Some","Fields":["gY6IUIrJmPGBjqBMypA0xaYodrU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VWm7RPW31X5xv/d4hnOfpL+escZF8RhI2R1OsYyIsUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:51"]},"IP":{"Case":"Some","Fields":["179.108.106.120"]},"OnionRouterPort":{"Case":"Some","Fields":[6513]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gYhIEHoRPTRCw3rRPyIOhXs5FKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwRbB/GlpKdFzlKnLLhPbUhNE+1mAtPV4bfPgMNIV78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:22"]},"IP":{"Case":"Some","Fields":["93.31.13.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Txakoli"]},"Identity":{"Case":"Some","Fields":["gYdXSbQEvvmoDPufmO2uHZMu0zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPyA1ToGfpNddEeBe3xt9zQfSVX1Gj6EA5erGc0H+kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:32"]},"IP":{"Case":"Some","Fields":["82.130.170.204"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["decorationWorld"]},"Identity":{"Case":"Some","Fields":["gYcIicIqkpuXILWLMmoRxrFjDAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8HB8L+LddKm6HV4yhf5nXrlfU6oz6dI3o4XQsXdvhd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:11"]},"IP":{"Case":"Some","Fields":["86.6.6.44"]},"OnionRouterPort":{"Case":"Some","Fields":[4443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gWufnDg9Dqffk5BA1Nn/VjUQ9/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6P79ekw4F9YPl0iSXagmzy5T/Tqho0VMx5tN8LnTjAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:52"]},"IP":{"Case":"Some","Fields":["185.220.101.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thealbum"]},"Identity":{"Case":"Some","Fields":["gVrpJHVfHmOYbkNKkqiOofdaYKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJqR80MkQXzUwuAAjnH+qE3kheAjKdvjPvzS2mXeAzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:33"]},"IP":{"Case":"Some","Fields":["179.43.128.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who8USicebeer42"]},"Identity":{"Case":"Some","Fields":["gUXMP2dPLlOPP+ZBmPx7t/vZS1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PmPJS8zzv7LWV0v8kqk0HaerMRP0vFkoMyB98MdLO4E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:08"]},"IP":{"Case":"Some","Fields":["69.197.160.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8272]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1181"]},"Identity":{"Case":"Some","Fields":["gTLdLvptBIy50FDHhFP1yNjMr2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/XGcv8FPdMjbYITrMpseRuuqptImoSmTcz2BL3WIxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:41"]},"IP":{"Case":"Some","Fields":["185.220.101.181"]},"OnionRouterPort":{"Case":"Some","Fields":[11181]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::181]:11181"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["capeaturtraffic"]},"Identity":{"Case":"Some","Fields":["gS+JpK0FlGR9fhpYpQhwUE48TEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XoSqfSZ5PxMqY+GbGPIrA2MqV/090dvz4MZVn+cTse4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:45"]},"IP":{"Case":"Some","Fields":["45.33.47.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:fe3e:4be9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["gSzQh/NZTXcdkbO/rEfs+ccsIvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iteEawFa6/wJJiuvbISsvoYH/bDX5UnVlzR1UUtj3ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:08"]},"IP":{"Case":"Some","Fields":["91.211.91.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R8B7"]},"Identity":{"Case":"Some","Fields":["gQbT1D+9ktXY7rw+UDGyaPzdxCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1v2Zo0C7TGRTzEwihE74Gkz7bJ/vYOo0NjDOXvROeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:05"]},"IP":{"Case":"Some","Fields":["185.82.126.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::4c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["gPWXonFUOL3Zhub3rIZG7qTkkvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzggeSykQTllmhIomQXi6foURmRfmk1j4IrNmmWjgsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:04"]},"IP":{"Case":"Some","Fields":["185.35.200.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["gPMi7QmV8nzSa1qd57gE+S6KypQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiBO0Y85GFLMxGhO6n+8DV6x0O/u4wMpfNJhxDkXm6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:23"]},"IP":{"Case":"Some","Fields":["88.208.225.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:19a::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deadbabecafe"]},"Identity":{"Case":"Some","Fields":["gOI/JNW+AZXSgnVX0mDRZ23qVFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fx139YWw5RE5MmRCnvn+SbxQ72WXmOMqHB7mKGcR3bk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:02"]},"IP":{"Case":"Some","Fields":["74.82.47.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1:908::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CounterIntelligence"]},"Identity":{"Case":"Some","Fields":["gN5Bv+uNCtE4wURqYYVnPUby1BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RBlby3uLiWyD7eJWMYknYIGraS2fgzwAAH13yUw4u98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:59"]},"IP":{"Case":"Some","Fields":["173.73.115.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Oxygen"]},"Identity":{"Case":"Some","Fields":["gMXWf+E+Ol7b9N1C44Frdj1dQ0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ez4aosLfY98U/sICK/drE0S2WfWGQLpxxzzY6lmLeBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:18"]},"IP":{"Case":"Some","Fields":["94.130.129.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:3ad0:1::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["pad1"]},"Identity":{"Case":"Some","Fields":["gLY3XFXdrz0yzYwgMajEbRwpLhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0HQduJhPFZvb/yag46pHY6syscB7sRA2K0fdVNk0AUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:37"]},"IP":{"Case":"Some","Fields":["5.161.79.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:a55a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["basicincomenow"]},"Identity":{"Case":"Some","Fields":["gK76eRE4JjNnNKzPq3XxmCA7HLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuRXW9EtGM6MnHZBqZmn2DhsAXQceNNszcVGppgHuAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["159.89.236.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::17e8:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["robzombie"]},"Identity":{"Case":"Some","Fields":["gKxdKgIG2WfANO70emw1iGNCyWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YRrJqpXXDLSDcpzEtErE71fP7wMpDaDRwBcRwWYD31c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:44"]},"IP":{"Case":"Some","Fields":["104.244.73.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet2"]},"Identity":{"Case":"Some","Fields":["gKr41ZVqQ8GXEEzvJVDNQtFlxvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SMyjTTD9TwEG+63/poLFauJeDcwtpENKL+5Xj9RL2MI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:21"]},"IP":{"Case":"Some","Fields":["193.11.114.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::100]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay02V6Rocks"]},"Identity":{"Case":"Some","Fields":["gKDfV9hRC4k6EVAIauCa3LPsHRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YDIhcLpNoWJsNrFHJaqimdL822wQy0Gz+LOzs3UQb8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:17"]},"IP":{"Case":"Some","Fields":["5.45.99.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:616::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gJz+qkEqzSuAdQIJk5dF8CM0u1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["booOaJB4nMcEogqrcGcnK3/4uwKXIeIW5CahU3X9+FI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:18"]},"IP":{"Case":"Some","Fields":["91.121.219.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gJUPE7e/PYkmfbAghTFbPANX8Ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+wmGB+mZtMG9rS22ulSUwTx8IqHCIPgAgoHPr66TsOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:53"]},"IP":{"Case":"Some","Fields":["145.239.1.189"]},"OnionRouterPort":{"Case":"Some","Fields":[36122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:5bd::]:36122"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gH+/JzucQcfRbx/ohkbvvGYOOLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4YDn1cYqx9RRLCGMyII8pfsJFF+pOo11/yirpEvqUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:52"]},"IP":{"Case":"Some","Fields":["91.199.137.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a11:3b80::225:90ff:fef3:c4e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["localPenpal1"]},"Identity":{"Case":"Some","Fields":["gHwfDWpykmjB+OKscsjq4tnZOW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fyFnsf/0rbIPqAhazQQTx9S6n3opxwL80/nMm6ugoh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:06"]},"IP":{"Case":"Some","Fields":["212.112.156.88"]},"OnionRouterPort":{"Case":"Some","Fields":[6247]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kc"]},"Identity":{"Case":"Some","Fields":["gG8aK8ER1ijul2GdvqACUUuGCqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Az9R2RgoRP5O1DncCA9GxVQePQ8q2bfgsEyrk1vXu0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:42"]},"IP":{"Case":"Some","Fields":["51.158.191.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1828:382::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rohtidanoshis"]},"Identity":{"Case":"Some","Fields":["gFYIDugitcoaj/9StyQqgsXkL7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Prwy+ynjn8HzbHDxoECCXY/yJHOhJv/ldtycZrE6e/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:07"]},"IP":{"Case":"Some","Fields":["185.246.128.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MidManMoved"]},"Identity":{"Case":"Some","Fields":["gFT9K6RFTh2iTQMkzZkYQ12lk08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NBkcOQPGiaP8RhBmVwAotQcDCtHMtGi0afZwy2RJXjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:21"]},"IP":{"Case":"Some","Fields":["51.38.148.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["gE8q0/+uiPUOWpw5BXrcM21w9s8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VHp20Fb6SIIfgJyAxMlQClqKlRlsQLHsjndcs5xL8Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:35"]},"IP":{"Case":"Some","Fields":["74.208.212.42"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:24a::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Damnation"]},"Identity":{"Case":"Some","Fields":["gD+5i6D+FwnAh+kTjMYJbyIIPKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMhft5/en8hnKbEDzBEXlqFVxSEH1TJwpeA6NtKnkss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:26"]},"IP":{"Case":"Some","Fields":["123.255.62.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andreios4Democracy"]},"Identity":{"Case":"Some","Fields":["gCgIEuRciX8OBkc65vOgSH6yuts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEAYDfwLDOS4VUMLo9S/zeR6CSrjqKZn2hGWKIkSHTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:57"]},"IP":{"Case":"Some","Fields":["5.45.109.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:2664:b831:94ff:fee9:5650]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MikeDiaIsGone"]},"Identity":{"Case":"Some","Fields":["gCKKtcvQrH6RHmlbzu2GBFKP680"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6+xZooE3YdM4mBBrM8Bk2ZHHr8B3q/yVhg7WbE4+PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:53"]},"IP":{"Case":"Some","Fields":["80.147.218.187"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:a:b5a:6100:11:32ff:fe2b:36b4]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["montrose"]},"Identity":{"Case":"Some","Fields":["gB74CEWEjmhcRTSiQI0y1UQxh98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5WgU8VE4CI/mcSzliwZc+H/hciD1mD9LjN9as7bt1Bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:00"]},"IP":{"Case":"Some","Fields":["160.119.249.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARCANEMINDED4"]},"Identity":{"Case":"Some","Fields":["gBGEdaCvKjsAGMxsAUeIK3jpEoo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KMD0cegkMgpszV4T0tVvnyPT6Ad4vjdpnLlBei2VG10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:12"]},"IP":{"Case":"Some","Fields":["5.61.59.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leysen"]},"Identity":{"Case":"Some","Fields":["f/UyggyGQoADH0EKhf/kA/XwuFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RELkTLCloI+O5jfWnVuDErMW/8rAtxgiNEAb6gnogAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:35"]},"IP":{"Case":"Some","Fields":["45.125.166.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["G00dT0Kn0w"]},"Identity":{"Case":"Some","Fields":["f/Ci8EszxNIzcj6unGiAp2YKYXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLYD4tXxwhtG5yds7Amr9IXa4G5lKCrsdf/DPYckplY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:21"]},"IP":{"Case":"Some","Fields":["92.117.101.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE59"]},"Identity":{"Case":"Some","Fields":["f+iKHHQBPVQCPMQqAle37exnH1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cLvpvJBnSLxa8Ila9KBdSYDexbIO6F0feCJPRd76l4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:45"]},"IP":{"Case":"Some","Fields":["170.231.236.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobo"]},"Identity":{"Case":"Some","Fields":["f8aFM4WsEM1MdL/O0ltsMPRAo8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BlFLDxi56FsV5q0Wzav3ui+ovBljor7y6vM0o6KWozE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:32"]},"IP":{"Case":"Some","Fields":["202.61.236.66"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex20"]},"Identity":{"Case":"Some","Fields":["f6jn5E8TkqTkD/w7ads7AAkbf9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2z+uQ0sMRvgJsdsHEEj8CQZT3hOSA9bDM0Mu5+G4D7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:07"]},"IP":{"Case":"Some","Fields":["199.249.230.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::110]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["f6I64Ca5HFWJFqvC2pZRycIXEf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jhj8u7x4XN/I8kKo7T+5pIafbJK4mXMG7P+jWbxWdss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:43"]},"IP":{"Case":"Some","Fields":["23.128.248.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA05"]},"Identity":{"Case":"Some","Fields":["f4RFGDacGlcvMhH0DRbwTXbxKHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lkTTB0gBTzqv/lrczzOwND1hkkI3urHsaIJ1cCeYHxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:10"]},"IP":{"Case":"Some","Fields":["2.56.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["afooagain"]},"Identity":{"Case":"Some","Fields":["f4JEmrvmZ0oHkBtwMwlLIxHid98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTqkP/sBIeIAYRevEhejPDd0bzvkfuEOoB2ATocjlMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:35"]},"IP":{"Case":"Some","Fields":["157.90.118.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:6bbf::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kinor"]},"Identity":{"Case":"Some","Fields":["f31KNLL78/d1cCLm+Hzrp2dNHrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s5u3/spmxQs8lRezEE7Ez5ptaeBljrhpnhnWNsa8W0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:03"]},"IP":{"Case":"Some","Fields":["185.16.60.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:a:71:dead:beef:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hmmmmmmm"]},"Identity":{"Case":"Some","Fields":["f3RdIS/SgXVrElSzuEouil/YmpQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["18nY6QHXX4o3C0pmDSLSw++H5aQrKBx0IR75vTk7jsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:01"]},"IP":{"Case":"Some","Fields":["116.202.179.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Khopesh"]},"Identity":{"Case":"Some","Fields":["f0tjeR88O2nfjqcXSu4IdSAFKvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yWePi9lpVWsbg3lV+wm/F8W6K1c1QJ9pqv6+xpk+7tI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:32"]},"IP":{"Case":"Some","Fields":["5.255.99.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:19c9::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer85"]},"Identity":{"Case":"Some","Fields":["f0ci4zLQD0TlFb/VobGg9MaEi/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIA4i80sWIcfq07kI4rl7laeMfVIUj8O9Yg3h19qUFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:15"]},"IP":{"Case":"Some","Fields":["95.214.54.101"]},"OnionRouterPort":{"Case":"Some","Fields":[8185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sveahosting"]},"Identity":{"Case":"Some","Fields":["fz5ZpOoFbz3wCVaNDP+A+FD16ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cpWniyi+3Llotiz9sbHilriYW7zJBor7N/VZljk8x0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:12"]},"IP":{"Case":"Some","Fields":["193.239.232.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishTatraSheepdog"]},"Identity":{"Case":"Some","Fields":["fz0g5yok7S69kqqcQwuAW6OJ0Cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["23DhoOYDkmj8SaMnE2WCYclHnBGoZYXC5vsQZofnTIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:33"]},"IP":{"Case":"Some","Fields":["31.6.70.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::321e:67c4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OceanGhost"]},"Identity":{"Case":"Some","Fields":["fzAvCqzHaDV2ivBohJygfRzDjF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKqLv2dMquAfLPBuk+vumhoZDYngJMchMI7luh7Tfsk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:39"]},"IP":{"Case":"Some","Fields":["185.177.127.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams03"]},"Identity":{"Case":"Some","Fields":["fyfj4sXarCHJDwg9lb1xeN1LBB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DIXPGD7cz93HtTXaHPPBlZeWaoC7xY7wg0Sa/tkhye0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:37"]},"IP":{"Case":"Some","Fields":["45.151.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::b]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["P43ALVTOR01"]},"Identity":{"Case":"Some","Fields":["fxZ6FYSoaAmkYMf8IN+Qlym+C5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y05GbiiLg+UZRxenMU1my9i7n+V732fWPo5rB/PhbzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:22"]},"IP":{"Case":"Some","Fields":["119.18.35.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:580a:935a:100:250:56ff:febb:35eb]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalibrator"]},"Identity":{"Case":"Some","Fields":["fxXdIX43Pl7o+LwXFxyXf/1vxQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lz/TgN7na/7E3OCR3zaO8FNhgyYRmSiWhvPp1olOm6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:10"]},"IP":{"Case":"Some","Fields":["77.246.159.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:230:4:ce::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["fxVeSZyq3wpqEYFbifjW5/nPyyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P/9fMEyEBGKaPGDIck1yfSez2/RVk5h9TZwpaJ0CFSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:44"]},"IP":{"Case":"Some","Fields":["93.95.227.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captain"]},"Identity":{"Case":"Some","Fields":["fwTgica+2D4E+yrhlr3jS4CAlPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["miJBN6oVjCJGMI8hFCBlZgqwWJ3+ERwgZoEvSOvAU/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:57"]},"IP":{"Case":"Some","Fields":["142.11.201.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oniondaoftw"]},"Identity":{"Case":"Some","Fields":["fv1GyNhykC0K5LHGSP4xhzcwV2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RM3d00gX8yTHG/7nYNJ20lf3HsnGZ/vJs9Hf9EVExTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:56"]},"IP":{"Case":"Some","Fields":["5.255.98.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:5acd::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MaiaAlston"]},"Identity":{"Case":"Some","Fields":["fvbpmFZCEfuGiB/qJieqkRm9mEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ylUjNslWITK6WC3+CJxhv0zBQPC2PIoIFsnVVjCJNCU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:18"]},"IP":{"Case":"Some","Fields":["31.13.195.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LemmiNode01"]},"Identity":{"Case":"Some","Fields":["fvBDtPSrpiwvO/XiAXxOxgfoCyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpX71cvQJgTWtmVtTFpUi5aQij9bF7CSiwwgEm6NS54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:43:12"]},"IP":{"Case":"Some","Fields":["157.90.183.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BEEzar"]},"Identity":{"Case":"Some","Fields":["fu3VTlRX2gCeRskbvx9EPc7gGWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0V2tCD1sCQsFSesbUis5aIGibFPNe9wTcN1vrp73J4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:20"]},"IP":{"Case":"Some","Fields":["144.76.159.218"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:32e6::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notglowing"]},"Identity":{"Case":"Some","Fields":["fuB/JTOatFPl+awcchuz9PaHDbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dfYVcS238Af7YXDin+zItTeqjOUeLYocBgemqvU0xIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:14"]},"IP":{"Case":"Some","Fields":["188.105.205.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["water"]},"Identity":{"Case":"Some","Fields":["ft1zGhuz4ppJSEaWHfmM8ZxFk3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75/gE5xwUTlRZNYgk9APlHnP4OTPtut6gwRVyjS5J3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:42"]},"IP":{"Case":"Some","Fields":["209.182.218.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:bc0:3::2:7838]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorBerryPi01"]},"Identity":{"Case":"Some","Fields":["fsohXVsGEdWmEx92Fse2AAN4G3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NSaheTbYpu1zxxzRPIytQgTNhUGawZzluyhRVBu2JB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:08"]},"IP":{"Case":"Some","Fields":["93.198.213.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["fsoUuhlOmDgTb6raXrjVAjwAshA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JTB9dKYt8tvpZ4NDalSff7T8kEZ86fM8KRUrUojY8wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:51"]},"IP":{"Case":"Some","Fields":["23.128.248.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::62]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hacktheplanet"]},"Identity":{"Case":"Some","Fields":["fscrLXbdciySLBLZOUvT/iixtK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["43PL5oyPYKPbtgIu8LHdqse1rcJLVBHY9akP6akHMo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:35"]},"IP":{"Case":"Some","Fields":["172.104.126.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schildkroete"]},"Identity":{"Case":"Some","Fields":["fsTDENH7KnwJQ7gQlG6jVNZKIWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0zOLd9tMuHiKXu4XBuMxH7kmWfR7Ca7fTGH4Ez9EisE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:46:30"]},"IP":{"Case":"Some","Fields":["109.70.100.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["falared"]},"Identity":{"Case":"Some","Fields":["frkf22jq06E4CNk1bagmBXcyFfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jADqA1ysXcYnkI0klVtHO+0lSbZHr0KckbuwcrpZuyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:02"]},"IP":{"Case":"Some","Fields":["148.251.81.16"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dizum"]},"Identity":{"Case":"Some","Fields":["fqbq1v2DCDxTj0QDi7+gd1h911U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zs8smQzwtFHyVnTHB1SL2yU1Fc0Drqn0bV+CNJ2o0a8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:18"]},"IP":{"Case":"Some","Fields":["45.66.33.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Authority","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rexum"]},"Identity":{"Case":"Some","Fields":["fp6TVbryQ5VIfQ1qhNdd+jYdKvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J9gq2Eg6Om0pWE7DKrBAZ1A2JXN87lWXZ5vn21r55m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:33"]},"IP":{"Case":"Some","Fields":["37.114.62.158"]},"OnionRouterPort":{"Case":"Some","Fields":[3443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:e8c0:2:84::1]:3443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["minotorus"]},"Identity":{"Case":"Some","Fields":["fovEOuderhbX7EZ29KXDVfRUuAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+xkUjqNZ1sEx5DgMw9J/b0rwPq8qoCkc0LuV7fYy2Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:01"]},"IP":{"Case":"Some","Fields":["94.23.194.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carrie"]},"Identity":{"Case":"Some","Fields":["foWXuznUx+3Eq/dTi2UxZVotozQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E6F7igQHlCnWuFZFt0cN+7sZnlT4n5tazvAFRgSusZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:51"]},"IP":{"Case":"Some","Fields":["15.188.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoftPower"]},"Identity":{"Case":"Some","Fields":["fnhpgpvyAHi+ALzqO0KXH1vY1YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZoI7rhoY/A3TQY1CBMpRLwQ5+YAvFjQ91PQiusfBnFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:05"]},"IP":{"Case":"Some","Fields":["206.63.229.144"]},"OnionRouterPort":{"Case":"Some","Fields":[4031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:ce3f:e590:1:1::15]:4031"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex48"]},"Identity":{"Case":"Some","Fields":["fm6ab9243HyS8M/MPL52wp8GF5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["maJU0DXFKjJh7lZZr5k9406l1FyJUCVFAlgCxnrVdXU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:48"]},"IP":{"Case":"Some","Fields":["199.249.230.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e647]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jl2238"]},"Identity":{"Case":"Some","Fields":["fmy3KXeKWjvzMzP8JwYU6nmJW8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZP9O/bAkHAauivN9c4WzyqhXP29GJqOwdteLK7J0DP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:28"]},"IP":{"Case":"Some","Fields":["92.200.204.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayForPeople"]},"Identity":{"Case":"Some","Fields":["fmxEZQzZTaNpa/yQ9V5zaFX1YyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W4JIzsJAFws1tSE4TsvOS0jhNIUXvMVDMMjXd6RZS70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:35"]},"IP":{"Case":"Some","Fields":["176.114.200.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schnittlauch"]},"Identity":{"Case":"Some","Fields":["flsQxq1jdmfDQZGV+/eOqAnbyKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xPxY6NmT4oKRP3wVQBJUWLp57Tc541iF29+lGWG00Z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:01"]},"IP":{"Case":"Some","Fields":["109.70.100.4"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::4]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARCNetWork"]},"Identity":{"Case":"Some","Fields":["fkfSjwdEO1f4Ji4UEpNrPiWGlKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9NOTtxjwNKN41oCs/q3B5D2fQ3eGmkalrrCUyWpfi3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:55"]},"IP":{"Case":"Some","Fields":["199.241.137.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:6:0:1:18e:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adamhardwinds"]},"Identity":{"Case":"Some","Fields":["fjXORL42wU+99TyikvVfjmjCfl8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OixzLE9vzKYueh8FeyMgujtXj4JquTdB//2T2nU/fEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:36"]},"IP":{"Case":"Some","Fields":["185.140.250.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra54"]},"Identity":{"Case":"Some","Fields":["fjIwuCdQR/dzfgMxTYb+vE9XeLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LwikQm8/2tn6HiTZWuPloOdzNhN8eVlRhSBJz3a8WBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:59"]},"IP":{"Case":"Some","Fields":["205.185.126.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["15T01"]},"Identity":{"Case":"Some","Fields":["fjF8+kTntgE95Lxfg3w3ancXnHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1cELgGwO2lVz5wSYCEU/8sx9M1LktM7B/xTHEZANqsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:37"]},"IP":{"Case":"Some","Fields":["92.60.37.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:33:1c8::13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thoughts"]},"Identity":{"Case":"Some","Fields":["fh5ygRB68DtMLIdEx/gvKSQxExY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NB9F0/HUfNhvfFSAgZytxRJnbkV5iC9+fnybsLjJjzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:23"]},"IP":{"Case":"Some","Fields":["192.211.48.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Renegade"]},"Identity":{"Case":"Some","Fields":["fgK3VlU1oYCESMzcrfJJHFivczs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Cvtr9ii2cVJzyoFxT9kmkbIz5Gsn3kHc+0nqRwWRSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:37"]},"IP":{"Case":"Some","Fields":["90.66.55.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:596:7100:beee:7bff:fe8d:b263]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow008"]},"Identity":{"Case":"Some","Fields":["fgBqRqIizkL4S0oXVpiztZOns7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EqYk2axCnjefaEOMmOO9KPJmilk3nLpgEhN0x9zZ44U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:46"]},"IP":{"Case":"Some","Fields":["185.195.71.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra61"]},"Identity":{"Case":"Some","Fields":["ff3wMU+c9GH1N8MGnoIPmfxa8FU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZgJBRtgmLy9+uwzG3nD2YX2w3pIrmsu15KrDiMIFWM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:07"]},"IP":{"Case":"Some","Fields":["141.136.0.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IAmMrNimbus"]},"Identity":{"Case":"Some","Fields":["ffxRKozYqG8y7cF/vz0Ded5Bk7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9FVRGsee0WmgOaWmWOZIiRf0McVGvERFT8BaYMxxtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:53"]},"IP":{"Case":"Some","Fields":["77.32.108.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gunvald"]},"Identity":{"Case":"Some","Fields":["fe4PjxnUw79kbIBBvFvnqQhd/PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DhisOrLSIMnKjktzP4Oo5wKhnjVoO/+LanaDHygos/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:40"]},"IP":{"Case":"Some","Fields":["185.175.56.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kronos"]},"Identity":{"Case":"Some","Fields":["feHlIZ/+8XzSXBWoVxQQ/eAO+Lo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J0crFwmecmOXTJoyyFptHXg7KVPa1pRBMZaZbcaISSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:53"]},"IP":{"Case":"Some","Fields":["73.55.222.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor3"]},"Identity":{"Case":"Some","Fields":["fc6MnGWwLBKPTQjcnRlbDXIAxHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRAF+oTa6c3TLXCq1VC9X1VrceJnb9wP+ivdaT4zOME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["46.41.134.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange006us"]},"Identity":{"Case":"Some","Fields":["faNGC3wcE9yrO0nt1sN2yoVis8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T9NlK4yrX9RgGAsnhI2HOtBh9kBkZcKjr0SoUxbInRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:55"]},"IP":{"Case":"Some","Fields":["207.244.238.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:2050:8019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cybr"]},"Identity":{"Case":"Some","Fields":["faMdeeUtEmhbvoVE48VX8Xaw/IQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/I7ZBfShLw1KG3A52HTIpn2ojmLMosVt9DIUa63kaCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:22"]},"IP":{"Case":"Some","Fields":["37.221.193.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:3c1::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Posertord"]},"Identity":{"Case":"Some","Fields":["fYsFwA2oBDH3yw4eQKr5+hVVv80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HVTm+Byonetv4W8tntM5bh+3JDbNJdAiwqyrxETz8OU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:42"]},"IP":{"Case":"Some","Fields":["69.126.50.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["nicecupotea"]},"Identity":{"Case":"Some","Fields":["fYODvaEGTlIXyyfo3p7QgSsJl8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d1hCdog6fGMdPndfJp6A51wxHrJANzjmxs/UUwzHjb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:26"]},"IP":{"Case":"Some","Fields":["69.25.116.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:805:3::1754:9efd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fVX4ea3h56xJvNQNf2gpMwgjPxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N092dhS095EQusMY30Dpyn2/CdOXpyAZCX5xWUcyJeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:53"]},"IP":{"Case":"Some","Fields":["51.77.140.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TLPde1"]},"Identity":{"Case":"Some","Fields":["fVSnyL8fHuI2cUCoh0HHxj5vOls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xyI5FiZwhTbkV1XEUzklBNNgDSxAlNBJDaEFxQC4rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:45"]},"IP":{"Case":"Some","Fields":["5.9.99.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:162:31a1::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE65"]},"Identity":{"Case":"Some","Fields":["fUnxAofz6UYzQ4QIOYOukEJsd2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zAOuD2sVoSkiyKjYOS5qXlikABT/ip9a0sZDzhytM6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:47"]},"IP":{"Case":"Some","Fields":["37.221.66.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:106]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Michelangelo"]},"Identity":{"Case":"Some","Fields":["fTP8LQR0k8alFPWkwdcPylTqVd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJXGXuTtm5Euh7AZIPUWiNUhomtWatXKAKEwjOW9NKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:51"]},"IP":{"Case":"Some","Fields":["200.122.181.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["21b"]},"Identity":{"Case":"Some","Fields":["fTHVEY1Hv4bFUKu3nt3oZewxtn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3K5aiA7amsoG2yg205jetD08k7muEt3VHw+RQwnvlQQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:33"]},"IP":{"Case":"Some","Fields":["51.15.74.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fR12GTSp1h16GkPXsHhlqky5x/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O1AzHp9Efo1SgS4MAQfZukSOp5qrx4AB71vbtbVGPkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:34"]},"IP":{"Case":"Some","Fields":["161.97.141.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:3934::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SergalBig2"]},"Identity":{"Case":"Some","Fields":["fRHwopCxuT/ns+K9dKlzUvDqMSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["anRfuSIBFzxtZdsIdmRssI9gTcajjrQWQjNLOke9qOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:38"]},"IP":{"Case":"Some","Fields":["134.215.87.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["none"]},"Identity":{"Case":"Some","Fields":["fQa/LEYN+v8hgWd1WMO8ZEoTmZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLg7TU7HvwnK3DUE2Rse/7srZEKwS85PK9ThnB8l2jM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:38"]},"IP":{"Case":"Some","Fields":["144.21.35.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6801:841d:34be:e33a:cf15]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrnado0339"]},"Identity":{"Case":"Some","Fields":["fOlUztuYJ8NHgqPxcu4B29xoOsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cWLz9UymSGN+o4Kz9EG4czCHiqssFiIewRFAV/2al9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:52"]},"IP":{"Case":"Some","Fields":["172.104.79.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:feb1:d06b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor8"]},"Identity":{"Case":"Some","Fields":["fNFgwxy66pXsfqyFRrAbyrXFwOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["trlb5vKnhl039qTeBjBsvqmHcrJ8pyw8oFXwoUy2wlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:34"]},"IP":{"Case":"Some","Fields":["46.41.134.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0135"]},"Identity":{"Case":"Some","Fields":["fMaGKJdS/aAm6LIiRu3gl50bewQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3hHxUyuHvnNz6O4yLRwDVNnbHB7/0l95iJK3HH6Hgi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:09"]},"IP":{"Case":"Some","Fields":["185.220.101.135"]},"OnionRouterPort":{"Case":"Some","Fields":[10135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::135]:10135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taomeba"]},"Identity":{"Case":"Some","Fields":["fL1nGP+YnuYTdEjJ/xpoUzrbHLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J8h0PgMLo9gQTO7kaMkFMLgNo3Be4YysWcLmJn/qGrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:46"]},"IP":{"Case":"Some","Fields":["135.148.53.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rigel2IT"]},"Identity":{"Case":"Some","Fields":["fLwdR1TvOmLBXLSMCAKcmQCeLs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k56lIT4KPniGW1AQFj4AsKxCv5mbaLVaVXQkYBQ5uwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:06"]},"IP":{"Case":"Some","Fields":["193.183.98.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:dcc0:dead:b2e0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Brubaker9"]},"Identity":{"Case":"Some","Fields":["fKK9imEd15mqpOpVWKvv0w/b2c8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NiJg3PXgwUEHqBbTK5RbB4RwfteKBisky3J4tsTx0E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:46"]},"IP":{"Case":"Some","Fields":["79.209.23.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fJttUcLhKfZKfSpvopplDEuUgS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kd+TXtXV+G8eXeRxw4m04TuIJ0zDnMzsOTceOAOAPAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:37"]},"IP":{"Case":"Some","Fields":["167.235.15.221"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OptimusPrime"]},"Identity":{"Case":"Some","Fields":["fJUFiqbnhGG4pr044qnu07pNTYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/tLPNdga29+8JhgnXT+AMTl9rG+5BPws3j6Qd98vFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:36"]},"IP":{"Case":"Some","Fields":["203.122.194.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["singaporemickey"]},"Identity":{"Case":"Some","Fields":["fJSz9VE3sCbokD1hLiNOrVkqFP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qNZX6bEDmK069ulc052f5yPne017rddKPF8vswhyyU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:15"]},"IP":{"Case":"Some","Fields":["139.162.11.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams06"]},"Identity":{"Case":"Some","Fields":["fI7uL8nuhTNiK+7KQZ27/qMTAP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uyxEeHuEXtW8nXV+qaqx8ywvV9u9TKb5PCUaxlTcQYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:36"]},"IP":{"Case":"Some","Fields":["45.151.167.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::c]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toomanynodesDE01"]},"Identity":{"Case":"Some","Fields":["fIbHPbF84gzSZTfJ4+wP16VeXG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7XK3BI9kT6roCsgYXo5ODmZKv+HXQGWFb6Y8Qv+r+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:54"]},"IP":{"Case":"Some","Fields":["79.143.181.221"]},"OnionRouterPort":{"Case":"Some","Fields":[2010]},"DirectoryPort":{"Case":"Some","Fields":[2015]},"Address":{"Case":"Some","Fields":["[2a02:c205:2021:2617:2000::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopfenspace0"]},"Identity":{"Case":"Some","Fields":["fIDm6RrxLaJ8FfbqCZ5zSZ1hPBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zG9capzCXPe/2SeRH401Imr/773yWDAElLd0jAuha0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:22"]},"IP":{"Case":"Some","Fields":["45.136.29.221"]},"OnionRouterPort":{"Case":"Some","Fields":[31337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BibbidiBobbidiBoo"]},"Identity":{"Case":"Some","Fields":["fHMNVL9EZ3nNeZbrK67BTmG1EZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jn53n+GpwST3bwBLRJHqx58sh0gjFfMXTyWX5xcHqYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:00"]},"IP":{"Case":"Some","Fields":["46.24.108.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["fG4mCIoJe/5FZUAgxSoqVUrR/BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VGMZcaB6/svFhPt9uB1dyUqE2MHBOm4dN8AAoqu2QHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:23"]},"IP":{"Case":"Some","Fields":["95.214.52.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG3"]},"Identity":{"Case":"Some","Fields":["fFa6IXWDlHCsqrcuBF3WggdktzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LDyINcXpgBe7hG6iff6hG1qCzm7PA+6ueAWifAs8irU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:52"]},"IP":{"Case":"Some","Fields":["193.189.100.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::196]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchHolo"]},"Identity":{"Case":"Some","Fields":["fDczdbaTlWSmZxC+9BRKJuibFI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qk1HZ7pq4y8njTXwdKfbKYlSktqXBNNd5cYvv24Zieo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:01"]},"IP":{"Case":"Some","Fields":["77.3.104.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0156"]},"Identity":{"Case":"Some","Fields":["fDS7lGJN0RlMrQCDrLklGuvjv4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVtlVh708aRpXskfksUJIeofO7CkGo7zRLmv36XwQtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:26"]},"IP":{"Case":"Some","Fields":["185.220.101.156"]},"OnionRouterPort":{"Case":"Some","Fields":[10156]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::156]:10156"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unitytwo"]},"Identity":{"Case":"Some","Fields":["fDOqLsEOalsEw3z++muIP/4WVqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TbU63oyPccAvcG0Jr1EoacnO23eqUjiO7YX4AoGqqSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:55"]},"IP":{"Case":"Some","Fields":["78.141.196.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7401:8b15:5400:4ff:fe14:a2d7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["fC/JgCXYrmlwyAL9CqsUxADuqlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KsmBZ9bqofPrp7aEw7bdE5xVh0TtsisB5mgD1+Ujie4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:56"]},"IP":{"Case":"Some","Fields":["185.220.101.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::196]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leenuts"]},"Identity":{"Case":"Some","Fields":["fCsaH7Ul0y7uUJPI6QrpFufuyrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gTm3G9MLYECLYX/k1uYQBgQRYJHuMtYTVLSPl3S3M58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:07"]},"IP":{"Case":"Some","Fields":["185.17.178.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZKP1984"]},"Identity":{"Case":"Some","Fields":["fCLomrYg533xtKM3h6XsPyq0qNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IK8SOeJ7gR5HRyVUdsoWtm7f/JZv0Owpy1sv//oUk4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:42"]},"IP":{"Case":"Some","Fields":["190.2.145.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrannyWeatherwax"]},"Identity":{"Case":"Some","Fields":["fB7hHS3Y4kyR3RYSJHHF5cTUEBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jgn6zVqCEv8buAGYXNElwkyFPpRrA+Ch03kPFjKoGo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:57"]},"IP":{"Case":"Some","Fields":["103.214.6.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["fBoVF8J6DGgynYTZQ3LgrKk5CwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bd9y+ZvsE84ljxfdlUTnr/Bs8O8fzgq4fJxI7UlRlec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:57"]},"IP":{"Case":"Some","Fields":["185.220.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC0"]},"Identity":{"Case":"Some","Fields":["fAqk47c+QH6fX+sZEvi+JtiqEk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gU0QZ5u3+nnEPmL/l49bsVpLewLC99sU8fWa+M9fxfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:16"]},"IP":{"Case":"Some","Fields":["204.85.191.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["e/3KjVhBWRt3Eh2sXRGqIypKgtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FHTFQQKJcvIH+fk8wA8FlGS/SB94PDH+gJmIl7K2ykE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:13"]},"IP":{"Case":"Some","Fields":["88.208.56.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dannenberg"]},"Identity":{"Case":"Some","Fields":["e+aD5l1IFBMhxe2S8HXFU2SscSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W3T9DfpQd6O/DENRJ4iwW4qYpDOmzXYqLV8A2zwxp8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:22"]},"IP":{"Case":"Some","Fields":["193.23.244.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:678:558:1000::244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Authority","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["e9QWZSAQt8QiAr5A90mkFwA+zSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJiRvXRNbtK1u3b2iRSXuqaDx/OIJlRDqAzsC6ueqoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:21"]},"IP":{"Case":"Some","Fields":["188.68.49.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aXXXa"]},"Identity":{"Case":"Some","Fields":["e5ufM2VMe1TvV4U/it3IYVVCbrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OOcm3sBulh1brDdz/nR3rDADt1ECC8DBSU/DgNcJxDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:50"]},"IP":{"Case":"Some","Fields":["37.187.2.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:24c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra34"]},"Identity":{"Case":"Some","Fields":["e5cv34QCasUuQUYfBd2746B1mK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o4z6jhWJnsO3txhk6p6pfKR8XmYNz3D5alzKqdsTz9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:57"]},"IP":{"Case":"Some","Fields":["213.164.204.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["e5YI07ZcEAYchUaDndh4ra2RqD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDD6di609anItQyoxF0fr+MV1REr1+RlGSCehDMgeWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:16"]},"IP":{"Case":"Some","Fields":["185.183.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aisaka69"]},"Identity":{"Case":"Some","Fields":["e3sWtuCVE6RgBUz9CL8L25nEKW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TQ9QYZbtpIy4PKoKZoo/vs0bL6MthfRVZgPxTiSyvXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:44"]},"IP":{"Case":"Some","Fields":["98.121.76.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MangoChutney"]},"Identity":{"Case":"Some","Fields":["e3evilYfcEnTJPgi4U2A+1LmUa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IIe4Ujfz2OHwbSQW56NgG7V2AcuJajF+YH2UczuAwUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:28"]},"IP":{"Case":"Some","Fields":["91.92.109.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk11c"]},"Identity":{"Case":"Some","Fields":["e3AMDCB+vQAC4A9Jm+JlUZrDwlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSAPbSXwZwbskuSBBT4eK5mbr0SH8WLtbRtHWK84IJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:08"]},"IP":{"Case":"Some","Fields":["51.15.75.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1329::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoftKitty"]},"Identity":{"Case":"Some","Fields":["e2sqqeMZoYg3dKQY5vUeZB5LQ0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DuSRTK3WxaL6MmQwwGKJ+lbnmWiI5jMMHtXg7CIlW10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:10"]},"IP":{"Case":"Some","Fields":["176.58.89.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxen"]},"Identity":{"Case":"Some","Fields":["e2ejrSOVU2/RXLl1iKC8GgFawmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yxia1b+njb54FHbs1c/zb+ziuMzJB5Ih9gQZfXSd2+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:17"]},"IP":{"Case":"Some","Fields":["205.185.124.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allahuakbar"]},"Identity":{"Case":"Some","Fields":["e2doXmSCfHN3UOFPLo/V9EQv9Ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0QGeataHL9uLgR4k3ILsEyMpxDenu0dtCOa4jMb7JV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:02"]},"IP":{"Case":"Some","Fields":["84.174.87.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBigBadRelay"]},"Identity":{"Case":"Some","Fields":["e1tUEoeIvxVevT1YL3r9ZeFiRXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bczVe1B+SFIxPNTbwc84h+rm/h4V0Xqob9reKyCvc4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:57"]},"IP":{"Case":"Some","Fields":["198.98.58.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iscariote"]},"Identity":{"Case":"Some","Fields":["e1PaKIEyWKIDNcjomFwF0NCJtEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIpOqCBcI8wCQjRvQvz3djStgAQIhQVLRTRE+rbrEug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:55"]},"IP":{"Case":"Some","Fields":["51.15.142.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:1237::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.3-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["e1HFk1X8nA/Jox6JwQldY/udNLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00ZOTAuZVOjhaXlCzJp/oko4yJv8UkmCqzUhQbIzTW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:41"]},"IP":{"Case":"Some","Fields":["23.128.248.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::49]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu"]},"Identity":{"Case":"Some","Fields":["e0byBEnW8lFQ4YlCi2Lh47pYSKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iFF4JNcnoWiiktQSxityaAlk60gfK7ReQGJVrs79Yns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:54"]},"IP":{"Case":"Some","Fields":["65.108.10.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6a:4642::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["e0W/aTyIIPsevdYXEQuWcvhSpgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDlqf9lTPeTd62ijhD8jNEtOQNDMriTPPm9EQs2DUn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:57"]},"IP":{"Case":"Some","Fields":["80.85.153.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeBogatov"]},"Identity":{"Case":"Some","Fields":["ezXbkrpyugu/1Rs1sRpJZ3V+Z7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UvAYp8+0uYLb2TS5wjExpiE/iIUY3rtWFbgsb/DBIqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:13"]},"IP":{"Case":"Some","Fields":["128.31.0.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra69"]},"Identity":{"Case":"Some","Fields":["ezU1dgmHRkyLVobyA7br52fAhz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fueroa+yLDA2+Ws/xFvtgxIg8qj4OzP4tAb6TGtc/kY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:38"]},"IP":{"Case":"Some","Fields":["141.95.18.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torified"]},"Identity":{"Case":"Some","Fields":["eyiXHUopmVeE4wZrnYfkLpxoXzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+lK7dQbs7vKe7soMt3I/eJvFhffPbKHHN6KPEYLMwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:28"]},"IP":{"Case":"Some","Fields":["46.127.96.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["eyT6ZzR76uxpI9iE6s8cEjGA3jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOgFSIGxjyufPt7kzp+HHcpaSEwmUPJsgUAqbwjVFyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:05"]},"IP":{"Case":"Some","Fields":["212.192.246.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["godtfred"]},"Identity":{"Case":"Some","Fields":["exkEY+czzCkqpAENGU0XmM2OuaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QKTuOPv0/rIqSkaN6+49MNV1DXybA3oZmOgPxZnsAVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:24"]},"IP":{"Case":"Some","Fields":["104.131.72.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::231b:c001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PSILOBYTE"]},"Identity":{"Case":"Some","Fields":["exXvjTxWzJDqk9Ks5SG+93/vllU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJgFQKsPAx8nZ50laIOAN4oj6KQQ/6h3OfbSgGXfUQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:01"]},"IP":{"Case":"Some","Fields":["192.234.196.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ichundes"]},"Identity":{"Case":"Some","Fields":["exS0IJx1wLjDX1P/ysrhc7f8Cyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2sS5OoTrDr1IaKHUlCrC5PZH9NaNdJG7ei0fg6zshrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:12"]},"IP":{"Case":"Some","Fields":["180.183.159.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:ec1b::40]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber31"]},"Identity":{"Case":"Some","Fields":["ewrifGQMFSY944gua3O/fa0sKdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SmlrQUbyKYRjG1fvt0cBSsSlROcUMn9+w0fpNl89awc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:30"]},"IP":{"Case":"Some","Fields":["185.220.101.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::16]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["halfsister"]},"Identity":{"Case":"Some","Fields":["ewdoTHAdQ8gDm94CbbpcHqFBg2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DzKVREo/oBzDXZ8/YAPnIX0DJVUuOHMWthuRZQtmx0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:58"]},"IP":{"Case":"Some","Fields":["174.4.231.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex82"]},"Identity":{"Case":"Some","Fields":["ewRs6lAJL5qy9xLYT1Lo+gDYOHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIJompffF1LyYvPSDF/ATImeVXYJ8zicITHwxIRyExE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:58"]},"IP":{"Case":"Some","Fields":["199.249.230.171"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::171]:82"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torly4relay"]},"Identity":{"Case":"Some","Fields":["ev5zQmPJR63YjQlMbjy3GjQGJyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vnTgf8r/Je5lP2duypQuvRMcmMSCFF/Y879uQSHPjlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:52"]},"IP":{"Case":"Some","Fields":["62.113.211.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vogerlsalat"]},"Identity":{"Case":"Some","Fields":["evwVcmkTC882vMrA8tqgaF5w1A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLuS0roaHC0RJM4JrCkehYwqidjHG7RmMmHrtXompEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:48"]},"IP":{"Case":"Some","Fields":["109.70.100.2"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["evD8H1LyiHTt+Y+2BXhfs8XzJT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ilnhu+zIgxz1NG4szN3ViPjZKLpgPZ40HLUv0tuw9qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:04"]},"IP":{"Case":"Some","Fields":["5.79.109.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MerryEgg"]},"Identity":{"Case":"Some","Fields":["et6j+czObje0GKLFy+xXHuLhAVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNyC7TRj8q6tXV/gkzcVcmy0Xl8aCBfOt0WIMNbHW88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:14"]},"IP":{"Case":"Some","Fields":["94.130.238.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["silverflow"]},"Identity":{"Case":"Some","Fields":["etz0U8sOpFrZ/LfeLSsosH29g18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYVjN+76KZwDTZnSfoCsj2WiKD0g7LgDcxnKi7dhDVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:53"]},"IP":{"Case":"Some","Fields":["102.118.74.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daTORrelay"]},"Identity":{"Case":"Some","Fields":["es5xUMMcJ3w/Zc7d/4UTt14h/wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QJKVZ/vX26q5ZOTdquo1QFRFDKBpPqcDps/Qqi7kHw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:33"]},"IP":{"Case":"Some","Fields":["71.114.106.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[9010]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torex"]},"Identity":{"Case":"Some","Fields":["essqhVoOXtr2gJeuJ3ETuO2poLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofK5btE59mETcwWTIpFFBiWIcc9KaHPJKDlbJTdsJ2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:05"]},"IP":{"Case":"Some","Fields":["203.221.238.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThepoggersrelayV3"]},"Identity":{"Case":"Some","Fields":["esfylyPAV2a0u+LHhicE5uPxdWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s/LqUbjrJrYqeaIsG10UOkXJH1ZFnGELiD4XFXF0UEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:30"]},"IP":{"Case":"Some","Fields":["51.81.87.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["esGwupacHJzsoYw+YAk3gWj6FWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XfEEFu4POPgB8whinliwlQ8dp6G1OSHElc2U7KBCgYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:00"]},"IP":{"Case":"Some","Fields":["153.121.44.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["er7R9mZNEVPxQCg407Mq9vLKvhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F8+ZXY5qDhVpRqlzL7yO4ZsafOC2/3xER37odwbf4pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10039]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::39]:10039"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivRelayDE"]},"Identity":{"Case":"Some","Fields":["er7RukLQiRQMHwDwL4pX3gzaWp8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ph/k/Msxt43tiV75ykvx1dCPDLkC451/4LbRK0a/j7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:23"]},"IP":{"Case":"Some","Fields":["160.20.145.209"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:367:c1f2::254]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CGretski"]},"Identity":{"Case":"Some","Fields":["erp3aklsex0MQPJaylny6mDD1Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tyABAmQg7rTYJAbBmIcJ+AI6OIFIXTqyXoXhWhaAMy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:59"]},"IP":{"Case":"Some","Fields":["82.68.49.227"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8010:677e:f9d0:215:5dff:fe01:210c]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49"]},"PortPolicy":null,"Flags":["BadExit","Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["openredirect"]},"Identity":{"Case":"Some","Fields":["eq7h/YCiTDd/5ip6FrXYBC2gCc8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1v/Ht9VGz7PLC7h9JClIhOzNdFKy1l8heUi6lNyNXNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:49"]},"IP":{"Case":"Some","Fields":["46.38.254.223"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eichhoernchen"]},"Identity":{"Case":"Some","Fields":["eqf8gOPg0y6SnSzAlOrPUpyVJkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JQ8m7HXo9ChJu3x5Erk2SzjGEzSdj6pKvf9Me6ujY88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:51"]},"IP":{"Case":"Some","Fields":["109.70.100.65"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::65]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TulipBarooExit"]},"Identity":{"Case":"Some","Fields":["eqAXuiiX7J67W18IhjJUNj4VrXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ilTjU7nU1yI5g9XaacSsIStr3Bxlzr9e5z5bF6a34xY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:02"]},"IP":{"Case":"Some","Fields":["104.192.1.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["w3ctag"]},"Identity":{"Case":"Some","Fields":["enZJbCV5QcfQdplSXTX5bYaOkvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2JUeCum5tVUi79q1GLngGrIrzUoAS1m31pKs2ChiP+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:44"]},"IP":{"Case":"Some","Fields":["45.79.95.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProtectHumanRights"]},"Identity":{"Case":"Some","Fields":["em+V2TTQG1UVJDULPOruNrdpdAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l/KvsLhbY+I11y5nwPJRD3jKp7Aa8drlIqfRyaY2uLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:25"]},"IP":{"Case":"Some","Fields":["213.164.206.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishNode"]},"Identity":{"Case":"Some","Fields":["el+Zqh6Im1Vez7WvB0DO8Rj/Z1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eQMeBq4f7XMnfdFMX6bxx4E1h1buVvgYKAJiou7YQWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:57"]},"IP":{"Case":"Some","Fields":["46.242.128.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jesus4you"]},"Identity":{"Case":"Some","Fields":["elnSWOR8kcoznB31AefxF1Ye4sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uudtB58OE9GY8mHnwS+/13pbDojLKXV5Ua2B8RQSBug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:54"]},"IP":{"Case":"Some","Fields":["5.252.23.106"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["assassin"]},"Identity":{"Case":"Some","Fields":["elY/LfQLDpqzauV+/5kyP4A/JCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VmLpIFy+Zg14didB3mRjriRMl90iBjQW6dwM98Gy5wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:56"]},"IP":{"Case":"Some","Fields":["5.183.170.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tekk"]},"Identity":{"Case":"Some","Fields":["ek3rs5ELi8iwbE9MQYkF2BFbcUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Apohu43wCmVW29n3JhxSIlZ2QoqxVC7zTX/FYyZJrr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:19"]},"IP":{"Case":"Some","Fields":["93.123.12.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ej5TTAM+ODa9WvIjtkKFPFAqszo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wPsk9efEGQq8pqscQ2/h9fEa/II9Ek+FFIAZMyfr99c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:35"]},"IP":{"Case":"Some","Fields":["5.39.69.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex39"]},"Identity":{"Case":"Some","Fields":["ej3SgOpM1N0W74xnuT2b3hhNGoE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NfFx0FmeT+UyRz+sWq4t0T8LwP493wI7B1+v5hM8kHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:32"]},"IP":{"Case":"Some","Fields":["199.249.230.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e658]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BahnhufPowah2"]},"Identity":{"Case":"Some","Fields":["ejGcQx84yzCgvAxJFENpphGSByU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0b/vLPlUZ831+X2ri3/ub0HxfotqZeg+6/kskb8m8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:28"]},"IP":{"Case":"Some","Fields":["98.128.173.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer07"]},"Identity":{"Case":"Some","Fields":["ei8jOX9LNgZSITNg6lxZdlkR9vU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEJxSlebGJQr0yq9AikmRTcgY8PPiec5A8EQDxrGX0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:18"]},"IP":{"Case":"Some","Fields":["82.165.185.89"]},"OnionRouterPort":{"Case":"Some","Fields":[2092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["ei1E52k01wnL8OCuj+sTK2G2810"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LcQhF8kWwiQ91F3mygxpuQj652PKNh+sE2XWSNHGCPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:01"]},"IP":{"Case":"Some","Fields":["178.254.6.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:35b::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemYS"]},"Identity":{"Case":"Some","Fields":["eiaew3RGlbt15Z9ymSK1kJvKjH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CFovDbTkmgIEmzDuiFyFut5Dm77ECm8ZX9dCt+GsBEE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:09"]},"IP":{"Case":"Some","Fields":["185.82.126.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ongoboo"]},"Identity":{"Case":"Some","Fields":["eiW4r1aSzrcyP4uanZe59p6mmm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QIM/c+q5Ez90Utc2z6XK0/GPl36M0p0zQVRn0OyU1CQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:10"]},"IP":{"Case":"Some","Fields":["185.255.96.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jambalaya"]},"Identity":{"Case":"Some","Fields":["eglR8kbW56gZ5LpwL3Y49EN5aaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NYLaAqTeHDvzZZcXVM58Qe5Ys5MZ+tazrExZxPBavTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:03"]},"IP":{"Case":"Some","Fields":["23.105.171.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["eeSKMkLbNRVwD4kl+o5jI/jVHX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dJd3jy2y8iRAdTgKppqDLREp08TWAA0xaxdSuanSvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:20"]},"IP":{"Case":"Some","Fields":["37.191.199.95"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fea6:13cc]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bullfrog"]},"Identity":{"Case":"Some","Fields":["eeGNGBeSw76UqbyzEgwolcl5oa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zN7KFTP7at3cgzqSz7na9ddSIpXjX5NwVH/UAboMBEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:05"]},"IP":{"Case":"Some","Fields":["172.107.202.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mundl"]},"Identity":{"Case":"Some","Fields":["ed604C/QiuGutNhZSqsII3XpBi0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZaA6mqgoG3TWgdXRmBIkMKidJ0qZrmRTJQg8TXvRSQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:34"]},"IP":{"Case":"Some","Fields":["195.230.168.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy65"]},"Identity":{"Case":"Some","Fields":["ednma7L9vyXoRrY12CSP4RlM/SY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYn/+YH1eGK72+lmturm0LY0EDAFXqiuUJUk3BeIYp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:54"]},"IP":{"Case":"Some","Fields":["193.108.118.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:b1b1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gorlock"]},"Identity":{"Case":"Some","Fields":["ecZ05sGskGh8zPZE0kwXrB5TWjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4g9MOB4KhbG5Qy5hkvwvfPlUtIg/jYKZUy3YYOvzEaM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:09"]},"IP":{"Case":"Some","Fields":["81.7.16.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["ecJfISUkVSzrYHGQl5n90IlTI50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lvwj3FitA/h248fSCqkt55Y+gz5eC/81Q0g4BAAtsf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:44"]},"IP":{"Case":"Some","Fields":["51.158.231.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["grocock"]},"Identity":{"Case":"Some","Fields":["ebOfjVPazJpjl1+8NGMB2NDTYDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UuKu+NK9oyBbz08PgXdMbVOEUJQCYVXdmwsMmcU+lHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:31"]},"IP":{"Case":"Some","Fields":["178.32.220.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1d1dchang3th3c0nf1g"]},"Identity":{"Case":"Some","Fields":["ebIHrVGEL6IV2Va5MHs9Ac00c2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4CWrixSbOQbs5si7ixMLbs2S2SDCug90rfrboLOH9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:12"]},"IP":{"Case":"Some","Fields":["37.252.187.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:63c1:c:129::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kaenguru"]},"Identity":{"Case":"Some","Fields":["eazCQX9DAfwC8EFl8x4guFHMevU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xas5X+ZamQirGIrBv8BzJtz7numOmrjOc5OMYLQldZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:22"]},"IP":{"Case":"Some","Fields":["109.70.100.69"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::69]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waeswynn"]},"Identity":{"Case":"Some","Fields":["eZ7PMy3soCxJ3iH/Ai9+Lb7Np3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QkVIEBBRzcYsmWRhwmlLPIACo+usJBqxwCnYVzNYooE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:38"]},"IP":{"Case":"Some","Fields":["94.23.172.32"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["eZ4LKPRVSPVFZop43wTNI0kOxYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ro0TWBnDH3KNIAZlA0wwtDGtdrk/zPFNTaFe/NKr1Nk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:45"]},"IP":{"Case":"Some","Fields":["104.244.72.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:efe6:1313:cafe:dead:beef]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE57"]},"Identity":{"Case":"Some","Fields":["eZgPnceIOmgfvneKdFePeZLgqTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9wFCajLMb1XhynLSneIUFH5/mwMv0vhx+s+25yxT8nA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:43"]},"IP":{"Case":"Some","Fields":["170.231.236.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Poseidon"]},"Identity":{"Case":"Some","Fields":["eZfD/IiwKixv75bF9bXFDdfaLiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GO+kALq4yq5Ufahxq5nQvszfgrvj0lcHAhYztscLe2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:24"]},"IP":{"Case":"Some","Fields":["141.98.136.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:11c0:1200:210:ffff:ffff:8d62:884f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["eZPTJ4v4/XYLMMqGmTrn+IFeQrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SGmUX4gVG0dinB0PcToTGLtQCRqOUv54toXbiyPKkzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:09"]},"IP":{"Case":"Some","Fields":["23.128.248.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["eZGYL601lqxqNxULjpaLjKuZnn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxHC9DWqgmvKUg1RbVW48Vdym2bg/LjkGcYzOMxC0sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:07"]},"IP":{"Case":"Some","Fields":["91.223.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["endpostrump"]},"Identity":{"Case":"Some","Fields":["eXjyljIu75jivRJQ8GKfR0riroI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KB03Tk99goCHbybJx47MxLbUXFZGtcxH4gaJkRKzrJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:07"]},"IP":{"Case":"Some","Fields":["20.110.177.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gopherf20"]},"Identity":{"Case":"Some","Fields":["eWYr38a4iGaQQVM1qVUfZDzAQ+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vYR8zqu4zECzJWmHvrDQs0VhfDoGu4FfKbP1I8iQN0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:01"]},"IP":{"Case":"Some","Fields":["198.199.92.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:1:20::3b:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TripleBfifty"]},"Identity":{"Case":"Some","Fields":["eWIdPzags3dnC0ZHwzcGNc0lIa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f6s8tIBDSKMavJgibXiZ734Re/WntSPNzOQPQNgiMRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:12"]},"IP":{"Case":"Some","Fields":["18.220.20.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay29at5443"]},"Identity":{"Case":"Some","Fields":["eV0WXSrV5//ihXOST5KJXQjgFw0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nTw7Aer9MgoATbntlz1HBnydMqcpfTGoXXOMww+yWbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:05"]},"IP":{"Case":"Some","Fields":["140.78.100.29"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZEN6"]},"Identity":{"Case":"Some","Fields":["eVsuzuWiivqVk3ukHkIadai9q/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K0/T6IIdyIHdK+1nGo1u1TJd9ADo65cavW15ZWxg3FY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:42"]},"IP":{"Case":"Some","Fields":["202.239.38.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vaeden"]},"Identity":{"Case":"Some","Fields":["eTgmszMEaAXcUHokd+2Qu7BUo4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdRN6/jNRlS+3v+OomPvRGTvjBC+0fZX81IVtzzd8Cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:32"]},"IP":{"Case":"Some","Fields":["99.163.122.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de3"]},"Identity":{"Case":"Some","Fields":["eTHNLzoAEkLZSjrXW4lGmUk4MoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLcdt/SsTARzeNWkafN/Y7GU+Kvh9mAWxHT8pBDGvls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:07"]},"IP":{"Case":"Some","Fields":["195.90.201.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toroid"]},"Identity":{"Case":"Some","Fields":["eR94rPWWo+WdQ0bTpG7Znf4KaY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VWTYORzJLs3N9lDUPQlD4CYRh9BYwKxcFGLXJYVn0Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:12"]},"IP":{"Case":"Some","Fields":["5.63.42.231"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["eR3qhg01nTo9L28TuYVusFB+2DU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["06tXz2T1JyYvtFbCSar/KTX1tegwmMJ64ySE+sv00WU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:11"]},"IP":{"Case":"Some","Fields":["185.241.208.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["eRt8BeLG1NmvYRAFYllVaPW2mno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bxd6fgLgKHRbD/8zb/hH0q4CSubPFnBoYYm1pIF+PUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.53.210"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3561]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dockstader"]},"Identity":{"Case":"Some","Fields":["eQ6z5UTnCAn6dg3Hk0afxauvHig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y16l6pHvKSL8Zk5jZK6gvzMDn+8x8Pa6S2BvVrJH078"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:07"]},"IP":{"Case":"Some","Fields":["209.58.180.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["eQ3mDkQrKv4XeOZHiDXoWK+aYcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KIco8lxiZj5b3W+NLwpyAFzWMkyCVl9cDRlLUlV1pTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:48"]},"IP":{"Case":"Some","Fields":["23.128.248.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Soiernspitze"]},"Identity":{"Case":"Some","Fields":["eQ0Cmxr19OVk7oe13uuzcpdKtc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qebBWcFiScpMyAx791+KPRgI349Hj70tp7aaa9IGODE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:55"]},"IP":{"Case":"Some","Fields":["94.140.112.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torac"]},"Identity":{"Case":"Some","Fields":["eQSShGufk3HjvLVttSJ/TiI3M2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GPQxc0vJOc9RUB8PgSF1XyPkDtToymhEcdc0VDW5j4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:50"]},"IP":{"Case":"Some","Fields":["78.94.213.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amaze"]},"Identity":{"Case":"Some","Fields":["ePbMSHNWWPn3wqn9WHu3Ju/NCLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pnLQ91D19DMpymKsQ+RM4VHmFFKa9zlW56QNrTJcQEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:07"]},"IP":{"Case":"Some","Fields":["135.148.53.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishHuntingDog"]},"Identity":{"Case":"Some","Fields":["eOQsXqP8TFYGs6z1Yj3iX+a18Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPDVmnjn8IpKxWkY6T9M28P1rOiSxzPxhIN3z+7BrQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:21"]},"IP":{"Case":"Some","Fields":["46.41.137.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["icknonequire"]},"Identity":{"Case":"Some","Fields":["eNB2OJjenAfqDxFboy6jvWxy5+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvJgutoPPrkeWNU84jSK0PsiS32m8Y+/7GWwKy5LVeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:12"]},"IP":{"Case":"Some","Fields":["185.225.69.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MuteCrown"]},"Identity":{"Case":"Some","Fields":["eMy28TJ8RtbAJmRx185CyoVBoT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XwAj3daRNocFrbZFgKX+dv+7s3rpJ+O6mCPgIrSKFu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:24"]},"IP":{"Case":"Some","Fields":["185.124.240.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cmutornode"]},"Identity":{"Case":"Some","Fields":["eMfCmdtMS9EZoiuHtX1a9fN0Gnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["95x4YQeR2L1lGEypN505NrfIv217qOV3V31iLe3NKDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:36:44"]},"IP":{"Case":"Some","Fields":["204.194.29.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1169"]},"Identity":{"Case":"Some","Fields":["eMMHaLBdoRzXZOIpwje1BHExnP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s+LkKOH/yPizjkXKjxqOxBYuXtU0TvQfTKyuoZ2wDXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:50"]},"IP":{"Case":"Some","Fields":["185.220.101.169"]},"OnionRouterPort":{"Case":"Some","Fields":[11169]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::169]:11169"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchierRedux3"]},"Identity":{"Case":"Some","Fields":["eK6UBhiJKL7FE+2fFcfCiZOQzq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bdkGsSqea7vuCjHM5rsFW2xzv6muLXU2N1fsE5QYx2Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:41"]},"IP":{"Case":"Some","Fields":["205.185.113.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CebolaServer"]},"Identity":{"Case":"Some","Fields":["eKpUobQWkkIxBJndgccu9RmwcPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KcDRWEVpUD+RYzR641mCmKeGsEHXHEkOQlPd7FiTr7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:26"]},"IP":{"Case":"Some","Fields":["92.222.79.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["licinius"]},"Identity":{"Case":"Some","Fields":["eJaoB11R9guVDY5jqsKJlzEGCEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btLabVZVc3YWefkV7TWVwABrghEz7t5MrGRhu/FXfTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:54"]},"IP":{"Case":"Some","Fields":["217.112.131.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mamoru"]},"Identity":{"Case":"Some","Fields":["eJCGplv+U5j8G0QPbD7Nl5eq+UM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["70v5XNQqm4Y3fBDdgV5QWFthWkkQLYXwo2m2PNPFTDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:21"]},"IP":{"Case":"Some","Fields":["138.2.47.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["unRELAY"]},"Identity":{"Case":"Some","Fields":["eH9I7EnfAm26us/M4aOd2MUziUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDnTaV52NKxGvFpOripI5+a0EjuyoLDCwiyrO8oKUvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:34"]},"IP":{"Case":"Some","Fields":["84.155.44.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheGo"]},"Identity":{"Case":"Some","Fields":["eHdo/vn7/i2bjgIUAZp/mWDTkgY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftobCaQrqYDTU1GznkobaTs72SI7Nrk5HK2giTNvB+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:57"]},"IP":{"Case":"Some","Fields":["217.160.251.63"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheVision"]},"Identity":{"Case":"Some","Fields":["eGNuBc7wPl2LsJfX9LjW/RFQ9Us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GaKVaJLuIh1wqPbnueyrLEiBTY6QJ6egzC5xNekUvZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:54"]},"IP":{"Case":"Some","Fields":["178.175.148.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Estevez4893"]},"Identity":{"Case":"Some","Fields":["eFHYGdMaURjFM0dYrE1KZio8LOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SlxFNBHfXkecANws2a3kG5wrv50vExnEuJFxGMVMFN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:57"]},"IP":{"Case":"Some","Fields":["205.185.124.193"]},"OnionRouterPort":{"Case":"Some","Fields":[45582]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1c01:7d33:a5db:c2b9:1092]:45582"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode4"]},"Identity":{"Case":"Some","Fields":["eE4WVEjYULcpLu1wFEKkyMoWDFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g3Kweki9ivS3c/JI44T0Se7pQMzvwHI3pl4c85qWOQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:41"]},"IP":{"Case":"Some","Fields":["46.38.254.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:22a:acab::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mikedideditheconfig"]},"Identity":{"Case":"Some","Fields":["eEMW+3OU/hKbm4HgEd2FbbgPPns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LpaDzq3ZZFlyBKofLuThnnbWy7CRx3thfI0lKrDXYHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:05"]},"IP":{"Case":"Some","Fields":["46.4.233.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:3b59:2::104]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay8428545"]},"Identity":{"Case":"Some","Fields":["eD9rFY4cv/HB0tm1neDFntJb0lY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MGFS989L0ze3FhrEhc7VG6hnXLHlr7ZYOBoMPdkgE9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:59"]},"IP":{"Case":"Some","Fields":["91.41.222.106"]},"OnionRouterPort":{"Case":"Some","Fields":[44357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:cb:8729:db00:e032:29ff:fe63:7503]:44357"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yuuko"]},"Identity":{"Case":"Some","Fields":["eDOxRGwlbfT72p3p/bHMGKkvVns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ztDoKPzbvVnINgyOtxELXzIrdXBUy8pUqCBxcefO2bA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:29"]},"IP":{"Case":"Some","Fields":["172.103.149.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["creeper"]},"Identity":{"Case":"Some","Fields":["eCH9Ht0wPV2IxMOWiEzYoFyUrFg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/TFl7kCjCBEtnMTYF9Y4mJBC82bfpBeomxcdc1Y8k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:59"]},"IP":{"Case":"Some","Fields":["217.210.64.254"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun02"]},"Identity":{"Case":"Some","Fields":["eBk4Sj5m9ly0+pb7HVbqRCdNuUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Yn5Kz14zYQ9i7QAJZKvmhmTGjRtMtoVo+3WKvne8sU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:04"]},"IP":{"Case":"Some","Fields":["94.46.171.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarrySylvia"]},"Identity":{"Case":"Some","Fields":["eBbe3dfNePkf63Ljl6yxi4gTKKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7VN9b13AceZsxUGA3TYebzD7wRBTp1OmmMpa0hNoVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:02"]},"IP":{"Case":"Some","Fields":["3.20.179.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev12"]},"Identity":{"Case":"Some","Fields":["eA1Q3M1/PIMeXnUPQYZkl8EmP3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9vqmuGkiBTOds3+0I2Hgk4dUO2llRhZRjpxBr6urSRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:45"]},"IP":{"Case":"Some","Fields":["92.246.84.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:c2c0:1:4::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["salentrakain"]},"Identity":{"Case":"Some","Fields":["eAAE6teyuWwmqzIHE7qqe8JGuGI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JRCTnnN7X16eGhHjxyO7sKcsdFmNwMyd6/qtAJQiG2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:57"]},"IP":{"Case":"Some","Fields":["185.195.237.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["d/pShrIEXyzLkbYKCQpq3zwaB74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AbREcMJBbUMjj2cX9kL5OFb+Yi/U5sXFdud5GA4z3dE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:39"]},"IP":{"Case":"Some","Fields":["95.214.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tie2ooK5"]},"Identity":{"Case":"Some","Fields":["d90ljw1YeS4Ny9qgvGah3F+NhK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5N17JGiniwjBTL5qKgaSbdhjLmusM1/6OvqM6U0rZ7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:01"]},"IP":{"Case":"Some","Fields":["37.120.179.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torissensefull"]},"Identity":{"Case":"Some","Fields":["d9lr2pxgSLdYNTlVEFfTF78jLxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1fxXOvQG4YmM0TVWzB98mVkBmlYwSUFlTYh90OAvr6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["93.201.152.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:ec:ff03:2700:1a31:bfff:fedd:ca1]:9111"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["VinculumGate"]},"Identity":{"Case":"Some","Fields":["d9CIUMHuhYdFH4ONP0mHT3Wwsaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RBRMR9hB+RLcPwArT25ESL0xQNKY8PsUTwJsrYmJM2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:20"]},"IP":{"Case":"Some","Fields":["77.68.20.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:db::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange027es"]},"Identity":{"Case":"Some","Fields":["d8dQDMVzZD5LPn9gLQE3+Mic4Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jr7IF5tKOvHYwvVzHpAr6DUPKaIBRDqUvxm6AgxUw6I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:54"]},"IP":{"Case":"Some","Fields":["31.207.89.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["d7h9KjpVFjFwczSDlnkQhiI25tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1pxW1FySpAytuaYBiZ2g3shp9xbXAgoQKgXjTjhb33o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:02"]},"IP":{"Case":"Some","Fields":["188.214.104.21"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA01"]},"Identity":{"Case":"Some","Fields":["d7glXNKmCLli2kQjuM9JrP0eIf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mSrH0FEtDb3mmbaRe0ltEjIkVqHKh8/7hfkf+gohVrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:43"]},"IP":{"Case":"Some","Fields":["91.35.154.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["knapkin32"]},"Identity":{"Case":"Some","Fields":["d6dXA+W5rZz9uqF879/qS0ajqOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i5lrqXBW9ixiGqNN58t2En7fLPcf0PEacwb+S5Gc9Lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:28"]},"IP":{"Case":"Some","Fields":["23.160.192.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:10:0:8000::b8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redvader"]},"Identity":{"Case":"Some","Fields":["d6OtxdRVd4tTwoA3YZFt+32gp5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1tzv9zg/8CqdoJUHwQTxz8uYBTNzslfFAeWVIph8Og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:49"]},"IP":{"Case":"Some","Fields":["148.251.85.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:6096::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["z0mb1e"]},"Identity":{"Case":"Some","Fields":["d54lxirZO8i3xrWkKmJQ5IJVYxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UEzMDxCFNvioJS7lut0K6qyqZIoH+rcO4UlSdec12Kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:37"]},"IP":{"Case":"Some","Fields":["68.134.162.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["d2VC1hFmHW/jg5/i16+5KkNcXYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FaL4rtIfhd8tvMFgpVARwgDpY713vNnCA7IBkvhCQ+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.40"]},"OnionRouterPort":{"Case":"Some","Fields":[10040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::40]:10040"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute09"]},"Identity":{"Case":"Some","Fields":["d2Hdx+sb4m1BVfdKFfEsMqNv4PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZfiyXNYlshIMektizSNbp3yd0nYpuQk1vYc5QTHrx18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:09"]},"IP":{"Case":"Some","Fields":["162.247.74.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoinSearchrCom"]},"Identity":{"Case":"Some","Fields":["d2Gp16asfhikwEBEwBPEKA3OnRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zd0MxJF6NkRZeV6uXkqeNhLzYdhEAAC5QbmWn8HpWgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:51"]},"IP":{"Case":"Some","Fields":["209.141.47.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay04V6Rocks"]},"Identity":{"Case":"Some","Fields":["d2BhkwBW+IBQwCHTAA80C2LT/OE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6UxlKlXlfPXe0K9vtgLpcPaUcsNyV/JX5aQfDpl9i10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:51"]},"IP":{"Case":"Some","Fields":["188.68.48.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d518::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presidents1"]},"Identity":{"Case":"Some","Fields":["d1HjcBf3ZmiD2vJQOzAUGCgoU2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["chxzY6ycrzM2SQ62yyar7JcFp3p6XisTVUtimTM4o44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:00"]},"IP":{"Case":"Some","Fields":["45.58.152.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlavaUkraini"]},"Identity":{"Case":"Some","Fields":["d0pIBAPmU7oZ5D3Qahxy8pVQouc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e48LII6vSffdIlsPrsCWQqjv9c2/QzzBFP2tlOvaEg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:37"]},"IP":{"Case":"Some","Fields":["167.99.220.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1293:b001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FASCIA"]},"Identity":{"Case":"Some","Fields":["d0o20gqqbioSZatuH/ybUMlYcqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3dyh/oF1IyfbMYimRuCF/OHcG7N5rRwAl8GRXv9pS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:00"]},"IP":{"Case":"Some","Fields":["95.217.135.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:7573::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["l0kz0r"]},"Identity":{"Case":"Some","Fields":["dzfyRkD59MdywibKp3gJPzSgPng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QQfGxrqUUMq/MMqZKZ/0i3svOjzxPb4Xlx88UMrjht8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:15"]},"IP":{"Case":"Some","Fields":["104.244.79.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f868::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frankovich"]},"Identity":{"Case":"Some","Fields":["dzekAwUTGti15gz7kSbku+Htf3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["laH9iAIavki/iY+KLPvyFP3dANpSh7gFXVc91cVcJvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:49"]},"IP":{"Case":"Some","Fields":["46.23.72.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dzE8MqpIq2WCmdoDnfbGJ8Em9XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oapYqi7GveLu0hiweodo3coSPfGlvsWfXv44PVZj5T8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:19"]},"IP":{"Case":"Some","Fields":["46.38.254.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:2:44cc:3dff:fe89:3297]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Morgana"]},"Identity":{"Case":"Some","Fields":["dy+C+ExCGWunGje/4Ctjh2unqBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJHlKlv07VnZHfX3al2zos/Vo9XTz/riwUZ8bRQEPlI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:37"]},"IP":{"Case":"Some","Fields":["45.9.62.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrx"]},"Identity":{"Case":"Some","Fields":["dy1Ql3IHHTCCuq8ceByPkXAT88s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWbhd88yiwq9eYTSxtMqCSX+J35r5c00TjQZ2xqd2BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:37"]},"IP":{"Case":"Some","Fields":["94.16.113.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:97e:84fa:9ff:fef2:cc0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitVIF"]},"Identity":{"Case":"Some","Fields":["dymctmiMSs4P7gbNyOxMkil4x/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H3bLjczatSe2yvoIriG7WZy+tIWcLO5kFbHyqun9p6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:37"]},"IP":{"Case":"Some","Fields":["216.239.90.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f530:8002::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ntfshard"]},"Identity":{"Case":"Some","Fields":["dx4IJO+C2F4E2AEWVUER439+t5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BJtrLFMId2kHmPmMvmpvdpuHwLJXfqcJGio6ubmtmSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:36"]},"IP":{"Case":"Some","Fields":["92.242.95.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["T0rNode555Nose"]},"Identity":{"Case":"Some","Fields":["dxKhrCHUuW4nc/TI+Xli4wTsdig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UHeDgdLA41T+5MUXhdxfZDCj7LCOXa1kJ5MK3B0/IXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:20"]},"IP":{"Case":"Some","Fields":["185.119.117.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:148::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zivlimarinadir"]},"Identity":{"Case":"Some","Fields":["dvnkMuhI/VA5AVXhwIRm1l1Ke1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["metI4uc5l60OYB6C7HN4ow7pL4mXPzBGIzZwJKSTwXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:33"]},"IP":{"Case":"Some","Fields":["45.180.21.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stalkr"]},"Identity":{"Case":"Some","Fields":["dvOoGgeE3PU29t4Z+Y6usfid7M8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GNoPQLS/mT6PhTMqVRTEwrCUbc2hrBTwpl9DP2o+PNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:57"]},"IP":{"Case":"Some","Fields":["51.38.54.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:1830:14::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarysSister"]},"Identity":{"Case":"Some","Fields":["dtPMGpBnMsi3+Q6bWg/zvkpKUt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmXg5RA4jQmulvdIMfu0HOZT5d9/ukbfGxMA5C6sI68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:09"]},"IP":{"Case":"Some","Fields":["185.225.69.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinselohrkatze00"]},"Identity":{"Case":"Some","Fields":["dtLrqCu8yj358lSpqDcqEKJvPRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggCO0Em0mUsplS8Kc0y5j/5w/6BalifjISMCV/Zrw0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:41"]},"IP":{"Case":"Some","Fields":["134.130.172.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra81"]},"Identity":{"Case":"Some","Fields":["ds75J3DrnRu6gCXuThdRpCCwCHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tk0c3lMprnFTexwp8peGLv0giaRxzLCJVf2u2EeKK68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:26"]},"IP":{"Case":"Some","Fields":["45.61.188.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedManning"]},"Identity":{"Case":"Some","Fields":["dspjbB0z4+hjC3rCKh0HQg/Oh2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YG064ehAvB8vBbwxohQtYehAtPtJeCMNO6y+XkLj8W8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:53"]},"IP":{"Case":"Some","Fields":["23.154.177.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dspBnGhQL/xNlQ0WfiXuCtOgp2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l35fazSp4oud8goEJ2iUs8RtU7kH3k4NfS5Ii8Y5TJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:55"]},"IP":{"Case":"Some","Fields":["185.183.157.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NFSGmbH"]},"Identity":{"Case":"Some","Fields":["dsKhZHHa7oFVORDH6M8XJu40qnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qcZGiI1/a2eJYZeoeTFIHSErgfI02wbkRtIfT2XyBtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:19"]},"IP":{"Case":"Some","Fields":["179.61.251.219"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["drYla4vpKI0iSAoleaFkER7EU6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/QdfFh0rR2rpNL2IHrAjd3LDK3ti4G3/4VnBFN+C3/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:05"]},"IP":{"Case":"Some","Fields":["203.118.152.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2407:7000:989a:5254:ba27:ebff:fe44:d9dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vladimir"]},"Identity":{"Case":"Some","Fields":["drT+3QaW2SSkB8+rULbldLKMzco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4It6KGHi/pU0QxxxXNHtbmJLG33IMgOZVXp45mrQklA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:42:33"]},"IP":{"Case":"Some","Fields":["158.255.1.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonlolth"]},"Identity":{"Case":"Some","Fields":["dqtQw+wEcqY6+5qDOlNfpr1pFHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VzCzqd/Oudp46dIYGDTt3dWJMRwRvL6HrNoho8xbJjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:08"]},"IP":{"Case":"Some","Fields":["185.220.100.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:5::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDotTeitelNet"]},"Identity":{"Case":"Some","Fields":["dpWZAThujJCPUCNdmJQAeIa2fC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaBhwaRphDPE0aP5eFsh9E1pCEwDJLlQF1PFvQjtKj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:24"]},"IP":{"Case":"Some","Fields":["198.98.51.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:58f:8768:8283:1a62:bdc6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber41"]},"Identity":{"Case":"Some","Fields":["doxQ4ZfTy+JWsw/pSWA/0jESiQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59TB1FxX/07oNVH5j55P1/4ryigVirEbp2i9qDtpgNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:24"]},"IP":{"Case":"Some","Fields":["185.220.101.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::21]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node1"]},"Identity":{"Case":"Some","Fields":["doOVzA51fgvN8tULYGp8DuFj0I8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEUGdSmN3Rya3vKOpAONMTLL9cRfxDiWt6cZtiJqpN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:07"]},"IP":{"Case":"Some","Fields":["152.70.181.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:299b:7aa5:73a7:9bb2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qtornado"]},"Identity":{"Case":"Some","Fields":["dn5ETh+h2nXzt3R521ri+j//dcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Kxr9vAvf/pUFWcYEznbm+3g72DEwx3zDl62mBet6+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:29"]},"IP":{"Case":"Some","Fields":["95.216.35.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MegaPint"]},"Identity":{"Case":"Some","Fields":["dn20ALdDAkSJ/wt+skH1841YF3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mumgTaa3LafA3Y6ELIksneOvvjHU+C0V+59r2wYUAAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:00"]},"IP":{"Case":"Some","Fields":["178.62.241.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORfrance"]},"Identity":{"Case":"Some","Fields":["dlQ3SVEM0Ayxbh3UlAyqj6xyf1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBOJk+uY46xt5FzpYwE7ERvw35xn/v0xsPOGQ1q3nwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:57"]},"IP":{"Case":"Some","Fields":["94.23.29.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:1ecc::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex45"]},"Identity":{"Case":"Some","Fields":["dkv4oDho+EyPMjwaZ2qiVLgNw78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FffpDwWYmb8tlyIt3ZZT8/yZzNvtxaATBuwOxQc/OOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:44"]},"IP":{"Case":"Some","Fields":["199.249.230.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e644]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dkS1fdhjBfO4Fy/vbO6Fhk0Ii6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtymWBjHEpcwHnrg/yVs99PFxznTLP9O7X4Yt3MKJAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:11"]},"IP":{"Case":"Some","Fields":["5.45.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fenchel"]},"Identity":{"Case":"Some","Fields":["djt9Z6ay0Zs+nqV9H73EjzuFtVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2TCHtItTA+EmNbIxdp42/AvlZErzCJkjKBe6krW0IuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:02"]},"IP":{"Case":"Some","Fields":["109.70.100.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip6b"]},"Identity":{"Case":"Some","Fields":["diIT0yewp2BX9LYc1YftQjjNkA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEhx5iB13rEr/Mq3yyUaZ9QN1q7YsZSV6eI60GGldlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:32"]},"IP":{"Case":"Some","Fields":["185.220.102.253"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::253]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot62"]},"Identity":{"Case":"Some","Fields":["dgBoAkmiIIDsxhc/u/ZNb88zCmE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LkfWSSMRDn3O1QjrieqUFSzuKaeYspjTftPL9T1K4hE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:36"]},"IP":{"Case":"Some","Fields":["212.83.43.93"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iPunchSharks"]},"Identity":{"Case":"Some","Fields":["df5SNuZ/+kpEwRUsNeqzY2Dk198"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XjFD0d/rG4K55xbyohTFxDUqzErJiL53IJtc1aFt9V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:35"]},"IP":{"Case":"Some","Fields":["87.104.37.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cornnation"]},"Identity":{"Case":"Some","Fields":["deIUJYzFiJ4NbtWFJm83vi3TVo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noIEwofgQVwsCAh4+XqPuEeBh07eZpa9N5jOSDckBw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:45"]},"IP":{"Case":"Some","Fields":["45.61.184.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE73"]},"Identity":{"Case":"Some","Fields":["dcyifm6anSCO9xrmD0PhKUKFde0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R5EB/zibQpikz+nSth99B1MBywqSiy5GeN7Dqu3KDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:03"]},"IP":{"Case":"Some","Fields":["37.221.67.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:103]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Buri"]},"Identity":{"Case":"Some","Fields":["da8fgSQ37+UcUEzjrC3H7AO2wBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOUFPratBf2DEonjEoFIB3AtUS1Yz6duYz9JI5IT7jY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:11"]},"IP":{"Case":"Some","Fields":["83.137.158.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9019]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tiberius"]},"Identity":{"Case":"Some","Fields":["dakxQERTAwghxUek+qkJSgbEjHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PDsCltcrYFIg14CKKE3y3NmFdPWDvYBIwpUipeiopoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:02"]},"IP":{"Case":"Some","Fields":["46.101.183.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galates2"]},"Identity":{"Case":"Some","Fields":["dZuxByTGIrEjgYT+Q3c7ZIGxrUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YB8R7a1QXrgA0QVFlygqH9pLENErGXTlAeYjZ/un9/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:08"]},"IP":{"Case":"Some","Fields":["94.16.118.23"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer70"]},"Identity":{"Case":"Some","Fields":["dZKxBdS5EKeYmVlBdrMjVN7AO/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9xMRLDLDooIEu1epasSuymjIJ/ZfjK4c50/P3P7WCeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:21"]},"IP":{"Case":"Some","Fields":["185.16.38.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8270]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["010101"]},"Identity":{"Case":"Some","Fields":["dYZwOow1fYllEa7VeYzay7LCvZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K023l4V00bAvJSFfxVwhfJYaU4WOVsIgG9EmW5fM84I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:22"]},"IP":{"Case":"Some","Fields":["188.154.244.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cebolleta"]},"Identity":{"Case":"Some","Fields":["dX9KEnAazXOlNSBU6k81fMS0R2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z9abOJvYjQcTF6ZnFByYhTkiRuxoaMJebqrT2JPiZec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:35"]},"IP":{"Case":"Some","Fields":["212.227.149.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:1d9::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smurfix"]},"Identity":{"Case":"Some","Fields":["dXSXW6dt4HJiMfyRbdcLCbOCTOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAi47b68+dZCMVZuhi88u7CjXbIx2JjZ/Ir0qq3ZmUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:07"]},"IP":{"Case":"Some","Fields":["213.95.149.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:780:107:b::85]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["courage"]},"Identity":{"Case":"Some","Fields":["dXQLBBQ19ZAbqyco1vrcLvxLJ1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WhMhB5pmuXey2BngU0XiWF7F1DK0AaqN0SYbOQQKfzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:31"]},"IP":{"Case":"Some","Fields":["94.16.123.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spookybird"]},"Identity":{"Case":"Some","Fields":["dWw0u9x3FqX+g4UH2LX9HPJPMDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OQisHloPEdawRXWNO3MiRbmAtTbj7TRjoKGPoZzUEyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:06"]},"IP":{"Case":"Some","Fields":["167.172.237.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:c1::84:a001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["screenslaver"]},"Identity":{"Case":"Some","Fields":["dWV2z12jh83X6rzKP46u+TPLRIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rCcb/f3M1sbogLtoN3yQEcppJtXxVwk2XbWILqPgFmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:36"]},"IP":{"Case":"Some","Fields":["51.81.208.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["intercepTor"]},"Identity":{"Case":"Some","Fields":["dVug5/T+Ghl+3w2DaB0lcq85yy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lWYDbKh/kvfDolqFHtOYL/58ZRyI+vzamvh2+yLtK80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:32"]},"IP":{"Case":"Some","Fields":["92.117.164.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gbhfmoldrelay"]},"Identity":{"Case":"Some","Fields":["dVXb2XMu9m8PCExB39pAG20DZQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EV4dgqjjgDvhxYjFnRZ9JelxaPJtdpfO8oNxzgLh4vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:32"]},"IP":{"Case":"Some","Fields":["91.208.162.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adrian"]},"Identity":{"Case":"Some","Fields":["dVHBRG26e8+DlTiaElRF5xlS1Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Itgtf5NUy/WpN37gteL5PLXaAbKEfwrnEZMxM31Pcu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:12"]},"IP":{"Case":"Some","Fields":["135.148.53.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq04"]},"Identity":{"Case":"Some","Fields":["dTOr2pAn9Az4f7YYmuux9DoTKgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GzdOfS5WGrXY03b9TzuzQNIrKiVrWCVBLaQ433yg9yQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:44"]},"IP":{"Case":"Some","Fields":["193.32.127.154"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetWorkXXV"]},"Identity":{"Case":"Some","Fields":["dSvDYWIum8Lb85UjVDGivvvnkTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2GKd7nKacpJoUmcSNWIf54I3xuxD+fCJ/72TMNlab8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["178.254.45.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:23b:7777:7777:7777:7777]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dSWOdVBkqiQSvGuriFdWoyAfjHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+liWmobh1vmAOCsSn3N5ZC/60yd3xjhK+UOr5NT7FY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:41"]},"IP":{"Case":"Some","Fields":["108.161.133.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnlineVrijheid"]},"Identity":{"Case":"Some","Fields":["dQ6c37QGYDnQHMI2la2BOhPd6yA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qnq4m3sML4X8WqJUava6y6v5c/c0ceLUZyUWw7omRDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:53:28"]},"IP":{"Case":"Some","Fields":["135.125.205.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["O1G"]},"Identity":{"Case":"Some","Fields":["dQk6lZ80S8azBO/+3hAZ9GVIo8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/ZG8bVrnng29OceexYTwTeqKOGok67BY0e3p1tlRGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:20"]},"IP":{"Case":"Some","Fields":["79.143.177.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2023:7000::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pfefferoni"]},"Identity":{"Case":"Some","Fields":["dPrjOyH//9xvoROEZkAjrI392kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EmL1x1/aT/Nc387RwGKV7Ya9SOg3LlcdNCby9F5yYZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:13"]},"IP":{"Case":"Some","Fields":["109.70.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::15]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsTrenton"]},"Identity":{"Case":"Some","Fields":["dOi2gEKid0iEu/Z+Q6vsTZ5d9Zo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S9nz/+yQiFzj0p3Cg9Cny5AKzqHUPc5WFfAimI2ajmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:42"]},"IP":{"Case":"Some","Fields":["195.15.242.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::3ab]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypnos"]},"Identity":{"Case":"Some","Fields":["dMS/brrLTM59sDy++O7XdGN5Pcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaQXPofcNDN/z4RHeyAw3Ee+HMukI3EF4RNYhvDAg4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:32"]},"IP":{"Case":"Some","Fields":["46.89.104.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FOXACID"]},"Identity":{"Case":"Some","Fields":["dMQpocDj7eA7Ot9hvqg9VUAjKmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DWcXtJo7tcgBx/DdQrRwvjlm6QHjRDjqUEshNC+0bMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:23"]},"IP":{"Case":"Some","Fields":["95.217.14.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6b27::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLXicebeer02"]},"Identity":{"Case":"Some","Fields":["dL0yEJ17Dyw8dIjr+/3fGpD5ztY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mUTi2IiVvojuZeqLclCPSRFg9mux3BIbXtDN0eNmxXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:45"]},"IP":{"Case":"Some","Fields":["95.214.54.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5116]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:365e]:5116"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rulers2"]},"Identity":{"Case":"Some","Fields":["dLAFXYVARYQC/g9Uj8aoRLVDGpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gG5keg24EPhuaIhXvsEIFH2KWuX51ZFFFytH7Q0a9NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:04"]},"IP":{"Case":"Some","Fields":["45.58.156.76"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["dKvcO66AuXai8/VtIBf6MRIsB5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GR92wCRWcJAAQ/T6foV02bdGz3f3bnwFp10mBSr723Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:50"]},"IP":{"Case":"Some","Fields":["51.158.186.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["longclaw"]},"Identity":{"Case":"Some","Fields":["dKkQZGvO77zS6HT8HcmXQw+WgUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AW+ra50UXKZaHNd3eTeKfYkzWR1u8+W2PnC7Sji62Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:19"]},"IP":{"Case":"Some","Fields":["199.58.81.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay37at5443"]},"Identity":{"Case":"Some","Fields":["dGvhbDF5HJp9FUYfc08MAX3cVe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E4oSaqH1AJgAbCm6z6GQzuLpdxaFrx3CB5NsIfXaf/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:46"]},"IP":{"Case":"Some","Fields":["140.78.100.37"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra35"]},"Identity":{"Case":"Some","Fields":["dGYFdCYBjEHt/BRlvn8B4nFVz78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HI84v9laTTZ9Z6NGj3QcKKiz2YbtDyNfp1GJZWFXGhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:16"]},"IP":{"Case":"Some","Fields":["213.164.204.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bhsdztorrl01"]},"Identity":{"Case":"Some","Fields":["dGHJPYHNUzngx5CQdFoUzsffynY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eN0FmBZr3b7Ujw4ahuA0tfXWFZSJOnhrYNd64TW9ZSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:39"]},"IP":{"Case":"Some","Fields":["54.39.234.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AOP"]},"Identity":{"Case":"Some","Fields":["dGDHdBLoyOZavheXxlIWH+kD6/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NuapfAcRr2OaxKA8AKH8/zv0i1xX0y0jXq76LV/GmuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:22"]},"IP":{"Case":"Some","Fields":["147.135.31.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shalazarthewizard"]},"Identity":{"Case":"Some","Fields":["dFBI9RqDT6kVL2ICFZPyzWLDGro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W01EPyC/XBt1epu0LJGHuErVQjpBJLGruc+b9GolyX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:08"]},"IP":{"Case":"Some","Fields":["23.239.22.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:92ff:fe37:163e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeLoveNotWar2"]},"Identity":{"Case":"Some","Fields":["dEhVv8nrMW01h5covaV8mpTjklc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpO9ueTmEC1GsZDs0ullyT1ow+DNICodP3rz9XGsBbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:04"]},"IP":{"Case":"Some","Fields":["5.255.97.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tionverphous"]},"Identity":{"Case":"Some","Fields":["dEd4X0SFUkse7fT+WncORaQ8QKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q1yavdh7ZuVB2Sy98mNS9R3Gdgg+DGsxOEv1JcZ18N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:53:32"]},"IP":{"Case":"Some","Fields":["45.132.74.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhyNot"]},"Identity":{"Case":"Some","Fields":["dDma02ZbMUuGzAKec11dGs46Tgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAjJESAdFPwZ9xW3qX01ncQUwbJPTFH0LGNfH72zM5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:37"]},"IP":{"Case":"Some","Fields":["82.165.243.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dDZ7YyOW6M5qXdQQ6pYH5GeqvNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KsFF9cYEHQSsQLZBz/7YpaPN6IWIwbRx9JMBVZGZxLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:22"]},"IP":{"Case":"Some","Fields":["61.4.102.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv126"]},"Identity":{"Case":"Some","Fields":["dDD2axyry1LVg8nDA17hmj6Hoj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sG17ui5Mr71E0Lm/q/+sKj/erX1102oMoaS8dPIrO04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:26"]},"IP":{"Case":"Some","Fields":["192.42.116.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5526]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitMoldova"]},"Identity":{"Case":"Some","Fields":["dCxF8tkASq3gB35SikQYpqgbwro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VovUb8/gwvbdOkYIEGVSYQgXWQMIwx8XHwCZFvp4OVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:35"]},"IP":{"Case":"Some","Fields":["178.17.170.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:15::45dc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["08eRPfaL2Relay"]},"Identity":{"Case":"Some","Fields":["dCRaDsnwQ3sjhKfb6QCtaG/wr3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uh6BGgIViim7rAvIi6GlWVESMpE67cshLjdg62PAv4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:29"]},"IP":{"Case":"Some","Fields":["188.68.32.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:9e9:28be:caff:fe2d:d725]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay17at8443"]},"Identity":{"Case":"Some","Fields":["dCQl9zeBpaUJMsCe6opaWWmVIX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bRGYL8H36JtOR6Lwy/xHjo2bJ612gaiNUX8h9b0Z6A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:57"]},"IP":{"Case":"Some","Fields":["140.78.100.17"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["effiorgoulu"]},"Identity":{"Case":"Some","Fields":["dCCRSG0Ec0xX2XvO+1PSLtC3eIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nQQEGvMcqnadn6pDIlBqtUCApOY8acCOqOG021liDFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:13"]},"IP":{"Case":"Some","Fields":["185.67.82.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer18"]},"Identity":{"Case":"Some","Fields":["dB3kdfVHRGDqNHUu4zd5DSJEV7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R0Na2TKPbluELqX9HYIcdp2Ckf0J64urY1J3xt+VL9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:27"]},"IP":{"Case":"Some","Fields":["185.16.38.110"]},"OnionRouterPort":{"Case":"Some","Fields":[8118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dBNnXtJSspOVVu0AmMOYPRrzGRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qXXH+h9PZ/0n7KiutIuujdVF2qAY2hQB/a7+uLZGwj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:03"]},"IP":{"Case":"Some","Fields":["91.132.144.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:3:e842:2ff:feb9:c49c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MinchiNodes"]},"Identity":{"Case":"Some","Fields":["dBKIuSvJ/xTLSBAvxlknNp5LCxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqyWkLbIWdd+ycWwMFqX7XeaSmvw6fn236aO6FKJYSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:08"]},"IP":{"Case":"Some","Fields":["142.115.34.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dA5MSELkwZDf7CeOwf11T9JhqGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pM7cqJd+7uX3vGAVhOLgYOhYs2QbT+Uj6nlSPTkRnpA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:24"]},"IP":{"Case":"Some","Fields":["85.166.159.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:4646:54bc:10::56]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["macaroni"]},"Identity":{"Case":"Some","Fields":["dAg5d1eMB0sSSubIGlj6PlcQ1PU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IoO+7e4AWjnVwIALn0WygFghAJOWWAzrq4Dc/9/4sCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:33"]},"IP":{"Case":"Some","Fields":["23.253.203.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4801:7825:102:be76:4eff:fe10:552]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BrownFox"]},"Identity":{"Case":"Some","Fields":["dAeQQkbA4oOPqBdcOqGjytnfOxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WwRycbcoMYq8IeW5IYlZVcPmwsMqoAeULb63Vh6fgHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:30"]},"IP":{"Case":"Some","Fields":["66.229.163.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pkswitchtorronto"]},"Identity":{"Case":"Some","Fields":["c/a/ReFMcsR7iz01aPb/GVuWehU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gat7+qmQaLWmdtVUMlsqS0NvlhVJXUNfQLlqMssu2wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:17"]},"IP":{"Case":"Some","Fields":["159.203.27.5"]},"OnionRouterPort":{"Case":"Some","Fields":[2568]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::4f:4009]:5201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay29at8443"]},"Identity":{"Case":"Some","Fields":["c/NM3FklhMBRmYjkQ+b9+6cseQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4aZCqnY7WUKOpezUt8in9Ynop74X/A7ob95vYh68Y6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:12"]},"IP":{"Case":"Some","Fields":["140.78.100.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n4lksask972137tor"]},"Identity":{"Case":"Some","Fields":["c+ilWxWP51Cq9xG0AtNwLj/Dle4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TU6B2Hmo7YPTdefq92gFuxYIClBpZXC87PfpzASBuFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:34"]},"IP":{"Case":"Some","Fields":["62.168.3.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyrexlinuz"]},"Identity":{"Case":"Some","Fields":["c9Xpw8haNus8Gmojwv8Av3/gNEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XqxVJDfO0+gPdAE9gzEDZWMarDQfDj3s97zKFI9R/80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:39"]},"IP":{"Case":"Some","Fields":["91.151.93.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rspn1"]},"Identity":{"Case":"Some","Fields":["c88VmN4BekJOGRnN8E+f7EhvWIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D11W+0ufOoOFkLT6aJr1N7aFnfvb9DPpmTgl9JNuEvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:16"]},"IP":{"Case":"Some","Fields":["65.21.180.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9d66::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["None"]},"Identity":{"Case":"Some","Fields":["c8bWFiHfjChX/EozZlOR6a1jvhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2g5zln4Skvf41ww11JjndLG6FgvtLJcJqap1GIwrHdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:49"]},"IP":{"Case":"Some","Fields":["176.142.80.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeliosTor"]},"Identity":{"Case":"Some","Fields":["c7YVE1wW5Q5WaCb2RD7Ia3BEoPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cuKkvxdVdXuW4kArhafdkGnLVjxxH5Db1Eecxo1dt5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:24"]},"IP":{"Case":"Some","Fields":["184.75.221.59"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torcow"]},"Identity":{"Case":"Some","Fields":["c6YrWQzE8pDQaPogoS1kCKDYtgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rTSkrDQGIgTiO667RKS6IPoXxC+X7j/YrB7RJammMi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:23"]},"IP":{"Case":"Some","Fields":["174.93.174.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird33"]},"Identity":{"Case":"Some","Fields":["c6WoFoi9U2v7q+GGMPW9YwbJrI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q39T+TVKhsvboWTqVGQvoGIz6ypGN66pPdZcpjEzx5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:38"]},"IP":{"Case":"Some","Fields":["5.44.101.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:fa40:3aaa:1::9b30:deb0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WildRumpus"]},"Identity":{"Case":"Some","Fields":["c6Mr4AG1CFww3r3Qaycouwq2Q2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWlNGiVrju9l+GhOhEo+/qxs71XN5JdOlM64Qwouf2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:14"]},"IP":{"Case":"Some","Fields":["51.81.93.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["c6JVfSiHh4rWf0U3LNLRRGuS3sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u46aTJwe4LdF10XY00X62LE8y60EfvheRCquneetHNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:27"]},"IP":{"Case":"Some","Fields":["195.60.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneDEicebeer01"]},"Identity":{"Case":"Some","Fields":["c6CM60miE/xz/9lziWOEh9Txu3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xG5dd9mBd7bhWE5jrzOlNd/DIH81EHBrxJ7TE8wc04A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:31"]},"IP":{"Case":"Some","Fields":["89.163.224.65"]},"OnionRouterPort":{"Case":"Some","Fields":[3092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgarath4TOR2"]},"Identity":{"Case":"Some","Fields":["c5uMurThLHLjlZDmj9cGzlYyfBQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WqOQxMOlDPPb6+9xvBHeKeYdwWSOmFYgz5GmlQK21f0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:15"]},"IP":{"Case":"Some","Fields":["213.65.114.38"]},"OnionRouterPort":{"Case":"Some","Fields":[63456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapSFO"]},"Identity":{"Case":"Some","Fields":["c5RLZ7mD9BSoE7KgBvx96CgrQFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZDUU+CyJv7pab6VpAM8/eLOFijv3pyhZriKP4GnjVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:12"]},"IP":{"Case":"Some","Fields":["138.68.43.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::742:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowball"]},"Identity":{"Case":"Some","Fields":["c5LjMzE1W9xvWvJfwmjOapFr5GM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nq9a1Y9E1+8J2vd1vAo2CWTYxz97De3eEcp+RLmquys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:09"]},"IP":{"Case":"Some","Fields":["80.241.213.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["c4Vhku4h3/w39pUYYfsZWWeaVVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDLkrSiLkS7tIRBcSzt7uryEd4XR6ydZFmqvV10nFO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["37.120.185.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HYS2"]},"Identity":{"Case":"Some","Fields":["c2TvsVf8qAnEa0GmHY5qQ3GLioU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rjAuDa0+kWEfQj0SafBDNx8RmxcRrvG4qKvMnj5n6fA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:07"]},"IP":{"Case":"Some","Fields":["179.43.160.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber37"]},"Identity":{"Case":"Some","Fields":["c2KL7jRuUMOmDs/zCjXURS0dB0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LYlwuAsuRpGjwXbq5u3am9/SmTCmUnQF5N/FWJ3L4YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:19"]},"IP":{"Case":"Some","Fields":["185.220.101.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::19]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["c2J3DLpbVMMSPPskPYIXUx4voDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fg4A1F08tnpF1ceZlwe3ywOwRJvjGlNQuVzC01EoId4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:41"]},"IP":{"Case":"Some","Fields":["185.229.90.81"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:43f::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["c15z3m+z5E5bbpxOrrLbnNdXKjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ROovTErP8por8afnAY+b5tsSGaefav+D7xwe4QdIe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["45.12.138.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::1fa5:48d1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepGreenResistanc2"]},"Identity":{"Case":"Some","Fields":["c07d8K+yjJHOh1EcfwgI5IO1oZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GjH30SSSb86ga00LahzFTLS/+CxI8AVzHNe8qU2PlY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:27"]},"IP":{"Case":"Some","Fields":["185.213.175.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:232a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MoldEraTor"]},"Identity":{"Case":"Some","Fields":["czKgawDWr1SqgE8DxiTfu8nmYXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QzCpO3j+3eH5SSl7SizemKKSkszUPYJyXkJoy6K+lUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:38"]},"IP":{"Case":"Some","Fields":["178.17.173.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:2451:10::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay29L"]},"Identity":{"Case":"Some","Fields":["cyg8TevAHT5KX9G7HytQ2Sc3n1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HANFQi6rPXuj9/qj2W/FTozt4oXsPD6Zfibn26j680A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:57"]},"IP":{"Case":"Some","Fields":["217.160.56.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:867c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["cyeHauecmX3+MRp7FbT6h1c2u9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dCrjCifrDfmpvj6X9kfz8VcnSbVckhoebGyehztQz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:16"]},"IP":{"Case":"Some","Fields":["185.220.100.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:1::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ByeByeBlackbird"]},"Identity":{"Case":"Some","Fields":["cyCK5boVJRKrjXrZLgvx4PQgSjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CTsHnWOAMHWZLL76VCyHoegLklRl6CjKnjuE0RLgfrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:56:01"]},"IP":{"Case":"Some","Fields":["76.103.212.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cw1vDrj4xmbrOHQDmDGmaoXkvM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GitM6falLi+nqXGTOwF1MENKiTjZZh1TIuMDKNBegoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:04"]},"IP":{"Case":"Some","Fields":["23.128.248.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::40d7:6aff:fe81:86fd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["huselRelay"]},"Identity":{"Case":"Some","Fields":["cv2U+jXTLib9mGdxf1deiDrZ5as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eshM3YUthFzed4r7i3opn8L3o+s41abhD3UGshnY3Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:30"]},"IP":{"Case":"Some","Fields":["92.209.84.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9382]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay330CT"]},"Identity":{"Case":"Some","Fields":["cub+Nz2KlRVKNmJxXp4QtWRHPOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ak9/qZmwvzgGx++CwTXNplqHeo0Iajy2BwCKWKQjsYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:47"]},"IP":{"Case":"Some","Fields":["98.250.174.4"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt29963"]},"Identity":{"Case":"Some","Fields":["cs8v4Vb4Y3ohrLfRY6mjldDAIEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zS72SPblJp+S14yC9+feQDPfgxKGUcAZ6IiwEAed8P4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:18"]},"IP":{"Case":"Some","Fields":["185.245.60.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0185"]},"Identity":{"Case":"Some","Fields":["cs3neT8ClSNQlIRDmjWgWBAwHQ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLtomQsEtXYlLZ9XxQoCU6fkxDlypSjmxGTFfJ+NQ90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:50"]},"IP":{"Case":"Some","Fields":["185.220.101.185"]},"OnionRouterPort":{"Case":"Some","Fields":[10185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::185]:20185"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedomRelay"]},"Identity":{"Case":"Some","Fields":["csS/FHGnasZRSEOvWkTb4ntNRwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYNSugCFWvgB1JGSXLfy1QRkAaMbAs+cCWihuErYKh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:10"]},"IP":{"Case":"Some","Fields":["78.47.153.136"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Omoli"]},"Identity":{"Case":"Some","Fields":["crOTmlfKM+IiL6Lacxlox+pnBNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WdbVjufrrbVACauhWc/JGNS4jbcMPQpnQniIKr79O70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:24"]},"IP":{"Case":"Some","Fields":["216.197.74.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:e439:2::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["cqpM+JFokzLZRzpOAUD4PbIhBUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC21TqgpixgXp7x72/y7HfSO33zXlwdg5OfTLSxEi/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:04"]},"IP":{"Case":"Some","Fields":["188.68.51.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["absturztaubetor"]},"Identity":{"Case":"Some","Fields":["cqM+N03lrR5hc5SJbw/YsJLT58Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JjRoM1Et4FfoDBmxprsEF0t6Q6vxnV1oAkZe1TsN8kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:34"]},"IP":{"Case":"Some","Fields":["81.201.202.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zai3Pheevoa4oiWooz1"]},"Identity":{"Case":"Some","Fields":["cp2qCfHiJduq8vQvPIL9O7561d4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jBfEU/ZQJepbEEap4U5asGMHxODWDbJE1vq4tJ5hz4E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:05"]},"IP":{"Case":"Some","Fields":["185.183.194.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisLatrans"]},"Identity":{"Case":"Some","Fields":["co+X1byxMWmIFNjHE8IiDG5yZ94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpUTiC9lDnsRXoDAjbE8965SeUpead56B1k3AyJhVxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:59"]},"IP":{"Case":"Some","Fields":["135.148.100.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pembs3"]},"Identity":{"Case":"Some","Fields":["cooH8BQqxbL4c9NtWQhNudyDq24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ds8EZEXb2hBfKrnvlgcKKbiu600gBbUo+etb6MOWLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:39"]},"IP":{"Case":"Some","Fields":["195.177.252.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mamba"]},"Identity":{"Case":"Some","Fields":["cms6erGVQ+dIMcusqYHOGM3WonI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["quxCf+olPFtAA4W6+hbhlRdZmmBpp+LIkXzvKdZRFyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:53"]},"IP":{"Case":"Some","Fields":["45.95.235.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baronCV3"]},"Identity":{"Case":"Some","Fields":["cmUHXWIFHYElZhMJBiuSrhNrshY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qId9RemMeO9+J9pSyrGBB4kDESN+nDTsvqG+DrWACk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:15"]},"IP":{"Case":"Some","Fields":["212.38.189.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bornhack2"]},"Identity":{"Case":"Some","Fields":["cmFMFsV41nMqnZB5oJBegVm8ROQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EoOm29k3Vl86DU2qcXsFTjb7/rYt+tJ/cUncxxfKj2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:17"]},"IP":{"Case":"Some","Fields":["95.216.212.222"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:2697::1]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei05"]},"Identity":{"Case":"Some","Fields":["cmCUlFnC1NSlq8OsEMGtaTnmUlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hE+S0SCU7MCQrvqbCrMetDQsAcyvRJcBDAV/XTVvdf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:59"]},"IP":{"Case":"Some","Fields":["188.68.36.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:7c3:a401:f1ff:fe45:7ffc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gamblo"]},"Identity":{"Case":"Some","Fields":["clCFLO3bp+Bl7zICiC9HFzGEZdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oiLWjNERtCCkpqWura28Jc6o7IGfoDvYPe7alrqBOXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:47"]},"IP":{"Case":"Some","Fields":["5.255.99.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:31e6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VoxBox"]},"Identity":{"Case":"Some","Fields":["ck/g2b0HN/510epX+EoWNXnhdls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0kZ1nzMVF78IDkXLXNLpRFftXzl4TYo2IE1Z4R6phps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:59"]},"IP":{"Case":"Some","Fields":["104.244.78.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cakeallergy"]},"Identity":{"Case":"Some","Fields":["ckqWIbDqtpNZ+d7PXaQ31VXW180"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAssk5c4Nj/9x0+bThooZqGWNEUKKzqkHkdEntmrnLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:25"]},"IP":{"Case":"Some","Fields":["45.35.33.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditheconfigmuch"]},"Identity":{"Case":"Some","Fields":["ckEaLObrJNjNqGiKazpVzBKQ1EE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nzTitnR0DSh/Mce5Q3OUwXnGeYzvUprIm0laT/UDErU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:20"]},"IP":{"Case":"Some","Fields":["37.201.143.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveTeotihuacan"]},"Identity":{"Case":"Some","Fields":["cj4h/W+RkF6E5YPUYZotHigrgYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKKTw1GPR7BpwQJdQS1AcneWOVpEjK3RiPxzgb0uG/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:14"]},"IP":{"Case":"Some","Fields":["65.49.20.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM14"]},"Identity":{"Case":"Some","Fields":["cjjquR4QULbGvt38/XokQIabEUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["np7Xv1mcO+BNnILEB979MFalgTN+dRd+aYncVKRDDBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:35"]},"IP":{"Case":"Some","Fields":["185.239.222.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["perseus"]},"Identity":{"Case":"Some","Fields":["cituO3rSrlB6huWanzgLNXD0Z88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GdQkf/L+DAYPvdKRqXDY4F8eEI9Aw7/qKTc0KWLqCbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:16"]},"IP":{"Case":"Some","Fields":["195.154.232.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giesskanne"]},"Identity":{"Case":"Some","Fields":["cicOtY7evnJ6op5nQXYo286In64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aL1tgzfko+0/TZA6zxD3OCLMVTP+LJ8ChM898U3dykg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:41"]},"IP":{"Case":"Some","Fields":["95.216.146.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:a48::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5bd84798b7"]},"Identity":{"Case":"Some","Fields":["ciA7P0KQFzPsUCR5udmo1RNp1DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2BPXULu3GtfpxhOLLCeYiRcmnKaDAw326tNtNaXIrdc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:24"]},"IP":{"Case":"Some","Fields":["94.16.107.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["cholFli6IkDu0RDAeDNKst9sMJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E8asnspj4lMXm6ZDimBFKRrAkHJYpfXAE261l18LqJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:52"]},"IP":{"Case":"Some","Fields":["185.177.206.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::132]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slotor02"]},"Identity":{"Case":"Some","Fields":["cgq+RVTFXub2CZSRylXR9VUFEsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6kaxGqn+gqxayEmycXD6GGLB3Hi+pCleGjsd48sb6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:24"]},"IP":{"Case":"Some","Fields":["135.125.202.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Love4Ukraine"]},"Identity":{"Case":"Some","Fields":["cfnZaEjURVL3O8ShxdWXUbbQdGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+PpoQKqNSdiY0dVT+6jAP0dzwxyzwFhiXQhzwZXKbK4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:56:23"]},"IP":{"Case":"Some","Fields":["144.172.73.66"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HCCSRV02"]},"Identity":{"Case":"Some","Fields":["ce4/59zD8Igwk2Gk41hDtggMnqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xNuEd0FWHrnmJJAOqdEPvDHtJO7SBPK+1u9Isvco16E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:21"]},"IP":{"Case":"Some","Fields":["49.12.230.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:f4b0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marko"]},"Identity":{"Case":"Some","Fields":["cezBfuutu6dbH6Pb3cbvXPRPKDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJ5b/vGz4SIW8j6/SyfxoEv+ocCTi57H82XBGIrJ+0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:33"]},"IP":{"Case":"Some","Fields":["213.157.244.223"]},"OnionRouterPort":{"Case":"Some","Fields":[8201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv06"]},"Identity":{"Case":"Some","Fields":["ceipZz3Gi9P3Xt2T6Y8ADq0qplE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AA1HkPenN8QYdxNpMeKF62kgjIWTxriIS1FSjHNLY/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:22"]},"IP":{"Case":"Some","Fields":["162.248.163.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KFCCrazyThursday"]},"Identity":{"Case":"Some","Fields":["cdJSgohbmkO5IFJhi5GSuECCDQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z06mleewcB1xkefKn2sBNPONuATIYJnjHRcMrF9hric"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["144.202.113.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:4a2c:5400:4ff:fe13:81e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["nodebyCyper"]},"Identity":{"Case":"Some","Fields":["ccoKjDQ1v0jR+5ZCQO/AeWNtvl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZswuVxAx0/ozP2kplB/IxYEd5MkTTYDgrvBYPGZ3HRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:59"]},"IP":{"Case":"Some","Fields":["78.46.162.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:82b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torontot"]},"Identity":{"Case":"Some","Fields":["ccLSwkvEVHx64YdEgoGbU1ll8jY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s9T1GY+b3S2H4epB3EaJod7lEhAIGiqLkWCOVGWx8Os"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["54.37.180.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["cZ/Q+jJ/PMvNoNTqdMFeoRAziUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HKNdzsSOqXi5UWoaUJIKOEekyqcicf7pE9IT0Wifj04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:28:53"]},"IP":{"Case":"Some","Fields":["185.220.100.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:4::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapSGP"]},"Identity":{"Case":"Some","Fields":["cXSvsmp7hOldrslGLBGgRfq3jLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FHWerlDF3DcxkTwHr75ei4nG6V98MmRlRMcFEbgg6Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:26"]},"IP":{"Case":"Some","Fields":["167.99.69.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::11c1:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cXP96R/6JBXd2W/bXDGEBbKHu0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zF6TAv056l/6g+lZDCyz6E7M7htNEe38JUQ6LMHJuG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:05"]},"IP":{"Case":"Some","Fields":["111.216.95.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViktaTor"]},"Identity":{"Case":"Some","Fields":["cXJWc6bMMd1nfxz/88gMUgG/8lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FCMCw5snpBKWoakiRthcI/0w5BIdSHqLdydDW+rnz20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:53"]},"IP":{"Case":"Some","Fields":["79.121.49.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["winterwonderland44"]},"Identity":{"Case":"Some","Fields":["cWhTHGntZRoS0gsqwr1hwbx/XMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/szLCyS+tSwhUU63tmrX8W6/Haj5OmqPDS42+mUt0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:37"]},"IP":{"Case":"Some","Fields":["141.39.250.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cVXekMHDyb9NY3WAx/An5XInvTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSoosqM+IQS+q1bcxeuVuh5+TzjN18Q735UcS4gkAPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["89.147.109.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tordel2"]},"Identity":{"Case":"Some","Fields":["cVWQoeFlS4l8bqx2mcyafKnvAKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r0X26j42eT/vRUMdMiYd61XYxCpHUkYoDdBDrc+uxpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:20"]},"IP":{"Case":"Some","Fields":["5.181.134.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission05"]},"Identity":{"Case":"Some","Fields":["cVOdGRHsuCYGmk0VZ3GsT59GMqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/Kuey0uuuAhX0AK2fzNcYgwwxEDGMo3nNmvIzSmKhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:44"]},"IP":{"Case":"Some","Fields":["37.59.76.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangeneis"]},"Identity":{"Case":"Some","Fields":["cU1+2c0rwe4+35xqMWD9rmCKpbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pHbKfbrFg/Ha7EPr8vY0d2CYD6Ci8Zdj0phoEcTwqsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:49"]},"IP":{"Case":"Some","Fields":["89.182.40.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:560:53dd:d500:ba27:ebff:fee2:a46f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.6-rc"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vps603203"]},"Identity":{"Case":"Some","Fields":["cUGLailM3EjpqdsNqZ4Xi1Wv90o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["axeCZjZP37YMFqpNLxrs8V3e2UzLLpxZJkq4dzH/AzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:19"]},"IP":{"Case":"Some","Fields":["51.75.125.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburgo"]},"Identity":{"Case":"Some","Fields":["cSsKrbG3jVQBF8BViqK7Iq6gP7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yuOQ7dkq4vg8uepyOX1rrwGgEHlkIOdHwDpK49gNKHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:17"]},"IP":{"Case":"Some","Fields":["77.8.132.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["cSkVDn/ILtkm2sZsHd6lHEMaBUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e0ayvNPvSd9Zw8qXNVbO1kY+rlhu/WFKgIa94bH6AiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:23"]},"IP":{"Case":"Some","Fields":["23.128.248.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode4"]},"Identity":{"Case":"Some","Fields":["cRa8kpwFXfA8ztn97qj5Z1tlFSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkd54WbrSDATV0YtioyaycbVvtVebglLo+8LMbhxWJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:27"]},"IP":{"Case":"Some","Fields":["184.105.146.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::91]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv122"]},"Identity":{"Case":"Some","Fields":["cQJrmZ4V7MC8yla5cuIQzKdq2Wo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVaA2FoKVJqGgWvapGXbJgaAYkLWOODRArUVP0XNrFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:41"]},"IP":{"Case":"Some","Fields":["192.42.116.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5522]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["cPlhNQpBTwhqo6dnMlcTyGyTO0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d46LXO0Kj03OkrtO9T5RmIBMI3EeMO3kTUwPZO5zuZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["188.93.233.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7a60:1::f9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay4312"]},"Identity":{"Case":"Some","Fields":["cOWXPgfYr8TyOWOLbGeB8IcO/Hg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v7FTPiqxeOKhc7V+bWN08GXGR11MaBk9OLyB7a8YhGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:16"]},"IP":{"Case":"Some","Fields":["109.200.109.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cdn4ukraine"]},"Identity":{"Case":"Some","Fields":["cOOfeqGoO3pdO207fmqk8dJuI0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Alf9LzKwrasQuhxgYjrO75tUvjlbaG+w7AlvOnDbA6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:07"]},"IP":{"Case":"Some","Fields":["198.98.49.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow4"]},"Identity":{"Case":"Some","Fields":["cMIgRXShtCTwB5OM8EpmYhbhs90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXKwa3TdbBqocZq3IVRSDf15L8ikoYRn4NBJfAVkRTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:53"]},"IP":{"Case":"Some","Fields":["51.68.153.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["cMFpqra06CyP4OzivvtKf6tGCho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+jMjpoOsSmO4hfKRRJbMp7Ywfb+Xblj5BD8ahb/XG0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:08"]},"IP":{"Case":"Some","Fields":["88.208.225.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:19a::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["cL1Bfvyg2HTbVtPZPo/fWLflqEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iw2SBkg/V56HbvN2OXnilIr41fY9zTR59KnJ147KT0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:42"]},"IP":{"Case":"Some","Fields":["220.120.114.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["secureprivacy"]},"Identity":{"Case":"Some","Fields":["cLg8wC1O+3lT65ugay/oJZHLGig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+lxAtLZdjkz0GzfgXM1T9HfdoCf1XI4CKz4zbTyzvj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:46"]},"IP":{"Case":"Some","Fields":["5.255.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["myrelay1"]},"Identity":{"Case":"Some","Fields":["cLVHM2xqxK3WdOrOtLnMqMAsBPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/80npcawBKiqtZODWlUK6UFPUy59DfFPKy+EHVITsZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:17"]},"IP":{"Case":"Some","Fields":["184.183.68.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp1"]},"Identity":{"Case":"Some","Fields":["cLUeiFdgHh25AGuXRkLWz+goFYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+1cg82xO58qme5WdcLl+cMMZLCeWR+MfMY0WRLhDTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:19"]},"IP":{"Case":"Some","Fields":["185.220.103.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay26at5443"]},"Identity":{"Case":"Some","Fields":["cLLYO/ypUC436vSdxoUWZxjq3v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zlrmosIztcVXnM/vHR8n4OCjmWa9xXsbxvWpMch4Nnk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:31"]},"IP":{"Case":"Some","Fields":["140.78.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute21"]},"Identity":{"Case":"Some","Fields":["cKygfZJ2J3uC6QnBQ54ZzKL7Fsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9C26qxdYmTNCmbuDQOB63aF6mAjEkPKwdZWUGPec38"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:31"]},"IP":{"Case":"Some","Fields":["185.220.103.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["cKZECx5ti2lcHGEeKTvM3P5q39M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CGP8COKJjcisHKle6dHGmuljjVTawQGGVQWYH2EvwjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:58"]},"IP":{"Case":"Some","Fields":["23.128.248.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyIsFreedom"]},"Identity":{"Case":"Some","Fields":["cJ1f583SNWPFkwH7sBPh46Xs3ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VdStp/Zo/f/awqAhEepBKR+Tc9qRqqzv58POY6CYz68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:02"]},"IP":{"Case":"Some","Fields":["45.76.24.29"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5c01:1c7f:5400:3ff:fe54:2f45]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay15at8443"]},"Identity":{"Case":"Some","Fields":["cIgrEWxzvjIwNtgkMVoFDueWxEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7ay25eyHWDGdpC9NDZBIRrRrqoP+2CUmPIcHwNzDvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:33"]},"IP":{"Case":"Some","Fields":["140.78.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["steigerwald"]},"Identity":{"Case":"Some","Fields":["cIBfFVHoQMc3a4c+WsbzAymT54E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sjfw1LLlEly5UrC7DJdUFVySc7qw+MOEkHbRwLXYW0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:11"]},"IP":{"Case":"Some","Fields":["213.54.162.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopetohelpdoods"]},"Identity":{"Case":"Some","Fields":["cHQPHxYgVXvFTH4PyZS0NG7tziY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oofMJ/OLYZd85EeW5VVvcTAwS/esZPV/0izkcLkRrjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:01"]},"IP":{"Case":"Some","Fields":["24.99.81.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9074]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fourwinds01"]},"Identity":{"Case":"Some","Fields":["cHNZ66X0VY1TOrJnOlk+kzhczMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AZ3qDFTQbc3EP3UdXS56gOcCH7fCrhnvbjWvgXktyd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:42"]},"IP":{"Case":"Some","Fields":["94.16.116.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:8a9:887f:9eff:feed:9e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex60"]},"Identity":{"Case":"Some","Fields":["cHAZnvYLWxrk6i77SIH5+Qtvqe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gFY1q+ZZJ1f0iLPU/ioOfGWThEBN4Wld0ZNWUI7Z6M8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:55"]},"IP":{"Case":"Some","Fields":["199.249.230.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::149]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor04"]},"Identity":{"Case":"Some","Fields":["cGp2dKIXupBf5nfoIja3uWiiPbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gVA/aQ13Ci0byRMuyObnZbGC0BvQZnyUPg00cpum3V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:16"]},"IP":{"Case":"Some","Fields":["83.136.107.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:7760:bbd6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drivetbuyvm"]},"Identity":{"Case":"Some","Fields":["cFqDGxWcS7OW5rC6rUJw96P+mqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lPeM8RQ73jOEv1/LxYlqtkplwp3NBtGfyK/XDcw0+D4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:37"]},"IP":{"Case":"Some","Fields":["199.195.252.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["L29Ah"]},"Identity":{"Case":"Some","Fields":["cESVWk17BM9wAR1ztGexPOXmnUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZvkbq8DzpcfP7zU+LKcjkmLc0ZOADfPXHTTp6V1yYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:02"]},"IP":{"Case":"Some","Fields":["94.242.59.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:35:100::e928]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorUmidanuki"]},"Identity":{"Case":"Some","Fields":["cEDB9XKHRsX7XhKEUQGibuhjbX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MyWJKK9RtPIT54LWcaG5lBVmcEGy3ZPGfxd0cg80L+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:34"]},"IP":{"Case":"Some","Fields":["144.217.90.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::5b0d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomOfSpeech"]},"Identity":{"Case":"Some","Fields":["cDJmYwCjjtYk2US/gdzLFZFFtwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qkuSJQgDIK6l207Y6d15P2diiBbiqe8pQwTK7Dd89jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:40"]},"IP":{"Case":"Some","Fields":["185.194.142.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:79d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["cBoK/GDZjQOGNgMKUXFF+nbjQg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftv4N7N20XWY7Orq04/8bd49yQb7gcNXTJxdly1XEZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:31"]},"IP":{"Case":"Some","Fields":["23.128.248.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OatMeal99"]},"Identity":{"Case":"Some","Fields":["cAkOn4X74ATuv1hGH9bt1b+KUj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jQTd7LCCqDW/jQRT7skgXfoBmT9rytOwGUyN8S5zI00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:48"]},"IP":{"Case":"Some","Fields":["80.66.135.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["cAZWVw33PE/EBZ/vL33giych5Ak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/gseEmz/KlZ5tt6u4XS5QqT44IB4vwNpLlIxivru5oQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:41"]},"IP":{"Case":"Some","Fields":["185.220.101.48"]},"OnionRouterPort":{"Case":"Some","Fields":[10048]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::48]:10048"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atlantis"]},"Identity":{"Case":"Some","Fields":["b/RA37HQaXuUI1fXR5AMwwjdV8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r/neYdR+JBMPyKRXdX/SmiOHfKhwemdAMLDLkpFb/0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:39"]},"IP":{"Case":"Some","Fields":["85.25.43.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["b8pc5h9UXRgs1GM3NUdKmoFMbkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ohAwj6BZNXuqtlvZj9bhiUPKQZjH5o6OkRmPFVsHNrA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:46"]},"IP":{"Case":"Some","Fields":["185.228.138.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:785:3494:6ff:fe3f:873a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jubei"]},"Identity":{"Case":"Some","Fields":["b8jTsVIFSQZBfLHuBkImV0fH9ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wsYFtwhIAbvQ8ny/V44XdCZtBXn13OuHnULEDU5N8fM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:13"]},"IP":{"Case":"Some","Fields":["72.83.64.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:4040:209f:9101:21b:21ff:fe36:fd2e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmallTownHostingTOR"]},"Identity":{"Case":"Some","Fields":["b7aWCCYnhDlJqAjOw4kD24GQ+BE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZrX7Bhzlt+vjqmfVebJKaVzxLoSEvtGP0oG0uxvrWeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:38"]},"IP":{"Case":"Some","Fields":["12.208.119.235"]},"OnionRouterPort":{"Case":"Some","Fields":[1500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harik"]},"Identity":{"Case":"Some","Fields":["b7TkKuKgFH311aCkKDyW9fukM7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CoAeAFR13Xd3jRFLKQgR7J1X8Tw7fL6k2q7CactzsUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:05"]},"IP":{"Case":"Some","Fields":["193.189.100.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:258::228]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun01"]},"Identity":{"Case":"Some","Fields":["b5XmxRi9CepJoxAlp7Ef2FT6ap4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9KuEOmVXPoj+5wIhVg1KO5aq2v3EWqwpH/tDHWcV9mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:16"]},"IP":{"Case":"Some","Fields":["94.46.171.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["b3fpXvMQCork5g1S8Fkxp8kOXAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6mmuUkHJ+waSH401uPrPbjRMm0eJqAJkmabMXFo2AdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:51"]},"IP":{"Case":"Some","Fields":["179.43.159.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Demonsys"]},"Identity":{"Case":"Some","Fields":["b3V0R+TydVHlkjPQ7Adtcnv+Wiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+tkkbE7yrgTrQd6kdHgID+fQCKj4izzzc5A+feZQliM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:53"]},"IP":{"Case":"Some","Fields":["39.109.151.40"]},"OnionRouterPort":{"Case":"Some","Fields":[33701]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3003:2006:2f59:62ef:1332:cc8b:5ebb]:33701"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE75"]},"Identity":{"Case":"Some","Fields":["b3KYcYfrSCI5lb76chdVkyZg0Nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2muBKhQRcaa/dS84nbm4pg7Ok+CPCLfj4H7tsqCkDKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:18"]},"IP":{"Case":"Some","Fields":["37.221.67.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:105]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brotherjacob"]},"Identity":{"Case":"Some","Fields":["b2WG8WMcrBEVuVYWVudmTThrf0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qGMNLMIYNJBb7xsN3g/0SY3XrI3wQqajlrMvn+PRok0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:42"]},"IP":{"Case":"Some","Fields":["46.4.55.177"]},"OnionRouterPort":{"Case":"Some","Fields":[1723]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["y8Z5zJT2Fadx8m"]},"Identity":{"Case":"Some","Fields":["b1q7xFXNAfSB0vNszRpgz/6x7V8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cIV1gCW527Bgcx5d3cIfjOtEmfKg/AuewQmT7IfXUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:39"]},"IP":{"Case":"Some","Fields":["91.208.206.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5130::aaaa:12d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute06"]},"Identity":{"Case":"Some","Fields":["b06f0A1CUdmL6W+xqlRv40Z2qVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jERKbW5a+9NVSXeCy7Ds/K0XD2pfk/Ml+dsGWqjM+O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:13"]},"IP":{"Case":"Some","Fields":["162.247.74.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["b0ddorgdtqeQKJE2so4jupToSyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPnDlgdGeQXcIiZLCrPnkxXUAQehTRylLVNYWZ/5GYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:45"]},"IP":{"Case":"Some","Fields":["185.241.208.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["badc0ded"]},"Identity":{"Case":"Some","Fields":["b0LW9REjwJiGRkqVn38E1a1JTpY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nhl5NrP431/jrYsc0dtT0SzYajxZ8YOk2t52tuGwFBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:08"]},"IP":{"Case":"Some","Fields":["202.87.163.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JonDool"]},"Identity":{"Case":"Some","Fields":["bzD3qUym22Cb7O+F42JlyCCtUB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4n6JM7TYVQARlFYTUnNfPupvc4n1pSPvVMtuIHux380"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["116.202.104.202"]},"OnionRouterPort":{"Case":"Some","Fields":[7193]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterrydavis"]},"Identity":{"Case":"Some","Fields":["bySjXFbDCiMd4h5w6KDISuCSfQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vu3mO3yJW34Uf/H7E8zpnJP4dHIdFxHGTEE1KnrJ/+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T21:26:38"]},"IP":{"Case":"Some","Fields":["90.178.65.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohrly"]},"Identity":{"Case":"Some","Fields":["bx0bgxUtYYHKwscm63VHt7m7e38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Of7SrA9GkJBCQCODuKPE1pwpudc3xmCBuh4AtRr25ZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:34"]},"IP":{"Case":"Some","Fields":["79.225.81.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ByrdeFoundation"]},"Identity":{"Case":"Some","Fields":["bxtKYrAp4VE5GUv+NPWleTaUtJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f+mLck6ClIVSn7G1JiNpptm6pIN5J49SCDlmmVfpyqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:55"]},"IP":{"Case":"Some","Fields":["195.3.221.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:26::c303:ddac]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Petibonum"]},"Identity":{"Case":"Some","Fields":["bwz/Y5pp8y6UH51RU28xDghyqrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["upg9cyELy5lcZGdrJ+tjNN/Q7MvfcVox65e/vQdgT5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:58"]},"IP":{"Case":"Some","Fields":["86.248.89.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blindisland"]},"Identity":{"Case":"Some","Fields":["bwfUvI8Ma0hvucGMDh9xn6YBxBQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYS1K/4tA5eAaePLal9gMAotG9qfdCr8rlEJOCmiNTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:34"]},"IP":{"Case":"Some","Fields":["45.32.66.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bvrDM2zf0+vUXjfKGZXt+Dv38BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhBjeV2FRFYd8dc71jF1Me78SXEu9Q/o9KwpxKoqZEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:14"]},"IP":{"Case":"Some","Fields":["23.128.248.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::9835:eeff:fec0:f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoertetor02"]},"Identity":{"Case":"Some","Fields":["buC+AbUcZKx2LVMvUzcA+zgeIOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QOnfsjXgYPJQV6nugpW8kmVCvgF7Fh+EYTHZ92T3xrU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:33"]},"IP":{"Case":"Some","Fields":["88.198.209.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snousage"]},"Identity":{"Case":"Some","Fields":["btwKebCD7M4NG3l7EB7YjrPtkNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnpZM/+Jq3SpECaJ0fL728liyU4rsaHvBloQ5QpCRH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:02"]},"IP":{"Case":"Some","Fields":["141.95.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h2961181"]},"Identity":{"Case":"Some","Fields":["btdrK57ekyyHhhobGg+S2MxtKX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MMqtTdACPG19KHfYqo23xJWz9hv6OEjHi4BYATGterc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:55"]},"IP":{"Case":"Some","Fields":["81.169.166.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:424c:1900:a87e:747:8f75:a70e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatconfig"]},"Identity":{"Case":"Some","Fields":["brMAITwnxFNnuj8RMqY+p2d/7U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uMKj/f+DrqFIbaX/H/IRynU7ER/DO4HLqzRujuKduNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:49"]},"IP":{"Case":"Some","Fields":["213.206.184.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:beef:2041::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber09"]},"Identity":{"Case":"Some","Fields":["bqWn6owvGSw33OsqrUgdx+cuZd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wRuzZnen/2kH3vefrV0ZVKIUiDw5Nn8FDo2rcBSyGRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:27"]},"IP":{"Case":"Some","Fields":["185.220.101.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::5]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GirlYouHawtSauce"]},"Identity":{"Case":"Some","Fields":["bqUXfBwgR7I40yCAG0so5B3Iis8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cimfPXBolz1nLBxBSfooKbjhcUcaDFJVkXTzB+mOz4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:12"]},"IP":{"Case":"Some","Fields":["173.205.92.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveMenkaure"]},"Identity":{"Case":"Some","Fields":["bo5cqbb1Z0Fq2iHpkOd0a8IjsMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CiAM1cT5IojF5loTBe6NtY52D4VE/3Cqs0IP39kp5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:35"]},"IP":{"Case":"Some","Fields":["65.49.20.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo235"]},"Identity":{"Case":"Some","Fields":["bog6h4+cMz/I0WwzBLLmOwAUPZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8iCDGFKWdX6jrEmzir3szztriIXv99VqzC/f+oGNyaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:17"]},"IP":{"Case":"Some","Fields":["179.43.182.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["bnNv9LooRTgaL+5N7mzFZcWn14E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7xJnbduMO9cW0vnRaL2jHauW6SivARcoY0U7vs0RWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:35:25"]},"IP":{"Case":"Some","Fields":["188.68.35.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ServerAnoynmous"]},"Identity":{"Case":"Some","Fields":["bnM0NBjlLN5N3BTlUMnU750z0uA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKo9KJsvb7MQw3l00fmZ9B6jmIddum0qNLJm57AFA1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:30"]},"IP":{"Case":"Some","Fields":["79.192.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnstableDebbie"]},"Identity":{"Case":"Some","Fields":["bmcy4Aw/iRK9yoDPzyPQ0mhqw4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ryLzf1X797I1qhvv8gxyLGZH7XAfT3XzyD5aHyuoKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:47"]},"IP":{"Case":"Some","Fields":["149.57.205.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongUkraine4ever"]},"Identity":{"Case":"Some","Fields":["bmZmIae9OYp/DGf180S88VnyLoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["79g5J7Ud0+psYjDVYKN5CzGAr/pCarfintnKxRWkPBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:27"]},"IP":{"Case":"Some","Fields":["91.219.245.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Minotaur2"]},"Identity":{"Case":"Some","Fields":["blhsj2LQ4VN5IJWv2lXU4uPzQh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lhCskNRdkFroNZGrM6+SEWA1qxUqQn8rdPv1jS+IuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:23"]},"IP":{"Case":"Some","Fields":["208.109.215.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["bkGLoKCaTdevVAgjzgJMQmgbl/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TUFv4BK+j1fTfx7h6z2dxXY9rQYJ5MhB3JIT0JNHBX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:23"]},"IP":{"Case":"Some","Fields":["151.115.42.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber34"]},"Identity":{"Case":"Some","Fields":["bj3SLPQEmfZ8ytxcAkOXdIwOY7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bQNHx/Xt7nnW0r/HZk5C4ws9oAPQeciH8N1T9t5KSUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:09"]},"IP":{"Case":"Some","Fields":["185.220.101.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::17]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bjtIITBdlvFnw5Lb5aEyQNbM4CQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a2+Ms7Hz6cGwL2U6oqTN33ZcvCZnfVA90s0YvSp6JlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:57"]},"IP":{"Case":"Some","Fields":["95.216.201.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3880::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VenomReaper"]},"Identity":{"Case":"Some","Fields":["bjUvY36dXYgs26RUcz4WkfTWhf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9aTcfW5jsv4GqlhPbYHLRnn3qabGedPtC6LLKYxzQNE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:11"]},"IP":{"Case":"Some","Fields":["65.108.231.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:f500:0:d0d0:15:dead]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay21at5443"]},"Identity":{"Case":"Some","Fields":["bjUIyyN01BHNQf7o7N9w2joveig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/m/GniTRzyYGcL1U19vfymaCEfdTdls3AQt8NMl9nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:14"]},"IP":{"Case":"Some","Fields":["140.78.100.21"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LuckyBrezel"]},"Identity":{"Case":"Some","Fields":["biF0uR8lDOBey7bJo3gf6zWWw3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixK3r+qbTvJni5Ftr6vJyhF0WwnEj2++g+P/85FcZMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:57"]},"IP":{"Case":"Some","Fields":["217.160.242.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:717::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bavariaboys"]},"Identity":{"Case":"Some","Fields":["bhztxh83B8VJuI+5OA5KdQYh/Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ew3wZAuSuI63YtCiEf05fLBFJ1mC+8MCe7UCP8DI8uo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:39"]},"IP":{"Case":"Some","Fields":["136.243.92.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:501::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bhbTjFrBcOVgiBe2ZiXF808h2W4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KSmDA2Va3T/izIclc5MX6DTJRxXkthK4YfMWgKQFDes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.59"]},"OnionRouterPort":{"Case":"Some","Fields":[10059]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::59]:10059"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bg3wpbfz//tF4aoHjRNvXevSKKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Wi7Z9GzyCvnFciZBXCRXO46baALKT1jFnUT3cn4vX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:46"]},"IP":{"Case":"Some","Fields":["185.220.101.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::199]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Onyx"]},"Identity":{"Case":"Some","Fields":["bf60HATM6EaHEzjoXdWs9c+2wd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wtXRSdgSN5TdqT7W8jT3vYb1SUas0skT5jQs3FHSKpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:48"]},"IP":{"Case":"Some","Fields":["192.42.115.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:102]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG1"]},"Identity":{"Case":"Some","Fields":["bf6yv7+p2+3OLeky+dFu5+BTDtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D/coL7WHA3+Ziqp8TD6th/Ehcn9lHOwvtIx6a841Hxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:52"]},"IP":{"Case":"Some","Fields":["193.189.100.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::194]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknb"]},"Identity":{"Case":"Some","Fields":["bdSKXnJhvWuLPqPQUh8eg+lsoTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le+Dl8hJyrByviKZICtPEBnsKnfizEiYPxsRtkDqVNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:33"]},"IP":{"Case":"Some","Fields":["123.253.34.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chenjesu2"]},"Identity":{"Case":"Some","Fields":["bc7YK3AdMjEggR31jTUN0mv5yyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LSMzuJNC80Xz7mdiC9t0UtkY8Mm/Ns8BgTEsD9RDop0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:46"]},"IP":{"Case":"Some","Fields":["54.36.205.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["someonesRelay"]},"Identity":{"Case":"Some","Fields":["bcykSPjtx5VTzmDo4hAw6ULMw7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0el5NQV10tSe0W+n32Qq7NYsdwfDTCRrru02CT+R6A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:23"]},"IP":{"Case":"Some","Fields":["207.180.234.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2023:2621::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay16L"]},"Identity":{"Case":"Some","Fields":["bcbNxt2pmRXrAjIHHG3SyHhKGR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gHjFDEotESrT4qp4xEA6Iw3g0I6SrTS7sKtcPaH+UoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:26"]},"IP":{"Case":"Some","Fields":["195.123.238.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9401:0:acdc::191]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor4ATL"]},"Identity":{"Case":"Some","Fields":["bam5DjdKx6NQ6x0gR0uvVkn1gwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sQki9f52/Qzvc4eg4VNUsx5BlEJSp7GWLu2AAXfArkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:34"]},"IP":{"Case":"Some","Fields":["107.173.164.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["bZz7PtdpQpcT8vKMgTADTO5mezI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnIgb1W/74jj3fqMq6rCfNirlYCsfKN/tNI1u7IsiLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:23"]},"IP":{"Case":"Some","Fields":["91.243.85.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::26e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SysadmAtNbg"]},"Identity":{"Case":"Some","Fields":["bZNQPhUElrsypJEvkExOLbIFJ40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dIYnFdvbV/mCl43lGbikX1qFcBEr7nlMet4MJrqMv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:54"]},"IP":{"Case":"Some","Fields":["91.45.217.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:c2:c70b:a800:329c:23ff:fece:a96c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["bXWh7aaVaVw5lKAAg6dRD4Wi7/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHKqPVNQ8YsH3ruaB73c+4wNvQaQ0XTmREzj6pbn3Q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:13"]},"IP":{"Case":"Some","Fields":["95.214.52.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bW7CouLti/8tSDT41mnYL8Kp+o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["38FtystG+NEr6DxSYdGQ8o2fEdn8ajLpI+RhTsxy2qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:45"]},"IP":{"Case":"Some","Fields":["185.220.101.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mnlabrelay2"]},"Identity":{"Case":"Some","Fields":["bV2kS2ZIYS2c3/i2nWQNhu+jggM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IybwbjOc/qDOJOTtSehKc/YsLOpu0mCu/rRXxret/FM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:46"]},"IP":{"Case":"Some","Fields":["49.12.224.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:6c6b::1]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Texas"]},"Identity":{"Case":"Some","Fields":["bVyuW4xpe5XY6fT+olZ/3tyZgLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wN0jLbUs19BVaJE33Q0uioyKhQeb9bjW6/qc3wjIBU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:49"]},"IP":{"Case":"Some","Fields":["185.70.185.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["bU4Qme8gjER5/2bL/mq5WjoxZp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TW75SlkYKy3XWi3NjVIroXl2cuubA00SByYMjESkCcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:48"]},"IP":{"Case":"Some","Fields":["100.8.33.13"]},"OnionRouterPort":{"Case":"Some","Fields":[49441]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange026fi"]},"Identity":{"Case":"Some","Fields":["bU1Rk6DikMAn/mtmcxEz9wlGoVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Hdf8m1tu/s/hHKjRdnBzZcqnR0l9tnjs+hV7I5OEB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:10"]},"IP":{"Case":"Some","Fields":["185.103.110.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu2"]},"Identity":{"Case":"Some","Fields":["bUNURg2Rc5TIK6cyk588xVibK+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0S6BG6IsExCviGr3AgIP5uL+yFojuGcSaGfsajv+K8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:31"]},"IP":{"Case":"Some","Fields":["65.21.91.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:4367::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeacLoveJoyServer"]},"Identity":{"Case":"Some","Fields":["bUBveCAjayr1FU0ssnAR6Bs5bBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJkPHk/hPq1sKecZ8CkA2WS0kGfKQdwd10RxTQrYC2w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:16"]},"IP":{"Case":"Some","Fields":["107.172.209.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LondonRelay"]},"Identity":{"Case":"Some","Fields":["bThlnBf2yRTksBfPPuneNjevgSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gd4JKBhrfId/Fnmr0j7iAWZjfm0J1dPy+8weEslp0sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:15"]},"IP":{"Case":"Some","Fields":["46.101.85.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["bRAO4gqDAl5ABcZVlz/1nfINkhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MyZxWH4Tho8/9Nc6Pj9Av1T46k3EBv7pk66fhXqO9cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:58"]},"IP":{"Case":"Some","Fields":["185.177.206.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::133]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bQ1hDWPTNYQwjKZySE2mmf8moqM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DkobXZHfki3RqvOIgDSlHhVuzTRYWSQBVs926gEDdq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:23"]},"IP":{"Case":"Some","Fields":["51.15.122.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1f0c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charpini"]},"Identity":{"Case":"Some","Fields":["bPxHtG5CqddtR7kR+3GeZTCAFO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7xBwLIV25IjZgUcREK0vl9o0xdW6jLPdhHN1Tupg4LQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:35"]},"IP":{"Case":"Some","Fields":["89.187.143.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HHrelay047HH"]},"Identity":{"Case":"Some","Fields":["bPBY8VcxbD5kMzj88OmwggoUa0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DB6zhjrtQaWzZrn7wNColWhDsaJyj416SJ2OyL7a8Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:24"]},"IP":{"Case":"Some","Fields":["66.150.66.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:1a:1::bfda:62dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Huntergilp"]},"Identity":{"Case":"Some","Fields":["bOMeUZbjlxmvDlUV7VlvI3Cc5ng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h8MtGZJ2eXW0LHRajHYVbHjve9jtFQCnafDnVSc6Dzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:28"]},"IP":{"Case":"Some","Fields":["82.165.107.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:68f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsq"]},"Identity":{"Case":"Some","Fields":["bN4zY/n5rVpupITe+1ghfMloXjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+a83zGHWNGD+gTdTmm/Dq8+5x6Rj72mQw39IBWgB4iQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:16"]},"IP":{"Case":"Some","Fields":["157.230.112.120"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:e0::374:c001]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["raptoractual2"]},"Identity":{"Case":"Some","Fields":["bMdEQA/Su0yBG3tYZLWx+qelYxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fdMgceW4jV31a6RDFWtiyzMlT0RCTzdmxCoKhEySfpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:26"]},"IP":{"Case":"Some","Fields":["192.184.162.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spicyavocado"]},"Identity":{"Case":"Some","Fields":["bLqQ4xGIpl4rasHuhBLo3lceytY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BL/tQFrIJSGk+8xcvU3bQ29zQBbBV5TtJogwr3gfDAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:21"]},"IP":{"Case":"Some","Fields":["142.132.204.165"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:50da::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra25"]},"Identity":{"Case":"Some","Fields":["bLGAmPUIGd6rIuNp7DpWYaVSpmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9IgKELEUQ+cKkcDUtfRwEVvMKl5rVmW7/taBqqorYog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:26"]},"IP":{"Case":"Some","Fields":["104.244.77.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["bKUbq5SEm5uTpdAzcjG0CLS1Nnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gssWFpKNkoJgjQaPHtvFdavuceAphcWaZ9H7B4VQBDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:20"]},"IP":{"Case":"Some","Fields":["23.128.248.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["bJXoGoa0jbg1rhQxJ3owExhCKhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlhDlnoc/86vsuIkFaKZ7yHxrCvbm4t6b+fQOqJctY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:58"]},"IP":{"Case":"Some","Fields":["94.16.117.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheEpicOne"]},"Identity":{"Case":"Some","Fields":["bIgGMLQzVFFASdz+43oF2Admpy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJtHkyxf0jmj1nNvnwMVNnk7DV6zlFR6IDPWlMqcvpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:09"]},"IP":{"Case":"Some","Fields":["99.47.29.66"]},"OnionRouterPort":{"Case":"Some","Fields":[2874]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EVILGRANDMA"]},"Identity":{"Case":"Some","Fields":["bIHq44QgvfwoDbhftwiVnM8EE8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByD2QvluulItBCHpuwbEgj3ae6Ay1D5kAO5mVWZP81Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:06"]},"IP":{"Case":"Some","Fields":["15.235.130.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bGl0ZEOPZN8PxWUbFnrDzqIxjdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6u3+tia5EiGaKLunnhCzid99lcJ8atPVVEq/bRtSzYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:06"]},"IP":{"Case":"Some","Fields":["37.228.129.163"]},"OnionRouterPort":{"Case":"Some","Fields":[49980]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber03"]},"Identity":{"Case":"Some","Fields":["bGQQDY9wUOdvQgzkBAMeq8cQESQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M89zixULOAuqLam7VloUORH9qurd2BSIrM0iif96MxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:29"]},"IP":{"Case":"Some","Fields":["185.220.101.2"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cerberus"]},"Identity":{"Case":"Some","Fields":["bGIMNcDqFmV5YIgt6Isolo68hok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uPaZ81iKSmcv6oZeJZOGDBp4bGu/MNUwyZMBMAX0C7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:24"]},"IP":{"Case":"Some","Fields":["205.185.119.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:ae6:e6c6:d90:fee8:5ad5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OdyX"]},"Identity":{"Case":"Some","Fields":["bFh1q5LIl50NZslS0BfphmFI3e8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["txJWzwncK8igjFApc5aakInVcKmjaeuneFskCDtb614"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:31"]},"IP":{"Case":"Some","Fields":["194.230.141.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uqtilephataz"]},"Identity":{"Case":"Some","Fields":["bEmq3qV9OdyP96d6oy8mj9xC4qM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vTbVx+dY8TIWzPlXCPWh6YNSahcbRoiZuos8yDFF3Pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:54"]},"IP":{"Case":"Some","Fields":["62.212.239.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charmingpi"]},"Identity":{"Case":"Some","Fields":["bEcT9SbSh3nX/P9P1A2JBEzhr04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tl0eV+Odx0viL2YgCShttHC5Gwt2FbKfzXwzX83vUw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:56"]},"IP":{"Case":"Some","Fields":["104.191.57.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["bEGwjnB2Yu60tDbwjLn5M31SCQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9bunH1Jq/+3P8zIzJQTqpDFOzLD1Xh3Z5x4KtoP07U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.54.80"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3647]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bDogiARF2MYhTQY/e+PV9cRMHvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nY4Ad+vATZHIMdlNhrLx/bF4PKBAlyaa7T5xNbHmPRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:07"]},"IP":{"Case":"Some","Fields":["45.129.181.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gensokyo"]},"Identity":{"Case":"Some","Fields":["bDVciWcLtzySpg/rEKbQS85y478"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1gZg/FUNHaW+DYgKX71ozo/7skBSKsuJGlWCgkKX0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:25"]},"IP":{"Case":"Some","Fields":["118.27.6.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8500:1801:403:118:27:6:60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["czechmate"]},"Identity":{"Case":"Some","Fields":["bDM7W9uj3+enguQMuXDCcav+0Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xaYPhce0TWxEJ7gn5OG1/lMBL8Xt/SOze0tqQyzeslc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:41"]},"IP":{"Case":"Some","Fields":["85.17.127.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schneewittchen"]},"Identity":{"Case":"Some","Fields":["bCgtNcZ0oDa3m18w6Q0Zs2PT2rI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8QuvSs3j3gwoLFTe4vujpeg2GS7vnTrrFrvUOFQcDNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:47"]},"IP":{"Case":"Some","Fields":["37.252.191.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:10:41::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigOnion"]},"Identity":{"Case":"Some","Fields":["bBsojYc8daaW63Dp/3E7eG030ZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CdukHPbW0x97IXUuz1J00QY7NS3GTh8OBYGT8O4vXAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:46"]},"IP":{"Case":"Some","Fields":["188.68.38.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:aeb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RespectHazelnut"]},"Identity":{"Case":"Some","Fields":["bBinbgX0SFtZ1ToEeGOvgWJUuWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nmlK4fKJpQOWg1xyGuRh8Dla3ivkTlcrTyF2FJXUpF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:29"]},"IP":{"Case":"Some","Fields":["75.164.222.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute11"]},"Identity":{"Case":"Some","Fields":["bBQ3IP/4Rp72pcW0BmNmNAz2wNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iqi72kHDZLaVOeZJ9N5hPstbUPN5WITjek8Aub8otXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:16"]},"IP":{"Case":"Some","Fields":["162.247.74.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["bBFGHhiWdLhqde/ioeKyJxOkbow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DV+3mIF7Qzc4fwyPgj4prS/UgUb1oKjPmi+ys8y0QYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:07"]},"IP":{"Case":"Some","Fields":["195.90.201.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:39::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra4"]},"Identity":{"Case":"Some","Fields":["bA5OIjscfkNm/6ujO/AzY2qGeGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DgKPyHkCh/myOfhakABxxitNxksHL7Br4En5jXvsPq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:16"]},"IP":{"Case":"Some","Fields":["213.164.204.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeProgramThink"]},"Identity":{"Case":"Some","Fields":["a/rmIrVcg702gC0YzE7x5h6BNDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WLFe3e5vHnxTD7b7LtMZNQPqeWcNLpM1fJrmADMt7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:56"]},"IP":{"Case":"Some","Fields":["209.141.61.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop5"]},"Identity":{"Case":"Some","Fields":["a/OofCG+7l6q+H3LNRGqOm9eMjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXgUn9Xev7Zlz5ZxH8yO0hShupp4BZXCHFEDmU/y4BE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:09"]},"IP":{"Case":"Some","Fields":["212.227.214.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tormaumauhosting"]},"Identity":{"Case":"Some","Fields":["a+WqNKXDkXJGd6P9wqp3s3aPbiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jGxsuI5HN0qwSxBSDYQAHj6RgMW5VU+Pz22KucFhs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:19"]},"IP":{"Case":"Some","Fields":["51.159.184.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:4137::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SteinchesTORGateway"]},"Identity":{"Case":"Some","Fields":["a9OhawoM/mST+ce0Ioz7GSRo84o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZY7XP4dP4fJ5PVUChQeGXSJ+wuqOUOGRWL0iHrYwj3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:09"]},"IP":{"Case":"Some","Fields":["95.88.108.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:810c:a40:3997:a459:62ff:fe02:9c60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["a8uWSrdOI/iYa9qQVpfTpr4Iryg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cg/xz/4+xizKyujeI8NgOq1e2qBPpWwEGP5Xie2+Ha8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:55"]},"IP":{"Case":"Some","Fields":["185.220.100.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:4::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ppebDebianRelay"]},"Identity":{"Case":"Some","Fields":["a8fUt4QtZUwqG6v6ygjSdVNHlOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WD7MhPy0UbIiVFIOY9kgK7hpSwHXKVEjpDKY7GqMuxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:56"]},"IP":{"Case":"Some","Fields":["97.99.232.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP10"]},"Identity":{"Case":"Some","Fields":["a7C8NQitTGvfNoa1ZgOeTkNciiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xHDcPj6Tls/0vfG4CgPPsdzpPcWzhtVTYb3ZeLIYJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:24"]},"IP":{"Case":"Some","Fields":["15.235.29.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raspitor2"]},"Identity":{"Case":"Some","Fields":["a52WXGFJ0J35cMHQhqyPV1ZD9Yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2u0Fm3lUMCUw09qnh6nTg436lTFE4H8NjfG4Obk3934"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:26"]},"IP":{"Case":"Some","Fields":["77.171.80.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:a461:156a:1:96e1:cccf:8a69:d088]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AMDmi3x1"]},"Identity":{"Case":"Some","Fields":["a52DhD29aG27gGaYm/zJAwP2ewU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vf7Cx4+NYfFh7NL+D1ReRrJol/kOBDntLlM2PuAD1cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:15"]},"IP":{"Case":"Some","Fields":["185.125.217.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:9300:d1::101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EnterAndBeFree"]},"Identity":{"Case":"Some","Fields":["a5Z5b6mEqtN4u9+WNhkTMPTpoyI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NgZ13jg8KJ1i/jJm5g0xMLH0XD3vCujWO8T3s8O0gYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:46"]},"IP":{"Case":"Some","Fields":["185.109.91.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slacknet"]},"Identity":{"Case":"Some","Fields":["a4jiD+6OtH8ajjAgfzJwBcYaAT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8en1mB7l0sBlBHuH0l2O3IH6KgNmoKaTnH76qAyZ5CA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:16"]},"IP":{"Case":"Some","Fields":["144.76.216.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:8261::b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv15"]},"Identity":{"Case":"Some","Fields":["a3ZKns7qp3Mv63TIOhPwfc6eAWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDZGMfUtC+Ifnl2YFg+bdvZnQa6wcX2Ge0VBfOA9Ml8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:48"]},"IP":{"Case":"Some","Fields":["162.248.163.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber21"]},"Identity":{"Case":"Some","Fields":["a3YvmNFAk+w2/VBViX5JMx5XnW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xmjal1u/KcIxKmFfwHfq7bUYqvhtvlL4ylGHnibN/rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:48"]},"IP":{"Case":"Some","Fields":["185.220.101.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::11]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["back2bsd"]},"Identity":{"Case":"Some","Fields":["a3KEekrKmQbu1GAsLjifK6t/3eI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TBQkA8IW7N3BWj5nxxH9ND+xLi7P/p8Yuiuij1EN0Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:45"]},"IP":{"Case":"Some","Fields":["213.232.235.83"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wts"]},"Identity":{"Case":"Some","Fields":["a24QWSW5Fkd0lGjiPn7hUAggHMI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b1LCSCdrGULIhvFvyqDBZZ2F1SodEE1cvxRzWLlTTj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:27"]},"IP":{"Case":"Some","Fields":["5.100.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip6a"]},"Identity":{"Case":"Some","Fields":["a2Hv467eszUf08kQRD2VVWMW4Bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gnx59y5VLoAwqV6SERZ31A5ICslOC7fGIPNm9EvIb+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:13"]},"IP":{"Case":"Some","Fields":["185.220.102.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::253]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1167"]},"Identity":{"Case":"Some","Fields":["a2EnEoFK7S8cMH3Q6H0sz1w95NQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ePA0nDG9SJX8XIlb86MO1x6Q2JpQN+DIL4fh5EYSkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:23"]},"IP":{"Case":"Some","Fields":["185.220.101.167"]},"OnionRouterPort":{"Case":"Some","Fields":[11167]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::167]:11167"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber14"]},"Identity":{"Case":"Some","Fields":["a168eFcuO12xmxOazh17/KLreG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+c9wOuwhe0qYomKBPy3syLiGmXHLH1RXwVp2EiFYU8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::7]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schattenbahnhof1"]},"Identity":{"Case":"Some","Fields":["a1Scu2FUI81X7O8O9KcgVP4IjCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyoUR0EsF9uGbYEcMWS+LpUM5UwPhCDJQelsF4Ao80s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:35"]},"IP":{"Case":"Some","Fields":["188.68.53.92"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e34b:7cf3:194b:368:22d]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["delfin"]},"Identity":{"Case":"Some","Fields":["a0rLcxn6yylJ1OuB9zxN7NzS37U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fdl3KArqdmhkke8eX2Q4YiZQ83As5rYitYoahOgutz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:15"]},"IP":{"Case":"Some","Fields":["109.70.100.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH110"]},"Identity":{"Case":"Some","Fields":["a0bnhEMeMJq6EDiPKP50Jca4Kvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eSOf/VIKAbNHQcQszOlg/z/JejIhtYJm/T+iKwyOzSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:36"]},"IP":{"Case":"Some","Fields":["192.42.116.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4icebeer35"]},"Identity":{"Case":"Some","Fields":["a0T15iVbNzExIzd4I3ndCC//4kc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CjSg5Cdt0EFhaBuTsGyf4BiT/bY97tiHQL+zCejVPQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:23"]},"IP":{"Case":"Some","Fields":["173.208.190.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8192]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tr4nquil1ty"]},"Identity":{"Case":"Some","Fields":["az4m51nZaPoZkKOQilqMF9G9dIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUsbqaLsAuRexdUNs9ky1eCAT8AtAKwDSLworizsyf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:27"]},"IP":{"Case":"Some","Fields":["5.252.23.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FalseSolomonsSeal"]},"Identity":{"Case":"Some","Fields":["azCcaawsYuWYAamhlnILXtTBgrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yob23vVpypT8h0tolfNwJiO+QflWwg0qhRGCY3G7rdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:30"]},"IP":{"Case":"Some","Fields":["51.81.236.225"]},"OnionRouterPort":{"Case":"Some","Fields":[56392]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ayzzHH+TUiS8IoXR+Kk6IIxxnEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3pMmpkpdnchnDdUOdTO16fPPOX7eIAR6Q9HtRh4WDWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:24"]},"IP":{"Case":"Some","Fields":["89.39.105.228"]},"OnionRouterPort":{"Case":"Some","Fields":[53114]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RndSmallrNode"]},"Identity":{"Case":"Some","Fields":["aysBDJ1fn7g/0np731EVyi8QcBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S56b8hn6ZvkI2gx2SXs/DD+YA9n6iXKuRLSe5EDMLPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:15"]},"IP":{"Case":"Some","Fields":["84.42.171.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParckwartAykut"]},"Identity":{"Case":"Some","Fields":["axhd7rJJ5Lphguygd1MMRemKbF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1uG2NBWJxy7K+YrSUe2SFJQ1/2nOj2gfx6TfSpLl6IU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:41"]},"IP":{"Case":"Some","Fields":["79.251.249.46"]},"OnionRouterPort":{"Case":"Some","Fields":[24107]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatarewedoing"]},"Identity":{"Case":"Some","Fields":["awKPWKU2akU0J/+z5pPkcOZDG8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SPscJk9ahtrG+tmkXqAatld7S4q0wyQpfqkdbTBs204"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:31"]},"IP":{"Case":"Some","Fields":["172.107.238.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ACABenterprises"]},"Identity":{"Case":"Some","Fields":["atsGPcMTszDSK61hxfo8A3xqhbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KxZCqGt+c701dPR4JPPN9kMsx0hGs10wbKtuRvtXfZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:55"]},"IP":{"Case":"Some","Fields":["50.197.11.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrphanOrOften"]},"Identity":{"Case":"Some","Fields":["atPqVbh8gJcfNT66cQ9lUCAqk1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bnz3ekV+1IVT4H8lsFTkHeEjpLcPC0qiJSReAdmAHdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:09"]},"IP":{"Case":"Some","Fields":["71.19.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:1:1008:bdcf:70a4:ad52:f4e8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cg7dXjHfQs4"]},"Identity":{"Case":"Some","Fields":["as1YTy+qddlezPVMpQRCK654pUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yv8SRV3X0qW/BPL9mrc0lWQOiDufwkAvo+5EP2P7p10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:43"]},"IP":{"Case":"Some","Fields":["91.170.133.183"]},"OnionRouterPort":{"Case":"Some","Fields":[39138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb08:8a71:f802:1e4d:8817:f93c:9b26]:46101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["asrsz1eMROqhYFnD5sIGz6aTPTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvKvVltnxufmW6C0cf50z6hzsyWTLbb4aK85OpI/TSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:54"]},"IP":{"Case":"Some","Fields":["213.32.104.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OgresHaveLayers"]},"Identity":{"Case":"Some","Fields":["ar/JBjGozaDC1D0maHjb+dxbpIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvHNIL5fVYjqXhScZ1edOrZzctREQOs/ybbutMvBv3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:19"]},"IP":{"Case":"Some","Fields":["104.192.3.74"]},"OnionRouterPort":{"Case":"Some","Fields":[41040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeryKawaiiRelay2"]},"Identity":{"Case":"Some","Fields":["aqnJ3XNAjdaOWjten9G1PCwZkGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A1xCQlkYMrQ3Ia2uID172NFfkZ5VG99v4QSSpllJ3n4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:07"]},"IP":{"Case":"Some","Fields":["132.226.207.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8001:af00:51de:63da:55f0:e2cc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortisserie"]},"Identity":{"Case":"Some","Fields":["aoTB20xQk0pX4T/H+T6lIXug2rY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pzoFe/wHkUKWJqoNah3Y9hyD7zPKUvVMPD/iy90lOJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:08"]},"IP":{"Case":"Some","Fields":["176.9.57.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortedabo"]},"Identity":{"Case":"Some","Fields":["aoQEEY3qKsh/MyZBmiG9413EP8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kMNwMPjcXak9uUiWg+TzJDhyIvFt1OXe+dLRgzT1xHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:39"]},"IP":{"Case":"Some","Fields":["51.195.29.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMachine"]},"Identity":{"Case":"Some","Fields":["anVR7uGPeKmBMJboK/hPdA0yuRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fGzGJjNL50fAMxFyFJ1dEQ4WYi70jSqjT20ncs93na4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:31"]},"IP":{"Case":"Some","Fields":["95.217.16.212"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:609a::1]:587"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frogger"]},"Identity":{"Case":"Some","Fields":["am9t2gwfB/7Doh5EAe4jUzbsbtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aRDgoTOSyX7IbVu/k5y7YzxYu2Z/OdHaAWU64mR0EV4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:33:04"]},"IP":{"Case":"Some","Fields":["198.24.168.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["amo0tV3xsKHZc3ZyHnZpomrNRHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w7mbSCJCszZWk82kB6Kqsdk33lzK1eNfgh3VCzfuWtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:45"]},"IP":{"Case":"Some","Fields":["91.132.144.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:3:e842:2ff:feb9:c49c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snub"]},"Identity":{"Case":"Some","Fields":["altlC4MPQIKG/4cHGNPQC1aLcEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3VFE0lwgyY47pqeUNNuuEkjVzahUflfNON1EaYoK9UI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:49"]},"IP":{"Case":"Some","Fields":["205.201.63.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fce8:1::74:6f:72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nnvr1"]},"Identity":{"Case":"Some","Fields":["akZonG52eGif/WUGyzm5ew9Eh6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OqpaKlVT2tlQCj+oAdP/IeDo4582eGLA7vbSKQ8tz68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:59"]},"IP":{"Case":"Some","Fields":["89.39.149.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ce0:61::4fb:0:2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maxomeister"]},"Identity":{"Case":"Some","Fields":["akEqCe79GRreTuSvC5hhHhChVAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuI8YPujS7VrTVtLP49IGeUEQw8Cf+mQrXfck3pSlTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:42"]},"IP":{"Case":"Some","Fields":["193.218.118.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::160]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["magritte"]},"Identity":{"Case":"Some","Fields":["ajZYcHWKHj56nuDoK8wNYiap6qo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pQl5toACHNrvjM44Yui0GTAPrdiGlVqwooARHYG20yM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:42"]},"IP":{"Case":"Some","Fields":["37.221.195.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:503:48d:bff:fe2a:1010]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ajL3S4UdKD2ps9J+qzDGMsVThdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ug5FxTBZLtllerEcEvkEpgBpJZcPOPgYa+ZO8zUD5gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:09"]},"IP":{"Case":"Some","Fields":["188.166.91.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangstatestOn175"]},"Identity":{"Case":"Some","Fields":["ai8MBVoc3nd0G6fZPY+uhWyG9Uw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GeJ1zk/GS7iE0utmyYbEah5iMCSvLp7TGs8Ot1pyrqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:45"]},"IP":{"Case":"Some","Fields":["31.214.144.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:6d::175]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurodump"]},"Identity":{"Case":"Some","Fields":["aiZ22sr9vQDFuUvTQ2kJV6Ert1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["neg92ALjaFrmZqKiU73zs9KyYhI9/Vacvcei2ZlNHKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:42"]},"IP":{"Case":"Some","Fields":["116.203.93.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:86ca::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infernx"]},"Identity":{"Case":"Some","Fields":["ah8EL2HkAbwePybt5yKr/mf+WQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5XTkQNZO2Y9Vr2Ihtvb+ttb6lWNvMJ4iWb6RDJlwnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:29"]},"IP":{"Case":"Some","Fields":["24.96.60.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["minty004"]},"Identity":{"Case":"Some","Fields":["ahr1xVmFoy5ERi0/XP6xcBQY2dw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bkxdxweif7LYyNbyi8efS4vn6Gv3exdrEYaO8x61U6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:49"]},"IP":{"Case":"Some","Fields":["91.250.81.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:488:67:1000:5bfa:5134:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ready1"]},"Identity":{"Case":"Some","Fields":["ag8ajc3BXF778wORFXigCaNtEe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oNcQOe0x8z2sJCepDqPRhBLvGOM6FLQHfPjIXO48TsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:24"]},"IP":{"Case":"Some","Fields":["174.128.250.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber63"]},"Identity":{"Case":"Some","Fields":["agEVDqsEAH4uCNnGA7FGcZOAWwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTSYxPOhjfQYuLv85D6U6//4MvkjrTZqbCwwirAxuMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:56"]},"IP":{"Case":"Some","Fields":["185.220.101.0"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4t01"]},"Identity":{"Case":"Some","Fields":["afi9QZk0FoUp58oVg5w4uRE+fbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pgy+jT1P3+Rx1EsVH8dRQoIDTofTqIlZbSMcBhmFdwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:38"]},"IP":{"Case":"Some","Fields":["178.63.41.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv22"]},"Identity":{"Case":"Some","Fields":["afg6FzcYRqC0unobjL0OHJueotQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+3+x6b2+dHC9h7AigeZhEkTr5bddN7ERkiWlu8fhCuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:24"]},"IP":{"Case":"Some","Fields":["45.62.224.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["afbH7TuA4Rcws8JZjjWUjoxiEns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["obB4RZaERz4EvSeHHu0L0cN2Du4yn42SsD4l4f/Hnv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:38"]},"IP":{"Case":"Some","Fields":["62.182.84.46"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Orodruin"]},"Identity":{"Case":"Some","Fields":["adnl8g/jsMhyk2veQdE2oPJNaZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["adkLkqIdhZg9wCMWoXIi2p7Tu+nBCIKkFFCnShAgWBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:06"]},"IP":{"Case":"Some","Fields":["135.125.25.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d1bf:b0fe:3472:9c9:60dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay22at5443"]},"Identity":{"Case":"Some","Fields":["adf++bACY5PC/XPol8ccECq6ylw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LRrW2vsw1uCYC6ex3PkmN0jPUl/oGk3tU1145jDaZ2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:04"]},"IP":{"Case":"Some","Fields":["140.78.100.22"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlvnCoAlpha"]},"Identity":{"Case":"Some","Fields":["acwlc19+ndPYicEb/z9pUBpSp34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p79vzGCGsQRSjLgdp7HDZhQv99eJMc35+o8ha+MoAFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:52"]},"IP":{"Case":"Some","Fields":["172.107.176.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["acm/oMIor6BUip/5t8jCKbaqn6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/3yAe0hTTZvXl2iUUjKNArrS+6/X+l6KYDO69yLnif0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:20"]},"IP":{"Case":"Some","Fields":["51.159.158.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fortherepublic"]},"Identity":{"Case":"Some","Fields":["ackSU8+rViOebD71WBYJxvH/i5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HZsB1LQE+jJ3oETpXLmTaRA3TqtAa6aQHM26OJWCd40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:18"]},"IP":{"Case":"Some","Fields":["148.251.191.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse02"]},"Identity":{"Case":"Some","Fields":["abU6WuUCXaiUf3wy9pypA3XtKk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdOZjOyj56exl1VhVDiWH1bur54Hu/sPA8/GzaaABNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:35"]},"IP":{"Case":"Some","Fields":["185.225.68.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etai7ieHaigh5Hug"]},"Identity":{"Case":"Some","Fields":["aabfaBtkmo5KvXr56IP2GEJvLCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJjNPXGY45xnOmx3CH5WJWyoTMHU3nd7CoOZctWnE0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:19"]},"IP":{"Case":"Some","Fields":["83.250.228.119"]},"OnionRouterPort":{"Case":"Some","Fields":[5574]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakeSARGE"]},"Identity":{"Case":"Some","Fields":["aZcBPLd7b1MFQDMmJsI6z+UsUJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEqDiE4/xyzVSiCVv4Qekhfv+w1oeI+8euSd+bgkoMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:36"]},"IP":{"Case":"Some","Fields":["5.199.162.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sovereign1"]},"Identity":{"Case":"Some","Fields":["aZZT5d8JS1Z3UnX4pPS/p8W9Xi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kndb+FzVXIfTTA6C2aqgCSV5aepaHD9wHJzySJGVMH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:07"]},"IP":{"Case":"Some","Fields":["178.170.10.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::506]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greenlantern"]},"Identity":{"Case":"Some","Fields":["aYuHCM9OoC0nygknTzNRtPZqWDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYNHGufEQBNM7PVmvkW5gdBDAsmA+RFgw8A6kt/Hn00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:27:42"]},"IP":{"Case":"Some","Fields":["179.43.158.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2lhvmct"]},"Identity":{"Case":"Some","Fields":["aYLXidOHXCFDPW7hCDisX9xrqCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gnG3CxJBSnkoc/Q1s1EARYd8e89Q35Pb9gR+znzzqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:14"]},"IP":{"Case":"Some","Fields":["78.31.67.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc12"]},"Identity":{"Case":"Some","Fields":["aYDG7aQduHLMrL3bIt+sxmQnRuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r5K6k5uWALUUPeuEx19TWg2Fa/RFIzYp5UkGkIssFjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:37"]},"IP":{"Case":"Some","Fields":["185.100.87.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgUK"]},"Identity":{"Case":"Some","Fields":["aXTR1l5CF283nlQ65XiN6FWZ40s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWdT8z2XkOR+8eAn10fG9L2wjcyBSzC/dLd+ZHfRxr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:50"]},"IP":{"Case":"Some","Fields":["77.68.29.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["aVSNT1EjqzmAjMnjtOXBw2M1M1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWGN42ks39MfCRMEcyPCrsh/HcjXUge9TorPfY5y/QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:09"]},"IP":{"Case":"Some","Fields":["163.172.39.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tron"]},"Identity":{"Case":"Some","Fields":["aVKmx6E3u63MtdxGmwpNBkcxLlM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WabPDRRRhzrLmR9iEU3oW+WDqrLb1knSRDXPtcq3qWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:23"]},"IP":{"Case":"Some","Fields":["192.9.249.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c001:207e:2b71:7031:c7c7:abec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["octavsly"]},"Identity":{"Case":"Some","Fields":["aUlwNmUxiVMSB3RrPQ5Oy1aIjzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VYt70xBYycs3p5Y5+4tlxYjAauGOt/Fw3s6x1SHgkN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:18"]},"IP":{"Case":"Some","Fields":["82.168.32.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor"]},"Identity":{"Case":"Some","Fields":["aUAkfgTIOdJoVD5/YlZqkeQFZ+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e6x9IhCQwoZxG7LAIOoHn+L7+eYJwdsRMQzZ6Vj8JUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:06"]},"IP":{"Case":"Some","Fields":["136.243.229.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:ff99:0:c:1337:ffff]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["m1an"]},"Identity":{"Case":"Some","Fields":["aRbXEyuwN2WAkUeGfjMDU41Ks9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LFJkCb4xozW9a4e9cVlPz/5WeGPvKMuzrdNRF3BzxEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:34"]},"IP":{"Case":"Some","Fields":["178.254.38.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:382::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["URKIGOM"]},"Identity":{"Case":"Some","Fields":["aRIiltN/x9M4dT4+wZvGZqEFZqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlN50kdh4ukgPORPKtdxuuzgqiqUSI37AixWwZ8zocs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:25"]},"IP":{"Case":"Some","Fields":["82.165.67.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:80b0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomretorng"]},"Identity":{"Case":"Some","Fields":["aQ2kLJxHV3o4M5TOSvYb5iiCTiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL5u1on2a/qbJVmkv53+KnO75um1iWNFWNrhz6Kjzjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:35"]},"IP":{"Case":"Some","Fields":["37.187.138.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["aQQtazAfCAEF0RR4pbyEjrC11ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HUYXZPM572GY26sqcSii9SCDxRoRSx4Sg6uGN2V5ZH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:03"]},"IP":{"Case":"Some","Fields":["185.244.195.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:747:4804:22ff:fe7a:e606]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor02"]},"Identity":{"Case":"Some","Fields":["aQQtDcM72BC9CK2tvH6Vo8q672Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlB/P1jUtWaro2fRV/q02p+M205OCr0N/RTvf09qOpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:50"]},"IP":{"Case":"Some","Fields":["192.210.233.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etam"]},"Identity":{"Case":"Some","Fields":["aP+l42uVJXb5NODAlC8+Z7L9IRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HH6gYL9c5Swp69POSMWPBQmPjG9lBm+7npSgPvsyjZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:18"]},"IP":{"Case":"Some","Fields":["80.72.43.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c90::25:2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORminion"]},"Identity":{"Case":"Some","Fields":["aPvnKw1BHDFOx/Jyy1s/FMJCkkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M9JeNzH6K6s+wY115KK/OOiAAZLxnnmeOHjzanv7cCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:01"]},"IP":{"Case":"Some","Fields":["195.154.255.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Caribbean123321"]},"Identity":{"Case":"Some","Fields":["aPmqLZvTCT38MPwtyVbJiUeEo/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BnisfzM01Kw0AfDilovjcTgmlhKw1mRoQUxMvpsLbYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:42"]},"IP":{"Case":"Some","Fields":["45.79.158.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:93ff:feeb:5a7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pichincha"]},"Identity":{"Case":"Some","Fields":["aPF1zKvnJ6otIwm82HiUmc7jbtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7aldw47rMCx834bwYfGEoiaBfkkxUNwml4WmRil7vWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:53"]},"IP":{"Case":"Some","Fields":["163.172.139.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip2a"]},"Identity":{"Case":"Some","Fields":["aOxlfcilh7ONXXdj1ccuk8LNRWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DjjtMYTjsAOTU/J60Fv2NlpMAMISBm2Z87GDaYIMsLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:15"]},"IP":{"Case":"Some","Fields":["185.220.102.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::249]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sFtor4"]},"Identity":{"Case":"Some","Fields":["aNKr2TYjOlaeK0bWIogWFJoWtPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yyYp3A4haKibKWtQ5wuJdOZlCiCEJ3eU3stgjG6vTN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:40"]},"IP":{"Case":"Some","Fields":["88.99.31.186"]},"OnionRouterPort":{"Case":"Some","Fields":[34746]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["aMO1QOXRUUYaN8se2ShWPsO2zcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vypZHwE+v3kvicmerMpjABGT1Rnr9rxJUbM0OBKC/x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:51"]},"IP":{"Case":"Some","Fields":["188.68.41.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vpskilobug"]},"Identity":{"Case":"Some","Fields":["aKnw3/x8j1ez3qOAHWzwAWUqgJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UOqeKt6zrRqA39j1mgWe+wivNtbVmpY7rFVY3YzeVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:57"]},"IP":{"Case":"Some","Fields":["213.164.206.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["aKVOGA93iv6Wx5BqUose/t/UKkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9gmSPz3QxvIsoy6re7IYpiGtEIAnETOgAC6cZn+A/LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:27"]},"IP":{"Case":"Some","Fields":["179.43.159.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thedevilskey"]},"Identity":{"Case":"Some","Fields":["aIPHH6t1fmRz84JiSQrkNv/R6Og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ojjK7r30h1vclbVw59/gJSEVM889dsfcU18FXQ/urwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:18"]},"IP":{"Case":"Some","Fields":["46.105.54.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CompassMetal"]},"Identity":{"Case":"Some","Fields":["aH0Dwtvf8KnJ6PZFFRg60iZr4Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsU6R/g5PUbE5lj3+sdFREeTB6XnHIYVIIar0C6ZFk8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:05"]},"IP":{"Case":"Some","Fields":["37.120.187.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:80e:4860:48ff:feee:9d88]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit9"]},"Identity":{"Case":"Some","Fields":["aHhUHiYTlG3OHkVDaRkCY9RzunM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdXBi2tzo3haWaHGELEFcmnP1m8G9ThAnt0BIkDMFIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:09"]},"IP":{"Case":"Some","Fields":["185.129.61.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kyu"]},"Identity":{"Case":"Some","Fields":["aG7sO1EFi4JDCTxN5HMZIyy/3MY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eAC8rai8EGPKbrP92E8++ds5ZzObmb4VXH568Ck2lrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:00"]},"IP":{"Case":"Some","Fields":["188.240.210.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:c1:7::fc6:f87f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tortule"]},"Identity":{"Case":"Some","Fields":["aGxqdE3Z16DAfP05W0WnILfHR4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qx0Qf0RfjIw53NEuq0wgQIK5lVYxXw3WoVvWktgrpoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:57"]},"IP":{"Case":"Some","Fields":["109.130.20.208"]},"OnionRouterPort":{"Case":"Some","Fields":[60501]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Plutonium"]},"Identity":{"Case":"Some","Fields":["aFnXHj4TI/lZ+eBVnoOpCIxGJoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k4RvSFiC/rKKAein9JDTcBhEjxRGaYNpod7xuOXGUTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:38"]},"IP":{"Case":"Some","Fields":["23.137.249.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:1fa2:23:137:249:143]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nevrlands0nWgcTYg"]},"Identity":{"Case":"Some","Fields":["aFa8nneq4OcsTg+PxMjhutcAf5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1N6TWhmmATUrd7DEM8eMs9GrMxSWjsvUcnE6x8Lj58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:57"]},"IP":{"Case":"Some","Fields":["89.58.27.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0147"]},"Identity":{"Case":"Some","Fields":["aFS+H/Z2BuKLalAMJb48/OT1PdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zasb+FCbMljM1uvP4hQTCJRbJrk+XYBDycPmH/48rYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:11"]},"IP":{"Case":"Some","Fields":["185.220.101.147"]},"OnionRouterPort":{"Case":"Some","Fields":[10147]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::147]:10147"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nixytor"]},"Identity":{"Case":"Some","Fields":["aDpC79TWULg5iECjoZyjnNlhx+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OzZ4qMJ1uLHQhCyjGacmA31M236a59ArOI4KPglgWtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:28"]},"IP":{"Case":"Some","Fields":["45.79.144.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe24:47be]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CytraNet"]},"Identity":{"Case":"Some","Fields":["aCx4MVdXXWDWV/i2BSvMjnhUGCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["08BHyjoklf5V3oYL6yPWcXOEdgLQjYwdCnzLSWGHpPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:26:37"]},"IP":{"Case":"Some","Fields":["162.251.237.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["aCfidzuOtLeGC3d1qQup1Y1Ho/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FqGDyl2hXAP2yq/kzgdCSo26BCUmL1lG+UG3zgV93Bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:24"]},"IP":{"Case":"Some","Fields":["23.128.248.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer23"]},"Identity":{"Case":"Some","Fields":["aCfB6bsFCVeLUocZkLPQZ1hq7/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x19Q6bvahXAVwpS2lscusz07SOGP5nJODoMG9R0iFYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:03"]},"IP":{"Case":"Some","Fields":["185.243.218.46"]},"OnionRouterPort":{"Case":"Some","Fields":[8154]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:46]:8154"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a9"]},"Identity":{"Case":"Some","Fields":["aA8hKt4jMRxljMVg2vgNtC/rhd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YkxXNZ+gsxTaa/k2MSY7O3CrAjprTmycp/z2kKBgQIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:00"]},"IP":{"Case":"Some","Fields":["5.9.12.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:160:82d4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi"]},"Identity":{"Case":"Some","Fields":["aAW9inFLpbW2yEMkfgDtjtV/YfY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PbEuFxxxmJP9cIOCNkWW9Vi5FV7yp6zuSDgYkLpcUYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:58"]},"IP":{"Case":"Some","Fields":["46.28.107.138"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:0]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4punk7e2"]},"Identity":{"Case":"Some","Fields":["aAV/0wKw+DwO0AttcP2ta+7yAFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjDTkop6xcBJ624o6q7Fbu06FEwQfFZ9hsyC0L6Okpc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:01"]},"IP":{"Case":"Some","Fields":["193.31.24.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["getrekt2"]},"Identity":{"Case":"Some","Fields":["aATUElW2X3DNN9/07/Obrm6u6sg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+I9YDNMM0NpVD/Z3rP42AA+4GVb1xpMP193fZqZFiiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:38"]},"IP":{"Case":"Some","Fields":["37.120.137.217"]},"OnionRouterPort":{"Case":"Some","Fields":[25263]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eatMyCannoli"]},"Identity":{"Case":"Some","Fields":["aAKx96rcFp3YZ1Be934QOqKprvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yhxUk7G3nMWjxnCVlmjAxfIU1TS/r/AjdQ96dIzkV1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:04"]},"IP":{"Case":"Some","Fields":["5.13.201.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG2"]},"Identity":{"Case":"Some","Fields":["aAFqmsR3rgObjuB8Nsq8BEASamc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ovF8fYyEnyWwFJrRGbbErJtkRUpmyyhGwArk1nKtYGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:51"]},"IP":{"Case":"Some","Fields":["193.189.100.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::195]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hubble"]},"Identity":{"Case":"Some","Fields":["Z/WsNduiDSKgF4v7b0rAdsOxaCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AOLr/2dYPdK7TJaReF4z4EDSuJ3ykg0ybxnBbclCMbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:48"]},"IP":{"Case":"Some","Fields":["72.89.32.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet2"]},"Identity":{"Case":"Some","Fields":["Z95ychWc/mKM3xfSpxmm45W6pMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gkCSwfhHajCpYtfBNnpcytLBWYwl7/n2K+YVGFGT56E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:04"]},"IP":{"Case":"Some","Fields":["185.246.188.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:3:19::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlockHouse4"]},"Identity":{"Case":"Some","Fields":["Z9HYhb+IuvXcbTHO6IGOxfvjs9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aQOp+NUmlSs31xmveL+tSkmd2yjM5B0pxedW4vQzkT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:31"]},"IP":{"Case":"Some","Fields":["130.61.98.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["khao"]},"Identity":{"Case":"Some","Fields":["Z833pNBumOVarllbvr845kxMy/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ODpSl5DUN42wPWUgG75IVZKAGFxolKVyL3+J3czqNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:16"]},"IP":{"Case":"Some","Fields":["87.236.194.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rotkraut"]},"Identity":{"Case":"Some","Fields":["Z7dR/xVudva3Fb26LyPPLTvkPPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["py2mcnrPUH3UmMFeZhqj2Qe213d1MoGTOYZZ3VrLO+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:03:30"]},"IP":{"Case":"Some","Fields":["109.70.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::7]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckfbi"]},"Identity":{"Case":"Some","Fields":["Z6VO232t27weigfx74I2S9qolrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jk8rhTSvpTzZch3KkJt+zQKr50/F/OA7j80oFggB1Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:18"]},"IP":{"Case":"Some","Fields":["148.251.51.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:1139::2]:9993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["420690RelayOne"]},"Identity":{"Case":"Some","Fields":["Z6BQsoVQOvE9Oc+1Bqkrh+h5qlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mrCk8M2r2qbazFvBlh7Q+o0EkRabrNyl20ut/y74cZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:42"]},"IP":{"Case":"Some","Fields":["208.87.135.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:10:0:1:43:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonfrazUrbluu"]},"Identity":{"Case":"Some","Fields":["Z5blMWBxTZCLObywBYz0iP+UAzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v2DpJwKA3PrrcQBwI4AzDHG0RsxXCozEkySegwNoknY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:39"]},"IP":{"Case":"Some","Fields":["185.220.100.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:6::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyPiRelay"]},"Identity":{"Case":"Some","Fields":["Z4xGdle8/u1MPVsSgzJmwXyx0ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UE5YgcQOO85FU+bW7NpCxtOmEP0tYaz3PlNbj+7N8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:17"]},"IP":{"Case":"Some","Fields":["85.228.41.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["abnormalbonus"]},"Identity":{"Case":"Some","Fields":["Z3NHRB/dKuoivTZKcXTSd+kpslU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYIzoaVr57QSI8BmYBolptZZR/3Lq1YNr9eLIoOrGhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:35"]},"IP":{"Case":"Some","Fields":["194.180.191.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde5"]},"Identity":{"Case":"Some","Fields":["Z1z6w4vjyaJsOi3Xy8DmFvaGJMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1O1JNE233TqnOf8pTHBQW/kEv3jdTK9chc9cX0BRZVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:15"]},"IP":{"Case":"Some","Fields":["136.243.60.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:212:1b8b:3::8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torshark"]},"Identity":{"Case":"Some","Fields":["Z1ScdD63qdBqdeN764JBfrsi6X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HAnnDeUIc9nQGsg2o5LqPZgr8tL8bQejE78IiT+buNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:27"]},"IP":{"Case":"Some","Fields":["195.154.252.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomHub51"]},"Identity":{"Case":"Some","Fields":["Z1GsD2/BHbX6jLL2DPUU9H6SlwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCvahebX2/7jB/HUNSQoYyhuxzvN684+Bez6D938NrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:34"]},"IP":{"Case":"Some","Fields":["95.217.14.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3b44::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mainframe"]},"Identity":{"Case":"Some","Fields":["Z1EOU0GRyRFfCAxFZbLx80jN+ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SYZfRx/yiw2ebVFlaeKx88W/yBG69u23GOQZd0nbyOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:53"]},"IP":{"Case":"Some","Fields":["79.201.240.5"]},"OnionRouterPort":{"Case":"Some","Fields":[24192]},"DirectoryPort":{"Case":"Some","Fields":[22154]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Z09m19jG8N+Zl7PJQjqhU8mI/nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEIEZdmY9zAeHrYuE0ZZMG03G0h/MdEYCls4xCTPYkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:46"]},"IP":{"Case":"Some","Fields":["185.220.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::200]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex91"]},"Identity":{"Case":"Some","Fields":["Z0i6UxCXqTB3b5DiC277o1GaI8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzxVNJlNqEONIIrJf8heTipgHEGsW0dyWme0aXSmcZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:04"]},"IP":{"Case":"Some","Fields":["199.249.230.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::180]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elc4"]},"Identity":{"Case":"Some","Fields":["Z0KzTnNcDd1nuQkg7yiBlzi2PsA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+32In4WjIsPNNP0edTidnPUVHihUK4GoaLMFDm+wDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:30"]},"IP":{"Case":"Some","Fields":["176.31.35.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:522c:24d9:6a97:78db:2bcb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute20"]},"Identity":{"Case":"Some","Fields":["ZzwIGpUC1dOrk5X/QlcnS+THqKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5R0eh84EDHUnbDO4cjnMc64xWlEGiWHVmWni651kZHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:23"]},"IP":{"Case":"Some","Fields":["185.220.103.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Zzq1sQHHrrQE8Q6d9ig8UN5Owvw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cBNJtUtPVenWcSYGEHlBVGiUr3L7GdlwvvLPWhVsfW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:58"]},"IP":{"Case":"Some","Fields":["46.227.68.55"]},"OnionRouterPort":{"Case":"Some","Fields":[17497]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recklessbolter"]},"Identity":{"Case":"Some","Fields":["ZypWpYPGWDcuY6zrQ+f3kcKBlUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yv+3A11/pfQBm+6u1qpK4QcQBLnp9gPGWHj0aK0sUTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:57"]},"IP":{"Case":"Some","Fields":["80.253.94.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BKDRwUuF"]},"Identity":{"Case":"Some","Fields":["ZyV8otPvcnroM5phhLHVaz/bL7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQ3m7TOJ83rRNdsX0nW3KkOGK6Pka3l24DPfDqs9sck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:03"]},"IP":{"Case":"Some","Fields":["82.64.162.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CaptainMarvel"]},"Identity":{"Case":"Some","Fields":["Zxpoq62hQC+wBnYFX0jqEjubBgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nL0DmbQldrk3AgbV5c+TstGECQGhP9GHDtWqzaiOx7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:44"]},"IP":{"Case":"Some","Fields":["212.162.9.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node3"]},"Identity":{"Case":"Some","Fields":["Zwx1F/hSXox4edbdd3pbZkdbgEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["revdlcSdQzNZSi9c5eoNwg2p/McPZ1wSRzzCTzd5/co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:22"]},"IP":{"Case":"Some","Fields":["141.147.62.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:7b4e:e634:7e58:3aaa]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FTMNET"]},"Identity":{"Case":"Some","Fields":["Zvn9uINrvDtENqCNVoMn0b4JINo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["09L8/1U4XtuYMXu4H8jAYGjWrk5aBqEg7myANhjZ9fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:35"]},"IP":{"Case":"Some","Fields":["94.238.241.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH116"]},"Identity":{"Case":"Some","Fields":["ZvhaY3+yn6kJ8HfH8QpoVAI/iEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXKcMLSinWqyLN96oZlIr0/ANEO8+/xxMXjqtBlEfew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:23"]},"IP":{"Case":"Some","Fields":["192.42.116.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jehovax"]},"Identity":{"Case":"Some","Fields":["ZvdB9TvlEkOEuneJUVa26ZdtP6Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/ZPBScYYUUB9FgnQQLDuNzHM6557l96OHPhi9hXXz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:30"]},"IP":{"Case":"Some","Fields":["5.2.76.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt56166"]},"Identity":{"Case":"Some","Fields":["ZvRcnLkB67TPJDcKpWomJVB8yVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9b5qoE33yR5Q3KeoL5YBrVnlPfB3NsDn06vT7UqRkg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:22"]},"IP":{"Case":"Some","Fields":["185.245.60.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex37"]},"Identity":{"Case":"Some","Fields":["ZuGejEdzCG9mmh4Go/jCO2wHkSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jcjh4STvjI69BvS2uLjmU09+2Z/Tgb0hunHpVoIewQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:58"]},"IP":{"Case":"Some","Fields":["199.249.230.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e656]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Seccom04"]},"Identity":{"Case":"Some","Fields":["Zt/FHnJOON3LOrZ930wLsPH0nAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ki2MHufPOPbiQMOeW9Mi2t48thH3Zf3NGAn1ueF38Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:37"]},"IP":{"Case":"Some","Fields":["51.77.111.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:1000::db0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ZtxyZm57+OPn6z6YDU4mXFQ1r7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EU2LBRhgV/SBzZN9KvI/TO1XUHMGYL7wpuTsaGoAm2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:46"]},"IP":{"Case":"Some","Fields":["185.220.101.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::32]:10132"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EFlat"]},"Identity":{"Case":"Some","Fields":["ZtuDEYUFZT5xEMRSDfFDtbc2WK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gvv5ImGm/m/4US9y5MpQiYIUmQL7LgHoDnStKDYQlN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:06"]},"IP":{"Case":"Some","Fields":["51.195.166.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["globohomoEvader"]},"Identity":{"Case":"Some","Fields":["Zs74BYlZNqpVHgWpQjTLmlmYGvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IUAHZS437RL4t0Nl+tmpN+k/1hsZg04vAgY53mYUC8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:02"]},"IP":{"Case":"Some","Fields":["86.128.226.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c5:ed96:1501:6066:7572:d5f3:6c2d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kbtr7lv"]},"Identity":{"Case":"Some","Fields":["ZsEC+l3fSMnu6wSMFjCTO2bFDsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vRK1U2gvzbwsGlhh29nYgNaaxgBnpF4VGK2KO6n3HzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:57"]},"IP":{"Case":"Some","Fields":["94.140.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hilda"]},"Identity":{"Case":"Some","Fields":["Zr05/oBa7UFK3kAMqthiycw6w04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DPK8HhOT6kNfEgkk2wbXC2iB+12b2Wfa76kXjuDj5qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:35"]},"IP":{"Case":"Some","Fields":["109.238.11.185"]},"OnionRouterPort":{"Case":"Some","Fields":[51101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f12:372::2]:51101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor4"]},"Identity":{"Case":"Some","Fields":["ZrvNDVj9uJGths4iomE6m+48onQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iSSBOJGuDWmfOf02wDmbqpJr8wvClAVs6TRhZKF3js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:06"]},"IP":{"Case":"Some","Fields":["51.15.113.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:935::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedcDc"]},"Identity":{"Case":"Some","Fields":["ZrrEiL7iBGX1aek0PUQcthldesI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xSIykaJWqva6gjOD6Ov62IVTkiGp/AHbTf8pBPKfMLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:03"]},"IP":{"Case":"Some","Fields":["23.154.177.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daytoner"]},"Identity":{"Case":"Some","Fields":["ZrBtWb38kOvG7eecVYJ18s1HmbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9XJqLCCwPLKymUpvR/7QmlJBwVTAQ0KKdM1+mdjAwgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:56"]},"IP":{"Case":"Some","Fields":["212.74.233.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AxxoCentralRelay"]},"Identity":{"Case":"Some","Fields":["ZqtcDJYifhac9VdsAL8adHacP0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+FVsUoVkShXmjnpGcrBFJyqCrQXuAkrnESE0MhAtTJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:01"]},"IP":{"Case":"Some","Fields":["85.239.33.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5140::153]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HRMB"]},"Identity":{"Case":"Some","Fields":["ZqmKUkW2s/W0FA4E+usSCF/GpQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6484p5qmikAqspwGSLMPXBW2KqT6qXnHhbRUKBZr4MQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:56"]},"IP":{"Case":"Some","Fields":["94.130.239.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:110d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionsalad808"]},"Identity":{"Case":"Some","Fields":["Zp+7+V0nPb02lrZjegbhK4sYQmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dWS+OvaYJ+ERIx5ggMAckRVYNR7M5yHes3hrS5iDT/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:59"]},"IP":{"Case":"Some","Fields":["5.147.111.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnMyMomma"]},"Identity":{"Case":"Some","Fields":["Zp84sFmCUOJeIhvD9meC6NXmaa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tiqqU3mqcj9Rb4gMBQ7wXVa3JQMTf0IQepSm+HLUa1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:44"]},"IP":{"Case":"Some","Fields":["45.139.122.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justanothertorrelay"]},"Identity":{"Case":"Some","Fields":["Zp5QNLbeLix8+8+erI2fWkd1eZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["52KLeNfpkUe8CIZTeovcCK/BKuOWCLE6BBjXv70vLO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:59"]},"IP":{"Case":"Some","Fields":["93.180.154.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::1d4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZpE5yMkAAtxaCyQftDKQxVKI64E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GJp0QXXfh2XMYL+YJXDDxTfp4X2SO+OO0Rc70zfy9DI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:39"]},"IP":{"Case":"Some","Fields":["150.43.61.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quiv"]},"Identity":{"Case":"Some","Fields":["ZpEC5vqOEWrAX+gjsGNLREmZROM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SCfvu6Qkfj4jYeOrlroWCSom1aGDSPzj0kHHTngvyMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:58"]},"IP":{"Case":"Some","Fields":["94.100.6.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["getrekt1"]},"Identity":{"Case":"Some","Fields":["Zl09NDizJqUZbK0xP5VKj+DmP+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fx8/of4+2ibhUbTOfXw1TL6YJH96+jQvrbRmjerdQDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:10"]},"IP":{"Case":"Some","Fields":["178.254.40.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tainisia"]},"Identity":{"Case":"Some","Fields":["Zi21Ulgca2yALxgvF+vUvMNZASE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LqGoH8sJ1Dww38/NFi3GsPin53uftubqRz/jOtTqCw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:12"]},"IP":{"Case":"Some","Fields":["130.193.15.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tacklinfuel"]},"Identity":{"Case":"Some","Fields":["ZidLtIOD+ElDAzmS4hgN1k4l9QQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m2lZvJUEv1SxsfnGLzHlbRckYVFTnODHxFHACAXnQig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:40"]},"IP":{"Case":"Some","Fields":["104.225.218.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:1:0:1:1df:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber16"]},"Identity":{"Case":"Some","Fields":["ZiTm4MV6Y7aG1FFQeH3VbD2e6Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdPtVA8bFyOOub+13ISpSHd38RBgj9oz4nizgcGj6C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:26"]},"IP":{"Case":"Some","Fields":["185.220.101.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::8]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ExwMiaTigriMesaMou"]},"Identity":{"Case":"Some","Fields":["Zh4IU0+r2+CbpQX3pzhINxxu9zI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A1iJwu5Z1mLEsRawYRXbDQSTVfBbSYcZiqJDW1JH2Gg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:45:46"]},"IP":{"Case":"Some","Fields":["83.212.72.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:648:2ffe:501:cc00:10ff:fe8f:490]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["ZhDcGvf0YY9br7zcqHAncrJBG3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eW9vvJvgADkTwP68Q33+US1bBIuzbLzVvSZyBBF4iUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:08"]},"IP":{"Case":"Some","Fields":["23.128.248.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::227]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stimorol"]},"Identity":{"Case":"Some","Fields":["ZgDFYOfip2Afb0sBmULJ5NR4cs4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlhWrpK4AxQ6TrWzdA60r2ZWsuIgXvC7aBuN/mPuuYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:59"]},"IP":{"Case":"Some","Fields":["185.236.203.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse03"]},"Identity":{"Case":"Some","Fields":["Zfhv2LksOsAYh9hrIXHmV9XBn3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K+rwXWV+QdW2Q3UucyTeSVGhJTp3FzP/IWWL3F8Exe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:46"]},"IP":{"Case":"Some","Fields":["90.146.176.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schnurpselpeter"]},"Identity":{"Case":"Some","Fields":["ZfOcoeTO9LtepdJvaHWZIFr2FQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aNMs4MCbu5ALvt1x0je7sk0ak0IsyBaIq28+B5fQ3rI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:16"]},"IP":{"Case":"Some","Fields":["87.106.229.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:61::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emankciN"]},"Identity":{"Case":"Some","Fields":["ZfJP6n5TFRvM3C+lRkUwBhhd0GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lZg0HM20SmBU9hHjDG9Tl+QF8aNvXI6uzNujgsTRric"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:57"]},"IP":{"Case":"Some","Fields":["37.75.112.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow006"]},"Identity":{"Case":"Some","Fields":["ZebrZ2YzMoreO9MWilkTTN3SHhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DD2VuuCj2yiu7uefmUEYHzXR6gXUqz0fUNM7p9kqNTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:59"]},"IP":{"Case":"Some","Fields":["185.195.71.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fangio"]},"Identity":{"Case":"Some","Fields":["ZeQPft0o4s8oaE4w4Lq3cGgZz8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YqvZRbCmu221VC4JHU2dVcU1dilNk+B8mX+ZSyg9qJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:43"]},"IP":{"Case":"Some","Fields":["179.43.169.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORRelayCAN"]},"Identity":{"Case":"Some","Fields":["Zda/sxl2LzSgFaXGieVuZUS8elU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le9rbGroI5J8uY76rBWqevDxN7hWTqHi8qWgQWb5um0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:10"]},"IP":{"Case":"Some","Fields":["192.222.169.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayTexas4Tor"]},"Identity":{"Case":"Some","Fields":["Zc1F8/q2zOjXGlqdLuAQpSs2kGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ooOmL9eqoLmtvsSZi1Itp8wofuCZbLYzALMjjP0BHKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:29"]},"IP":{"Case":"Some","Fields":["144.172.118.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:34f4::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZbyluV02MXca81jMc5M/hbaN36Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EgYs9XUsu5FTPre/oKis2zyIOwVXPnPS3D3LRLHuYHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:14"]},"IP":{"Case":"Some","Fields":["45.79.197.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["ZbqUOZLVwOUxHqoWoW3ipV8WS7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lrf8ClbOKvmjvHslcyNHSXxiFqDmvStmBdGbTVpeYi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:24"]},"IP":{"Case":"Some","Fields":["108.175.4.33"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:80fa::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldsworthy"]},"Identity":{"Case":"Some","Fields":["ZakKuBxE3X2bc7VSmxFReYU0r3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["myzRM2GTvG8SoopQi7O9xkUZgRuaXj6L9n652g3FIKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:26"]},"IP":{"Case":"Some","Fields":["160.119.253.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ZaOY6aaXpGRZN7CGzaHZpcV7lQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTgCPcHsJMHwRt9UIVKT1qV8BzKZAwQorMueI+y9ncI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:00"]},"IP":{"Case":"Some","Fields":["77.68.75.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:d4::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leberkassemmel"]},"Identity":{"Case":"Some","Fields":["ZZmwPffyBUCcgRE4xnY2EquugLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XvNiYImu+dNxSI2ii54LfMNXZEZ1l8wCPuJtGXpqGO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:39"]},"IP":{"Case":"Some","Fields":["185.119.117.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:162::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZZfIC4iub7AvVE8W2JekmhqRd4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ebFqZQTCr7paPz2DEVCq183ESqjtxb6MKuTEAm95vqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:54"]},"IP":{"Case":"Some","Fields":["88.150.107.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["castleworld"]},"Identity":{"Case":"Some","Fields":["ZY75F4eJ2yb6B4qgYF8n4VzqhBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pU0q+cWm+naH7jQ6EvjBR9QrLR4LmLGYIUr1lPLEGKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:53"]},"IP":{"Case":"Some","Fields":["79.141.175.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masters2"]},"Identity":{"Case":"Some","Fields":["ZY3CCXSLApLU7ekAgiVss+llhYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wq2l4AnzGeIqvYKU5WoNG1WlXhbldPoLb7kPsatmv3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:27"]},"IP":{"Case":"Some","Fields":["45.58.152.44"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noname"]},"Identity":{"Case":"Some","Fields":["ZYR8aoK7LQ2IrJkawiDYcc5S9yE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Woo4+I7LhO4OIFlLkcnMsR4XXzyBOpETs07Q7tSajNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:31"]},"IP":{"Case":"Some","Fields":["195.123.245.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypothermic"]},"Identity":{"Case":"Some","Fields":["ZYMsrdh98cXYm0WsG69IPRQH5ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lRKAYjtzlhGaLQnCHdDgFyUoLZaOIaSXxwsC3rCcIws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:09"]},"IP":{"Case":"Some","Fields":["49.12.192.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:6bcb::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZYDPyakRYRj1ERrR5/qi+fuO3pg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDJf63ia8RP2gYu9hbPgKxe9wgL4bahP7sqyjXh7ahk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:55"]},"IP":{"Case":"Some","Fields":["178.254.45.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ZWumwAsh2whmERcclGKIop4t9bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hQQ/YJfWfzngYR4yxBihFPAsbVF5kL741NFdt1Sp36A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:08"]},"IP":{"Case":"Some","Fields":["5.45.102.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:614:d803:40ff:fec3:832a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay27at8443"]},"Identity":{"Case":"Some","Fields":["ZWnXYqxEgSdmR1CwifgNFZfstwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4G1bwsCahxuIIP2AGMhPx1qjqU3LwXi+BzbNCA+vwG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:37"]},"IP":{"Case":"Some","Fields":["140.78.100.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oscar"]},"Identity":{"Case":"Some","Fields":["ZWXzHZ7Ax9/+oZIL47pMc+81tcQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OYeT6UPen95acoIjFsH/aJnnpT65/zoMruj5nfsETYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:23"]},"IP":{"Case":"Some","Fields":["158.69.207.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::dfc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hwds"]},"Identity":{"Case":"Some","Fields":["ZWNH66dPYyC4UZLuIvgFz1AJhxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["baKeOojngHBe+KLXdvYD5cb0Oc5v140bC2sCXHj8OFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:17"]},"IP":{"Case":"Some","Fields":["18.18.82.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex68"]},"Identity":{"Case":"Some","Fields":["ZU1jT8QoGxb6tyF7q9w/F5qPLSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQ275ewxoWqM9eN3NMkN86xTMUApAgr4Tp8540lF32Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:47"]},"IP":{"Case":"Some","Fields":["199.249.230.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::157]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StableCable"]},"Identity":{"Case":"Some","Fields":["ZUwiqSXQoMRTfYOYwnj5H5yYv0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AmXvC0d3eb+OPUOTQZPIISoGB0eFc9CAcx69jA+X3V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:39"]},"IP":{"Case":"Some","Fields":["185.252.234.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2079:4927::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imboredrelay"]},"Identity":{"Case":"Some","Fields":["ZUs2TCRXO0YxyK18OcFhxWjASjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["emewh0I1Xr9LmhGIRMBDQ2NXwX1L/EcMJzZSsNxlAKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:42"]},"IP":{"Case":"Some","Fields":["209.141.53.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueMold"]},"Identity":{"Case":"Some","Fields":["ZTee7UiFmbChUS6A1HQ7yRJcswY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJLYmzXUW6k6Mub6KqCNNPlg2Bef0UbHCwv/QrNXXM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:10"]},"IP":{"Case":"Some","Fields":["178.175.128.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:2451:20::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trns01"]},"Identity":{"Case":"Some","Fields":["ZSWwgVft35sf+tzdfaoPWRV+Tt0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["61XD1SQL7fyLAECNTIr9axxhahu5TTTY+UvMIq66CtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:15"]},"IP":{"Case":"Some","Fields":["100.12.177.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["santaMariaRelay"]},"Identity":{"Case":"Some","Fields":["ZPj5ioKeY2+/RDFKSGBeERKfmL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXpb7jyEZTdD/aisOJ5CNPe12aoCqEeF1/1wcpaw3lE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:08"]},"IP":{"Case":"Some","Fields":["47.146.69.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber47"]},"Identity":{"Case":"Some","Fields":["ZO6lEZhPLIYvCed3VdxlfsMeZIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q49gwPoesWxz8JZm5sLFm8GLvUSabCX89lGVtMV5YoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:20"]},"IP":{"Case":"Some","Fields":["185.220.101.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::24]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frigus"]},"Identity":{"Case":"Some","Fields":["ZOs8vM63YLn2R/obmkBTM5gwsCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpFZkGbYE8d/SOoaOZJAwGpW+AGIOUVePA1/yYBWluw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:44"]},"IP":{"Case":"Some","Fields":["212.111.40.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI23"]},"Identity":{"Case":"Some","Fields":["ZNdKqnTzDcLPs2NDzl1EUbmk26g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iEUa0UF7UPg9wfJjY5jL7kqfY8yZDqsaD8FSmZPkmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:27"]},"IP":{"Case":"Some","Fields":["171.25.193.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::25]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["permanentrecord"]},"Identity":{"Case":"Some","Fields":["ZMsrMsEK3UuT1yW33tI4zM1tbbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddnFTQmz/EZBrKt9BthMoe0XLwDNy3aeySRT6C6ZCFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:24"]},"IP":{"Case":"Some","Fields":["204.44.81.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:fcd0:100:4600::6:16c0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sleep"]},"Identity":{"Case":"Some","Fields":["ZLsVtileOkRZT0OM0OZ058TmC6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kwQZz9iwsKxBGS50iCIuaRZtIpVF2Bv4eHzMOnbdYFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["212.227.73.217"]},"OnionRouterPort":{"Case":"Some","Fields":[11142]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6bc::1]:11142"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["montserrat"]},"Identity":{"Case":"Some","Fields":["ZLBfmiEitdtK3LDm8IMZPzFwqQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NtzvJ+aVngYUlo9Ajem9ZfBQngGTD9spvgEmwknBjDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:05"]},"IP":{"Case":"Some","Fields":["45.90.135.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:7c7:2113::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneinfiniteloop"]},"Identity":{"Case":"Some","Fields":["ZKzETvvHG6509XB9SAqjDtK8kVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YYA//Qg3bPU+gVnHVeMKnB+sTrHaI8vUp2bdjiISd5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:19"]},"IP":{"Case":"Some","Fields":["2.139.28.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["janitormentor"]},"Identity":{"Case":"Some","Fields":["ZKiDepevcXdchN4O2pRVKq7cQk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DjKw2QwPWNNvcz40QtrVt9PD1+NJDVMlQLYdhG0yFMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:48"]},"IP":{"Case":"Some","Fields":["91.219.238.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ovhSwagger"]},"Identity":{"Case":"Some","Fields":["ZKLWOsTXLQOG7obG7jk/4xmi1Ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i0qUXO1mijSiqBc8yTIge/8VAO6vW0a5XJ0M92qjI2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:58"]},"IP":{"Case":"Some","Fields":["198.244.191.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::57a9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["newTORtest"]},"Identity":{"Case":"Some","Fields":["ZIin4czAwJ7A+QC4TSu4v9FKTGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cb6921zg7MY5YZJU8Kn6ErhOPNWuDe65UeI9wXFVXBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:38"]},"IP":{"Case":"Some","Fields":["139.99.66.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coco"]},"Identity":{"Case":"Some","Fields":["ZF3pv3ouhY+Ka0Xx9TA3EXbQI4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IACjUp3PMQ8qY4fbsI79gf7E6JVsyq1C6tZVkcEIYrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:43"]},"IP":{"Case":"Some","Fields":["144.76.37.242"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber53"]},"Identity":{"Case":"Some","Fields":["ZEVajRinibv9ZI1jsDhoYhjYMUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4wbWrMLHvpmxbd5Q01H3cP6rCIRIuIzQbXQFAn9HbyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:29"]},"IP":{"Case":"Some","Fields":["185.220.101.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::27]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay37L"]},"Identity":{"Case":"Some","Fields":["ZCmw1wPrkKGFKPn4uENQSqJ3ZcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEtg1tstmfvx8Q5C0qOvkerp17exvIHE9/+wKX4YPBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:14"]},"IP":{"Case":"Some","Fields":["185.225.68.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CourvixMiddleGer1"]},"Identity":{"Case":"Some","Fields":["ZBlDBwb3f0a5gDnIhdoExZXJ6W0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d55KfM9A/HRlDIWD/NkfGw3IyiyorbZxDMHKO0HhIbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:00"]},"IP":{"Case":"Some","Fields":["179.61.251.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:5707:aaf1:30d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["samsara"]},"Identity":{"Case":"Some","Fields":["ZBi6TPpf8pxrDmEVg4KxxSyfLhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slxb/FkOAX3FwWnttHWns/iiEJmapEkjlzYKYJn1J7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:29"]},"IP":{"Case":"Some","Fields":["5.255.99.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["Y/+/gWEIP4yuDCMZsnfiz//iV4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQFkVjzpo8Cq521/pm3KzRsS9u4RxDMmB9nB1d5r0Ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:43"]},"IP":{"Case":"Some","Fields":["193.163.86.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:500:c1a3::56f7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv115"]},"Identity":{"Case":"Some","Fields":["Y/AEOBlGj9hsdh6uRbS3Lbmnlbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6mjItPTUopWlcWHFIUuNvZC61kYi6cd0c+wWt+Q/g/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:49"]},"IP":{"Case":"Some","Fields":["192.42.116.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5515]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emokid"]},"Identity":{"Case":"Some","Fields":["Y+9DIZ1/uA2jTIDVBzlail7nmT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyIciqEl0dNzZfImO5cmZziJoU34RQAXuxWc/o5u5ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:38:20"]},"IP":{"Case":"Some","Fields":["104.217.250.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ESCAPE"]},"Identity":{"Case":"Some","Fields":["Y+CUpUR3mWc8EUETQFj5SAdOqmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BwFs8OFvDurs0FCfmijaTUIc0d4ZpdFJxDs/Wbmgf1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:51"]},"IP":{"Case":"Some","Fields":["87.120.254.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit1"]},"Identity":{"Case":"Some","Fields":["Y9jlPjDjrxQOOyBes8hoxdbtiQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d1DmUX0b2kMufyMquU9pibl8IaizIZthqAwglq2XKds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:49"]},"IP":{"Case":"Some","Fields":["80.82.78.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6c8:8000:26::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontpanic"]},"Identity":{"Case":"Some","Fields":["Y8gbyoNVcAaaf81IMS3qcH9suqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jZHFHPmB5EKod4tYjS0kxS+wtXEPD0G6sVSUVcCuNfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:39"]},"IP":{"Case":"Some","Fields":["5.189.181.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:c207:3001:6426::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["543f24423c684e64ad7"]},"Identity":{"Case":"Some","Fields":["Y8VD7OJQEY6SBDej15ZePqk9BMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iY4DA3WinhUWj9hBKlWDCA2wqYY+i+KOYEqAVWvsuW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:51"]},"IP":{"Case":"Some","Fields":["46.39.97.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["toralf"]},"Identity":{"Case":"Some","Fields":["Y79Gpj+cIf0xXNBhs+qj6wUoOgo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WFuft2TpFisaC6pRurQCSY9sqIxX9kvVET9kcr9FzZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:19"]},"IP":{"Case":"Some","Fields":["65.21.94.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:468e::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torte"]},"Identity":{"Case":"Some","Fields":["Y7MvflOJ6NvF4bzv5IMS2nzO9dY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbkulHNG4rr2mkLdiUypvxsdQ9ndR/D3B/alhs7jINw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:12"]},"IP":{"Case":"Some","Fields":["217.182.196.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay2"]},"Identity":{"Case":"Some","Fields":["Y57baD1X4bB7qqVNqaGkPgriLJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZDtAWaEwbHfVughkWEdjeEVFpNMJXlhE7MOWZ9gPIw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:09"]},"IP":{"Case":"Some","Fields":["74.208.235.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra75"]},"Identity":{"Case":"Some","Fields":["Y5KNNwuSnr2lTvKr3UpjCCCFv2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OAaBG/5PC9KgNb+qnQAO92tk33yczGNtlSqe603DwBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:13"]},"IP":{"Case":"Some","Fields":["107.189.2.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["avocado"]},"Identity":{"Case":"Some","Fields":["Y5H8CPoVh/R0rqhU2Rplb163ISw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LIT3NlnrDIgle4Qa+mCKFeJoU4yzNyaZ20C+PZ+mRSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:30"]},"IP":{"Case":"Some","Fields":["109.70.100.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::6]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashLizard"]},"Identity":{"Case":"Some","Fields":["Y4nstIkTNLhGMA/dimglDrtbfFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8Dq2J/aZCo+C1HohQv3ZV60T6do0JnbYX83foWwD9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:34"]},"IP":{"Case":"Some","Fields":["185.82.219.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27aa::505]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LehmansRelay"]},"Identity":{"Case":"Some","Fields":["Y3ke4B6g5E2NpstdOkUXQxKSet0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c1P9g+S6mOgJ7hcobU5SFpdPJmT/5Dkq9EfLZepDxVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:07"]},"IP":{"Case":"Some","Fields":["87.92.154.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zollkriminalamt1"]},"Identity":{"Case":"Some","Fields":["Y2ma71mMBGwsdftZjRbZP1dTYbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["psmqWZM2nmgVCdn/sbEjfd71VIyzDmIOB1zTJYSRzW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:41"]},"IP":{"Case":"Some","Fields":["185.188.250.127"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:3867::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi4"]},"Identity":{"Case":"Some","Fields":["Y1Skam6C14S58xS4hk96n0iF5eE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NvMW9zGvD6EHCmx+11A3JysiAJOtlRCp+ygWDX93I+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:46"]},"IP":{"Case":"Some","Fields":["46.28.107.15"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:1]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneDEicebeer02"]},"Identity":{"Case":"Some","Fields":["Y0qICMqKZAmACH9/fqZoW4cdo94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4S7XDXmIoDxQeH056x9JgfFpOIndFWO6puL5VxRhdm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:30"]},"IP":{"Case":"Some","Fields":["89.163.224.65"]},"OnionRouterPort":{"Case":"Some","Fields":[5122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiotnos"]},"Identity":{"Case":"Some","Fields":["Y0TtnGcoOZP8IYBetb/8fm29J6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywGXV6lUnIwxZ/D2dC37y9IaaVDXuHGZInmrr7mHCA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:37"]},"IP":{"Case":"Some","Fields":["217.160.49.94"]},"OnionRouterPort":{"Case":"Some","Fields":[44321]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit11"]},"Identity":{"Case":"Some","Fields":["YzzuDc6k/xgm97hdKL1yQrOlbM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mPzjSPQ7ISVKZ0paEHDjJecYuW6N5cs93zqzS8LdxGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:20"]},"IP":{"Case":"Some","Fields":["217.146.2.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1f:1::55]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenQasr"]},"Identity":{"Case":"Some","Fields":["YzyRhQ8DzI5PPCgDr8XOobAKh6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ey2BqRK+3LZWITEsk8/Y/186ELyk/VL9EkLkkxyWlfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:25"]},"IP":{"Case":"Some","Fields":["140.238.34.159"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a1]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eg9522alpha"]},"Identity":{"Case":"Some","Fields":["Yxy92vm2yvS01p0ecrNZcEmdlaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDTB23UqzbxrWTA0QAT7e8GeD//t417pT6BD7eYegBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:24"]},"IP":{"Case":"Some","Fields":["158.101.146.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed314"]},"Identity":{"Case":"Some","Fields":["YxUnipFxAGLZCyiBme+gbkqqno8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9OJZxfwEjLJvPTlWVKVscdZexAhKgZsSSCmocFWYLQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:13"]},"IP":{"Case":"Some","Fields":["213.136.81.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:c207:2006:2287:0:1:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra79"]},"Identity":{"Case":"Some","Fields":["Yw911a10GInBvEbcNUpjIBUqezI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrQLuJdXsWCq9dCy2edpFiFav6IpTv0IKjof6bz20bA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:46"]},"IP":{"Case":"Some","Fields":["209.141.34.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG10"]},"Identity":{"Case":"Some","Fields":["YwR4HqbI0KhjitGnRczP7nfr5V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nc8nVk42Jex4Bdhi8iplwkatw+oTFA+wLpgn8kYFsEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:51"]},"IP":{"Case":"Some","Fields":["193.189.100.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["YvSZTG86Wz5ZCu7OUiWRaWyN3uI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rZp3Ty+n1h6ZmUmBLL4ks/5dMEQzpPuMEfANp2kLYLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:59"]},"IP":{"Case":"Some","Fields":["185.220.100.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:15::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raveena9002"]},"Identity":{"Case":"Some","Fields":["Yu1TsCABjkExaQPP4bjDd5ts07U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SqM5lf4ezuhwUqWl28KjZB4Le9SQsqnsW4QDIItm2U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:36"]},"IP":{"Case":"Some","Fields":["85.215.228.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WdTor2"]},"Identity":{"Case":"Some","Fields":["YuoxPIvAPXXjGdOgtH04iHSdAjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o849VW8x47g6zr7vJJbsp1UgrEHaJT+BInqnuez1Mvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:17"]},"IP":{"Case":"Some","Fields":["65.21.75.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:505d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Yt/PQPhUd8BUMgrmZpzihuRFgHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URFZOoydRsm4ZCF/1cwF6L+sXktPWWvWYjztzMi3y2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:59"]},"IP":{"Case":"Some","Fields":["95.214.54.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maurice"]},"Identity":{"Case":"Some","Fields":["Yrq3UWoNPx5rK8lHZ1knkfa1j7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2lB2lrwiiyL3FtomBXdf7LOXKS6XW2UjT20BeBzHTgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:18"]},"IP":{"Case":"Some","Fields":["137.220.127.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xyphoriator"]},"Identity":{"Case":"Some","Fields":["YrfNGj50DFpRX634IZqTNrA+caw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cRybjWtYbw/AvvufiSk4B+9XSKwm7BiMUdvEg9EQjbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:08"]},"IP":{"Case":"Some","Fields":["24.112.149.188"]},"OnionRouterPort":{"Case":"Some","Fields":[49152]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privator"]},"Identity":{"Case":"Some","Fields":["Yq/jkwIMw6o6owyniQL11A52CSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVyxVFdyVGLTfdwqXbxqgfXopF5frYVqo1Y9aiP/7Vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:43"]},"IP":{"Case":"Some","Fields":["217.160.49.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Yqayx1ByX/3pRX9kHvVm1WdzwxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5rGr8dFyXfve2TXIkry1tzsnoCSsbQHj4KjGutODCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:55"]},"IP":{"Case":"Some","Fields":["80.64.218.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::dbb:77db]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PwnedNode"]},"Identity":{"Case":"Some","Fields":["YqYBWKLDAuPaeS16T1M59BMh5dk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ksj1cZeQD5TsyTdxO/NESjZAnxlGeviaVhMmQFA+4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:46"]},"IP":{"Case":"Some","Fields":["213.232.101.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit8"]},"Identity":{"Case":"Some","Fields":["YqTmv+h1Q3h563mBw/wDENNQavU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CvWirYd1gGdYdZrFHEWMYSqTUMrWUTEwW6dgD7WMtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:37"]},"IP":{"Case":"Some","Fields":["185.129.61.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pltorrelay"]},"Identity":{"Case":"Some","Fields":["YqLODTvkb9UQmnIHTLvGvGxkfJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVe8YnJ0wF7TSUaqVQ2GPHRl/pA1FgyD2cRgRwzvDH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:50"]},"IP":{"Case":"Some","Fields":["149.172.49.204"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilatus"]},"Identity":{"Case":"Some","Fields":["Yp3hHRW3YFIeE5Gy0HImmP3BA98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BLfoDdCj/6XLMmUOU8rkjmZmhBL1SjR5fdR82EiL2n8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:10"]},"IP":{"Case":"Some","Fields":["138.201.196.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:3e5b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow002"]},"Identity":{"Case":"Some","Fields":["YpCi0I5euJyAkiPFx79SWXaQdR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUv/Zv+gvjoUlqhde8tsgtoPG9eq5+0qC+caRyZILD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:42"]},"IP":{"Case":"Some","Fields":["185.195.71.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlUA1"]},"Identity":{"Case":"Some","Fields":["YocSnLnsR16Bag0oP+TkXWMqSks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIU3lzc5YC8XOeTk1CRduRNpFub3TcsFyXZ3AWR00Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:24"]},"IP":{"Case":"Some","Fields":["217.12.221.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalcat"]},"Identity":{"Case":"Some","Fields":["Ynr+jKgRwNmD++WHa5KL3kxPWTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYrT9MVWRO/gMSrXvkPFOgVMZ1aXUDYW3T/WDf1Dl6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:30"]},"IP":{"Case":"Some","Fields":["23.140.40.2"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[110]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission01"]},"Identity":{"Case":"Some","Fields":["YnErLCShabJDNs0v4r5V2mdHbIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mh7ekWZkJgjwXP3TXLNVfqX/tz8y1vXJCChEq4vIFq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:26"]},"IP":{"Case":"Some","Fields":["149.56.94.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["YnEY9uPYXNbiYpe9ZTjEXOmKopk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ztctH5N4wPZpD4VkSoheA0x/fQ3gSlMKzeGc278Sc/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:03"]},"IP":{"Case":"Some","Fields":["185.14.97.105"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::4fe]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["testrucensorship"]},"Identity":{"Case":"Some","Fields":["Ym/zKgTmNvT3q+pMqdyvJgHWqwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yo2rEArlSv15R7nMhs4QhubjP4Arx/aN90QLmEalx+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:08"]},"IP":{"Case":"Some","Fields":["51.159.161.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:fa0d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay3"]},"Identity":{"Case":"Some","Fields":["YlT006z38+v/GukQx2KlefHBqkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MkUEAKFdZMjbDpL5ODJjuExGOaNBd6JNcIO8gI1I/ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:22"]},"IP":{"Case":"Some","Fields":["188.68.59.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f75c:28a7:40ff:feb7:f710]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrueRangers2"]},"Identity":{"Case":"Some","Fields":["YlAmr6x8XpyS9ZehhDQyR+0BGXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNg9vcHJNI5soIE0J/xNe/ZHUqMSB01cKgLQm6YDULE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:49"]},"IP":{"Case":"Some","Fields":["185.175.158.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YlAKtAH5NVhnfB6MYeckvUZs6KA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cBYnVOWQ3k0N0RBp4pgexepR2lGCZRY7kmc9heURKp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:42"]},"IP":{"Case":"Some","Fields":["185.207.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie3"]},"Identity":{"Case":"Some","Fields":["Yktzkbl5DnzSr2pyOCObo9aSilc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9r45Ar9ff5fjTou/GiGHDlTV79c+hiYZFvfZjUTWaZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:20"]},"IP":{"Case":"Some","Fields":["65.108.136.189"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::3]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wildy"]},"Identity":{"Case":"Some","Fields":["YkXchz1vYTx5XUhmPWW9iiJmyvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6zlm40WoHYhdKy7tzmnaWrkVxO2f1ARMEQDVIZXjJCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:42"]},"IP":{"Case":"Some","Fields":["92.222.103.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:8c4f::1:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode2"]},"Identity":{"Case":"Some","Fields":["YjzMwaE3BwDdAwRqhdlT01yrXCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZW74UUfShxUHYU7PgG+adS6pm1R8/N81IzfCZ2vfyPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:37"]},"IP":{"Case":"Some","Fields":["209.141.54.195"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongreatmother"]},"Identity":{"Case":"Some","Fields":["YjL980/5B9wlonMn0cBa03D7J2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vHfQs2Kv73VpXf7t6nwoN4oT/75yTjFb4+1GUEaVSUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:42"]},"IP":{"Case":"Some","Fields":["185.220.100.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:10::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theunion"]},"Identity":{"Case":"Some","Fields":["YirVMXdx0PmlTcb4bszKSg7wUSU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cdAt/hC9nPC5SVF+mnkiKf9HPwxIM5+bvBwpSEmZX7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:33"]},"IP":{"Case":"Some","Fields":["185.140.248.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH111"]},"Identity":{"Case":"Some","Fields":["YinHBKMSIzzTM9UZb4Icf/1bL28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xt+CKpva+Q3rQBNWcsfmj6+12QqpI8yh+1mgYMr9gwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:28"]},"IP":{"Case":"Some","Fields":["192.42.116.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrg"]},"Identity":{"Case":"Some","Fields":["YihCrl7P8ICbTJhtUsp1w0ntEeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mM67vL8R1XX3jN/6wU0z9NzAEHCiXKtRnuCc+BWrGDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:48"]},"IP":{"Case":"Some","Fields":["54.39.66.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:93:12::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["michaelgill1969"]},"Identity":{"Case":"Some","Fields":["YiOa5ZqI8qxYFzdy0cgiaQLBguc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0xOAFpzFD3DKQbQYrfk5mcAIUILafIsUiAeIPxfnPps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:04"]},"IP":{"Case":"Some","Fields":["45.79.188.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:92ff:fe81:95e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["YiKYJ/4WEwA8CiqHY9gcCxcP+tk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+/URgI78CYQpcnvZ0XNK6ayEOgCh1Xn0/M0yFCKaxFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:06"]},"IP":{"Case":"Some","Fields":["23.128.248.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::215]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation57"]},"Identity":{"Case":"Some","Fields":["YiIzRlkRHZnenSaXCsxAIrKQ39A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSkkrvTFC2c67Dq24NX1ynu7b6PnbItBHowos1nCtco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:10"]},"IP":{"Case":"Some","Fields":["51.89.143.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pbranenettorrelay"]},"Identity":{"Case":"Some","Fields":["YiHKqfSmctthRNcSjRhN21NQg/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4k4AD1/yOflCMovjPUMpdvg1eeBmlMJUHOHQct/09I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:08"]},"IP":{"Case":"Some","Fields":["139.144.60.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:93ff:fe97:5166]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["Yhx8cD+QR4uCuvcBmc/DCy5N4vQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xA/u5iGaPnd7/KA10CFliN4vSkak7W+iHC9pFwQXJSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:47"]},"IP":{"Case":"Some","Fields":["51.158.231.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra12"]},"Identity":{"Case":"Some","Fields":["YhM+22Y8HAQ7Ki3CShnDUQiOvVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEC76WQ6WsM9UPluDDJtbXjQXD0bzLhBcoRdr808hRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:43"]},"IP":{"Case":"Some","Fields":["213.164.204.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1144"]},"Identity":{"Case":"Some","Fields":["YgnV5zRei263oQKBRuSCbMbGQig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tXjcSH/iFInZUHDrfzR88YBsmNeb+GQwG674pYDhLRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:22"]},"IP":{"Case":"Some","Fields":["185.220.101.144"]},"OnionRouterPort":{"Case":"Some","Fields":[11144]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::144]:11144"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay631588"]},"Identity":{"Case":"Some","Fields":["YfBd6av4/OHWE6PP46+BsCfyee4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPFMXikOpNp1hIIC2Wpll3JksFW0JalYLn9niRgyS+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:01"]},"IP":{"Case":"Some","Fields":["88.209.77.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9845]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LukeCage"]},"Identity":{"Case":"Some","Fields":["Ye5n4Y2N88OgYTPfVOpaKUyTedE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lr+jsKV+61AQaqfu+MA+vXhwozK03uDZjim6m4xtZc8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:57"]},"IP":{"Case":"Some","Fields":["216.73.159.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay38L"]},"Identity":{"Case":"Some","Fields":["YeQx7AdIgMTKrpjx5SXgEodi4GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1m9kYKJEDK0HbQeEht5FgMWokwSgwlSB50WVFvQ59cU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:00"]},"IP":{"Case":"Some","Fields":["212.44.103.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gare2lest"]},"Identity":{"Case":"Some","Fields":["YeQbV1kej1LHE1ysQND9mMXLq4Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubLLbrge1MqH8JlGW17fRxyynXaIwQZqr8u15jANGTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:23"]},"IP":{"Case":"Some","Fields":["90.126.124.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thatismyRelay"]},"Identity":{"Case":"Some","Fields":["YdI36EJvhIQg1KZIs1T6H0WrrH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GixycUD6wmk+mdyDj7EcRPG37wc8RfKB4AmC9pvYiXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:49:29"]},"IP":{"Case":"Some","Fields":["130.61.189.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kren"]},"Identity":{"Case":"Some","Fields":["YdHN+SoF5ZoGtuIKOSR2lnErAAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSaG0eQ1MAzAocZAj8XLK3h3cWQD0QbCFSZdru6vMLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:17"]},"IP":{"Case":"Some","Fields":["109.70.100.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::5]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artischocke"]},"Identity":{"Case":"Some","Fields":["YcA4J/2ZFM3LLqgJqCSkNa6gGJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3d0DzlWEur1ZIJPoQahF88yD1PB77CvINR2kTlZM1b4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:36"]},"IP":{"Case":"Some","Fields":["109.70.100.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::11]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whoUSicebeer48"]},"Identity":{"Case":"Some","Fields":["Yb6yjL+yWMA5w5f7q3/Wb6HzEgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VYdtJRmJ+MXiCmKPrPVTlZ3kzVJhJrnruv11YBIW2/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:19"]},"IP":{"Case":"Some","Fields":["173.208.190.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8034]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["YbpcUI464Uwt/43Wd7EAmEyj4J0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["heo0OSgYEx9/993ylg1uXHBNYcGTIM6zjixn8Q+seiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:24"]},"IP":{"Case":"Some","Fields":["74.208.212.42"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:24a::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pecurina"]},"Identity":{"Case":"Some","Fields":["Ybi9yRqnvJoF61o9ZS//iMmOaRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hRtVUDuSj7Nq7KgSh1YfjWbJiFoXzLt+zjvbbkd4IaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:28"]},"IP":{"Case":"Some","Fields":["78.31.65.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YaIQTX5phnw/PvmBB3Jm+WjBdSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdO+3fNRYnWDkaTaqwv+Pq5XzaO76hVM7rZlqC7qNZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:28"]},"IP":{"Case":"Some","Fields":["188.68.41.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seeidideditit"]},"Identity":{"Case":"Some","Fields":["YYnwaR2K0cuzc8rTkG5yI4rENk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qywVrF+JNW+8+47mHCbZaLohj2T3Gwj7psI2odbBV7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:42"]},"IP":{"Case":"Some","Fields":["78.194.158.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e34:ec29:e1e0:baae:edff:fe7d:7bd8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra94"]},"Identity":{"Case":"Some","Fields":["YYZhYszf5lGw12qlfsqQucx8gN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cjflFLwYVlghqlwwLL5ApFufFeJAajKVhHO13oVnZRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:12"]},"IP":{"Case":"Some","Fields":["198.140.141.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:30]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YYO0k6z/QbKHRc8DIuda173kpIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aI2uw7GqaB21FJg91S4SnxI2kNT+WFePb2J19cRt2sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:44"]},"IP":{"Case":"Some","Fields":["185.228.138.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor11"]},"Identity":{"Case":"Some","Fields":["YYFjv8TsJLaqbh6EHSHoNZF20JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AIShRveqg9goddsbSDX0ilyS/6qxO71uLJA8Q4jMhu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:54"]},"IP":{"Case":"Some","Fields":["31.6.70.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::132e:e173]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange030us"]},"Identity":{"Case":"Some","Fields":["YX6x85lOE+/iDU1qQnO3JHdtBdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/EHJftWRRQo5UlpxByyOL0p1rG5xjG2zgXP8AB6+kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:38"]},"IP":{"Case":"Some","Fields":["45.33.198.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["YXyV/PXwDpjnPjWnHAZu0gYU8m0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RGlTerl9sCNI5fTtZBkbEPU5OM7eAkp4BULuZs5AKhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:38"]},"IP":{"Case":"Some","Fields":["179.43.159.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mirokko"]},"Identity":{"Case":"Some","Fields":["YWynMGMXZUV1CX1OpbxrZibiaUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hWrrR064lkw4YoAmaD6qwFTuCb07QJob5NTF19RivOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:54"]},"IP":{"Case":"Some","Fields":["185.235.218.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeoNotOrg"]},"Identity":{"Case":"Some","Fields":["YWo8Wzs6sJVHdowGPS0ySxnPJ0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcW7GoarJOORxaequCL/RVEGkMl84Cj8OhwhZrZDA8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:22"]},"IP":{"Case":"Some","Fields":["148.251.208.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AquaRayTerminus"]},"Identity":{"Case":"Some","Fields":["YWCB7IKVk69CMlUN5v+qHXWzepA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4Ve0uNLFeqiIfnuWJRUqzajgNMd37SOYj/+HP7mqEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:31"]},"IP":{"Case":"Some","Fields":["95.128.43.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:ec0:209:10::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PostGuard"]},"Identity":{"Case":"Some","Fields":["YV1UGUZnLQLzGZWkiomlJsfsNSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/ZUsPNuogSMS7VLha/s5xRHtDtKTFCe76g6fYvFpXS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:35"]},"IP":{"Case":"Some","Fields":["37.221.196.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:635:c48e:47ff:fea8:490]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cloud"]},"Identity":{"Case":"Some","Fields":["YVq+ot526zdgvFHnMGuqWfFc2PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoUTFk7iiFoKlFhh+sotoJ3ekCJU+Ly187QXa17f69M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:02"]},"IP":{"Case":"Some","Fields":["46.166.139.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaygermany"]},"Identity":{"Case":"Some","Fields":["YUaQ0BEbsWQouBbbnpmMDl6j9JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xN//P6I+h+4VuDOQa1GC20aFEgX6O4Z7gto7Ei9Wd9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:03"]},"IP":{"Case":"Some","Fields":["217.160.214.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6e9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBoundTome"]},"Identity":{"Case":"Some","Fields":["YUZW0SbsNDQEZHbbb9YxtxEk2rQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VhllzY+lH/fYIez3AGzxV6JEhxYxuJmnMai6iwxVJVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:41"]},"IP":{"Case":"Some","Fields":["82.118.242.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["invaAtMoon"]},"Identity":{"Case":"Some","Fields":["YTT1tm8nvdvCv4DU8sV11iOOXjQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TsEGIlHhHpwrQ1zQvv3Hm/8HhFdLbFqQDiuLBVYKO3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:18"]},"IP":{"Case":"Some","Fields":["188.124.94.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neverDie"]},"Identity":{"Case":"Some","Fields":["YS9oLW+CxHnXih5Sdwo8Qxr4BdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mvgb5Glq1F7djhDf7rPaEZ8MNvgVONx03GvuEERFHOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:00"]},"IP":{"Case":"Some","Fields":["185.193.127.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:1337:127:0:b9c1:7f8b:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedHat8"]},"Identity":{"Case":"Some","Fields":["YSv+bTylv1UsntbgmUM3edjFIdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OjJx11Jl52T1FgDFAyoNzreZgdBFR8kqI7XFQo/ZaMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:44"]},"IP":{"Case":"Some","Fields":["5.188.206.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazerpi"]},"Identity":{"Case":"Some","Fields":["YSWm0nf3/0Cmh1qSgUcs145A9Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/lfuvp9Z5DMeos7my55EATGR9xLcVuSYlQvhZ88SzZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:18"]},"IP":{"Case":"Some","Fields":["79.255.156.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["YSUdO0fwI0WHS7fytNbvMZgU3jQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AdG4b/9D7BhfKyE2WbFIjw+hynyYJnV7la9KGn7gSnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:06"]},"IP":{"Case":"Some","Fields":["45.90.161.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::f05d:92ff:feb5:2932]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DevilHunter"]},"Identity":{"Case":"Some","Fields":["YRjdtYDu3W/l+NPMDfHuF9iipMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oCCBCN045JPxAKWKBGGaTloKiSWcpf+3ituy0pRuggQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:28"]},"IP":{"Case":"Some","Fields":["94.16.123.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:3ba:840a:fff:fe2e:3fec]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["janus"]},"Identity":{"Case":"Some","Fields":["YRczdja4y5efCbZ1MEd9/8phv4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oqJm+LU6jNcy0v1wjiUtguTkzl9VOdZSQEKbaBFMvEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["91.121.143.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jsRelay"]},"Identity":{"Case":"Some","Fields":["YRHGAFq1ZJi+XjVmayUizr4X0U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gIvF5b2LWNZensih6ew+h7sVa4Q/uTZmeDJ3BvQNHN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:55"]},"IP":{"Case":"Some","Fields":["98.113.139.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay4"]},"Identity":{"Case":"Some","Fields":["YQfR+W5mKTZgJa6Bh3XHzyqahLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WGASnZduOnyObkSes5ubYNa7HRd8YEFO/DyTpNsUN+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:32"]},"IP":{"Case":"Some","Fields":["84.49.151.188"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["swlt3"]},"Identity":{"Case":"Some","Fields":["YQHss9oR4M5t+LRXAU2gmYB83k4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Icwimyk6ssns736HPdLewCcVx/4qAq2wIyJPfKgIb7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:43"]},"IP":{"Case":"Some","Fields":["49.12.233.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:1849::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["n0trace"]},"Identity":{"Case":"Some","Fields":["YQBBUscJZy7nOfJme1bvVVClEzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxUzsHbV0DQSUs2oYARG2dNQqZgBp23DsXrn5dkTX7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:23"]},"IP":{"Case":"Some","Fields":["81.169.255.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber17"]},"Identity":{"Case":"Some","Fields":["YP54LfkjaYVGAjxvFP7AiEYk81w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uIF/tppVNIEfOq7GD984KeYPENAWVRSwuWxEsEUITU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:54"]},"IP":{"Case":"Some","Fields":["185.220.101.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::9]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor"]},"Identity":{"Case":"Some","Fields":["YPITnqPgZBCgXL1uglTmCpBjrZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LThA48ZMUlC5TncZoZg8CNM9bs9ynnE1hEIjmPQn4ck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:10"]},"IP":{"Case":"Some","Fields":["147.135.6.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Washington"]},"Identity":{"Case":"Some","Fields":["YPD5HUArY2kyezD6iXa2cO8FxPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oavOPTEOY/ncbsQ3fGE0klVcda7ZZa+zLp0Ds1/EHX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:28"]},"IP":{"Case":"Some","Fields":["185.70.185.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YOUhtjLYOXHs+NRUr1WPLCOLyaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["STolzmVFfws5dSXI0+nGQ5GOO7gbFDlqxnKBuCixfeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:03:19"]},"IP":{"Case":"Some","Fields":["185.207.104.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rgiad"]},"Identity":{"Case":"Some","Fields":["YOTF4wbS2yKJDuJKCfm2wwrzlqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHnlRwZniKiUZAzILcT0i4Fsu4PU455E67jgWqcEN5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:40"]},"IP":{"Case":"Some","Fields":["198.180.150.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:418:8006::9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN6"]},"Identity":{"Case":"Some","Fields":["YNNmf1auxcac9+j1V9sh3fbDYGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7VAWQ4zB9BQAV8qTGrlypMmklYSODN/U5VKddljgOl0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:54"]},"IP":{"Case":"Some","Fields":["199.249.230.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::117]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["YNErfXpgFiJQT3TJpOt8jzP+XIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bD22nxg9vH/8to/CABRfFWBF0yRzCmpv1khyGxxM4DE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:14"]},"IP":{"Case":"Some","Fields":["134.195.89.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wehrhaftedemokratie"]},"Identity":{"Case":"Some","Fields":["YLbz+vZcRDT3ofaCFiBr6AfOgHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6W2zwyS70UxT5QyOpDhaXSu9jRAIAXCXMC+O2vk3nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:10"]},"IP":{"Case":"Some","Fields":["89.58.28.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mosquitobait"]},"Identity":{"Case":"Some","Fields":["YK/oZvU/34OAigLykJ4otSIstwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ozHwBGKFtxTRst2dMtZCVdiI+lNrWzEK2pjv4oc0Uas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:38"]},"IP":{"Case":"Some","Fields":["23.105.171.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomeTorinAS200462"]},"Identity":{"Case":"Some","Fields":["YK7qI6hbg6QHMStWCmBIKlAaa4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEEYxw2QdDtwVkAS7HkiueMId5HMIrPk/F8gk+G/oAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:55"]},"IP":{"Case":"Some","Fields":["2.58.52.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HotPotato"]},"Identity":{"Case":"Some","Fields":["YKVUeyID3S4Ujvm91v84kQgcXfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gjk5yyqFzG0kJmmuewKD+WW9DDcHGm1DLm0OloCgtwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:12"]},"IP":{"Case":"Some","Fields":["96.126.105.219"]},"OnionRouterPort":{"Case":"Some","Fields":[5353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe93:5318]:5353"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["misaki"]},"Identity":{"Case":"Some","Fields":["YKQ/LpZFdzypsXImy8TCDcMXTQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1nz+rWCvHNEgZXkyvlP7T44HBM//BKElLxrAAMQs3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:55"]},"IP":{"Case":"Some","Fields":["134.195.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:feda:30:cafe:20c:29ff:fea3:9936]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Handlebar"]},"Identity":{"Case":"Some","Fields":["YHjzALN52N688C2+gIgclHd+JL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbEcP9jxJgVvbELuHjB1VObd5lPhDTdFC8m1zJz7lhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:33"]},"IP":{"Case":"Some","Fields":["198.255.21.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["forabetterworld"]},"Identity":{"Case":"Some","Fields":["YHY+YwmIBS1ga48qvITUHa9vp+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QvBuseH6V/uDry9jCMRxvCNSOAZNYe3rFNmvm/7g0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:25"]},"IP":{"Case":"Some","Fields":["159.69.241.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c17:e5ef::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arcanum"]},"Identity":{"Case":"Some","Fields":["YF7kN17kw4IVyJSfWAiGN0n9T0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NKyog1BakNTlCP8yGEv/hLMTAuaZhqB0EgMVs7BOcNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:41"]},"IP":{"Case":"Some","Fields":["5.56.216.42"]},"OnionRouterPort":{"Case":"Some","Fields":[4020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vaseline"]},"Identity":{"Case":"Some","Fields":["YFtfonRVoOeDKdnZc+FTrZKYvf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gXs0vkqfJajji+SHf1ZdGJ8c4SlsdTTrY50feJLaI4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:01"]},"IP":{"Case":"Some","Fields":["68.71.16.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["YFfO63OEfShu+Sru0pPvDNDeJcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e+z8qHnGUL17QgqV6OzGl8R6vTWLV3PHxXSjZin4VSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:02"]},"IP":{"Case":"Some","Fields":["23.128.248.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::218]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elects2"]},"Identity":{"Case":"Some","Fields":["YFX+kMGN1LJZOp0OAt3E1o6bpi4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AfMTsmTKPD5O6HX7gG+t8Fk7pn3Dv5j1k74ATryw8Ro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:12"]},"IP":{"Case":"Some","Fields":["45.58.154.222"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skewed"]},"Identity":{"Case":"Some","Fields":["YCog+Q4g0bnqTdh66Ui1kMYfipQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z0oUr03booluRhiLK22y8EfhVnCUsQyBswPlCiTtoUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:40"]},"IP":{"Case":"Some","Fields":["49.12.93.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noTORious"]},"Identity":{"Case":"Some","Fields":["YCYA10fxIlWpBPWsudvR1PIuRII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ysm6fgKpvZcH3b966Gdl0OEXZXu9l9vv5Tcd57upR7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:03"]},"IP":{"Case":"Some","Fields":["109.248.144.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1wllmkuhrt"]},"Identity":{"Case":"Some","Fields":["YBDqh71K7MJAsMVW95PR29CFy0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RC4C22zj8/VRe6tWurpTqvENPwcxlKusIRzE0YbydWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:11:12"]},"IP":{"Case":"Some","Fields":["95.215.207.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a2704f1ae50d753145e"]},"Identity":{"Case":"Some","Fields":["YAkCMwP2iBQZ9M7fxLf/j/3y48M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXojpVK9gZTJKOTpI+A9pvhHQi6xMf1dGYcCs3cNdyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:58"]},"IP":{"Case":"Some","Fields":["62.65.40.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["YAaEqGPciTaS8dd3hmAFNszoCyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2S+uYnTb/ySnVQL6Tgun+vUEE8vtZKThU9NrY0sulw0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:41"]},"IP":{"Case":"Some","Fields":["23.128.248.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::46]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["YANyOAJKnzBdtdyXUG1kLPodZro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSZfriAPZj4gpFDF3yuAdOMozh2d0sDrQ2TGwhqupnI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:23"]},"IP":{"Case":"Some","Fields":["172.104.79.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902:e001:116::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ashpit"]},"Identity":{"Case":"Some","Fields":["X/1rq7cbtWNyyDEXx+Ukjrv6xpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["76TmjFK2ITePCdhJf0DFJpgYM1uElFrSp4xB3bNogcM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:02:49"]},"IP":{"Case":"Some","Fields":["87.106.192.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["riseup"]},"Identity":{"Case":"Some","Fields":["X/HTo+OONky+JiL8Mw8rEMrBNj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fy9rr3wb3SVoNuV7qku0DEMdXUvVJUQfh3DvNZ/CuXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:00"]},"IP":{"Case":"Some","Fields":["144.76.162.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jJbzwynG"]},"Identity":{"Case":"Some","Fields":["X/AtQRPwpoiNCi7mxXxhoVi3VQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7LKM3cJt9aXVTHWW/svOE678c3/OzTa4A5cF2PcnmFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:04"]},"IP":{"Case":"Some","Fields":["37.187.96.84"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:2054::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0294a90e"]},"Identity":{"Case":"Some","Fields":["X+vA2KbVEbrGnc6v4M8rjfvUfp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AmvVjbRNI33jTvdTVMteEBA0c13LuazzcOjp9wyOEQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:20"]},"IP":{"Case":"Some","Fields":["90.212.217.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr238"]},"Identity":{"Case":"Some","Fields":["X+ua7CiR1AQ1MUV4enje1AkxptY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbQDj0loC1nehR1Z7/jJaRIBqjwMlOMrxxwwVOYbQgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:23"]},"IP":{"Case":"Some","Fields":["85.208.97.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kohlhaas"]},"Identity":{"Case":"Some","Fields":["X+g60Qa0mNWj6npI+3N0mvKJfls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S4VYJ4DZlPP21dlP24TS84J+opbMnP87iTG3a/9v1WM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:55"]},"IP":{"Case":"Some","Fields":["46.29.250.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["linsaac2001"]},"Identity":{"Case":"Some","Fields":["X+YTjWDgk6fP15pCDcGywaLBu+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZFtnfB37y0VqY+qjVgFEzSZWm1hRzFRvf3SuJ4nOMv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:31"]},"IP":{"Case":"Some","Fields":["172.105.185.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:92ff:fe9e:7fde]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["zer"]},"Identity":{"Case":"Some","Fields":["X+R/v5GhM2ZJvnsP98HZgfES988"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cI8Iz8EJ6zT10tsHLZmBvv35PcpProKeub65T4lVlpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:32"]},"IP":{"Case":"Some","Fields":["167.86.122.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ji4ka"]},"Identity":{"Case":"Some","Fields":["X9wMrYiyZ2B6N+w8BlTG0d02Oho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPOjqgCo03o6bTZM8jDYfaCzEYje6BrAtZB5Ly4aTRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:32"]},"IP":{"Case":"Some","Fields":["78.130.248.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["exittor"]},"Identity":{"Case":"Some","Fields":["X9Gk5Vfb2vJW3KfX3QRBZEDyZz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yZVS+hrx868DMnvt3rqKKcItwwRalXlKEHHSU3BL6WY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:45"]},"IP":{"Case":"Some","Fields":["101.58.180.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:410:b4e9:0:c5a2:31e3:a45f:116a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nuker"]},"Identity":{"Case":"Some","Fields":["X64oz00cUgNB7hBL9yUW9DCLlIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJUx2N39ZWnolV4blq5zpa3BgDCoQ4dQ0mwGEqhshRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:20"]},"IP":{"Case":"Some","Fields":["148.251.236.209"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:34d0::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bananenbakker"]},"Identity":{"Case":"Some","Fields":["X6eUvzAa815K7Rhek5y6nSz8I2A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["exQnJohbc4M/pa+M/D8dITfeoENYtgTZaXRfjKHkUfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:20"]},"IP":{"Case":"Some","Fields":["192.42.132.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:2132:192:42:132:106]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq02"]},"Identity":{"Case":"Some","Fields":["X6dZb7K6LIiTN/i4LdcSe7skDU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7C4DT5EVXLEd3nnBppvq1/5BvNKF0LD6AvDPxfPOBWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:34"]},"IP":{"Case":"Some","Fields":["193.32.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["us1surveillancelink"]},"Identity":{"Case":"Some","Fields":["X5YkHK/2DutdT5tsBNYp7+8VWCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/fQoxKS5RNx2CkCSNCS8AE4TvjEwiFqZ4xd7RGM8/rs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:05"]},"IP":{"Case":"Some","Fields":["71.19.144.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe1d:5257]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vandergriff"]},"Identity":{"Case":"Some","Fields":["X4dc+34u0NJOhaWouJBKNlCrHtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HTTQDtJjSYEz+pcshCK03JAlTw4AkQg8DkIy1NPlMsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:36"]},"IP":{"Case":"Some","Fields":["185.100.85.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schwabentor"]},"Identity":{"Case":"Some","Fields":["X3RIxbZdrwOeeAe73UjY+pHIwCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pqynl9gvC4dcBtuwEdJKx024e3cQe2KKDc5l6d2CMC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:59"]},"IP":{"Case":"Some","Fields":["167.86.119.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Poseidon"]},"Identity":{"Case":"Some","Fields":["X2w5qU9VN7kZWt0b3kXRj9TH8jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["amVk9S+jfPwgcHakisJ8vEmEbtR15Q7FnUWd5RaGbzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:01"]},"IP":{"Case":"Some","Fields":["100.34.142.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PsyloNet"]},"Identity":{"Case":"Some","Fields":["X1pZ4+ywmHQH2RarveYGE/g+oek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BydLJDNpeC0axh++s1womeLqzYoDJ9NWA76VgYtUKA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:07"]},"IP":{"Case":"Some","Fields":["78.37.138.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN7"]},"Identity":{"Case":"Some","Fields":["X0zRIJmvIPr5rf3OxlMWo3bQIBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y4XZgaqvrH4TAXxHDxzLMi7ZNeReNZCb2VfJ1GURxWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:00"]},"IP":{"Case":"Some","Fields":["199.249.230.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::118]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Boro"]},"Identity":{"Case":"Some","Fields":["X0vLxuIK4HQ0DQp0Pm8upLUbCcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z4v0us7K54boT0rep6Hf1Jk1r3yS4jm7CdgvQ06vjv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:08"]},"IP":{"Case":"Some","Fields":["87.120.8.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["Xzdhna7klrjTfVs41cUNXkFpJD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wDFAwT/sdnGqGkB1TN4pO9GClO7KSKYjxp3LMPZsKDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:16"]},"IP":{"Case":"Some","Fields":["88.208.215.96"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1ee::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solace"]},"Identity":{"Case":"Some","Fields":["Xytu55mcajmS0+XIKYmSxcKN6zM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OIliiLouILAnD+iz4FE5n0MyTPRdQhbUUVy5kkHJROA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:33"]},"IP":{"Case":"Some","Fields":["195.123.214.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire61"]},"Identity":{"Case":"Some","Fields":["Xydqb3qnSvsq8QDq2ijHpvSLpQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wi8OYrwNZKbdFPwHlzCs4homsvUrtYy+0FpcEu3PLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:36"]},"IP":{"Case":"Some","Fields":["91.143.81.212"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efb]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ooty1991"]},"Identity":{"Case":"Some","Fields":["XyTyfHba0DtXcX1cTf40GlEpSuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9HdWwIA9H3OgyDlp83VKtOB80JGjcJPLXnE+vMs3ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:33"]},"IP":{"Case":"Some","Fields":["38.100.216.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:a:535::2]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Meganero"]},"Identity":{"Case":"Some","Fields":["Xx3JEYY0JpSe+EGnYGeDbyaS4Z4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z0a0LvWFQn2sbHKV7cfoiTafXRzrxJNCvU0y3L7WH24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:46"]},"IP":{"Case":"Some","Fields":["93.95.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber29"]},"Identity":{"Case":"Some","Fields":["XwznxjWQsp5il1DpxbzfVsQNaJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r0+rIWw3eRl510e4QI1dmc513lxr302v8JpFALRcxWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:13"]},"IP":{"Case":"Some","Fields":["185.220.101.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::15]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["XwHyTWDZ5u6zWF1Pz6jt62zWHrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/0qNyxL+4z4RtKSzgU+adtaFV71nGw6xRnjPNVff1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:27"]},"IP":{"Case":"Some","Fields":["23.128.248.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::30]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClericalChanneling"]},"Identity":{"Case":"Some","Fields":["XvZFC+gca1Fim0fdabOC98tILCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJMZkRWY2WrMTVAhI4NFWmuE9UVJ2euOhByX9/vl0+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["24.53.51.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itrickl01"]},"Identity":{"Case":"Some","Fields":["XvJVnqulyiwygEZjVR97JDRfZ8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fll5Mjb5bAHBWYb0362LX9eL6GPihEw/IaqyWhUWzYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:53:36"]},"IP":{"Case":"Some","Fields":["37.120.165.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:4620::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XuAOgeKJ1IxmXVsER8PvAY9KDJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy9qPUA+0pQ4kMjaA95LATXgihBDZM/IuA+ifo8DwU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:13"]},"IP":{"Case":"Some","Fields":["23.128.248.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::d8a9:b5ff:fe30:737f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyNEtWorktor"]},"Identity":{"Case":"Some","Fields":["Xtt+u61XgvzBRxKVBckrmtFHXE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3dckk4taCSqQ9PtL+4KS9zyIfU9eRsZ8B6dqOTNGeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:35"]},"IP":{"Case":"Some","Fields":["82.209.247.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyRhino"]},"Identity":{"Case":"Some","Fields":["Xr9n9xcUZiq/db+LfmnzMPV6crI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9J/aZqy/P9VGNqwgtnB7VBs/lcfQVhAwJuXAsfneqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:54"]},"IP":{"Case":"Some","Fields":["172.106.17.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowDog"]},"Identity":{"Case":"Some","Fields":["XrpKn0g+B/1xe6gd1vc0SvgvfV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yxj0o+DsuwaMiEbopHswyKCczdBe4r7jB3gtcag2qqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:28"]},"IP":{"Case":"Some","Fields":["178.73.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1a28:1251:178:73:210:118:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=940"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNodeChile"]},"Identity":{"Case":"Some","Fields":["XpwmyDNLfMZPhJ7iDmxm7afL8dw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLpOdtzmIK7B6NIfEzamdwdt/aDyNDvOBWUTx09K93k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:57"]},"IP":{"Case":"Some","Fields":["45.173.130.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mhack1"]},"Identity":{"Case":"Some","Fields":["XpFWnfuP7CtazoudfQwXsse+HAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ok6IXxTTH+Iu1uIZzpklToX5MzTxFYvP8f2BMNuxt5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:08"]},"IP":{"Case":"Some","Fields":["5.255.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousOnion"]},"Identity":{"Case":"Some","Fields":["XotJtmG+a6Ysfjj7ar3pFRn9Ycg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1b4x3ZeVV5LwFrsBfAfICLLSAJcSxk5Tv0Vd4cZUtfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:32"]},"IP":{"Case":"Some","Fields":["87.64.17.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["XnlbGQYfYaE7JIh6FKHYHPja2Y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1I/QQaVL3Paf8DBiB+qwfRPxvf3TaEXxbe4PpPYz9t0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:58"]},"IP":{"Case":"Some","Fields":["23.128.248.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::85]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepThought42Bridge"]},"Identity":{"Case":"Some","Fields":["XmgN4pbEpiwSqq4oeskqJ0PgzU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSqlXEKipKfs3hPLixvWTJYPrlhIXPDMvMXElPttMcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["109.70.117.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mchxuhg"]},"Identity":{"Case":"Some","Fields":["Xmdonvdjc1ASLe58ZYf9rTdKyvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HFcVcXxi3LaYd7kYg7egVkQ2Awohuq0LhtFC0nTMkoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:31"]},"IP":{"Case":"Some","Fields":["77.185.112.133"]},"OnionRouterPort":{"Case":"Some","Fields":[8091]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondagon"]},"Identity":{"Case":"Some","Fields":["XlK+oiEwWY8gDQXEK7ZnCcJOj2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HdjzYtAbQQd7P3q7TG1/aws6HCsFMMEuNvrVPqRdPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:03"]},"IP":{"Case":"Some","Fields":["185.220.100.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:9::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Xk6+QHjfvmykZIxNMu6/5tgiyss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8kjM5co1EobngJWLyf4t+iyWZZIXoNbPAbZj3K7PEg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:57"]},"IP":{"Case":"Some","Fields":["185.194.142.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Xk0ebTFBPczBSKgFAiRXjLvxKIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNmu8wZQfgd5AFlDcdcP+t24wPD3RvZatz9Kkovj0UM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:10"]},"IP":{"Case":"Some","Fields":["37.191.194.248"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fec3:62f4]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["XkDlUpEKVhyS/qoEJ/OvByls6eA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4uwSl+cFMZdFyBKUgq1lFrOEVL6nCehNsFuRNsJh16Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:50"]},"IP":{"Case":"Some","Fields":["107.189.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["XiJAYfDkchQpAnoTDbYH9P3Q3+U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["45ESmSxI6PB8S7i4CUGa8Tm+kuDyYvQgiU8Ktj4v09M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:52"]},"IP":{"Case":"Some","Fields":["185.220.101.61"]},"OnionRouterPort":{"Case":"Some","Fields":[10061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::61]:10061"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frodon22"]},"Identity":{"Case":"Some","Fields":["XiE0zo06O3ql5Ze47+PmWbA8ArM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FPe+wxrOoRnbzXV2v6GWTZsfa0IOkY40Y6HCSOAvgSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:00"]},"IP":{"Case":"Some","Fields":["163.172.179.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47b0:14b::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TitounNet"]},"Identity":{"Case":"Some","Fields":["XhFK1ghCjCOzjMx32iLkzQwn8s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRgu130APWZI9o77duFVar01N0jRDpvcp4F7PH24gtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:27"]},"IP":{"Case":"Some","Fields":["213.167.242.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc2:55:216:3eff:fee8:6e97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TimsRelay01"]},"Identity":{"Case":"Some","Fields":["Xg1bK0warOR5YH6E7BvOmIkQq0Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mwLQBolWNc5XDr1qo103rr/XDgTuPF73f8evmCAGbys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:42"]},"IP":{"Case":"Some","Fields":["89.190.24.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DashRelay"]},"Identity":{"Case":"Some","Fields":["Xf3ooK4Tds6tqIgqM9PCsnuIIB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FG0Q7lSgoGNXycBQrwFShy07N2XU9YLmocBOd2b0v/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:59"]},"IP":{"Case":"Some","Fields":["78.46.47.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackHuckleberry"]},"Identity":{"Case":"Some","Fields":["XfGfr8XBxJ40ZzQrTDqA1P8jsEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0onHg6c4AQR6dmG5dFM1X0CNSTPaWLDhs9FHvA20TSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:43"]},"IP":{"Case":"Some","Fields":["64.180.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[50003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qTorantino"]},"Identity":{"Case":"Some","Fields":["XerYWNyWBhdoZaYrpPizjP2imBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HbShAdsORfNuQ2rjKLkIY8S3jq2BWXSp7bdU7YfWvPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:17"]},"IP":{"Case":"Some","Fields":["103.29.70.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:92ff:feef:9278]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlLV1"]},"Identity":{"Case":"Some","Fields":["XcQPU1ft9ICakBCCgXIHLJWnNRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wCkfv/OB1yAGeBEb0Ua6TS3RSEB9YLhWl9CMcBqw8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:49"]},"IP":{"Case":"Some","Fields":["195.123.209.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27ac::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chenjesu"]},"Identity":{"Case":"Some","Fields":["XbmuJ6ROt7R2zASmbGenHJegAeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O3tKCIbjW3795LQ3YFUh+xl9SfQiGcpoJggse+SK+N0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:43"]},"IP":{"Case":"Some","Fields":["54.36.205.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Xbhnv+5im70nRuc4GLohViIKueQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d8uYzr1YVZj9YAIz5qn12RYf0M9akn418EWg/U/Z110"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:25"]},"IP":{"Case":"Some","Fields":["23.128.248.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::24]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prserver"]},"Identity":{"Case":"Some","Fields":["XaabCGuDP8Hfzy2ci5w7AxN8fv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TsLJeJHMqDLCCevRHfcKR756lplHGltXjpDFqp/0VEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:52"]},"IP":{"Case":"Some","Fields":["45.33.13.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9008]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["XZioovYPJsZeNPQgW+dyGeEO+wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fiHOEaCxibU5JxnRhw7HlskaS1zCxpwBQRWB67b7cX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:46"]},"IP":{"Case":"Some","Fields":["37.120.186.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:23:489f:4fff:fecc:5244]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["XYSQDb5tY2VoSpZ1uBporOlXemg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xw4BuVQ6hx7YhR4fhnG7N5/XJI+qDpshAP5k1GmRoqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:28"]},"IP":{"Case":"Some","Fields":["104.244.73.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f7ca::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsaciabrb"]},"Identity":{"Case":"Some","Fields":["XXjX0qFva00xZv2dH9SnFbFKVt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PhWePeSN/SeW9NOdZ4iO9GDFydapKNTL8f5EAq/eL4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:44"]},"IP":{"Case":"Some","Fields":["96.234.150.200"]},"OnionRouterPort":{"Case":"Some","Fields":[8500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:e01f:700::20]:8500"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission07"]},"Identity":{"Case":"Some","Fields":["XXZXcLTbEQ2IeHRXl4q0AIz2XKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ccNLLOwY3mEw7VTAg0KhaO5WAlYm8yTmqHKeHSBQErU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:33"]},"IP":{"Case":"Some","Fields":["37.59.76.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XV+N5IZ4KYl7unwsWYKqdYEFuJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fOzgqX6iDKGs94cfXVmH71ihL/OkdSwJXu4xiMWMZdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:25"]},"IP":{"Case":"Some","Fields":["87.106.169.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:8710::1]:9998"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra43"]},"Identity":{"Case":"Some","Fields":["XV3f8puWzFZqp0ZjaGjrB/l95gw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bB1inlfoS+jRixJJhPmEcYtCmRRU1QwuS4+irqclSpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:32"]},"IP":{"Case":"Some","Fields":["107.189.30.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra93"]},"Identity":{"Case":"Some","Fields":["XVda3RCN278X54rYyyZ9bB8zggY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpAX38tMP4tczagvtp1FGO9CAfUagbPSAcSWtUQVI4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:03"]},"IP":{"Case":"Some","Fields":["185.125.171.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:199]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ziggy5tardust"]},"Identity":{"Case":"Some","Fields":["XVHJ0mnp1C6GMqvssYXmhAwUJXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VemSm+bB5wcY/tuZQ+7OPA5ECC66zLJl/ZfeZ9ef9RI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:08"]},"IP":{"Case":"Some","Fields":["84.243.66.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoveUsingMonero"]},"Identity":{"Case":"Some","Fields":["XTm8f7iHkrZUgqwu1Qe878vo5aI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ia6VxU55kya1w5+KnACBlt2ONUISaYwG0YYPGOpYw1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:00"]},"IP":{"Case":"Some","Fields":["141.95.22.152"]},"OnionRouterPort":{"Case":"Some","Fields":[899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MoniTor"]},"Identity":{"Case":"Some","Fields":["XTkHMcdwEXycBukdGh0nL8ShyJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h0FtY3Sb65x9Q8Jm0qEon0JYDjJ2FgvYmWtxqdVSbYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:58"]},"IP":{"Case":"Some","Fields":["195.15.243.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::7dd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theark"]},"Identity":{"Case":"Some","Fields":["XSqMqhGdBShyLCQ4NQ+rDI3gGrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M1BIvWgnvdpWqlVjtormvcreTH+MApoFjiu6t4Co1AE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:29"]},"IP":{"Case":"Some","Fields":["78.46.98.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:908c::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anduinExit01"]},"Identity":{"Case":"Some","Fields":["XSYwN/wXVZazo0QTKwt1Xrj7HRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GTKUJ2bqOqTTNGpWeFXDnidtfhUyouflPDclB5Qbd3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:54"]},"IP":{"Case":"Some","Fields":["185.42.170.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XSEg0Kecx0qALV9bv9OjBXc6Ay4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xEFsoFs0WIKxxZoh1OHesB6/Y7ukSWPuuxudvXc1iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:24"]},"IP":{"Case":"Some","Fields":["91.3.206.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber62"]},"Identity":{"Case":"Some","Fields":["XRcBS0DESN4EAwUzNXGZs+PEMR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tiM/VAGQvvkdjWDAueCnv+3+A8rSiWefKqOe5rUtAVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:18"]},"IP":{"Case":"Some","Fields":["185.220.101.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::31]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sabe"]},"Identity":{"Case":"Some","Fields":["XRXje5zifjp6Fbk6oWcPyyfUwKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkQSo8GlXBsHVR8j+rKKoHZNDFqnPrb5h34mHZ5y+f8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:59"]},"IP":{"Case":"Some","Fields":["185.163.204.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["XRQAr5gvjQ2da7dp3KOtxWC/jm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dk76IjWlc4Wm7jJrYR8sHwxqTfREqa4zdbixiawWNuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:19"]},"IP":{"Case":"Some","Fields":["176.131.113.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktor1"]},"Identity":{"Case":"Some","Fields":["XPNC271hcL7gDNUqy0B21VEIXn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ODRhC7S7++F4V3J1Uf+nBfWZAUPNRryLnFpukS/UBZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:19"]},"IP":{"Case":"Some","Fields":["95.216.64.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:cf::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["polizeierziehung"]},"Identity":{"Case":"Some","Fields":["XOOtitBK3mbAA3o89ff3pA1Iogs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfnbJnUZbf1vP4Z0oRT62a20aMdRLna3QD0tBxR0a+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:24"]},"IP":{"Case":"Some","Fields":["95.211.138.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kikimora"]},"Identity":{"Case":"Some","Fields":["XN7JQMFep9q7+o9YzYlFuHXagMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wVqlY97c7A63+hhZAwvyqSWOWTDLI4mBwt08GRowSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:36"]},"IP":{"Case":"Some","Fields":["23.250.14.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bred"]},"Identity":{"Case":"Some","Fields":["XNYAf7buSFR0QJaAuQ8DTmuSWjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X8jszPd/4jl4Y7i6yqeKmvxGr53pCunZjRfY5DnkNK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:23"]},"IP":{"Case":"Some","Fields":["107.189.14.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:efba:dead::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WaterElementX"]},"Identity":{"Case":"Some","Fields":["XMc4ULoZrzkNele78sHvS9MpC80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEK5oGJbGEDRaVTmWtHWkrvcHJ0dzWz9cb3X9FKB9Bw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:20"]},"IP":{"Case":"Some","Fields":["194.15.115.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH103"]},"Identity":{"Case":"Some","Fields":["XMCvNFQiC4JzkEgnZhsuUYMvrEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U8T1rW5y9uit35gGoR1mJBZVRVGyCta2pJBLzfMuJgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:54"]},"IP":{"Case":"Some","Fields":["192.42.116.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonfly"]},"Identity":{"Case":"Some","Fields":["XL1FOUVzgoKRyP6XgCMv39DSAt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h6kSVu5xOOXXBZ2ZyUH0oPJj2YAQFQFzKfuVyPhariU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:34"]},"IP":{"Case":"Some","Fields":["192.99.13.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:60:3e30::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor5"]},"Identity":{"Case":"Some","Fields":["XJ/8+ApQUZt/vXBpN2sWwvPLBX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VQkHjlg1ZvECaQMzv4egQf1RfeeP58Wqi7W225Wi7r4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:42"]},"IP":{"Case":"Some","Fields":["107.173.167.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["affectiosocietatis"]},"Identity":{"Case":"Some","Fields":["XJpm9Apj2cjflwDm354f1H2K0xc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y68do1ZPOJpPDiJTgnTuG/7JI/hVMew9MtW8pwkm4Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:38"]},"IP":{"Case":"Some","Fields":["91.121.160.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1:e106::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charon"]},"Identity":{"Case":"Some","Fields":["XIvIKcQ2cxtQ7YZXAZ6Ent92sJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qdl1OrP17gKzVR6QyrsLJ1Zx0oOFrqBNs1gqndZT7Gk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:02"]},"IP":{"Case":"Some","Fields":["51.222.194.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:6e5::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor1"]},"Identity":{"Case":"Some","Fields":["XIuBGId3jc9wXz058Z5AohiJRR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8g8btiwvhPVzI9G98COaBbal4R4J0nPyZaXFAJGySys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:32"]},"IP":{"Case":"Some","Fields":["51.15.50.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1125::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["XIagmUakngmtZKFGNt/5F0ZRUXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CabR7EstU1/zdA0O2H6Eq/jDyF4uwfVaOmDTDac8At8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:07"]},"IP":{"Case":"Some","Fields":["51.159.151.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DragonMaw"]},"Identity":{"Case":"Some","Fields":["XIXf22xyuqR1vnwGGMSBnw96NAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/VruY0yeDT5kXAkewk313wzZBJ5K1D0GpaAZ7IR8oQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["85.117.235.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700::6:243]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x67726579"]},"Identity":{"Case":"Some","Fields":["XIJEMVGj+apxtiPCi8bj0T9dDe0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0UZ/tlcRV2LnqBbR39gEd8G2XdGhb60MltoWfC2EdvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:46"]},"IP":{"Case":"Some","Fields":["161.97.133.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:3962::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Droutnutch"]},"Identity":{"Case":"Some","Fields":["XIDLVXyWytgO+OxqtVhlMp33Sxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y89BxFbfmMa+NsZpPvyNl3xAJ44u7lCy5HPkJ0jZrro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:30"]},"IP":{"Case":"Some","Fields":["88.99.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:670::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeldenTOR"]},"Identity":{"Case":"Some","Fields":["XFc54C3TN/sbcnGROTanbUl0Mj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQtFT8ad2YXn290Kvg7C5NXHtoPel/08gEfbaKeB9ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:33:33"]},"IP":{"Case":"Some","Fields":["84.188.98.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Computer147"]},"Identity":{"Case":"Some","Fields":["XE2cfZL7/S6glY8CQNzvb6COTq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SuraxkkryUcfdTz6ebMBYy8JY0g03FeDWlgA2nFW7t4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:04"]},"IP":{"Case":"Some","Fields":["135.148.54.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwell"]},"Identity":{"Case":"Some","Fields":["XD8yF/mdbPpxHZQVr+0QA5cSAa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L94ldk3rdB6yDKJxVf36MbadkplxBLSQRGcN4o/c+fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:33"]},"IP":{"Case":"Some","Fields":["185.112.146.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catapulta"]},"Identity":{"Case":"Some","Fields":["XDaTwOe1N1U7qzW924Hd0k4Ve28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6owsj00sNxP02pT59ncmXiYLo3ScojM3NQDRjACbY5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:58"]},"IP":{"Case":"Some","Fields":["172.106.10.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hunter"]},"Identity":{"Case":"Some","Fields":["XDNEsHjOTlQbkQy0FtQ6RdXMk0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jl1sxSAfOGi5+cZ6nw9b9+F/lKgz7tKwdGWIOWmERMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:23"]},"IP":{"Case":"Some","Fields":["141.43.203.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Teuntje"]},"Identity":{"Case":"Some","Fields":["XBJKJ//WWMt2FlcY2r/9QJP1yCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BsSoodSGOoRkhVAZz3Kyklx668zW1c7eQisL8Lfg/nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:51"]},"IP":{"Case":"Some","Fields":["192.42.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:113:192:42:113:101]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay20at5443"]},"Identity":{"Case":"Some","Fields":["W//o2uVrHaCQu7e678kRsQLQZfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JqVnQZbmUDhoSXR/TdawWllLeykL7Lg8hylAXiAptWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:04"]},"IP":{"Case":"Some","Fields":["140.78.100.20"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["W90GM+CsCXY+SWQdzRujqzohqoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hfSiiP4LG+9R294DUfHt1CaMpXVtOHkccU7f8kkInEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:17"]},"IP":{"Case":"Some","Fields":["185.183.157.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lonesomePolecat"]},"Identity":{"Case":"Some","Fields":["W9qt0Caoa7L49+yIL/qkMmshMEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rdrGqsjvDIBnr5SsSFQZAC2sUTdb1/zNvSsUV5poC4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:16"]},"IP":{"Case":"Some","Fields":["162.220.62.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["W9G4PkpoTH4NfM5Sra8Ew153heQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwkNhXYMmlNf9ihtPah3MPQMAQYKhBwv+c1ECiCwAXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:41"]},"IP":{"Case":"Some","Fields":["45.9.149.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0000Userzap"]},"Identity":{"Case":"Some","Fields":["W8xWmiTc2R8cUYo+CKzloFckOMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtuTc65H3c4wyF52qFtEEEj78TIuNXfgoph9nn2WUxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:01"]},"IP":{"Case":"Some","Fields":["46.38.250.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:5260::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PleaseNoFeds"]},"Identity":{"Case":"Some","Fields":["W8Y6vglaP1114KtNhUMJWhaShkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qciGSc3LuZ9RU23TajJCi+hF/b6459N36mQqYFGxzPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:07"]},"IP":{"Case":"Some","Fields":["194.166.129.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedRadack"]},"Identity":{"Case":"Some","Fields":["W8VCvsOOjTc9IcannMk0jcKL1iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ulE82Pvn1RSrk6U+RufcrX88uTrDP2Q4uZAHzbvWFwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:14"]},"IP":{"Case":"Some","Fields":["23.154.177.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xDEADBEEFCAFE"]},"Identity":{"Case":"Some","Fields":["W65Ite+nF6RkjzryZGfMu6O7Za4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J/x73vlybjmVPn0VDQpsNxGqHCxbFjqSL5KENbN0Z50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:09"]},"IP":{"Case":"Some","Fields":["94.140.114.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::4d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubflower"]},"Identity":{"Case":"Some","Fields":["W6PCPop/RfoqfR0oD/ireIpeoBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ehf+4Ed7DjbzNHTu8nI6Ngc2A/0EUwAgpF98itEQTC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:25"]},"IP":{"Case":"Some","Fields":["185.67.45.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gurke"]},"Identity":{"Case":"Some","Fields":["W6GbXVqwy5746jPad1hbdUSUALA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uN6dF35f0TJCaBElLcx+uL2CKi5nsYRyF8M1qThkk10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:30"]},"IP":{"Case":"Some","Fields":["109.70.100.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torneverafk"]},"Identity":{"Case":"Some","Fields":["W5er5EW0Cbd7Zn2e0Fre3dOGuSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlB77vazNajsl0AjEAy9isYMTxjdlkBJ1ToY7rZtOSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:35"]},"IP":{"Case":"Some","Fields":["31.24.148.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:678:3b4:100::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["W5CG1L+56jbJWJfa7XL8OXOEe0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q9DfCFxr8MfH2zRVpJxJwASFoMOw6VZkU7Hoq2tkXSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.243.218.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:27]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["W4PcmDQGZRoLT2rhlAeTzdam+S4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoE5/8jNGpFnBnrQYqUAzvPtyObGFuErquTvOxQpP68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:02"]},"IP":{"Case":"Some","Fields":["138.201.55.77"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:1045::5]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["W36p7e58FEq8KOuGxSwTU+dToAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JYJJ6xfZpRc1XtfWdOzy3tE4nfyNmQ+NALiowF16/p8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:02"]},"IP":{"Case":"Some","Fields":["185.220.101.34"]},"OnionRouterPort":{"Case":"Some","Fields":[10134]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::34]:10134"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra21"]},"Identity":{"Case":"Some","Fields":["W3xXfd68ayw5tVNk9OrWn+gYEGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8q4/4cTWqm56Ugvx0v4+1p1owvVAlLc1ntnrvEaLkBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:23"]},"IP":{"Case":"Some","Fields":["193.218.118.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::90]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dhrly25"]},"Identity":{"Case":"Some","Fields":["W3X/crmRlX+/HdGO1zTwhXC1qAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qG+btqBke/fGvV2atdaz5liKCGl0SrNyU/U6Y5IQBf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:57"]},"IP":{"Case":"Some","Fields":["212.21.66.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bf0:666:0:1c0c:49cb:1d9a:a032]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting23"]},"Identity":{"Case":"Some","Fields":["W3VM02sZ/DaLh/0/HOtSmwVUXwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["erDo4dIoO8BfOd91FYIj8FkfSsWO5FF/DMTn6ibChpw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:16"]},"IP":{"Case":"Some","Fields":["185.204.1.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mirondalse"]},"Identity":{"Case":"Some","Fields":["W3EMfTCTFgjutWIsJ52wa5ACPiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8V6aJM9XQLydw1Y0AwQKXcMHvuchnmnbkZn4ZSjRcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:48"]},"IP":{"Case":"Some","Fields":["185.103.135.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[9231]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["W2/M4Qm7uOOxpj7DRgKrbiQ/l80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OogJjrpj2gAMoMjdHynW2LoiXvos0nLBAYXE02yEcGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:33"]},"IP":{"Case":"Some","Fields":["23.128.248.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FatalUnicorn"]},"Identity":{"Case":"Some","Fields":["W22rFRbzMS5/Po2s+qvHMqXfZ8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lKy5MC+wniXTKWVhhWGNHExx4oiDYhxfiMxW5BePaFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:35"]},"IP":{"Case":"Some","Fields":["94.156.175.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LauchRelay"]},"Identity":{"Case":"Some","Fields":["W01rhFrDzJfrMWnQx3RGk2QyKUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rTXcYXihBbcELkE5kEmvieHbDOCZ2DkicVdCH4/FJy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:51"]},"IP":{"Case":"Some","Fields":["148.251.55.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:8174:dead::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorPi"]},"Identity":{"Case":"Some","Fields":["Wz8N3CW4oK2ikBOfwbE1WjInHis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZI5Th4EnjcDsuxQLFE7t7x1L6v3UntyNPs4+1nZ5AI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:46"]},"IP":{"Case":"Some","Fields":["152.67.205.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShinyTsunami"]},"Identity":{"Case":"Some","Fields":["Wzs+CbpfHrb3KgT+rYHZrLiPiTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TUwvISwUmpW0LN+eo8pxrgphbX2XokOQP/m/E3HqRYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:20"]},"IP":{"Case":"Some","Fields":["93.99.104.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["WzJtyPy/4ru84oBjmOV7bQVTnsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["85p2Il2wy9WRW2AA3BOncbW5zF62XjgKZjRv2rnhaW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:46"]},"IP":{"Case":"Some","Fields":["185.220.101.54"]},"OnionRouterPort":{"Case":"Some","Fields":[10054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::54]:10054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay03V6Rocks"]},"Identity":{"Case":"Some","Fields":["Wy4qPrBl9oQgoDqKjl40u0rPRNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fx/KGtr/NzXGIHrNQqd8PCvsIDeQCo0V5G2c88UhBfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:21"]},"IP":{"Case":"Some","Fields":["185.170.115.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ad1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WyVljhwlbN9M9s8Uvlxt8E/8O+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kv/rBET1dZWDJi0sKjv2K31M/TEXBG2+/cN2d9ml9OA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:47"]},"IP":{"Case":"Some","Fields":["5.39.185.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:f640:0:8::2:70f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fastlane"]},"Identity":{"Case":"Some","Fields":["Wx8NrzeKH6/P1fqc3GbRAj3AJ24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLzCGiFoHGoguh+PyBvYVMQbyjr2rKo3HrOwJz0zPcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:19"]},"IP":{"Case":"Some","Fields":["178.63.25.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:608d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisFamiliaris"]},"Identity":{"Case":"Some","Fields":["Wx5f1icn8CG1ruZVTlfuWEKQnW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rdcp47BkmikndhXlIajXZPgNYH81MJT8f+4TtXhAEpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:10"]},"IP":{"Case":"Some","Fields":["135.148.100.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay23at8443"]},"Identity":{"Case":"Some","Fields":["WwehzqQ7ypipceR2EcDw1hsYdh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OCT6BnEaN2bAo11jOB+kmZ/ggDMBpO+9DsaJTABG9m8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:56"]},"IP":{"Case":"Some","Fields":["140.78.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedTor"]},"Identity":{"Case":"Some","Fields":["WvtQLSYLzMmXTGV+lWuHjTNLzMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc1CT+3q02jMwXc9sJFAqqe3whDY6ZVWJ4t/0oP5ZrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:34"]},"IP":{"Case":"Some","Fields":["23.154.177.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whitenoiseRLY"]},"Identity":{"Case":"Some","Fields":["WvnpzFkD8R9taqYB6yEuVprmbJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8M+tczdjzU7II2oBYfePlfIb/kHc5jv9Cb8edl8JDYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:06"]},"IP":{"Case":"Some","Fields":["159.203.29.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::2bf2:2000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RedStar"]},"Identity":{"Case":"Some","Fields":["WvNjYwvf7t2m9Skne13TBZVhANo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dHhIKcJxKxyhJl/s/wnttn6hRj3M7hWsCGixIiLzUhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:48"]},"IP":{"Case":"Some","Fields":["95.88.176.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WuqjL+aWg/ixJx5KMx8Wohv4CLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0rQCDg+lr+6QwhqYIHVYpqt08vTUaPwLjmOB0jxVHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:38"]},"IP":{"Case":"Some","Fields":["2.207.47.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckDIS"]},"Identity":{"Case":"Some","Fields":["WuXD7n2Ys7ZM1R9yo1bhgUcdWfc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iU2tcYDbnWC+3mjox5ba2PUQQLAPdIGTaz2O7w3kaO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:38"]},"IP":{"Case":"Some","Fields":["157.90.226.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:aff2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra36"]},"Identity":{"Case":"Some","Fields":["WsxZ8xF/H2+tjIn0aYI8tIvbXS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEaG1WO0IgsUoulQW3sCZAqtc//nxuQffwLBS5VSx1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:27"]},"IP":{"Case":"Some","Fields":["213.164.205.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritoinfinito2"]},"Identity":{"Case":"Some","Fields":["WsYdwLUcg6wuZV4GtzluzX003Ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6E3JLFxKq9+K3tcwxy/rdOyU7bkidPERvl2LCdQSF7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:54"]},"IP":{"Case":"Some","Fields":["187.207.96.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9130]},"Address":{"Case":"Some","Fields":["[2806:106e:19:2f73:2ca:5aff:fe00:2]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllTheWorldsAStage"]},"Identity":{"Case":"Some","Fields":["WqY3AgWqYRztlnvbTY68udXbV6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YZSsld87V3Hzj0bMUIVEwI7o35iy4EqZ55E+b0ZbX9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:30"]},"IP":{"Case":"Some","Fields":["107.189.1.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ef7a:391a:8c71:a2f1:9506]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AcMNPVTorBox"]},"Identity":{"Case":"Some","Fields":["WqKsNz0TLiHxG/+ZFnr5K/HLfEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lrMN9fqGdDJLRT7Boucaa3M9GGK3r2OP9Ckv5Zk7Z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:36"]},"IP":{"Case":"Some","Fields":["188.226.222.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:0:1010::ee:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Wp7ShlOYBS85MVOloQtCqsOnt9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mDB3P5IvcqsDI+Y0mmreeyaZtCN1h/0TgeB9Gy2fGDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:56"]},"IP":{"Case":"Some","Fields":["93.95.228.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LanternRelay"]},"Identity":{"Case":"Some","Fields":["WpzSfwbwFPh0NZoBc9j76QG5MYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jjwBdZ7YiiFV//IRIGRbVmJiYDM5gyNZA4aZZdNt6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:59"]},"IP":{"Case":"Some","Fields":["76.189.140.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CryingOnion"]},"Identity":{"Case":"Some","Fields":["WpsuxMZS7E/3LIxnOTe+J7NIZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+lMi7eqE81lBqFkPSOdgmoBNWfndY/s35f4EM4aLv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:21"]},"IP":{"Case":"Some","Fields":["5.181.51.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:3f:12:9460:76ff:fe49:d419]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireElementX"]},"Identity":{"Case":"Some","Fields":["WpQEya9y2xKt6y/4EOfaEtPWbO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bFkXawXfyeo5jbsJTrqG4WyTtvVY7pXLiBRNAxd/e50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:24"]},"IP":{"Case":"Some","Fields":["194.15.115.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["WoKSkmxeWiRtNbhDpylC/OwjW6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0KQzuyteYGMuie8925KEQ/qf2Lv8Gna6nejlFOyCWUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:04"]},"IP":{"Case":"Some","Fields":["179.43.159.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["Wnm9XMbBKNfY37SWmwJGeU8Rf8Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jobER20BDzapZRSBQ0Tw7YWLE/2ip0UXzrG+u3BO4Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.54.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3647]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kinaugate"]},"Identity":{"Case":"Some","Fields":["Wm/hHbi/yts5W1NtFs+dL1hDbTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i10d7C6V3+pwfohYIAJK0Jk99Y/Lpvs1Z7GBzPU2ovo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:57"]},"IP":{"Case":"Some","Fields":["185.197.195.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCtorrelay1PL"]},"Identity":{"Case":"Some","Fields":["Wmwy5WKutyAlI4zvPSt2OiLlTtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8clu7PqA09Dd6nQWtosXTVcSlowKrclIGJRdP5H6RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:46"]},"IP":{"Case":"Some","Fields":["151.115.38.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1e00:3d17::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["always2"]},"Identity":{"Case":"Some","Fields":["WmrYv7p09kaCKZbsA/00hDU6QbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hoLikPOd8y3ahZZxXp3d6cnMWp9LI5q2ZTB2ywyUXgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:34"]},"IP":{"Case":"Some","Fields":["119.59.110.153"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goodaires"]},"Identity":{"Case":"Some","Fields":["WmSGPC2XDVxfe9eVZ3RxPSBTpYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oywTezq4LQfbhWeQ06eHAOQNmSdgfmUCw8lzraOg478"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:52"]},"IP":{"Case":"Some","Fields":["190.103.176.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterry1"]},"Identity":{"Case":"Some","Fields":["Wl21U6kme0WB3lLxrmMOIW5hXRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5EH8tfgZk1i/7iuYknPncNNyc75SDtcIcZl1Q/zT7HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:48"]},"IP":{"Case":"Some","Fields":["70.109.131.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelpTheUkraine"]},"Identity":{"Case":"Some","Fields":["Wlr4djk+YrLeGN2tOK85L09rHFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZRp8rqOhjhGxw/7PZNVqLGbB/aoTy3HTGTwAtcAyGZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:41"]},"IP":{"Case":"Some","Fields":["49.12.189.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:e546::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["russiafuckedup"]},"Identity":{"Case":"Some","Fields":["WipDE5ECbeFe6ZvReSWDETovgYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rJdfXSeShvSYNBSAB695q6How4Sh72DHybPCj9o05NU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:17"]},"IP":{"Case":"Some","Fields":["89.76.241.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl4tjdevde"]},"Identity":{"Case":"Some","Fields":["WiW7Q7sO5Xj95zWnXAKCJapKE+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvyqfrs67qjD7G0Ou1toFO1EXbwzhBEZtvly/m9RUIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:17"]},"IP":{"Case":"Some","Fields":["89.58.45.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Politor1"]},"Identity":{"Case":"Some","Fields":["Whf0fl9ExVCx83SahUl2bjTCwCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uyhszRzCaUZOfhG51IViH/wAgYVzhUfQnVqcj6JO5jc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:01"]},"IP":{"Case":"Some","Fields":["158.69.217.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::10dd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra67"]},"Identity":{"Case":"Some","Fields":["WgZD5FLhQ75Um6s7/ldfQN29Unw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNFQDD8JfxdPTbcs6NtUT+mv+ENg2jPeYdjIEk6L7dc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:18"]},"IP":{"Case":"Some","Fields":["94.140.114.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSouth"]},"Identity":{"Case":"Some","Fields":["WfoOadzN4Fv7QRCqO+r4P6bKZaY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2I15VpcIu14sAafVohB0Cc6AdghvAvYAF45RlMry2aE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:51"]},"IP":{"Case":"Some","Fields":["193.218.118.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anonymous"]},"Identity":{"Case":"Some","Fields":["WfhzEyMySzOCX/M84E8iGDkR5z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8sRBSSp4DulK3pXBrbb4aFGBRsk+Wst/ZB4yJNx5AxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:07"]},"IP":{"Case":"Some","Fields":["144.21.40.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raven"]},"Identity":{"Case":"Some","Fields":["We5b3AD9m0suhDa7bkq4kTrOoy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["86DGqgNY0tWLUnOksEYGY1o1xlaHZuba7Z9WDc98RyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:35"]},"IP":{"Case":"Some","Fields":["91.51.254.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toronada"]},"Identity":{"Case":"Some","Fields":["We3ROdlVGiW323zdgvEsDDeKksw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fr25OdPrOufXJRVlmJ8yUOPP9ZiJjVK++uWP7ybZaEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:38"]},"IP":{"Case":"Some","Fields":["79.158.148.104"]},"OnionRouterPort":{"Case":"Some","Fields":[50007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mriun46k"]},"Identity":{"Case":"Some","Fields":["Wefg0DIEmqAYMDXkm3xFQWcVTq8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSrbs8RTNuw8NGFT9lQ38scntLG5Na4qorzIcdZhJFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:28"]},"IP":{"Case":"Some","Fields":["114.24.0.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8008]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BananaSplit"]},"Identity":{"Case":"Some","Fields":["WdQbBi8jJNDPqAIkwOTNYpzu84o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqfN9+T+Msro3KHJIYchvGV2sqKELwd2aYIAZpuGSKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:52"]},"IP":{"Case":"Some","Fields":["81.4.109.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spaghetti"]},"Identity":{"Case":"Some","Fields":["WcqW582jCrNsWXtJnISL2EV0XqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1A6ZD7PO1lizr8Ck5L/CIwkESJY2dxzbUriEMjcR86s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:33"]},"IP":{"Case":"Some","Fields":["5.135.177.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hagardunor"]},"Identity":{"Case":"Some","Fields":["Wbo1WIpjNG/maujPZYgYQg3W5bI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEp1JFUld82bMLpgMnDKokjaauKBOCnAPvza0iHMCcE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:15"]},"IP":{"Case":"Some","Fields":["51.77.202.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["WaW6z+MrbKD49ntmIbPouJMSy3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COdR0VpOJmMpoag+Du2AkcXqnXx/xAPtxrBjYJCuQzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:42"]},"IP":{"Case":"Some","Fields":["5.45.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArkGuard02"]},"Identity":{"Case":"Some","Fields":["WZ9tVLtdyNr28zVpmvZpsh/RrzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hdWf8aZm7WI1TB2eQ8LpvAk7f+30nKe8IEdwCa/e3ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:41"]},"IP":{"Case":"Some","Fields":["65.108.247.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dunnosomething"]},"Identity":{"Case":"Some","Fields":["WZpW+rjoqou0Z6tzCtofEjgn5Ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXo+LgAq1ugji9xCxREDdza2BUzw2BHDC6+TUNV2UQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:49"]},"IP":{"Case":"Some","Fields":["88.198.14.190"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[49030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNuc321"]},"Identity":{"Case":"Some","Fields":["WXk4K1sq/lPTpPZY4huXHFRK1TE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QMkM25jX9UFe1PMHag3eeKN0gRPfm9vE0n9UGAIpTfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:22"]},"IP":{"Case":"Some","Fields":["85.230.122.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Playstar01"]},"Identity":{"Case":"Some","Fields":["WXWFi2ofN8zJYCa5RurPCOF3LQ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["natHk1AXIVuzL2abxn/uQgJ1DWodoEGTxGTyRJ5QYzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:55"]},"IP":{"Case":"Some","Fields":["192.121.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2af8:0:b436:f5ff:fef5:a154]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isnotsocial"]},"Identity":{"Case":"Some","Fields":["WWgDCABO0y8E4cVqucaLFMx7W3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gBJ8TLQ87FHK0KjegnXYs73EVqQska7NSkx7QJm6CCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:21"]},"IP":{"Case":"Some","Fields":["72.212.32.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["WWMyNesyiach+RJnqLwrF4p13l0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUSYioFsj2WZfe82lY11ZQTjUgK6FJBrUye/JrQ/eEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:41"]},"IP":{"Case":"Some","Fields":["37.120.165.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilkiRelay"]},"Identity":{"Case":"Some","Fields":["WUgWHD5TnZvfGKA/FxFGRV6R21k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Eiab/B+Q6wEsWe2HE5fAftws39Q02wB6KC8Ogan+BQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:50"]},"IP":{"Case":"Some","Fields":["65.108.129.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:188f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WUGT5R84LjQIDXa17K9ce2fPBe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KI0wz4h1BLwXwQKW04JXppc91fzaow1EJI6buxvUlNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:50"]},"IP":{"Case":"Some","Fields":["37.191.195.67"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe09:486f]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE77"]},"Identity":{"Case":"Some","Fields":["WTQHl4+I59K0UEVnbnw3krwsmZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ch8OgvwtI9G9ErwyG01i7dSeu4ZYg4Jy4u89ls3cHxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:25"]},"IP":{"Case":"Some","Fields":["37.221.67.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:107]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI09"]},"Identity":{"Case":"Some","Fields":["WTNHOjVjwGZsW7gzwdtVPB8pa3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lox05fQxIc6BhHje19+2Mtle0MZVHogEgGsb2KbP7jE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:00"]},"IP":{"Case":"Some","Fields":["171.25.193.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::234]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay28at8443"]},"Identity":{"Case":"Some","Fields":["WSq4A3LbA2X5ojV3AqyXwG5fg1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U7LLlaSKW2DVV5+f/TM+QQGAoCgwVFeofH8OhFM47Ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:05"]},"IP":{"Case":"Some","Fields":["140.78.100.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funfair"]},"Identity":{"Case":"Some","Fields":["WRY8aCHyqNs/omBHLbRmSfZn5a8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kANLXNfV4arqtUXLrVB1nbdU0ipNGMOw6gC7QiIwnBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:29"]},"IP":{"Case":"Some","Fields":["103.102.161.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra83"]},"Identity":{"Case":"Some","Fields":["WQ9u26Bjq6ywg5HKPXouw1/SAjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsqpHsqXg7JmD+c39A8ou+f0HbuQsl4QJvAc4ikSEKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:09"]},"IP":{"Case":"Some","Fields":["37.228.129.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft9"]},"Identity":{"Case":"Some","Fields":["WQMDdyqxOlVUgEL8NQHAKVKfUMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZdAIW12akLrQCEDNYStLjWi+Hv3EfkHcaRgtOfhWUEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:38"]},"IP":{"Case":"Some","Fields":["157.90.246.152"]},"OnionRouterPort":{"Case":"Some","Fields":[446]},"DirectoryPort":{"Case":"Some","Fields":[83]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:5fdf::1]:446"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slauthtertodeport1"]},"Identity":{"Case":"Some","Fields":["WQC3VzlIuHodoM1cCwbNy3Fl0gs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8xCa/Sx0bBqf61BEagloY9vv78JbCnO51YOAR7bbMw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:15"]},"IP":{"Case":"Some","Fields":["141.98.9.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlNL1"]},"Identity":{"Case":"Some","Fields":["WPwqqzeSrDeJfTQzH09OADQd7Aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+OPwxgEh3nCjsgWPRrS9xOWWCsyb+zXmsrh/ZXl5Gr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:01"]},"IP":{"Case":"Some","Fields":["185.14.30.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27ab:0:2::22]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaymirror"]},"Identity":{"Case":"Some","Fields":["WPPilW6ruB9nPi+5DhbgAdtKw64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XewSbVY4BPLAbyUOwXbTDLoWuxbGgghl2FEarbf5aBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:03"]},"IP":{"Case":"Some","Fields":["85.195.230.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uncreativeGuardian"]},"Identity":{"Case":"Some","Fields":["WO+V+YsRmwoLKir9Wn/GtUzGmGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j2q9Bwp/WBuTA7zat0iX5XyGkzeeb8Pb2OXGXIz/Noc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:13"]},"IP":{"Case":"Some","Fields":["178.12.22.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion252"]},"Identity":{"Case":"Some","Fields":["WO6WiiRwDAtR10lrUnOtvidOxLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BZJG5QMng+JW/VyU1rFvPrUfJtsutu2ynSVPx0im07M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:35"]},"IP":{"Case":"Some","Fields":["38.147.122.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamAAdams2"]},"Identity":{"Case":"Some","Fields":["WO2cnDXkM+5Ydk1iiStP/VGKPNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QimvA0Xc8peq3ssxa/kOLh5ucNnA1cavZOhiWK6I35Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:14"]},"IP":{"Case":"Some","Fields":["185.21.100.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:2:cd00:0:74:6f:72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enbyfaggot"]},"Identity":{"Case":"Some","Fields":["WOwMpz+r9ut8tBoHAINM1eGqHfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tz7fEaj4T4a3d94ybdzmdLKx056qWD/ZhkM9l5L0WBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:03"]},"IP":{"Case":"Some","Fields":["78.45.4.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["WNkoDUe94hhONGckpFFn4gKDmbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vSxnUGiefV9Bkk7cuERpOvW5dI6U7NKcULf6bENOvFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:58"]},"IP":{"Case":"Some","Fields":["2.58.56.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay20at8443"]},"Identity":{"Case":"Some","Fields":["WMvXckIq76hxkFYMGTwOjAO9pr8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAc02IMbv1Zv6gm+4PdoqdpIknijcazbHtfTZWb5O/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:09"]},"IP":{"Case":"Some","Fields":["140.78.100.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl0tjdevde"]},"Identity":{"Case":"Some","Fields":["WMrf2K7dn4hbRcIonIHRnZ2j1V0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FEHzUH50rLx7XcYrsAx9HrrdZHdTyhG/wMTtm4z+ySg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:16"]},"IP":{"Case":"Some","Fields":["84.252.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f50"]},"Identity":{"Case":"Some","Fields":["WMLpugKsCjmwiwrnA/XDGDVLUxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SRiec2YoLq9XDLm3Cpbhv9w6s3mRyYeLJ/d6jyeUTGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:31"]},"IP":{"Case":"Some","Fields":["116.203.17.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipba"]},"Identity":{"Case":"Some","Fields":["WLws/6eJT8j0zF2Kd+OP3P2x3A4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q5/MOkUQOFZNDugqeWDm8eyncTOiPq6GJzCVT1iguto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:50"]},"IP":{"Case":"Some","Fields":["185.220.102.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::241]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iblech"]},"Identity":{"Case":"Some","Fields":["WKmSHdChOJNWY0YlxbFKzBGUqVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftiWVANM3KhxtQk9X8GaVKw/aiOVVKtHpLxsMSoTBJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:59"]},"IP":{"Case":"Some","Fields":["79.143.177.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3003:5755::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["serpico"]},"Identity":{"Case":"Some","Fields":["WKcZlxLA5Ss8Xy+Oiye1pivli8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0EWT8gfvz8YQ5VjTNnmn02GSXE7q0l7A69DUloV4TME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:27"]},"IP":{"Case":"Some","Fields":["45.141.157.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WKKg6Enp42kvexNiI1B+k8sJkVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["musaWRXq0iZl8x4YpWfIsgpXy/N10MLA9JaO1N3Huyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:55"]},"IP":{"Case":"Some","Fields":["188.165.26.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber44"]},"Identity":{"Case":"Some","Fields":["WJdSLIvMiGpZ4wMhJd2x0zoVarM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/+vyZZPRfcnIg53s2gzgvCD4saEpLg6mGT+rnQZJMb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:29"]},"IP":{"Case":"Some","Fields":["185.220.101.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::22]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Asen"]},"Identity":{"Case":"Some","Fields":["WIpsHsSHWDD161foljGvsocfWFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLshQOGPXMBZk5Cif86MFOHte7j4h5xDywGA3SS5BqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:45"]},"IP":{"Case":"Some","Fields":["83.137.158.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumpet"]},"Identity":{"Case":"Some","Fields":["WImlTM1owxn2+Kzv+B4GPm6Eub4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nQ3WqHYpVzAfa4mzuX3wGju2vNS0HzhWYMzylvf7Ug4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:12"]},"IP":{"Case":"Some","Fields":["147.135.64.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu"]},"Identity":{"Case":"Some","Fields":["WHserx4i4UjvsBDaozes3NTbXLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WOkSzEWRcxqt39gVfexenCSbDo8Q4Dz0soi4pnaRjn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:48"]},"IP":{"Case":"Some","Fields":["198.98.62.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9941]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:4b0::1]:9941"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CarabineroDeChile"]},"Identity":{"Case":"Some","Fields":["WGmMXlGNQo3KTZeArYN5u2O1e0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VjCvZQFkPVR6U8Q1J9YuzCgPgIiCIC8lDY7iQDLufHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:23"]},"IP":{"Case":"Some","Fields":["107.189.8.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f623:5a78:29a6:8492:27b0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guenthergraubein"]},"Identity":{"Case":"Some","Fields":["WGgDt+354o2ZtUCXckKH+3EJdxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSkZH7nRk8ovP+IjOwYrmLdms1irpYC8gqk4kmB0w4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:35"]},"IP":{"Case":"Some","Fields":["78.47.169.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:d4e4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchwarzeLocke5"]},"Identity":{"Case":"Some","Fields":["WE+qADOlLEpwkcPT/fcKLv9sc50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ABMeSORAYFxjmx7wRQqwHcRu7Zsodhpy7GKPMHWmYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:27"]},"IP":{"Case":"Some","Fields":["88.198.207.48"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:2276:1::20]:53"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transilvanianrealm"]},"Identity":{"Case":"Some","Fields":["WE56cU1oJmCDuHM3LXZll732eTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RavoP1zdtNOwXfzi92sTWqZ6WyJq1QGAkUp5TKXGSIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:27"]},"IP":{"Case":"Some","Fields":["117.53.155.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eeg6AiteuGha"]},"Identity":{"Case":"Some","Fields":["WEfVoBxHFmFD9zjHcDNEUXs56xA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cT14g5F41Bj98AgHvH6uLu4LwPI+gJX3Zm9/rLyeaLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:26"]},"IP":{"Case":"Some","Fields":["5.2.72.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokisboat"]},"Identity":{"Case":"Some","Fields":["WCLNjoFKgQCE+zOf+4V1/HEMfzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3DVQXIoDWSy12X8DqNlKZLJuZmkChJUnzfsbTkA/iE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:42:37"]},"IP":{"Case":"Some","Fields":["188.68.50.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d009:2844:1ff:feec:de5e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TradePath1"]},"Identity":{"Case":"Some","Fields":["WAfTykMh38LcS8F8GXZa27AbSB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKC8R6AP2PJdqa/HJlxoIcWY+lbUGiMVdGeNLsG7QmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:52"]},"IP":{"Case":"Some","Fields":["35.136.7.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kricklen"]},"Identity":{"Case":"Some","Fields":["V/ySfxza3skzgOJH7pSaN4eg234"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hox9ZbNrA9vSfTZYr9RlJJ3wbVe/yh+4HBjma9nx+28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:08"]},"IP":{"Case":"Some","Fields":["5.63.55.93"]},"OnionRouterPort":{"Case":"Some","Fields":[35278]},"DirectoryPort":{"Case":"Some","Fields":[35288]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TachibanaLabsRelay1"]},"Identity":{"Case":"Some","Fields":["V/GAk6b5UrHF92cqnOfHlhPB2RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlonvJMoK57d9n/utT3KtUOnqB/kl7knMI6uSKh02xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:53"]},"IP":{"Case":"Some","Fields":["65.186.37.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0161"]},"Identity":{"Case":"Some","Fields":["V9DKk7Bp3MwsNL7SvcvHGvjInT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F/2bJgMdNntzj6N3IUWOX9orIDPZ85WHyKerIcwjeNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:54"]},"IP":{"Case":"Some","Fields":["185.220.101.161"]},"OnionRouterPort":{"Case":"Some","Fields":[10061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::161]:10161"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber48"]},"Identity":{"Case":"Some","Fields":["V7wI8AxqCDYx7zI1LO/3Vk0qZq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nLt0kwCmtBEvejAeH7uq6yFmcfXB1ji78Nm0K6lD1FA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:38"]},"IP":{"Case":"Some","Fields":["185.220.101.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::24]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["V7aHPC3DYuWkKoCftWJM2joCVDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["es+XLm5qyFguBkRG99Srbdxl6QsVkGrJjN3/VDhmYho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:28"]},"IP":{"Case":"Some","Fields":["69.164.194.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privater"]},"Identity":{"Case":"Some","Fields":["V6KVN38xZ61VS1IfRhUYSUPDnOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CS8bNPTtPdgx1Dlo7J+rJdyKHtTtowCHmAUNjfV8Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:36"]},"IP":{"Case":"Some","Fields":["135.181.213.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3a:2b96::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit4"]},"Identity":{"Case":"Some","Fields":["V5b+HrV0TrNj/bSZ/7wveTPAyko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oCbe0BK+yZ4Ldn9Ei6oSxMJ5m6AuyrB/mOk2VaALBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:38"]},"IP":{"Case":"Some","Fields":["185.129.61.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StreamsofLifeSpa"]},"Identity":{"Case":"Some","Fields":["V5C2KtbHmhCSswmTqPD38jqWn9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIx8DnniTQTB6vd7zExaDXAENaoFLiS8A2sNwFAYqeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:40"]},"IP":{"Case":"Some","Fields":["51.83.237.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marylou1"]},"Identity":{"Case":"Some","Fields":["V44Afl5FNfv+93WNhYewe0yMXQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HBjXtmKdAsdd5L8P+miJ3GlnR565fO/rTpXHVeF0ntY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:03"]},"IP":{"Case":"Some","Fields":["89.234.157.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2608::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ruebe"]},"Identity":{"Case":"Some","Fields":["V4jOwKfF7iUfxyxVcwprH8rqHZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WVTLTwcMZs97uZiOnnGHB5HtCYdOhNeB/VD19jnGqh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:28"]},"IP":{"Case":"Some","Fields":["109.70.100.1"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicOnionDefender"]},"Identity":{"Case":"Some","Fields":["V37NshodG5LoN7cLmV92shUdgyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YGzcjZQJcah5ex9PI2Q9mrNNejrVzoE/fGl0FA/syYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:55"]},"IP":{"Case":"Some","Fields":["190.130.150.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["V1bZxAPYm3mv5p1QuwaCujGDGfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wScHOanV/8JOZCxQNtE2QKcvlWig02o/97DVr60Z6CQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:11"]},"IP":{"Case":"Some","Fields":["188.68.58.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pythonian4000"]},"Identity":{"Case":"Some","Fields":["V1FRQkm0p/pRhzY7tsT3YSZykTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SF6/CRrma/w7/fw+n8iq24eg3qkoC2pzEHQpNfpVncY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:04"]},"IP":{"Case":"Some","Fields":["173.230.128.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fe96:8818]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor6"]},"Identity":{"Case":"Some","Fields":["V0ZGHr1cle0q6kBTDJAUnTl8+3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8An6zMfvQdAJyjS4cZcXtH43AxLIAwVVCwOngXy4htM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:44"]},"IP":{"Case":"Some","Fields":["198.12.71.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay0"]},"Identity":{"Case":"Some","Fields":["VzzD2PHIRaozqkWTtoyg1HFWqjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQoCYhe63rGUPRfvjgfo+4pwFicyrmLihmO2oUrGvkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:30"]},"IP":{"Case":"Some","Fields":["51.15.98.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:162f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pishkin"]},"Identity":{"Case":"Some","Fields":["VzyIk79DlTXcZyQ8nLY9IEqUezg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfMRX+YlWljzMF28CkQ2aFKHMMfwbh4iaQCSN8q2X7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:29"]},"IP":{"Case":"Some","Fields":["94.242.55.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:3fb::c9a6]:9009"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["Vx3TBGtTRQeJdwPjNk4gbe9l0UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BZVljnhIHz5ynhEHDUMuXR5VnigGUjJKJ8s/wOsis3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:04"]},"IP":{"Case":"Some","Fields":["185.209.160.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk13b"]},"Identity":{"Case":"Some","Fields":["VxvnQ13J1mC7XuCjdlDiQhAHuuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4eUSD2OokH2zxRI1BitmUwrFmKQ9s5n/smhetnsVtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:50"]},"IP":{"Case":"Some","Fields":["51.15.44.251"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:190a::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deth"]},"Identity":{"Case":"Some","Fields":["VwZC05GXpyluOMnVIbbv28Z/uG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z55ANRdkN/w2LJX82gVJM14nxiB0UGC4Sr1+WvGUsVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:59"]},"IP":{"Case":"Some","Fields":["141.255.161.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop1"]},"Identity":{"Case":"Some","Fields":["Vv0s8rn7dr7FXIc/sQJNanGncRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q+PydosUdr3Ju/wSRszmQG6A82tkr+ljjF01qqWPOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:58"]},"IP":{"Case":"Some","Fields":["82.165.70.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeathscythHell"]},"Identity":{"Case":"Some","Fields":["VvLp5jlqqp3lTg4RxjcKRTh6vE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfTYGRU/YFcw1eOq2hjUM2KdzpJyOJfAGflggd9u2NQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:50"]},"IP":{"Case":"Some","Fields":["103.97.125.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DocTor"]},"Identity":{"Case":"Some","Fields":["VutxZrBdtlMfZj+DF84C7uWv7U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IjqMoWULiaBU8FJTMVUqPfkEJnPeTpigYrhIVbpqAW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:04"]},"IP":{"Case":"Some","Fields":["77.20.0.242"]},"OnionRouterPort":{"Case":"Some","Fields":[14353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iDidEditTheConfig"]},"Identity":{"Case":"Some","Fields":["VumIL8e2LE8qlRxeLVcNbnTxXG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i99jjuQOxmH1lVuI87zxv4t6Jh7Zr+5GbGf5/RzOay0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:22"]},"IP":{"Case":"Some","Fields":["155.248.194.143"]},"OnionRouterPort":{"Case":"Some","Fields":[26666]},"DirectoryPort":{"Case":"Some","Fields":[29030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torprops"]},"Identity":{"Case":"Some","Fields":["VtyommtBraMOiR72X9zAcdwFB5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWn3fV96lYmFlZQNPbunRUoP310pb8FE34F/BLGo5Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:03"]},"IP":{"Case":"Some","Fields":["45.19.142.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorKoumori"]},"Identity":{"Case":"Some","Fields":["VsXxbQbI66bfpcE576gr2mF0+k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDhAnKPDZ2ZMTr/g3/1lsoko6YfML+sbUQPishcWegE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:10"]},"IP":{"Case":"Some","Fields":["107.175.28.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Vrugqy7OO3XzZJXiYPQ+CEZvm28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3Xe4zRwcMTJh8Z374VbPmZ+iSH1hEkIwEpctfDBBhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:12"]},"IP":{"Case":"Some","Fields":["112.213.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:9400:2:0:216:3eff:fee2:cb2f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["auxacacia"]},"Identity":{"Case":"Some","Fields":["Vqy9jEx6sa67sTfDWlol4vAPXtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V5YvfGnQnbaKIs/v4Qki/ek2yHBDUDqaBz+Uw2QCVVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:03"]},"IP":{"Case":"Some","Fields":["45.77.70.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:13af:5400:2ff:fe26:aef]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Akka"]},"Identity":{"Case":"Some","Fields":["VpJ+YbUebzY/tVSYFQpt389wd/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8p6kbNyB5+mz9CgsXMZfiEHWg5HS8bKP33iw3oPCxko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:58:32"]},"IP":{"Case":"Some","Fields":["95.216.33.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:2145::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunBSD"]},"Identity":{"Case":"Some","Fields":["Vo5DT3JbeCjRfvKzPC9cyE8Y/OM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P3VmGB/RWNjUxK2aFJkLGzw0AdLp2b2fjCxsjD/AutQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:45"]},"IP":{"Case":"Some","Fields":["91.219.238.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrwellianNightmare"]},"Identity":{"Case":"Some","Fields":["VotpE65RI+26MEkJpWmv6PnnPEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fr95K6pwMfdnpcLpyaaNn+mASANbFUK0V0DOEvsHLQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:46"]},"IP":{"Case":"Some","Fields":["192.42.253.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:6b40:3::3700]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fisher42Exit"]},"Identity":{"Case":"Some","Fields":["VnhGCCQssVtw7Wy7j0Duo7Yq9p4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CDcxAeTomjg/59Sk5b5cJ38vwtQjkBYemOiZ6kKY+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:58"]},"IP":{"Case":"Some","Fields":["46.38.247.22"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:16:8:6::4]:465"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unprintable"]},"Identity":{"Case":"Some","Fields":["VnaAtPSsi5rg2TGzdJCM2OExgGY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9+n07RFuAP1GfdwhNQbpGW4LQx046Qn3T4GmHwO9tY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:47"]},"IP":{"Case":"Some","Fields":["116.202.247.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:448f::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeighborhoodSpidey"]},"Identity":{"Case":"Some","Fields":["VmYNviHnqd/zFjLgNTcugwZYKTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N7JnLZxQ2ywuk0BP5u9Lbbb8vSm3Uba/nuEZkK0THTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:04"]},"IP":{"Case":"Some","Fields":["23.171.176.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["VlAIiLSe0RNi4n/xiOAQx07MrhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RgdYRwXKIHs+ZTBo3hBI7cwfkPvNBnWIdPIf2bA02TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:07"]},"IP":{"Case":"Some","Fields":["138.199.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[61112]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN8"]},"Identity":{"Case":"Some","Fields":["VknLIVjalPt0dBXyZii+wH+ldhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwsDKb6ud5PK8OXDAQf2gZCmmTJFO66o2F/yz2XahN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:42"]},"IP":{"Case":"Some","Fields":["199.249.230.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::122]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5h4d0wNet"]},"Identity":{"Case":"Some","Fields":["VkVzno73LKfZ7h4SZ4tRpv+HEcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/vKJyHkcxgvYW/C+YpzxMad1xDsh0deQHHnOfzle0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:29"]},"IP":{"Case":"Some","Fields":["185.94.223.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh5d4h56s468r784s32"]},"Identity":{"Case":"Some","Fields":["VjRN7jTTNDCQ0ArYjOLVi1BxLIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mPi5RuC1TXd9Rdwqbv8p0AFgvILLNyQRzlw+eofRd4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:02"]},"IP":{"Case":"Some","Fields":["51.15.96.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:43::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondiinkarazan"]},"Identity":{"Case":"Some","Fields":["VihJXZk5qME53UQUAt5C9wErcJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlikN/VAQORcsBDJdbrYo/GJn8dwA1pAqME/duoW540"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:12"]},"IP":{"Case":"Some","Fields":["185.220.100.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:8::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["VhkFYeYI6wx4Nm0O04cZfmCjmJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KHuoaNkPNot1Js4u3TxeT/MYirtPXxg2vb30tQCcScc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:58"]},"IP":{"Case":"Some","Fields":["23.128.248.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leRoyaumedAmazone"]},"Identity":{"Case":"Some","Fields":["VhCVbYWd/cmGipHKas6i6ZIwxAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtNiOzsJ7OIXlZVUa4GLT45xMCbSU/0B2vCdwfzKAtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:25"]},"IP":{"Case":"Some","Fields":["185.227.82.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RASPdatenschleuder"]},"Identity":{"Case":"Some","Fields":["VfHO0+JZBFpDpHbLxtMPdsw/Ybc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VxOdICyOl/rfvnkd4DNK29fAdIshf3PTwqlE/AZCBto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:36"]},"IP":{"Case":"Some","Fields":["109.250.2.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sharingiskaring"]},"Identity":{"Case":"Some","Fields":["VcX0WxfO3kNN4xaZ+s3n8wYjA04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BLHUK19AJQ2Pslw4GD7emjIZvtLs9xFVKzgdCoFOACY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:58"]},"IP":{"Case":"Some","Fields":["69.62.163.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Boedi9Worldwide"]},"Identity":{"Case":"Some","Fields":["Vb7BAyo8Zq5avybRFQU1IxhzbUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/yiWGtB3NJNtdJlPg8IEL6Cijk1FA/+Z8bS3rw2ZzTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:14"]},"IP":{"Case":"Some","Fields":["37.120.167.200"]},"OnionRouterPort":{"Case":"Some","Fields":[12312]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:440c::3]:12312"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange034us"]},"Identity":{"Case":"Some","Fields":["VbWp25wrV8A1Q3o8xSprEdh3y90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TQhwB2sye+WN776jbOOcZnjCOQm6ulRvt07NJxuOFF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:22"]},"IP":{"Case":"Some","Fields":["162.212.158.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Vakr4qdsZKWg2w1PYdXco3tV7lI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mNYXU/8R48OlI3kNvbpXA+l17Wlm+hT0OHdREM8kCUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:28"]},"IP":{"Case":"Some","Fields":["93.99.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5e0:0:2:20c:29ff:fecf:4819]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R2C4"]},"Identity":{"Case":"Some","Fields":["Vah39vytwlqompQAM9pJEDvLEfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LcRRGlcrXL1Q8H8xWXkbNuzq8mL0eWDF5AT1QQ8fV60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:39"]},"IP":{"Case":"Some","Fields":["95.85.72.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:275::e3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Valinor"]},"Identity":{"Case":"Some","Fields":["VaWnZKByF3p0N2XBVQNkIZArN4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/iIivgxbCWwZtUO9Qeq0OLCRe/nQ0K444l5VGUvvjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:55"]},"IP":{"Case":"Some","Fields":["217.163.129.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeezNode3877619345"]},"Identity":{"Case":"Some","Fields":["VYBPnTf3snvQQms8sGxktND5VUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CGR1f54hFrOCDBSuqMD9XVdgwtDdYiMEKmvfkVSIgG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:02"]},"IP":{"Case":"Some","Fields":["88.88.16.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KUEXBON"]},"Identity":{"Case":"Some","Fields":["VXs5FG6xIcjPoixIrXi9vbyP86E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rKgUHd7cOOkRV3H75MA0dxaQTZLY9dZ1Apz7naer/to"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:53"]},"IP":{"Case":"Some","Fields":["185.86.151.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::e748:81a9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ogopogo"]},"Identity":{"Case":"Some","Fields":["VXrOyFD1Tu5lg5+Dys4rCCW+gR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bEyAY8EfDArj0gS5EPvVscmPifdfJGKK0+oz9Ocy0NM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:45"]},"IP":{"Case":"Some","Fields":["192.160.102.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::a]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["VVprfLPY7KN2tMtnAVlqeyEeIdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3/RWocVenT574B5WDd6h9YKTUG6lEWAwOjM4MCLRTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:18"]},"IP":{"Case":"Some","Fields":["185.207.106.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["magentasunshine"]},"Identity":{"Case":"Some","Fields":["VVpojjhd+YDhs6cslg4jg9nIrPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BfJWo/FkDh8iHAGqcU6miQ5AqKl2rrdsKWAZ8R3NmD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:15"]},"IP":{"Case":"Some","Fields":["51.83.132.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1864]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jakfrancjamoze"]},"Identity":{"Case":"Some","Fields":["VVj1RtKplt0vS2piohjfI4SEUuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75hxaqNwMFgBM2xecm3/XhYH1bgBW4ouw7aoW/P1tFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:21"]},"IP":{"Case":"Some","Fields":["5.135.156.12"]},"OnionRouterPort":{"Case":"Some","Fields":[4899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeilsOfTheOnion"]},"Identity":{"Case":"Some","Fields":["VVgNcbMXoHL0pNz26k7bAVc0ruc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UyXymXcWnevfuciTKULfj0C350rO9Y75WHZzRP1PxW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:05"]},"IP":{"Case":"Some","Fields":["51.158.146.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:213:208:a2ff:fe0c:8128]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodevotionn"]},"Identity":{"Case":"Some","Fields":["VUSQkpmbuMG6U9DRzWDgmZ2Mosw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ld+snNZSCefXkYeSmNCMnIufdiT3pWP1vaSl8C7zMS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:12"]},"IP":{"Case":"Some","Fields":["139.162.128.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:feb7:87d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrRelayPi2"]},"Identity":{"Case":"Some","Fields":["VUCgSCAmIMy9Ff2k/w1ZZ9LE5oU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["geF4XXhH66Wy1A6ozY52Dfzb+C6Re/MkCA3LzXtcQNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["207.216.25.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[9022]},"Address":{"Case":"Some","Fields":["[2001:569:5197:1800:e449:4f90:2cca:1ba9]:9021"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StriveForFreedom"]},"Identity":{"Case":"Some","Fields":["VUA7llOoH2jDl4fgAL2fl+HzslA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jpBw/8C+nUNNz2U01zfU0DK60SNThYeT02d7/BrvvEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:46"]},"IP":{"Case":"Some","Fields":["173.212.231.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["VSwuKv3Rt0CjjKl2jFHsARsq9wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+aN1EvnowQCvjYJ6PBqhJxrNZSN2GtZuXLg2+KF21V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:23"]},"IP":{"Case":"Some","Fields":["5.45.104.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1750:680e:2aff:fe12:6258]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinom22Relay"]},"Identity":{"Case":"Some","Fields":["VRveRh+vAs3Ox7kbJ0udOjNaL0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+Lf1E6mEiud/nRSPE5V8WKurdEGL31+CuSqSAgUZbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:41"]},"IP":{"Case":"Some","Fields":["70.53.179.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KiandChi"]},"Identity":{"Case":"Some","Fields":["VRJVdJH4fYiPxIX/ZIQmWnVKv1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cOL2KUZPMW6dPbanIDAFFtPWXfypjOB0Mak1axErIUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:28"]},"IP":{"Case":"Some","Fields":["82.221.131.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["undisclosed"]},"Identity":{"Case":"Some","Fields":["VQ+MI4029hF/MZgXzDvxbSP8hVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Y0q3U/7AEhAcd/FiJGQ2JZ62inkLC5IYyiv2v4WUZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:56"]},"IP":{"Case":"Some","Fields":["184.105.221.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:b480:fff7::248]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa3"]},"Identity":{"Case":"Some","Fields":["VP+H4Yz0s1G7B4pkCk3FJllpSF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4f613y6HWMjoSA0mVQWpo0q4Kks4Recn9Kp6huXGSJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:42"]},"IP":{"Case":"Some","Fields":["95.217.112.243"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::3]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nix"]},"Identity":{"Case":"Some","Fields":["VPXYAN2Xg/zyIA6A7z0ahno/bWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wmRu34jIR6HV2fF1W3W7CeyjvAjcaeXJE51VlIE3UC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:56"]},"IP":{"Case":"Some","Fields":["195.154.119.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["suesskartoffel"]},"Identity":{"Case":"Some","Fields":["VPM6Oha26kTy2zYn/FV1PObCJJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZed5noxdmErhruYYweZxHpcyAMLS/DZcvHyrtRAqoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:05"]},"IP":{"Case":"Some","Fields":["109.70.100.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::13]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paktindustries"]},"Identity":{"Case":"Some","Fields":["VPGz2NFI74y+B27znz+8FFmCEFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R6WkG1lGoy9Ot12UUtr8+snsfo3Q1MDVF7VrK+8lKPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:13"]},"IP":{"Case":"Some","Fields":["138.201.125.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:291e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["uzieka"]},"Identity":{"Case":"Some","Fields":["VN5j9FhwWLeRUqdaAjjX96AnkhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iqfJyTY+63xvUe/XMbqC3NQaBTRSdhKjAZr2TpWmDeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:16"]},"IP":{"Case":"Some","Fields":["192.36.38.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privy14me"]},"Identity":{"Case":"Some","Fields":["VNWf72c4fh7uhdTRFoU0LRVYKZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D5mRSaExtI9O2W3gohAGjqf8tjMXWY0nN+8v6MfvAE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:40"]},"IP":{"Case":"Some","Fields":["185.225.210.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBSDRelay"]},"Identity":{"Case":"Some","Fields":["VMrlBwjnCNSerY9v/SCUKLwhxBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkdJ5nqcUY32DwoiByQhMYCaqCRy8lQstVMEBxmlyYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:12"]},"IP":{"Case":"Some","Fields":["64.71.151.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myVeryNiceRelay"]},"Identity":{"Case":"Some","Fields":["VMFeDb2rq5E5eLv8cT76r3Q3xRY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wjbau0liKso80FeJT+CJ6uLgi6XONJC+E6DHpJaNXgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:44"]},"IP":{"Case":"Some","Fields":["136.58.85.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coolrelaysmileyface"]},"Identity":{"Case":"Some","Fields":["VLtYh2Bq8r0hPEFl0j51zLzz2E4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ANA2i8Zzsp8I5n22j+5P/AQ8nnzSY1X3rNHiPE9uzFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:38"]},"IP":{"Case":"Some","Fields":["167.235.133.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:3710::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0153"]},"Identity":{"Case":"Some","Fields":["VKyyeKoqvZb5FQq3KwioqLHkplk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5gzE2LaJU0LJr7FKCQXhrsMNupt116pGpHB0Avy4yRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:56"]},"IP":{"Case":"Some","Fields":["185.220.101.153"]},"OnionRouterPort":{"Case":"Some","Fields":[10153]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::153]:10153"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unlobitolon0"]},"Identity":{"Case":"Some","Fields":["VKpMz+gfTdc5HYN6uwiS11NV3zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH6Sdgj19FCA2Tdq/ArljXdSyfu0zVmPH9fL9GmSXAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:05"]},"IP":{"Case":"Some","Fields":["178.62.94.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::1c8:4001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv03"]},"Identity":{"Case":"Some","Fields":["VKZirjMEWLmmWlQaK0tbbDPjvy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4yAI31rJVU8LOV9E3Mrb9WWNAwQmt/za2Bins7QwLMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:19"]},"IP":{"Case":"Some","Fields":["162.248.163.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN22"]},"Identity":{"Case":"Some","Fields":["VKSCC0bmVQm/PiuJLmaTCkF1nek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iWYWyypDn2PsCXMEmR++FrFMUlqQmBE20lhYVNqdoIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:53"]},"IP":{"Case":"Some","Fields":["199.249.230.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64b]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ulula"]},"Identity":{"Case":"Some","Fields":["VKQDobAV9uWmQa0SFTCWa9hzE24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D8ulqsKA0G670AyFlSanJQ8zJ7WCiyKAJ6eGmeC9/dE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:08"]},"IP":{"Case":"Some","Fields":["81.6.43.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:169:200:d::15]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MKDDT"]},"Identity":{"Case":"Some","Fields":["VJ+k4wzQmHQgUrE87sz2Iezg6dM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["svYnrACsgwLewZB/m/TNFdf/sUJp5tng1RWTLyaQvLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:39"]},"IP":{"Case":"Some","Fields":["142.202.51.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["VJ7kn7qaSS+vci04Muar7ecnnS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lx2lDhA3THBRP87wi7OlCw1pFF+TROf07WKg9z+Zo0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:11"]},"IP":{"Case":"Some","Fields":["193.161.193.99"]},"OnionRouterPort":{"Case":"Some","Fields":[57207]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ShardsOfNarsil"]},"Identity":{"Case":"Some","Fields":["VJLnYGSKq7e+wIvIfo9y9V+7qQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXE7im8pU8nPSoSj1iXSbYlGIcu2piRLlLTNHDNqIAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:47"]},"IP":{"Case":"Some","Fields":["75.176.45.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv14"]},"Identity":{"Case":"Some","Fields":["VITF99mmAQVyhQqONdeLTTUnonE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MR+rPmIeT6ImPJBS/SafK/7G04IKZx8RVV70bKW/Zps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:10"]},"IP":{"Case":"Some","Fields":["162.248.163.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taki"]},"Identity":{"Case":"Some","Fields":["VH5uaK3htvSSxERDWIqTlhBAHfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FMxBS9ZVTPbuhkR2ENnMWJu/B6gBOoosqahXbeYbteo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:06"]},"IP":{"Case":"Some","Fields":["51.15.54.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:c0d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chaucer"]},"Identity":{"Case":"Some","Fields":["VH2lb2uItsWWs+MIaAPNpPDvjyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["26mfF8lMfqn5JV2IDm1mE5UswnVEENabcQSCDElbSBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:43"]},"IP":{"Case":"Some","Fields":["192.160.102.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::6]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["VHuYt2SwzH7kVN8b7lF9LFC2Ijs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZEhpgc0uwmHztpJn25dxddPx5faL7M7M+V42Kbq+8uU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:07"]},"IP":{"Case":"Some","Fields":["185.220.101.37"]},"OnionRouterPort":{"Case":"Some","Fields":[10137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::37]:10137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeUkraineDK2"]},"Identity":{"Case":"Some","Fields":["VHKgKXV1eGRh5KOpfJEzCpQc8qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhcX9QClu+USEbLZDvoiBVtSMckeU04rZYMMUm5zqhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:52"]},"IP":{"Case":"Some","Fields":["185.51.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:88::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anion"]},"Identity":{"Case":"Some","Fields":["VGgFtQEiCtdcToPxXKTS3BeclP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G5cvwScs00yve+e8k2Iq22nqcfSdUa/ynNkkZVHDPGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:39:23"]},"IP":{"Case":"Some","Fields":["193.30.123.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HKLBGD"]},"Identity":{"Case":"Some","Fields":["VEZcERUbBNbtqdQrJaODLZMDo8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIWiX9sIoFLD1F6r2He5z2K0KDCSs5a6upoY/z+3tE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:07"]},"IP":{"Case":"Some","Fields":["109.93.92.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE05"]},"Identity":{"Case":"Some","Fields":["VEIwrlVsScveEGeF/kEe4GFZiRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXuACNoT5d1w3fiBadqCkCS0rC/oeOSmqpoGb2KXTks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:38"]},"IP":{"Case":"Some","Fields":["37.221.65.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::4dea:101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OignonCA"]},"Identity":{"Case":"Some","Fields":["VDcdZPSu2M0e+O0bWMclxAY73kI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Hsv/UUVNIq/weOnOAEqFEH7/gPgmMLHxOkv0dZZSoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:12"]},"IP":{"Case":"Some","Fields":["144.217.75.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangeApe"]},"Identity":{"Case":"Some","Fields":["VCVov/w2J5zgyp1P9JcjMEd/heA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/P+Ia8XNL20YP52UpVFysfZaWEa7ouQXgUeklNXep8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:29"]},"IP":{"Case":"Some","Fields":["37.235.55.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:44:37:235:55:83:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNode02"]},"Identity":{"Case":"Some","Fields":["VCQRC/BSRDLYBgUJBjjZymNom6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wwE4lXL4SQ/hctrlY3UD70oNPdZfNZJC6XyjcytkMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:46"]},"IP":{"Case":"Some","Fields":["37.120.162.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:3698::11e8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange004auX"]},"Identity":{"Case":"Some","Fields":["VBLYYsdiXxReFtPYMfbTOp+vXuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRtDy1vHSpBTLm3V4Sqt8U4hpkEWhuw1am6tphxDwC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:13"]},"IP":{"Case":"Some","Fields":["139.99.172.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["VA5ktU/tS3JcX3vU1r/JXafxHxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UfyLj8l7WiBDTAGJp/AJvhWHizmk6U7+bmNJeS1CQow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:02"]},"IP":{"Case":"Some","Fields":["23.128.248.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE58"]},"Identity":{"Case":"Some","Fields":["U+6h3aGRnYj4o4AkkyMLXGToey0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rQEhX3/1x4MbCfA2v+LkqFL6nLm297EsL/Os10dr5E0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:28:31"]},"IP":{"Case":"Some","Fields":["170.231.236.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["urilikann"]},"Identity":{"Case":"Some","Fields":["U+jCobKkyHk9H8sP0igr/QyIvxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00obxtqGqzEUEMwuII3dhr1wFM1u83cTPreVK7Qj1Ss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:34"]},"IP":{"Case":"Some","Fields":["51.83.128.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::4dec]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapLON"]},"Identity":{"Case":"Some","Fields":["U+V06hl60mC0eRLzqdONs4deo8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oI1Fll1nMM47Qtq+Wm55bOXtFMSvfVW//gWOaKseH3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:03"]},"IP":{"Case":"Some","Fields":["134.209.181.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::1128:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["propsy"]},"Identity":{"Case":"Some","Fields":["U9kFaqakxWhnTrN+0BjJeNA0i5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UyTpoJuUSkyqiwnQqojbD4C1jpsDvg0Oc1SOE4N42wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:55"]},"IP":{"Case":"Some","Fields":["31.31.77.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:6:5019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis67"]},"Identity":{"Case":"Some","Fields":["U8n0lU56czK7DGEMW44EygZa8ps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0Pcn5ksfRCUgn83p+28uFAxTxfL8eltFi1d1axpqPCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:24"]},"IP":{"Case":"Some","Fields":["178.17.174.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:126::a5c9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jemaine2956"]},"Identity":{"Case":"Some","Fields":["U8YD6qOm6UTGjyO+pJDXWStXlWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pY5jf3cfMk9gbIQnBs0xhxGzrCWjOyzqPL4yTPRys8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:29"]},"IP":{"Case":"Some","Fields":["107.189.1.174"]},"OnionRouterPort":{"Case":"Some","Fields":[26485]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8f5:20c6:dcb6:3c07:1c9e]:26485"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2livebrew"]},"Identity":{"Case":"Some","Fields":["U7i1wqM8SJtUMA1Vi/7iw7EvOHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9DoSBLKTd9EyVTpM1W4Csao6pnmOUQdmCQ3bqW1XhH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:14"]},"IP":{"Case":"Some","Fields":["104.244.77.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:c084::b00b:face]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kuerbis"]},"Identity":{"Case":"Some","Fields":["U7HG41cGyewwuUaLYd+7Z/Kb/C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BSDCf+hisGfi+j6TohMk2AhXuXIzO1mZrnrFfuQJG6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:47"]},"IP":{"Case":"Some","Fields":["109.70.100.3"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::3]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["42isNotTheAnswer"]},"Identity":{"Case":"Some","Fields":["U64XtVjfour1UbZQ9iYLPjH76tA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q0CQhrCF1wMPQCraPlcgWPNmQjUQlRNPsv4mBQPMVzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:46"]},"IP":{"Case":"Some","Fields":["46.165.253.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["0x539"]},"Identity":{"Case":"Some","Fields":["U6mXIwZAwEyZih3j9dPNMDxEgbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QY10ZlqU08dTcYMvKKmfZWrRsjDTgZs+A03EEq6CbmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:43"]},"IP":{"Case":"Some","Fields":["185.107.195.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:bbc0:1:9::eb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Apollo"]},"Identity":{"Case":"Some","Fields":["U6NhRr8eHq4y8CYzA2YJT8nks+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8VK8Xim53KY7F67vly29mVbTWtnHh0s6vkJAMhNngNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:58"]},"IP":{"Case":"Some","Fields":["69.30.239.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3bc:224:1dff:fe70:b203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EinfachOhneNamen"]},"Identity":{"Case":"Some","Fields":["U5xXFioOyLu0Owf5FrkOxGyLzTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H9usJ5yRArKHUUY5zwIJfbh9+s7OKFGR/KEY+6/uDbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:25"]},"IP":{"Case":"Some","Fields":["84.144.60.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moonRiver"]},"Identity":{"Case":"Some","Fields":["U3NFV/2UKmnPPvzO+JAnjFmUP1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["olADTUAOkp9omHQQuAOLGB+/ckwP5KFlXPyNP6TtKRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:01"]},"IP":{"Case":"Some","Fields":["172.106.167.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion253"]},"Identity":{"Case":"Some","Fields":["U3L3ghdK0nexfp680fh08MvxF1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQckJGGmpzhw7+7eLKPR1zBsnj52ZNe3hcWH0VT55pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:31"]},"IP":{"Case":"Some","Fields":["38.147.122.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["central"]},"Identity":{"Case":"Some","Fields":["U2/EENKmn7J2N9GOBpjUyDKlatQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xJhJRGYbvdU4LLr332mC0B+z4z/hcHkZlcFKLUMiZvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:38"]},"IP":{"Case":"Some","Fields":["163.172.188.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:14::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazybear"]},"Identity":{"Case":"Some","Fields":["U252dMgnmAPt8cwQtvZ7OVmwJcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N33akRSi623L/Y9Cj/JOTBZlUc/KA2n/z5gDfmFmHHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:45"]},"IP":{"Case":"Some","Fields":["31.171.154.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nemesis"]},"Identity":{"Case":"Some","Fields":["U2W6fJj5s0C4EA7CYxesE0s2PVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gu0LrRWfg0A73sZXk5En27unrsrTMJO24ZLH+89UIPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["70.63.170.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ethergeist"]},"Identity":{"Case":"Some","Fields":["U0EtzFVTNbQA23J1DtC+CNA013k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXscfDqtcLU4hH55qTqLvPG0PJC+6GpPjEJrzC6ouy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:01"]},"IP":{"Case":"Some","Fields":["176.9.123.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dlecancom"]},"Identity":{"Case":"Some","Fields":["U0EIAx+8bhmC8aFAK2l72bRaJMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bJYQgVcuMdIWlDhGUfDlO09HMOxn1KR7MGBgtpbc/8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:42"]},"IP":{"Case":"Some","Fields":["51.158.99.6"]},"OnionRouterPort":{"Case":"Some","Fields":[20443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:2630::1]:20443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fabulous5794"]},"Identity":{"Case":"Some","Fields":["UzmsfeDyTu5Mh7+Fa3438979ksk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B5bcPZG7DIUpEK+xH/N7gvWnWlC3Q03BELXIFOUfa3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:49"]},"IP":{"Case":"Some","Fields":["217.138.199.102"]},"OnionRouterPort":{"Case":"Some","Fields":[54918]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ac8:33:42::a05e]:54918"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission08"]},"Identity":{"Case":"Some","Fields":["UxNNljfZ++Vl+h46+CsjzJZMVtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+zqqDxYxCrgLGmCYDcwhWBCGOp5qKS6lJAlI/mER4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:21"]},"IP":{"Case":"Some","Fields":["37.59.76.255"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spargel"]},"Identity":{"Case":"Some","Fields":["UwJ3hmRmoUJfQ6c9v8tfx0EMmFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNfEWbixUA0iwaImlS91jpk7nBr1p/nOpRNiqME1L4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:23"]},"IP":{"Case":"Some","Fields":["109.70.100.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer02"]},"Identity":{"Case":"Some","Fields":["Uu4c4mQRHQU2jOdfRBEJHstpRcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yfNwzjtoP94o6jzgFr/seCjDkSmreC/K9440Bd6xgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:31"]},"IP":{"Case":"Some","Fields":["104.168.87.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipaa"]},"Identity":{"Case":"Some","Fields":["Us2YkC9jduhN8kFbkG8UJtWFVk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VF0UfhCZSH9oNOuREpfHqAKVCm4YCB5F9wLjXW5xFvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:58"]},"IP":{"Case":"Some","Fields":["185.220.102.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::240]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SussyRelay1"]},"Identity":{"Case":"Some","Fields":["UsP/ccoHGnfRxMU9ICam6tpYU1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S3uoN3FfRuFyiwNzMEjZLAdg1/PPwv92bCSzAK+7sB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:28"]},"IP":{"Case":"Some","Fields":["94.140.114.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy63"]},"Identity":{"Case":"Some","Fields":["Ur+tqL6qAbpGyPdn+DwY4v5Qwbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJ9t/CT8zzca55Jx5sPeEmjmKGJzjI4Acld1qWKsBCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:48"]},"IP":{"Case":"Some","Fields":["212.83.43.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AmirTaaki4President"]},"Identity":{"Case":"Some","Fields":["UraHZOJssE2uOr4foBgm7yc3bGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyagt5DYwfeDm7MzrU/lPoVo4GJqanpV8zupDrqO0qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:47"]},"IP":{"Case":"Some","Fields":["46.101.178.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI14"]},"Identity":{"Case":"Some","Fields":["UrMq8lb8SRkTJ46V3CKaE5jZeHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fJNyOkNRngc7rGbuo1sKQgbwSN8cqFB7ucw+5InY4eo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:36"]},"IP":{"Case":"Some","Fields":["171.25.193.20"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::20]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["UqDHKbukoxpcQ1+9EHjR2vvJy40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiSgAE9MuTItyNPjJnTZ2s5OrT+j+HpQzRLgVAjPXyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["138.201.55.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:1045::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hochwanner"]},"Identity":{"Case":"Some","Fields":["UqAi8W2M2/AZ4TLxU4oXmPFnlzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RcTel62qqXc5hvpk/4kusMai3OerX1WiXaQTEnwu63g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:44"]},"IP":{"Case":"Some","Fields":["51.158.170.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2433::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeedAVacation"]},"Identity":{"Case":"Some","Fields":["Up3RHDUA27tjbdSleVKcXNpQdOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E9rN+Yae98wm31tlJ9RuVzOIbdOFqgsMNv0UMrt+h6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:57"]},"IP":{"Case":"Some","Fields":["172.106.112.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["morata"]},"Identity":{"Case":"Some","Fields":["Up2chODWphQdQJwbAtuBsrjo6XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDZ6lAYl3EXN7zQYA0MBS+u1opmjuw6bbxqzr/oowoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:30"]},"IP":{"Case":"Some","Fields":["103.236.201.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["asfnutt"]},"Identity":{"Case":"Some","Fields":["Upyj6witbsF5G1EQqjVApM+hGX8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jMsNzUObDINugxv5G6oSE9jqufZrK1mRahQJE8T1XY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:17"]},"IP":{"Case":"Some","Fields":["193.150.22.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:24e4:10::27]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vetustlex106"]},"Identity":{"Case":"Some","Fields":["UpkwWpwtcHhNQSKD1DepBu6exfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["07dbt0j/0Bk8E2HIwiPG1u9Ny/6EXKzR3Sp0a6kqxco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:05"]},"IP":{"Case":"Some","Fields":["198.98.54.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:cd9:d4a7:7c57:a1fd:d9c8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["UniwPIijqZI4e0thUWG4AGxKZa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RlEk8P52mb1D8TU4eB0r6uCAf97tPEWxf6TnP7y3uS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:15"]},"IP":{"Case":"Some","Fields":["185.220.101.204"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::204]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["UmrVDJ3mr1M96+j5u98Um8H1q24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyPyd7kHQT4aIoIYDuxR/0e4C1KhgeKnj9FtJ/ypWLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:00"]},"IP":{"Case":"Some","Fields":["88.208.226.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:5f::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Theoden"]},"Identity":{"Case":"Some","Fields":["UmJVbUSn8kNJkP3hrnlzxn30nlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tIB8JtKPeiIP0udzZMQWC4Y/fJ/mJUAI6F8LBX53GQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:14"]},"IP":{"Case":"Some","Fields":["176.223.141.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:b0df:8d6a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t1r"]},"Identity":{"Case":"Some","Fields":["Ul7jTBp7iaud9YUkbeMOMnApE/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pzcIHUQ8aH3CAM4pqO80Oq6HGhsrfbCRVO4UOzT2tTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:12"]},"IP":{"Case":"Some","Fields":["144.91.125.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["Ul5JX9BAlpK9qcI6ITfJb15TiUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oai3vVXJrJRtmEJNKykPEV+OKRwsOIPIOOcdDnigbSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:11"]},"IP":{"Case":"Some","Fields":["178.175.148.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trolli"]},"Identity":{"Case":"Some","Fields":["UlkLPCh709jGyp4HYc0XdY/3Dng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0jenPE8Afr+NjBx6tEuGOzp+t7cHrffT23y61ospZ44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:31"]},"IP":{"Case":"Some","Fields":["130.162.54.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ImGrund"]},"Identity":{"Case":"Some","Fields":["UlTuBmXR0QafopZ/f6lw5cVEF3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BgxkKkQLvsaN/c3XVegAlqdOASVi6wFl82ukfG6J3vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:15"]},"IP":{"Case":"Some","Fields":["217.252.144.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=780"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["reRelayJI"]},"Identity":{"Case":"Some","Fields":["Ukm1F5fjc0Szz5s94p9JndeIO10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rMW8e+WYe/ywHIORUMimPLbsVt3z2hOkqepjN74Udw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:16"]},"IP":{"Case":"Some","Fields":["153.92.127.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CCHE"]},"Identity":{"Case":"Some","Fields":["UjdKbFkoDT36Eqf7UMyoNZy1avc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCvH3OpZNTuRD02l9p+oALv1E8Lk1ZBZMcn9LhZaESw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:21"]},"IP":{"Case":"Some","Fields":["78.133.85.105"]},"OnionRouterPort":{"Case":"Some","Fields":[8832]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI24"]},"Identity":{"Case":"Some","Fields":["UiqA7KjIRvYM7mF/JD41RtUhmDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eOnQ7fHzXnoi3N3siKGHt3wsEoOEKkF4XKQ/GE6fSWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:01"]},"IP":{"Case":"Some","Fields":["171.25.193.25"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::25]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex100"]},"Identity":{"Case":"Some","Fields":["UhwwqWh0OxPhfiLjm+UtoCD7kuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ugoM3ZzdWHNi01bxRp6TwpZRtiol3W41KRmk9HlMCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:02"]},"IP":{"Case":"Some","Fields":["199.249.230.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::189]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["just4fun"]},"Identity":{"Case":"Some","Fields":["UfMQOBV2Wk+Wv5XO1UIFtYzuhwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ILJztHr12sdfeEVauqeB52jX2MuGiFTtxxg8xhepLto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:35"]},"IP":{"Case":"Some","Fields":["45.95.11.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked01"]},"Identity":{"Case":"Some","Fields":["UfDRPZGmDwtFQPFX22i3DH/bFDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sxFNKvC93twQhX7IjT+6a2j504BHv4ZXgi68Fq0h5D8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:57"]},"IP":{"Case":"Some","Fields":["51.255.106.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobo2"]},"Identity":{"Case":"Some","Fields":["UecOkQTyz8XzH0/YC8HS2zd2kUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WVONO4EgdHTFwxp7z/qIwfeuXI29dB/3Ea8ZehUY+cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:50"]},"IP":{"Case":"Some","Fields":["89.58.37.132"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["UdstiSI2xR0td1IU9Ok3Qe6duoI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0snzJQGKC69FFFxP7//8dk5oX9Ek6+PVZqssDooKwzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:45"]},"IP":{"Case":"Some","Fields":["47.200.163.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alpha"]},"Identity":{"Case":"Some","Fields":["Uc2dsANXQF/EGvD6UTaI0CvaDA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WQOk/VJdIbO49U0HlOKO4PWKwlWRr/c9LbuhstM3vcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:33"]},"IP":{"Case":"Some","Fields":["31.131.2.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire65"]},"Identity":{"Case":"Some","Fields":["UcNnWCmT1o+CFWELhamZAslFMks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1s4NsnMPeGUp3HsKKBkZP/nZwmTRnqqQkAnh32cvTio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:18"]},"IP":{"Case":"Some","Fields":["91.143.87.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2eff]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeCarefulOutThere"]},"Identity":{"Case":"Some","Fields":["Ub0l7gbEbkRmQn1Kv5TylkUU6y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aheaXgW3oTo2CLm+/rUFRQkN3Qjex3IF9kxyH9CydLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:34"]},"IP":{"Case":"Some","Fields":["205.185.124.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:c3d::1001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wobble2"]},"Identity":{"Case":"Some","Fields":["UbP8yrcUAR4xdyP6rLcY3Oxu5ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4uRPrYaV8IzFbn3H17+GkxTlnfdx7yne7rj60ac35Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:23"]},"IP":{"Case":"Some","Fields":["192.111.150.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["notoriousgib"]},"Identity":{"Case":"Some","Fields":["UaiiKUTyKOotYBQ00SeGSxsLD4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jeVNTM3eo20FXJE892yXKiY5LiPZHJFDwZtr2n7fgqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:40"]},"IP":{"Case":"Some","Fields":["103.200.210.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ready2"]},"Identity":{"Case":"Some","Fields":["UZf8ifehYjypDW4CVKvMvG2FqG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lh93LsMWvETQdE1HnMh+cgtQDlVibXe1sjVbBLx+S6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:49"]},"IP":{"Case":"Some","Fields":["174.128.250.164"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigman"]},"Identity":{"Case":"Some","Fields":["UZNR49VCApM/heYI2ISEpdxOTvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c6yYUIwuH3aIVa3tRrJOA/AcTEUGLq1S8nw0OXnGpTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:59"]},"IP":{"Case":"Some","Fields":["130.61.174.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twincaravan5"]},"Identity":{"Case":"Some","Fields":["UY7xU7t2dpQ9PfvKRpz1ua9cXzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRjRZBx/yxJMnoisTp9F9yxH6/8aI90xlBUR8IdXRnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:29"]},"IP":{"Case":"Some","Fields":["172.107.241.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrozenChosen"]},"Identity":{"Case":"Some","Fields":["UYsDGj31A+CPb4FdsZTb17FcnFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3lcjQnkLSpP5A+ovohqQX6wt+algwSDZ+Up5fvM+Whg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:42"]},"IP":{"Case":"Some","Fields":["172.98.15.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UYAK84sw7RRU3XTLQSutztX2BZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQS4Vk4nhOzbIm3aKC8mMBxa4FcZoN9RfAnjdbCH87M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:42"]},"IP":{"Case":"Some","Fields":["37.191.206.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:feab:5d7e]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1163"]},"Identity":{"Case":"Some","Fields":["UW+RynB4EG4fCNnrrLdxXp+FDls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cre+NLd28EX7HLJWohxomLssa5drEVx/B6mrd1rUpUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:08"]},"IP":{"Case":"Some","Fields":["185.220.101.163"]},"OnionRouterPort":{"Case":"Some","Fields":[11163]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::163]:11163"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UW0ilNUfvkeDfTQZR0BGADIRCcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L0KB1MlYRbaaRJUTq+ff32zljiIziaXGZLczj3lSeTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:46"]},"IP":{"Case":"Some","Fields":["23.128.248.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::d8ba:d0ff:fe97:f61a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["UWzFTTDsbHt05SgFN/aUPveK2U0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uy+klSBUO2/yLVX1hzWmB34tBDqaUTHb+IDwBLEfbB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:41"]},"IP":{"Case":"Some","Fields":["23.128.248.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::35]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UWA0/xXJbOhB7M2HbvYEgCqlxlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UartxoXuC7E2nwfnJyRMHpXFvygizE2fMDvKe7gcuhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:26"]},"IP":{"Case":"Some","Fields":["89.163.225.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pi87"]},"Identity":{"Case":"Some","Fields":["UVEA7eGcD14MrdOR3jPg3hSwD90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2cj8ywFYWw/u0Eql41VA1QWbcmD3Dg+4Tn5OHjIRYEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:17"]},"IP":{"Case":"Some","Fields":["99.45.175.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:6972:1200:dea6:32ff:fec5:ff87]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stellaranomaly"]},"Identity":{"Case":"Some","Fields":["UTdMjaRZxnMp/9XHUCzK5BlJEMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEZgaVWCU/MssU7NKdYMKrqcLLW6Ro1tRx266r1GbEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:16"]},"IP":{"Case":"Some","Fields":["96.65.68.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra58"]},"Identity":{"Case":"Some","Fields":["US8n3ZopN6jj1l7aE6iK6Ug+mso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LnA7vKaVKB/Y85C8L8JoDf+PW8XK/DUSY0EgTPwTx9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:03"]},"IP":{"Case":"Some","Fields":["213.164.206.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andal"]},"Identity":{"Case":"Some","Fields":["URyzj4fACAscSdYUSeJB+b2iw2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jxtGqjzbZULlOHmCnQFC2rI/kJrvXnak4os/yefZ4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:56"]},"IP":{"Case":"Some","Fields":["80.131.230.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IsThisJustFantasy"]},"Identity":{"Case":"Some","Fields":["UQ3VmHSDlHSHxkYqZtMTPtBwQOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FouW8vMC3oJvxwY/Fuzhz1uNOzsk5AbpsVf7uz1gDl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:37"]},"IP":{"Case":"Some","Fields":["144.2.122.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who9USicebeer24"]},"Identity":{"Case":"Some","Fields":["UQoEy7nEEPxX9YWrHY20XArZzxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s0eaTJTK9MLrX+ONSIZ0OpHwRCRxUBNtP/VjmdI1tXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:45"]},"IP":{"Case":"Some","Fields":["107.150.32.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8126]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bmwanon195201231"]},"Identity":{"Case":"Some","Fields":["UPHTKyCKLZfxJIghN8CjvbdO3Qk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7qAzBWcEISYu9FX9Ae6iN2i8Drm7mUWA1NPzW6jSqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:06"]},"IP":{"Case":"Some","Fields":["195.201.23.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi3"]},"Identity":{"Case":"Some","Fields":["UOsrBs1v0wuYw7ilDd75W88h0r0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bm0GDrCa+5lk7BLxQQXQey9kb3KL/WKrtso3rl1Yqxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:45"]},"IP":{"Case":"Some","Fields":["84.54.13.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TERRAHOSTrocks"]},"Identity":{"Case":"Some","Fields":["UOI1BuXchXbrTo9gdRZENko+E84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1pCUv3ekJwYEwIDX8SM3z0vQsjwRwlYudvow91cBraA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:43"]},"IP":{"Case":"Some","Fields":["185.14.97.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2660:4819:623:8331:4852:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["UMNZd+PoLAESm7IstqsNZ0dz1YQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E/9IGfQq246T3yEwKqrDJCogeckegLnl5CNyc+F95R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:59"]},"IP":{"Case":"Some","Fields":["185.220.101.205"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::205]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChristopheRelay"]},"Identity":{"Case":"Some","Fields":["ULrU5IZGeXeWEH7PAZIXhJUkcgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bP4sKCXVnweaYym2YcqPGSzvMOJ2GfsVCtSzoua9Trk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:53"]},"IP":{"Case":"Some","Fields":["24.212.140.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jaifej07"]},"Identity":{"Case":"Some","Fields":["ULih63FEfouqn+8qJZzrfiy790k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["55SHjpADStfZFpj+o7qZk4xJY6fw26nZq6JuUoz+kvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:25"]},"IP":{"Case":"Some","Fields":["95.216.9.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:95a:5734:66b:b49:52c3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["UKqf6mo6YJaGJ2xM8MKhr7Lsyhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zWmJ464csCuF6PLFsA/v9DRGTgAXdaY3boAJsFA5/E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:23"]},"IP":{"Case":"Some","Fields":["185.220.100.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:15::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarthVader"]},"Identity":{"Case":"Some","Fields":["UKnQelkVso7JbSTQ0NE/9W/IzNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sETVKNYMjoPHzVQITER7SNfvqU+flv0JqPwaJml8R4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:40"]},"IP":{"Case":"Some","Fields":["45.32.172.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toralf2"]},"Identity":{"Case":"Some","Fields":["UJ6rTF0QyamiS06gzkAsBHotZOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3JJKdopusDx7/siTGx3RTaJWevfUrYPsGQDo2l0lZwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:19"]},"IP":{"Case":"Some","Fields":["65.21.94.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:468e::13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sashaRP3B"]},"Identity":{"Case":"Some","Fields":["UIEuCNm49YgQiSNz2AkGOExyKOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8aFU1MlsTWvCN9h6h6o02hj6qdNij2tdrW7eEduYVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:36"]},"IP":{"Case":"Some","Fields":["5.147.146.222"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UH6WZaqD/WaXxB4qZIsv1A8lqHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8jaTXu0+dsuPMVssUTWRUCKdX2Kct6FgWeZMrGAVQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:01"]},"IP":{"Case":"Some","Fields":["23.128.248.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::1cb0:9bff:fee0:ea6e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk5c"]},"Identity":{"Case":"Some","Fields":["UHyhsBE/lhE/ch+iHp9//qS2eyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ri8FihH3Bc52nzemYSxlMZsdWV255kXXc6CnqwAyBcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:22"]},"IP":{"Case":"Some","Fields":["62.141.48.177"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UHwoxl67PRnvMfE4A3B3nhGYXQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["97iccf/ESe/a0v2Zhduc1V7yBle423mJ6L6KC5cvYI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:44"]},"IP":{"Case":"Some","Fields":["159.203.22.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gr8eight"]},"Identity":{"Case":"Some","Fields":["UHtd0dsW/KgAuc3BPOCo7bmoMj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+L9A/kALlXYbRhP+yapGXy+3Vt0H84NR+zGDqwvOXuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:47"]},"IP":{"Case":"Some","Fields":["70.32.0.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra37"]},"Identity":{"Case":"Some","Fields":["UFjnE2KDtM4T8Yl4cfkxzEH0HMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNNH7AFU3WinIaRy2CAYiIPGifd+YgczchB+mCd0m+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:05"]},"IP":{"Case":"Some","Fields":["213.164.205.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whiplash"]},"Identity":{"Case":"Some","Fields":["UE8j3HNEWdu6WLLxGkeZ65RRiKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s//Y+S6LEfSFP0zhOTrCD0A31Evd/hXyt8D4KqcUOns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:06"]},"IP":{"Case":"Some","Fields":["93.190.143.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MoneroMoon"]},"Identity":{"Case":"Some","Fields":["UEv1EvOwz90KsTS6BIiRfDZdMzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Be1Irz+XBlbLayK+ETYxwuCobNynMmaGLRQRewiMv14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:46"]},"IP":{"Case":"Some","Fields":["103.91.65.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["d2d4"]},"Identity":{"Case":"Some","Fields":["UEheA8o505O9VNMVzrpl5t0P3bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7oDxoIAq1EN2M6al2p2ZtgMH29mSSFe3BA1UqXKFuEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:47"]},"IP":{"Case":"Some","Fields":["185.129.61.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:666::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sunflower"]},"Identity":{"Case":"Some","Fields":["UDXrBiEIFvLKzXTR9Bo9XuKPvrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pZowcFJLoIj8FD83io3nv3HaIbwxxk6P+guW2JQ5Amo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:06"]},"IP":{"Case":"Some","Fields":["85.214.139.182"]},"OnionRouterPort":{"Case":"Some","Fields":[2022]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParckwartEfatsum"]},"Identity":{"Case":"Some","Fields":["UDQx+U/4+2nxCtWd4x87LDRJ2ZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1miUw83Twu8LPz2BntvoMzSPqSxgWyLEl9YYtwagXx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:10:47"]},"IP":{"Case":"Some","Fields":["5.146.177.130"]},"OnionRouterPort":{"Case":"Some","Fields":[15827]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tororist1"]},"Identity":{"Case":"Some","Fields":["UCe3kZNg8QQU/r2VrKC3i0FvX/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJkCB4UXT/v+DITtTkwTG4QY4KzeQhmbfQuujhcd2ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:17"]},"IP":{"Case":"Some","Fields":["89.58.4.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:c43:a44a:80ff:fea4:2939]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galates"]},"Identity":{"Case":"Some","Fields":["UCd0ugRm066benoOoiWcxiuDmKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zerbv3wlQN+LaHw0sywS/umJknWquRTT2PqwTOe/VW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:19"]},"IP":{"Case":"Some","Fields":["94.16.118.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex66"]},"Identity":{"Case":"Some","Fields":["UB9cSqyr6/3GojVDN58ZsGY5aUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MlByJ1GPWY+ak09pNzQMZE68rNTs+vBPP27av6ifowA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:14"]},"IP":{"Case":"Some","Fields":["199.249.230.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::155]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute04"]},"Identity":{"Case":"Some","Fields":["UBs9vyULCUoFyl28QkrUw9RnIaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIOUwCvPnDOvPyZMYEy/JvYLX7Ro68rplyQEWeEeVtA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:20"]},"IP":{"Case":"Some","Fields":["162.247.74.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perseverance"]},"Identity":{"Case":"Some","Fields":["UBYf9CsRuHxM3SEM+ctJCnsIjbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3o0vUV+0HAOozGjWPBFIk2GuBoktgiIWiFHLTJMhNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:37"]},"IP":{"Case":"Some","Fields":["87.236.195.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iSOcHTorRelay"]},"Identity":{"Case":"Some","Fields":["UAjkmVSsDKBWX+ivYdYWFyEqy8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFc+0H5S9KmYZHr5cwqka/l/N2+/TfxLuU/vV4VZBeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:00"]},"IP":{"Case":"Some","Fields":["5.9.158.123"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:5176::123]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilliamTor2"]},"Identity":{"Case":"Some","Fields":["UAieidVpN/qyoG8J0a+7h263byY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nTKTuR/rDIOkxdl6mAtCCbPLBt+0rk9+UVaEC6H0nDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:22"]},"IP":{"Case":"Some","Fields":["144.172.118.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UAdeSGMsQMbOrlfr2g3IUtFg6/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhsGokm+TBvbCHCL0iP0HR3aQndwzkutd5u0/ExHi94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:53"]},"IP":{"Case":"Some","Fields":["124.148.229.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShaiHulud"]},"Identity":{"Case":"Some","Fields":["UAZDiZWqVNod+OSQNVUmIiVgGp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HdYGYdJOkwm4NDFriW5jjThi7BoQZrO0zZ+gQRH0+rU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:57"]},"IP":{"Case":"Some","Fields":["140.238.215.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForMyFreedom"]},"Identity":{"Case":"Some","Fields":["UAS651psm9oL/FoeiGYgTCcfHeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5wTu+KCt8LPj1K5dTnYU7/pISdjxJuKuJtQOS4SGIMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:25"]},"IP":{"Case":"Some","Fields":["185.10.68.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:b::44cb:d7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNODERELAY1"]},"Identity":{"Case":"Some","Fields":["T/x0wijaMWXgJQeUly5yFhUs9RQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cyxoUhYqTtV9Y4xtNFfJXUiR5HFx7nX667rFeFjd0rA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:34"]},"IP":{"Case":"Some","Fields":["109.202.206.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doNOTbeEVIL"]},"Identity":{"Case":"Some","Fields":["T+kF0Hb8I5VSr2qt4nEV/oNHaLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34EyVnpbmG3Yg9v/oUr312wItIxcxysIIe/w3IxHS8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:20"]},"IP":{"Case":"Some","Fields":["84.155.116.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:d5:af24:1000:11:32ff:fe28:520c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cicolina"]},"Identity":{"Case":"Some","Fields":["T+P9Z/LwbYrZKSF6NX9iP8fGktk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Qn8MAz85olDq5qeU4+ilh5mwkzUhxO7LZxnQer6hs0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:28:06"]},"IP":{"Case":"Some","Fields":["46.229.238.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay25at5443"]},"Identity":{"Case":"Some","Fields":["T97EpSU4qpEiDQT8Je5K4sclwv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o6Al2anwZ9Y77vcQ9iUvU6AC5U3xpC5xlu89LNIv+NE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:05"]},"IP":{"Case":"Some","Fields":["140.78.100.25"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx3"]},"Identity":{"Case":"Some","Fields":["T9361Rsk3au2L7WQcfTcQh52xoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wIPDuR6Y3CB3njpRP2rDV/agc+TmYsFxZmMP3n4q33I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:12"]},"IP":{"Case":"Some","Fields":["159.69.207.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:6cde::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ashP"]},"Identity":{"Case":"Some","Fields":["T9mgMMncmPokB2Bxy7b9hDvGLX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SahTKR1zrU5Yu5x3X/MVLLkBd7O/CnCfEy1gOvgJZXU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:26"]},"IP":{"Case":"Some","Fields":["172.241.140.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skynexF"]},"Identity":{"Case":"Some","Fields":["T7osbNXWTFHcCZh+qa65C+xHHo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SqDQuOZYjhAbpV6e9X5ExeZ34K2vP3TeWlHiZZkcAD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:05"]},"IP":{"Case":"Some","Fields":["78.47.43.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2586::1332]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer87"]},"Identity":{"Case":"Some","Fields":["T7LBtuViQ0ADOFHdo1B20r5J9e4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oyvbUyLoXi75hgQBAa63uWCbumGnU1JFBrdMFGvAHqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T21:36:46"]},"IP":{"Case":"Some","Fields":["95.214.54.56"]},"OnionRouterPort":{"Case":"Some","Fields":[8187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zhizhi"]},"Identity":{"Case":"Some","Fields":["T6mP6VaNhQtnXLgouehN4uKztFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3OCBMrtw58IeR5oP/dkv/X6VjTzBxZyfUi6arP9g6SY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:53"]},"IP":{"Case":"Some","Fields":["71.76.67.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allcats"]},"Identity":{"Case":"Some","Fields":["T6H0AfjD6DJgMeeZQEW+Z/NgM6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Udt7mOTXMHCWXUtvlfa0hkhVxozFq0EQmORV1fzQAng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:45"]},"IP":{"Case":"Some","Fields":["198.96.155.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["T57892iQhOTI7pk+Ej4yt1NogEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEg9+Xm+ka9ray2VKztP9DTU0ZSIbFEJSHjc6NhnH28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:34"]},"IP":{"Case":"Some","Fields":["107.189.29.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f24b::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ajorcel"]},"Identity":{"Case":"Some","Fields":["T5W3MTZ57MAA84+HDPDPOcc4bFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fM3WkFVtIYZeUkuXtH7C7B0fZhDmJIWdIcWNR7IbU/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:04"]},"IP":{"Case":"Some","Fields":["82.64.163.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv23"]},"Identity":{"Case":"Some","Fields":["T4Z/g/wbDMaWqKxF5uk6V4AJmRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["316S9nwqL2j3gQ6hL2HK8yTCrV4urQKuw1ohymVoWT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["45.62.224.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipid"]},"Identity":{"Case":"Some","Fields":["T30hAUgI2b2V6lB6G8ZTtilX3f4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JmblR9/7/QvCamt0GNH/LbQnC6nZaouGDl61mWOGCOw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:56"]},"IP":{"Case":"Some","Fields":["38.242.238.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sobit"]},"Identity":{"Case":"Some","Fields":["T23753B1N9r7f7BHYJiRGCHp0UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IoocGWx13NJiGLoIeguMosb20NKldykLjYSaGvmiKG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:23"]},"IP":{"Case":"Some","Fields":["173.70.63.172"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra10"]},"Identity":{"Case":"Some","Fields":["T2jxsj/O2dF4Uv/94hY3woS88Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L1UNvFiccKVqSlBCdsYvISd7PzypcOk6BkW/4qI8o4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:24"]},"IP":{"Case":"Some","Fields":["178.17.174.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:54::a46d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0179"]},"Identity":{"Case":"Some","Fields":["T1beds3Copa21jeUkgf5BOWiDCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4R88J9XimWuygFjV/nIAraIBFLbVtoEh9de/sqJL0Fw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:42"]},"IP":{"Case":"Some","Fields":["185.220.101.179"]},"OnionRouterPort":{"Case":"Some","Fields":[10179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::179]:20179"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc15"]},"Identity":{"Case":"Some","Fields":["T1XE5qAkieTWkAVHvhwtZLfPcwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tm35uZoVTZxkSniTIR6EFZiXTDRULBcLsmrR2ltx6C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:04"]},"IP":{"Case":"Some","Fields":["185.100.85.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IONOSger101"]},"Identity":{"Case":"Some","Fields":["T1Dv1T3ING1lyIHYMhcHWlxc48Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RREHvJp/SPyJR43x8CpV+2q5U48rQ7iUfgYh5LXG2dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:09"]},"IP":{"Case":"Some","Fields":["82.165.77.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission03"]},"Identity":{"Case":"Some","Fields":["T1ABV6v3ChqUY20minQqiyJ7i/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IbEfRcXk8AL1FrLuu7/Ji7zbQCwAXh/dO4ztrfiSsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:32"]},"IP":{"Case":"Some","Fields":["149.56.94.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast4"]},"Identity":{"Case":"Some","Fields":["TzXHymJ0CkOsakajVVFrhQGKyKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O5r9aCGVFSHvq+cg+8lRc7DfeqTbDsWcg1p469uToSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:06"]},"IP":{"Case":"Some","Fields":["5.182.36.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pingrelay"]},"Identity":{"Case":"Some","Fields":["TzWz7JB3tY0IEpQjy5sYJe22/cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hIu+67LepmutcfszNCUaVE56s5Ltdnyoghxr9c9BgRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:17"]},"IP":{"Case":"Some","Fields":["178.215.228.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:5440::25]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CottasRelay"]},"Identity":{"Case":"Some","Fields":["TzBW6dS6w47CEABjdFIhVTYw7Ms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYAggGCtG35rUXMGXfwkX4QErmH4lc9iCA55DgfKDwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:35"]},"IP":{"Case":"Some","Fields":["212.186.71.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VivaLaRevolution"]},"Identity":{"Case":"Some","Fields":["Tw6DGpmLZEK69Btvsz0LRF5qsjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmxOB/b4JI2bwbR/qAIb5LGXAwzHDeOTzrUZaHAUsjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:38"]},"IP":{"Case":"Some","Fields":["51.81.57.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Tw5dThhMQOK5qJZkAFswih3uN1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xw1M5WcaZzd10tROZaOJQhBEllskkg+BEgfNWzPNBuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:01"]},"IP":{"Case":"Some","Fields":["51.75.143.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Binnacle"]},"Identity":{"Case":"Some","Fields":["Tw235of8fArlXI8kPaiw6yf78fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ccjon0VOMuyWfqyR7Sy28Qt/fSeYIuQkxaj2+KIJFUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:03"]},"IP":{"Case":"Some","Fields":["108.53.208.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt31142"]},"Identity":{"Case":"Some","Fields":["TwFowYzK3qsS/PJNGmm8ewWV0oI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/+ClEsAI0EB6hWHylPwAb2N1FRVAEvZyj+gzcZqFuOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:44"]},"IP":{"Case":"Some","Fields":["185.245.60.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Tv89DJ3lOc8eJ7/Fs+I7x8stQak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e2L3f04fBKFtjv/F58oqZLV15LhrZ3CoQ4Ov7o//WOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:12"]},"IP":{"Case":"Some","Fields":["77.68.26.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:31b::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tazzwei"]},"Identity":{"Case":"Some","Fields":["TvKPCsun24P1Ms9knbE6AML5/fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["johU5a9cUP/a26Wy97/RXKSdVAWZDKn+uQ1xTMD4nfo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:16"]},"IP":{"Case":"Some","Fields":["193.104.220.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex63"]},"Identity":{"Case":"Some","Fields":["TuSIrAdCvGt0e7Y3pWNc4U6Hfzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3NJ0ELWqD9D1bItwkhv5xj9eCg9Kvlm8ER1jvp4rguc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:55"]},"IP":{"Case":"Some","Fields":["199.249.230.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::152]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsRomero"]},"Identity":{"Case":"Some","Fields":["Tt4pdlLK3ctYw8QaOxYkD4v/hzs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qVjPtZECJga4lUVUxrnSiJzy+krz0VZXf1W4ZHNnx5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:28"]},"IP":{"Case":"Some","Fields":["195.15.242.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::226]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bedrock"]},"Identity":{"Case":"Some","Fields":["TtM0FZUvpS25VBGh2oZmPsGxCbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oRdPu1OgD38BHO2kvQCIG5FAXCp3lbiVRjlzNAd9mQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:53"]},"IP":{"Case":"Some","Fields":["173.255.228.134"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fedf:407b]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE13"]},"Identity":{"Case":"Some","Fields":["TsDk4yNBc/nX4C7yANa3SARvkOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i3lCmmZ5isRTCz4tO2Ekc+Vkz9jes+a4iugKjz9Jh/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:48"]},"IP":{"Case":"Some","Fields":["185.99.2.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8620:201:42d::a427]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex89"]},"Identity":{"Case":"Some","Fields":["Tr9FmIAADatv3a8K5RItAUkJdVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FaKvZ6Ej6abyNFSSjRVF6XTj1zEOz2eKAPuzDz5xaRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:26"]},"IP":{"Case":"Some","Fields":["199.249.230.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::178]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uKDbRBw5GFFLYfg4"]},"Identity":{"Case":"Some","Fields":["TqjDUdvJux+1oErAAxS3FlIy31g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TFRca9Dd9HnaKjZaT5oFy5zeDTn2k+Psg+D6/uoVOtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:56"]},"IP":{"Case":"Some","Fields":["185.38.13.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summalummadooma"]},"Identity":{"Case":"Some","Fields":["TpiqKVtxcZltGN0fahn2SrQDa0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uYY8M2BN2x31TwOi4iaMy+DGHjJqtSp0KIFlbVjRz2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:36"]},"IP":{"Case":"Some","Fields":["213.239.213.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brwyatt2"]},"Identity":{"Case":"Some","Fields":["TpeWSBwedfddV+jB/IyO0RFDMxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5b4pvpnW0KfYovRW2xenYOOInBea/CunTbkbI+xM2KI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:44"]},"IP":{"Case":"Some","Fields":["172.92.148.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["makeuseofIT"]},"Identity":{"Case":"Some","Fields":["TpG2ZWHuAbFlPhgD/lO1xADZZ9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZqcxbY8F2Xc7EqICsc3eUN44Y55KaJaA5I41TpAbcCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:34"]},"IP":{"Case":"Some","Fields":["87.154.214.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bv0002w"]},"Identity":{"Case":"Some","Fields":["To/PnQwTe+lQUrGpjdMX9fnbdKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qumXouim4VuGZ2IeoLURMvdFuP0p5Y4l8jM1FGZd+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:01"]},"IP":{"Case":"Some","Fields":["77.172.70.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a469:a88b:1:5a9c:fcff:fe04:34c2]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scarlet"]},"Identity":{"Case":"Some","Fields":["To6K4p0SANvjFIKVxMDDzGjElUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+ZR3aNtzoqIT1GIoHSnOoyCMuXnQsvc2E9F/kljrN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:33"]},"IP":{"Case":"Some","Fields":["172.106.200.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ymkeo"]},"Identity":{"Case":"Some","Fields":["Tozm9WUec0LB5+XtAx6CB4E0+w0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w8P0JQraS/IH3nZ0sNS/dvJrU6zConBFyPwVGWoUZm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:24"]},"IP":{"Case":"Some","Fields":["185.238.129.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:116:1:ff:60ff:fe1e:4473]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cotto"]},"Identity":{"Case":"Some","Fields":["Tov3ObXng1d27dcs+cqkAqzgAFU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TGT6n32DpXexPhUkW1tLHsl7XZ2XPC/SgYp7lLViM6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:35"]},"IP":{"Case":"Some","Fields":["157.90.112.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:e8a0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rasengan"]},"Identity":{"Case":"Some","Fields":["TolgccpqcS+py9DjabdZYmVMDRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S0d+wj6V2Doufmps5Qr1C4LPoCGzuc5+P2nCxxeciiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:38"]},"IP":{"Case":"Some","Fields":["139.162.66.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:fe7d:e808]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fento"]},"Identity":{"Case":"Some","Fields":["TnN7v8y+RakjzoJXfpnc/6vFv/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yCv4B211fUZvNmiHouDc5pL9cfaPej8lLFP1Wualkzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:39"]},"IP":{"Case":"Some","Fields":["81.17.30.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobbs"]},"Identity":{"Case":"Some","Fields":["TmP+vQWbTRo4vAMl3ippSIP9DhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fTEUxHsZ2gPVk+xTe9w0HdMzWGFkXkmLighuDllmN9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:37"]},"IP":{"Case":"Some","Fields":["46.228.199.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:1267::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhult2"]},"Identity":{"Case":"Some","Fields":["TmE1F7Px1BlgdcFvvVOEPtnlQgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubfIz9trW43KOgUK+vLSfQngOfJm28LHDsomjJLzXio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:02"]},"IP":{"Case":"Some","Fields":["5.255.100.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:4dfe::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["woothoot"]},"Identity":{"Case":"Some","Fields":["TlUdk9VvIm2ZFON2SBEGOuusTvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VgjTbPm7p3ygkzwsln40pyP2ljEB5pUOEjTRnAT/FWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:58"]},"IP":{"Case":"Some","Fields":["136.56.58.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["burnigHell"]},"Identity":{"Case":"Some","Fields":["TlTtlAVjZj9K68per1QfopbHDhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7y2nRt4amJVDpuC6hZRAKXRwLU7VZ7Fu5xngi9Yp6Io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:45"]},"IP":{"Case":"Some","Fields":["192.164.137.158"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hBridge"]},"Identity":{"Case":"Some","Fields":["TlF/RuvtE5OspgYOZMsv0W7cFXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["taY0/Tq6YBpoBcwh6dfLTF5kHI43WvF+qdWqnqozv0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:31"]},"IP":{"Case":"Some","Fields":["136.24.227.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortals1"]},"Identity":{"Case":"Some","Fields":["Tim7cQY4V5lLzOcjU55TzDZUXsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uw6sx9tTnFuRx56MI/M57FztgJmJ/4VVoX/DuhSk4ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:49"]},"IP":{"Case":"Some","Fields":["45.58.156.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["minotor"]},"Identity":{"Case":"Some","Fields":["ThUImIy5SrjbPJO3yW+tVHdB6cM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9LT6hAdC2oAQdG3To7ugIcygtIzR6jqNLcb0My67Zlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:56"]},"IP":{"Case":"Some","Fields":["67.165.9.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SygmaQuit"]},"Identity":{"Case":"Some","Fields":["ThLjDZasFqmtZUy3/nfpz11MW7U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kt7OaiYoLi7ICc+rjh/ElJ8tAOZ1e+jJcBAekPNhbEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:56"]},"IP":{"Case":"Some","Fields":["5.253.204.149"]},"OnionRouterPort":{"Case":"Some","Fields":[38292]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OneMoreLinuxTor4"]},"Identity":{"Case":"Some","Fields":["TgqZV/26dBivgqPL/LU9i42X/I4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0kH0IrN98z9VZUZ7wYoUeqKk9S2AnaY0TzzjJMrjo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:03"]},"IP":{"Case":"Some","Fields":["91.136.165.196"]},"OnionRouterPort":{"Case":"Some","Fields":[12222]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zikonio"]},"Identity":{"Case":"Some","Fields":["TgmHyjp/00VEvko6JKK1RWzUErU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P7aTSoto7DPF1E0clBZi+ywUP3Yhqi8yyW6Mg05iDjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:16"]},"IP":{"Case":"Some","Fields":["89.233.108.125"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1129"]},"Identity":{"Case":"Some","Fields":["Tgl5gHRHTM9R8da0YUHBUGWHAgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["leUf678CjQPbDlA2/0c4GUIeXD4eAECHzYzm+HskRPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:51"]},"IP":{"Case":"Some","Fields":["185.220.101.129"]},"OnionRouterPort":{"Case":"Some","Fields":[11129]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::129]:11129"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torfu2k22"]},"Identity":{"Case":"Some","Fields":["TfBjWWOStd9wZJlL6cElLkml4F4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DMVQ8Bh9aOUT4YaZ1baSeOAzLHzbkJolPaJHQdG1/+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:19"]},"IP":{"Case":"Some","Fields":["172.106.167.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who10icebeer45"]},"Identity":{"Case":"Some","Fields":["TeqiFnXzVtpELiiMkFyQqtbSTEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ovbcLcYmMpnzqn/3EoKjeo+lZI4yI+pvM3kMuK2PZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:35"]},"IP":{"Case":"Some","Fields":["63.141.233.118"]},"OnionRouterPort":{"Case":"Some","Fields":[7322]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["floppydisk5"]},"Identity":{"Case":"Some","Fields":["TeT5+hBDLmJMCCdawmRupWmPmmE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qlvuzg/ZXgmQ1N9aHq9L2t7j6u9poVkReFlOJvWNZC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:54"]},"IP":{"Case":"Some","Fields":["185.213.175.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:3a30::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainboweuphoria"]},"Identity":{"Case":"Some","Fields":["TeGV/g1elv2K/aJUlXhdJ2s2d3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IfMdZDaYpiuwfLFGnUJdIpaGJwD87rYDRLYD2tOzBvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:20"]},"IP":{"Case":"Some","Fields":["77.83.198.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diodeOnion"]},"Identity":{"Case":"Some","Fields":["TdEcPxH14okdV++fffQ77htRT84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CQJ3lttbzrAn54U9TpS5nMHe2g7FuYR/FabzrBkZrMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:32:14"]},"IP":{"Case":"Some","Fields":["99.149.215.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sweetnode"]},"Identity":{"Case":"Some","Fields":["TcvJVujw0sqJ+CqFdHb1/fPN0kQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZaLU/Detzx7JOsWqwS4oyoyq8taiXjWTEzZE6wEbR50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:36"]},"IP":{"Case":"Some","Fields":["51.77.245.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProphetNode"]},"Identity":{"Case":"Some","Fields":["TciLXKkzIKtTm6Yc6aGtc8UYOtI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hiJnt1IJ5ZO8WiaGiFsSZj7JEvFcvp75YEExBtmBy0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:19"]},"IP":{"Case":"Some","Fields":["62.171.135.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2066:7989::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cannoli"]},"Identity":{"Case":"Some","Fields":["TbBJCgQggJqBSed4u6yPHpNJ2ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TL+9e2BGBs+/9vobcxG2370LDzXz3TitGNXUqgbl/z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:25"]},"IP":{"Case":"Some","Fields":["80.211.185.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thunder"]},"Identity":{"Case":"Some","Fields":["TaFu1OPfwfxNTHsSZSbErHtq2Ys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUeoCjVVsipgnDLXs8kKg7pdAIuUEypFK3wMEsJYMA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:25"]},"IP":{"Case":"Some","Fields":["45.77.160.51"]},"OnionRouterPort":{"Case":"Some","Fields":[23352]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["SixFootHotLook"]},"Identity":{"Case":"Some","Fields":["TY3jlcSnk0Vkap79wFokHAPAR2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cs8O5ukT0uSTFXkLv7kfc0R/OfJT3W92tRE9mDZG8D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:49"]},"IP":{"Case":"Some","Fields":["178.249.211.100"]},"OnionRouterPort":{"Case":"Some","Fields":[54993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6ea0:d509:3::a11e]:54993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["TX4rpN601w4WoThi5vk4PnwUQsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l+jMVLArktUiKvNAxVgRUOev7h0K8cpqIpzAZMvrpJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:31"]},"IP":{"Case":"Some","Fields":["146.70.124.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themossyboulderspa"]},"Identity":{"Case":"Some","Fields":["TXkWlji12vghswYkcl/TQY+FCt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9kV28m20xuCWul5/tb9x1XLlrf2jSok8Knmx5RDqQ9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:43"]},"IP":{"Case":"Some","Fields":["45.114.130.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pirut"]},"Identity":{"Case":"Some","Fields":["TXjFShRZEcZ8kAP+XVMUcmyvlCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ipeNu2ri5kSxd/tFNsOVLQo7PH7AIvMXht9et+sCX7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:36"]},"IP":{"Case":"Some","Fields":["172.106.19.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa1"]},"Identity":{"Case":"Some","Fields":["TXDwXdMIoupbZx5ECHm/rayShg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bcoMI067n419xg7Qp2zQJEmfA0bXlCdbgXOG1BjfFAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:01"]},"IP":{"Case":"Some","Fields":["95.217.112.245"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tun"]},"Identity":{"Case":"Some","Fields":["TUyCzZ6Kq8s03IsNQ/ETgzgpM5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Mp1zJ4lzyJAnW8KgXCdpoqJLg3U/DcJZcCT88bZzZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:20"]},"IP":{"Case":"Some","Fields":["222.252.56.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carrymethrough"]},"Identity":{"Case":"Some","Fields":["TTo+P5jOrvLiWpV1dBkMHqan99E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XrFcUX0Q/OgT6RmuLzCqhmpwaB4bJMd0mIO4V9V055I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:52"]},"IP":{"Case":"Some","Fields":["58.185.69.245"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LTUFREEDOM"]},"Identity":{"Case":"Some","Fields":["TRkuXwekkZJidO49Idns2GrT5/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rK3WyHC58HsBc6x17HTMt9v3IDf4/dq2APJfH7WZX9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:57"]},"IP":{"Case":"Some","Fields":["78.61.137.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["honeycomb"]},"Identity":{"Case":"Some","Fields":["TReT1CP9sZaOqnRV68BwoOSLM+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dOGCqawYt12SvtkxNgqtUhOVjkP/72hHkULxahrWAOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:59"]},"IP":{"Case":"Some","Fields":["104.168.205.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev8"]},"Identity":{"Case":"Some","Fields":["TQ30aNyBb4CWcCwtosb9Z1Yfgcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uoTzBDXSBjz/AoxIkT7jkArWv/FBGBEJvQ+Pjzo0loI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:32:39"]},"IP":{"Case":"Some","Fields":["46.232.251.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:66e:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freiheit"]},"Identity":{"Case":"Some","Fields":["TQxvwcenmsrtkMExv2VD2xkgQek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mYLSw+8ZUx5qvmWbMAuUQcuOg9J+3uf5GNcv2Uizj/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:06"]},"IP":{"Case":"Some","Fields":["185.225.68.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpaceJam"]},"Identity":{"Case":"Some","Fields":["TQLSfIjhvucm08RMe9eEPA6SrbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+x0NdFB3/93czt6Us6NOEdZxm4B/JqQhJHBB/N21EnE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:30"]},"IP":{"Case":"Some","Fields":["139.162.245.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe9b:277b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOneAndOnly"]},"Identity":{"Case":"Some","Fields":["TPJpJBUa88e5puCFdJbUWFGM1U0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bau25CyEWLrcJrH8NFkKxKCPaAtMm1xV9dsDMAe8BDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:50"]},"IP":{"Case":"Some","Fields":["5.150.239.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1138"]},"Identity":{"Case":"Some","Fields":["TO6wzpD/cMtUzuN+r84XZmEjFRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n8hxZ2O5+CYomadQPmyow2/DJBJb74TehsApQXGFJQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:05"]},"IP":{"Case":"Some","Fields":["185.220.101.138"]},"OnionRouterPort":{"Case":"Some","Fields":[11138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::138]:11138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QOnan"]},"Identity":{"Case":"Some","Fields":["TOr85YQcDa4wFktPWUUvf02Bimc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["weCWmpoX9n8jklnysBmKFYOpeWQ2ZCmRIhXKi+Shc74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:41"]},"IP":{"Case":"Some","Fields":["185.183.194.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:425a:6fde::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["TObYP/qK0kdnAH6Mly83HyRo8Jo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HrEz8wdOGPF+DaxOlm6O5tHhIVGHkJoV4f7NsKpiTtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:56"]},"IP":{"Case":"Some","Fields":["185.32.222.237"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:ee80:e:fefe::40]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["TOQiRG1DsKIfD5yhRtkHVYNAIQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OR1w/v+Rv6hTuROd2oZmktPZDraKz0JqbnTvcfHmKnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:23"]},"IP":{"Case":"Some","Fields":["185.194.142.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["henkdefreumel"]},"Identity":{"Case":"Some","Fields":["TNTf/vOXHJAqIhANkRysY5vi71w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3GckLyQAQpiUENtlZDjcDqw5z0dbVOxaGvP9TccT+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:26"]},"IP":{"Case":"Some","Fields":["143.178.111.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CodePoet76"]},"Identity":{"Case":"Some","Fields":["TKeCzgCtvN25PeP8rPhERTU9d3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1dvDxKoQkymHlOb2boribwF5fNiIhNIZJ2g/zqk0vc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:25"]},"IP":{"Case":"Some","Fields":["50.53.115.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atlien"]},"Identity":{"Case":"Some","Fields":["TJ9xfz0m0eVrHNZ050rUsuwe7Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JAUkd/050oOj2RerrUUAFor1zuXq4mbZ/KRcOMkrBaA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:51"]},"IP":{"Case":"Some","Fields":["23.94.203.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blablabla"]},"Identity":{"Case":"Some","Fields":["TGeIq5C4bz+RDd9r0yA/ywpHAOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fl6PKnpGSUKoYW4BDg8L/RoBoF1QS1UYGXvgP+/qbgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:10"]},"IP":{"Case":"Some","Fields":["91.207.57.115"]},"OnionRouterPort":{"Case":"Some","Fields":[18049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MLaBnetTOREXIT02"]},"Identity":{"Case":"Some","Fields":["TD70sMFy8MEokVZuJ28W19wH0Ek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0WKDLzHHWTJd1LmoijEBeRFUnDnT3vkIA3oE3ujF76k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:59"]},"IP":{"Case":"Some","Fields":["87.237.165.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:a6c1:0:2100:87:237:165:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["specialsnow"]},"Identity":{"Case":"Some","Fields":["TDTnzgU0yJmU3vs5YA5t9Z+yu+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wP7FqjA3r6/PAiHaQhDMsxvoM0NlqQhgfHcKk+C1/po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:42"]},"IP":{"Case":"Some","Fields":["87.236.146.115"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a11:3b80:1:0:97::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk12d"]},"Identity":{"Case":"Some","Fields":["TCVUK3ZJ/ARy7b93Uh6lePmvUVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRzbOxa4qj2HUdS2mbJzDFJE/VseDPirXE5wsfzeJU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:35"]},"IP":{"Case":"Some","Fields":["163.172.182.26"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:63b::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yunmensrelay"]},"Identity":{"Case":"Some","Fields":["TBzpxdPY8h5zVC/w6HMSLeLa4T4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDfGcy2Uy2I3DVjKSQB3lC0aaLCSNHBuIEQLEp1vOv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:22"]},"IP":{"Case":"Some","Fields":["203.51.27.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["S/3nKC1jWXRfZTVyTdqtzSeeT9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s3rL+vTjr430qXIg6in1ELOW7ifCeB7oNxbPrLEwnaE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:42"]},"IP":{"Case":"Some","Fields":["80.64.218.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["karotte"]},"Identity":{"Case":"Some","Fields":["S/ycYxqT/0ujqoS8aTG0MQw4omM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P+c8Y59UIn445aXsHJfGH/wr+ALWsNdDpAevM5/Coac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:51"]},"IP":{"Case":"Some","Fields":["109.70.100.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["S/yNQVbrW79DNedA34THgS+32Ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/dGRc8jzmybryU0SMLzw+DQnl0r4GxpmeV6W8JsDNkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:45"]},"IP":{"Case":"Some","Fields":["185.213.208.47"]},"OnionRouterPort":{"Case":"Some","Fields":[7777]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay33L"]},"Identity":{"Case":"Some","Fields":["S/PSmbxQDDUIaPB4dJKRx2bHqm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lU+tHct7Wx5cDVvngT+e+Wxj39Pw8qqwBCoHiHRkWP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:31"]},"IP":{"Case":"Some","Fields":["139.99.238.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::3a8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["georgector"]},"Identity":{"Case":"Some","Fields":["S+1o356vbBEdh3jhnMmsev7E/AI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6kaodHpn1zZ2EifB5eDc2zGC52J9aTa255tHyWkYdEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:24"]},"IP":{"Case":"Some","Fields":["92.17.234.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ACABindustries"]},"Identity":{"Case":"Some","Fields":["S9q1a5aJocke6yUhI6/c9543osI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TEEw2hnCChN9wlhtnMC7NMvi107q8dyfgtnHPFEqDu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:56"]},"IP":{"Case":"Some","Fields":["50.197.11.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HexenRelay"]},"Identity":{"Case":"Some","Fields":["S8IDa+oz85cjKRKF02qjwa9Dbes"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XFUiFA8XWkNJRZSmgFElrpS3D3iErFAS/6DqN0Soh0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:04"]},"IP":{"Case":"Some","Fields":["217.160.191.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra15"]},"Identity":{"Case":"Some","Fields":["S6PBKwc7fj95d8Rq82OGhbuJST8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qdUmA/7OPdpTh5+QpNIvu2JMwCdX2OrCz5w71Qq49vA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:01"]},"IP":{"Case":"Some","Fields":["104.244.73.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yyzz2"]},"Identity":{"Case":"Some","Fields":["S5X5PNsW8SlvShMzeFwV8u2tg+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jpXSWiPSfmHHyssFt6N/iWWQV4C5W/2GO/h/GKa0Edc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:39"]},"IP":{"Case":"Some","Fields":["192.9.236.179"]},"OnionRouterPort":{"Case":"Some","Fields":[3389]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c000:e400:99f6:e55b:322f:463]:3389"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tagliafista"]},"Identity":{"Case":"Some","Fields":["S4G8Hj1ZNHJ4AZwOfneeP1ovAXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83jUSq2JJkCkNmG/Y09tRds9Kxq0SefsoqNeZIWKPtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:16"]},"IP":{"Case":"Some","Fields":["129.226.35.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORion"]},"Identity":{"Case":"Some","Fields":["S2jQ5Tku1vNGmjeIBjE1OpZVhjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmIlMIf5NiTWE0C7gR/kF9xRm2E2Qbp1aAu8JkWSNlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:58"]},"IP":{"Case":"Some","Fields":["192.99.34.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amersufi01"]},"Identity":{"Case":"Some","Fields":["S19If4k9a3dkbPgYWwtmowKsKmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUC4iTS8vb2B5RgwdA7BZ6VfMGy9gYvAfHhdWUbrKG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:20"]},"IP":{"Case":"Some","Fields":["5.196.95.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:fe22::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tubealloys"]},"Identity":{"Case":"Some","Fields":["S1gvP0u03lbXco3rIqolU1CHD5g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wqgwg90Tza3Fmt+t8v8HYshTJpSkrjQ6ZyVNlyO9dEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:31"]},"IP":{"Case":"Some","Fields":["213.144.142.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:ad1::24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sgtor1"]},"Identity":{"Case":"Some","Fields":["SyLEpW+AXJfS99dvCO2mlO7/wQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ZjpGUBKoa7u21q9jWtWn/u0Rfr4W5rkx5UhZuHQ7uQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["198.98.57.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurosuse"]},"Identity":{"Case":"Some","Fields":["Sx6gmDeaiut3debgIJQLMJm1vnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IA7SxiTJ3PJvoeVzzaCXULjPVSWxafyZ+8/ZkXT0VAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:51"]},"IP":{"Case":"Some","Fields":["159.69.27.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:2170::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZXSpectrum"]},"Identity":{"Case":"Some","Fields":["SxcwJUFjNG9DTeGFu6UbYtkHT8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8Ah/0kBQGYIfiHO9IWG3Ke1MSE3rjaJOhTmoUhDkKOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:53"]},"IP":{"Case":"Some","Fields":["93.95.88.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2780::e01a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["birnenpfeffimitzimt"]},"Identity":{"Case":"Some","Fields":["SxcEdtCUWTKEOPPmjtGVFsn3WoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bV2II3otq3vgEXNaqPvsSRelKV9aMciy8il/t45O9wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:58"]},"IP":{"Case":"Some","Fields":["212.21.66.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bf0:666::666]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SwqqR9kcWJLvLlw96dzIaNFmNas"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1fEjtPNuzunWc+PYwlhQZGO3lWK49e9QrPNkdrD+YE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:02"]},"IP":{"Case":"Some","Fields":["129.159.97.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["whatisyouronedemand"]},"Identity":{"Case":"Some","Fields":["SwQ2pgqEWFEVWBOYZbcqkSoNF58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I6NmOiLu9RKpbEZdSG1VPzkzrKu3KoP4VHjcvjdQSOw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:13"]},"IP":{"Case":"Some","Fields":["168.100.8.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["SviRYD97vcCFf8rOujOGzfDmGe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z9DbFcEUqYx+Iddm8dkPeruD0TchLpIgaDpC5gUZd1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:22"]},"IP":{"Case":"Some","Fields":["51.159.188.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allTheSaints"]},"Identity":{"Case":"Some","Fields":["Su9CLz1U3IqNdbwHH/1N4c+bon0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsZOr902l7TNIN3+6K/SqJGz4itAKosIOXTbTGBMLmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:21"]},"IP":{"Case":"Some","Fields":["77.97.245.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RonnyH182TorServer"]},"Identity":{"Case":"Some","Fields":["Ssv50daf1LZVdeEXvLKWrkePM8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ycJ2xQWdY5Erl6JJ4MAAhOvSWuWMUP3jFhBnmTRtgC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:17"]},"IP":{"Case":"Some","Fields":["79.192.212.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stellvia"]},"Identity":{"Case":"Some","Fields":["SsTxIMEZxyNWvJwzvxTibSvwUtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EEO0Nk4NuZYYAMcxttTGY4N2Uz7GCyuD/cmx1Hyi4xM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:11"]},"IP":{"Case":"Some","Fields":["37.123.163.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:28fd:bb03:7374:656c:6c76:6961]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Sr3V+VT7xiFiK5vY7zHtYOtlQIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIYdbPHzB8X3grWj2+JwC3XkSCeMUS9/T2sSLoidZBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:29"]},"IP":{"Case":"Some","Fields":["90.110.232.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb0c:7aa:3800:7075:73ff:fe74:7265]:9006"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["SqMPphAfO8w4b8pMIGXf9dDiquY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Li1wEFqqVNJ8FI3K2DiPdtDYcawX8zA8fu1w0aV5kFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:02"]},"IP":{"Case":"Some","Fields":["195.88.226.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ymir"]},"Identity":{"Case":"Some","Fields":["SqADVgTfQOW6INvojvbRFDJCG/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0j3D3BYHkrA3DFxq8xf0Su6ShWKdvzT48pj17+0Wrdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:44"]},"IP":{"Case":"Some","Fields":["45.154.255.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lz53"]},"Identity":{"Case":"Some","Fields":["Sp1h6OOdyDjVTEi5JeKF4Z7GUJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6qk7KFY2t0mjyBmilwfi8IZej9gvjxe5fCsfbib/PTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:45"]},"IP":{"Case":"Some","Fields":["173.77.121.34"]},"OnionRouterPort":{"Case":"Some","Fields":[18585]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sasageyo"]},"Identity":{"Case":"Some","Fields":["SplrAXNtFkbnKmAButCPJgfMJJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNRt500fLagc9Slq/wIhpfQXMw+knL9vHUYB9qVrIio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:52"]},"IP":{"Case":"Some","Fields":["82.165.2.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8193::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clicker2"]},"Identity":{"Case":"Some","Fields":["SnzDJCQQv0GFzvsogjmI+CGG0nQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLpzcki0WrER6Axy1A4roRArOUNqBJPEShun7IpO9A4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:11"]},"IP":{"Case":"Some","Fields":["94.16.116.137"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:91:2549:9:f370:a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SnTgCbb0isButJmYZufyWK+LH/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zpf4S27LRZQMzfuvOk3SjnMjc0j1npF4f45XvjAA62I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:09"]},"IP":{"Case":"Some","Fields":["23.128.248.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::848b:5ff:fe51:463b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Smn5ImthE7BoHVyTu9YNX8y+SBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rd4y5V9HvvNx2LjUHbMVOcJjsdbur0y0m89rQfIkqdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:57"]},"IP":{"Case":"Some","Fields":["78.35.85.154"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["SmkBD/NoMNaUnKRFaXToWF6SD0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIhdXVoBluyu0hj+7b61t+9Fu7rYFaZOnoTo6LIC96w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:22"]},"IP":{"Case":"Some","Fields":["212.227.73.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:46c::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["interestingnickname"]},"Identity":{"Case":"Some","Fields":["Sl6KDfzu4BIbJGR+vWPpFfAXc4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CuhYoR3uKQ4V0PA/mjHmV2J1GR6HEiLIjZrWyEW6Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:40"]},"IP":{"Case":"Some","Fields":["130.61.57.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lunabase26"]},"Identity":{"Case":"Some","Fields":["SluN0F/Ab17no1h0dqAPXM0Q0oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["idI9lvaNPJlmRJ9HAfEYcDbVSpPI+M0US4CymshUfhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:46"]},"IP":{"Case":"Some","Fields":["185.67.45.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labell"]},"Identity":{"Case":"Some","Fields":["Sln9NkLE2fRqjZFqybxkOQvLxq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A57JfvpttMOP4JYN5TdirSkQGmjFTvejbLEBaStj9lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:57"]},"IP":{"Case":"Some","Fields":["51.178.81.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber61"]},"Identity":{"Case":"Some","Fields":["SlMapxKj3wqQ60JxHuvpC2kYs3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PqQWFuAhdhkhVypbmyOGhpNU8RinntZOSBc0Wd6zihQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:08"]},"IP":{"Case":"Some","Fields":["185.220.101.31"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::31]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netzwerkspaB"]},"Identity":{"Case":"Some","Fields":["Sk77PpNHGJtquUU4RGksyh9GpMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["94a6aXMi1KI/RaQNfou/auknNitQdDuhu/lJ+wBD8YA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:51"]},"IP":{"Case":"Some","Fields":["135.148.100.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr262"]},"Identity":{"Case":"Some","Fields":["SkMp3rxhlR9GYyBJklPCKXNUpMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6boSdOUPpuBZ0zdOF+I4JkNXli1WUVmq6kOMWihGjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:19"]},"IP":{"Case":"Some","Fields":["85.208.97.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq01"]},"Identity":{"Case":"Some","Fields":["SkEd2Ou9U5qgCQowWFa5yDj38tY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7n7PjcOEnyYmzUtnD/s6ZkFDdwhm88bVol3u2eHqSxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:16"]},"IP":{"Case":"Some","Fields":["193.32.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tormachine"]},"Identity":{"Case":"Some","Fields":["SjuHTwGH8s8No8j3YGOwcPn3oU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DZyedbxAoNaqSkTzqg+onFoBwxPDdh7gW+HFxhjbdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:10"]},"IP":{"Case":"Some","Fields":["87.118.116.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ShacChTkH2R9AJ7EnSij0RYp2vA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6FOZc8NHMocZVv2FIsqksaJpvAZQtxYNvrfT79oUy5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:49"]},"IP":{"Case":"Some","Fields":["185.220.101.44"]},"OnionRouterPort":{"Case":"Some","Fields":[10044]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::44]:10044"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc13"]},"Identity":{"Case":"Some","Fields":["Sgj5eIUrPMXbMlUop3t15GuoKWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iE2iu6CeeybLKLtX4SUI7RCMJEMwpeOUoCI3MR9g+QE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:59"]},"IP":{"Case":"Some","Fields":["185.100.85.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SgeL09m1wORbVnl36vYWDcogAVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kdEAfMAixUyMRZ64Od6MaH7PBls0pinYCNEv7O8XZVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:43"]},"IP":{"Case":"Some","Fields":["46.208.152.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gslinx5S0zynC"]},"Identity":{"Case":"Some","Fields":["SfkG+gXard3KZ3tsS6GWyqEELpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a3vlUMv7MjitiHiEP0guR4MJTcjVZgZw6OJyzTh3WTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:37"]},"IP":{"Case":"Some","Fields":["101.3.121.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM01"]},"Identity":{"Case":"Some","Fields":["SeX7lXBF/dyMUyVc62umU+Hpql0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CtoRUtkEtiG3XXXrti9FErS12DbmhMU4UsCUCEgRKwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:48"]},"IP":{"Case":"Some","Fields":["185.239.222.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SeGcNwUFstlRlfN8Qwxbsb7Zt1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SESRm9pqT9VAPf68I3SIyQZ+pLjEwTZg0wDlzmDASE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:18"]},"IP":{"Case":"Some","Fields":["193.142.146.187"]},"OnionRouterPort":{"Case":"Some","Fields":[27551]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who7USicebeer04"]},"Identity":{"Case":"Some","Fields":["SeEE55VeVXUpkur6L2Wog66H7xs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRkIPWCjGJ1OcPlOjXvdfP1oPFlpzri/2mjl2t2vQck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:37"]},"IP":{"Case":"Some","Fields":["142.54.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8086]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlickWinkel"]},"Identity":{"Case":"Some","Fields":["SdwiKnSUrvjn2/LjyqvyNQTHe2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJKujQR3ntC178p3+rCsfMoiZnnYQAN+m1HLHflvr8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:30"]},"IP":{"Case":"Some","Fields":["45.142.232.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:29b6::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousLibrary"]},"Identity":{"Case":"Some","Fields":["SdE7NInmhWRBwrV5klqHLejBKgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IJ0khEhKI2/ROE/PfBtPFa2E/0OMQmTAIS7zJaN2NC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:29"]},"IP":{"Case":"Some","Fields":["107.152.33.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARelOnVult"]},"Identity":{"Case":"Some","Fields":["ScQdWT7hG9/NRMNeRzwgv+WBA0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Cg4a9VEbPPbDqYptkuftSNtbTsqrNcJa8N2ecAgWxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:17"]},"IP":{"Case":"Some","Fields":["149.28.136.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:4400:76e7:5400:3ff:feff:d84e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nicodeamuz"]},"Identity":{"Case":"Some","Fields":["SbTrjoF+XxtZQHSaJhCvD5lQyAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jl0sxjXTDPK34PBCukSIR4Kho+5fhyJkpj7Hd7Lw27E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:34"]},"IP":{"Case":"Some","Fields":["216.197.76.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HellGuard"]},"Identity":{"Case":"Some","Fields":["SZ+gFDMyBJEhYiWAH+BYnCULTW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pRAmTfHKuPvvhsYBbaaXcgwPo6vrlbtWjRShXXn5FS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:03"]},"IP":{"Case":"Some","Fields":["94.134.28.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI15"]},"Identity":{"Case":"Some","Fields":["SY86AtxVwhOs1+q9JeCMYUbXX1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I40yZN5qm6QKZ4+kqzb/rIBx+tjIaAmBsMmJDBQta/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:15"]},"IP":{"Case":"Some","Fields":["171.25.193.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ColinCogleEU"]},"Identity":{"Case":"Some","Fields":["SYzdO/neWaVnjoSI/qRQ4YdiQqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zKuKE8WRwYOsm2gZEHvwRCnsFXV6+RG4j9BkrgF4qGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:48"]},"IP":{"Case":"Some","Fields":["51.159.186.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1202:1324::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alibi"]},"Identity":{"Case":"Some","Fields":["SV8HyuzvcpkHwwax77AJTe/RO1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JkicCxJjI09Fvo7Lu4ZGWIwFe3M1txALXede2LMut7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:38"]},"IP":{"Case":"Some","Fields":["185.56.88.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnotherTorRelay"]},"Identity":{"Case":"Some","Fields":["SVtJaGfIS7ySM4MB2SSFDyJuddo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+DTMYa1SVVig1RVuaUkmqqf0U5SvvOF+L+6IEjaX50U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:18"]},"IP":{"Case":"Some","Fields":["5.135.162.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e531::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andr788k"]},"Identity":{"Case":"Some","Fields":["SVS1GvDLraCOS8OJ3x4+QZU1Flo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kvczBGLBpBNptFT+dlIUjGQkjx6GsFlQ84mFhxtgXDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:44"]},"IP":{"Case":"Some","Fields":["209.141.55.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:20:be7::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["configwaseditted"]},"Identity":{"Case":"Some","Fields":["SUWIJ0eegsohirGvtLcdKuJBcHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YN3BLmTPz41YlCet7twhAtslo2sFBnUzwFjBdcJTAJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:40"]},"IP":{"Case":"Some","Fields":["14.200.177.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ST4wZ+0qtUM+Kds4eXUB5dzPyz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cJMtYRPR2W3gW3rk7YW9MFKPjEXugRL9OdxIV7YwgI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:07"]},"IP":{"Case":"Some","Fields":["45.89.124.247"]},"OnionRouterPort":{"Case":"Some","Fields":[55464]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SSkEGj/uaYmQMUvWHQ32lYxCGxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Twtnss23Qyqv3W2NAvsdwf7bLbg8c9hLaMTFsq5Nqpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:08"]},"IP":{"Case":"Some","Fields":["81.95.52.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI22"]},"Identity":{"Case":"Some","Fields":["SRtOVbT9T97GOyKbCj5Zho/KHx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FppQoBrAIJFPVCcbVWpSgn72e5SmQZ9f/BGwDIweuh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:49"]},"IP":{"Case":"Some","Fields":["171.25.193.80"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::79]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VZFFNRMO"]},"Identity":{"Case":"Some","Fields":["SQbN7NqlthR7whyrpkw8Qmc+2wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvwdQHiR9OfhTtdQhRtJEHwjb+8s99wQukXGAC/TBBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:25"]},"IP":{"Case":"Some","Fields":["185.65.241.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6e1:1001:888a:51ff:fe8d:3326]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gotaRelay"]},"Identity":{"Case":"Some","Fields":["SQAOpdQ2j385Q0JfBq6G898sz0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6v938lhMLcO9GVNdlhtlonjZAT5An/n9i8nCUmzTCHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:03"]},"IP":{"Case":"Some","Fields":["45.116.189.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SOhIAHa8Jn/cQYJqqF2CLpriPnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLbEgEOg9JMMGsvklI2A+xfPMlOleFHa0nStUHKoY0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:20"]},"IP":{"Case":"Some","Fields":["87.142.105.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athekiu"]},"Identity":{"Case":"Some","Fields":["SN6DL0vmlVs/Px8GAxDzv9enkD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vww+4Gq+ToJMJHq8seeitshAGq15vJNIOjxNtXSTtJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:59"]},"IP":{"Case":"Some","Fields":["37.11.134.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["battaglia"]},"Identity":{"Case":"Some","Fields":["SNjFR36eOGSc881eKhfyAbykAx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PDZqFiQ/nlgf+9bIui/r32ZCqXdIbOMBLMoXbHoIvUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:23"]},"IP":{"Case":"Some","Fields":["160.119.249.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wohruo4aXaed"]},"Identity":{"Case":"Some","Fields":["SNU9NRc6TvGON2gvAiOilhd9dOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yFrkrAwHmgX0jQAzeryKzibJVrKPd/HzdLWRZDeHxBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:14"]},"IP":{"Case":"Some","Fields":["199.195.249.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golosa"]},"Identity":{"Case":"Some","Fields":["SLH7lF4I4/wPiAEQ1qdsh/rZk/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XY6U4kGX+MnpyzHmslZ8tVmoke7INdc7dasG6FCrWXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:17"]},"IP":{"Case":"Some","Fields":["176.58.121.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe78:b382]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["EarthElementX"]},"Identity":{"Case":"Some","Fields":["SLG9qvkiSx7Zk8QE4Y2pAxtQheo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZgvEBp0Cxz37F4UOq8dVBZ3Ud2/FUhedyYZLMptMZAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:47"]},"IP":{"Case":"Some","Fields":["194.15.115.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["SKfjoWn4bkWgAoThMDeTr/ph8eo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2DMjs7ZHF+cOlfbheeaI8822fV4+0g21VATbNQ+FwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:09"]},"IP":{"Case":"Some","Fields":["5.45.102.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:614:d803:40ff:fec3:832a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zapner"]},"Identity":{"Case":"Some","Fields":["SI5mO0qIwS5t5sEvemBT8Jv3pho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6G51UEsPse2chGnF5QO5BZWVEKv9QGlrgcZM1oCbrB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:49"]},"IP":{"Case":"Some","Fields":["95.217.6.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:516b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digitalmensch"]},"Identity":{"Case":"Some","Fields":["SIAs2XgeisBnEDFMesBgoVP29P4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E83dQx5GiY2YvNvErpnh0WABlTqOxJiNRfXCpwPC2+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:49"]},"IP":{"Case":"Some","Fields":["185.155.29.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:e5c1:105:feed:beef:2:babe:5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pecordPi01"]},"Identity":{"Case":"Some","Fields":["SH1z+2iRxQDnKabLVTxEdesrPNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RwN4iyesAEX1DhDUe8FbMkLN04bQckI7rlsbFGh3lMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:45"]},"IP":{"Case":"Some","Fields":["136.35.40.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SGvuZoYM5a/p2yxttVBr20Z/ItY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFNCbXEK0OfQM5LGfMYtP7xp7qeGVRctB9o+Ybi9tEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:07"]},"IP":{"Case":"Some","Fields":["206.0.94.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk1"]},"Identity":{"Case":"Some","Fields":["SGdANTuQWqRzH4LAtMwlghpixuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELVsHKbTXAVcAOi7TtXzHfXEWCUOzcoSMe/IOQPiATc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:07"]},"IP":{"Case":"Some","Fields":["87.139.33.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mordoc"]},"Identity":{"Case":"Some","Fields":["SFbJfcTyJxvIlt+cq9IX7i2GnWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AU0R2UWso+W2Cc/jJQDu9kI7WQvPylorpQ8/cyeClg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:15"]},"IP":{"Case":"Some","Fields":["136.243.149.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:17d1::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa5"]},"Identity":{"Case":"Some","Fields":["SFSSpCCv3/+8ygXf8xfNykMFLBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["otab08TCj3gYVeaFRqs/6DXv+hzQ+ZsT1n5QIHdqxas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:46"]},"IP":{"Case":"Some","Fields":["95.217.112.218"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["SFOnDbn5UgOhVEoCRdnSKfl7SBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+QwFzii+XCMrGI0rBddmIZkh1jkCcSDdqyJw+btYSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:49"]},"IP":{"Case":"Some","Fields":["88.208.215.95"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1f5::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WinstonSmith"]},"Identity":{"Case":"Some","Fields":["SE9mbEkbzeIrReDhnRzqWsxalhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tjXkOfX9r3XbjJq9+r6U+mA8p/ykf1/pv2LqMSSwjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:05"]},"IP":{"Case":"Some","Fields":["163.172.151.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:560::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["systemli01"]},"Identity":{"Case":"Some","Fields":["SDuy9ly+eAQUUHnnU9n2sI1/bEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mGg5BLAWpnadDfYVCnn6LB/YsI7wodZMHW1ONlEixWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:16"]},"IP":{"Case":"Some","Fields":["192.68.11.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:a40:7001:2::4711]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ITPIPRelay"]},"Identity":{"Case":"Some","Fields":["SDqvAyr1lraS/i7vAwR7B+S4c2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/q6OpbWMdp5tOXv3C7yHGhSJREsf6BsWcg3LLKSo+0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:07"]},"IP":{"Case":"Some","Fields":["193.200.27.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KherNl"]},"Identity":{"Case":"Some","Fields":["SDem3/yONoHXCtno0FfAKQk9ovc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RVWKBzAHpZzkE9f4vdYv8sKFrNQqoyERXzNJOlLRb3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:06"]},"IP":{"Case":"Some","Fields":["51.75.206.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::7cb4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasilNode00ls2"]},"Identity":{"Case":"Some","Fields":["SDbk88ivM0gEhG3QX9NplYwPmOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZbvCyBMpv0CfsXoPyPVEG9cLB7iXP6dYAwsu9gwtC1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:44"]},"IP":{"Case":"Some","Fields":["5.255.97.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:3c60::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rasptorMuc01"]},"Identity":{"Case":"Some","Fields":["SBwOtL0dIAi4KvEVcSf6cvS200Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDvnyk3ubQyz0xUOV7ZTpJiEhMElqH8lk4/CJoP6U2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:49"]},"IP":{"Case":"Some","Fields":["93.104.191.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tactback1545"]},"Identity":{"Case":"Some","Fields":["SAhf1ezhRFS8c0nkhGAst8EDbYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32KuJCY4Vt/+pRJN1LxWvRs/nXGWsQTXZluLYTAYFfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:28"]},"IP":{"Case":"Some","Fields":["108.18.209.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0171"]},"Identity":{"Case":"Some","Fields":["SAINQSZ0sTsIO5/wphIi0SHGeGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5TA95xOftt9sV8/g/B5zGGm3aqfsyOv5xbfT/B/Nn18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:02"]},"IP":{"Case":"Some","Fields":["185.220.101.171"]},"OnionRouterPort":{"Case":"Some","Fields":[10171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::171]:10171"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra59"]},"Identity":{"Case":"Some","Fields":["R/wZ2+K0K7SBxlGRJ2Zws9WJ8HU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CDmf+iDXs1F+2F3nYZ+X5AslKp2hux11SJ8ShSCzo90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:11"]},"IP":{"Case":"Some","Fields":["213.164.206.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sing1"]},"Identity":{"Case":"Some","Fields":["R/nR4BVQiZF/+nNO91kIkybDdho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZzmHNpTsaytNsju0FaJ0jnhUTTNAGN0muF4t56YPXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:13"]},"IP":{"Case":"Some","Fields":["68.183.182.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d1::705:5001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute15"]},"Identity":{"Case":"Some","Fields":["R+STGd1neE8eZbV5M3G+RnNll54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCg+R0FcEzuQ1w+iXCq65Snv+eXs8GG02sgtrAsEqys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:55"]},"IP":{"Case":"Some","Fields":["162.247.74.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GuardianAngelUS0"]},"Identity":{"Case":"Some","Fields":["R+QBxl20BXcyuDn6nkgypngrINo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M4ICjZpNWGwZhkR6QpzIPeQW74Ijz/beKb9gv/zvQic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:28:18"]},"IP":{"Case":"Some","Fields":["107.152.44.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MSchnellDS"]},"Identity":{"Case":"Some","Fields":["R9yr6KsGM+SiRTXTFx3fkWM4uf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ng9+F94YHm2hdk9oeZ6WgGo8H5vITAarx5TXHzO2GcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:54"]},"IP":{"Case":"Some","Fields":["65.21.126.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["updater"]},"Identity":{"Case":"Some","Fields":["R9GfhSFvEjlSlSHgJlCFOU3yAbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDfODBNFJhdyYVGzknziX+phq4uo8un/Z6RDSUqr//E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:19"]},"IP":{"Case":"Some","Fields":["172.241.229.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["R748gLbIMSEVJ9GNHYTidQ9BLt0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b9NENPD7vH4JEQSqGdMaNhIrMluRsOg8aQqGKqEvdEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:40"]},"IP":{"Case":"Some","Fields":["108.240.182.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9990]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed"]},"Identity":{"Case":"Some","Fields":["R7mqfiol9x/nWTWXvzr8vDHrm98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ww69/FjThYc3M8aj118IA1s2xbCnHRcGf+hQPBP4i44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:41"]},"IP":{"Case":"Some","Fields":["51.81.209.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorSJ2"]},"Identity":{"Case":"Some","Fields":["R7Sbtr6f94lDUHzCn1V1LWQSDoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7We+OAYzTqyFdPLmsuMOduUR3Tj5Vo2cNdtt/kWhv/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:16"]},"IP":{"Case":"Some","Fields":["192.210.206.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["R7F4t1yOQvL4r5qwfg+8k9y3Lfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHCLbT1d/dB8FHL4uDz072xQxr6dydpGtdOrMbiyQmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:54"]},"IP":{"Case":"Some","Fields":["95.214.53.216"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d8]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrazzt"]},"Identity":{"Case":"Some","Fields":["R6PQBSXwQfOCs5i/lbxY4OwjJ2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qVpaNy9gslLdhRZzf6DYeu4+sPr0sE4q1iZ83WQy7iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:02"]},"IP":{"Case":"Some","Fields":["185.220.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:11::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToolHaven718"]},"Identity":{"Case":"Some","Fields":["R5Ukrv3WD6aRHlqVU/vdzj7y5a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/9xYwSCmOOsewy71wmclba8zET4MOnp9wvjry1Ls+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:28:08"]},"IP":{"Case":"Some","Fields":["209.141.53.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1a15:e511:887f:23bd:a199]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["R5CdQELugabVgQX941yYmS/UV9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmOj1EZsRWoSmvZ5z78YDidp2HcisNTNQyoDS4X/9SE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:37"]},"IP":{"Case":"Some","Fields":["23.128.248.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mordel"]},"Identity":{"Case":"Some","Fields":["R4B0mZSyNVf3RYa6EotNwBpUZnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D3L1YYe147SuJFftYamvv6wXMyBrpISNcKbUBIyF4Eo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:19"]},"IP":{"Case":"Some","Fields":["71.19.144.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe39:574]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["R34riuOAvSTH7l2f9ayY2OAkk2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qbi9A7Q3IKmqD9kFM2aOFakcyBPB/YxrxZafbHpaVVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:52"]},"IP":{"Case":"Some","Fields":["188.68.34.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rastanet"]},"Identity":{"Case":"Some","Fields":["R2wyG0+xBwXf3b+AkXerX7veLNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PAsm5V2POSBQMrH77rwdFbzFur0BdoZp44Wh5asch14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:00"]},"IP":{"Case":"Some","Fields":["85.0.125.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["R1+9iflufaxit7eWe0gUpqcCQQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QpFR9ZgP4z312SNbW+d7p7kmJv9bbmBxSozM3PM2CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:40"]},"IP":{"Case":"Some","Fields":["70.44.88.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RepusRelay"]},"Identity":{"Case":"Some","Fields":["R1QsxLXjiZcJcVDEdU4X0kP2/wM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PEnYO4woM7fJ6mryZ/RnZXm/7BFMH9ONT6NLvoyJHTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:15"]},"IP":{"Case":"Some","Fields":["190.45.250.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["R0vo+ORnxbuWuKDvTI4j1oF9Ngs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jd+MsGenmDpGrRFgdGlNFMCUv40DMHMZm88Pp9uf18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:45"]},"IP":{"Case":"Some","Fields":["186.7.78.249"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllHailEdSnowden"]},"Identity":{"Case":"Some","Fields":["R0qwFMKEgDqWBPGJd30gysES4c0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t1uUgm9qWuFO4RHQjE/jbSxVFOQKxtgNu9HUNTGZSCg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:22"]},"IP":{"Case":"Some","Fields":["192.18.128.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode3"]},"Identity":{"Case":"Some","Fields":["R0WssWI0OF7xaU1TDhCfelc+MMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PyLLThAqRQL6zE4sO2mMxs/sDaLh0f7u00ePkJk8S54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:31"]},"IP":{"Case":"Some","Fields":["89.58.4.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:d48:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mclabs"]},"Identity":{"Case":"Some","Fields":["RyxBVfbh7QZ3Ud9EeLmRSHOT6Ts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nnFLBS9OCXz4pKbHnKkjztdHoRDV1F9f6gUG9gIkk5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:25"]},"IP":{"Case":"Some","Fields":["219.100.161.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9020]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElRelayoReturns"]},"Identity":{"Case":"Some","Fields":["RyUTMR4EEQqe9q8E5q2xqhzcM7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q5top2LnSeJm5T4o6hCm9Ejpay+j4DcaBgNEqexWSac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:15"]},"IP":{"Case":"Some","Fields":["69.164.205.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:92ff:fe25:5835]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TuxFury"]},"Identity":{"Case":"Some","Fields":["RyGvq9vilRKkepmOaDo+6s0URqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UDwyDpfbqMhk+CrKnlGYXx7y9sxxph3oE1SoYlg7T0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:51"]},"IP":{"Case":"Some","Fields":["93.212.36.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crivit1955"]},"Identity":{"Case":"Some","Fields":["RxhPP1wroDmcBr25ve+tiVDM9PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6J9Qi7h3HVcgRZ6Sbev54TJL8WZOKwWY0P1HZw56zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:54"]},"IP":{"Case":"Some","Fields":["86.17.181.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChomelesDEionos"]},"Identity":{"Case":"Some","Fields":["RxdepcG4MK1y8u0UwIm0Q3WDduE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VTbyoWEn/E6F3uGIiwQRRwlYzAGoMqs62TwMUN44FXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:20"]},"IP":{"Case":"Some","Fields":["93.90.200.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:374::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["runesandrelics"]},"Identity":{"Case":"Some","Fields":["Rvn7lDkXhY9hjyZIWV3qzZMdRAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qmzo5x7pxIa6rOUOils3H2iczYWWe3x3JmY6HZlu7rM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:59"]},"IP":{"Case":"Some","Fields":["54.36.108.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow010"]},"Identity":{"Case":"Some","Fields":["RvkO86NijBNNu0ZU0OT/frkUtpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kzJyNjrX6ebz7V0Rf4C0I6QaH4awz/UmYyewbRgrTTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:11"]},"IP":{"Case":"Some","Fields":["185.195.71.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ukraine496"]},"Identity":{"Case":"Some","Fields":["Ru6QwmDIGfIZvNi/DLRWc8jCpvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ODoeYaf/AWtsrEI9HVNumsNbDEe2Fe9XTuzCNkUs/mU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:45"]},"IP":{"Case":"Some","Fields":["107.152.217.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH100"]},"Identity":{"Case":"Some","Fields":["RuBIfu79aUzmJcxuEtAyOVwB24I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nplw/MysOMXrBXnzpFPkDjFDafMzPAqSP1iy1znXkII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:22"]},"IP":{"Case":"Some","Fields":["51.15.150.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mickymouse"]},"Identity":{"Case":"Some","Fields":["RtsEMjSZ3VNZVlMd8r97A+sqsV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N3J23FcFfvv2eVdGBWBWvAtyMCSckCNVTtud56ymBVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:40"]},"IP":{"Case":"Some","Fields":["46.4.103.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:94d6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bad10"]},"Identity":{"Case":"Some","Fields":["RrxlW3RgIw373C9HVMFjbsMlwZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3d6Pe7tUypV8IWS0XCT9LqmXrehQiYZct52zZggZ8gU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:09"]},"IP":{"Case":"Some","Fields":["69.144.171.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SORGaming"]},"Identity":{"Case":"Some","Fields":["RrrMzkvDyqY9L+dw2irjz0AbnPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FBCiJ5gKjl90dMXqvpo+1vJcwClApSwKVuVSb0KkLSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:50"]},"IP":{"Case":"Some","Fields":["95.217.83.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackbanana"]},"Identity":{"Case":"Some","Fields":["RqHo6cB012K+iWvhTFDksl/Vqck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+z/Z1tH6FZqMTOX2euWv7QErfDuPvAg1qsY8FvSRD9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:29"]},"IP":{"Case":"Some","Fields":["185.130.45.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:3:124::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JacksCluster"]},"Identity":{"Case":"Some","Fields":["RpItl41oJy+ZNEr94OKX13LriQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3NzuPEchwUmi+FVoMOJM9JUgfnsHDmutPRHuz2hWXks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:43"]},"IP":{"Case":"Some","Fields":["91.64.46.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9228]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DjMiddle"]},"Identity":{"Case":"Some","Fields":["Rn10F/+mEbwgIn/jR0lM5fYSGPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yoIx+6jWa2OxGN9u23z+YatIBeomiWgbo4jaKBqX44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:10"]},"IP":{"Case":"Some","Fields":["173.249.57.253"]},"OnionRouterPort":{"Case":"Some","Fields":[433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:8283::1]:433"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp2"]},"Identity":{"Case":"Some","Fields":["Rnn4Z2GOZmZ2LdWGrz8JjOzQHA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4YSIThs5R8ZvUckUDfb/Q/3qCFN5efxjzrLw5gQSIG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:14"]},"IP":{"Case":"Some","Fields":["185.220.103.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex58"]},"Identity":{"Case":"Some","Fields":["RnOpdB0rfPNnzjps6Qww4YIKr54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["42OMsiLkgmOjWSfzltcPnMzhlyQrBzt1DQ29ke+rpgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::147]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alzey"]},"Identity":{"Case":"Some","Fields":["RnNmFsWoldY2yT75+KKJw7yT7lM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q8M1/FVlHJi4gwBL3M6Q5dVs3Xv3Y9gleNBpQRoB3Uc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:40"]},"IP":{"Case":"Some","Fields":["89.249.65.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SleepyFoxgirl"]},"Identity":{"Case":"Some","Fields":["Rm8GAz7UOg9qqP1oxkfWeceGo38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQVKYJbxwGWn0l9qYH45Qkc8sHq/TERiHmwTn0pFevg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:02"]},"IP":{"Case":"Some","Fields":["109.164.34.111"]},"OnionRouterPort":{"Case":"Some","Fields":[6901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackwidow"]},"Identity":{"Case":"Some","Fields":["RmBY34fEXv7PB73J2CP/Eu17aJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8DoDkxBcB/HCega11rihsAa36+9hp0rC2JY/N6yIyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:59"]},"IP":{"Case":"Some","Fields":["62.67.28.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay14L"]},"Identity":{"Case":"Some","Fields":["Rl0XxvwpfjhXtcbxUgBqHiEpROo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Sw3KYt8J3iPTUZ00tHxLaMQDs2Bq+T7cVjYmGTX7FM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:14"]},"IP":{"Case":"Some","Fields":["195.123.245.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9403::86]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TVORrelay04"]},"Identity":{"Case":"Some","Fields":["RlkoETLD0Mn6VOxoclB8oAkqTcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ER7XBatAng93MglhwZOq0Q4H5UyqN9eFHCNlOOPZiFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:56"]},"IP":{"Case":"Some","Fields":["71.171.118.93"]},"OnionRouterPort":{"Case":"Some","Fields":[8902]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowexperience"]},"Identity":{"Case":"Some","Fields":["RjpLRAzFu1JM5v2Ie5avJnlDfPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SFtvegLCVSit5feB0d/LscEapFJ9WYUSh/XYLraG30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:17"]},"IP":{"Case":"Some","Fields":["77.83.198.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["RjDkp9CKvmEdrl/loUQRy2bm69E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G0Akw2Nb667VhyW7xXQUbXzWevGDpxdAeRCnQHYPfVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:56"]},"IP":{"Case":"Some","Fields":["23.128.248.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::221]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ceres"]},"Identity":{"Case":"Some","Fields":["Ri9Jg9+/tOVXcGhDCTybSXoj35I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+9u6zYkuWCW7wIZ18sYxoHEV0v9N6TtxzhE+NcIppk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:00"]},"IP":{"Case":"Some","Fields":["45.79.70.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:fee7:ec0e]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["gnosti"]},"Identity":{"Case":"Some","Fields":["RixMlxcN6U8lGkb0x0EDKGStG/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZ8cUlAM5RiBb3Syd9QRqutn3ZJ1LPRbC4PkAVfpsDY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:52"]},"IP":{"Case":"Some","Fields":["193.63.58.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoustonTexas4Torcom"]},"Identity":{"Case":"Some","Fields":["RiXzhcpTZM3WPHkYk5c7DK1JxOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ig2X+J96BAj+mna3v1EiQJ6bYfL7Y+Cbno2/3hGBrXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:06"]},"IP":{"Case":"Some","Fields":["144.172.118.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:1b8::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cotopaxi"]},"Identity":{"Case":"Some","Fields":["RiOp7FO/2DFVkp5W1ve1W15xjCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DKfcXqMEy1edEni7evxDiPKTpUDnCLQ2NLflirGyfV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:09"]},"IP":{"Case":"Some","Fields":["163.172.157.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["RhlBDjo7oah6wglsQGnauAU/eC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N7nvsS2FzDqiWVkneVIAuyl/4xLTi7MvuJ6vRQxJvoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:42"]},"IP":{"Case":"Some","Fields":["195.90.208.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:86::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx2"]},"Identity":{"Case":"Some","Fields":["Rg5biCdwwZdhvFdHVBkT2yrQHjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7FBiFUihsuWIcK7HaZo/6bmm+k+J3MP1rWnsTHBgNlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:34"]},"IP":{"Case":"Some","Fields":["158.69.63.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::34b0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NSDPopeye"]},"Identity":{"Case":"Some","Fields":["Rgy3KhGllI/d3gMmA92+uDevZiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IIxfyFQyW8rYIRDwIqan8GrbwRgqbs+G+g8Pi7Kp4UI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:51"]},"IP":{"Case":"Some","Fields":["45.79.177.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:fa::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["inboundystopia"]},"Identity":{"Case":"Some","Fields":["RgUAetWfl/E4xAHcCv6D/O2v77o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WOFIGCPBh+nEKf7E88leng0fe8p2TlDFYTJDoXjjjXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:23"]},"IP":{"Case":"Some","Fields":["23.229.2.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv17"]},"Identity":{"Case":"Some","Fields":["RgG3CWx2b8YpveN5UGqeQH9rDrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CIWI0I9XYxKD6xLJP2naV/VcLuOMsUK7D8gLi0F0QT0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:07"]},"IP":{"Case":"Some","Fields":["162.248.163.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apx1"]},"Identity":{"Case":"Some","Fields":["RekkCtTs4BeToZd8EmBQOywshh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/EzXgtXsFZUzQxuG6zgdw15A+HBq0GFj1goyc0SUyIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:51"]},"IP":{"Case":"Some","Fields":["185.107.47.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.5-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TotorBEx"]},"Identity":{"Case":"Some","Fields":["Rd+rnhvWXe8ybODLMA5sb0EKZ/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h8+ovdO2dXdLeRJZwx5G2BbFl3s+yuKkd50K4rBVfV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:59"]},"IP":{"Case":"Some","Fields":["82.212.170.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feuermagier"]},"Identity":{"Case":"Some","Fields":["RdjB7v8EQEOqaAbEuRMPjxie8xY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrQzSBXHCUASwt7EHFCWMXqCRw065cOlRSrRdpAFYWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:47"]},"IP":{"Case":"Some","Fields":["213.149.82.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:2488:4211:3400::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORPEDO"]},"Identity":{"Case":"Some","Fields":["RdZ+2/4KYfl4TzSojabV4Tw5d4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iU2Rs+ReNPmJIbol0TIy3GSE5bMLqAbRQSXUU11exHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:25"]},"IP":{"Case":"Some","Fields":["77.250.227.202"]},"OnionRouterPort":{"Case":"Some","Fields":[16357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit10"]},"Identity":{"Case":"Some","Fields":["RdJ21qUdrlxvOaZV7OZH3eqfrvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6rbIygIQM5oc81tkWARG4SmgFjp2X/6Gm8DfL2mjK9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:27"]},"IP":{"Case":"Some","Fields":["185.129.61.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perseverance"]},"Identity":{"Case":"Some","Fields":["Rby+LunJaxKZdaQsTihPS0wtFwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cC0QnIPspqi+gMXONaCqOCekl9rd+oagY/dvaWmOSr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:22"]},"IP":{"Case":"Some","Fields":["87.236.195.216"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snoopy"]},"Identity":{"Case":"Some","Fields":["RaUoZFS6VT+s9Wz0rl9MxtLQlbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K+Btk4HehrYSbkZSSRlixMewrPL6ET+6oC9bsto/yXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:55"]},"IP":{"Case":"Some","Fields":["81.221.150.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:26:58:ae9e:17ff:feec:6276]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arael"]},"Identity":{"Case":"Some","Fields":["RY4muau/Tg4372qm/RuwKVPvT7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["onTniIRXIEKpf+ZPafk5OuQuXF1sLoBBsTKpEYHwZNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:02"]},"IP":{"Case":"Some","Fields":["217.160.240.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:8341::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber64"]},"Identity":{"Case":"Some","Fields":["RYnvg5N+MDxPTAhREvcwYasjoZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J4zbr0Kn6dmGmdjfgSyVWfrCTpjvPOsA0WMQZj3pEp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:13"]},"IP":{"Case":"Some","Fields":["185.220.101.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chonk"]},"Identity":{"Case":"Some","Fields":["RWH8CFw/OnJx/pYDF/AtzR6cEYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RYGi975o4PzzZHiaFvYQiC6pdnNznMmx0iSw9D46JMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:05"]},"IP":{"Case":"Some","Fields":["66.206.0.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedEFF"]},"Identity":{"Case":"Some","Fields":["RV9XkQ7JKQQcYOQxHiY1KYvc1gQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ClRY+rhT9ykU0Ctaio0icv0HMBrXFU61/7bcjmWjivg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:01"]},"IP":{"Case":"Some","Fields":["23.154.177.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza1"]},"Identity":{"Case":"Some","Fields":["RVRp0cYQ5DSY7PiOg+KcCmlO9zs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hriZUFzg3K1fYO2LAwD2uGFkQc/tmZiZyxF3Fn9JhPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:18"]},"IP":{"Case":"Some","Fields":["152.67.112.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andorra"]},"Identity":{"Case":"Some","Fields":["RVJ4W6ymCrB1DwLjUl4riCDAKhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J3fp9L6FJ8gWwt8927ZAOxiOM0How7wAD1sT5jfOSj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:23"]},"IP":{"Case":"Some","Fields":["23.88.75.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FinishLine"]},"Identity":{"Case":"Some","Fields":["RT7hLX5z+ZNbkyZwCRytA9kcAG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Op9//6FaI16mttKqGvfzVN7faqUs3leMZn3ijvPy0Kc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:54"]},"IP":{"Case":"Some","Fields":["45.35.33.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gepg"]},"Identity":{"Case":"Some","Fields":["RT1pu4CfxZ7QytXYOZwnvAbetCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fttIraiUD6m+kPVOeoN5y6jboWRVlPxeDA8cgC9bpng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:07"]},"IP":{"Case":"Some","Fields":["109.250.97.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryonoxnet"]},"Identity":{"Case":"Some","Fields":["RRwUSjWq1Hr5H84wIbS5gvaBEzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aXVlhJJUcV0oj4QRt3DpJ8JqPXHPIWJS4AONrySlxT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:18"]},"IP":{"Case":"Some","Fields":["45.33.124.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AomoriDevRel1"]},"Identity":{"Case":"Some","Fields":["RRrULtslmLBq+HQD1vojvKFlv18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KqL4AQ7w1BsRWG2vL+/wl8X2zAzjcrSG++U4Vi5WBxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:05"]},"IP":{"Case":"Some","Fields":["144.91.114.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:5548::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elects1"]},"Identity":{"Case":"Some","Fields":["RQwHKenuAXYJSDCuELNk6FcWhP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZ8LBVSmRXHTqJmEpkg08SUqKsTECKtcTAwIJYb9I68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:06"]},"IP":{"Case":"Some","Fields":["45.58.154.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pi"]},"Identity":{"Case":"Some","Fields":["RQfCWCy/4oc1eFmB8EXFQjI+rbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gAgU/oMR670aa8S0tTWYbVu61aN6Za84YnEwxXgUxoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:49"]},"IP":{"Case":"Some","Fields":["148.63.180.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["RQR8eOH157d1sKQvEY1O1kUE0J4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xpZbAa5upItLitFAfPR6PxPZktZLNe3Re6VgQ2ma1xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:28"]},"IP":{"Case":"Some","Fields":["168.138.150.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:c003:3511:1::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freedom"]},"Identity":{"Case":"Some","Fields":["RPsx0KLlZ+LVKsksa82lnQP1tE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d/Fu/pN+qv49jxALPWvyixZmqfn5GglRo1aBEDAQzaQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:29"]},"IP":{"Case":"Some","Fields":["95.111.243.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onze"]},"Identity":{"Case":"Some","Fields":["RPrR+yKG0WgOWj7s5QaRV3GfAx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ydtrWOdHnKcBxywy3VE3MR6DsW3Ifi5pH7U69YA8MkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:20"]},"IP":{"Case":"Some","Fields":["172.106.11.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["RPo2qDm6NesV8+xctfs1UjijKrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OTaIxXEFfvQvomEHQhdQAMuvjXj7DrorEHOLH0QOskI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:41"]},"IP":{"Case":"Some","Fields":["185.244.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:713:4489:4cff:feab:96fc]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kroell"]},"Identity":{"Case":"Some","Fields":["RN8QB7VFtNgFfyeQJeuzPPmb4ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPPzn3Sr/eJe7ZtAGZVF0cj/tfXRQRoV99xDDveFMG0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:13"]},"IP":{"Case":"Some","Fields":["80.241.214.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3001:7714::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crimsonshape4735"]},"Identity":{"Case":"Some","Fields":["RN2M7Yf9/vCxydvPJnP0tf1fbLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y6JjBgLG1ghv8DUTtTvZ8QHUeJCfa1qYdgdQqbnNmCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:40"]},"IP":{"Case":"Some","Fields":["69.164.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe73:c4e9]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["currentlane"]},"Identity":{"Case":"Some","Fields":["RNwjZh4F3v2UOYk22TNJh6vLbl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qg+IXXJ8GccR+2V+h81k7aFDOSyh2kLRmExCy/kOT0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:40"]},"IP":{"Case":"Some","Fields":["148.251.91.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:7144:c49d:e29a:d44a:c6ea]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["always1"]},"Identity":{"Case":"Some","Fields":["RNkmKVP/jTCqZjiplfK806L5+sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mf66DmQzpZm1Ptibd7pABsb0PODlLVJjY0vnl2pTptw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:29"]},"IP":{"Case":"Some","Fields":["119.59.110.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alejandria"]},"Identity":{"Case":"Some","Fields":["RNMGnJ7jserzzmsmhYHEUQyunVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+7isHFgOvVXRgsgEgWVqN7fLRv7wrc6BdxmqQqidMR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:38"]},"IP":{"Case":"Some","Fields":["161.97.167.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["light0in0the0dark"]},"Identity":{"Case":"Some","Fields":["RM6oSXdud+kEVgB9BfGN8wdz4nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5zYcdr/jpUbOWnjrxIOJlACZHcXFNqEOHm8iom9UJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:09"]},"IP":{"Case":"Some","Fields":["46.38.255.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:19:e6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortimerAtx2"]},"Identity":{"Case":"Some","Fields":["RL5JScyWYDzP0ptveRU99kHp7ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lm0lWGliFDQoZRtKYGCaddrk7c+UNCKj708/WXiOep0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:45"]},"IP":{"Case":"Some","Fields":["136.49.32.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["almukasirat"]},"Identity":{"Case":"Some","Fields":["RLTJQKhCHdfs454834yZCupOiA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ig0ugWn8uHQ4Bs0xBs882Ng1yk7dFhOGnPXgZX2Hbuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:50"]},"IP":{"Case":"Some","Fields":["46.165.221.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen2"]},"Identity":{"Case":"Some","Fields":["RI+CEQjtKapAjygWJfZr4dS8GfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c9WMpz3sCQ//vzBZ8PtDX57sjzTxRHTukozuVOEXz8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:31"]},"IP":{"Case":"Some","Fields":["37.138.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RoshkeAS212000"]},"Identity":{"Case":"Some","Fields":["RIw5+UlwVCMUWqZc5W8gQb0IZz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yC2mXg2Wh5Gw61EP9OFmLZDDkrm8U2LOHZrDK0+A6aE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:22"]},"IP":{"Case":"Some","Fields":["185.244.28.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beingthere2"]},"Identity":{"Case":"Some","Fields":["RIMJeGf2REUz6qotOLVHm+HzZBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vKVXxkeUm9XZRr9ShIi3Q0aLptfK6jlaHWSRDgEi+l0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:04"]},"IP":{"Case":"Some","Fields":["207.192.70.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["redback"]},"Identity":{"Case":"Some","Fields":["RH2W05j340CzHUY0fbaOf+g/ilo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uo59kEvPymsv0tOPEodxTcwj8TYqRdN7FJbr9oBdtHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:16"]},"IP":{"Case":"Some","Fields":["62.67.28.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bloreRelay"]},"Identity":{"Case":"Some","Fields":["RHuzPsTRf73e7ZtR2pvPbYLY6Zo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P3w2OOlipK+T1OokjmbSeI37NkTV47hyBEGCDzWdxj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:09"]},"IP":{"Case":"Some","Fields":["139.59.43.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["m0rix"]},"Identity":{"Case":"Some","Fields":["RHok80AsR3TYnnqtLYdtC/ZOMmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1vB573Tma5f1C/DgmGccF2jr/N0965KKf1KQZIPSTWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:48"]},"IP":{"Case":"Some","Fields":["91.132.145.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:76e:68f6:30ff:fe7c:a4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedLightDistrict"]},"Identity":{"Case":"Some","Fields":["RHMLJFAhO8Pi2qSFRFjRNPBkT/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["99uWDK0bu/nWN+RID/HeEegjaxrxbaQiv9XXvdQ2gdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:15"]},"IP":{"Case":"Some","Fields":["185.181.229.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["RG4WsA1RMdrJZDqxATazzRmx6bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QHeyx1ZGBqTrDTWLllAqNtsamiFQvLOsfiUydMy+wxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:07"]},"IP":{"Case":"Some","Fields":["185.194.142.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse07"]},"Identity":{"Case":"Some","Fields":["RGiYKFMszrm1mOHavb4ovYFVF+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["isMP8tBxejWHMjz06TyYmy8W6V4rg74V5VGjkR5gaYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:14"]},"IP":{"Case":"Some","Fields":["185.241.5.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim01"]},"Identity":{"Case":"Some","Fields":["RF2JHObHrD2A4e3KYfkh06bpHMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OfX1KQguHlGmLNBsQQZt2duqC1phzsw63k6hwFVqo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:27"]},"IP":{"Case":"Some","Fields":["24.134.234.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9029]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shakira"]},"Identity":{"Case":"Some","Fields":["RFF8ct0Mcgbitun+ORdAauivMZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["df1jYi41L9yysTLiZD8ai9wrkdk6uRDdFAQMO0fCtUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:39"]},"IP":{"Case":"Some","Fields":["217.115.127.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MonsterEdgeRangers"]},"Identity":{"Case":"Some","Fields":["RElrGMaDVq86WKytg1Qpw3uUMu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1+v2gklubthh/yl9LMUPCAJRbeqwJfiEjnmHGEG8Z5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:32"]},"IP":{"Case":"Some","Fields":["91.148.141.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ihatethedmv"]},"Identity":{"Case":"Some","Fields":["REd7TdWkw8fSsd2ATxxXg09RGGE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smAGLrGbzQ+udbSvpQ5W/Zaxucz+d9V4BUJrNvcAMHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:13"]},"IP":{"Case":"Some","Fields":["192.3.254.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["RD6Zo4vHoYzSmj4YTw6yotZTrVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jTgaYmmtbgKPm4iHGeuRKmNlrkgDKxjFMoILfOw5CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:01"]},"IP":{"Case":"Some","Fields":["148.251.150.177"]},"OnionRouterPort":{"Case":"Some","Fields":[48567]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomNode2"]},"Identity":{"Case":"Some","Fields":["RDHxbyVh5wMvNnT6wJPPXFxQav8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6coAfZIyrmlIW4pT2fc5VvhuurGn+OQZiWmkDJAWcSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:46:48"]},"IP":{"Case":"Some","Fields":["116.203.211.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:cce3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kelvium"]},"Identity":{"Case":"Some","Fields":["RA1TlMsyWxLugkppYkWSgmWJAZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8GqmCvH4zekpx+ZLrD2YR4m8Xjhyp2BQUGDI5AqTIuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:59"]},"IP":{"Case":"Some","Fields":["141.144.233.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:2c8b:778d:d814:f249:a1a5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyFirstTestRelay"]},"Identity":{"Case":"Some","Fields":["RAoh5QduNeJyN4akW+i0QKlAngs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bN/TmwdRidb1aWapF9PKidH6gbIzX1WnyRH+xP2WR9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:09"]},"IP":{"Case":"Some","Fields":["205.185.115.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dummyRelayWeibsvolk"]},"Identity":{"Case":"Some","Fields":["RAMlhVY3AmDlPN8Lz7ghEhx/eI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6KTitJlJVwXodul++877JJGjJ9ov3jOISXJrfk36oXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:18"]},"IP":{"Case":"Some","Fields":["31.18.188.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc06"]},"Identity":{"Case":"Some","Fields":["Q/Ep7Pni0uoL/gSueBwvOKPRhaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rYrPp4gjSGMNi/wD4ZgDctsWqBI+RCc2EUeTALWFlLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:04"]},"IP":{"Case":"Some","Fields":["185.100.85.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Q+9RQaRBfQvxsKsq0sPXTCI1XQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8W/RuwQDXR26ntoH/4YHuK40SAgqd/1Qbw1T9L2S5JY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:08"]},"IP":{"Case":"Some","Fields":["88.208.226.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:5f::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra14"]},"Identity":{"Case":"Some","Fields":["Q+2EGSa12pSHAy14mjG150p1JeI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YVM4PMzv+1vQLFSd9Jmuv6+K19urTyc7oDpN5Q1W+Jg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:23"]},"IP":{"Case":"Some","Fields":["213.164.204.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeLoreanDynamite"]},"Identity":{"Case":"Some","Fields":["Q+iW02qrILW2MJS7xSytS1YOR78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aQVE8/KDPgbUCotnacnud5WT2YYLaobaTqBd/nlqcPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:56"]},"IP":{"Case":"Some","Fields":["82.69.47.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linode"]},"Identity":{"Case":"Some","Fields":["Q+GHuMc2H0fqlo7VOJQ1hl1/T+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jo6uqcOUoIjwuD/HwT9LqmHIAVV0vRHUtFITpTN2oxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:56"]},"IP":{"Case":"Some","Fields":["37.123.163.58"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:28fd:bb03:0:6c69:6e6f:6465]:53"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit6"]},"Identity":{"Case":"Some","Fields":["Q8n1wo6pChhYcn4qs4BhLqnNn0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+5pUqcVBmv4IUeuHiTynk6FrbHwfCVDSEUOuVQDy1/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:20"]},"IP":{"Case":"Some","Fields":["185.129.61.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer01b"]},"Identity":{"Case":"Some","Fields":["Q8St2PMYCtl9mQy+YRcX09wDf7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLCQLcwYrWcKx38LYdXRhghy/meWNqpVYXe8OVWdOig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:06"]},"IP":{"Case":"Some","Fields":["82.165.169.47"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra80"]},"Identity":{"Case":"Some","Fields":["Q7sUWosJCexUJzTqIwPU77rZfgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["As7hjKmpHXZ/wRBxhC6fN8kvCytZoCmDt0w8WaEUKSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:25"]},"IP":{"Case":"Some","Fields":["107.189.2.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DieYouRebelScum1"]},"Identity":{"Case":"Some","Fields":["Q68kBxtACRFinVvJ/CDeM1+d/AA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTT1oB3x0/wPtYw/vAspmOZfAhpf9ri/nsSk6T8vIlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:07"]},"IP":{"Case":"Some","Fields":["161.53.160.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9091]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrentor"]},"Identity":{"Case":"Some","Fields":["Q60zdnNbSiJ5IK0G0tm2lws8dd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ecmOqRVr/uL8g7J8MCCLRbAkyTs58/rFJTw3uiuc5lM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:40"]},"IP":{"Case":"Some","Fields":["78.94.74.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tallinn21"]},"Identity":{"Case":"Some","Fields":["Q5zRL4fOtJbSYBtdwf9Rhr2awtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyGrhvl4yrDgvstlU8L2AMPym9PkuYSL/QuUQUMdtbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:43"]},"IP":{"Case":"Some","Fields":["129.151.246.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Q5u0ks0kJHXL6G3XB4Jm53Zfwwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ss9RZOEsZlYxlulTUbnUuwCPn2v7OrBVAbHXm/coakY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:03"]},"IP":{"Case":"Some","Fields":["146.70.86.74"]},"OnionRouterPort":{"Case":"Some","Fields":[28093]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demie21"]},"Identity":{"Case":"Some","Fields":["Q5GdgR206vxeOsYidBY2JQEufZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+yTj5s6rtz9zskApxBUYsamztr2vdvrogcg6VrglHxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:05"]},"IP":{"Case":"Some","Fields":["95.118.87.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["dolemite"]},"Identity":{"Case":"Some","Fields":["Q48+pMn7DbY/U3ejJxq1Q1+tfgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X9r+b2fFSLsli0LI4iOM4pUtXJws9toAFRP61YuPwEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:32"]},"IP":{"Case":"Some","Fields":["193.108.117.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission10"]},"Identity":{"Case":"Some","Fields":["Q43JtrXFN10zK7M41+XBue9EiWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ptEhyVZzOiV/9onucYOxt8hfLQ9KiqifZTakhNhVltY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:33"]},"IP":{"Case":"Some","Fields":["54.38.219.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WarheadRelay"]},"Identity":{"Case":"Some","Fields":["Q4cxuO/tseWSyANJNKVfUy3quqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oDFNaeoTTAz53ri67ueeqh95V7Saio6AYmE9u7ten9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:35"]},"IP":{"Case":"Some","Fields":["142.93.228.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:f0::1bc:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4iphb"]},"Identity":{"Case":"Some","Fields":["Q4Hkcek1iuTYFQITAsfy4WUCvuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqfRBRUjBAJYsGFzznrqmt/2hN2qdtd+cyYQKyECcSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:12"]},"IP":{"Case":"Some","Fields":["185.220.102.247"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::247]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionsMakeMeCry"]},"Identity":{"Case":"Some","Fields":["Q3xT185qhmlLvVa39XBhfBzEdBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bfKOOf4JjNVPhqf9wDm17rCqLYIZ3mI/XvWv+B9LNTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:15"]},"IP":{"Case":"Some","Fields":["83.135.203.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MontAnAs"]},"Identity":{"Case":"Some","Fields":["Q17hA7TneYJp9Kr7SDmdutb5qek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqhL2bJ++s1A29mdQEDQbJ1BArZU3F6Ak3kKPIA86NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:44"]},"IP":{"Case":"Some","Fields":["131.153.152.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Q06h+5C/45fOrcIv15qWXG2EuwE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["19rKc4//f/e3CdO322W3nBAf9JgKJa7dCvthYzKYh5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:22"]},"IP":{"Case":"Some","Fields":["96.255.214.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Q0I968oljyAx7vPYrBwjKCRBSsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nmw9c3Tq0LEEdKL6GkicPssc6ViUf282xwDwtem0ljg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:10"]},"IP":{"Case":"Some","Fields":["46.38.236.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kgXuCTCWVMALFMb74Ld"]},"Identity":{"Case":"Some","Fields":["QzjIAm1Gi4EdPrEa6eQh4gibgjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y4yZYd9RHUNFZ/RtY+49Pg3xX7G17EOnNN/uRdXIm78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:20"]},"IP":{"Case":"Some","Fields":["68.67.32.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QzdpTjaA147271ZUUFe3UYC4zso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k8GBFwEuX8CWKPNk+Uu6gXc5eVqgKZyd1rhWgBQzqQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:43"]},"IP":{"Case":"Some","Fields":["62.149.2.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:6300:0:be9::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["layz"]},"Identity":{"Case":"Some","Fields":["Qy2cgTeP9U5QYAqPP2HhBMt3l40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3QH41gSDM0gjtDM4iwgBMIwDFljKe0ZY9tpgiGX9IUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:04"]},"IP":{"Case":"Some","Fields":["161.97.184.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SergalBig1"]},"Identity":{"Case":"Some","Fields":["Qyz7I4+/h4LBNdD16/46NEFgriQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/md/lvDw0FaTLLha389aghkgYmiX2WIyx9DclhgJB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:08"]},"IP":{"Case":"Some","Fields":["104.188.187.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0174"]},"Identity":{"Case":"Some","Fields":["QynGGbfqJ0pqn2EN0ihjx+FjR1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pndGyoCn2PAyJHKgDxEOe8xzlIZHonInXSqlu+G38j0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:29"]},"IP":{"Case":"Some","Fields":["185.220.101.174"]},"OnionRouterPort":{"Case":"Some","Fields":[10174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::174]:20174"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN5"]},"Identity":{"Case":"Some","Fields":["QyCfbVDGV6Vv55rwHKafnvGb0zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LfXOpmGfZqIHrEPiXc08kefkKhBBApEpTSTv4oX3pOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:15"]},"IP":{"Case":"Some","Fields":["199.249.230.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::116]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataSmuggler"]},"Identity":{"Case":"Some","Fields":["QxfLG+0MYJCr67RUQKBArWg4PKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d413dQvkqyMgmST8h3pctp0lz4ksBtZCdNXnLmOlkp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:07"]},"IP":{"Case":"Some","Fields":["139.162.191.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe9b:84b6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bituman"]},"Identity":{"Case":"Some","Fields":["QxcCs6aKYBX5lV3U/QEpF1tD6g8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ack7R/cKL8MtvduX35ga1Xv63TPOSLnNFsZlQS34l4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:22"]},"IP":{"Case":"Some","Fields":["45.132.246.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:48:182:74dd:c1ff:fea8:d21e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex57"]},"Identity":{"Case":"Some","Fields":["QxaGbVeLBtx5coiDyOXJYJ+DEdg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rAlTZhqa0euOV5Br5tt8y5YufQpqbuvZA3w/FSjCQn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::146]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH109"]},"Identity":{"Case":"Some","Fields":["QxVQAF7lK6gsqzqJDgfo6RrVob8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1tWUkRkR7KgX50r7pLPputY1FazPTSGZqvWxWkieqhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:46"]},"IP":{"Case":"Some","Fields":["192.42.116.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theaggressivecrown"]},"Identity":{"Case":"Some","Fields":["QxUpsn++1YF8aaIEuzypWjB+IkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SLJr6YRKgauTDAaEa+0q4QZo+fj6rwrdomae65uxnoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:50"]},"IP":{"Case":"Some","Fields":["185.124.240.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRandomNodeWw"]},"Identity":{"Case":"Some","Fields":["QxHbb8P9V/TRadrtgfZnWEuBduo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sXpWazKBLqTYoSTclRVbJrBzcrclmDz/3OZVHzfQ/3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:00"]},"IP":{"Case":"Some","Fields":["212.51.143.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8057]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Isidore"]},"Identity":{"Case":"Some","Fields":["QwZyzXFi+oirSdiRw4VneZ80YzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GRf2jo22D2FLW3GkE0J3advNs5Pr7ze+r1SxTxD2ExY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:19"]},"IP":{"Case":"Some","Fields":["52.214.94.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["QwKNAHHeBVGA2qgt4gC0L9ITHCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PSjfU52BxcaF7bhHUDa/NxqKvmyx2WZkeaEwLfNkCdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:45"]},"IP":{"Case":"Some","Fields":["185.220.101.209"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::209]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC2"]},"Identity":{"Case":"Some","Fields":["QvjnzoZEeMopLp6gXcEUgcKT+O0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqbprdAarVeX1Mp6sevthn32+oeC+kt5mA1C1Txn1KY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:22"]},"IP":{"Case":"Some","Fields":["204.85.191.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute10"]},"Identity":{"Case":"Some","Fields":["Qu2R3Tdo9qKhlNCUp0Msvo2gBLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/9SqlOTk5BAYK/xpYZGA2q+bUImHYbptYJpbzAxGyMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:22"]},"IP":{"Case":"Some","Fields":["162.247.73.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arecoque2"]},"Identity":{"Case":"Some","Fields":["QugXvgerOco716RCrwjgB/8uP1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FNBX1TyLIpyIgP7DzcqSJRSW9ChphxRpXrLlr3bG6lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["80.67.167.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:e701:1198::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poussin"]},"Identity":{"Case":"Some","Fields":["QtWDNTgbybuMntmNOQEJ63Tby8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSU3iuZZJLWADo6macnAFxE6h21jrlCZedeAqlVTqXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:39"]},"IP":{"Case":"Some","Fields":["213.169.148.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0131"]},"Identity":{"Case":"Some","Fields":["Qs/wyq9+tehrNY2wR9z+U7ZIVus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["czSrbJdBdjv9DqxzfRPXUP7a+oVTyjbRsyxQBIlgpPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.220.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[10131]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::131]:20131"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["QsUUoXnciZ6ZUZTF4XC5KHlPKj8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M5JaTQeDNVam2iPDAKjfBIgRfRSZSyplxB26EuVA/fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:42"]},"IP":{"Case":"Some","Fields":["23.128.248.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::224]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["node001sln"]},"Identity":{"Case":"Some","Fields":["Qr8zs86/btkaaiZ4GMxz1+mI8x8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqjfeJh1JzRRMk3W6IaAquRGVbey8s7qEBEO1p4crUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:04"]},"IP":{"Case":"Some","Fields":["62.210.116.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ENiGMA"]},"Identity":{"Case":"Some","Fields":["QrT1LFsR5NOYVfZUlVQlsNWgWYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YonHv6BLDqhry5z2PLI2vospdO86b5l3LWYLSF+bCHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:34"]},"IP":{"Case":"Some","Fields":["5.9.121.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ckaket2"]},"Identity":{"Case":"Some","Fields":["Qq7gJOtgzojlimVibb5FxcPu0j4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WdvFOlLp2syRhfhaApA9/qwH1cpBqwEmNLFgR4EJcEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:21"]},"IP":{"Case":"Some","Fields":["213.109.192.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:2::dcb3:f9ca]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["QqlVsJpOMn+/tGoI9uIXBSccyhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9iZTFoX2M0u9bwAx/EFvxKFOJhIrrmGMqghKAfWLdm8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:54"]},"IP":{"Case":"Some","Fields":["45.136.31.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:5ce:5445:3ff:fe6f:c7c3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["router"]},"Identity":{"Case":"Some","Fields":["QqjDrsr9A/AkLQn6LAIq7YSb+TM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le9AC8xd+Vcmk3uUv4/iU6+SA6QeRqTjasQgATj9UtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:54"]},"IP":{"Case":"Some","Fields":["80.110.35.15"]},"OnionRouterPort":{"Case":"Some","Fields":[55443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoySauceR"]},"Identity":{"Case":"Some","Fields":["QqUf/3qyovOWy5JLVmdvCby1IkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ovnLIA4A68Sqyz7vUYVpStEp5ntn//Mvx/LCSwvHSs0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:17"]},"IP":{"Case":"Some","Fields":["157.90.38.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Qols9pmg6dKLaQkBkltBDrItlKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fp6St01k9nAUO3ur1V+IMxiOpq8eCjciimClZj8WxnE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:52"]},"IP":{"Case":"Some","Fields":["185.220.101.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::195]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["QoIf8KuJYyFeFb+/pW9iJApIWLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/u0WAdgDIuF3HtPPLpHNB+TzmK2PFX8xjxoqh9grgRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:49"]},"IP":{"Case":"Some","Fields":["91.211.91.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra28"]},"Identity":{"Case":"Some","Fields":["QnlW4/I+66MZVMsJQq6g7NQ6AEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IEB+cFVq6XnvkLJsLWFkEO3dc4vma7mLzE0zi7IqsBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:46"]},"IP":{"Case":"Some","Fields":["107.189.10.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow000"]},"Identity":{"Case":"Some","Fields":["QnPm0WLtJxehz0IHolQATNP1MHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZzQU50KRwAGRPikhagNEsmAf/rhAVCeDoiCDQVTV4Qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:26"]},"IP":{"Case":"Some","Fields":["185.195.71.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["QnCKEoklBuvNiBvLNkjnjZPcJ4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fABFPV7Txvu5suwZk+mlVErOEqDz3H2ScfRa10lTdJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:22"]},"IP":{"Case":"Some","Fields":["185.207.106.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seyfahni"]},"Identity":{"Case":"Some","Fields":["Qlye/cq0nprrjf0ga6uD4yEfAOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wGsMz/0zSUvpvaqAKlZuiu0dzmCh7lwuplkxgEpjKpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:44"]},"IP":{"Case":"Some","Fields":["94.16.112.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:743:e896:beff:feef:1f97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Baritius"]},"Identity":{"Case":"Some","Fields":["QlYpLNH38e5hxRzqL434Esy3pqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZIlhytRE16ICd4+kxqKq4lqVwikoWcbcWnRE2KyTPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:28"]},"IP":{"Case":"Some","Fields":["51.77.109.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thetrip"]},"Identity":{"Case":"Some","Fields":["Qk+cgKJYQ6LmDtrM0wktMdMA/XQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VKjRNJLBvrIqChgvMWyC6qrBKx6RWNl22KzDQdRaOJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:23"]},"IP":{"Case":"Some","Fields":["202.61.255.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:55:d21::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes2"]},"Identity":{"Case":"Some","Fields":["Qkv4aSfoDZFlibsSJIvUaLtHBoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hux4h7ZVoY7doFEKv0CVdD+pr2AUvxE+QHOWXFEZtCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:25"]},"IP":{"Case":"Some","Fields":["217.12.221.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashSloth"]},"Identity":{"Case":"Some","Fields":["QkNHRvlgkg9Di/tPSsNeXIo6f8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tAUvFiRw0Bi6k+YdHrnekQFeZif58mDG8GKrc/OCVZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:21"]},"IP":{"Case":"Some","Fields":["198.46.190.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["h18"]},"Identity":{"Case":"Some","Fields":["QkE0jSoq6t4+6H6YgBqqsk6ibzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qrGJHBRBo7RZRYnUlchrH450mhPpxG+Vn94cDxi4DDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:16"]},"IP":{"Case":"Some","Fields":["87.62.99.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9232]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EndWarinUkraine"]},"Identity":{"Case":"Some","Fields":["Qjn/ROYxxaCI7fPfP6u6JOKC11w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kcWrICZBmV5e1InRc2rAQIvhzmaMxyFK7YtLFYpPfTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:10"]},"IP":{"Case":"Some","Fields":["51.222.53.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowedinn"]},"Identity":{"Case":"Some","Fields":["Qil3GrwubeMpeiUZEqnpFrme/IM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hZTR4TkupsiZR2/T9qz93dQ5YcPid9nZzu9o7E+2y3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:47"]},"IP":{"Case":"Some","Fields":["5.255.104.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wollwoll"]},"Identity":{"Case":"Some","Fields":["QiCsbrd8N4tb/DukE0b5c+nmEH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/TrALSZRxMEyuosRjt0vVlCn2XodM+DYRSAt6E3mT9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:17"]},"IP":{"Case":"Some","Fields":["86.59.21.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:858:6:2001::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notgoodatmath"]},"Identity":{"Case":"Some","Fields":["QhYr0NndAXXrgD85IKh8tVJi/zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t+77qQCf38kOkaiHk4cCiBAKoMJW4zxKlClzNowrKMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:30"]},"IP":{"Case":"Some","Fields":["135.148.53.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer69"]},"Identity":{"Case":"Some","Fields":["QhH+aqOZHP2c0cyJe9CcLPc88fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9QgK1vxhW5vt2u/vIAdntcadmJGioidPO1prn1OT+YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:44"]},"IP":{"Case":"Some","Fields":["185.16.38.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8269]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BASIS"]},"Identity":{"Case":"Some","Fields":["Qg/LYyJSBHVh18P2MkH6Qh9l0Uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy6TFKAZhZRuNGngyeZ2B4DDoF1oOTctx0QY+QTAVVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:32"]},"IP":{"Case":"Some","Fields":["45.125.65.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pozon"]},"Identity":{"Case":"Some","Fields":["QgjHGFQi9kqw0xPP5aiohrstc/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIMj6k6szsVJu3lymCs4X3Nf+zh+ZUwXUTbxmCLiZCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:01"]},"IP":{"Case":"Some","Fields":["147.135.16.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masters1"]},"Identity":{"Case":"Some","Fields":["QgaaUYPPUlrv9zehzJX2kzE4GkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6dsVxw+OIR1SEceXdwqPT7h+y9CJAIze92bedh9gyE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:31"]},"IP":{"Case":"Some","Fields":["45.58.152.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SIS"]},"Identity":{"Case":"Some","Fields":["QgVeOpAwtA5qLWXh9LxE9Rh4ArU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLRvEjbdkmYWVOr/j/PBWWZm1Okmom4mH9Qs6+lbYc4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:11"]},"IP":{"Case":"Some","Fields":["208.92.194.252"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[995]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Qf9KgpAn/9yjLMI9MNpJKrfh7TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kJXxb9/PlGRc/qquyoNfLGCfFQr7Mh8153sUcu3YcjQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:53"]},"IP":{"Case":"Some","Fields":["45.86.86.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RNVR217"]},"Identity":{"Case":"Some","Fields":["Qe7Ez6AeiYJkPxrzzYQxUynStY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KUZYb2kNuUzDTpLHPMCBvNpU3eIFWM6Vlf0rf0h5Xbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:41"]},"IP":{"Case":"Some","Fields":["95.211.147.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["Qe2Zbyng8SxfRn1nSDdTUEEm2DI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9FAkbK2Bm3eVvH3zwD5MSaxotTu8w8OWrE8vth3a7ZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:31"]},"IP":{"Case":"Some","Fields":["104.152.211.109"]},"OnionRouterPort":{"Case":"Some","Fields":[1000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeyBroM"]},"Identity":{"Case":"Some","Fields":["QeMZQH5nwAHYLlUjfmbmAEQic5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5itpZ3R/mLzr00O/YSNu0pcjsZCEU5HBGR1SfeePCRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:15"]},"IP":{"Case":"Some","Fields":["209.141.46.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["Qc1rkSLQCDOf2ZKc/wfthRircQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0zOQv7U1ePXFZ1qqHMCjVbA7DFWW3mx5K94Wg7x/SkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:55"]},"IP":{"Case":"Some","Fields":["212.192.246.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waxcs4edb69m7yh"]},"Identity":{"Case":"Some","Fields":["QcYrXH4aHxAS4w9sO4fuVBwWjuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6Y526yLhC42nOf8uG55AeB7n2j5xi+0jgEfR+KAhBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:09"]},"IP":{"Case":"Some","Fields":["144.76.104.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infinity1"]},"Identity":{"Case":"Some","Fields":["Qafw8MFbbRfjHzyQTSjYSlVC0zI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCSHZPztOKmkqxdhtbbxmBb7sWltcpaYD6lgX9vz0ZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:04"]},"IP":{"Case":"Some","Fields":["89.58.37.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor02"]},"Identity":{"Case":"Some","Fields":["QaPBYmnHtj2263QdvdtOH1hrFZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GulJ8a4V9wBcvFffNtSR+MT6va90B7hzaZNEa1WJirA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:21"]},"IP":{"Case":"Some","Fields":["195.191.81.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1908:fffc:ffff:c0a6:ccff:fe62:e1a1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RmbrViliViorelPaun"]},"Identity":{"Case":"Some","Fields":["QZE3Cbsse8PIfXlwVK4IIRbU/R4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yONLWVkhjaGNwTJT8PeWnWArPUkayxIKWkI6XHgnB9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:06"]},"IP":{"Case":"Some","Fields":["87.106.168.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gofast"]},"Identity":{"Case":"Some","Fields":["QYiYttjmCtPhzlV2T1ldn6VmQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AWpiLQn/xsnL47EGeG2cP0OXa/gqzi6T7RkvZ+RDmZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:39"]},"IP":{"Case":"Some","Fields":["5.2.70.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gentoo"]},"Identity":{"Case":"Some","Fields":["QXqjyNIm3deagEfX8heyHZxjwh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z2oabmUkoCuc8ShlvIU7uMw1WOWADtytjotJOxi4OgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:25"]},"IP":{"Case":"Some","Fields":["86.14.81.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:681e::c0f:fee]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zzzzZZZZ"]},"Identity":{"Case":"Some","Fields":["QWhlVWLdzxCs2YcVIB4Ym+Ftbgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4U4/vrJ7YX9pQE1AUhBVgoac7m0N1+WcE0zpYP1E01s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:26:05"]},"IP":{"Case":"Some","Fields":["205.185.123.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QWTB45sbhYelnh+0Fw0jKNKq6PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wiQ/fpoRnMMoEw/8tDlnIcfPOyOKBfLQQ/muznxpJ4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:18"]},"IP":{"Case":"Some","Fields":["81.39.237.25"]},"OnionRouterPort":{"Case":"Some","Fields":[442]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber46"]},"Identity":{"Case":"Some","Fields":["QVT5M5FgIghxZSMN1XdLwWjKH5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["441T24fWPYVvIkWVFPsAXoVlW4pB/CcddCORY1kXTaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:02"]},"IP":{"Case":"Some","Fields":["185.220.101.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::23]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jupitera"]},"Identity":{"Case":"Some","Fields":["QVObj9VflNxgF6Kc3MYjl38RijA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0HmmKOM1U+NTsOL/wuWWHfleAm/WnhLOIz0qZjvhL5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:12"]},"IP":{"Case":"Some","Fields":["149.154.152.121"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:149:154:152:121:1]:7654"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq05"]},"Identity":{"Case":"Some","Fields":["QUJ0SMQWQoMhMMLCmvH+rDs+7TU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tclsUOGzptoBPGDFUMqx7vu8LV0s4BLW/PQ18ftZ0wY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:33"]},"IP":{"Case":"Some","Fields":["193.32.127.157"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lamprlogin"]},"Identity":{"Case":"Some","Fields":["QUH9pVT1bp4k2kEVO1wadW7kMkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SabqgEbgF/rx4r/wJ/JUuztsP/R99UKoWRzHgrTl3D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:34"]},"IP":{"Case":"Some","Fields":["107.173.159.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams04"]},"Identity":{"Case":"Some","Fields":["QUHdvN2K/LlqAzFB6X4w/GtRhHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Izm1wRzeQPiLGfWvNfqR2RKe6YMVFz5nZ6NZ8Qxv8Wc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:46"]},"IP":{"Case":"Some","Fields":["45.151.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::b]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ei8fdb"]},"Identity":{"Case":"Some","Fields":["QUAA77rW68FD6EO/K2UcllZXikQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["55vGPVQake5Til1OFck+UTbODbUiK6RAP+SU+P/0dwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:39"]},"IP":{"Case":"Some","Fields":["45.142.176.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:d4a:8495:5eff:fe5b:6099]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["winterferien"]},"Identity":{"Case":"Some","Fields":["QSdn7LDO99y6+HSN26hXWGDdZ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gy3Q/Fk/ZbqR2MAQKFwllbv1uGo/Vj8D35AU1HChms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:21"]},"IP":{"Case":"Some","Fields":["59.187.250.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toreffiorg"]},"Identity":{"Case":"Some","Fields":["QRsWjBI4R4aomaqooogoa6rT2U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nsbudoWtOTD59xnMi/dXjER5dOVED1Fz0wqYCpEOHjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:44"]},"IP":{"Case":"Some","Fields":["185.185.170.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:5c81:4::27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torr1maiti"]},"Identity":{"Case":"Some","Fields":["QQ8HgbyilshmgipdA6jRHyRX54w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gaaE4c3ZDUpflH+ElVDqZTtMarw0Ci4gQjNSbYjwzhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:32"]},"IP":{"Case":"Some","Fields":["64.44.51.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffc8:1:7::bad]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CodeSpace"]},"Identity":{"Case":"Some","Fields":["QQ6L+QhaDXE3wZpwnAnxV2BQ5Xk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l94o6f9H7eBOYrlmtO6eJUTv/xxVbZgLhw6L+GK6qTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:26"]},"IP":{"Case":"Some","Fields":["185.131.60.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:768:3b04:515a::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W0LFF"]},"Identity":{"Case":"Some","Fields":["QQEY6HTSJj8c3NVn+Bh1qOOLKzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jISb9iAdnqRBvIY7oGjBE92a9TOOCA9zrlM8T5QqVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:42"]},"IP":{"Case":"Some","Fields":["176.9.75.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:7227:9000::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer22"]},"Identity":{"Case":"Some","Fields":["QP3rFEkV40UpCBVTTjcl272roLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3rOk9xFl9qPIh1SIyCwa0x5CBNL5B8wCm0A5GU0RIZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:20"]},"IP":{"Case":"Some","Fields":["185.243.218.46"]},"OnionRouterPort":{"Case":"Some","Fields":[8120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:46]:8120"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fennee"]},"Identity":{"Case":"Some","Fields":["QPrkVAz0wSaxsVwPXgSP29ZuLYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bgiCqbAWkTqgFLgYDqMSk9MduEeNfKgzdiv5l/iFXi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:03"]},"IP":{"Case":"Some","Fields":["50.7.178.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fatamorgana"]},"Identity":{"Case":"Some","Fields":["QPo//KcO6CrenSp+GES/SwxtvqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gCB9R9bBiB2XDNtuXq/XhVPWQ+mQlYutOsJQfBpaIlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:20"]},"IP":{"Case":"Some","Fields":["83.135.153.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Abeille"]},"Identity":{"Case":"Some","Fields":["QPoJwVHDiTtwGN71WphUvJdouCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AsW7OEjzsiv3+OEkCF36YM8AcLuz9GxrZdfvOhlZ9fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:13"]},"IP":{"Case":"Some","Fields":["82.66.61.19"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5d6:6de0:acab:3:3:3]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["QOgrPnuRZ7wri4uU+MxPSDF72sY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thL9gkHYrzb0cXba5FT4tXttfrhRr+0R8XZLeU3101E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:48"]},"IP":{"Case":"Some","Fields":["51.15.113.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex12"]},"Identity":{"Case":"Some","Fields":["QOfWzlCF5M3aMdUaKdFFfrU/Eq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ssBVpWNZnsiVZNXrlU0dHBIrEmewgRyXMGCHzu2l4FE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:07"]},"IP":{"Case":"Some","Fields":["199.249.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::102]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QN01bo88U/qSUbVhz5VjAnkar/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PEM/+KgRkZYqLTbjo5rCbUHg/BephlWGouGiUSEyq6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:33"]},"IP":{"Case":"Some","Fields":["89.163.224.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["okovita"]},"Identity":{"Case":"Some","Fields":["QNmXXoZMhMJs9zKrvmXXN6FLdoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQAI1DR9FFY4ky0/CNuXYySwaA//2fVF42XRYApQnZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:16"]},"IP":{"Case":"Some","Fields":["93.51.14.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b07:5d33:e4e:4dc3:9abf:8c9b:499]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QNPM7uW5viEoaEwV5XaY1Lodgm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wRmQ6zSueyqVAGDkDEVX6d5CzC33qDdza2fJl+zCIFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:02"]},"IP":{"Case":"Some","Fields":["148.251.211.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhNoAnotherRelay02"]},"Identity":{"Case":"Some","Fields":["QNEwlrvRGvGYzmHe5OrszlRy8uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tztDyr670vRCiRpLYcQC1czo2x844FxU4HK4K7NhU/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:21"]},"IP":{"Case":"Some","Fields":["44.242.33.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1f13:775:d400:ceaf:7673:2ab9:a777]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay43at5443"]},"Identity":{"Case":"Some","Fields":["QLM0Ey601oCsACAuAYbbtXv/F84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9vp11WtvbHB0AgfHbqx71YKX2DjDbFhyU7ULi9fpMok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.43"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moykr2"]},"Identity":{"Case":"Some","Fields":["QLE+hgVHRK4oVoOhOWFBPzM2gI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbeTOLau388njNG/iNYJrdPSttZ0ZgM51zTNSv9Dmuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:51"]},"IP":{"Case":"Some","Fields":["140.238.14.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8004:7800:a84e:59e4:dfae:415]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier3"]},"Identity":{"Case":"Some","Fields":["QKYNHx6K++0i/LMLP74uJ1oUz5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XkMyBzJIDeLwtBB13jtzEISgecGDpRfwezuaCG06iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:47"]},"IP":{"Case":"Some","Fields":["46.165.221.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loxy"]},"Identity":{"Case":"Some","Fields":["QKTVUbK9M8CfnWZA2XCOP9Vu06w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yycb6JNG0mvH1e7m4TPinxaXEF4huMLGclyc0ricbmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:34"]},"IP":{"Case":"Some","Fields":["199.195.254.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fedstookover"]},"Identity":{"Case":"Some","Fields":["QKG5i6P83EhqXyB+uVZL5iqauUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3dpniQMmRRvdAoyvCCOxkGesl/3Z12dJnc0rbEeyMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:38"]},"IP":{"Case":"Some","Fields":["195.170.172.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:87e0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa4"]},"Identity":{"Case":"Some","Fields":["QJ/bCjzqpP8g9Lj6f1KrDeQzj1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h69nBmodu7a4QruGVn42f0ElFxQ/8+RKW7DhoRo131A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:00"]},"IP":{"Case":"Some","Fields":["95.217.112.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["QJvVrsFb9dK5g8bwZNhSsK3gyL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BQ+8PgcSJ29zP/DhOjFnav+IJL357rzR687Ico09LwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:25"]},"IP":{"Case":"Some","Fields":["185.170.114.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arighttospeak"]},"Identity":{"Case":"Some","Fields":["QJnepoJope0mEHjeFzSJEzShRvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZhmY1RGOQS7B6sb68By0bpEDQkpP3JfFQF6h8f06ars"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:26"]},"IP":{"Case":"Some","Fields":["45.83.234.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1854:1::face]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benden"]},"Identity":{"Case":"Some","Fields":["QJHYCBKI3a6Mhu0bxxrKLwDQm7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o4tFTdDgKSLopMhFyWDOoCNSLaxm4gxZYzpH5Ypio4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:14"]},"IP":{"Case":"Some","Fields":["65.24.59.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionsoup"]},"Identity":{"Case":"Some","Fields":["QI83TxMbRdfWPbywDmL3a2R5Q9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTtcXnoMjK1TcQI9qKJJJt+S2FEpaRTmxOdl3V7R+wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:56"]},"IP":{"Case":"Some","Fields":["178.63.41.183"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:4169::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["muddybits"]},"Identity":{"Case":"Some","Fields":["QIydLxZT2e868TnBU8sn6P/bdhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkGh/x4t3xzezh6iIdi0dj4uYRY09PD916jiNIDNO3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:19"]},"IP":{"Case":"Some","Fields":["51.81.56.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer01"]},"Identity":{"Case":"Some","Fields":["QIbsrTSzhfRfxlS6/eb7aqbXXkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GYNVnP5oHDzA9935V3Gbb0aANtIIkLFe8YE7rFFM5uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:04"]},"IP":{"Case":"Some","Fields":["95.214.52.187"]},"OnionRouterPort":{"Case":"Some","Fields":[7120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["styr0f0am"]},"Identity":{"Case":"Some","Fields":["QIK6n0m88lpBNjDDV8AB9H1W/eo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9RtpVGSs4a4bBkyPRHGh0/5kMt9pGVX2lJwSTmHj8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:38"]},"IP":{"Case":"Some","Fields":["142.44.158.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:61:e9b:6019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AinaBrenn2"]},"Identity":{"Case":"Some","Fields":["QIB3PXMeZY6hzR3fJ9hqOlG+KUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VuXLFgS/67xMHIbR/O683u1MEJVxURpNZCvjiuDCW8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:50"]},"IP":{"Case":"Some","Fields":["31.14.41.164"]},"OnionRouterPort":{"Case":"Some","Fields":[4023]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknc"]},"Identity":{"Case":"Some","Fields":["QIAiLIuUQgG1FqxbFFJ15uzuRwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3RtLp2vQJwwHKLYy2e2dwjqI688DRU7sA5CIXsVav5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:11"]},"IP":{"Case":"Some","Fields":["202.59.9.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitRomania"]},"Identity":{"Case":"Some","Fields":["QGHFU8qIAhuDAvCBQ2UHCq5hcnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GJxp9iye2RiuJISYmRsa7QCr+XJlq/eVUBnS8Hrs8IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:57"]},"IP":{"Case":"Some","Fields":["185.165.171.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:50::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tobor8888"]},"Identity":{"Case":"Some","Fields":["QGGvgZpHCYmSIqHgQW253Rn9lAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BAw3j5BlfwGBSJPGNUrEsIcVLfsb21j/y/zSq5RYD0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:55"]},"IP":{"Case":"Some","Fields":["162.219.176.3"]},"OnionRouterPort":{"Case":"Some","Fields":[46410]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pissnisse"]},"Identity":{"Case":"Some","Fields":["QGE+eWK2OsGZMmYWQib/Z9ltucA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pFhtFg7Ph7QRUhSopZ4odjj5Xmgf6SRubyfJx6QGdIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:35"]},"IP":{"Case":"Some","Fields":["212.85.65.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange023gr2"]},"Identity":{"Case":"Some","Fields":["QFXN3/ez+ealBEdgmjAUdTqC6yY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kpdrk05nZNVI4TJYXi0jnd9nnc8p0DK3tYOiUrsc1no"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:22"]},"IP":{"Case":"Some","Fields":["185.4.134.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:110::2d49]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenNazareth"]},"Identity":{"Case":"Some","Fields":["QE2+D3LWZXaSVDKx5KKEJfouSCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LPhLDzejewiJQGmacS2BXwlVWFEQwxc/djwhYWhoB+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:19"]},"IP":{"Case":"Some","Fields":["51.158.148.128"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:1000::a]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bewilderbeest"]},"Identity":{"Case":"Some","Fields":["QEQdklH5QhNKVi2uK9lEXykkVBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H0w4mhGz4+QHza7d3i55XgS8lqFw1TPUOZbU5dEySVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:10"]},"IP":{"Case":"Some","Fields":["71.19.149.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8421]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:5:a800:ff:fe13:9cab]:8421"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wuwei"]},"Identity":{"Case":"Some","Fields":["QD2eHd2OZvqAgd6uF8lLLR0fYWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/uPvIdpMttvbWWz4UCzRcjqFzwibxg5CTqU7/bTLwVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:13"]},"IP":{"Case":"Some","Fields":["212.51.155.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plusvat"]},"Identity":{"Case":"Some","Fields":["QB6No2S3Jxer49S22z8RkrwfJMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QukIb1mZ5ruGcjNzzoQAdGH4gV5ze2OQM8nr3Td28oY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:39:52"]},"IP":{"Case":"Some","Fields":["141.193.68.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay24L"]},"Identity":{"Case":"Some","Fields":["QBpmdHcTA4zu9u0oyK/rcFcO68w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RWyh+sDz/3bO9sCj48dani/C4yQvBPMrYYoj9AJc+PM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:26"]},"IP":{"Case":"Some","Fields":["2.56.241.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700:2::1:27d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash2"]},"Identity":{"Case":"Some","Fields":["QBZR1MEwCQ1cosnxfC7LsHSPMPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gRitgCE/KbuNqcLIfesYoyULsiG3uLckc5/ZBdP6+6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:54"]},"IP":{"Case":"Some","Fields":["51.81.56.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ramhorn"]},"Identity":{"Case":"Some","Fields":["QBHhuw5bmiKvZltVO//d4ipRexY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EtV4wrm2RFsz9AoavoTWdDZExwZgqRZ8ldrXC3zA0s8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:26"]},"IP":{"Case":"Some","Fields":["194.88.105.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay26L"]},"Identity":{"Case":"Some","Fields":["QBCP36QO2wE/cpHztNo9QS7Tpe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eQL+lM8kd4rMSonMWslBKaOpPdWMQZqmk5T3kb4xwSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:54"]},"IP":{"Case":"Some","Fields":["195.58.49.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700:5::120]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI16"]},"Identity":{"Case":"Some","Fields":["P/vEHGWQIfiaUuPgIEslukzA/Lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8c4q+WdJhsZWgWEHYpdUswfOlbCwJLWybRQpmJdkHKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:39"]},"IP":{"Case":"Some","Fields":["171.25.193.77"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::77]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LimitedHangout"]},"Identity":{"Case":"Some","Fields":["P/mN6sIAwkoC+pJ4T2d/90qk5cg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsxaWdG9JcI3Jt2gCALOzSqjAJedSpSoGdSUX/MrRvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:24"]},"IP":{"Case":"Some","Fields":["145.249.104.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["remedy"]},"Identity":{"Case":"Some","Fields":["P+v7akkdMMrMLCmV7bQXF6b5TpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xK7xiboWYO6xTlOjI06I9ftyqcJzHgmV37Fii7HSr4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:12"]},"IP":{"Case":"Some","Fields":["212.16.170.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SemaTorRelay01"]},"Identity":{"Case":"Some","Fields":["P+GqFjRF3A4Gd7Uif1B5B8SHKjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9cCyAemoUTCZmwZx1yxUWoAqy5iIhNji2ODqi1J3rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["152.115.46.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:188:5207:0:152:115:46:132]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer07"]},"Identity":{"Case":"Some","Fields":["P9/sY14/EbTd1oX+FTcgX5KDQKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPKf/ZORNGr6mNM2VmZ/lDc44355N9X9MTGYei0rZ1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:01"]},"IP":{"Case":"Some","Fields":["95.214.54.108"]},"OnionRouterPort":{"Case":"Some","Fields":[5789]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["P8zFLabNLRjhSsHUc7Esvl1dBR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mKDu0g8vMAhdJAgbewp9v7+aA4SXNZ6xz3FwrmYLEFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:26"]},"IP":{"Case":"Some","Fields":["185.229.91.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:36c::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsalc1"]},"Identity":{"Case":"Some","Fields":["P8bwJuSfG2mH8A7CtPCnX81Z+wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+O5EwoFOwOxQEbBlgvPo0igwgIYCoTE8Je11QskUYbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:06"]},"IP":{"Case":"Some","Fields":["80.211.74.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d40:72:adad::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["moykr1"]},"Identity":{"Case":"Some","Fields":["P78uWqf60v08EkyjCbQIq6IPi04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zs7tQ+J0yo8KS+QXtPtR6pDdO5Zfov3OeCpvb0dmn9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:52"]},"IP":{"Case":"Some","Fields":["132.226.174.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8004:7800:430e:23d8:fc7e:411d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["harpianet"]},"Identity":{"Case":"Some","Fields":["P6k9QemnxMR7d8DX9heZm21dC2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMBUPTxOeKT2zP4sBiaislZrxQbDc+b08ArFcgiWcpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:09"]},"IP":{"Case":"Some","Fields":["143.208.84.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:2aec:205:4600:dea6:32ff:fe9c:c7ca]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarbarianParty"]},"Identity":{"Case":"Some","Fields":["P6VqEqCUqe12hWoGokAPT6+srPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btbSRQ+yhKxL4EtYla3nYwmSztL7UINFLmXSPxFZMII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:26"]},"IP":{"Case":"Some","Fields":["198.144.183.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacySvcsExitBA"]},"Identity":{"Case":"Some","Fields":["P6BNr7OcjC07s1aMS3+EGUaR2cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2j1ev2ggXLnW8JyFmzhStyyMaU+i/6fwrhFFFzF4S1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:44"]},"IP":{"Case":"Some","Fields":["208.68.7.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:6e:a009:705:face:b00c:15:bad]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TSFORT0"]},"Identity":{"Case":"Some","Fields":["P5+Atpc5MWcGbyKyAkwtq5dfdtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TLEnTgX34cWscktbmM7RXz+RC/D1G9nALnay0KSgt94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:39"]},"IP":{"Case":"Some","Fields":["5.255.104.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freyr"]},"Identity":{"Case":"Some","Fields":["P5hYDIgaPafvLpqJJ0ka1OXtaE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+YG3ca1DJkOM/YlLLgitLn7zymD8xd4HzcussVkKX5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:09"]},"IP":{"Case":"Some","Fields":["185.112.144.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex64"]},"Identity":{"Case":"Some","Fields":["P5HzhKv20RUIBjjlI4EjHRv7/IQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oyKM2r10FMCbhc78Cwxb9BiYZ77OziR77bZKWx3cxDY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:03"]},"IP":{"Case":"Some","Fields":["199.249.230.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::153]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldfish"]},"Identity":{"Case":"Some","Fields":["P45TXDoAvl5uSpkQ/zUTUX/Eaq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8V/L0XmteVkpS+OmLNqdi0d1Zj0Ipw5wamy0HbJNTS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:39"]},"IP":{"Case":"Some","Fields":["188.166.210.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::fd7:9001]:9876"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["0001Userzap"]},"Identity":{"Case":"Some","Fields":["P3kj8pcawP5ZGoVLryFHkCbcmpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzOv+erUFunfF9srZMIUJ3Ogd87vg5xARum9d4ftpXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:17"]},"IP":{"Case":"Some","Fields":["202.61.226.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:a67::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["P25m/aVLDO018BoWr10DTd3Y1Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j4TEW1kOXMg1ZIk8PpDpRfy3hJPkFA1gkqWGlWYuSd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:00"]},"IP":{"Case":"Some","Fields":["107.189.5.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f30f:6a6a:dfb1:73d8:fecd]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["P0R3Kwtnf/0/4PK4ogXAuxgaZzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mnBqRbHxRz88erNLTC4N5O4PX6Vc1Rp7mQ9w9IT5TeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:02"]},"IP":{"Case":"Some","Fields":["92.196.2.156"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa2"]},"Identity":{"Case":"Some","Fields":["P0PQWEomE8nbYxOC/0htxrleocg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WydFdOpmNUbncpZJlcn3WG6t43zt88ncpKDKn6E/RbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:25"]},"IP":{"Case":"Some","Fields":["95.217.112.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["PzjBfBG0NWJ2a1CpU2awIcvMeto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNd6hO3VOfiXMgjxInoXDS2fUNyEwnISGrak0pbjJjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:16"]},"IP":{"Case":"Some","Fields":["185.183.158.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["PzhOhlcT6dhoRzDHgmWAG3hxKow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qF7IlyJUuzw4h5XUCC/b5lXLRD1RcWZhIu/gUPLZyp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:12"]},"IP":{"Case":"Some","Fields":["178.175.148.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maybechimes"]},"Identity":{"Case":"Some","Fields":["Pxxdxg3ZhQQuQpFAGnq37Jan5AY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RUvIiW++JLIO8ubKYbU9Jl2JnHpHjpS7yq4xRs4ocl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:32"]},"IP":{"Case":"Some","Fields":["65.19.73.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f06:bf3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iwrs"]},"Identity":{"Case":"Some","Fields":["PxU9B8Hk0yh/IHJ8ZGPglitSZmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yzS1gJaZu1JEByP/8WslMPmk3R2Sx21+GPtSseFZzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:52:19"]},"IP":{"Case":"Some","Fields":["194.113.32.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra46"]},"Identity":{"Case":"Some","Fields":["PxTvgLyn02eUkes3yY7Pt4b2RK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLDcpSkMvAFhjWu6HiUTS6nJM6I31FWeyNmQfWKbIfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NYCBUG1"]},"Identity":{"Case":"Some","Fields":["Pwkphum4fT/aCbcfo6YCN4KFx3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d3naoQkGkOQmbsip2RVb82DqKeb6Qm40G/tjquFXi6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:25"]},"IP":{"Case":"Some","Fields":["66.111.2.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2610:1c0:0:5::16]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt61472"]},"Identity":{"Case":"Some","Fields":["Pu3IBsUk33pLAxzjFIBuP/bMJfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/BOKJEfAocBADZD7iqeuwHbu30iGY9/rQN5kAgV+6Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:57"]},"IP":{"Case":"Some","Fields":["185.245.60.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["PuYrZyJf0DCiN+TJSXwwPtPdGRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5zn4WKMDaks6BTDRXaVYXpVCU2gnEIq/cz9GNE2JRr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:02"]},"IP":{"Case":"Some","Fields":["185.44.81.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::70b5:bcff:fece:22c1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["PuEcRf3iPMRuPHvIr8rLg5WzdBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/A+RK0cCyvw26cpBCkJ8Pnlttt3iGp6/uPEBhdHNiJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:37"]},"IP":{"Case":"Some","Fields":["5.45.98.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IdidsetupaTorRelay"]},"Identity":{"Case":"Some","Fields":["Pt0oiU1Pz2Q7SFigUviM4l5liaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L5kV5LCc8xCTo0BICsFmIwnYQUrmzimzzxp/VicYgGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:18"]},"IP":{"Case":"Some","Fields":["185.130.45.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoface"]},"Identity":{"Case":"Some","Fields":["Pt0AJF2TZkozpyS6N3FQ5VMe0DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JaSemAFvorYRWIq100isy9lJzFdmNA59AJCag9swRpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:03"]},"IP":{"Case":"Some","Fields":["185.8.63.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inconnu3"]},"Identity":{"Case":"Some","Fields":["Psrx6qLuLGo90ZHIIHiMkzhsJPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aBFQPz4kxdjwnFdmbiTw8n8T7ek6HunBTSE5bTC5VYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:50"]},"IP":{"Case":"Some","Fields":["155.248.197.238"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoertetor01"]},"Identity":{"Case":"Some","Fields":["Pp/urbccE5fqvvq8loZcuPqwbm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OMsrdM10w2DQOoAxvMhp0FKZMXy/QGFfxNqGsgFbgMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:53"]},"IP":{"Case":"Some","Fields":["95.216.100.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["PmsZHXb9gbKp827L8j6GVCIPypI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nw6Em/LwfvjaLpgI3KzHNVawMrERH89azp100rKfvog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:19"]},"IP":{"Case":"Some","Fields":["23.128.248.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::34f1:dbff:fef8:3dbb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["squarewave01"]},"Identity":{"Case":"Some","Fields":["PmLMWedFX1Xevne5d3++pzky/4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ONHzdg90YFiKgUU7W8ki+BF0SsHo0E43D1cvT9rKmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:51"]},"IP":{"Case":"Some","Fields":["107.152.47.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:3000:11::c3d4:ce47]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra38"]},"Identity":{"Case":"Some","Fields":["Pllu2svpHco+fybwFox2SIItKgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ITyN6wIOmxRdsi9z0cSwgXNg2tDhSai1VEDKgi1vAfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:32:35"]},"IP":{"Case":"Some","Fields":["205.185.120.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tuco1"]},"Identity":{"Case":"Some","Fields":["PlkoDqZ8kY9a1cv3l4ZDu3CgwWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F4rb1vUSA0aiSPN6h+sMXRC+9b0PbL+B4low+WJ8R5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:54:24"]},"IP":{"Case":"Some","Fields":["193.187.91.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["PlPTl52wfv1zZmHJNKHe0UEntoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/xoOM0oMHGnD0ZaHY6CY7DgxAUz6xfKtc+0dTTmJVUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:33"]},"IP":{"Case":"Some","Fields":["217.79.179.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:fff9:131:6c4f::90d3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RSF12thMarch"]},"Identity":{"Case":"Some","Fields":["PlDLypiiD2N7xFUf1PEy0GLbmlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ9TWgXKKiW7F0/j0DbflFyHoILWY8Syyl7m7afrk50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:11"]},"IP":{"Case":"Some","Fields":["185.220.102.7"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::7]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse01"]},"Identity":{"Case":"Some","Fields":["Pk/BBJQ4LgJJ4jqe4A3RJlsfAPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLfCGS/2CiAz4EBYe6kYUQtOJgtxxZoai2dI9sLHfU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:28"]},"IP":{"Case":"Some","Fields":["81.16.33.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM12"]},"Identity":{"Case":"Some","Fields":["PjYWqUMtK4Ww2vyEBihjzimRfhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H0ZchrYacKU/fXTI4qOIFXZko2bb7dP7toLUgEAib08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:17"]},"IP":{"Case":"Some","Fields":["185.239.222.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["runcrypto"]},"Identity":{"Case":"Some","Fields":["PjEF9YgUewqG4oHurv2Yyl5Uk9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDrENTO2XNAHqT8acS8jmbNof9uIIAEwOrL64019vvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:03"]},"IP":{"Case":"Some","Fields":["135.125.237.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Phj+ur2UzcmGQWyVffMj/t6Xor0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8F79Eywg/2u8vCAuA56mRlDZBLh4+cg7mInMFkymNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:34"]},"IP":{"Case":"Some","Fields":["62.210.99.238"]},"OnionRouterPort":{"Case":"Some","Fields":[39819]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion254"]},"Identity":{"Case":"Some","Fields":["Pgmu8LROlBa8LYcDLTQWQx6CMdw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVNX+tqqCIpdhSvq6+XFPFKGuf33tvUuDv8AJBJ3qIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:30"]},"IP":{"Case":"Some","Fields":["38.147.122.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mephisto"]},"Identity":{"Case":"Some","Fields":["PgRQXTYqoyTm5OHIUWzNnvTUG5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwcBJpeALIk28Q9UQ03pWEPPed+ROVVGEGDbNjOTr2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:07"]},"IP":{"Case":"Some","Fields":["81.30.158.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:699::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rem0232"]},"Identity":{"Case":"Some","Fields":["Pf1hkKQDsJkoglQBpvuQZ51qSd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Euvay1wEJfkWluBR/uKstt6vUf/SKJOsp5qZ54mun6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:15"]},"IP":{"Case":"Some","Fields":["149.102.152.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c204:2089:786::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etraxx"]},"Identity":{"Case":"Some","Fields":["PfvntHPzjfCUIJCzSS0C2nDBcEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JarfVRayppsidZejMtlZLk2dhmS/sAecqUIMjI6kfjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:33"]},"IP":{"Case":"Some","Fields":["2.200.105.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tp"]},"Identity":{"Case":"Some","Fields":["PfHMRZmmEVhdrbAXOMyNo4cWGQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3I0WzsVPYgcUZk54YUtc6Ev/4y1SwXYLUV0YNhVwjEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:26"]},"IP":{"Case":"Some","Fields":["195.88.24.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xbad1abe1"]},"Identity":{"Case":"Some","Fields":["Pe28mvMt0ZAJEnD75kAgWsIjueo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XQbIX+kHfiRzgmJuXaBE9fICZspi3MYXBxaZy45OIbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:42"]},"IP":{"Case":"Some","Fields":["51.178.17.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9003]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quoo6voor9ar"]},"Identity":{"Case":"Some","Fields":["Pdrp1H73u/2uKtowpY+gow77jAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fa5deEGAFBMNhh+Ry0GcT9Hy7/m8WxT8Ga4CKF/hL0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:44"]},"IP":{"Case":"Some","Fields":["104.244.74.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mercury"]},"Identity":{"Case":"Some","Fields":["Pdo+b1bXelhbnR8I4xrjjr5j7d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W7bNaSkoze/np/mlyAd2Pwqsm9g7uVbM+FvGthEYSnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:41"]},"IP":{"Case":"Some","Fields":["45.88.109.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:e8c0:1:900::6d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM06"]},"Identity":{"Case":"Some","Fields":["Pc7K9wibHCzj6pUE7gXOdU9M+ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vae6R0w21rfMezN6CC5/CD+hL66KZK9tNA1ekfzxnbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:47"]},"IP":{"Case":"Some","Fields":["185.239.222.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChocolateLily"]},"Identity":{"Case":"Some","Fields":["PcdIwt/x+OnaVia7PLqv8x1wbBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7JrvKjloiuPXd047uHPdCFj+k2KIpDADBqniPQre/WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:24"]},"IP":{"Case":"Some","Fields":["64.180.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[51000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreggle"]},"Identity":{"Case":"Some","Fields":["Pbe0dWPz8qVd8elN8er9/wllo5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u8ajpikOjJuKt6umtlHwvmgSZLqUTCZOVQN3MT4Z+6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:45"]},"IP":{"Case":"Some","Fields":["134.122.14.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hKnYTKYgoYx4JmnAwu9"]},"Identity":{"Case":"Some","Fields":["PbcjEPaZlVXnGgnD/N+G6OmRGPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PrAwONBQtYGSVdynmsJFKFRC5gkIMp0uRJPC+RktUaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:55"]},"IP":{"Case":"Some","Fields":["68.67.32.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1150"]},"Identity":{"Case":"Some","Fields":["PbXu5oZbHxzO3i913Lj5ptmHveM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxA5A4qz0/cieCGC0W4DAjwhwBDeZ9tD0rgJGjcNizw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:27"]},"IP":{"Case":"Some","Fields":["185.220.101.150"]},"OnionRouterPort":{"Case":"Some","Fields":[11150]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::150]:11150"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapTOR"]},"Identity":{"Case":"Some","Fields":["PbXDqU7rpbiHCL7VIxJnMzKbDwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bLkMlgb0gPLIIVMEGdbHnQNgoWtyB5r5nfEWY7kjwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:48"]},"IP":{"Case":"Some","Fields":["167.99.181.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::be9:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hspaccaossa"]},"Identity":{"Case":"Some","Fields":["Pa/RmhVVdCghDJrjA7gHovyDsXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9F5fSSGahUFvghXiKWJJvu6MFMFtb4QHz9SxtGTEAM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:21"]},"IP":{"Case":"Some","Fields":["188.216.252.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vjayDuckdnsOrg"]},"Identity":{"Case":"Some","Fields":["Pa65MiMkeTf31Ihon3m5IDNx4Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tS0pwYwZK5mPm+lSCsRsXAmk8qSA4cJN/3T6mcrR2SQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:11"]},"IP":{"Case":"Some","Fields":["91.64.180.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TurboRelay1"]},"Identity":{"Case":"Some","Fields":["PYbuJXvMyScc5UzGc1l+zCBZLug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YygI76jhZ43Mf9CSaJK/pilrms7XDYCXL5FdR5VGXiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:46"]},"IP":{"Case":"Some","Fields":["51.89.216.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::3ce5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier2"]},"Identity":{"Case":"Some","Fields":["PWFd75fzh2MfUCAfr6bntn/fP+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7PON2IA9K5wy6XBOGXX7b9xaz2XaI7G1uW5zu5ka/uc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:46"]},"IP":{"Case":"Some","Fields":["46.165.254.40"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TorZabehlice"]},"Identity":{"Case":"Some","Fields":["PV1heMRFN+NpKFOzRDhfZXKlV2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SC0x5fOu2IMCygSWBpse986wmGdyTLXAFoQEDHJaB0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:31"]},"IP":{"Case":"Some","Fields":["87.236.195.253"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5f0:c001:107:2f::]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE62"]},"Identity":{"Case":"Some","Fields":["PVLAqoLl0OJlNJ/EikrcAwJ0xBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LV2jHJImVluwpOuXrHX0NP7ThaS0VGRhoPg24o+uGQQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:47"]},"IP":{"Case":"Some","Fields":["37.221.66.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:103]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["PVAZP5ua3JCKzGl3KmtEtQq8ZK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdEpmzK2p332UiUrAE/TVjauB1cMmUBmSLksN50EoGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:07"]},"IP":{"Case":"Some","Fields":["185.241.208.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["PUC8eQp8oFohdUFgP2CVFvptmRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OhgzTX95uk7h9J47jTs9w0YPs77c+CcTGQQe0xx1fVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:47"]},"IP":{"Case":"Some","Fields":["95.31.137.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashElk"]},"Identity":{"Case":"Some","Fields":["PPk1u0jCfqD+pNa5AlpWY2TDjpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["521dKGJ1MeYW/9xKpMN1xwVnU1i93fPOc9HyiQpR3ZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:54"]},"IP":{"Case":"Some","Fields":["194.32.107.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:220]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thanatosDE2"]},"Identity":{"Case":"Some","Fields":["PPkV+KlaPooG3PMp9xmy8/VCKss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/ZSLQtUbshFi+3xAHI0YhIjrtDvGc2857+fJSMoQvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:09"]},"IP":{"Case":"Some","Fields":["185.187.169.249"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionRaspberrySoup"]},"Identity":{"Case":"Some","Fields":["POpWuBdFXhPEsGPn0+dybChvfJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jF0cjwQbmGUVLp2XAMSpK0CUyaNZ9alxNF3yO3iBdKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:27"]},"IP":{"Case":"Some","Fields":["82.197.215.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurostar"]},"Identity":{"Case":"Some","Fields":["PNzXHaDIKWQdnaxgOw5cQxXxRSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DQGXeCIomSELeFuyAXEmr5YoqaHDV09ugzdc+4vxsLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:15"]},"IP":{"Case":"Some","Fields":["116.203.88.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsethforprivacy"]},"Identity":{"Case":"Some","Fields":["PM75aHGkmsBhSeSqjhTScNiB9tM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATdewJ9gjGNoaFOZCW96dDMCtGC2c9KxIpdORHucc1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:03"]},"IP":{"Case":"Some","Fields":["5.9.120.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:162:7018::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jujunz"]},"Identity":{"Case":"Some","Fields":["PL/hMpK0BcoCdU7ysnFnRX8hQF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rcimHD2yaDVIzysa6lJQ6yv3c6CX0RbzLypV2Avk7E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:07"]},"IP":{"Case":"Some","Fields":["109.202.198.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrous"]},"Identity":{"Case":"Some","Fields":["PL79jcN//qINXd+87ui+yalNb10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iQgt/bUo/WV5dDh2IcleOlTqujY13ltMk+Z1ViZDIbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:45"]},"IP":{"Case":"Some","Fields":["102.219.178.8"]},"OnionRouterPort":{"Case":"Some","Fields":[55959]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gongshow"]},"Identity":{"Case":"Some","Fields":["PLxUHyp2Ot1790KRkiklHiwGXk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kNM4CVGewPRw/KlPHEXztwEcFpG8f6gopwM7ObrqsqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:08"]},"IP":{"Case":"Some","Fields":["209.126.103.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor10"]},"Identity":{"Case":"Some","Fields":["PLQZPvTiOfztxNxDRo4LDWtnrMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOi80iqt07yDT6+LBPs4h33MoYcyahQghU/5bbn5VgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:12"]},"IP":{"Case":"Some","Fields":["51.38.65.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::f6e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NakaG55"]},"Identity":{"Case":"Some","Fields":["PKx4jRSHxZnlzjNuBFbK4P0ubW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7iutNpGqKJHUBaOIwouz3MUhSuVBZD+JSjWYUh0WCHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:29"]},"IP":{"Case":"Some","Fields":["153.151.219.170"]},"OnionRouterPort":{"Case":"Some","Fields":[14141]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lttlefoot"]},"Identity":{"Case":"Some","Fields":["PKhxCxS8TpFEgXjrMkwrRnwi+Mk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jYmvpCpILOO4zmhdXkCulvsa9knwZ4vP7olCz8RCJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:35"]},"IP":{"Case":"Some","Fields":["173.230.138.88"]},"OnionRouterPort":{"Case":"Some","Fields":[989]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:93ff:fecd:feca]:989"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN30"]},"Identity":{"Case":"Some","Fields":["PKDRVWcCTS4LVX3Azz6WKzeZmnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWS8QKBVPPboH+XM+e/lkOSloxLu6GVIxEG8OwrbBYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:23"]},"IP":{"Case":"Some","Fields":["199.249.230.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e653]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra5"]},"Identity":{"Case":"Some","Fields":["PJDKWFdwXXxsF21HXFkq8nif3ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["syR1NCO+P2cfprrSxlIijN63fVgZSaFLhwK3NOFfa6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:23"]},"IP":{"Case":"Some","Fields":["107.189.31.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["PInIDiaZ+2NYu7ZP3JVHr8tcA/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OLU0JLCRynRxfj4kAz2r5KG+tDVbXUhJTRYswf2ukek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:52"]},"IP":{"Case":"Some","Fields":["185.220.100.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:16::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carbonitos"]},"Identity":{"Case":"Some","Fields":["PIDTaPeW+zIYSBnrsvVaMaCzl/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ew4g0vxVqACKuzbxiulSRJbc/UZ+16MeqSuffEjSmq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:05"]},"IP":{"Case":"Some","Fields":["18.18.82.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b42"]},"Identity":{"Case":"Some","Fields":["PH1iCB51TY6yghvglri59Yv/zAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egj4tHuGddXrfL4zDdaR8rimWGB3CGKFbQP+8ieJg/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:07"]},"IP":{"Case":"Some","Fields":["78.196.33.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e34:ec42:1880::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HanseTor"]},"Identity":{"Case":"Some","Fields":["PHlwK8xKpJjLjp/silGnKuiRaeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zx2maGiwkiLegWHvJw7eyLuymrq+JpmBm9zDM/f3sWw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:18"]},"IP":{"Case":"Some","Fields":["79.209.234.37"]},"OnionRouterPort":{"Case":"Some","Fields":[51901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda1"]},"Identity":{"Case":"Some","Fields":["PGOPlfNmcfxxaQx7viUuIZIARNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BXKxtw4Al13qW9QsWG7ySJYsDqX9PvzPGRskyZNs2hU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:32:56"]},"IP":{"Case":"Some","Fields":["78.46.209.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:caf::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow001"]},"Identity":{"Case":"Some","Fields":["PFkVNI1zFQXEgRL08DI1/ee4yDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v9m81Fgak7zX+yTlJIj72Y4Un7vrApDApVZbURPeeio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:13"]},"IP":{"Case":"Some","Fields":["185.195.71.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer83"]},"Identity":{"Case":"Some","Fields":["PFUVFePuaX2+gQvj22e6UKPWeDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8drygDAbmrKDaqkXJfHhGfUylHxscWSqFMFlI3f2VDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:35"]},"IP":{"Case":"Some","Fields":["95.214.54.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8183]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iapetus"]},"Identity":{"Case":"Some","Fields":["PE6xIC5G4BA8ydAlelKJO74CK3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T3C3GsLkc0ijWi5XDFFreGWgCLHl+hEg6spQjeDprdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:21"]},"IP":{"Case":"Some","Fields":["37.123.173.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv07"]},"Identity":{"Case":"Some","Fields":["PEqoMWlDKBs3t2dUyxilJurryx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pfJP+/wbrL0/Lrt/QjiGXZyN7HJUQgacSPefNmMHzGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:57"]},"IP":{"Case":"Some","Fields":["162.248.163.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chad"]},"Identity":{"Case":"Some","Fields":["PEC9XCo7F92PzqI5ZVANxUD6oxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ercM+bEiH+oiHwq1b49TNtoSPH2rG8elANySkHqLS1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:38"]},"IP":{"Case":"Some","Fields":["132.145.78.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0148"]},"Identity":{"Case":"Some","Fields":["PDY8i0XSHtLGVqDtc7lH9UacUZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lJvH0IViIqRiyqGCoMJtbsQzQJbbNFN0lvkyYZbcH9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["185.220.101.148"]},"OnionRouterPort":{"Case":"Some","Fields":[10148]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::148]:10148"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JPxzAnychorianrelay"]},"Identity":{"Case":"Some","Fields":["PDI6HB56XAUhLAQhYOJZtnPfXQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fRZHOflU/NgoxTaidXGPm//lFEUxJ4QhSl6LRrwC9yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:04"]},"IP":{"Case":"Some","Fields":["45.76.218.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:1000:4508:5400:4ff:fe23:1a60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetxor"]},"Identity":{"Case":"Some","Fields":["PDGQXGUfXJSWbJI7vU4dvW2d+1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VebES+8nDRo0RrzodUXB2zEsRB4ECtdUU9dLyJL6EO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:59"]},"IP":{"Case":"Some","Fields":["91.190.155.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:dc0:4:18ac::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["PAtzOMV6ezByutUDtdhMFaqJcTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hx0sC0ybIhzAZdH+70HY+Y9khjbVhKwiFlbaUZUU6aQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:36"]},"IP":{"Case":"Some","Fields":["23.128.248.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::38]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsuperpro"]},"Identity":{"Case":"Some","Fields":["PAtFnTHgjpmOHpiLKC45ZLN7mkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sECtyit94ZkgHA71Nl9anGIjBFol+8N/UERq2MI9RqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:25"]},"IP":{"Case":"Some","Fields":["189.147.122.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicGamerRelay"]},"Identity":{"Case":"Some","Fields":["O9xIMPkackC0Lm0ZsfBP+UzzNQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gVqxotKz6VnVYTu7YrbCSh0pUjmI7zVWV6CcikPKtPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:19"]},"IP":{"Case":"Some","Fields":["185.10.68.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raspi53Tor"]},"Identity":{"Case":"Some","Fields":["O9E3bNM57axq7881WnA6Fq+RNJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IC3wYplA4/ldmXoZmumzUB47huE4429wEk6L4k9qf/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:15"]},"IP":{"Case":"Some","Fields":["79.226.154.194"]},"OnionRouterPort":{"Case":"Some","Fields":[1058]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sa1"]},"Identity":{"Case":"Some","Fields":["O8Upqgr6/w/LHbIQS2a2w8Q53UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RqSAexLFrNPGkg7MbOcXsR2M0A5jW+tdLInHAkPIhZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:24"]},"IP":{"Case":"Some","Fields":["78.128.112.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tiny"]},"Identity":{"Case":"Some","Fields":["O7+dmMfQWNfC5g9rpb1XTLTz/iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQZ/1kj8b94QhhKpIxtRw+6dOOMlUZd58poII5L0xpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:41:01"]},"IP":{"Case":"Some","Fields":["91.219.238.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["accidental"]},"Identity":{"Case":"Some","Fields":["O7cbqxc9u0+yS5CEPb1Q2PcEBuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kl5K0Y87WWNFmwEksaDWe9hGcKIZmMAk6v3ynBfLBfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:28"]},"IP":{"Case":"Some","Fields":["188.127.30.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venser"]},"Identity":{"Case":"Some","Fields":["O7NMzY6pyATFxTYbIfM3Z/IggB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aTmfdvQNzCFVUsC+3IZdTcXLlhW5EiqUb6I6ZPS+GJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:53"]},"IP":{"Case":"Some","Fields":["94.23.17.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:123a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kerly"]},"Identity":{"Case":"Some","Fields":["O7A1UU+CRqw2e1Nw9P4SC7EdjG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXTQ+h6KxUgZthl9nryxR5acZWxaY9U0xWzFH5CKLfE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:35"]},"IP":{"Case":"Some","Fields":["93.115.95.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebest1"]},"Identity":{"Case":"Some","Fields":["O6ufA9wvMqaqHGqg6VksGaBZ8VM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b+R+JjGDTlCe88TyUDjgFOXKNBgNPO3VIjI3+ASOyHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:49"]},"IP":{"Case":"Some","Fields":["45.58.154.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noxdafox"]},"Identity":{"Case":"Some","Fields":["O6Kowb5P1szrvORom2Y3KgUZ4Mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wQoGOhsg/bSzUAU/Y1AkKmGMmFH+3cQp/j9Ht3QCt0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:27"]},"IP":{"Case":"Some","Fields":["88.114.24.155"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paranoidtorrelay"]},"Identity":{"Case":"Some","Fields":["O5UyA68zLY/hRS4c58tQo7UpfbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wk2rIRTjGV8IapYj+wtm9plt5L2Lh8ULj/jivGXgKPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:17"]},"IP":{"Case":"Some","Fields":["104.244.79.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamicWebsite"]},"Identity":{"Case":"Some","Fields":["O5GQOl8+It7//lL9jajaMAAai5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9H3tqxzNqSDbvKjXPGGwD/nBjropwbvLxCzlb87/DSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:30"]},"IP":{"Case":"Some","Fields":["198.74.52.66"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:92ff:feb9:4fac]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MallsBalls"]},"Identity":{"Case":"Some","Fields":["O43pt/r8vUIfdjX6FwhbyrMSceI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DilSg1Wb8rG33PuTwKp3aX5h9zZcvl/lpoSfYe5C2Ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:42"]},"IP":{"Case":"Some","Fields":["101.174.32.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["grill"]},"Identity":{"Case":"Some","Fields":["O40psFpm5SUCS91phdWrDt5E0Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bBD2uIGST6UrEFSLbL+bxqp5X2SGlzgsyVLekR4nKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:54"]},"IP":{"Case":"Some","Fields":["144.202.57.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5c01:a8:5400:4ff:fe21:4663]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot"]},"Identity":{"Case":"Some","Fields":["O2ocm2WqOV0hYA+AWga5mViFSH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jeY0TseZFd1NVrYR/ZnzRkSP8Ms3NWYksU/rPgx46Yc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:21"]},"IP":{"Case":"Some","Fields":["121.200.11.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recyclops"]},"Identity":{"Case":"Some","Fields":["O2dfXbjDaubbWImujaGs313VGg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6XHrWF5oR87EvhOrwYbrhjQcUa2DL044ssglRJPPI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:20"]},"IP":{"Case":"Some","Fields":["172.106.12.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay1"]},"Identity":{"Case":"Some","Fields":["O2Qv9/45FcQuIERaHHJadbqgqeM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aHuyI47x9Xp/iHs2f/47Pe5PaNkvBcLTUzDITVTozIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:04"]},"IP":{"Case":"Some","Fields":["5.181.48.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:3f:58c:18be:1dff:fe6d:6f5c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForestIsland"]},"Identity":{"Case":"Some","Fields":["O1V+Pwwp1DOakErYxkH1ghUf73E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qfm7utFbI0xuJSEPNijzHRWL9CubceOy3Bts+6wzYWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:39:09"]},"IP":{"Case":"Some","Fields":["190.211.254.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx4"]},"Identity":{"Case":"Some","Fields":["O0xXKfgpyi6JW4Gvg0pj2zNtD/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G77yT2oKKaNxSmqxFJKkaKvCEhDpyz2yah5Plbild2o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:46"]},"IP":{"Case":"Some","Fields":["66.23.227.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Baldur"]},"Identity":{"Case":"Some","Fields":["O0XbAjaWny/SjftFwC3P+EtO6A8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P9pc2fgnSsY2GJ+l+U4Rt4BsUdE84NTGrUbT6ugOulI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:58"]},"IP":{"Case":"Some","Fields":["83.137.158.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9015]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeTheChange"]},"Identity":{"Case":"Some","Fields":["O0Rlm5pLOAURxeqH72Qest/e3Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9aR0opGHilZ5nCsO6eVYvjcCUcRWFRHY4yyCcaC3aDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:28"]},"IP":{"Case":"Some","Fields":["188.141.60.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast"]},"Identity":{"Case":"Some","Fields":["O0P7TyN+vjVwywa1AMoei0bur6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f0rR6M+MaKJLgLUjKdkgurCoDBuDi1ob5DkNPFgRIE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:24"]},"IP":{"Case":"Some","Fields":["107.189.31.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f6b7::1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange009de2"]},"Identity":{"Case":"Some","Fields":["Oz9FG9WPltwOjrfQHyCfyIA8M98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELe+of555fxOsga6wAX+2cUxynUfYLtLeHLv6oZMATo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:39:54"]},"IP":{"Case":"Some","Fields":["173.212.239.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2031:2233::1]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["millersound"]},"Identity":{"Case":"Some","Fields":["Oz7T+M+lAJ33mdCsRbUMQp1o+qI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQIw0SDCba1yoPtlY0iEwoNmGfGSR3VyaWwL1U7zUlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:19"]},"IP":{"Case":"Some","Fields":["43.131.94.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rix"]},"Identity":{"Case":"Some","Fields":["OzJ7pf5WMQ/auP+VC9beN9PQ+Xw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYCdaVlrvqYFnwZXJl+k590NQ0/VOSPDLhL4Mg6poes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:56"]},"IP":{"Case":"Some","Fields":["51.15.178.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9228]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chuckles"]},"Identity":{"Case":"Some","Fields":["Oy86SSl5p5zOTeByrc01TNoGrkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n90e9EwndN32pQWca8jJjITyqNQSsU9eUZGIBE0MdC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:07"]},"IP":{"Case":"Some","Fields":["172.241.23.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OyC10SCrjMF4D0MhbcnGBR7Vw4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N0HLcrhjw97d/+8ta0Jowuzj8sqIm04YrPI8FXc8WZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:29"]},"IP":{"Case":"Some","Fields":["93.95.230.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal1"]},"Identity":{"Case":"Some","Fields":["OxoF/6ZOU/4DHQmNrQxSdWOUV0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQEwjtzHQajigyvFZVYBBzWKMETcUhjgKhTV0B8a0tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:30"]},"IP":{"Case":"Some","Fields":["91.203.5.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay2L"]},"Identity":{"Case":"Some","Fields":["OwfFAKwX57Wh7mFmE+EEoJSrh/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h+UAud9Ds4WdLMqWUe5kYmzQQwySAobAlgAmWLFJ2Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:19"]},"IP":{"Case":"Some","Fields":["93.118.32.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:2c:fcb7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gustavienne"]},"Identity":{"Case":"Some","Fields":["Ovg5DT9LgQPaKXz9UUs1dAeBuH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXA+yTeF3XRMWWWR9QagjQrj3dVUZlSIPM6FBAuIA/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:37"]},"IP":{"Case":"Some","Fields":["51.15.2.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Ove+9yeUG0uQNN4IWAfOq0VNUys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkqAP6JkphZiYNAFgfwV4VSrzO6h3yWdKo0fliZXbS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:33"]},"IP":{"Case":"Some","Fields":["185.220.101.58"]},"OnionRouterPort":{"Case":"Some","Fields":[10058]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::58]:10058"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tordotcissincdotca"]},"Identity":{"Case":"Some","Fields":["OvbMaPy5cZFercHLZWxaxXiJy9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uywktiPKS3t9mxOe3sLfHloCwBTktGu6rMjeUSaKKl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:14"]},"IP":{"Case":"Some","Fields":["45.73.2.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lumipGoesOnion2"]},"Identity":{"Case":"Some","Fields":["OunyKOFUDW9zttye2BashM91VZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e1Zx4uzZxhZZiR8/un3B3ML8XgNzBodSaMt011L2yQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:40"]},"IP":{"Case":"Some","Fields":["37.120.178.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strypsteen"]},"Identity":{"Case":"Some","Fields":["OtK6sIXlILv7BdpRMTJ6SUTW/sI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pk6wH3tE+2zAV7H18XtNnZdn3vWCHqCSsucuzfb46wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:48"]},"IP":{"Case":"Some","Fields":["65.108.197.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:9904::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra18"]},"Identity":{"Case":"Some","Fields":["OtKf4SQbc1lfmbosbYMK8LaHQEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vc8WihlnajOA/J+CEHat+32JdLz9+unNt5LygGIYfXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:21"]},"IP":{"Case":"Some","Fields":["193.218.118.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::145]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OtDgmeoPZLYgK+47c3qf5dVUo8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jHWZ1DvLv7yvmuATU81bAHAgFlJAI8h5dfzM2wDL6lI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:29"]},"IP":{"Case":"Some","Fields":["185.244.192.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antifaRelay"]},"Identity":{"Case":"Some","Fields":["OqqeWWq6IqZ5ZY9FRE8D0SXK5Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJtkfKG3N0yfvqLbQwMGwz5iLt60AR2qnclEZSBe4GY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:12"]},"IP":{"Case":"Some","Fields":["2.58.56.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Baltic"]},"Identity":{"Case":"Some","Fields":["Opvu9am1hiFSqAe4D6jcuR0VtGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O91KyXFbgp756hxtUidU08TBBxbqtcA3gEytwtTUYCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:24"]},"IP":{"Case":"Some","Fields":["188.165.26.89"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[443]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pasquino3"]},"Identity":{"Case":"Some","Fields":["OpTvv0oiCzWpLQpbSoDWMkw8MGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RyRXRMstJiojol5eI6nRjj0jpQ8sqqBcKis+IuSRX9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:21"]},"IP":{"Case":"Some","Fields":["209.44.114.178"]},"OnionRouterPort":{"Case":"Some","Fields":[32967]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ellen"]},"Identity":{"Case":"Some","Fields":["OpLNV542Unya99sZ7X1BUS4waaY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BOIel17r3IwHucNo303mT8vodmgvAnzbDpTJ6hMVTDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:07"]},"IP":{"Case":"Some","Fields":["129.100.38.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViDiBox"]},"Identity":{"Case":"Some","Fields":["Oog2slScVb1ishN9FLdD7qTsBEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l5rtJnXPMWdL71yQeqePvcrwMhP0AfooT1BbC1vwsKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:22:58"]},"IP":{"Case":"Some","Fields":["46.142.149.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["colon"]},"Identity":{"Case":"Some","Fields":["OoVXsGf75T8Wi76qfRTRKYrlKlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7dXaC6Yn7mT+CqX8CUKdBX64X6pnBLDZMindKgyq8Sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:57"]},"IP":{"Case":"Some","Fields":["62.141.36.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:24f::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv18"]},"Identity":{"Case":"Some","Fields":["OoRFC4nBtkQxePmP8asvsELrazY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K9ttdEKHGSLGF/8PBFqmZ4sMPtQ0r0V9+Sa/5ciITbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:40"]},"IP":{"Case":"Some","Fields":["162.248.163.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0186"]},"Identity":{"Case":"Some","Fields":["OnsHSF4vTcRftXdhysWfosVWqv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4r/vyTfe0B8trOn3T7t6QOiVRDfyBhBrGLI6+TqAhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:57"]},"IP":{"Case":"Some","Fields":["185.220.101.186"]},"OnionRouterPort":{"Case":"Some","Fields":[10186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::186]:10186"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sotlar"]},"Identity":{"Case":"Some","Fields":["OnUoQ24N2WdfsSdQ8+3iPPdPSss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1FI16m3uH7VAYM+mpmYURYDAVVp24xmqHTowO5AxRGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:48"]},"IP":{"Case":"Some","Fields":["185.63.253.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RMK"]},"Identity":{"Case":"Some","Fields":["OmOCCgFFkTXSpmGIJ4GZEw9rABU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JNXW2gc+7LUss2Fh/3j99kBBC950/l26a5zkZasfcww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:27"]},"IP":{"Case":"Some","Fields":["46.4.101.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:935d::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["OmCPJ7TWVnWjGYYt1/joRB4LSmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bP4t09428z1DfM6K56HSf9h5wBK13N1TNgv3jiMyYK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:35"]},"IP":{"Case":"Some","Fields":["185.220.101.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::194]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYLABSUKTOR02"]},"Identity":{"Case":"Some","Fields":["OmBsaNgMJxV/9gQ/lZSWWmlb2ak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["74658hY/mzbmAqMjMadV2OuQYnucPp7aD/cJGup1ER4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:10"]},"IP":{"Case":"Some","Fields":["213.171.212.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FourthFantastic"]},"Identity":{"Case":"Some","Fields":["OlPh40/0yA13TGoMDB/4+52rcCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2UOfZX2avXCFmanhkjQI34XlPJS8ht9k/sO+sTcxQSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:54"]},"IP":{"Case":"Some","Fields":["185.142.239.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["40e62fcce23032"]},"Identity":{"Case":"Some","Fields":["OlHjKjA6Dgo6uKocy+mP+HkeI0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YT9586VTqa242AA9/xwDg3MIgDhiN5XElSwCTO07dEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:55"]},"IP":{"Case":"Some","Fields":["93.43.195.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lttao4532"]},"Identity":{"Case":"Some","Fields":["Ok/fa4iVAhLnTUx71A4CHU6qAog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kdrOiKErhHY55IatB7hIzfAHqWEwAz27KL3Okk5+wtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:28"]},"IP":{"Case":"Some","Fields":["172.104.148.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe39:a130]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Intrepid"]},"Identity":{"Case":"Some","Fields":["Ok5iA7FtKRp+Ki4mKwYtq3DlOOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GlGeaFa+P0k3iERO4VzsLuOIQXKv5zQF3UfsVe2WFtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:11"]},"IP":{"Case":"Some","Fields":["87.236.195.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritico01"]},"Identity":{"Case":"Some","Fields":["Ok0T9SpMmhOtYNlGFdTAsvX2njw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QbqvzyfYrPLqhu53hi+i7FCNaQo9cL4GCXcXPFQAezA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:15"]},"IP":{"Case":"Some","Fields":["179.48.251.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HexchainBest"]},"Identity":{"Case":"Some","Fields":["OjTL2anngTvUZwWRpjE3fBr87Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKEEWeRg7cr1oCoKU58wam5cO+AwR2b0Ua/LgwM1Wo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:06"]},"IP":{"Case":"Some","Fields":["107.189.12.79"]},"OnionRouterPort":{"Case":"Some","Fields":[20199]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3rcsRelay01"]},"Identity":{"Case":"Some","Fields":["Oirg/Zc4Ipa5r59UxSRj7sm3hfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iOe8jMRCHBKs7zadfC9Bgb9Dn4ibMq7hHbPj+ASgJQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:08"]},"IP":{"Case":"Some","Fields":["45.148.136.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::d912:7ca]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["commonly1"]},"Identity":{"Case":"Some","Fields":["OiY/6ClaK2r5vSWwu6hURk8fupI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ouwKXO2NRzh3xq+Wu6BzMd6gKmWGsbNareKKHS/+p0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:03"]},"IP":{"Case":"Some","Fields":["85.239.40.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex90"]},"Identity":{"Case":"Some","Fields":["OhvGXfA+zVD998/5xaTgSfy5wa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIrnzSlf55h92lX7Isue2bbCMoDKxrQc6gMuSaSzIEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:06"]},"IP":{"Case":"Some","Fields":["199.249.230.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::179]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TokenLow"]},"Identity":{"Case":"Some","Fields":["OhujsIE+H9EYM8n0MPNQdmKlj0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yiZd3RPhYGr53fjjQGgnfTRLrMLoan+9v/cayYUC3LQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:43"]},"IP":{"Case":"Some","Fields":["37.205.9.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc03"]},"Identity":{"Case":"Some","Fields":["OgXjW7HlnzGLaEp0cLdCeFrrB4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h24aCsHTSA/+nbmNi+VVgNbyTdCLN+3mXedl2Kf6fFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.100.87.192"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OgSsiWnlXfUcjRHEmr8YoMyEf8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWeWSz9EMhi/qi7h1r4gYBKa7BVaKtYogOdmXnSHInA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:42:17"]},"IP":{"Case":"Some","Fields":["145.239.41.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shhovh"]},"Identity":{"Case":"Some","Fields":["OfCWlh7SV2l1yGbUUDc6mROv3JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUSjOiiU61mQkBkalJHZHLecvkNMqdfPgJa5N7oCh6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:58"]},"IP":{"Case":"Some","Fields":["198.50.191.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ManInABlueBox"]},"Identity":{"Case":"Some","Fields":["Od8uaANyC8B1D6aYcqPj9DIQi6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PgGgDRozYf4qt6baBHrDIvTiUIYJB0Zw7GEMBOwjzTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:33"]},"IP":{"Case":"Some","Fields":["5.147.107.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay5L"]},"Identity":{"Case":"Some","Fields":["Ocb4M9SwlSR3DTZV34JaESE8oKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OMbTFerblttPSGtGGVa+niVQPqzAH8kSUDxjOW+yUPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:13"]},"IP":{"Case":"Some","Fields":["82.118.23.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9404::2ba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra13"]},"Identity":{"Case":"Some","Fields":["OcN6/JCNErt5s062KYkpvFHC5lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HoXAkxAmImFL3w7zMVHSWm84RkV7lpenl1cuBt8yno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:50"]},"IP":{"Case":"Some","Fields":["79.136.1.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viajante"]},"Identity":{"Case":"Some","Fields":["ObUhxfFsmEQA7sxOL4O/Juc/HR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7MMieqQF0aqPqTEzOb6LOBjKW16+f8nQlVqTm//4CLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:05"]},"IP":{"Case":"Some","Fields":["144.168.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["OatZB+zc/HVOlwwPoTLSkkDtD7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVpxfKxZCTOi+m4Ai5dkinR9B6MK9mn1kdPZYjTAmh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.57"]},"OnionRouterPort":{"Case":"Some","Fields":[10057]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::57]:10057"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet2"]},"Identity":{"Case":"Some","Fields":["Oas1TxK0l/zUQ7hb6rW69LORz6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BGX/8nbMdMY+Ifx6ZuEnEdGLjWsKZ6mMVU6yCUag+wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:26"]},"IP":{"Case":"Some","Fields":["40.68.148.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shentora"]},"Identity":{"Case":"Some","Fields":["Oag2pdTh19K57lrWhkzueZqmMEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z7YQTII4N7+HgQ3ntPqn1+uUEiE772LNzCgDwx5hDDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:34"]},"IP":{"Case":"Some","Fields":["65.108.7.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trixie"]},"Identity":{"Case":"Some","Fields":["OaVRzRiBURR9xNGVI9BqCbUofCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1L7r93NjOh+4/uQkFieb2oh3xgNF2I6zjswSX+mXmpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:17"]},"IP":{"Case":"Some","Fields":["76.10.179.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GloryToUkraine"]},"Identity":{"Case":"Some","Fields":["OaU5uOVFn3B+9RwuZLGvepRMe9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7d4vEA4hX+ws/CBnJGqYhYpGWlM+lVBp5enGNi+kLtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:47"]},"IP":{"Case":"Some","Fields":["176.36.151.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:d0:f04c:d1::5851]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis66"]},"Identity":{"Case":"Some","Fields":["OaGPMbMS5cshF4EJB2aTTBz9qzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yE6mhqYYMaAwHO8YefLUEzE8bVEwuunmyOoC9RaxvAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:18"]},"IP":{"Case":"Some","Fields":["37.221.65.169"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::3aed:102]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynR01"]},"Identity":{"Case":"Some","Fields":["OZBqip6TmA94vgkti1GVITF/zSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["62vGpQ6o825MKF7BxUd7OcTl01Zl7ATadQ8bwak4DLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:39"]},"IP":{"Case":"Some","Fields":["185.216.179.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:4000:4f:9dd:941d:48ff:fe68:323d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nanahira"]},"Identity":{"Case":"Some","Fields":["OY0sP931olQpnuZuUi8n6KK0xuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/r3Zb9qZ3c17VKTz2QdyRaJxrVbcCf5+I6BdjfFjAIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:44"]},"IP":{"Case":"Some","Fields":["203.153.72.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["OYt6xEfYxlmjXUGN/KQBP9pmU0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8CkFjqogSeTO6shYIskwx/yzW4QXMl6iKlLiykqC/uU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:32"]},"IP":{"Case":"Some","Fields":["92.38.152.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:56::140]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc05"]},"Identity":{"Case":"Some","Fields":["OXOmeMSAzuXpMmih+cJUPAOx48w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SFxV6bPqKCjA3Bz0yQDnmbqHuWfDyh40aeejBWcgsak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:48"]},"IP":{"Case":"Some","Fields":["185.100.85.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["OV8a1QfcJosUjcXilVgzky3DOmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o3aNSq3AdhzGuLudln0lNu8ctqsX1XmXWtfOcEKhWBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:33"]},"IP":{"Case":"Some","Fields":["108.175.4.33"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:80fa::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myLeek"]},"Identity":{"Case":"Some","Fields":["OVGjOOxoe4se1T5ld0CJAtFwkco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+QSiHVaNxwACUFCgo6bm3R7A5UAExvVcHd2eHyXaKlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:27"]},"IP":{"Case":"Some","Fields":["50.220.99.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DemonsysBackup"]},"Identity":{"Case":"Some","Fields":["OVGbTi3YZV9kw0kHOa7WbqI9b1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZkdiRypl5sghg70lD7bcl91S1clsdtxxFZNoGZNulVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:27"]},"IP":{"Case":"Some","Fields":["39.109.151.40"]},"OnionRouterPort":{"Case":"Some","Fields":[33801]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3003:2006:2f59:6574:1bee:6a42:530]:33801"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MSChaps90"]},"Identity":{"Case":"Some","Fields":["OTGhuIKdT2VgQAf1G342iZMYees"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LMwoEuNZs0eDT2ZSuXYQvPn1zygJTzPboDkPLlSt9KA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:11"]},"IP":{"Case":"Some","Fields":["82.68.0.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OSvv3LAmpWjgd3huef3lianA5FE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZyKlvgV40bCKRU/X4L+SV4vNTdYWJ9tdB+yWbuVgGK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:24"]},"IP":{"Case":"Some","Fields":["185.207.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["100UPSkid"]},"Identity":{"Case":"Some","Fields":["OSUF4RXUQVZ05zHWviFeKuXlbVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UdX7wAauwcJCqHTRiGsJHH/qil+aNZ7urXvBQbB3cRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:25"]},"IP":{"Case":"Some","Fields":["144.172.73.16"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra73"]},"Identity":{"Case":"Some","Fields":["OR8niytVVIuXQQrfvQVdB515jgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/CLgz6hVUI0rN07YIRSrjbZ+87fdbWd8hjBOOtYqEYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:27"]},"IP":{"Case":"Some","Fields":["146.59.18.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metamoderncow"]},"Identity":{"Case":"Some","Fields":["OR0onfr7Zzs2JkalGXNEfrcG38Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fffaENyAG2XiiO0PYpXmZmwP9xXDtwyuCNQehzjNt8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:21"]},"IP":{"Case":"Some","Fields":["159.69.159.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:a4f1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalcat"]},"Identity":{"Case":"Some","Fields":["ORDFygzFr+IscJ30caK1trSu3Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J1Sxity4YX+X/iWuryhn8FZRaSzevBKfQwum385pGdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:27"]},"IP":{"Case":"Some","Fields":["46.182.106.190"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[110]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mixminion"]},"Identity":{"Case":"Some","Fields":["OPcy3TSaLlkHhDRlEWKi9CAZNKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3mP4Gl5MEdmun35ygWGYB8fRZEQn0AxpA+UM5qlbYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:53"]},"IP":{"Case":"Some","Fields":["144.76.81.198"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:192:3c5::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElverGalarga"]},"Identity":{"Case":"Some","Fields":["OOznE+JZvdYQgOiffh9NOZtwXDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c7hWnjRYkwEPjbTqxY1PePIYdOblZxQJOZiHAWUvGHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:54"]},"IP":{"Case":"Some","Fields":["187.131.34.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ONB9EOMRWpKAB2p6R8FpeCxB45w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tCA5gAw7GeVayJD1uFxGcABMtvi2ZnRWGPlmXTtnQGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:41"]},"IP":{"Case":"Some","Fields":["23.128.248.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::4cb:a9ff:fe1a:b229]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TykRelay02"]},"Identity":{"Case":"Some","Fields":["OMyVqM6SpZHUpXeTWb7/uhP6G4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o9BT4KwDvEYzXeduRslCTNi0JcDfAHbDuau1uQt8VzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:54"]},"IP":{"Case":"Some","Fields":["95.216.101.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:151f:95:216:101:247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTISupport1"]},"Identity":{"Case":"Some","Fields":["OMoo2LmYDM2auDDTAGu2mM6Zsg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpBACh93eyr6SJ4GVbAkukhDnLtwn3mmLzjyI4Bkgjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:40"]},"IP":{"Case":"Some","Fields":["82.221.128.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captains2"]},"Identity":{"Case":"Some","Fields":["OLcV91jk9kKZB+s1LbbxVBlgFSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XET8EOIBXEHj6CMiEZG3nCZ34L8XzRpKclB/RzZWivc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:55"]},"IP":{"Case":"Some","Fields":["45.58.152.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToserBan"]},"Identity":{"Case":"Some","Fields":["OK27N7hq423OHA1rafZCWbrOJrU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eL/6u9Akq8HIS0asGhOzTZme2Uv5ew6F3UHbK5uH0iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["193.159.78.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["apx3"]},"Identity":{"Case":"Some","Fields":["OKQrjXwOY0b0pIIWF3QK7obqiFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ekFZbnuoalWe9TEKdbowKtSIXzfNFIJS4JR2QCjuiZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:03"]},"IP":{"Case":"Some","Fields":["185.107.70.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["folo"]},"Identity":{"Case":"Some","Fields":["OJ++lrpInZOvISTrmr4zn8THLxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bm58WZRS38qZ1MxTJEZs8ok0YmvhNtoe8D8h05ibgWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:01"]},"IP":{"Case":"Some","Fields":["185.117.118.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OJ0VcJCNF81qKhqCdpTyADrQlLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IOMU1sTHaR+KUbQ2ZhETUugnTKaM1w5ImVY7R6kg8bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:33"]},"IP":{"Case":"Some","Fields":["5.45.102.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["krf44relay"]},"Identity":{"Case":"Some","Fields":["OJlVw6/fd9AKQSaAf9HxxOTu794"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3RWFW8YC0xBM36iy+zSH1NvodKqu/j/aeR2H7bM+GF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:57:42"]},"IP":{"Case":"Some","Fields":["23.119.167.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Knowhere"]},"Identity":{"Case":"Some","Fields":["OI0GQT6VxshhvI5IKDCtkuV89Oc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UCEqNXPqNNEHztD3uYhDv3O7OIFIBrKLZ62xkTiDSM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:51"]},"IP":{"Case":"Some","Fields":["213.32.16.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OIobNM4AIx1IrbrjUf0jr1/Obb8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["olkofxBP0UHgMd1oP27PnnraCrnw8eQglCfn9j4cLwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:58"]},"IP":{"Case":"Some","Fields":["164.132.75.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["OH31PJQLihLFLSMQxNESm+S1SLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M2M8q6OXrGyuJ7FeITb/5meXP/ev8/595jDK8kkZeQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:36"]},"IP":{"Case":"Some","Fields":["23.128.248.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::43]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra48"]},"Identity":{"Case":"Some","Fields":["OHz8C5Dqz/5KgM2KoFfzZOnR1XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I/UnuJ/YlzuaHDMPTI4Y70d0dEhf9nfwr/VvpJ3BE/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:43"]},"IP":{"Case":"Some","Fields":["141.136.0.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OGP9U4ZY9mcWMeeM67JpP7Qt+n0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zYkRoXpKFxHaS5t/vHkdwbp0paMCO8G6eYT+QjGqBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:14"]},"IP":{"Case":"Some","Fields":["5.45.104.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Swiss20210824"]},"Identity":{"Case":"Some","Fields":["OGGzQsBOq9SjHfovnsvTudneHbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ir/xFLm/tKGmS7kVPgGOFlwQZQhY1Ushjxjt88Mv15A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:24"]},"IP":{"Case":"Some","Fields":["178.39.63.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[9080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rustlove"]},"Identity":{"Case":"Some","Fields":["OEcTlPBrK4ZAR2gZPJKTE5Yv3C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wx5wkIZZ5lQR+kf+2PaG942V6GzAQONEbBuOW06mE/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:09"]},"IP":{"Case":"Some","Fields":["51.38.81.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solatis0"]},"Identity":{"Case":"Some","Fields":["OEN1m1zgLf9+CKSjQQSGUZGEPKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HosFTQ00+oprd24oHEVCEDAjJhs62DwOpKK8/cA/8yQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:42"]},"IP":{"Case":"Some","Fields":["83.82.235.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1c02:1109:1600:c8fe:c0ff:feff:ee16]:9031"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torNodeCom"]},"Identity":{"Case":"Some","Fields":["OD1uNNm+qS6XCSsTSnCO70dt8uQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJgKquwABsY8k6L8j1bn9juftgjZuMlNz/83MQW8nr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:09"]},"IP":{"Case":"Some","Fields":["204.17.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OBlDgWxLZl4GrNgiv4YkIPeGmJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GlLy8PO15iNCia/BAxMPnp1Oh9MxTpFADdzv6G+fUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:59"]},"IP":{"Case":"Some","Fields":["194.5.249.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowMaster"]},"Identity":{"Case":"Some","Fields":["OBaysvbiOur473BwR29qtrlqr4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wABM7BEiULND0nNwvC6E7pNkyHyF4eA0K7ol07NAFO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:48"]},"IP":{"Case":"Some","Fields":["190.120.229.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["51Pegasic"]},"Identity":{"Case":"Some","Fields":["N/T8wyWkDK7Z9V5ks7tjptlegpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPJ1Zd+PV9ZGlqczekwrb28fTAvW9hf6bFrQcHYLM1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:51"]},"IP":{"Case":"Some","Fields":["188.74.69.163"]},"OnionRouterPort":{"Case":"Some","Fields":[5724]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["N+Wpx6fMTErcKl+aAP8DHRWvpMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["futYpGoFrsPapMXFOacHUCGotMgUh/tZ18MFVuxS1XA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:43"]},"IP":{"Case":"Some","Fields":["160.16.122.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MunkRelay"]},"Identity":{"Case":"Some","Fields":["N+EGJdRIUBgZZDEOJzddaktfgkI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubR4pTF1LqqMzdkjzVeH6MRv97hCqtcVwjxRjSGVUDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:40"]},"IP":{"Case":"Some","Fields":["92.32.139.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pKD9jZ19N1LiTvsjOF3"]},"Identity":{"Case":"Some","Fields":["N93xkG7j25YTCnF+pUZnxk2seN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XtzMEkWTpiSEq9bQuFbasjxUUWhz6ZgRDI13N/fAayo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:29"]},"IP":{"Case":"Some","Fields":["202.61.224.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:c1b::1]:9032"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blueblazer"]},"Identity":{"Case":"Some","Fields":["N92bZwlK52/V4hVL5yZMxFPrY/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zC3KDhMuVoLY+161AsDZqHgl5dW9+OCfNgCvawn4Udk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:08"]},"IP":{"Case":"Some","Fields":["50.31.252.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2606:2e00:8002:0:216:3eff:fedb:9944]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de4"]},"Identity":{"Case":"Some","Fields":["N9NU7msi1vsO6ZIYdMBXgFnWkBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orhqsV11XE7yn0KUcFyqzb4W06I+5pAW9tCx97Ym6iU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:29"]},"IP":{"Case":"Some","Fields":["45.142.176.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elefant"]},"Identity":{"Case":"Some","Fields":["N8JcHpyp9IctU20ITt2lf2a0NDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNC1ZYuZmucEV3qs29n+gOp0FOvTOgzPbiOExF90tNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:45"]},"IP":{"Case":"Some","Fields":["109.70.100.67"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::67]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsjeufh24h7"]},"Identity":{"Case":"Some","Fields":["N8HWZVnQx4hOPSH33rWMddebmKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDc2gpetTBEQvtetMjnwyu/rW+iPwv8mu7h90T74duU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:49"]},"IP":{"Case":"Some","Fields":["51.15.52.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["N7jsuVP8PD4Jciv7ju/QM03fRig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5GvOnYXKoqkK+Z4j1xx35pUVPYsi4VgrBoYqzbWKrS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:08"]},"IP":{"Case":"Some","Fields":["178.254.40.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:49::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra51"]},"Identity":{"Case":"Some","Fields":["N6idMqX9eD/8pQuCQo84YxQwp6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BPBo9zOr5HZ+43tL2IrkvnC/wF8l8hAEE1bpVC37QEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:12"]},"IP":{"Case":"Some","Fields":["139.99.239.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SharingIsCaring"]},"Identity":{"Case":"Some","Fields":["N6DS5IC8zCdSOH5p6JtAturhS4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cOl3ysTH8u+YtR5jI85eU2lxqp67yUi6GvXQDJJ+318"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:47"]},"IP":{"Case":"Some","Fields":["185.16.60.130"]},"OnionRouterPort":{"Case":"Some","Fields":[8430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra55"]},"Identity":{"Case":"Some","Fields":["N4rT0ImgHsgC8WWpNhIrYLWxA14"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1lejFKTRI1SGqiNn8SGAM9GbwhWAZXeXAwVgwsgi4U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:51"]},"IP":{"Case":"Some","Fields":["213.164.204.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhult4"]},"Identity":{"Case":"Some","Fields":["N3iPDAByikTtggJ4DYUyI+3KPT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["88sXCEAurYKAXKAmNNGNasIF2mcsyfZ+HtTLSCLdc2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:17"]},"IP":{"Case":"Some","Fields":["5.255.98.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:ba24::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pentium4UserRaspi"]},"Identity":{"Case":"Some","Fields":["N3PJ8Yj9kl5uxOkrAOx0mADod2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/xgZ35Zp8yJslMWlkOzJ2gEDxmz+wXAqTRnYuIHHpfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:11"]},"IP":{"Case":"Some","Fields":["94.199.211.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0b:3da::3]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woh4aegei7Di"]},"Identity":{"Case":"Some","Fields":["N3E89+F+AwJnYNHVUDxpgZ816+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Af9kioGZgZsoUt4IKfz1rBz1We+GyzbIlVEHwLUpiqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:44"]},"IP":{"Case":"Some","Fields":["107.189.29.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["N23HytWX06TLtlGZnPrQ533Jrow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G7WbPROtcbCF4q6SQifEnb3iGKs8LTRip6Omly3twik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:54"]},"IP":{"Case":"Some","Fields":["104.244.73.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f78b::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ebola"]},"Identity":{"Case":"Some","Fields":["N13LstvZTlJjvAwBXwyedWZpYX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ICIRNsveukeAE291JU0XtJ7FTWJ/5ZFRoZcP4aDD4aM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:35"]},"IP":{"Case":"Some","Fields":["64.79.152.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["N1wm7YvKjCY4Zkt6xE62hMs+GtI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4cDHrALVRd7a2o0BnTx+LvrLRi1l8cR6JChIlf/FW3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:45"]},"IP":{"Case":"Some","Fields":["45.87.42.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rasptorpipi2"]},"Identity":{"Case":"Some","Fields":["N1NUCRAt/+kvPayAnkcOYrwn8d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0cOKiYRbxd7D5jmfCE1EYMKXIhZc0+p0OutfKLzOke0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:06"]},"IP":{"Case":"Some","Fields":["84.240.60.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Katze"]},"Identity":{"Case":"Some","Fields":["N0nuy1Qy/JHOwuYs0q4JeAGs9Y4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t8UxBJLOhiUPlC7h2vi5mmjHCPUrM5p2KkqZuVOuntE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:39"]},"IP":{"Case":"Some","Fields":["104.244.74.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f71c:7d7a:8bf1:dead:beef]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["techToMeAboutIt"]},"Identity":{"Case":"Some","Fields":["NzvE0lVEOE1hN2rd9BUW79lOFDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ibdNyqPuNjhGClajq9vMLwsWKTAA0Tzy6eM5fpQsHoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:43"]},"IP":{"Case":"Some","Fields":["129.159.199.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1191"]},"Identity":{"Case":"Some","Fields":["NzRmDcb36hEWv8uA/CP6xWgL2AE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Auz2Zh8M3om8JWwfxBFEBtzXifevLg7aSF+WfbUkPT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:11"]},"IP":{"Case":"Some","Fields":["185.220.101.191"]},"OnionRouterPort":{"Case":"Some","Fields":[11191]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::191]:21191"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fsm42"]},"Identity":{"Case":"Some","Fields":["NyhlIYbE4YPyTO0G99NVRzI29DI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LuJvO08QV35JK2mToBTxn8XAbpD+aXolpya88uFjiDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["95.216.213.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:743e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["maupin"]},"Identity":{"Case":"Some","Fields":["NvpwhbjPcpPe+oKowCgeDuQ/O14"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9+kd8RZR0OxsfH4iFdRYXkJ0oYWw+P6emBpg4vZdko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:34"]},"IP":{"Case":"Some","Fields":["176.123.7.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BadgerMoo"]},"Identity":{"Case":"Some","Fields":["Nt/hxhbzokogO1nJerAsoYY9ASY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fbRCXEnUkORCbAUS0C7vSZKCZGXO3OBsw4b2Grz2WPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:15"]},"IP":{"Case":"Some","Fields":["51.198.204.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay1"]},"Identity":{"Case":"Some","Fields":["Nt0tHwU5OsMDn854NANM8Y2L+A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8uur1U855SoharigDJ5EhUqj2PNsWEQHTyI/jA1y0ZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:19"]},"IP":{"Case":"Some","Fields":["216.83.209.55"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0169"]},"Identity":{"Case":"Some","Fields":["NtigCIW8v+sXMSYHwId7/9kzDPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5dRwdD/eP8riCgNDrFWEr4l+Yb/OlHsJa/Q5KE7w1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:42"]},"IP":{"Case":"Some","Fields":["185.220.101.169"]},"OnionRouterPort":{"Case":"Some","Fields":[10169]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::169]:10169"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["only2"]},"Identity":{"Case":"Some","Fields":["Ntger2WKtK3MIft/TyqZskx0i7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t/RrYjDNxsZdg1DYTi1HQkWDbdx9jveWDwvGZ9UH1AE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:53"]},"IP":{"Case":"Some","Fields":["45.150.108.105"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex40"]},"Identity":{"Case":"Some","Fields":["NtaEeDZsuGJ4ZnV+vOf7PBf8HLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmYrJRGBuwvAXQwXGHaCcFQxGlABwsN3iodwM6T7kec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:10"]},"IP":{"Case":"Some","Fields":["199.249.230.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e659]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schmaller"]},"Identity":{"Case":"Some","Fields":["Ns+wfgcblKf/DnEuU1RSBsV1FpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aLM7rMRMYpaanLVqF6XIPmZiti47lC5PAbjMhC+WLKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:50"]},"IP":{"Case":"Some","Fields":["77.182.140.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beluga"]},"Identity":{"Case":"Some","Fields":["NszUgbPZ1yCXMjqK5p6bY9EkoOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58Jp3MvmNPFZwUVCWTrT4CTs4KGsRDGlpZAwHDtmIuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:58"]},"IP":{"Case":"Some","Fields":["45.35.194.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToRussiaWithTruth"]},"Identity":{"Case":"Some","Fields":["NrL2HZD1nGmqBSKLbdNkVXW2/7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y09FAjjnsqEuV85UPn/RFTXIIFORcYjaOwEntV5W0Gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:11"]},"IP":{"Case":"Some","Fields":["51.159.181.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:481e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["NrIVt4JpzEhjC/2inDLRIv0mT1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9sEC4FYDsKYh6dDTPaEO69enoxiHPR9JpxHyDnk160"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:50"]},"IP":{"Case":"Some","Fields":["23.128.248.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NqetFJjcysRxmgjIKib4VPPiJbE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy7wt6nnXhWkKV4cwTnurcUYQ1JQu/HiJXx6om3lPZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:27"]},"IP":{"Case":"Some","Fields":["45.88.200.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:45:88:200:0:95]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NqDlEXikJ4frVVgMnV8a+MPDuUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cazl1Y6oZyLJCNo0UCfxOzK7rc4u+rZoE118aayPpZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:17"]},"IP":{"Case":"Some","Fields":["91.223.3.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Augustiner1328"]},"Identity":{"Case":"Some","Fields":["Np4QpIsK8EZJiqSg8f+NA5VJu3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uz5xBGxUGA4gvYEnhl7VrwYsNcbjMyH76qDD2mP/juc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:12"]},"IP":{"Case":"Some","Fields":["213.164.204.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["begonia"]},"Identity":{"Case":"Some","Fields":["NpzA5yblO4Vm8l7renLk+Iohe5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g02mCZA0guMeAvJMsPid0EZjuEbDvpK0vfYn+1CRIic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:13"]},"IP":{"Case":"Some","Fields":["212.227.76.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:8678::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallylittleserver"]},"Identity":{"Case":"Some","Fields":["NproiiaGfFpV8RzD/ZAGvdzIy4Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rk7X8xUmV4XmjGsT/eiPzj2YV60N/x5famXF1dXWi9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:51"]},"IP":{"Case":"Some","Fields":["174.92.39.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["NogAHXVGkQH3Sl1VGkmw70EPDiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5G1Db62uvTDFgUcShULES2kiun0+JJ6y7qZMdEJLkdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:35:14"]},"IP":{"Case":"Some","Fields":["162.250.190.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:1b8::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex33"]},"Identity":{"Case":"Some","Fields":["Nof+x+c/Yaxm964lHn3ua72MAlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ypqqRMzkrwdVlF8bIgN1jwwy+8Et+n7B21urBx+W7y0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:27"]},"IP":{"Case":"Some","Fields":["199.249.230.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::113]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KZL303"]},"Identity":{"Case":"Some","Fields":["NoS4Zzowtz/tKANZxfup+VRpDUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KYcYhaWZspuENNSaJJKpR0E24lDiUSOi7lLvlGb9e1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:50"]},"IP":{"Case":"Some","Fields":["99.122.201.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["honestmistake"]},"Identity":{"Case":"Some","Fields":["NnknNaG5fCqMJNyM0wnPpigxhx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6Flvpz0rqvHn7px/VDkzq7SrIUAPacYC/4hDD6qjlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:17"]},"IP":{"Case":"Some","Fields":["78.68.162.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToRReRRoRR04"]},"Identity":{"Case":"Some","Fields":["Nm39586M4pWtU+Zv02UaVb2RNXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HB3QZoSb0Wc6jbANbjZIHiA2UcHkJr7+LfjkI2Fa2pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:01"]},"IP":{"Case":"Some","Fields":["141.148.42.164"]},"OnionRouterPort":{"Case":"Some","Fields":[12843]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1182"]},"Identity":{"Case":"Some","Fields":["NmvCtZDK2cUNwF4rvD89fI/SfvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EvVuJpBjoObvGp2ibsdB2QCd3kexGrbRiepZ4RGbGzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:15"]},"IP":{"Case":"Some","Fields":["185.220.101.182"]},"OnionRouterPort":{"Case":"Some","Fields":[11182]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::182]:11182"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bojoforpm"]},"Identity":{"Case":"Some","Fields":["NmqH1EH3xKbAjUskBNH38kr/X0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLybhAIcTZdvXOH8w4sjpdthUy6MAHA5VWKGoMA3bh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:40"]},"IP":{"Case":"Some","Fields":["212.85.84.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LechWalesa"]},"Identity":{"Case":"Some","Fields":["Nk4YhIRpOFxZSDdvr3eKxh1M+2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+hpcm12GKi1OZ/EHTzACdagVzxWcmuEZj7HD9umHfmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:11"]},"IP":{"Case":"Some","Fields":["89.163.143.8"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:c95::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torridness"]},"Identity":{"Case":"Some","Fields":["NktsSUg6eu1Pi6Z1bF5rKIGv3zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwGMjvTCs5QCfnSma5gyWtnv5tUfguxiKpUTHWb92X4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:22"]},"IP":{"Case":"Some","Fields":["212.227.190.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:86cb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yatr"]},"Identity":{"Case":"Some","Fields":["NkFAeMUhuhkWgmD23yPJeZWXYok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vix+3ADGDNk2V5/dHUF3nC+XRm3qIcPvgxBRZPAbETg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:56"]},"IP":{"Case":"Some","Fields":["142.44.247.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taine"]},"Identity":{"Case":"Some","Fields":["Nhm+XTjwfsCXkr/x4nlFXGyVyH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bbsfUq0sIQFX2qv3w1bSgqShdsUAAOcxMkgUMejq+yA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:31"]},"IP":{"Case":"Some","Fields":["130.193.15.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit3"]},"Identity":{"Case":"Some","Fields":["NhlvGt8z3W7qbF+tpp/EPBjQXFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdiOXCX2RFwJl0ZkQj6WEVJfOi1vu1ZTeVMHCwSZgUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:38"]},"IP":{"Case":"Some","Fields":["185.129.61.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryMay1"]},"Identity":{"Case":"Some","Fields":["NgpKoSDYst8eA/5hF/OnJdtJAvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH5VM4cuCAwOGmpxNhC6RfzjBqcvi06CZKa5fSA0G2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:03:19"]},"IP":{"Case":"Some","Fields":["46.4.32.184"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:3641::3]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fauringer01"]},"Identity":{"Case":"Some","Fields":["NfWgsvAX/Qn36/M6VlpT2OssknI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ub72JGxFuh5AKF709IqkEJP/Uz3z2sOJjJyl42+gtDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:49"]},"IP":{"Case":"Some","Fields":["194.13.83.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:43:26f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hakkapeliitta"]},"Identity":{"Case":"Some","Fields":["NemPsLWR3zs1f/7dPa2xDa0CfX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LqnsxgOU+eOrT16tiO3chAP5BxwFivLERCcdJ0brhzA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:05"]},"IP":{"Case":"Some","Fields":["37.228.129.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seabreeze"]},"Identity":{"Case":"Some","Fields":["Nek6WHw7ZbBoZWnuNz6LwFB/fg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hERtI4L/mZ2y/6lwNwRrk8asQFVSYHZUqYJ7Zx8jF64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:48"]},"IP":{"Case":"Some","Fields":["185.15.92.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b08:0:2::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berni"]},"Identity":{"Case":"Some","Fields":["Nd8nuimYKl9BjHUr64GCEmGIck0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVeAGBqr4Be5IyXcFHWfbGuFm+t7ng/Wpnw0/ylLAiQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:54"]},"IP":{"Case":"Some","Fields":["83.170.6.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b10:1000:8101:0:242:ac11:3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cryptocat"]},"Identity":{"Case":"Some","Fields":["NdoEqSY0ryOSy6avFY4AtViaHPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ezxZyegcZD7/chQNWHqum07G96vWWHSrQpnwEMmgX/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:39"]},"IP":{"Case":"Some","Fields":["91.64.0.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Goldenb0y"]},"Identity":{"Case":"Some","Fields":["Ndf0RhCZ4ukOrKQ1EcDK0AWRiFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bu8oArTfA5wwWjLC2TxI2KD3IE+6AYedlTArvatmxN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:19"]},"IP":{"Case":"Some","Fields":["91.172.215.29"]},"OnionRouterPort":{"Case":"Some","Fields":[16385]},"DirectoryPort":{"Case":"Some","Fields":[17779]},"Address":{"Case":"Some","Fields":["[2a01:e0a:335:c750:387c:20a2:a70f:33f6]:16385"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chilli"]},"Identity":{"Case":"Some","Fields":["NdVik7bX3uKkPpHYfrozEgtknZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ExIrLbwo0VbcN0hWKszQBCTsiaMr3klksbqTIPoor8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:04"]},"IP":{"Case":"Some","Fields":["109.70.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::14]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip3b"]},"Identity":{"Case":"Some","Fields":["NbUD+1RoFcye3pECJVW10O0E44k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PMnYcQS2v7+3cKwRWbI6L3JIv68IWcmPnmh859ItVEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:11"]},"IP":{"Case":"Some","Fields":["185.220.102.250"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::250]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anus11"]},"Identity":{"Case":"Some","Fields":["NaqTxW6ldpIZrDgJ+ewlhuE5+XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LoRo3GKGJqS1/p4cyNmBaieuItQuQ+YEzNZUJE8CVWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:25"]},"IP":{"Case":"Some","Fields":["89.161.26.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[9001]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["NZxSMawkUtNltkojwngXod/uVrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k6sYy4cYoIHSNMiuPAFpK3v6oK6FxewqpKQTzgpbHV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:35"]},"IP":{"Case":"Some","Fields":["45.154.98.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LibraryGhost"]},"Identity":{"Case":"Some","Fields":["NZeCx0peX593P6KQfSAjU2i0nnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WCggz/9yW6dAd9krlm+oiN5hDqeNRPgV1GrY2NARXfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:45"]},"IP":{"Case":"Some","Fields":["198.98.57.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NZN2geIRaWaq1r35qjXFXYxRIiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MiRLDkUZSn+k0ffQomfqVlVKeHG4GCgCXR4clPTu/nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:55"]},"IP":{"Case":"Some","Fields":["23.128.248.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::585f:f7ff:fe14:4acb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taz"]},"Identity":{"Case":"Some","Fields":["NZGeGXxsfzcqJsdH1mrKajlkKz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nMmAAXQNt28MHbsGA/MJrAUF36J3dh8nw/X3GrVxfv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:48"]},"IP":{"Case":"Some","Fields":["193.104.220.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:13c::35]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["NZBowDF2WJJCCmcvKNUGxBNBqnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h2wyDuKMxzYLAfG6lFNR+T9sjhTM3mSomxNRAkeT+KI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:07"]},"IP":{"Case":"Some","Fields":["185.194.142.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowjackets"]},"Identity":{"Case":"Some","Fields":["NWmGFZaJb6zYhg/2OK6JWRBahsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bw4sx26KzcKGJrWM7ab/uSCrKanTXsUAJnw4oAWSBsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:04"]},"IP":{"Case":"Some","Fields":["104.217.249.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NVaWKelAc4/dsLGzfIZE3svk2Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GnFaEeJ4l6zYMmxX4OccmAxxkMXZQylsTNDa8zwMjuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:50"]},"IP":{"Case":"Some","Fields":["109.86.70.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[14823]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flatcap"]},"Identity":{"Case":"Some","Fields":["NVNAJz542sZksjKOxG1hmY15cUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jFzvsbfatv3OMoQhrvvE2uPzw+HCvOTFoLBGku83Bno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:23:58"]},"IP":{"Case":"Some","Fields":["178.79.161.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe93:4455]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Speicherprojekt"]},"Identity":{"Case":"Some","Fields":["NUf699ZSa76BzAf6ytYSqZvdmHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aDt2UYJAeXmUUEsr8bR++ihdyk1WbTRDcsP/zfRFo8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:37"]},"IP":{"Case":"Some","Fields":["5.147.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GuruKopi"]},"Identity":{"Case":"Some","Fields":["NUSes9AlzCRgH7Q4hPlpk2fWd88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpPynoJlzegrYcnw+d0TRFk53og7p15A+Gdq+WBqjxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:55:26"]},"IP":{"Case":"Some","Fields":["118.163.74.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["BadExit","Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imherefortheparty"]},"Identity":{"Case":"Some","Fields":["NUCk3Tnc8xiEKylc3dSRGJJPKlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aUNeZjHZeQ5iXPmJSnna6bUGMdImyX0q69k9h2DpBuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:08"]},"IP":{"Case":"Some","Fields":["212.7.160.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeLoveNotWar"]},"Identity":{"Case":"Some","Fields":["NT8IDzoQJ5OtO+PNt9AFKfFvI/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zDvyLGflxdd7PhyXsduMA+NXDoOSFyp84BaV4tOHjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:39"]},"IP":{"Case":"Some","Fields":["5.255.97.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fogbank"]},"Identity":{"Case":"Some","Fields":["NTn5b8zcZFx4AQBvkoZMuv1KjrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zzTUQmcUxWgWnoj9YNWUL4KDshrnnfvrFxfl/xpyFic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:16"]},"IP":{"Case":"Some","Fields":["213.144.142.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:ad1::36]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KarnRelay"]},"Identity":{"Case":"Some","Fields":["NTd0UILjtNvz74uAuu+i5nXTbaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QMdnhEfXcBsmd187TyDCZtUbw4YzBwGRf/irQuPgkHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:57"]},"IP":{"Case":"Some","Fields":["101.182.5.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privy14you"]},"Identity":{"Case":"Some","Fields":["NTNatYOSECY314ZkEzPH1d+smGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmBTIpyURh4RyQoPP9UEl/0o74pMZ1dsfXC0RCyrrdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:42"]},"IP":{"Case":"Some","Fields":["185.225.210.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasedRelay"]},"Identity":{"Case":"Some","Fields":["NRLAyvd/hLxXANaOnU0OceJctK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLiddaFASujQRkyF3uLZK2gCIVsAhL+aDJpy3kioCj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:18"]},"IP":{"Case":"Some","Fields":["199.170.132.74"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:31:6969::]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchierRedux2"]},"Identity":{"Case":"Some","Fields":["NRFvGiwLAEcjYZL7nbcNBV1x+Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Un7vAX5GdL/DuHZLJZQBHhDP0Lc5aadj19OWIqKKEXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:43"]},"IP":{"Case":"Some","Fields":["107.189.12.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuchur"]},"Identity":{"Case":"Some","Fields":["NPrnP0ExTm36IYHifxzNQOKTv8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6Fl0NmfC9VF6Hw2+wiILfjIfsrJArwJDOYU5zItw4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:56"]},"IP":{"Case":"Some","Fields":["37.120.176.124"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:85e0:d875:d4ff:fe5d:c267]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theeldertroll"]},"Identity":{"Case":"Some","Fields":["NPSqlz18lJ8vTGUhNCmi0Pe3IWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WPu+0I1sl/5iyWqS6641xuqS13lAhD2i/oe89DLNkgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:45"]},"IP":{"Case":"Some","Fields":["164.92.218.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fulcrum01"]},"Identity":{"Case":"Some","Fields":["NOZRC9aeiaacgufAZaagYv/6RqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lWgYQe9aMFHOFxe2cn0rgcsSlXacIDHgnzbsfQXrUng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:03"]},"IP":{"Case":"Some","Fields":["78.150.231.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ishouldeditheconfi"]},"Identity":{"Case":"Some","Fields":["NN5/kCilPVI413mwDa90OP3h16A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B4bSmuLulD8F/yMf0LG5TziVlIMrQ42XUFJdLjiaJ3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:17"]},"IP":{"Case":"Some","Fields":["195.201.33.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:9640::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["NLgNcD9NY1AUa2hOZtliojqDARc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ZnLnpWWOjwZCmqcOZSldehmmy+kSZI9e9tasmHxzEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:30"]},"IP":{"Case":"Some","Fields":["185.183.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigitalBordel"]},"Identity":{"Case":"Some","Fields":["NJX0iNGLHV+IqjHm5IR/0ZQ8bxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9V33zBMGJuB8qcmkNi0CFS0NOQxjCwvo5ZY55EhbuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:06"]},"IP":{"Case":"Some","Fields":["5.39.90.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hecker"]},"Identity":{"Case":"Some","Fields":["NIQ59KPZWebRSBBw2oGhNTQ0Gcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5hf6J2mDxZXKA84yub4aQQjUuSRQ5ZrqS/zaARA8MdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:30"]},"IP":{"Case":"Some","Fields":["89.163.143.8"]},"OnionRouterPort":{"Case":"Some","Fields":[445]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:c95::1]:445"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["NHJT0dUkbLHEz4CIxpgv53z3q5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6hn/d2yvQtdQy9gO7wnhPE6vEPhPTF1RbSVbLgwNVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:07"]},"IP":{"Case":"Some","Fields":["86.59.119.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:86:59:119:88]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aopelrelay"]},"Identity":{"Case":"Some","Fields":["NGA1JI/6TMbJHFbAhxafcY6OBsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kYSAferfRWUoV0ikEWVBILOEBXgBFa0bX2PYW0Y9bEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:31"]},"IP":{"Case":"Some","Fields":["134.41.181.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mewse"]},"Identity":{"Case":"Some","Fields":["NF4Dzvt78EYT/KFFMvONG7ntvUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7cknRtlpEXjl3879/NQBfRIV0t6y1SMQfk6MogFU9hM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:56"]},"IP":{"Case":"Some","Fields":["45.128.133.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedPlayer"]},"Identity":{"Case":"Some","Fields":["NFVhbzyte9XxCTxiqXWe5UiTOcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y1I7cT+Po1+diHE+d/Ac/FS8lnFikZTiD7XP2EKsNe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:03"]},"IP":{"Case":"Some","Fields":["81.95.11.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4a0:72:1a::2579]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SilentOwl"]},"Identity":{"Case":"Some","Fields":["NFIv0LwR5Up1o96lYvYqrWcXF18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xt7OQDtDKvTqUeVjfZuTFKvLtuxl9LEnNXWwRJ+SM0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:06"]},"IP":{"Case":"Some","Fields":["195.201.36.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:5fec::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DandelionSproutW11"]},"Identity":{"Case":"Some","Fields":["NE/nIKT3cwqhXUkNO3/5hg98384"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVfIobsGq6EWfeq6O1xTqQ75We4NON3ie9YPa6w24ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:48"]},"IP":{"Case":"Some","Fields":["84.202.47.23"]},"OnionRouterPort":{"Case":"Some","Fields":[36499]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4652:5f5:0:bd84:5904:79ef:3fd7]:46489"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EMTR135"]},"Identity":{"Case":"Some","Fields":["NE+WavkCmGIn2mwvUj1Tu9YEiSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it1AUYxvQpovcVf9rVZwxxW96+qQxLF78JyF5TXF5MM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:27"]},"IP":{"Case":"Some","Fields":["130.162.208.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NEqLxP0CgAgCk7Jlku9j+KWSef4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wqtfoYaWHEAZDVNALYynCNb/CBYbS5Uas5t8esm28Ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["94.130.15.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9119]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:1386::2]:9119"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxeneu"]},"Identity":{"Case":"Some","Fields":["NEer6LtJMDvzb+AAezyK2IvcTTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/y0Qh5vVPm05BI3LM6Ju4ngb+P7RfiT90z+oWem4yhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:54"]},"IP":{"Case":"Some","Fields":["107.189.10.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MiRelay"]},"Identity":{"Case":"Some","Fields":["NELxgTnktuOryyWY3yV5CesQaZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["79HVWTACE+4x6bwPAiAP+0pFcGqdiqvaFlsMNM/Z1QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:41"]},"IP":{"Case":"Some","Fields":["24.247.81.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BringMeToLife"]},"Identity":{"Case":"Some","Fields":["ND7AN9YzFQr/zIRx6AWquuGx2HE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/kvUjVuz7QEQm9/a25Hz/iIHIw6fZwmC8lOfZyF1gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:33"]},"IP":{"Case":"Some","Fields":["66.168.117.249"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay15at5443"]},"Identity":{"Case":"Some","Fields":["NDT2qNKdFH2QH8zUa8oDp29Rga0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZBLFlEbfUGbRPO0kUiWWCR6HErz3TAZ8KbGgIvpjsB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:16"]},"IP":{"Case":"Some","Fields":["140.78.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nerdbyhetzner"]},"Identity":{"Case":"Some","Fields":["NDGUDftGQ6PuP0Rlv/JlXKm965Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlDPzHsoYTO2tFtnZmiQ7939zOBlwsUJZBxcNps1yvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:40"]},"IP":{"Case":"Some","Fields":["95.216.154.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:121f::8443]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aergia"]},"Identity":{"Case":"Some","Fields":["NCoax2TYkkjmZFjAd8/2aNBf/zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["saUgxAtAWjJrgfw7crvGQ1Bq3pP0YDs8wsBl7zFi2qI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:14"]},"IP":{"Case":"Some","Fields":["37.187.98.185"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[49030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:22b9::1]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["NB+s5SqbV13YkgQIUkxenLY858Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s8CcwD9A4IdnYi25JKMLzX25CS1BWOJKDIMxCoIeApU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:07"]},"IP":{"Case":"Some","Fields":["23.128.248.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::28]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hector"]},"Identity":{"Case":"Some","Fields":["NBxkuVFieiBSxMlHUw/q7k+/qG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VegVcBaXTJGdZwCpfkUBcoxfTlBAc4vO31gfTJORtBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:06"]},"IP":{"Case":"Some","Fields":["65.108.195.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalsAG"]},"Identity":{"Case":"Some","Fields":["NBfx8kp8pAM9tRRhAyGhqfQQzDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r+0wIwwElSROTiRXTOI/YDIEGNFKUea5fop2UeIcTYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:48"]},"IP":{"Case":"Some","Fields":["93.95.231.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harambe"]},"Identity":{"Case":"Some","Fields":["NBM8wxks91OAibFFEUAN8huloHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CyRPoB7PN2smAGS6S/vMZ3HqCpUuQMgGwXrD9DbG7dM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:02"]},"IP":{"Case":"Some","Fields":["71.179.6.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NAxZVAJJ0U3+VHeTwIcIsJhsr2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wBBff/i7Lj/FBhkPvtQcfAVprvltumnKBHFLpAeyd1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:40"]},"IP":{"Case":"Some","Fields":["144.172.73.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange005nl2"]},"Identity":{"Case":"Some","Fields":["NAsJrM9FqYcRq7Bngg4lovIUUsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZnKUWrcyLYlbbjr2+eWdUSUeG+qVHx4zMRsyENpeS2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:16"]},"IP":{"Case":"Some","Fields":["51.15.4.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h0mer"]},"Identity":{"Case":"Some","Fields":["M/Ih46kwb6CKhX/iZuviNyDrYCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mzaNb7EFO3h0GZQE+Jn+61iJa5O9IkyIBmRxLnFnTuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:45"]},"IP":{"Case":"Some","Fields":["178.17.170.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:20::eda9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["popular1"]},"Identity":{"Case":"Some","Fields":["M/F/H1EuamkPB85iFm5Aa78szf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OsZJ7xkKeOoUS9EJNVuKxcYxe+qpqGooys+79Fnn+70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:14"]},"IP":{"Case":"Some","Fields":["45.58.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["M+mzb0jbIPQ3V4QzlzFW8BhUQrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nrD2gnrNFBg3SWoNxtmfH3zmCOVW9I0Ys2MX6EzVu+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:41"]},"IP":{"Case":"Some","Fields":["194.26.192.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["M+b65QLaPwz8GFDkKb93m+6O6CA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WynQLe5imStQ74ouOWJNiiowh/vHhMNj+RNzYCSiTS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:29"]},"IP":{"Case":"Some","Fields":["220.71.7.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2HG"]},"Identity":{"Case":"Some","Fields":["M9ujMEM+KRW9DuZnh6SIY8gYwLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["deGRjNVTDAA7ZO0TvqYLkBLDo1+OM38gerlU8NqlPSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:13"]},"IP":{"Case":"Some","Fields":["163.172.68.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["M9ajqL2XdyP9TAUxUfeNhSrGJ3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["blWXXXV6sGVUIu+FFlPlWapJVH+Wq8+4jHVe9BONlDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:43"]},"IP":{"Case":"Some","Fields":["51.158.231.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mischmaschine"]},"Identity":{"Case":"Some","Fields":["M8McIBEnHecf+iiPN6OtJKZRnEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SXIf2E7eAhLvtcnQ+kY0F0N01XRRBHrK8tPIdBcPIx8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:16"]},"IP":{"Case":"Some","Fields":["188.40.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:543::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AGoodTorRelay3782"]},"Identity":{"Case":"Some","Fields":["M7+Bv99Zc66qMe5EX1GIv3eQXp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UyTO5fW1MixmKwWYasM9HbPTjzKdvAb3I5ikMG/gqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:09"]},"IP":{"Case":"Some","Fields":["51.81.86.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::1147]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["M4hjoYUgB8IH7UXK5KRnq0cOCiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJ1TglZ8REzZwl612RRGwFjQfvU4ajVp7TH8fe5W0+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:32"]},"IP":{"Case":"Some","Fields":["23.128.248.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::81]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CROPOURTOR"]},"Identity":{"Case":"Some","Fields":["M4Qi7oN5C+VLMrPqUBtp/vdkNRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRt/s4eYaHw+1JNTUJs/z8hWLtk+MPYuprv8WPxnsHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:17"]},"IP":{"Case":"Some","Fields":["78.141.237.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7400:844e:5400:4ff:fe14:1da9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra53"]},"Identity":{"Case":"Some","Fields":["M4M3e1IiBOabH6GlYn+Vr2QOkQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bs7dTRDszX6hV5Gwe0EEgJBucy0ViNbgbUr6MNHEV7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:05"]},"IP":{"Case":"Some","Fields":["107.189.2.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["M3w4CqO7DM3GPqG0XQJQY0g+f6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cmm3zRxItzsRSZfq///eee6mQwr8oU7AJvbYbxoTxu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:31"]},"IP":{"Case":"Some","Fields":["23.128.248.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DowntimePatrol"]},"Identity":{"Case":"Some","Fields":["M16ZMiIgT2tIFxNFBklKZEHe+2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9btYU7SqXhIFYEv9JPvF+RQYXmLflvvXyMsTw5Acdok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:59"]},"IP":{"Case":"Some","Fields":["185.181.60.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:181:60:0:181]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6i0n4d324"]},"Identity":{"Case":"Some","Fields":["M10rtxTydB6uZ3RbRiNoPXOFCHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZadoSqOXiqvEOy4c6KxgX41Uvvoym48b6hdzbsBgI1o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:15"]},"IP":{"Case":"Some","Fields":["178.254.13.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["M1kcYRGMa7Hu0uIYFK8eG24aiYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mm/JDKCTQ7qk2aLM8zCAwxuz9I+NgG4WhWHn05PEkCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:21"]},"IP":{"Case":"Some","Fields":["74.208.33.181"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["M1MRxg3LOKE3FYin8STfDS3C9Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmwJbVAD2m3/JK3N4KUBsxoXUtPWiV6DXy8P303km14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:03"]},"IP":{"Case":"Some","Fields":["185.228.137.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hastyice"]},"Identity":{"Case":"Some","Fields":["M0g5wxsvg0qVKIBzWRTGMQSLOxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dC1DKyP7GSES/f8e0yxRPafBix5EpajSe38d2YzxRvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:08"]},"IP":{"Case":"Some","Fields":["91.203.5.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["central2rave4you"]},"Identity":{"Case":"Some","Fields":["My3JC3k48VqotgfAWMZssAV2LN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNV0L74PRcCa0d7rV8Yg86RXqA8WDeoKMGWSnKKYdaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:03"]},"IP":{"Case":"Some","Fields":["91.66.57.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute05"]},"Identity":{"Case":"Some","Fields":["MynnNsyhZEnQLVZ9Qmg78f15hnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ae8fSxUFH9vlKSDktQoZ7X+JJqN43Pm1ZbnB57SKiEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:19"]},"IP":{"Case":"Some","Fields":["162.247.74.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MyY778fmoNaVwEk4C0xypvusuFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/b8+8hr487qEyEra6QDi1EbPaiuiXArPikUcgJzRJGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:13"]},"IP":{"Case":"Some","Fields":["194.156.98.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0138"]},"Identity":{"Case":"Some","Fields":["MxzuGfMRIEy3Mv+NtWlMTfMvOyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6/Exjao/quYXLJ2k1kSxI0t41ilxBrM4AehJNPj9kqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:14"]},"IP":{"Case":"Some","Fields":["185.220.101.138"]},"OnionRouterPort":{"Case":"Some","Fields":[10138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::138]:20138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MxQgCsK/YP/YKBFPSiPURINPFNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["udiktGsdD4Xj1dopwAi9Tuz26oaEt6dqxIgQ+umcAls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:37"]},"IP":{"Case":"Some","Fields":["96.245.115.66"]},"OnionRouterPort":{"Case":"Some","Fields":[7936]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CHRISTOPHERSOFTGEM"]},"Identity":{"Case":"Some","Fields":["MwqMLlPuZN1h0oXhlSdllQf7JHk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLPjFX0mFjlzqbAq6FGM2ZkuVrxuAAGXA0BajM/rGR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:21"]},"IP":{"Case":"Some","Fields":["62.12.118.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber08"]},"Identity":{"Case":"Some","Fields":["MwpdT51dUya5qsEsM560knnWAjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bTaQhkHfGNy0fM6wTq3ynYZZ1c3nkAnqfUknUQ19V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:56"]},"IP":{"Case":"Some","Fields":["185.220.101.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetwozz"]},"Identity":{"Case":"Some","Fields":["MwDY5ZFL3t4+7SrdLO/WEQA04uY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7iUJ4cvwKPliIRy3kvfFjRem856+p5P4uNMG/Cht7Z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:08"]},"IP":{"Case":"Some","Fields":["217.160.58.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:67b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SetecAstronomy"]},"Identity":{"Case":"Some","Fields":["MvYl44f4KnQ1nBSQ0mSVtvxHLLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2L8cxgcyeQevXsetkI4jWH9umpGH/ChHC1Rdu1O7ZJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:34"]},"IP":{"Case":"Some","Fields":["85.183.154.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber11"]},"Identity":{"Case":"Some","Fields":["MvCgGcccJoduyuNV3YQVo1WoaSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlKnak8ToZagEPAinlk7GJm4nCdeOd/fg64pLPIq5hU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:53"]},"IP":{"Case":"Some","Fields":["185.220.101.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::6]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ndnr1"]},"Identity":{"Case":"Some","Fields":["Mu6RHZaL4+AW7KVyux7Qqe5D/C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ScElSfkRzt4GO5QBspZC4NUIJ16o3MHy3TBVIgrA4Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:50"]},"IP":{"Case":"Some","Fields":["109.105.109.162"]},"OnionRouterPort":{"Case":"Some","Fields":[60784]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:948:7:2::163]:5001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spiegelberg"]},"Identity":{"Case":"Some","Fields":["Mu0bVV+xQNbbm/Gv+BwrZrMh0qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXrGigOx6mKmPa0UDRjqIDaej+POyCFCaJQKDkuEipI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:13"]},"IP":{"Case":"Some","Fields":["51.81.56.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Mudd9RCvcLF1Y1Q8Z+iNPgLIX/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/2gUohTBqyo/XhyZZmjb1narBwP/Jdymg8tlzXtkXOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:46"]},"IP":{"Case":"Some","Fields":["23.128.248.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams05"]},"Identity":{"Case":"Some","Fields":["MtYYFK/LpGhm3B9ALuKWfZrBEj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cLhet6iKwd67EmHHsSobFRKP2b6A9cutzxqm3YdTkFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:40"]},"IP":{"Case":"Some","Fields":["45.151.167.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::c]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["MsPCVdZL8Fbl4qK4iJts5NjCdkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["crq5RaqobT2rA+r80wWX6RbccZukj1PZ4qp/5//D+98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:42"]},"IP":{"Case":"Some","Fields":["185.241.208.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["STEALTHSTOSE"]},"Identity":{"Case":"Some","Fields":["MsFZN/Dmx5YTQJHq9UoBvGr7oYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9GSZZG9nR+YRZIPexOeu8ELdvJ0+u0WORVnvKuk8H7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:34"]},"IP":{"Case":"Some","Fields":["82.196.126.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BahnhufPowah"]},"Identity":{"Case":"Some","Fields":["MsEQC17xmlv7tDHo1CeBwtCdMcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNJextCFJCHOVPj4W8n5ev427QdISJBsbwU6z5bAPN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:19"]},"IP":{"Case":"Some","Fields":["98.128.173.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1145"]},"Identity":{"Case":"Some","Fields":["MrQqm4ZfO1UilT3Ry7Pa239T1bA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ax+oI3YCBiJ3rXUAFjPGKjcUU6lv9zIXN/DS6NpmEU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:49"]},"IP":{"Case":"Some","Fields":["185.220.101.145"]},"OnionRouterPort":{"Case":"Some","Fields":[11145]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::145]:11145"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aare"]},"Identity":{"Case":"Some","Fields":["Mqzoghc9+jcEpyFfimJT6tPhbJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hR77Ie2uTg2pyTvCjE9Cay4W77Ax8M+skEQOFv5N8QU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:58"]},"IP":{"Case":"Some","Fields":["85.195.232.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KittenInTheCloud"]},"Identity":{"Case":"Some","Fields":["MquupbLsbt598H+89UyaZ4ahs08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j7kgRxT62oEQ3XuoAjYjGXNdHiYk+H1aUtVQyLULnQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:41"]},"IP":{"Case":"Some","Fields":["45.137.68.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:5100:e1c0:503::44]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carnavafoire"]},"Identity":{"Case":"Some","Fields":["Mqt4tQ9bDY0V0A7xhwrRA5rTEDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["copwSjPmCWCNFf1DMjFiZPWcf7Oa7UqT10mFvOyeIdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:26"]},"IP":{"Case":"Some","Fields":["216.10.247.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt85328"]},"Identity":{"Case":"Some","Fields":["Mqoz28bWvoENlpdQyiJuTDzTG9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WxkPgzr6enNhZcEvh7S26uu/pajFFz6jaYDX6Iajess"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:56"]},"IP":{"Case":"Some","Fields":["185.245.60.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["overseerorwell"]},"Identity":{"Case":"Some","Fields":["MqoKrOFc/p7TuQfctp7EiYj5xa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U0fqBiA7T/v9VpkD33hq41/pG5QvSLCPgu18U7/bpG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:17"]},"IP":{"Case":"Some","Fields":["51.81.254.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["MqemXB8KJyhcqF+gND9Dk+qvTsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/kATPJGoQkd/M7ZmII/QOUbjaiD8lci4m0NXrR/D8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:53"]},"IP":{"Case":"Some","Fields":["51.254.114.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3000::3724]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tordom"]},"Identity":{"Case":"Some","Fields":["MqQ7DBU8Ipj9vSSjspjak2jcc7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/kFbjhuro6WKjiRi5HY31ynciZllqFyd29X1ww+sVeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:26"]},"IP":{"Case":"Some","Fields":["95.216.168.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1997::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["rebleulay"]},"Identity":{"Case":"Some","Fields":["MpgBTzGbZ4KfUbK34IiTuQ7k7Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ll0VeVQrhDk4DNzMzko4TZ7gpdzyObIiVnCyBG7W4HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:23"]},"IP":{"Case":"Some","Fields":["212.51.147.50"]},"OnionRouterPort":{"Case":"Some","Fields":[26401]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:5af4:4646:c23f:d5ff:fe67:aba5]:26401"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["MpKa5BcwEzDtdoEmgeKDXShUy0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imU/wVBkVvVAVoWWQF2GWi765ZO3ZHdkaVnuTzBqTPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:58"]},"IP":{"Case":"Some","Fields":["23.128.248.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["Mo7TqS0c1iFlm02m4hD8rtgTF0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lgf9ASSmpcE8IT0R+ry4qAxUbOnWi24BGJSAd2gZ7ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:10"]},"IP":{"Case":"Some","Fields":["104.152.209.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode2"]},"Identity":{"Case":"Some","Fields":["Mog2CJB6VRLS9oXkBLTiIDge/1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oBJ3fL85wM1PDhFqTXWa3RL1dawOX+CT6Ak/k7qSY7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:01"]},"IP":{"Case":"Some","Fields":["188.68.36.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:ab7:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer17"]},"Identity":{"Case":"Some","Fields":["Mof3nZwWh79/Op0UA2nKZNL9ERs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YHUP6Jr9+WUD9fgBaEAdRLZaRqU+r6g4X46eCpX5hbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:53"]},"IP":{"Case":"Some","Fields":["185.243.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8166]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:41]:8166"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rhea"]},"Identity":{"Case":"Some","Fields":["MoKEdvT4ThXEK0w2ClzY3kw8K+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmmTUGPsYkWY4Ixc3TxxjHqLkD26xDUDj2SLRd9HUmU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:34"]},"IP":{"Case":"Some","Fields":["104.131.11.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::104:9001]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demang"]},"Identity":{"Case":"Some","Fields":["Mn9YI0OLjshuwzNVwUfYRVqxwUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z225cukcJNprFB4L/edithAQdkC7Hzkrs9lO2ZhaCHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:42"]},"IP":{"Case":"Some","Fields":["93.115.91.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bouncer4u"]},"Identity":{"Case":"Some","Fields":["Mn8zf5RVNQS6jxC+ftkIOIFUjPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hNK4WDiKM22lmOBbzAn91yPIjQk2H0/BeLz+uBXkah0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:51"]},"IP":{"Case":"Some","Fields":["104.149.129.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG11"]},"Identity":{"Case":"Some","Fields":["Mn31JqBBKciqVbXzVRvEasS8em0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YJf0E5PwfnmjDLp6ZLknHkHbZ+mzTpb4t3m9b+4GpdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sonrisas"]},"Identity":{"Case":"Some","Fields":["MnQq1Xw9JD2gcTu239ghGN9XPS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdhBbeTLBncugwrJDdqfTgKcss/Hk52yuIQv2Xo11Z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:51"]},"IP":{"Case":"Some","Fields":["15.204.141.95"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MnIYYYze3M7khxjG9/H1+pinfmo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSQp+lOoZqkmqMhGMwobWRuoJQlM3ZhPhME03G6N77Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:27"]},"IP":{"Case":"Some","Fields":["94.23.248.57"]},"OnionRouterPort":{"Case":"Some","Fields":[52959]},"DirectoryPort":{"Case":"Some","Fields":[39540]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex75"]},"Identity":{"Case":"Some","Fields":["Mmi0x9yNMcMP8USAQJ3W1rBwLJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1dkOwW0RxfxVJH34SbACFbUv07nvTQzbDJ0b/Sucsi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:08"]},"IP":{"Case":"Some","Fields":["199.249.230.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::164]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MmhTqnjaRn6ZfmBArdDc/4QODLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fWRe+08hP+Y6NTHJzjk7uF7ywyv5FGNbsp6El689/8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:32"]},"IP":{"Case":"Some","Fields":["194.145.150.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1578:200:10::c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MlAX0RlQaFeZDW9XMu0eKFsvaM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sox8V/BoNhMClsUZC4lJmF/Vw4DyYHFf/NRak6Cu//E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:54"]},"IP":{"Case":"Some","Fields":["81.232.62.230"]},"OnionRouterPort":{"Case":"Some","Fields":[5679]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:2002:51e8:3ee6::1]:5679"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bixnix"]},"Identity":{"Case":"Some","Fields":["MkyqZsH2NVmWQteaHZZcEHQ1lCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w29s3nopsSIvU6onqIMfathdbp64GjfWHrZlwzwS8Yo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:49"]},"IP":{"Case":"Some","Fields":["107.189.12.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sodium"]},"Identity":{"Case":"Some","Fields":["MjuwKmICQYQsWig60mF9nvo5f70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QXbaN7FJzdptHdHbxi6wpztdqgJLUU8LOtXQyGieF+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:14"]},"IP":{"Case":"Some","Fields":["65.21.246.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:33ef::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN01a"]},"Identity":{"Case":"Some","Fields":["MjkAfOH7Ls398gZ98juUkpXcXvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kZojIJroYsrH6JBZi3Kbw5qLMfiEKtfGig0x8fBPN/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:37"]},"IP":{"Case":"Some","Fields":["217.182.198.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["MjZL74c5RL5IHovMf66Sl/Xzl4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/1WZTzCxkrKemlXUfHvb6K/VAvtx39xJjwDhyEHC4xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:19"]},"IP":{"Case":"Some","Fields":["51.158.96.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Loukanikos"]},"Identity":{"Case":"Some","Fields":["MjYaHv32hNrtyMpkhDdno5X56s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["un/6c6k9j1fyrUfshnIg1zI8XDZa9du9svwoWl+cEd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:43"]},"IP":{"Case":"Some","Fields":["146.0.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AugustTORExit"]},"Identity":{"Case":"Some","Fields":["Mi5Jok99+bFd1zIF/LhMjlrPAqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXURYKIovUcoTceJdiZyrlY5nWx2f4HQUTtOZDANDDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:25"]},"IP":{"Case":"Some","Fields":["23.133.8.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2602:fbf6:11:27::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BananaNode03"]},"Identity":{"Case":"Some","Fields":["MiuzP0iHIwsHZ/VLoIpFC2jXd/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLAfsAoJ/KXDRUd9U/8ho0NOKH5sjWHXjXv+0QEkOr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:44"]},"IP":{"Case":"Some","Fields":["90.231.172.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["windeck"]},"Identity":{"Case":"Some","Fields":["Mg23vqcsBYui7vCYvxrvuik3G+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FRKX9eLbqlyDfTz7Wj6R9jy7NSEvmRoLMLll2zkYt18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:15"]},"IP":{"Case":"Some","Fields":["185.72.244.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex93"]},"Identity":{"Case":"Some","Fields":["Mg1zr2zHiYfnEHiYR7+41hwxvUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZfbkpkIZY16Yaww2VLIu6YJqfmm7wsNuv4LgstRKlA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:50"]},"IP":{"Case":"Some","Fields":["199.249.230.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::182]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justAnotherTorNode"]},"Identity":{"Case":"Some","Fields":["MeMHK+LX/sVwfwnDUWEv4reuSNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YYkH6SmiLIUO24rY6Rr/TsrL4rEUBaAX5aKZmBZafio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:37"]},"IP":{"Case":"Some","Fields":["88.80.184.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:feae:4153]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG8"]},"Identity":{"Case":"Some","Fields":["MdOR9HIN6JbFmLcjaa+IDtCG1hQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8w0TU6oEg0z5bHoM4QUodz7AWcFmE0NZMVXKLPifap4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgium"]},"Identity":{"Case":"Some","Fields":["MdJwo4UF1L+7yr9xfp+0vKbd8v8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH5xKCfhg1ABg1+Zf3QJxO66/9b6WSOGZ5swqIiwwTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:54"]},"IP":{"Case":"Some","Fields":["45.128.133.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt61472"]},"Identity":{"Case":"Some","Fields":["MbFWdhe7qN8HoSO0Ff7tp7Ihl2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nxiJKO/jrNp1EkQUoHtMfMmqg9KL4EAEePRIFR0vdRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:27"]},"IP":{"Case":"Some","Fields":["185.245.60.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XiWinnie"]},"Identity":{"Case":"Some","Fields":["MazT9GKST7X6W9IZmczffuf7AWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmN5GgEgYE1jNNirSF/VV1/hs/LP0TH6zgALZxTb/Mc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:07"]},"IP":{"Case":"Some","Fields":["51.158.146.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:213:208:a2ff:fe0c:804a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["MasEowgAkf7Mr9awKz1Gvp24L+U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GLHais/cEldD0CqsDYEevixZMYqovwjQDKQiwCui5IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:38"]},"IP":{"Case":"Some","Fields":["5.45.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notraing"]},"Identity":{"Case":"Some","Fields":["MaD69IwBUC/6wrMX82ll3xsxEBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["et+AxItvZpRS8V+wDbvHg8T5Tc8sBk1/TMeXSXRE/wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:20"]},"IP":{"Case":"Some","Fields":["45.32.129.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["MZ5QMq2TuJxB5ZTrn90VNq0UQEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6sJhElGEMi2X9MN1xR4pXh/KjrA/NOy6tjlNY+Aa9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:00"]},"IP":{"Case":"Some","Fields":["68.41.59.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strongman"]},"Identity":{"Case":"Some","Fields":["MZbdmkMRkr6G98js8d8PgOzGxok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4Va1HrPokecL3jK+xR2hPuKZpJN5Awjg9bPKJkDyng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:53"]},"IP":{"Case":"Some","Fields":["23.82.137.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow3"]},"Identity":{"Case":"Some","Fields":["MZZibUdlGuQTRVouFTVz79AN6Ug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JoXvmVR9zUdEFecGnLJwIHC8AwhHsaGnYfzgiuWMpaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["51.68.152.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redonionring"]},"Identity":{"Case":"Some","Fields":["MYy3/A6uuSMR61G1t448rUXrzyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e6LPwXZZpa5mjkynuMP8oN8xgXITsWGo4NhwDxHntis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:15"]},"IP":{"Case":"Some","Fields":["45.79.181.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:1fe::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MYytGgCzPS9llYIQsJuJN4Numa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5fF8bm6GAZ3fdCey+uoobm10hfl56owUpjHVrX7E2qQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:53"]},"IP":{"Case":"Some","Fields":["91.39.86.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP09"]},"Identity":{"Case":"Some","Fields":["MYMtQqG0fpCXBwT+bXIQ0l+h5eM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SCo3ZfMlCVjoTUV0oaMvOdjKu7tNawn3WmoWHhFwUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:06"]},"IP":{"Case":"Some","Fields":["15.235.29.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doudoubridge"]},"Identity":{"Case":"Some","Fields":["MXucNLmYATK2jcqr4JFbnFZTvgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wg5Y5sbSigElYV7C6RcYUDyuY8g9IYDjiCfh8E5E/wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:29"]},"IP":{"Case":"Some","Fields":["82.65.165.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PankyPL1"]},"Identity":{"Case":"Some","Fields":["MW3kXv+1NnHJ/VPOCZKVKEZwmik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M0kyLroBr/ySZehLuQhLJIVaGTRiyipSWpY+3nWfqBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:35"]},"IP":{"Case":"Some","Fields":["51.68.136.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blissey"]},"Identity":{"Case":"Some","Fields":["MW1qvOpSJo5he7mS0PmQlCV3C8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SZDn5Gz7QcuvWuLTYlJLoEsDCsyt1LtLGUdj0u/4uo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:15"]},"IP":{"Case":"Some","Fields":["102.130.113.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atrip"]},"Identity":{"Case":"Some","Fields":["MVH7QZ+rD9hte+T339Yg6Z4QXZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJvR9QRp1DehpB5lIW/ePS918OQ84JoL4etWVECg3KE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:48"]},"IP":{"Case":"Some","Fields":["135.181.41.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9cbb::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueOctopus001"]},"Identity":{"Case":"Some","Fields":["MU4fS2dsFeej2tnbGVlfACAoI+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S3/1gREGQO2/L+jw4E4/gxFo60SSFkouX/e1O+ao554"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:20"]},"IP":{"Case":"Some","Fields":["139.59.118.185"]},"OnionRouterPort":{"Case":"Some","Fields":[60000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::633:e003]:60000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mulloy"]},"Identity":{"Case":"Some","Fields":["MUGaZBiLyAcO6J887mqpjqrH6Og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1Y+hGPKRzaWcocopuCgR1aFc7F6C3V5LLycgQ37qAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:39"]},"IP":{"Case":"Some","Fields":["46.249.37.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e2"]},"Identity":{"Case":"Some","Fields":["MRpFM/eiQV9CNGpsj6d+b9J5WUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqNSGG2LpNbJZHJ8l7bEX4IAhwNRsw/cTsBRuIVgjZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:01"]},"IP":{"Case":"Some","Fields":["94.230.208.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::147]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["MRaDDFYHlmdHhdbnkAmGaYFx4VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoZay1qrjoNA9sznfKNjHcTx7s80Lz8KvrOFV5wM0es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:06"]},"IP":{"Case":"Some","Fields":["198.140.141.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:51]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DebTor"]},"Identity":{"Case":"Some","Fields":["MRZkUauh7KfF+ltgUZrkXHYAEWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IcwymbOfrQ2Ye0ZhSwvQjCKdcK5LJM8mzFZbFoim2TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:56"]},"IP":{"Case":"Some","Fields":["37.187.18.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:12d4::ffff]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PenAndPaperIsLife"]},"Identity":{"Case":"Some","Fields":["MQm3EuHuBAGn4Sn9HrEYS1TBCaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsIfhffrlZJDs6OM5Ivug184lRy6vDVQ+gVneD+6NRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:01"]},"IP":{"Case":"Some","Fields":["128.0.64.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tainish"]},"Identity":{"Case":"Some","Fields":["MPzIKNlOhKwWmDR4gakUmYNjT/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VVgTdjZXghw5FG4diEXVBfu9f1bDifXBUiz5x60aSVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:53"]},"IP":{"Case":"Some","Fields":["130.193.10.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["agir6yah7Bahxolooqu"]},"Identity":{"Case":"Some","Fields":["MO3RUE13+hVbP/D0nKeH4PJKqGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JKhxcVx8zNg0aupQA7zJUpGhcmxBktFjJIZRzxBPq+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:29"]},"IP":{"Case":"Some","Fields":["45.62.232.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2607:8880::1832:b5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedMaple"]},"Identity":{"Case":"Some","Fields":["MO1q+XAZwdirsVAmq99w9XfPV/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCLoc80mRH8/7ucACzozzRyghIpmBjOBhRdT16BLv/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:21"]},"IP":{"Case":"Some","Fields":["23.108.51.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["MOgBFRImDc8ET3OVNxlH9yDKUNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gwyy1OuVzHuXoUdxWrlu8oRrE51ZI+Ff4yL6EUS2W0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:26"]},"IP":{"Case":"Some","Fields":["23.128.248.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FuckYouPutin"]},"Identity":{"Case":"Some","Fields":["MNkixS7+7IruahB+NtzcZkgBLbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bAtdTTpI98LumKZkrWfB44QWNyT4uevsWIX9jLFZEd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:47"]},"IP":{"Case":"Some","Fields":["212.159.69.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["savanna"]},"Identity":{"Case":"Some","Fields":["MNRXMXeJ4gRJy8EuAvVlj6I+C+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMkhDmiGli9ZrgJDrbMnxHHKMEZUFxClZh7dGSqbNis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:50"]},"IP":{"Case":"Some","Fields":["176.9.17.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:1141::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MNEWIbxJ4totqx9FSyu6YGtDhJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rL3Iq3hThKMa2FQZ8gNCS09UtYc+GGm7z9vz44St4aI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:48"]},"IP":{"Case":"Some","Fields":["51.254.45.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex61"]},"Identity":{"Case":"Some","Fields":["MMVcSW9ce5ho4LxjSaHNViPwt18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lf5h8MSHzEzVQ+2JEIoGuux9kW1aRnFp8a2PE77HQ/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:52"]},"IP":{"Case":"Some","Fields":["199.249.230.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::150]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["MMRyRB2RCovNpXHyY3yAEZ520II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vNmPwHGwJLEs/Sc4biHGPezeKzh9lIWeWWnydqFxH7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:41"]},"IP":{"Case":"Some","Fields":["5.45.106.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CibulovySmerovac"]},"Identity":{"Case":"Some","Fields":["MMAuOSb7mhrDcCL/X/ASD5DvIjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vofsDhJi1FXVvt9dF0TuKRZ+OXly70cUsY5XfEGR1pI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:10"]},"IP":{"Case":"Some","Fields":["104.244.74.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f292:9768:4707:313f:88a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["MLKcn3BqhGa/If2QsEGe19WGhlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dAiy5irthavxx6j03J35sVpfMpjs2fSaHmHJNzABLPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:39"]},"IP":{"Case":"Some","Fields":["213.238.182.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI19"]},"Identity":{"Case":"Some","Fields":["MKd7JPJeyyjSdDzYrUIuXFKu6Y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPN6z+aTZUL60Og1JNd/r4t7j0l9SpEEi2ttT/ksS78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:36"]},"IP":{"Case":"Some","Fields":["171.25.193.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::80]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["MKVcVUL26WM/qxpx+FER9cqpUvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9TyLfFk8y6DMbmCtByiAWbzyg4uL+zooRJV54lhDsR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.14.97.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::4fe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NotLinode"]},"Identity":{"Case":"Some","Fields":["MJbFT1P3gYHJpTyVDUY04X4ledQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xVx2+kLT2ydjQSyPxxG94842Dxt5Fx+TBiDQuoYzRNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:39"]},"IP":{"Case":"Some","Fields":["152.86.13.206"]},"OnionRouterPort":{"Case":"Some","Fields":[454]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv13"]},"Identity":{"Case":"Some","Fields":["MJYeUKYNdEWhGZte6mZOYOos4wY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UertOhpbwEwtZHluw9MtdHpmguREEcIJWM2JDYf1Plo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:21"]},"IP":{"Case":"Some","Fields":["162.248.163.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratscornRelay0"]},"Identity":{"Case":"Some","Fields":["MI6irWnIfUS/tWHUPf6NeSnGyak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYu0W0M5NFdynkhQrpXcay1Sei3nAEFcn5DQtkvcgoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:04"]},"IP":{"Case":"Some","Fields":["76.210.199.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrmphhh"]},"Identity":{"Case":"Some","Fields":["MIKKWtDcfd1pOFKb18kB0MDzXE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQRLcD8ABsZFVKUEqwJI7kD552MBFkXt9BLvo7O/Mrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:45"]},"IP":{"Case":"Some","Fields":["173.230.153.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BloodAndIron"]},"Identity":{"Case":"Some","Fields":["MG8iOocASUXqWL9/TSNvU6vAW/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ww8miV8hnhDpzeePLzn6374q9rwpRt5ePVrXyDN8Qh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:51"]},"IP":{"Case":"Some","Fields":["192.99.35.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unlimitedrelay085"]},"Identity":{"Case":"Some","Fields":["MF/Jr4GOPPDWq+3Lb3X+jeGLxDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyKlJ6xHj7x7pRIlZHyezLIx6GD0YEXB0ADtl6/lanA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:54"]},"IP":{"Case":"Some","Fields":["101.100.139.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geidi23"]},"Identity":{"Case":"Some","Fields":["MFt3N/XlXYmc1Z1Dbr3prnQNs04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FkbbXI/C2MClzJE1MzbJi92B/KnoUxd0F2HzoUmHevs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:43"]},"IP":{"Case":"Some","Fields":["207.244.91.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl1tjdevde"]},"Identity":{"Case":"Some","Fields":["MFf4rl8+KI9mkpwR2Cn7PvuHmHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["008ihXMxscEz84ckxH3pWkE47edTdqCKWkDmiZ8toyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:41"]},"IP":{"Case":"Some","Fields":["84.252.122.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:9235:3f0b:4136:5142]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["green"]},"Identity":{"Case":"Some","Fields":["MFFFTNqaBkKIMPEn3fKdkJin+1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdS2tpUUkJrK0Rhe7CZElCBZz8vOsOpy3oX+IJ5Nzwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:32"]},"IP":{"Case":"Some","Fields":["172.105.53.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxenoracle"]},"Identity":{"Case":"Some","Fields":["MEIptvDBCkRl9bMtCAFZyzYP3RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+436+ACIoBkJYZFvDt34+4KsA7oB4vYHFvYUNlmpVE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:23"]},"IP":{"Case":"Some","Fields":["144.24.17.44"]},"OnionRouterPort":{"Case":"Some","Fields":[4444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r2"]},"Identity":{"Case":"Some","Fields":["MD4tp9SlhRXiS+VQeEIh+Zy077U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSPX+kIJnsWrwNZ55JKeesnMBa7U8m5HaY0TfxnkWEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:34"]},"IP":{"Case":"Some","Fields":["108.175.14.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ukko"]},"Identity":{"Case":"Some","Fields":["MDUJq5EO8ge3Q4wnQ1xKL9V58bE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WW0irVUGrf5qrGj64RDVEHIriW7CTw58zYMgnvCuGgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:25"]},"IP":{"Case":"Some","Fields":["95.216.33.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:2145::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sagfreundtrittein"]},"Identity":{"Case":"Some","Fields":["MDP9GLvWWMXs6Sb7F9Imm/4zc1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2GgJFpf6GcoWiaIfuYi40K3Bz59iitWs0LXxU/6yPbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:24"]},"IP":{"Case":"Some","Fields":["51.158.166.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1046::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl1tjdevde"]},"Identity":{"Case":"Some","Fields":["MCbD5Oj37iLLWvEZbWVxiVfjdo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2eBAYHoObFoo8xAwy5SaNl+3ahj8sNyFrGQ5gc+ejM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:31"]},"IP":{"Case":"Some","Fields":["84.252.122.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:9235:3f0b:4136:5142]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinguin"]},"Identity":{"Case":"Some","Fields":["MCZCNmW54MKA2IDgXqBkM56SN70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["87p//kspdE7kh+jNR8oK5BXaP5lAIhfGiu628D7K7jM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:38"]},"IP":{"Case":"Some","Fields":["109.70.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::71]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssnn033"]},"Identity":{"Case":"Some","Fields":["MCUTIC+2koi4t1ceplTxZLJmMKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z/kT927E6r4ev2gdavkV+OmVltyhhkwYa0OHp7ffJGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:47"]},"IP":{"Case":"Some","Fields":["116.109.176.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MilkInTheTea"]},"Identity":{"Case":"Some","Fields":["MCPtlQYSaFb0+ACf4IMoPhqph/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAig9X0n5p9I6TAoSWAniODbZP70KKTLWbTOxr9x+Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:53"]},"IP":{"Case":"Some","Fields":["117.53.155.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xDEADBEEFCAFE2"]},"Identity":{"Case":"Some","Fields":["MBv7/LfwCAR9kXQwml7BiXcl8NI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C5CymLFqXUQap+51rXlf0feGhWUUn9Jov6f9dJ2T8rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:48"]},"IP":{"Case":"Some","Fields":["94.140.114.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::4d]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["MBsQ6/Puf+ucIyZuQEpjtpXPnSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hTbGciCHiZ9N6gM+LOZHEkg8WHFO+qzX8KRxPclgmLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:57"]},"IP":{"Case":"Some","Fields":["93.95.227.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkolando"]},"Identity":{"Case":"Some","Fields":["MAyp4X0lC61sPD7mV4sZNJO/Ato"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbJXfTKBcLsMcVZFi5KBxHpwJjtbqKBduMR1nkVhk4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:49"]},"IP":{"Case":"Some","Fields":["195.50.212.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:7d0:4dc0:7511:a0de:bdff:fe03:1ac1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["barabasz"]},"Identity":{"Case":"Some","Fields":["MAt+1U/iHYevVej/HUhoYGkXEh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BgwcFHOXRTKf/6ENyUxIhDIYYNyPPj+uRnsSDLx5Fg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:59"]},"IP":{"Case":"Some","Fields":["81.109.66.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HattoriHanzo"]},"Identity":{"Case":"Some","Fields":["L/mQ4nyJj64Gnz9psLqd8lSnXWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdAHK2gxvRcbVTKfZewrT4k0iRhzwp0t67gDBSaW9/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:20"]},"IP":{"Case":"Some","Fields":["176.114.0.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay42"]},"Identity":{"Case":"Some","Fields":["L/STT5EZ43dmexP+IR9ih04BIKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tSlZn+t6ShQQ6AiA5qt7FuwjNeX1hrJ+/8Cffbly8vI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:53"]},"IP":{"Case":"Some","Fields":["85.214.252.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra62"]},"Identity":{"Case":"Some","Fields":["L+gcH9RaxZMZPwTfeBmAJX5LzQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vMh2idwotKWUHwsrN36P90DHoHQEdcs02iWVuZY8hWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:28"]},"IP":{"Case":"Some","Fields":["104.244.77.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myzwiebel01"]},"Identity":{"Case":"Some","Fields":["L+ciNmh/cem6mk8PZ16AayBE/Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Zbf3TcxkUfiUnuwhpCTPWxeWyqk/j2rN0L5RDL0vN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:55"]},"IP":{"Case":"Some","Fields":["78.47.39.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:734d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["L8vyf+vcT+/DcUxEiFrNg1J5HnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yklw4lL8y3srlY0gUN0yiHzHpPLnweGim9MnYPcXQ9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:27"]},"IP":{"Case":"Some","Fields":["88.208.215.95"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1f5::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer36"]},"Identity":{"Case":"Some","Fields":["L76uxLCQ3cuDngJR3YX2J2DvdRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9WdJrSrjjgT/3WB5A7A+d63XdbcXLtGX8WhTEmOjZuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:37"]},"IP":{"Case":"Some","Fields":["173.208.190.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8014]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt29963"]},"Identity":{"Case":"Some","Fields":["L7uOVQ+kgOJxrbTeg1zIQP8gXEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5r6/NepFPYyzMESMOXGt3x55MvUofmvR19qEQLLwCC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["185.245.60.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tapiri"]},"Identity":{"Case":"Some","Fields":["L6Sz1GCHZaNa1O9hwC3IiXO//0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQdva5C6Hs7K9ZRMIiL+z+ywp6m02+cHjO+gsQmhgok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:11"]},"IP":{"Case":"Some","Fields":["142.132.230.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:6d96::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dutreuil"]},"Identity":{"Case":"Some","Fields":["L5r95D3I4/BYAzBMAb09vzKRaaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VQ5aod0qURFCaupSK+3OJuO/7N7Y+qsEUYlnUbJ4Bt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:12"]},"IP":{"Case":"Some","Fields":["213.152.168.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireMateria"]},"Identity":{"Case":"Some","Fields":["L5joU6VwrHp5tAgjZLeBrWdwUHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egnaJQR54l2jJYY2U/UjrGntT6cN6Z9TUyZ4/1LVioE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:53"]},"IP":{"Case":"Some","Fields":["194.76.227.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ValThor"]},"Identity":{"Case":"Some","Fields":["L5Rz7IOaA2sVQBtD9cBqzBiUYuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b+Qe7iTNtoqEEqHMboIrCBsHaDc85iJMnFEnlD7MoIw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:35"]},"IP":{"Case":"Some","Fields":["152.67.230.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c001:207e:878b:2a1b:d247:f367]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torexit1"]},"Identity":{"Case":"Some","Fields":["L5QxPlbEUxUVFw+jQmkjcfl3tVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v4EM3U7biIFIrYZtyFIZxEST23h1ZlHqFJu3tbaIrYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:59"]},"IP":{"Case":"Some","Fields":["31.133.0.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4713:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex73"]},"Identity":{"Case":"Some","Fields":["L4HaIqZJ67DM0gqXUnIH4uhB9fY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b0TrbZl77HqDSEsNmP3AqNbKJF6PVpdmfTqsrqmCL7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:13"]},"IP":{"Case":"Some","Fields":["199.249.230.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::162]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATLurmyivna"]},"Identity":{"Case":"Some","Fields":["L3HPbis0fbhVx5qoRSXL4OWYcZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3pev4nsv9yw2pzVYrIaCpCYArUsPwElc7HdpDrlEL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:54"]},"IP":{"Case":"Some","Fields":["199.184.215.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["haubach"]},"Identity":{"Case":"Some","Fields":["L04ht2Hnn+wvBDW09gjJEWQNQtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O4j23l0ahQXAqEpb8LzQ6heki0xCp8oGtOOLSW+xXZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:30"]},"IP":{"Case":"Some","Fields":["89.245.194.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["YoloMcSwag"]},"Identity":{"Case":"Some","Fields":["LzOoNMMhbo9BaEtRFKer5o4hazs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcz1a0kkDGBF1eqQc1YX42oiMtcVcjrpv/jMD/kUuOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:27"]},"IP":{"Case":"Some","Fields":["178.78.241.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wut3"]},"Identity":{"Case":"Some","Fields":["LxG0KDF6vUOkIbXG9n93Oog1Tm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AC6B379S2dNfdUfZuqdClreSqZTrVJTTK7sxK0kOwVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:57"]},"IP":{"Case":"Some","Fields":["54.37.137.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1a6e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SanMarino"]},"Identity":{"Case":"Some","Fields":["Lw/LeEA5n7J7d2wpJnFiEdi59GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ebpyIn/w9wKNQqw6qD+bFy6SvM/q6HqvZlhJHuECrOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:26"]},"IP":{"Case":"Some","Fields":["23.88.75.121"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN01b"]},"Identity":{"Case":"Some","Fields":["Lwm9bZotWn1tJsF2Uc6Ozwt7olc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPiZLeIHTwvaUFmuvqeemiJDLvZ/7LvhMOyBPNg9pEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:20"]},"IP":{"Case":"Some","Fields":["217.182.198.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Lvwri8ckz0NcFAZgh5Nr58o8V6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMBvpaWSgFmLoo9BJ3bbvlO4Yr5FBeHXtt2SYOUExwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:13"]},"IP":{"Case":"Some","Fields":["188.68.40.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doughnut"]},"Identity":{"Case":"Some","Fields":["Luf0lyjQP4vA3B1nVYSZKQxfCf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fEnjhskl6yaT5g+Df84pDxUEw5y1rZXpU5PG7pxY5z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:36"]},"IP":{"Case":"Some","Fields":["199.195.248.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:797:4638:253c:c3f1:cc4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maat"]},"Identity":{"Case":"Some","Fields":["LthlStG4wl8+uDFWsH6jW+YTLww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5iXlreMr3iMxH2WWEJr6qnbcu2tFyRgWJTNeiJHDDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:27"]},"IP":{"Case":"Some","Fields":["135.125.147.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:482a:2cfc:bdc:9917:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xaeloBaez8ae"]},"Identity":{"Case":"Some","Fields":["LtZkcoN2/TZ9rAXQp7W5QuDBtN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zd4dTGMgnpUWubA91w9/wLK6KulWkmtEPmZLvAmOwTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:55"]},"IP":{"Case":"Some","Fields":["209.141.54.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN27"]},"Identity":{"Case":"Some","Fields":["LtTSV2aXNxPrjFaikL8H4GuFvxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ph9P6oHgoUZeEI8XY4qHMGTocB0s2gJMH2Al/4GGdOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:31"]},"IP":{"Case":"Some","Fields":["199.249.230.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e650]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["LsNOyotc2xgd7WlI2DIxmaa71ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fyu0v4ZSoGBSR4+aRkmDqoVVQRAGq/No9FF/q2iBQRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:14"]},"IP":{"Case":"Some","Fields":["185.177.206.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alastor"]},"Identity":{"Case":"Some","Fields":["LrPCMBgGlKHoSAAeIPNvdqIocDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dvcCa/Z2aRzj/bAgxCsF7vNEoWvIXsQoZ6g04X92Iw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:53"]},"IP":{"Case":"Some","Fields":["62.210.123.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:30c6:100::dead]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CHRelayOR"]},"Identity":{"Case":"Some","Fields":["LpoQTXAPn43kKMylIUPz9SDkgXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PF47ykFRRss0esR59EX8VSxmSrGB929Y7REc+3IsdzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:12"]},"IP":{"Case":"Some","Fields":["140.238.221.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buster"]},"Identity":{"Case":"Some","Fields":["Lpbv7ZQcN2a6Yq/f/xYyiHXETF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pEEco0nVIwsb82LFEaxmJWxhF0gDm1DmmY1/nztF1KQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:34"]},"IP":{"Case":"Some","Fields":["37.120.191.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:b58e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber43"]},"Identity":{"Case":"Some","Fields":["Ln78+bvjghHckLu58y++9hKsxJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["edui4o2n3edRzUXeaNEM6oZYnh6QFMP2csjHb/NCcik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:29"]},"IP":{"Case":"Some","Fields":["185.220.101.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::22]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carpsecurity"]},"Identity":{"Case":"Some","Fields":["LnidvuD1KCNqEBspTE1wmEcsOQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MejWQKgoRlxJGmgp1regXsxpVD64lVSGdkhJrd4s1gM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:54"]},"IP":{"Case":"Some","Fields":["94.226.36.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torpinkbyte"]},"Identity":{"Case":"Some","Fields":["LnLNr6Eq4VR3lfm6/0AvwWtlPOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6zBGzsA7QVYf58xhqcXF+S3kE1ZsV60o7m0it2pQfE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:48"]},"IP":{"Case":"Some","Fields":["91.220.220.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["LmWimdCsNaRpKUNRAVK9VsT/Bc8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["60nnRLdwVT0zmmUJ1mlSC+xfHLeHyJ3jnH1VP7e6uq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:19"]},"IP":{"Case":"Some","Fields":["121.200.26.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iola"]},"Identity":{"Case":"Some","Fields":["LkW+JV05Q0OXolNLhZGQRnRIh/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8V6l9itp8AFGAqkbVTWUxV0j7fuGSu0d2MVjK8PoF2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:20"]},"IP":{"Case":"Some","Fields":["176.199.7.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:2542:b500:d6d5:a5d6:595f:ea37]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sarkany"]},"Identity":{"Case":"Some","Fields":["LkJ+iwcFhF9xSD/ejgY+xDTLFkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdmpVXA3ut8xq/SshG1Z4e2UrSjls4JAgliZUnpirck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:33"]},"IP":{"Case":"Some","Fields":["84.0.118.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Lj5tsA98+b1159sZl7HdXnI/MHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1/7zNVGA9XINnEb+RpW6I8oIqcStg8aphjOjZCU6RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:25"]},"IP":{"Case":"Some","Fields":["23.128.248.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ferrarizGonzalez"]},"Identity":{"Case":"Some","Fields":["LjzFWtV9An/GS+nIdWPH3YF9WBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/fDeu/wMqLKKELspOCC290EUcSx8zw2tD8vEztSZoBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:05"]},"IP":{"Case":"Some","Fields":["185.154.110.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymIMXMPPNode"]},"Identity":{"Case":"Some","Fields":["LhaD6p2C+q/BaO3I+/tMOnxxuks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cfeb4lmmkcMRAEESEz8EzOY1zVD5STtJJPPyckYb+/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:36"]},"IP":{"Case":"Some","Fields":["185.162.251.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:6a0:8857:fcff:fe0f:24a0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow003"]},"Identity":{"Case":"Some","Fields":["Lf3qXdQVuVWUv7EtWf6EEWf5S18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQvCyq9vTf0y4GEPw3A9IWS7i0jH94uM2xVyCTGfj3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:43"]},"IP":{"Case":"Some","Fields":["185.195.71.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thestudio"]},"Identity":{"Case":"Some","Fields":["LfyiAvE6kPkaggtMMyH8hH4mlIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UWLET4Q3fGjltVz+o+lr23VztSA3Uu5R38Ax6cb6DA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:26"]},"IP":{"Case":"Some","Fields":["91.219.237.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erbridge2"]},"Identity":{"Case":"Some","Fields":["LfWGlMGFJaSJL1FNAQObz0SgVDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kuGRr5XFhvbmm/c2VN8v7+XYyc3lrnj/kN/k0ZzOa2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:43"]},"IP":{"Case":"Some","Fields":["176.31.211.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:3616::74:6f72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deltersvrAnonServ01"]},"Identity":{"Case":"Some","Fields":["LfQtZiQme7m6+9OJuSr/91JTsa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+gSkCxhWjNIerwWe5XBz+MeKAGD2QCXiSVoZQA5Jr+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:41"]},"IP":{"Case":"Some","Fields":["148.251.79.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["LfA9exWNri6vdgeHdUUfF2lQZFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PLW56Y4Q7yZFdQYNbyGKcKlxob2M6f+qWd8LUrJ6qSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:38"]},"IP":{"Case":"Some","Fields":["185.220.101.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10032]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::32]:10032"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra29"]},"Identity":{"Case":"Some","Fields":["Le+AEHcEcjZ+sgicoKUKF7IR54o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6pZQBACDdfznrqUfNy0W0pR1BmP5lHNiFLfs6yeyuxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:57"]},"IP":{"Case":"Some","Fields":["213.164.204.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay"]},"Identity":{"Case":"Some","Fields":["Le1dL+/M4V3Za9WXE6UWMEyb8yM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwHY8qnRLwW5G04hIEzW0+gRoW7mbNEyPSphCVs+vl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:21"]},"IP":{"Case":"Some","Fields":["79.136.43.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jumper987"]},"Identity":{"Case":"Some","Fields":["LeytWR3SJrN4lpTdpvCtyfsNjRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7oLiHioNxdm6HZqWEJ+D51C3p8DagYaAUx0emZN4Dqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:35"]},"IP":{"Case":"Some","Fields":["176.58.106.151"]},"OnionRouterPort":{"Case":"Some","Fields":[42819]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["avarus"]},"Identity":{"Case":"Some","Fields":["LdvBd7SXBxAUUKORD5hB1cfBt/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5vRVOwkZXojJC6drwu3SAj/EY2fL9bhxjOtMd30Jzjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:36"]},"IP":{"Case":"Some","Fields":["45.150.108.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:4::53a9:a532]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SinbadNamornik"]},"Identity":{"Case":"Some","Fields":["LdY5Sx0ypLXxXOdTBAVa+RYXesQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iGJaVXIm4JoBHH5c0bj38xluZj6M5JQpFH9BAz+JUF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:51"]},"IP":{"Case":"Some","Fields":["78.108.108.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a9Exit"]},"Identity":{"Case":"Some","Fields":["LbipRoJtDLT1w6gmRijdDxb2YS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNZTDogqj1lpJy3gJ8cMOEnvmLab2J93gBUKgNCYnDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:16"]},"IP":{"Case":"Some","Fields":["104.244.74.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f63d:1:ca11:911:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rwxrwxrwx"]},"Identity":{"Case":"Some","Fields":["La/mepvhEZJq97c9fao/f65lptk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V+L5qZJph/ZJ+SWHe09k5LYmLCxg1rEOBj3DCDRyjUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:31"]},"IP":{"Case":"Some","Fields":["78.46.120.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["just1small4relay"]},"Identity":{"Case":"Some","Fields":["LazCbx07pk8y7rQYW61paoi6gy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28+vbOI37MHNjCjHHSlArlcx4VhFRatJ+tPM96AHkhc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:25"]},"IP":{"Case":"Some","Fields":["77.21.71.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VoxBox"]},"Identity":{"Case":"Some","Fields":["LZOPGer2YNkCxla15gAvObRcS+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CNOCfouMu4Xm7nyjH1CcF5umicbNdMhiUHTM9tJ7/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:31"]},"IP":{"Case":"Some","Fields":["213.135.244.242"]},"OnionRouterPort":{"Case":"Some","Fields":[24071]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nCT8d6e5bW2v"]},"Identity":{"Case":"Some","Fields":["LYqQf2HK7UgXCWO3a+T7DtM+Xog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q9lTa/69IHUEQCcvkj8AMrhBcn8MCUQHcihOf1f7yC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:03"]},"IP":{"Case":"Some","Fields":["89.133.16.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poisona2"]},"Identity":{"Case":"Some","Fields":["LXm8pSrjdU8pmnGZ4F3o0Dr7WvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DDg341JKrpuUjtZKQR7JX0TOfNCMpl1b6d+2mH4hQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:24"]},"IP":{"Case":"Some","Fields":["87.245.103.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Untamed"]},"Identity":{"Case":"Some","Fields":["LXVcAJUfGrkZYrgLCS+nqGCgYck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CGJbjTyPlg47DXnmx8AblHWu6PflOvrA93FlJEJsuI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:22"]},"IP":{"Case":"Some","Fields":["107.189.30.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f29d::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hiboo"]},"Identity":{"Case":"Some","Fields":["LWyTojNjaNmld4QW/U3d2X/zfUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5flK88J7asGPqNSXFTXos8ByQUxbuEE2vYhM/pZyoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:19"]},"IP":{"Case":"Some","Fields":["5.39.86.203"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:98cb::1]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TM"]},"Identity":{"Case":"Some","Fields":["LWPsJMt8p6z7wUOXUqVKkWGVBn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zxrs7KvkM+iFfU3gOu6pvVMnHGjiK+rzpaUg6Sf1OZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:30"]},"IP":{"Case":"Some","Fields":["115.70.167.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD1"]},"Identity":{"Case":"Some","Fields":["LUpwxntNZjkX55Kk9PNiL/uAv+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["byayNJs/BxiTw7mq6Ew9Xv4r+gCDs7ADmEWJTowuK+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:50"]},"IP":{"Case":"Some","Fields":["185.104.120.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aanetuk"]},"Identity":{"Case":"Some","Fields":["LUfwOfBO7APqvkhMwBd5agq0gkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dve7TyHOEHM2lD1xljad7LOkycU3lIv5RPcB8t7YWag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:05"]},"IP":{"Case":"Some","Fields":["90.155.5.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8b0:1628:a008::aa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["LUdn8seP3ETm+kEVL5BotxfNIz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znTYsvIy+meBlgbh4iZq0mL7HOXOpBS+oYh8BU3fmes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:12"]},"IP":{"Case":"Some","Fields":["172.105.9.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:93ff:fe47:7f1a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyPalEdSnowden"]},"Identity":{"Case":"Some","Fields":["LUGKifedtKjmWLpUn7uXTR0i3Ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ORLFxm7dY+CWmqIpj1yxa7unmymzMHtvkLe15t5f2Ik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:34"]},"IP":{"Case":"Some","Fields":["92.60.36.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:33:6e3:1418:12ff:fe82:4abd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCTorRelay"]},"Identity":{"Case":"Some","Fields":["LT0bYv3ecxBHIEN0nvRJhh6JaAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sid3iK/K8blzxa7WZneDauR2rU8MRZx4IEtlDXGX6pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:00"]},"IP":{"Case":"Some","Fields":["50.72.121.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["slarty"]},"Identity":{"Case":"Some","Fields":["LSqFNfoNk+gWTxNmkUiTaEGHEFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iFN/4xtMn5UkwlPp3c0BcKYW0MGywRaI9sm7jdnlZ70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:39"]},"IP":{"Case":"Some","Fields":["188.166.33.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1535:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra87"]},"Identity":{"Case":"Some","Fields":["LQvp92guCREaQ0H5S1WjUA4BiLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0erYo69FYGWxMg9Fzzi6UmHEN2Tcu0aPAYGvWLIMYmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:19"]},"IP":{"Case":"Some","Fields":["193.218.118.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::51]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Computer0111"]},"Identity":{"Case":"Some","Fields":["LP/erqmX50Gn6FDNyfHpgV3DZ1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HSrd8iibmPKbIROI4UGpWgL+gn6iLCEN2BuRYUiPYv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:07"]},"IP":{"Case":"Some","Fields":["135.148.54.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lodrich"]},"Identity":{"Case":"Some","Fields":["LO/1BuONxhggL70i4P4gsBHTIEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qjFXkEN5yOC87iCphjRRUdkCubtgfusqSHKrRK25r8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:36"]},"IP":{"Case":"Some","Fields":["85.195.253.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:8235:0:48b6:8fff:feb0:bb1e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ridin"]},"Identity":{"Case":"Some","Fields":["LOm+H8iLnQ+gPzh8nk8AC11LKuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfA1eL8Su2oxxfanEqo+EmdKFWcf/6wYNN8+sXaGeDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:50"]},"IP":{"Case":"Some","Fields":["51.75.129.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel24"]},"Identity":{"Case":"Some","Fields":["LOlqih2gMmZMkPV0r/vs4Ypujfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d5GQI+e0PpI0Aa7ADByztSus42ApQ3o0hUOol36Yd2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:11"]},"IP":{"Case":"Some","Fields":["89.163.128.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::babe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor1"]},"Identity":{"Case":"Some","Fields":["LOfXLQIV9NrjN0qLg8y5lPT+c9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IKFSJYisnQOEUwRLjp/PhgrXtrNP1KQn54pyP1Go3E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:04"]},"IP":{"Case":"Some","Fields":["31.133.0.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dairy"]},"Identity":{"Case":"Some","Fields":["LOLe6DC5VO2jprtX6nQg4PXuPBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kjuyerX0/gxnyPrBsDknpJdYuASVhwxFBHh0SNkMLjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:20"]},"IP":{"Case":"Some","Fields":["207.180.230.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2021:7703::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onYourOwn"]},"Identity":{"Case":"Some","Fields":["LNVHTjPRJikVa5L71h+qsi0HsPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IpcnIvMPezGUQR2Asa3qDkBfMCHFyO+Z3cKU+YyMKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:36"]},"IP":{"Case":"Some","Fields":["85.241.106.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cadory"]},"Identity":{"Case":"Some","Fields":["LNQ7LjxH7cYvzfhmPtXbUHv01VE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZwSP/j33zj/GHZhdLpGumXvxSnq8h80h9Fa2mH8wEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:52"]},"IP":{"Case":"Some","Fields":["178.200.169.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19004]},"DirectoryPort":{"Case":"Some","Fields":[4447]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange016it"]},"Identity":{"Case":"Some","Fields":["LNMXxiSAO3fq0yyWOCiEsMrU2z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9DKQh3FxWL42ohR28MSor2SzDgoGW3baCD5EOhyy1vY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:43"]},"IP":{"Case":"Some","Fields":["91.201.65.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=760"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["LK/5HQEbuHZgucEsQNOa2Mb5sP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H4dV30ejbDVKBJKnuLllNKMxB0kt/l7L9hOJvKW6I+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:04"]},"IP":{"Case":"Some","Fields":["195.60.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LJHT4FofxcvHIHVeSDbAi1xuBOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSH6KY19UcmCbMKD5ukOBzX0PaiZ6JzgH4cyuwSh4D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:33"]},"IP":{"Case":"Some","Fields":["188.68.34.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LH++Yap/PGBpEVXmADCwMb/MX+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HT/KwDJr7clz9s4OX5iEOmB+vIwU/qx52Q+REbKXcVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:56"]},"IP":{"Case":"Some","Fields":["185.244.192.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gondor"]},"Identity":{"Case":"Some","Fields":["LHYrZFXNMvjV6NgBH2ufny+KaG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PkMopPXD7hgwqmzAOJMksLpKmme3L7Ivy2DGHSR2g5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:40"]},"IP":{"Case":"Some","Fields":["149.34.0.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torstejaude"]},"Identity":{"Case":"Some","Fields":["LGcACJPhhG1D/ABTixk5TNgf8mw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5Pz7iWq6VQnxgtQMekTUoZFAJzTms/oYTFO+dg8YDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:57"]},"IP":{"Case":"Some","Fields":["178.63.116.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:4281::3:fee6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unzane"]},"Identity":{"Case":"Some","Fields":["LE4VzUDuPS1vBi8Erf6bhcjDxSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9afpFQHO368AAM3OJZumVRHCQ5/SClWHxg1Y7nN76M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:08"]},"IP":{"Case":"Some","Fields":["184.105.220.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:b480:fff0:6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv12"]},"Identity":{"Case":"Some","Fields":["LE111mmf0SW1GJ7Qhqc4P2fXErY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0mmUqxMKE10iz50Xbx5kmtGvUWiltXXJHek6IGcU5fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:26"]},"IP":{"Case":"Some","Fields":["162.248.163.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LCbLrKs7gxQqVGN8ow/xMMm9Mx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYLc5syukdtNFys1RCrHJocw4S8IXIFzIcwn36nG9eQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:48"]},"IP":{"Case":"Some","Fields":["37.120.187.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["LBtTVdFzOTGLK20S6oXfPaiH7II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuJ7ewUOolCvxC2GOB5J0rRIyk1vsPnWu3rqG7Tzwwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:44"]},"IP":{"Case":"Some","Fields":["23.128.248.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["razor1"]},"Identity":{"Case":"Some","Fields":["LBl6WR42pX8zTo9+lORm2lItGXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkbuie9OzPSo2/uKXgvfrQSw7ciVeVvzR6Za/DmqEfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:14"]},"IP":{"Case":"Some","Fields":["189.164.166.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2806:10a6:8:f87a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["history"]},"Identity":{"Case":"Some","Fields":["LBOlTj6KavsY4N5YkOWwiq9bDzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f3P42v3umO0awKpWSBFWpy+7+MNg4J/Cva4OLO8n16k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:09"]},"IP":{"Case":"Some","Fields":["138.201.123.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluttershhy"]},"Identity":{"Case":"Some","Fields":["LAaIf1vUUdN7fh40uUHu66QsQnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6QYmXJOozZeufabOgXW9eY257W7C5TfAUjgW3iUuyQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:22"]},"IP":{"Case":"Some","Fields":["179.43.182.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["LAaBoVNz1flVd75cum4yNX1mTE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8Zpf9ND86e2CFf/Gvi6lORa3GSZTe0D1csHwdb/tec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:05"]},"IP":{"Case":"Some","Fields":["95.214.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lina"]},"Identity":{"Case":"Some","Fields":["LAZHYKpmV+LFdd2JfCWIsXCj/xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATkzhUubAWfagMK8FYLQarwCtw0Ph5kMRIIn4jX0FVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:07"]},"IP":{"Case":"Some","Fields":["158.69.187.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Diesel"]},"Identity":{"Case":"Some","Fields":["K+dTmXh7Zk3dGqis8ExEEpgrzZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CS8XJ8oP9bgVx1xTLM5Px8pZU0z5vzeZxbLi9/A24g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:56"]},"IP":{"Case":"Some","Fields":["23.111.143.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnivUtah0"]},"Identity":{"Case":"Some","Fields":["K+WX0KIlWk6PRMv7Emt6ehKpc3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Agw0CHvxyPb9/BctCq1zRzzy/utySVIs4Aap+3Jza8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:26"]},"IP":{"Case":"Some","Fields":["155.98.5.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anonymous"]},"Identity":{"Case":"Some","Fields":["K9QNYbMo8/yunY03AyziaV0FK8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDDcvztUad3y2VojopVITV7FE7p6YVyf4ZqdDh2GHHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:39"]},"IP":{"Case":"Some","Fields":["123.194.142.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0001"]},"Identity":{"Case":"Some","Fields":["K9GTbgtNW7YVz5mwz/dOrxlCaIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5GxLYViGLBHizUo9ZUsZYJmEAlX9LfTQ5KZRMm1KtIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:01"]},"IP":{"Case":"Some","Fields":["91.92.109.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HailEd"]},"Identity":{"Case":"Some","Fields":["K8uYfITSLMFYNuLQoASS4KbQUAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qu1r6kNePxIU/SmFUQzyUFZZEpQAKByJwJI0Y0c1qQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:08"]},"IP":{"Case":"Some","Fields":["173.212.225.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waeswynn"]},"Identity":{"Case":"Some","Fields":["K8oKi1dZ29dkv5+l0bOu6ddNK2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iTRrDloxgBCE6nNvRp/pBAHqJPMln9mhL01GKDXF7Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:54"]},"IP":{"Case":"Some","Fields":["94.23.172.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zapotec"]},"Identity":{"Case":"Some","Fields":["K8Mbc+AAC2aYH3c00rHywWwn0Ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xrJRe0DpvoLXO27e0jmTg/VbmQTA2a8Wi8eR0Ha2rA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:09"]},"IP":{"Case":"Some","Fields":["65.109.16.131"]},"OnionRouterPort":{"Case":"Some","Fields":[8888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carpetor"]},"Identity":{"Case":"Some","Fields":["K7m+J7BhUvXnV1u54wUKM9iaC2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DHiLHUkCJO8FTkI/FOy6oi5Rb+Rq4ShasFGm3kDt238"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:06"]},"IP":{"Case":"Some","Fields":["79.199.152.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finTor"]},"Identity":{"Case":"Some","Fields":["K68JLoZnwAyj2WhsdtjsPMa8fFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["up6VsOYDGb0xYkM18UlS/8b+l0Cy9JRZ22RqJCidzQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:17"]},"IP":{"Case":"Some","Fields":["95.217.15.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:607c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["storm"]},"Identity":{"Case":"Some","Fields":["K6LI6WslkOEHKuzivbXEiSG/hRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a2zRGmt8Gg9vbikIvDPmHrg+mDZyCxqmWJSUsr3XU1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:38:19"]},"IP":{"Case":"Some","Fields":["138.201.250.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waschbaer"]},"Identity":{"Case":"Some","Fields":["K5cwK+VcqPMUFYBcHNKkebLdFIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lBtY+Xj3TMMHQt4COvb2QVHxwr83k2LWMvrcMe1O8oM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:10"]},"IP":{"Case":"Some","Fields":["109.70.100.74"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::74]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LaserSystem"]},"Identity":{"Case":"Some","Fields":["K5T++WjJlJ/S8Q6xVJOElLL1BSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FSDHguVzUDBngC9wWKDOYINoXu6d5iVNubRSuoQCi30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:33"]},"IP":{"Case":"Some","Fields":["134.249.231.207"]},"OnionRouterPort":{"Case":"Some","Fields":[666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["81e5b3091a636b"]},"Identity":{"Case":"Some","Fields":["K45wFMT03M4Axz6FJ4dbwU46noU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ldleKnihhqjnz852MPhdQFZ9aYb7uRI8WiMOrjpTvXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:53"]},"IP":{"Case":"Some","Fields":["65.108.248.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:b11c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen3"]},"Identity":{"Case":"Some","Fields":["K45kKBH/b2EGAPJwOrWeQvuaAMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SZO5uB+tR6yR8OpIczWvG4nJB0HdwWi4XViUXFS4OHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:49"]},"IP":{"Case":"Some","Fields":["37.138.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tauro"]},"Identity":{"Case":"Some","Fields":["K4iq0uYB5W5eroK+w4qrDKbvIoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R9laG9qQUaiDAXZquqV+zJ+tBJMUJ+Slg3x1JreX+VA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:18"]},"IP":{"Case":"Some","Fields":["189.84.21.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1139"]},"Identity":{"Case":"Some","Fields":["K4EKqBoDbgH/x0ppMdu1gxabt/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZ6w5eGA+x7ntwoHSeq5WvZUB3j/iXI3H6OPxgSzCkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:36"]},"IP":{"Case":"Some","Fields":["185.220.101.139"]},"OnionRouterPort":{"Case":"Some","Fields":[11139]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::139]:11139"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VmAdmin007"]},"Identity":{"Case":"Some","Fields":["K3/R/Yy0JIgNSvBRT/NBMaB0Cc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eJKIONGjH6bQyIbMduAov7NjqACPCJSi0LQtGCYn3eU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:42"]},"IP":{"Case":"Some","Fields":["176.9.23.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:210c:1::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CurryLamb"]},"Identity":{"Case":"Some","Fields":["K2dANQlu4Gp8UqeGjBfascycmDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oI7Kb1PjEqHHqfGb2aFJ3WAwLF/J3znTn6xX9p9BilM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:21"]},"IP":{"Case":"Some","Fields":["116.49.56.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:c800:913c:1522:a2d3:c1ff:fe29:3e87]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kulsortalbino"]},"Identity":{"Case":"Some","Fields":["K1HAAjrRcirFaacGKbFkpz/nx58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZGd+IHeHG4KimnE3/S2G9N9yIg2MrPpGGuf92EFLfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:27"]},"IP":{"Case":"Some","Fields":["139.162.143.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe1f:2b38]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["405test1"]},"Identity":{"Case":"Some","Fields":["K0IJRBlTtM7780fQ9Lycw0M0zQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BzOes0QB7pPGokEwu6FI1TFttde9408rUPseI0oMBhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:50"]},"IP":{"Case":"Some","Fields":["68.12.219.144"]},"OnionRouterPort":{"Case":"Some","Fields":[466]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["Kzqsl7Jp1Z5tZCyL+xdO3RN0HDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["krQP1Ad/kIIwVhHseZXotLgXzovlAVXwadqwiSRhsfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:11"]},"IP":{"Case":"Some","Fields":["199.195.253.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:1362::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stormpaw"]},"Identity":{"Case":"Some","Fields":["KzcoPKPBQLNautRiioc6hg3f8FA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAWoNFLJa2GEoyh2iminPiTpX7FKUHprzZtJcu314M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:37"]},"IP":{"Case":"Some","Fields":["185.7.33.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes4"]},"Identity":{"Case":"Some","Fields":["KzQJntK8WYxHRclshz/XOkRWRr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EaFDqooY2RVbu41QlO+xjSGXEfpdXAKIxyuY0F9mGAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:29"]},"IP":{"Case":"Some","Fields":["185.82.219.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MrTerence"]},"Identity":{"Case":"Some","Fields":["KzH7gn1M6nNLn3jBYTfP1viuu3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CjbAiN5+++WcJDPc08GgVevOO01rK0jANXYqSWOY7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:02"]},"IP":{"Case":"Some","Fields":["185.146.232.234"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KykL8WQOsKintjl7tpyCSJtduOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z+ypQuF20Ki+qROZSyE3lOi8b7r7cB32aUvMjvnVkWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:22"]},"IP":{"Case":"Some","Fields":["144.172.73.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noWarPlz"]},"Identity":{"Case":"Some","Fields":["Kx/yHjC6dfQ/aW4GNEicgGQI4/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M8RbXY2DtfNiY2CIz8inpPh2fQyTu9UQyJ9KXgHQgQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:31"]},"IP":{"Case":"Some","Fields":["62.101.228.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["calu"]},"Identity":{"Case":"Some","Fields":["Kv/7RNk7LwZqaFP6GZ+3vq88U9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JEY5zaLfW/c75yuDtULLXh9GzPQxBwPGXnZT7BO1z98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:33"]},"IP":{"Case":"Some","Fields":["92.243.6.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:fefe:3bc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyNodePDX"]},"Identity":{"Case":"Some","Fields":["KuvWCIxeRyoDO5Ht3AuuFlGbLjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTs/TUn442Jk2Y4Llw6oiQBl/ko8RAta85sVCGmBbAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:42"]},"IP":{"Case":"Some","Fields":["51.81.182.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:200:1bca::b00b:beab]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KtgvOWTTJbP+L/dOmA+wBjdO8ZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["atXgVqZfYxNJOLv79vgDg5p8YGalR1q2UvHBFvKe6tE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:25"]},"IP":{"Case":"Some","Fields":["91.134.147.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["misInfoCentral"]},"Identity":{"Case":"Some","Fields":["KtVVpkCM1Xfx1zlXYOc//ps/vgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lvjMah4rbe2K4YbHOY08LYgUtngGeG773kxqZ98P/e4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:10"]},"IP":{"Case":"Some","Fields":["66.187.5.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Brandjoch"]},"Identity":{"Case":"Some","Fields":["Ks7A60+ScpuMoiyGhUWGa5UpQxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T/cbbNRmjdhJEgoIqLc6t4Caept69cUaHHMMflP23WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:32"]},"IP":{"Case":"Some","Fields":["89.34.27.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNuc123"]},"Identity":{"Case":"Some","Fields":["Ks6O2FwpcW6tc1IIN8qPTZ7UvxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vAMKX5nvqRGdb8AkVD6fD+kuGQ+WGoITnQxILZz4zkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:44"]},"IP":{"Case":"Some","Fields":["85.230.41.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JustAnotherRelay4U"]},"Identity":{"Case":"Some","Fields":["KsgCqun68sn2Pa+cyc1DhcCpUkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KrXfKYX/eIytg4ToicM7xTUKe7EleVOTk13GwrNGHNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:41"]},"IP":{"Case":"Some","Fields":["93.239.72.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anoncicada"]},"Identity":{"Case":"Some","Fields":["Kr6KCdNAO+XPiW936r4jdiACp2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ryvrGOp80k6AA0Ba4wkFo0tPN8tfNHaphII+UBahrTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:39"]},"IP":{"Case":"Some","Fields":["163.172.45.4"]},"OnionRouterPort":{"Case":"Some","Fields":[3302]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cbc511"]},"Identity":{"Case":"Some","Fields":["KrknGEztGlG/bkimfxhqVnLZNQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q9USqYMhImTKLW/D9gyn4m3NwOa0+wCK5YRFqYtSrUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:44"]},"IP":{"Case":"Some","Fields":["139.99.237.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::7d5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gigatux"]},"Identity":{"Case":"Some","Fields":["KrC5HM8SZk1dlQg6anuHGRjIz5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcn30J2xoS9/mEnf2x1N4DYZRPhGns6phOwvriCf38k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:00"]},"IP":{"Case":"Some","Fields":["185.113.128.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LoschxzAngerelays"]},"Identity":{"Case":"Some","Fields":["KqrENPL61dsww9s36PLCKjGUu6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RsHwxTBut6BIMOe9RQ/ZtQ3Nz3fUGTaGwBnOzoIIdgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:12"]},"IP":{"Case":"Some","Fields":["45.76.168.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:826:5400:4ff:fe23:beae]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["setsun"]},"Identity":{"Case":"Some","Fields":["KqX1mPmhgS8BzZnjtZu4c2LtdDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xu0SrEmG67tvfhXay9y0cOKCQy1AJxDTlozgjiWK8Dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:02"]},"IP":{"Case":"Some","Fields":["144.76.200.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt81678"]},"Identity":{"Case":"Some","Fields":["KqB0mHmqI1fVgIRVtoScpUC7hYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+XZgQZ4aSz71qkfqpLHFGCGrsaLZnQnrVkg90yqLw4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:40"]},"IP":{"Case":"Some","Fields":["185.245.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnR10L2"]},"Identity":{"Case":"Some","Fields":["KodgnaG0j2jjDQmTg4Em0BWISrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5XWNAt6uSxbHF52yYjQAzuq5Db20KQlQIIrR4LIVMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:38"]},"IP":{"Case":"Some","Fields":["178.254.20.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract02"]},"Identity":{"Case":"Some","Fields":["KoLf9763tCadTW6uOd7Db5ghQmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCQbYJKRIN/umBtP/FfoMDRU4vBt1m2066VP4/DstKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:11"]},"IP":{"Case":"Some","Fields":["84.238.10.142"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clicker1"]},"Identity":{"Case":"Some","Fields":["Km2eri+zGUhsXjv1zA+D8Gtzzg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+nvJOXGvjv5qQIZjDYbolGRrAcvaizsymNpWnhIW524"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:36"]},"IP":{"Case":"Some","Fields":["94.16.116.137"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:91:2549:9:f370:a1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HDRelay"]},"Identity":{"Case":"Some","Fields":["Kl7OvtrPDy3KV2gwVshrtw0abs4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6aSyP3mQJp9tuXQNlF+tCsmiPROiCMI1OJ8cayNK3M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:16"]},"IP":{"Case":"Some","Fields":["161.97.168.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PowerPenguin"]},"Identity":{"Case":"Some","Fields":["Kl30oP3VKGjiXywzvCMq/9Gbi/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OjEWlL27otT4D5QyHjB/54MgmdhBiMe3m1IPXFN+/zM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:56"]},"IP":{"Case":"Some","Fields":["93.56.117.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6ixty9ine"]},"Identity":{"Case":"Some","Fields":["Klol8YSpyLLgqRmOAHIVbznP0Cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dRK0n8Op6wffdj3dEVlDHGhfKGGW1H7HxuR/X+3Fr9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:34"]},"IP":{"Case":"Some","Fields":["69.197.147.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spsnowflake"]},"Identity":{"Case":"Some","Fields":["Kj7FByiI4vL04oF9Pz3qqGoNb3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wbgPnX5ckZ5q4dhkJJkFy1JJX2tmqRdIot0kiMjkLaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:50"]},"IP":{"Case":"Some","Fields":["23.82.136.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Angband"]},"Identity":{"Case":"Some","Fields":["KjYAWoEci0IPOA1nxKnWMGVfCQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+T4J+QpetW07tE7WQ29uGsFl+q68ahTGvoI7mV6AQuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:19"]},"IP":{"Case":"Some","Fields":["178.17.171.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:138::94d2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["askatasuna64"]},"Identity":{"Case":"Some","Fields":["KiTgt/fWS4CNcPvpLmQcnW/Zmz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L2AlCENvuMsywuGuj97QAUeKFxBVIAIRFQoJ9RzFXuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:02"]},"IP":{"Case":"Some","Fields":["163.172.41.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornode789"]},"Identity":{"Case":"Some","Fields":["KiQ2z94kCcZQJ2h3XAv91qOogDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T39ogf4k4qEoOXOPPIu4SDmqt/QnXUG9QeBesEeal4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:54"]},"IP":{"Case":"Some","Fields":["5.255.104.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DefendRojava"]},"Identity":{"Case":"Some","Fields":["KiO2rCVGkc1S+Y0mVnJwiJhhvB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KI0W9Hfe6NcyF3a3k+7gg77sFCL7ydZgRKiS7EsvJ+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:28:24"]},"IP":{"Case":"Some","Fields":["217.160.192.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HassoBarks"]},"Identity":{"Case":"Some","Fields":["Kg+tPKehkMQ9jteJZye9Qm6MLvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZOrJuBLde+ZjHdeRU/BPLp6XMkI7cR8VL4fXFnWdcWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:39"]},"IP":{"Case":"Some","Fields":["217.160.13.173"]},"OnionRouterPort":{"Case":"Some","Fields":[6574]},"DirectoryPort":{"Case":"Some","Fields":[6547]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["estrade"]},"Identity":{"Case":"Some","Fields":["KgGvw6uKJiVdxyUofACdvm8v9bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zGucxuYWhHI/fmpypiydoQNvdlfEcpTndIJkXvpx6k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:30"]},"IP":{"Case":"Some","Fields":["101.55.125.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Malkoun"]},"Identity":{"Case":"Some","Fields":["KgFww9YVE977YAD/Esp8moN8hOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GL8w1ashUpj6bthZhsV03ubSyIBBd2oOdkJ7g6EMHVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:33"]},"IP":{"Case":"Some","Fields":["69.4.212.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH115"]},"Identity":{"Case":"Some","Fields":["KeiwXKIwtX+iHMB2h7jaIj7if2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GFZxRZR4ZjjHLHnGHjNZQbNE2RatLK8Z5D7rrxWtrMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:59"]},"IP":{"Case":"Some","Fields":["192.42.116.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:215]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LinaTor1"]},"Identity":{"Case":"Some","Fields":["Kdq/tXJOu13b/ihGNQsGk3LME7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbVQc1bYO0hgo3cUjmfDOFnPfoNg7Nj468Lm9Jj4JRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:21"]},"IP":{"Case":"Some","Fields":["195.15.241.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::338]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gayming02"]},"Identity":{"Case":"Some","Fields":["KdJ3CXzv2P6l9QNBz5HVDyFABCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TaIqbt/qsThxxqfPbokGwsl9NkuubOZEPHOE6VwGqW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:10"]},"IP":{"Case":"Some","Fields":["128.127.66.64"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp8"]},"Identity":{"Case":"Some","Fields":["KdJFpoMYOcvRLPYba9asTwRhv60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLpJFF3mPh1/wFnPxQVb4iR0Kpr0A4TlQQhAvjgJyAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:38"]},"IP":{"Case":"Some","Fields":["185.220.103.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harksheide"]},"Identity":{"Case":"Some","Fields":["KcilIDXGjtNLTXZfv3S5dp5oq48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6leWjq0aw/1cs0u5UhqcQJmwAsw62n2go16AAeVqQHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:37"]},"IP":{"Case":"Some","Fields":["84.46.71.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2028:10f5:71::251]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carlos1001"]},"Identity":{"Case":"Some","Fields":["KZzF16WOW5K2ncMzso2SbNexV9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XjIbKUXNfMToIhd/3oKIUEZb8aSalb1WMT6/t3iqppQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:51"]},"IP":{"Case":"Some","Fields":["15.204.174.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KZiVXIClxVdalgICr84NffYz9u8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/KpVtQbhUB9uZcdVf9do857rt2hqsLurC+CQE6z3yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:19"]},"IP":{"Case":"Some","Fields":["31.18.228.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:810d:b63f:f0d4:221a:6ff:fed4:276a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eternipolis"]},"Identity":{"Case":"Some","Fields":["KZDxvdYptj8cFeaHUOR9sFGcIM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qf4iIwDUFn8PIQ+OXhPcLfD9tjCE2LUsbFXcC6vzeqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:46"]},"IP":{"Case":"Some","Fields":["146.19.247.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marsmellow2"]},"Identity":{"Case":"Some","Fields":["KXXswZY1edXJQT2CsQZym7UteOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XfCeZpFmXgC8qpNdEKUXSJV/Q7H/fB5hOKabW6YSd/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:50"]},"IP":{"Case":"Some","Fields":["93.119.15.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:bb01:994:5054:ff:fef0:e955]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueDucks"]},"Identity":{"Case":"Some","Fields":["KW3WjJAXv3/HzsmstDpvqpQkCP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vR+8iCDWGJmUhke/KMLeM3iWpV3LhrywabX/htW43Rk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:12"]},"IP":{"Case":"Some","Fields":["51.81.32.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::4a4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soltor0"]},"Identity":{"Case":"Some","Fields":["KWsheP10KrNasgya3wTV39PUB+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T1tyOS02MEaZ90jsD1etiQZL85mQMhB2W7tUkt0qtko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:13"]},"IP":{"Case":"Some","Fields":["206.55.74.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emcareWetenschappen"]},"Identity":{"Case":"Some","Fields":["KWjx9RFeYrwBr3z8uUEn9TclE9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/uRLp/qgqzKv8ekALLYkNHqiPLQFCt1tScQj6PDg6W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:27"]},"IP":{"Case":"Some","Fields":["92.118.63.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:3::6c0c:d409]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iiyatsu"]},"Identity":{"Case":"Some","Fields":["KV8Fq1HLftR6xtbmaQuBiDrR9+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ITT7ZKZYNQ3ov+EqhIoP6x9hccFkxNUJQHdTdk6GZ8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:00"]},"IP":{"Case":"Some","Fields":["165.232.130.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::295:9000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["treebark"]},"Identity":{"Case":"Some","Fields":["KUgRowVTDdgGMcKuD0h1OoNmmKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Rj1DBASXajaZrwgh48lt9VQX5Tu++jtqg5snehchoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:52"]},"IP":{"Case":"Some","Fields":["208.113.128.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f298:5:101d:f816:3eff:fe81:4fa0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["timequake"]},"Identity":{"Case":"Some","Fields":["KUbBVYCUltQ6PtkdZJp6uQBM+Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ewd9oeDoHdwbD2Nm0zuGqMqmVHsHS7P2zd8UtK341f0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:09"]},"IP":{"Case":"Some","Fields":["85.212.47.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KUaz9uaTDgdc1T1bEziy5AN1nE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TIIFGeLuVxIYbcm40sTvSRVnQAIQPoMcp/ld17+npcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:33"]},"IP":{"Case":"Some","Fields":["91.223.3.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chimera"]},"Identity":{"Case":"Some","Fields":["KUYVnPnY6uuMSif2pUsBpFne4WQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+WT7Lzg37KDknLc9VYx5iwXuSZFGnKov5OAkLrI9wzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:07"]},"IP":{"Case":"Some","Fields":["149.56.22.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:61:785::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["KUOe6cv6GNViIVf4Rio2t8RXvHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzJLK/jWnSgaYaX2oF1xuTfGrCdwGhP+zs9/aXWgP5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:59"]},"IP":{"Case":"Some","Fields":["185.220.101.201"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::201]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0129"]},"Identity":{"Case":"Some","Fields":["KT8UndGXFJLjF3mqEsznxUW/UIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WgJWIDTpFcyW9NKH81zDKJcsZxm4v/bmd3qhgjEnmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:52"]},"IP":{"Case":"Some","Fields":["185.220.101.129"]},"OnionRouterPort":{"Case":"Some","Fields":[10129]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::129]:10129"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorroneAlCioccolato"]},"Identity":{"Case":"Some","Fields":["KTLBkoHxHSvRoldCiixw1tObl8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iiOJMMJWgYxRbc8YZp1g1mOPAC/GmX42iJDVEmIqng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:18"]},"IP":{"Case":"Some","Fields":["93.67.182.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DETL0002"]},"Identity":{"Case":"Some","Fields":["KTJ707BS9y3a+1U6nYsTx2wpQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvZXk1wzVSA932adJGaEK9ngk+/4LOotVkGfhFNNiN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:16"]},"IP":{"Case":"Some","Fields":["89.247.201.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NextTekk"]},"Identity":{"Case":"Some","Fields":["KS4pn7T2kmFBDfY0iO/9G7i0WBU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4eRCyGzXNWUbTvyOJV5nwh4wDwPIxC9szHhFBTjGS08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:37"]},"IP":{"Case":"Some","Fields":["178.17.170.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:bb::35c6]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KSRcQohEgAKb5w9UYWi5dMOXasU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSeCaQFuv29m3ppbM4eOQ7kMQKHP/aWxOm0yrHa7q3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:41"]},"IP":{"Case":"Some","Fields":["95.214.54.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BepisAyo"]},"Identity":{"Case":"Some","Fields":["KRahJ1RF3W0Q4HohHmK0YjhwlX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kj8b8pzER3bJtieyuwtl3gUUAaOR/T8iIqWcKPKcpCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:30"]},"IP":{"Case":"Some","Fields":["23.137.249.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:7263::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KP3MI36DxO+DN2M225YNEdSfp1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+IKflQl9ShcwL/8A+0kghQQFetps6KwfCkb+UUSEoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:33"]},"IP":{"Case":"Some","Fields":["109.92.182.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tethys"]},"Identity":{"Case":"Some","Fields":["KPjGlis5eNLiC2ksHkiL5r+5Emw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EYbtM1TWDGVz2Zg95MjYaYOKIS4VVpRflhVY2pHC4iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:51:23"]},"IP":{"Case":"Some","Fields":["95.217.135.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:38e7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KPAYSMlA1D5fA+7RCBrEfjkI4k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MeJocbHIhITWvu7DvV/heTWMvVNfTquoUHJBN1JiSdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:07"]},"IP":{"Case":"Some","Fields":["24.180.150.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelevationSpace"]},"Identity":{"Case":"Some","Fields":["KOx4KkPN2q7U9n4DroQA5BaUh2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YyynvFzOOE8qZh4hBHpKsDwtaV47QjkK60lAv6yABic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:07"]},"IP":{"Case":"Some","Fields":["93.104.164.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["KOQnw+f+t2xYkB3PFWXqRFieQ3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d5/zIPO3vLNLrhgiuOq6L7ZoQ6Y144hQzBBwS89OZEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:53"]},"IP":{"Case":"Some","Fields":["5.45.98.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebest2"]},"Identity":{"Case":"Some","Fields":["KNL7L1IF/LJKSiwztcvlO+jJpY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h+ufUBju1FJekiz0Qm6VgDrNU+rKjNqjRIR6QB02YfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:44"]},"IP":{"Case":"Some","Fields":["45.58.154.220"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dvbhorst"]},"Identity":{"Case":"Some","Fields":["KNILmQ5I/KIIV9vfEpl8MjwSUSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TvW6bSCDYQyM5Wvt8CJl9pxyMxy3Jn8ZOYmiURLrGGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:52"]},"IP":{"Case":"Some","Fields":["78.46.202.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:162b::1]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ayb"]},"Identity":{"Case":"Some","Fields":["KMUs27eNpGEk2mLsHWeWaJ5xkhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CASqPnmKToRVOKMn90lR72JneYcTaEBdNTTeGHRWk2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:45"]},"IP":{"Case":"Some","Fields":["88.198.70.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9091]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:4109::ac45]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uwu"]},"Identity":{"Case":"Some","Fields":["KMIfukgK6vkFckDKJ98KG4r/imU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhtICPCfsu1V3O2rV1AuEXgh4SCOqIhfqwO6gnkwkuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:53"]},"IP":{"Case":"Some","Fields":["181.166.217.250"]},"OnionRouterPort":{"Case":"Some","Fields":[7001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer82"]},"Identity":{"Case":"Some","Fields":["KJsIUsBkrWTpV/lWlg4hXkdS4hM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WHALxshXp/aYOejPfWLe+t8T2wbZpYMHbcgbwhIjH/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:02"]},"IP":{"Case":"Some","Fields":["95.214.54.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8182]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["albescitis"]},"Identity":{"Case":"Some","Fields":["KJb+O8n9aQbWu3U1F3caAdNYhkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["efynXcCSSiyrtLypw/P9OtzCSuZ8UaeuVCI9zJqsE1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:04"]},"IP":{"Case":"Some","Fields":["103.214.7.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8300:2c87:1a85:3fb4:1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["MysteryRangers"]},"Identity":{"Case":"Some","Fields":["KJT9g5fH6AhZNAYItnLJSkO8uiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SVxl44plUzCLClRsbW3ONIa+/IOX+YNRiuLB/Rmtnj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:14"]},"IP":{"Case":"Some","Fields":["178.62.220.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["intothetylerzone"]},"Identity":{"Case":"Some","Fields":["KJIHNgiYWXfe0z+YqfonqcR8i2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T144PxaG9yxm/cg9rrT9thiACkqLSPvaTqMw1FfDODU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:13"]},"IP":{"Case":"Some","Fields":["198.58.107.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fe73:f9ba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["investigator"]},"Identity":{"Case":"Some","Fields":["KIwQD/plaTjCPzIgfK8NqTLs0kc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZYEoHYNID6jvC7VeL0L0VWC/W3tBtVC+eyxG39/xo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:19"]},"IP":{"Case":"Some","Fields":["138.201.19.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nognu"]},"Identity":{"Case":"Some","Fields":["KInXeDZ7++LVlOlVJOP7kItJqgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tPlP06B1xmIgybcY0tIvX75wRtU8jrW8wy2HZIHBfLY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:46"]},"IP":{"Case":"Some","Fields":["89.58.40.94"]},"OnionRouterPort":{"Case":"Some","Fields":[45531]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:bc7::1]:45531"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Makgeolli"]},"Identity":{"Case":"Some","Fields":["KIJbWmgmsNrV+rhORXRJuyZ5onw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/3ppvYWeqOJwqchHRRLUQteOkAlVJsNRgU5npNFQ1sM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:01"]},"IP":{"Case":"Some","Fields":["172.106.167.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MonteliberoRelay"]},"Identity":{"Case":"Some","Fields":["KHs9tyQvqM5Furbc73Shk0pS3uE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYDuzv+biToE4eh5eo2lQaZA6iqoze6EUcjZjX4WAlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:29"]},"IP":{"Case":"Some","Fields":["158.58.231.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayVongTorHer"]},"Identity":{"Case":"Some","Fields":["KG9MF7QZC+Z+3+XZKsKXjA+DHqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfV0Kndh5NLqxn9nU/XGJp6sjblD3fWgsF2nflgWA68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:24"]},"IP":{"Case":"Some","Fields":["78.47.229.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2b46::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeavensDoor"]},"Identity":{"Case":"Some","Fields":["KGOmZcdgcaSB8tD0deAxx+Ipgyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LbxxDPOyVCnIcVM5lVgkftg0VyyU8aQ9KM0jsahZ3dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:13"]},"IP":{"Case":"Some","Fields":["24.152.39.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ach0WooP0AeM"]},"Identity":{"Case":"Some","Fields":["KFsxlSVt6mbH9YwFlrF9kjeIBWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZujrj0SzAotq1mvOaRkjARCdm8sJQyG+cCfpAlp0qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:05"]},"IP":{"Case":"Some","Fields":["5.2.79.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privatebrowsingorg"]},"Identity":{"Case":"Some","Fields":["KFjEvwXVfX/r7ijeqCusN0Ii+Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["voxHwLXxY9M1nzZGdW0Sx+1+n9eDgYWiEKSDxeZJ8PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:18"]},"IP":{"Case":"Some","Fields":["107.189.12.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stiefelgeiss"]},"Identity":{"Case":"Some","Fields":["KEsGlZNPJ7uFvrtUcUkmJwp0GSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jnWxcMQEYIfjMV4TtiQNCdvelB5a95+NLssmyGpvCEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:32"]},"IP":{"Case":"Some","Fields":["221.113.50.91"]},"OnionRouterPort":{"Case":"Some","Fields":[109]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["KEgwn85wjTjf7bi/NNLeVDPiTEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xKXYzTrwpLFrEdvXVShxYyTuvUylx8XPyOg6jD0nl14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:33"]},"IP":{"Case":"Some","Fields":["185.177.206.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::129]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KDUHH0uG0o35I9KqK6kC8o+k8oU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VwtS5KSD3dxby6zOIfRss9LztlaOgFcbupNAIG0ISLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:18"]},"IP":{"Case":"Some","Fields":["195.88.226.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DontCensorMeBro"]},"Identity":{"Case":"Some","Fields":["KDGEq7zLVyWG/9feZOuNNQK98fY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IDAmlgIZBeiitOUYNG+NQ98b5eBSOX7+XMC04OdmYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:56"]},"IP":{"Case":"Some","Fields":["140.177.225.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev10b"]},"Identity":{"Case":"Some","Fields":["KCyq8OEdrUfdc9VT3CC1EJmiV7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3VbErx5lOlI4iHTRi7teFzRCuneNQabfbjjoz5SijHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:43"]},"IP":{"Case":"Some","Fields":["185.170.114.25"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:928:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JohnWick"]},"Identity":{"Case":"Some","Fields":["KCRPZjoJuk3sYsH84+tvoiG4R7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58/6rxFkWSAmxNzlPno6a+pYwIQMzoYiFkSKbzQGO0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:07"]},"IP":{"Case":"Some","Fields":["65.109.28.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:5a:1a46::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyMatters"]},"Identity":{"Case":"Some","Fields":["KCObrHcYKfgh4qjdW1U516Ebnbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/k9u1+XM8WZsmvon5teM8qfrnxjMACVc8OAcVUHikSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:06"]},"IP":{"Case":"Some","Fields":["193.233.202.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9202::101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["danny"]},"Identity":{"Case":"Some","Fields":["KB0/TItSJeYUy1GHS6Ev8beSEFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RIwCGuWeJ1KI/EF2LnBDR3lB0uyL/WUKBZsxxNvMWYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:48"]},"IP":{"Case":"Some","Fields":["188.225.86.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dream"]},"Identity":{"Case":"Some","Fields":["KBjlrZ9Oogbw8RBbtQFt6WLLwvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DffAOAJod/MEEVfBSV91uQDZsI8kpbnBpvto8pZAq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:28"]},"IP":{"Case":"Some","Fields":["37.221.209.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dismail"]},"Identity":{"Case":"Some","Fields":["KAkHEKvkM6RwIfIiCLPsJFqRKQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G703smqfmLNd68Swe/Cl7ZNVI9z6LvLnY6oCWrrhHz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:16"]},"IP":{"Case":"Some","Fields":["116.203.17.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KAPDgHNv27j6jiei3s9IBbUybPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OBsp6494ptGCs7UFrHFds7QSbKCkxwY63UK8RMX3ABY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:51"]},"IP":{"Case":"Some","Fields":["192.184.181.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["J/rpnA26jNnb/kLS0kZLTGjusA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dcePScRKxr9N7ej1U3ez/DeWFjrrwp05mWYpUrWc/pM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:10"]},"IP":{"Case":"Some","Fields":["185.228.136.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer01"]},"Identity":{"Case":"Some","Fields":["J/ZAqy/AWZntST9tDETaaH1PRz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3/dFUGhjOhxZ2qXOyYjRATNDuEmj5/N0HF7llgAnVck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:32"]},"IP":{"Case":"Some","Fields":["172.245.89.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deepspace9"]},"Identity":{"Case":"Some","Fields":["J+wBjIB9+k9Goh1pzUU10fMMe10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YFP//hbSAuELgLxm54tZns11t2es8wsNYqTbhAc8fGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:05"]},"IP":{"Case":"Some","Fields":["79.140.41.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra3"]},"Identity":{"Case":"Some","Fields":["J9Alea1fPjKJXZnDjkgtHcbLrl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ay1Y6Yj3wIOTtFa8LIAVYx8PsnkoiAIhfIXTAemp2uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:49"]},"IP":{"Case":"Some","Fields":["178.17.174.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:111::785b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RjPi1"]},"Identity":{"Case":"Some","Fields":["J8al2l0GET0OCMXCvlUnupoPEZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G3a0ScWd1m6BM4DsyOBwcFikBEvMgZ2KHfeZdhqjpWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:43"]},"IP":{"Case":"Some","Fields":["189.60.21.201"]},"OnionRouterPort":{"Case":"Some","Fields":[4430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pheonixr"]},"Identity":{"Case":"Some","Fields":["J7NeettZRuOSQgjyxHH65WODyro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xVp6p+azA4XDAoU8x3pQWYAhG0zS++eE/sVadpMcU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:43"]},"IP":{"Case":"Some","Fields":["140.238.171.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["syndrome"]},"Identity":{"Case":"Some","Fields":["J7Li6sLxg4tpMMjkDhmap3O43Yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoAH88P4EjuFxOaPft76CSKPieOPvSQExo+NXajjYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:32"]},"IP":{"Case":"Some","Fields":["51.81.208.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LebLibraries"]},"Identity":{"Case":"Some","Fields":["J6X9IlGfCvg5J87xME7hlIQkdYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bc616cKYTc9WiDFuU94K5z56DKYcZv2KGJE2hDFfndw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:39"]},"IP":{"Case":"Some","Fields":["66.220.242.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yani"]},"Identity":{"Case":"Some","Fields":["J6Wg7nLPBQ+fCgkuKw5/+kBlN80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enm+TC56m6JSc2x81PuM62+rSz3fvQ3qEqdGbl0EbrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:01"]},"IP":{"Case":"Some","Fields":["37.97.185.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:aac1:114::1337]:9999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi"]},"Identity":{"Case":"Some","Fields":["J5kBb2dguBR1yR28duRH3m2j4zE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TONjyrvYpqf9X7EyL+yd6zqc3yBHkfcp3NDdql13inc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:54"]},"IP":{"Case":"Some","Fields":["213.226.119.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mol"]},"Identity":{"Case":"Some","Fields":["J3XCocnDLa5H2rqXDnDp1+BQcds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kVetF4Jdo8hHv6o4UhveZ2bfyPEn+xra3Ehrd+UcUqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:50"]},"IP":{"Case":"Some","Fields":["176.123.1.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::1de]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greenpond"]},"Identity":{"Case":"Some","Fields":["J2tH+wbfRz9E/aDaXHJztPZZQZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cUaumju/vP+gTPwWfS+9PE9XN0yVocviriKYAUU5wzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:48"]},"IP":{"Case":"Some","Fields":["172.106.10.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:6600:2002:1::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W44rdfE3fqVo1L9B"]},"Identity":{"Case":"Some","Fields":["J19/5EnvfrQe3VN+Zlg6sDmHDWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yg1WV2vmWNNjUI/VC0yAom4uutmcWFwUWtD7LFBM5fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:04"]},"IP":{"Case":"Some","Fields":["176.9.157.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllanonTor"]},"Identity":{"Case":"Some","Fields":["J0odxiEOkYJ830DcDpXko8qSmgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJRqFfTJhOShevHLY4xuul2zum/CtBebCMEKLdhq0A0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:48"]},"IP":{"Case":"Some","Fields":["188.127.161.204"]},"OnionRouterPort":{"Case":"Some","Fields":[10009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bakingoven"]},"Identity":{"Case":"Some","Fields":["J0UiULSEy5DmhyJ7MnTivyMhWOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpcUUQGujjzK3TDwrVDHgRwnXalN15UeAkRLNfkk/qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:37"]},"IP":{"Case":"Some","Fields":["5.189.164.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["JzB4uURnVYhCljzgoCstBY4oJOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v42bkmo+JJShaXQPamAFBAY1Jl86oTIZkpz7fAahvCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:28"]},"IP":{"Case":"Some","Fields":["179.43.159.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summerfield"]},"Identity":{"Case":"Some","Fields":["JyrIQlIWZuPRsOXq+see9z7IiXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WtaBbFJvkrdD14gchwVX2NTDrvHG3RuV4Rc/A9DlhGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:58"]},"IP":{"Case":"Some","Fields":["185.189.112.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheMind"]},"Identity":{"Case":"Some","Fields":["JyitJkKElE293f4Mbb5laoWpNgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wy2ziXsuiowZ9YKL74zkJMEYo4ILS64gjX5xd1nNrEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:06"]},"IP":{"Case":"Some","Fields":["138.59.18.105"]},"OnionRouterPort":{"Case":"Some","Fields":[88]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["Jxc1XR7RxCHj+JMPchvy/aujXNo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLd4RvsukwGwxvJI+UULAsD+qYDgBF6YTr9wV5DH8+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:34"]},"IP":{"Case":"Some","Fields":["95.216.72.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tuco2"]},"Identity":{"Case":"Some","Fields":["Jwv1yeIzEJP85aqIkeCliDMe52M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fkJ2VY/VYxM13mxgeFBkFMJQQH5Zn7Vdv1vdH9E7f5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:45"]},"IP":{"Case":"Some","Fields":["193.187.91.79"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toloso"]},"Identity":{"Case":"Some","Fields":["Jwk0pPe2aao4fy1HX755PQNpRUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z42LbnF6A+aOfoKdu+fQFEdCD9DzZAGyFYusF6Il+Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:22"]},"IP":{"Case":"Some","Fields":["212.7.217.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["JwZ/Wi7MyRfxwJxM3+V95DoYfig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjQOnEpswpCEnN7G7CPTrWL6E1wls7x5QbrRU7UeS0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:27"]},"IP":{"Case":"Some","Fields":["23.128.248.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::32]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=760"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HereticReaper"]},"Identity":{"Case":"Some","Fields":["Jvm+8rrPhVF8Yst3/1XmNHKEAVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R7ygeFSE/hAuL+m9S17LKvUaDRVtleLaHV+YK4QNDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:45"]},"IP":{"Case":"Some","Fields":["51.161.35.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:205:200::1f8d]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JvKYQpN0bHWJsfyxF/FbSVivwrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYgJMEKpSBdQc2EH8vXeEcTG8xZbesBlU/HVerGXBTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:49"]},"IP":{"Case":"Some","Fields":["192.95.27.143"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber13"]},"Identity":{"Case":"Some","Fields":["JtOE4ku9FQZhZEZiK+EyMqZJRQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IrpkN+ArjFv7Qdkw5olvnMy4wIaVdXCa1vmD01ZXeGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:09"]},"IP":{"Case":"Some","Fields":["185.220.101.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber58"]},"Identity":{"Case":"Some","Fields":["Jso0Sg2gyTNDhpv2oXyFLR06DJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwJYbHRn0Y1AZOhdK0F8ZdsteIOYhfktA+rWlkX2MyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:05"]},"IP":{"Case":"Some","Fields":["185.220.101.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::29]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0163"]},"Identity":{"Case":"Some","Fields":["JsV/Br3s/5lo9lgFzZ7MkDawKqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cKU7EL+JGfxvluXIkkeMSs95DxqA7lQ/AkaIAEYoCFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:13"]},"IP":{"Case":"Some","Fields":["185.220.101.163"]},"OnionRouterPort":{"Case":"Some","Fields":[10163]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::163]:10163"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sasoom"]},"Identity":{"Case":"Some","Fields":["JsQ/tErKrtt6T38fH07JMFuHhRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCVDRucbJNBJ8wEHkuh6ftrhJo42qdZYGLhVK+rCGbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:16"]},"IP":{"Case":"Some","Fields":["70.89.115.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev4"]},"Identity":{"Case":"Some","Fields":["JsKPKbYR303iOs9dncHrSJXvXos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zpqR0bdRgGFPA8+s7pbG2iRV62K0w3QU2xi0B7ZvL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:15"]},"IP":{"Case":"Some","Fields":["87.118.116.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:4134:101:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BestofbestBackup"]},"Identity":{"Case":"Some","Fields":["JsFe1SgjgqhD0HdPUXC8zMzEbWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fDCm6IR2uX2ttyrUUPRduKItFujW+fh+gtu3VHUmDIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:16"]},"IP":{"Case":"Some","Fields":["172.104.225.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:93ff:fe9c:f17e]:9007"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["philotes"]},"Identity":{"Case":"Some","Fields":["JrK75nFJlzqm9jH9CeKjTnMlOrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mrOb9au+QuvV1pOGSxiTbAOlzDp9j46siink80KtXPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:22"]},"IP":{"Case":"Some","Fields":["94.16.118.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ageinghacker"]},"Identity":{"Case":"Some","Fields":["Jq08HBjxzSs1ejP6dlKpBtsTqMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32z8mWaJs+VBwRRkLY0TRSZj7xZYnW+TJ81cSIeLzBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:52"]},"IP":{"Case":"Some","Fields":["82.221.139.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["VadaszXYZ"]},"Identity":{"Case":"Some","Fields":["JqGR5ZrQEmkTXmq++sZSulg+hEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLRjC7AmfUWOvte5Dq/6CM74EN9tChOsOaDMhM3tIIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:48"]},"IP":{"Case":"Some","Fields":["62.165.251.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgES"]},"Identity":{"Case":"Some","Fields":["JpyumGn3UBsneRvqiXq11H79TzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpIzVbbhNZnIdiHueAApHffuKI2CMbL0BEfSeX171tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:07"]},"IP":{"Case":"Some","Fields":["82.223.104.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay6"]},"Identity":{"Case":"Some","Fields":["JpyHtMMEZS8hrAK+hr6H31j1F08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URiXe7LK3MkejDoectJ3qR9qRRHYMqlaI59MGSvpqhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:31"]},"IP":{"Case":"Some","Fields":["5.45.107.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16d1:9458:1aff:fea1:7c8d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Jo2hHpbk2AFvePOiRiw/fRCbfC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lslUw1VQlF0pjJi7GGKfmBu1IIdMNFeKoWYka5YepmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:31"]},"IP":{"Case":"Some","Fields":["95.214.52.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ScaryBear"]},"Identity":{"Case":"Some","Fields":["JnqpSJ5uyk0u1Le7TQDHF7PhBqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["psxuytjzMrujbwrRUBFYxhnHIszfVnqne3TJI1WL8L4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:07"]},"IP":{"Case":"Some","Fields":["99.234.69.118"]},"OnionRouterPort":{"Case":"Some","Fields":[42431]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:fea8:c60:600:bb1c:8d1d:75c8:d7ed]:42431"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giraffe"]},"Identity":{"Case":"Some","Fields":["JnOTCiLArt8/viwUFlMKE3jmyg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XpvpLw11pwW5VZuG3XuE7fxBui69HkI21oEEzi3pHqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:03"]},"IP":{"Case":"Some","Fields":["109.70.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::71]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JnKx4XltVwIWO+S5d7/7vgGb2ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znjfPB8ByoXGe+31WLWvzodir0ViAejIqUWGnjjV71s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:08"]},"IP":{"Case":"Some","Fields":["45.9.150.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spacepark"]},"Identity":{"Case":"Some","Fields":["JmYKt+E2pFnPzRsb5kDxBoEDWTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BtyeqiRHQsOiLfK27+A1/nw19i/l+5y32gcWKDKCl98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:40"]},"IP":{"Case":"Some","Fields":["185.177.151.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Felicette"]},"Identity":{"Case":"Some","Fields":["JmVeHdk3UbZSrI1TRJWrs2QVvsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TdHad/SOjJaPzYMjXaB7X80+Wk+43UQ2tofu8ex/5lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["62.210.97.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AvocadoTortillas"]},"Identity":{"Case":"Some","Fields":["JmF45BdebW/3Vjkxt8YWbFu+cOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cpBqyK1tGwnCxjo0Dzit3i3orX8OvLAHnRCjOEnFQCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:55"]},"IP":{"Case":"Some","Fields":["139.180.153.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:4400:69b1:5400:3ff:febb:2687]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hatcheck"]},"Identity":{"Case":"Some","Fields":["JlmsqhQLaEXjjxibQICBe5gZ65o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X2eJhlDHT4lZnX8UsXa0oOGBJK93gZu+0H90YRsnhH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:47"]},"IP":{"Case":"Some","Fields":["94.156.175.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stormwind"]},"Identity":{"Case":"Some","Fields":["Jk6Mo4jz0ACBzX6R1sQnLASLavk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TxFrzOEj5eMqkAR7RzJMzXrt0MhWK/mAS9z15rnvC8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:11"]},"IP":{"Case":"Some","Fields":["178.132.0.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["msBobo"]},"Identity":{"Case":"Some","Fields":["JjkH6dSPvq5uZLEMYorovfRmhps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/gizkXO2p2dDnzyMkyN0cFhkz4r8vs0wV+dq1zO/tZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:28"]},"IP":{"Case":"Some","Fields":["37.143.118.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ALiteralBird"]},"Identity":{"Case":"Some","Fields":["JisLdJyQiERqVSHE6YFz3tgV/Vo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["seCJw+33AxLYFJmfvBAe4gV4AUeKbK5PpaTVVdQcSEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:11"]},"IP":{"Case":"Some","Fields":["209.35.33.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockers2"]},"Identity":{"Case":"Some","Fields":["JihrnezidY63nYV5K23vwaHcwZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BpPezVtp9v18l2hZyC5EO7Adu10lCJ5tqmiS7rxMZqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:08"]},"IP":{"Case":"Some","Fields":["174.128.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Q"]},"Identity":{"Case":"Some","Fields":["JiIK6hiLjQ5Hu1QeGmFus61wKV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yeQ3cIAnG2TsnyqHaQptq0df9Jx5oAKYJhjEdX7/J4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:39"]},"IP":{"Case":"Some","Fields":["78.47.221.71"]},"OnionRouterPort":{"Case":"Some","Fields":[3451]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:1a1c::2]:3451"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["russianalbiona"]},"Identity":{"Case":"Some","Fields":["JiDucdbrSGE1NicvdJDrjaZ7g1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6W9VD0sSwWB+F1yNXDkudkI1Sim62lE53/r/c67b0ME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:00"]},"IP":{"Case":"Some","Fields":["136.244.87.205"]},"OnionRouterPort":{"Case":"Some","Fields":[39910]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6c01:e9a:5400:3ff:fe8d:b35f]:39910"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["SabaDanielRelay"]},"Identity":{"Case":"Some","Fields":["Jh4p10DrtfxVk/rLZeTNeOkzJm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["65GUagmET+ceF0PVIi0eske2TviZXROzzwwyHowxw64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:05"]},"IP":{"Case":"Some","Fields":["217.103.30.38"]},"OnionRouterPort":{"Case":"Some","Fields":[16793]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gymli"]},"Identity":{"Case":"Some","Fields":["Jgl5orLuxDuRRS2Tee0PntdEtJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qlohq/nMXPvBJscbrOFG3Cm7Fo3JycUNUywPYDDd8/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:48"]},"IP":{"Case":"Some","Fields":["152.97.142.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homik"]},"Identity":{"Case":"Some","Fields":["JfQzU1FohTPK7b9NZVgejTJCpcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gi+gUhHFg0U2xLN8MqaVa/FBYeCwn8bIFZHVbIvdUiQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:40"]},"IP":{"Case":"Some","Fields":["139.28.40.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darrieux"]},"Identity":{"Case":"Some","Fields":["JbaU6pX4JfFWxdrlYHszdehsDE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PfaowiG0pxXbf/9xYnBREv+hJiJBlRcuxeos2okefVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:26"]},"IP":{"Case":"Some","Fields":["153.92.126.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mrrm87"]},"Identity":{"Case":"Some","Fields":["JaPJLrEaFAsAZpXQAJ9urq88Z4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiB7a2ZwtjP+o3WkZbhsvuJIKEws/NOZ5lwgmL6KjNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:59"]},"IP":{"Case":"Some","Fields":["89.212.26.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Proflay"]},"Identity":{"Case":"Some","Fields":["JZdqbe4FcW4MkrdsoH7ns7zIEno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/0DYn2MzggF7q6KSNIlZA5A/pPeWScFNjAyHghxvXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:56"]},"IP":{"Case":"Some","Fields":["91.22.189.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarkabianRelay"]},"Identity":{"Case":"Some","Fields":["JZT3wNLsCrGyaVc1cMYajupU1Lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S4yuOUmHh9I5nNUneQW5TaydeJ/AEUrTmwhbrr6O6W0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:59"]},"IP":{"Case":"Some","Fields":["135.125.235.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::500e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Luxembourgury"]},"Identity":{"Case":"Some","Fields":["JZB4x0yyMJaaavzYU1wLNa7P+Gg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ZKMRKEt+VoMnw8VzVwgkPvOQi+Jv0U5BhuFcFk56U0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:51"]},"IP":{"Case":"Some","Fields":["107.189.30.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f414:42ce:c612:dab8:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fancybear"]},"Identity":{"Case":"Some","Fields":["JYotr+y7YYU8iKKBFmsPW1ihbGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["07Qe8hhoATjhTBY9qSBaRNF7ebA8XI7ngn3yHhtbhqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:19"]},"IP":{"Case":"Some","Fields":["31.171.152.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galapagospadda"]},"Identity":{"Case":"Some","Fields":["JWLUY9FcPDg1FOfWEXYFBzrEedk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tojHClOO2qS762av7Uivh8cJj2kfj1r9Qe/ArCAmmPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:44"]},"IP":{"Case":"Some","Fields":["90.230.21.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mesaplata"]},"Identity":{"Case":"Some","Fields":["JUwKlqJPY5/vtJoMlIR97xWK+q4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8JfWvgKAnlqRRJKgb8NfBQ2kkPKfGLW876WdTq9CwHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:21"]},"IP":{"Case":"Some","Fields":["45.89.54.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porcelain"]},"Identity":{"Case":"Some","Fields":["JT58aAL3W9VGFocmk6WSLtKhU00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tNYhCH/apeGRqvQa++ZMpYaBtjzqpcO3fek5RPSAPXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:11"]},"IP":{"Case":"Some","Fields":["162.251.119.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt27791"]},"Identity":{"Case":"Some","Fields":["JQCdn6VdiWGXR5lakIf01mzoYnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EnR3ZurZ7AbpPmmlKOxVsbpOfOCyuYhjoJ9PzefObGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:17"]},"IP":{"Case":"Some","Fields":["185.245.60.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["JP30dUuzd1ptVOB43LvKQ9exsH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oMlk/llEAKSRvQeQ7dUiG/4S40AeS+XA5luGUes5ICU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.36"]},"OnionRouterPort":{"Case":"Some","Fields":[10036]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::36]:10036"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShinyMetalS"]},"Identity":{"Case":"Some","Fields":["JO8YK074Lk60eJi6gcslHW4ohbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7JpxRI60qcfOzofqlLi+amuCnnBBlFjrkKpwz2GvxCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:16"]},"IP":{"Case":"Some","Fields":["78.107.239.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bastet"]},"Identity":{"Case":"Some","Fields":["JOLxORIdQ5TFS1vMNos7QRhXxBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aNeQUoLjfc/hW2NaycJ6+UMQmbm8gLvT9N11I90afj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:18"]},"IP":{"Case":"Some","Fields":["204.13.164.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:13:4000:6000::1000:118]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sjmulder"]},"Identity":{"Case":"Some","Fields":["JOGFcJTaZPN4CcuQpOlTueKpF1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HnlDy4f0YdvlDfEB+DSuiE+WQ80MDPHXypz38ApfZD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:30"]},"IP":{"Case":"Some","Fields":["149.210.205.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:aab6:8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["stealthynetworks"]},"Identity":{"Case":"Some","Fields":["JMTbEAwZqxfRw3/GVOtKVajNVQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["990+YnNhUkct3osSBeb5pd2BYtt/VFXWqBsg05xQrqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:12"]},"IP":{"Case":"Some","Fields":["91.208.162.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5100::186]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Scrubsss"]},"Identity":{"Case":"Some","Fields":["JMMSxlZ16Az8cp4EYA0NndJzefQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kejiskfTpJDzDQQ6K6gruM/u8B6fFi8HcA0VoOqFOaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:24"]},"IP":{"Case":"Some","Fields":["51.159.59.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobseg"]},"Identity":{"Case":"Some","Fields":["JL4N1FIiK4/DMobcFgrpAMdpdNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kF8VEQp+/Jy4f8AjYTv878u2IWDzdKp7BFcitX2eO/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:51"]},"IP":{"Case":"Some","Fields":["116.88.104.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bennytorbot"]},"Identity":{"Case":"Some","Fields":["JLg0IxdJImc7sa9Ds4lCkF8c4wA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O7nGT5AOpXg+/tXiviPukSR8gFCb8nN9HKSylJPrNQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:02"]},"IP":{"Case":"Some","Fields":["204.83.204.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f17:273::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goingin"]},"Identity":{"Case":"Some","Fields":["JKgY2fHgnxhF/BWJ3lqvFcjghn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYarjHfecKTBfncorfQrkyrVrVNb64v31VxFHUQyx/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:46"]},"IP":{"Case":"Some","Fields":["162.251.116.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonhoard"]},"Identity":{"Case":"Some","Fields":["JKF6TB+owhCKzeO+aBsHMThL86U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Efev4rZbXy8PZvgYqJ+NJDL8Escl1LQdqCjT73xjr5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:44"]},"IP":{"Case":"Some","Fields":["159.69.21.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:2e49::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JKAoC+/P8xgH2p31yR/gzYtxuok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvWwHWB72QiOedckoChZasBJ1DB/fxTPZB/3W+glM0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:08"]},"IP":{"Case":"Some","Fields":["5.255.102.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:dd2a::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay16at5443"]},"Identity":{"Case":"Some","Fields":["JJw6XtixqNIaOFPuc2b0/5Zt1P0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WxZYSvpk1OagBOkKJMD+JfDEFOlCFuXOalNwuqX8czw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:47"]},"IP":{"Case":"Some","Fields":["140.78.100.16"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Illuminati"]},"Identity":{"Case":"Some","Fields":["JIqWsqiKPqsUaZuQls5qv3fQYGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2uDIImiINp32ibkphJKz8YraKJ27yfXHlGTiKRJW78w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:33"]},"IP":{"Case":"Some","Fields":["87.118.110.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:1:3935:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aztstx11"]},"Identity":{"Case":"Some","Fields":["JIQH8ftPq6/5Pe99uVTi+uS2o5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZwVs/O9V+EHG179yW+YpeAbsh4S+mCq4Y15373ZTq94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:00"]},"IP":{"Case":"Some","Fields":["40.112.177.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["atacama"]},"Identity":{"Case":"Some","Fields":["JGRFbCh+cVg6bq38+ClZcitulv8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvDJ8CI30peUo5vexyg84ShWNL/oZ/Bl+ThojoYEfdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:05"]},"IP":{"Case":"Some","Fields":["85.119.82.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["JFyI5TW7fYC3tDs2q1swDWshSkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nkEoIco5yEEe2h9wZASIVyz/BJ36ZP3ntsboe5kuxP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["185.181.62.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::fefe]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JFU4xeM56pm/F9/kfFemNFQORPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["miS8HlkvEJZAskmFdgSC0qQ4Zut95assFeOV0sIKRcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:17"]},"IP":{"Case":"Some","Fields":["188.127.235.185"]},"OnionRouterPort":{"Case":"Some","Fields":[37171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Luna"]},"Identity":{"Case":"Some","Fields":["JFI+ewBJg+xMpQM+vJtyk/EvI3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sxj+ZWOF6FzpxUSZwQgN2XEWI96qPT3qiHfLdldy2+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:38"]},"IP":{"Case":"Some","Fields":["51.81.93.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JDf82sRThfO/qALwFy98Uqbc9VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j2pXyPfnyZd6xkaaqRPdgz8iY+S49vxyosUNLY8hSOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:06"]},"IP":{"Case":"Some","Fields":["159.65.50.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Magic"]},"Identity":{"Case":"Some","Fields":["JCLdd6R5cxD4JrEkg7CAH17fNRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ED7UkHKcdSO0c5gaeek3Jk4Zxeqf9wRxn771KFTGCZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:31"]},"IP":{"Case":"Some","Fields":["131.255.4.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode4"]},"Identity":{"Case":"Some","Fields":["I/dNWB3pKsWdNSfeTUSOA2E52B4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJwRrKXln8UhVMZY1BdU25b/Qq+Ne23UQAmqwORnTPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:15"]},"IP":{"Case":"Some","Fields":["209.141.45.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imissfrys"]},"Identity":{"Case":"Some","Fields":["I+HsonJ9JKBbNAfApobQup09GiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XEtwSlrpWBL6rsRdU3bMrpSMdz96oNBjfbgArJVFJ6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:18"]},"IP":{"Case":"Some","Fields":["103.163.218.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["I+CGX1xh2OaM00qe34FwzBeet60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5N77AT7b6stoHQmShPVWLJ9fMOEwcGjaAovLMRAo49Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:00"]},"IP":{"Case":"Some","Fields":["20.48.104.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["esko"]},"Identity":{"Case":"Some","Fields":["I9wpXXcdUdqYEAjRuXAqA8ZEiNg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RjNnXexD5emey0hHjxcvZkgXe2qS3PHJdxCi8CIBLyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:02"]},"IP":{"Case":"Some","Fields":["188.127.197.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay38at5443"]},"Identity":{"Case":"Some","Fields":["I9XYIZqOt2EKszz61Yn9cqhENWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2F1vATbVk1sKMBu94f7HdRRBJu8EVBdR2M9g8N4To/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:41"]},"IP":{"Case":"Some","Fields":["140.78.100.38"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pipepipepipepipe"]},"Identity":{"Case":"Some","Fields":["I8LA/UZga6snQ9B9ObLO9/R7Djg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/rxf3XFRpVuFtW0v1nJp/c8LxK6CyoAppssODGZ4QM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:50"]},"IP":{"Case":"Some","Fields":["35.178.146.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:d01c:ac5:8100:6bf4:80ca:8500:db07]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.5-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay01"]},"Identity":{"Case":"Some","Fields":["I8GMgBDqyD7IUaObJeR1rIKo74o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OY2vJorB4+wJdCLYCy3xRRlu3xtRMxtkL8ZYNdPuWEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:42"]},"IP":{"Case":"Some","Fields":["187.63.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:538:0:1::24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reddragon"]},"Identity":{"Case":"Some","Fields":["I7zX8IYO+z3S/L9k2UQWPStLY5U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KWfjx+oZoTKEC2V4j8OGXQvZsWxV0csy2aCpa/StaXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:39"]},"IP":{"Case":"Some","Fields":["15.204.172.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::1a34]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrostShark"]},"Identity":{"Case":"Some","Fields":["I7q0qbG39VNZnNga7VU/rLezUhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEBQTzu5scARUD0GjMmdZa8dVxvwOsTmA6bM4/W3HOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:34"]},"IP":{"Case":"Some","Fields":["91.193.18.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WedosCZabcdef"]},"Identity":{"Case":"Some","Fields":["I7nAh3WrMb929mgsgTXmN//zHng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QBOuHZDfkHMgZ/QvnOYYYn1g/90Qq/4/dK2RYVFiVpY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:55"]},"IP":{"Case":"Some","Fields":["89.221.220.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:97e::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["I7SVIb3EWIx8zzw45VJQQRgya2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LknEk3K4ZcplGrPCd2h0duFckLnpalC8WBbAAcM5x+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:28"]},"IP":{"Case":"Some","Fields":["185.244.194.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apostate"]},"Identity":{"Case":"Some","Fields":["I61rFlE32VfAmqD3o+57Bc7EqPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sEHPA52ab1/3yhfKUD895OAELMSMfAeUZuh6sElhBjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:58"]},"IP":{"Case":"Some","Fields":["51.15.62.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:916::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.3-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VarenykyRelay"]},"Identity":{"Case":"Some","Fields":["I6AgwQ7X4/hWCAgLYimE9BsuDRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["04SAvCVj5r+KqklslRub0W/cb+zxmHaqGRjkp4fLdBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:04"]},"IP":{"Case":"Some","Fields":["95.111.252.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FamGuyFunnyMoments"]},"Identity":{"Case":"Some","Fields":["I5i3/Wycl6IP3X5jfL2tF11bdh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzuYQbIYcGtH05ajGUxzionk+mjJzUDDIsNnn4/KQPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:13"]},"IP":{"Case":"Some","Fields":["45.15.23.77"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1d80:1:5d9::1]:42069"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["I5Ls0UgktGwPLqrEhiukDsm5MK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yhyH3ikBXHoaDvxVFnSWb9NtDysMnKp5jFRHk/xxx+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:40"]},"IP":{"Case":"Some","Fields":["104.244.77.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["I5CzAwWPXsHhvqruzjqvLPl7cfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e+6vqa3m13CtxKQKhpWhTdQIywqmv4iXzySpHmaWZEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:39"]},"IP":{"Case":"Some","Fields":["185.220.101.47"]},"OnionRouterPort":{"Case":"Some","Fields":[10047]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::47]:10047"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thevine"]},"Identity":{"Case":"Some","Fields":["I4fhI5T6PmrVUaIXbtF2K9sDupA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TzUeil80zTDlEjEQ8AalOzLXwO4FfjHyjrZkzXSefGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:45:09"]},"IP":{"Case":"Some","Fields":["113.20.28.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vShieldxVirtuo"]},"Identity":{"Case":"Some","Fields":["I4GZtHuhmY3Drx0rCToKlo5PNvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slH5FIbmByGpYTa/D//8kQxdj9EHRjRbAjMgpYbY/1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:28"]},"IP":{"Case":"Some","Fields":["38.22.104.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nightosphere"]},"Identity":{"Case":"Some","Fields":["I2Ba3hYpjKFSzGLwx1k7PrV70PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fLZWAnHW/JMBoa4/vN41coXtLOieCITWPSVmha1a0Fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:32"]},"IP":{"Case":"Some","Fields":["185.104.142.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation54"]},"Identity":{"Case":"Some","Fields":["I100RCNqvCj0Euk4FPa3gyANRjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rr8mrD+n70DXdzNCB3sP5SVxnq4wpIvkJydnauBq4hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:31"]},"IP":{"Case":"Some","Fields":["51.15.249.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigfish"]},"Identity":{"Case":"Some","Fields":["I1tJns/ZteXGBpf6qoBaKzIO7/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYCtSFNt1eV2z5O3tIGH6KZss0Xw3zJ8FOMYacEQyhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:43"]},"IP":{"Case":"Some","Fields":["5.2.76.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TK778"]},"Identity":{"Case":"Some","Fields":["I1qW1sFIm1BOTcs1whydzKAeR1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91gTvbirbo/M18K2pZqtLjXwlU+++bS2EUmCpLG4o5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:06"]},"IP":{"Case":"Some","Fields":["46.226.111.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soP49mzpYUFEwVdiFN3"]},"Identity":{"Case":"Some","Fields":["I1OWg4u4/Hr6UpBCsZYV354q8hg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["suc5DSVukWbZCudnJP4MDBmuDQ5pViXZT9GsXv+XPQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:47"]},"IP":{"Case":"Some","Fields":["68.67.32.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CH33P"]},"Identity":{"Case":"Some","Fields":["I1EtZPih7BGJ8VOjvHStdtI0Pfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qpv18WUwXzhJgcS5BmNwbs735KR5rL03VryyGRes0Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:13"]},"IP":{"Case":"Some","Fields":["185.247.226.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:2:18:4348:2d:3333:50]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ceres"]},"Identity":{"Case":"Some","Fields":["I01nDqp5Twkve9dY1dKqf04/++M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjPSQYwJMrVjZr+akEwnfiIeEJ7I/nJU0zxKFGOeDqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:04"]},"IP":{"Case":"Some","Fields":["45.13.104.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:cbc0:1100:1a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pizzahut"]},"Identity":{"Case":"Some","Fields":["I0sG5NqRXVJ8iX4h/R6fCAEuKWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ygNUf+A7wbbWIfy7oloarQz7reIWPYuXVOESosXGy8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:45"]},"IP":{"Case":"Some","Fields":["5.254.118.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["king1337"]},"Identity":{"Case":"Some","Fields":["I0d4r568WZaQM2hK2IlTAGM1l8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F+hCS16MtZ0QdxwO8M0VaSRVVxLBQAVIot1wueiMciI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:18:04"]},"IP":{"Case":"Some","Fields":["90.187.138.41"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv02"]},"Identity":{"Case":"Some","Fields":["I0YqTbppdYv8tMKJiQWH6ibUZUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqMJlHu5Pa9ZaVvC8WQW9x75KVp2UvirAaIS1PwsFFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:17"]},"IP":{"Case":"Some","Fields":["162.248.162.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer22"]},"Identity":{"Case":"Some","Fields":["IziOX515FvhP6ZhhNJF4o7x+C1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xR91ADmJw4k2/AMox6lNjpGsPfVY1KzdAXBvNqjPiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:27"]},"IP":{"Case":"Some","Fields":["173.208.190.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["Izgw8KBS84RXiWB9HsFUV88V+a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDzT5rV1ZYSjBpwgsRwj6KSntNOFCQo+QrHcXNkspRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:55"]},"IP":{"Case":"Some","Fields":["151.80.148.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigBang"]},"Identity":{"Case":"Some","Fields":["IzMPICeh2sp5KrHjeuHPD4fzcLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tld1R9LzG+Io1L0wgFdGt0l0ulsMy8vmo6rMhLNtiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:44"]},"IP":{"Case":"Some","Fields":["85.214.173.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:420f:7b00:b712:1cda:3513:2005]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaxyTorProxy"]},"Identity":{"Case":"Some","Fields":["Iy+V9EBZeAxYOnMyt2cCrV4RqYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6LAJ0gKUUPcXLwEZqa2sYPGYxrzf1cMKoxUD484SgJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:50"]},"IP":{"Case":"Some","Fields":["217.24.20.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:2160:124:d8d0:96ff:fe60:a00c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["Iy7U7UzGoq8cVaYs43JeXapNGqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TnJXZEIAqnplhfFmnQUPjmCjKTvsOPIF1V9x6xVFCKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:17"]},"IP":{"Case":"Some","Fields":["178.128.38.182"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::bfe:8001]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pgmr2Relay"]},"Identity":{"Case":"Some","Fields":["Iyfuc8C8INvAxNKBwJ19MwfC8bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ZAjqujHVQjFANjy0SC1EvOL3Av/vvL/l5xTBm7ogIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:53"]},"IP":{"Case":"Some","Fields":["77.191.135.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:6d:417::b10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["organicloaf"]},"Identity":{"Case":"Some","Fields":["Ix3KoACDfFQmkK1JKN9X9yhlgGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wBHwpDiosC3tx1I49hSwlbzWZRd+lg6j8AUGxxVkRcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:29"]},"IP":{"Case":"Some","Fields":["51.77.100.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTIPrivacy2"]},"Identity":{"Case":"Some","Fields":["IxVRZQy5Nwc737udrsoik7dCjSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZvNWbV8o9im4o/JMpFvcDpmUpVgdyTjV3ErG7WQpUSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:25"]},"IP":{"Case":"Some","Fields":["82.221.128.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Iv+egcJu9gWGzG3G4X2nig2LeOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqGfvzxmTht9GX+98x4bHQqEphrOFXkEuuiIS2mMfdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:33"]},"IP":{"Case":"Some","Fields":["80.64.218.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::dbb:77db]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeSecure"]},"Identity":{"Case":"Some","Fields":["IvdOF2+ANJnU+A2c59MliDqMDkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pw6SqswLpu/XlB3TCqIrmlsn4thiDDekH5d476htiBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:25"]},"IP":{"Case":"Some","Fields":["83.96.213.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cat"]},"Identity":{"Case":"Some","Fields":["IvCqhhp067e0o+w+qeKNZ1D0d+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qUIa9BMOT0JZtwX8iXPGu97m3Fj4Q7SV5cztVq/DZxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:07"]},"IP":{"Case":"Some","Fields":["185.100.86.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gijsje"]},"Identity":{"Case":"Some","Fields":["IuvMChX6SFDQ2Km8YhykIiQzjvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uo6xx7o9W/fzCnKKAe8foFCKs9Pp1sM/sdxpqx6+MQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:26"]},"IP":{"Case":"Some","Fields":["192.42.115.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:103]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hydrogenuine"]},"Identity":{"Case":"Some","Fields":["Iul1k1unfqWaKOoaqDh/kGA0/L4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IixpZvF7kWCxOoVIfxgqpPzB0ATISA/HWaO1+KpcrGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:26"]},"IP":{"Case":"Some","Fields":["172.104.208.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:19f:0:11:11:11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1804m1"]},"Identity":{"Case":"Some","Fields":["IuHR20cjoXTnE7G/QHPawcJTUbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z/UCeACp+YxDd57T81SJ38jsEMF3YP+1Xv1UGVK0WFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:16"]},"IP":{"Case":"Some","Fields":["198.211.103.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::1516:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ItUnIBkyOZOaWVlS+9XnMfAH5OU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5Ar75O9Hw59WphTCklirQaNwRXPVca0IiaiSaznqjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:32"]},"IP":{"Case":"Some","Fields":["51.15.120.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2514::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poolparty"]},"Identity":{"Case":"Some","Fields":["ItNvUF+cFw68LefirRwvIm+h6aU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MKMwNLvbknWlXvrDRlg2g1wN0UEJN8GEuybkD0/DYYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:17"]},"IP":{"Case":"Some","Fields":["85.119.84.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba8:1f1:f166::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Pegase"]},"Identity":{"Case":"Some","Fields":["ItIxS8UUaJCo5cGciE2WwMv+qiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noaS+ns4REYJBZE0jvNlhJ1bzztlBOa6ZlH7NdRZKss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:32"]},"IP":{"Case":"Some","Fields":["80.67.167.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:cbc0:1100:7::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Is0Nk/qITiSpQekVE/ycXQjA+JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hN8jovT3xJPAKFTzWWKBz713tZVYYXktToN8acBIFn0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:24"]},"IP":{"Case":"Some","Fields":["137.184.82.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra30"]},"Identity":{"Case":"Some","Fields":["IsExSGeSDaNwAdrRpj8dXKv52xE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9SnHQj5WBHEu6dO/wYdwGMItKjI5/jd4IsMSg5YjzNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:19"]},"IP":{"Case":"Some","Fields":["213.164.204.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fastnet"]},"Identity":{"Case":"Some","Fields":["IrzQ39FIIJyYYMf4mQerTe6XSgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bhul5Prolq5BWp79J8xNit/lgQPLoPSTjY2e3I3H+jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:36"]},"IP":{"Case":"Some","Fields":["95.216.115.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["Iq2yahzNiPn0va6IpKX06SBxXVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AtZSj7To2zZOTsIZi7+c0Oi/Gtfh4CQvKQgzxrbBaYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:26"]},"IP":{"Case":"Some","Fields":["188.118.198.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:188:118:198:244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1146"]},"Identity":{"Case":"Some","Fields":["IqAo6qO9dztX5rajNejBIfmXOBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fs02txdVhre6JUKkHk6IdMHViz9Qp0W0Jk6hoMMtVN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:38"]},"IP":{"Case":"Some","Fields":["185.220.101.146"]},"OnionRouterPort":{"Case":"Some","Fields":[11146]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::146]:11146"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange021usX"]},"Identity":{"Case":"Some","Fields":["ImWDaOWqB1rqrMGQda3BlnCncWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1ML35OPQoR4AbP/TB0B9JcxoQoa0lC1OWSqCPWbrAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:49"]},"IP":{"Case":"Some","Fields":["107.174.244.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HermanRimm"]},"Identity":{"Case":"Some","Fields":["IlturHWonTC6wvzHGC0Bh8HE12I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PQ7cNARB2ifIKGxRcNY3svkIl7HbMYKjnnbENdO+DzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:52:02"]},"IP":{"Case":"Some","Fields":["5.132.7.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Manureva"]},"Identity":{"Case":"Some","Fields":["IlqOo2ffMHNDPgqEXd2ibSNX5MY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hFp0tEqy5J3KD5yeHynCuR6ZF0G+YMY1UKI1oCiO+rQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:51"]},"IP":{"Case":"Some","Fields":["82.64.243.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BADBOY"]},"Identity":{"Case":"Some","Fields":["Ilj+Dr1XTfyhdnDhtH7eWnXZdMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3AwzhzHkNl7e0SVSPMEd6XITLJ4UOCZqqxR5ytSebc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:08:56"]},"IP":{"Case":"Some","Fields":["31.171.154.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0145"]},"Identity":{"Case":"Some","Fields":["IlUuwc6hSmtBj6noR57e+weVNfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["urKlQ0z+aRnzYTzjT7c1yY4T+IG3pXwZ1alK7UpM660"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:07"]},"IP":{"Case":"Some","Fields":["185.220.101.145"]},"OnionRouterPort":{"Case":"Some","Fields":[10145]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::145]:10145"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nasiOne"]},"Identity":{"Case":"Some","Fields":["Ikw90d/28RIZYEhw1IlTJJ7jwm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DVvOVdshA8UFACLpVxgNqSE1T7TBUsW3q+60HPh6bNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:05"]},"IP":{"Case":"Some","Fields":["212.51.134.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev7"]},"Identity":{"Case":"Some","Fields":["IkBKPofy1/4vxjWf3nG23C1ucw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P4h1I79N8Oy9a2GjLYqinsVgwcoVUHE8H34DvhShvYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:26"]},"IP":{"Case":"Some","Fields":["185.84.81.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:248:2:41dc:5054:ff:fe80:10f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip7a"]},"Identity":{"Case":"Some","Fields":["Iilstq5WYJqW8C+4Q6t7SwoxyvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["chhV6dW44XEwzdxZ1zYCZ5Dx0JRSzBH1nO6mPPXkO6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:20"]},"IP":{"Case":"Some","Fields":["185.220.102.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::254]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["IiRuVOfHNhsv772fZ3ZsK2pwM6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["izU7gnqFGmn6/USmmO1BfFuA2zESZ5G/qsIkib6hYTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:13"]},"IP":{"Case":"Some","Fields":["188.68.56.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Ih8DWjMKxCMaLj2QHxyxFIPBn2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A39c79eVbWD4jmIA/VuGeT4Or0bsYZhqQxglkYDUGDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:15"]},"IP":{"Case":"Some","Fields":["130.193.15.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malechick"]},"Identity":{"Case":"Some","Fields":["Ih6Xa1RuYASKAZUCUDmbhTTU5Lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0H+YGBmny7O3q4JFRsV6GGjy3426gLbH7pGdz0HxeqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:11"]},"IP":{"Case":"Some","Fields":["37.187.122.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:f308::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DOOM"]},"Identity":{"Case":"Some","Fields":["IhCIEeARBX+Y1/r1LyHPTddR9hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pvzxxm0JqT8jwRYXDT402Wo8RioZ/PexYkOAB4vg0OE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:25"]},"IP":{"Case":"Some","Fields":["37.24.0.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NekoTorES"]},"Identity":{"Case":"Some","Fields":["Ig7JrQe8i2IqK0qta9pGjYsm9FY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQ5AOBCERRBurApzhgyfuKFyrUYDGwfpNotvAIBl2Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:09"]},"IP":{"Case":"Some","Fields":["193.70.65.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woodman"]},"Identity":{"Case":"Some","Fields":["If/1lM/mkaSgO4KOlZep90+HgFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fMpQl1WMKheE9ry5JQs1UiSqn6o6GXYkcNCo7dshmGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:15"]},"IP":{"Case":"Some","Fields":["209.209.11.184"]},"OnionRouterPort":{"Case":"Some","Fields":[31289]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:112::1]:31288"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["IfuqNs4EpBYKfS2FtA6NlOg2uf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q5KfsuRny0Pp01fQwlFn2m/A6N9UnjbHHVaxH5iTASQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:22"]},"IP":{"Case":"Some","Fields":["24.48.197.52"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fox42"]},"Identity":{"Case":"Some","Fields":["IdAHhswNW9wd3s86gWTAcWxlu/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Hoqk6NDVtQQz36l374/D9UEhxTiUeS9FQAgPVLgaMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:46"]},"IP":{"Case":"Some","Fields":["99.199.235.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8880]},"DirectoryPort":{"Case":"Some","Fields":[8882]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["revengeTourII"]},"Identity":{"Case":"Some","Fields":["IcnZ8WMyRiad64SnlJXoXAfoRm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDNgb0aC2BRxoZ3jAWkPRZpDTYptZRKrJhteFzWdBU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:10"]},"IP":{"Case":"Some","Fields":["92.223.105.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::9e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["IbnWof7NQeRZfAkQ3FzSjqrzXUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QkGgNIAkAkckF0fxNO/PKcKhe7eEgjB94vU4aWh5X6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:52"]},"IP":{"Case":"Some","Fields":["94.124.124.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["IbVQcsAPRSKFdlX7sPPiXXWlNXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W8okhCct3+HabJcoFoafo0ORxEfJhkxd3UmI1VsWW5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:11"]},"IP":{"Case":"Some","Fields":["109.107.35.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1348:14d:96dd:24:19ff:fe9a:5b76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange013us2"]},"Identity":{"Case":"Some","Fields":["Iaxu8VyGZBzmI7igjWQUS8rBSuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7/b+7a+ze2DQIBY8v73j3NRSKHUn+QdZ5fWTo8Q6ieI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:40"]},"IP":{"Case":"Some","Fields":["94.26.73.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blo2okzvxytmp"]},"Identity":{"Case":"Some","Fields":["Iaf6mhapkg9JouCcg6CXQ+xXSCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aektIX/ygEyL20NH6YGSmUN7vtBPa6TzNK5m4CVyvz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:50"]},"IP":{"Case":"Some","Fields":["85.214.39.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42a2:c700:b0c8:73c5:c1bf:e818]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["agxtorrelay"]},"Identity":{"Case":"Some","Fields":["IaGDqx8LIHtQoeCGh2hajZQMX4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I71oT9bUTbe2jJ44bNldVWJGGwxi4ZN0X75A3FTZq/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:41"]},"IP":{"Case":"Some","Fields":["80.221.44.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH108"]},"Identity":{"Case":"Some","Fields":["IaAQfgSEjmoqKy7cQ1YJjEU6Do4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eb95qq59CKMtRSVve6ubmRzv66/S7lHb79k6AFGlDoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:10"]},"IP":{"Case":"Some","Fields":["192.42.116.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0158"]},"Identity":{"Case":"Some","Fields":["IWZqJf+4nXS1+Vd9b6i7fqfMd7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HghfhjITsJqMRTFmnOFJLcAcJkK3X8pgQvu4a+Pflug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:18"]},"IP":{"Case":"Some","Fields":["185.220.101.158"]},"OnionRouterPort":{"Case":"Some","Fields":[10158]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::158]:10158"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["red22"]},"Identity":{"Case":"Some","Fields":["IV5mFhnNoU41QzX4HJpHX3jxzYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VD1PZdRMAmXB+b2KcZGUwAkdWIdFqR5GcWSnq9GiB8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:00"]},"IP":{"Case":"Some","Fields":["172.105.47.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoarseSupernova"]},"Identity":{"Case":"Some","Fields":["IVzCjX4nOuMwjwQeRajuO6bYVlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpvHmpEsiLRmKMOSCmB6dTrJ1XmpBT4XzmVRjWbUBt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:06"]},"IP":{"Case":"Some","Fields":["185.140.251.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange013us"]},"Identity":{"Case":"Some","Fields":["IVYWUn+5ftW+C/jSFmvbRO62qEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DUDx9sbOTc1gcRaPSMd5nk3H2AA88FPfpq0MUjWf52k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:33"]},"IP":{"Case":"Some","Fields":["94.26.73.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["IVJKK8bEJ1sv3CPw/yNEttj+wlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4OAeXu1Vg1wnV8V2RMnfl+H/ILPn4Mt7bh/2Epkc37o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:34"]},"IP":{"Case":"Some","Fields":["195.90.212.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Polonium"]},"Identity":{"Case":"Some","Fields":["ITl+8HBFM9jLxYI4NztFjb41plU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4LwIatVeNLnQ5tXVCOoj849eLLI5xh+kObyS/2VcAEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:15"]},"IP":{"Case":"Some","Fields":["45.154.98.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tamanegi"]},"Identity":{"Case":"Some","Fields":["ITEPSAZqTKresr/TJPCzj44USNY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hfCBahlA87J4VeAMp/bkrthFs8eqXDz08nNmKAWOT1o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:43"]},"IP":{"Case":"Some","Fields":["212.89.225.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lavaronn"]},"Identity":{"Case":"Some","Fields":["IR8DPPmSzBQZxXvleRVvw0UzvVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2J05c+gN5sm8obGdpnZDxc0LeNn7iiGoDg1GhWca7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:51"]},"IP":{"Case":"Some","Fields":["92.232.216.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rlyeh"]},"Identity":{"Case":"Some","Fields":["IR5Ob/N+OskIvZNS8kdVYmkGMxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["959O0pMDJBeKK1PAy8UNlPon5AOKERjpAj8solLpXGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:58:59"]},"IP":{"Case":"Some","Fields":["54.39.73.124"]},"OnionRouterPort":{"Case":"Some","Fields":[6672]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nighthawk"]},"Identity":{"Case":"Some","Fields":["IRnlpLX0IBZb9d8ZpaKPRhD/0QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZvBPzwkpPn2L1HuAuB9GvulqUaPaoOqcMwSLynxtNBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:21"]},"IP":{"Case":"Some","Fields":["78.47.36.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex56"]},"Identity":{"Case":"Some","Fields":["IRh93VUmBZV7LuWry9oOGSUSk+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eBkvFAHui3zR3uMPy7/795XPV5lgH3DGi60g7c+pM3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:17"]},"IP":{"Case":"Some","Fields":["199.249.230.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::145]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heliodex"]},"Identity":{"Case":"Some","Fields":["IRUk6F6EiRCkkjeDnNGsNDJKQbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rj75o4i9LJFVctzRzwcsrPJtdA+fK58IVXd0QKyOIX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:35"]},"IP":{"Case":"Some","Fields":["51.148.150.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay"]},"Identity":{"Case":"Some","Fields":["IQ6bSuFNeGJxBe7b2o0sPvpk1II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oNwGKFWY5MoX2bQo+WwLEmjVLcc2DkqdLZ5v8kZKLuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:28"]},"IP":{"Case":"Some","Fields":["50.46.237.184"]},"OnionRouterPort":{"Case":"Some","Fields":[49092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoLooseEnds02TrSrvr"]},"Identity":{"Case":"Some","Fields":["IPM0m+p4PFFyuWea5GA4oM4qxhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6BX0EWmLlbxrTUsRHcT9uBKlghDwVtCr85CJI7JsKAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:14"]},"IP":{"Case":"Some","Fields":["74.208.37.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:19b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enjutoMojamuto"]},"Identity":{"Case":"Some","Fields":["IOqi+u4KZLeMKUU2ujv/DXSfAOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qY7Jor02o88MBs0amB0dAlAkHzeVNWSKiQQTQtDjw0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:51"]},"IP":{"Case":"Some","Fields":["159.147.104.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopeforabetterworld"]},"Identity":{"Case":"Some","Fields":["IODdOtJmGV9GIOgzS0z39Ro/IQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wFrX+YPSydZK4NtAc3KgmHhbZ8Les0kLH+e3Q1WiI4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:32"]},"IP":{"Case":"Some","Fields":["188.68.45.72"]},"OnionRouterPort":{"Case":"Some","Fields":[483]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:46d::483]:483"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ariel"]},"Identity":{"Case":"Some","Fields":["INfTFzhrCwI3gQ7Qn2DwYUfOnvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h68bWu9JErr+s+9eGTVRrB93QXN89JSu71MHF71cVkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:10"]},"IP":{"Case":"Some","Fields":["80.82.78.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6c8:8000:22::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx6"]},"Identity":{"Case":"Some","Fields":["IM2TPtxyYLGQQEdbJP1rAbc+lLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fjJEKM93eeVwF03ismpRSWkvbTI1jPc7k29gMQrGzCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:56"]},"IP":{"Case":"Some","Fields":["51.81.35.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::8c3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NuclearCat"]},"Identity":{"Case":"Some","Fields":["IMrTGSF9g3vQ+htnGKRzwk/3ihY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTYJnrXCeW+42nlN24YZRzP1x9Q4ryveaN4zEgOKyBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:57"]},"IP":{"Case":"Some","Fields":["209.209.9.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:222::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RockyMountainRelay"]},"Identity":{"Case":"Some","Fields":["ILv/3XmeCd2a24ZbO5VggXDb4xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WvRBOWI/6+0epkduIxGj983Dj+v818bU1YrRZVHmkt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:07"]},"IP":{"Case":"Some","Fields":["97.121.188.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1147"]},"Identity":{"Case":"Some","Fields":["IKG1V4QFeITbi22QAmhk7eFFQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2fETXfFPkLTmTMus+YOw/J6CPat0VEJgLhgJABnwF8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:01"]},"IP":{"Case":"Some","Fields":["185.220.101.147"]},"OnionRouterPort":{"Case":"Some","Fields":[11147]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::147]:11147"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohhiMarc"]},"Identity":{"Case":"Some","Fields":["IJyPgXxmJhHRKmDt5xB44j4X0c0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FshQQL81zpN7d/6c5AlT5yFu1IfMBktJJi2Mg9Pd5+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:19"]},"IP":{"Case":"Some","Fields":["103.251.167.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::21]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kalleponken4713"]},"Identity":{"Case":"Some","Fields":["IJsoty7BuO5ccEMen+gr5YCeDK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oh4lDVyrS3aeDL3dWDTfh8uUeo4v/qeyAM74yFSiyJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:21"]},"IP":{"Case":"Some","Fields":["83.209.9.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet1"]},"Identity":{"Case":"Some","Fields":["IJdNKOtmjmidQlYEbg4yA0N1oKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mzw6w967chkAHlzXc0O1IBSTWrgbaYzdH+XfH6MipRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:05"]},"IP":{"Case":"Some","Fields":["46.38.236.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:ba4:88e9:eff:fe89:3637]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freja"]},"Identity":{"Case":"Some","Fields":["IJa8/ruVoRNPOfz4zrB2/0GitIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v08QEMuD8+uaE2d3p3mTcyb0njD4ra1a4qmahaL0TUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["194.88.143.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Temp123"]},"Identity":{"Case":"Some","Fields":["IJR/jZZwMdYYEBX2vQ+qpJ/I3bc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s0q/mTEVX18w35sCpPyrSBq+NV6DgDxNlLX0a0J9HJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:51"]},"IP":{"Case":"Some","Fields":["18.188.59.68"]},"OnionRouterPort":{"Case":"Some","Fields":[16000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RogueSwitch"]},"Identity":{"Case":"Some","Fields":["IIHBaWskmn5m2v2xRzOFbWitthU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbQcSbpRF7/Rm4ZbKmajR3WTSyd4DFrfeMPeiWVNYTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:38:48"]},"IP":{"Case":"Some","Fields":["78.80.47.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["contabous"]},"Identity":{"Case":"Some","Fields":["IHa8UhljIvheaWsZn+aww17vafA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DhPdRWHcSicxI4VtzTOAraHvlcRX0G6D52a05S42tn0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:40"]},"IP":{"Case":"Some","Fields":["209.145.63.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:3007:1287::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kenobi"]},"Identity":{"Case":"Some","Fields":["IGsrjBqx4gwCz+KpE6qN4WmYD8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TuDMnvoVz5Qg+DVA2Z1xerNYFT3E7zGjD8ChBpjOp2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:53"]},"IP":{"Case":"Some","Fields":["51.158.154.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicTor4"]},"Identity":{"Case":"Some","Fields":["IGLG/kDtYynwLqyPuN47aC+ZEOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BKxqCooqClKyNHD6A9ReBVo3gwb8jJEthqpTKr6qpFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:18"]},"IP":{"Case":"Some","Fields":["62.182.84.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Arbutus"]},"Identity":{"Case":"Some","Fields":["IEd16aL6SSjhWJueYwfLPRBOhJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IhAJXvQML1kowiGvJWBU7FzFxpuCnUubxPnW0a+Xi74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:51"]},"IP":{"Case":"Some","Fields":["162.156.191.108"]},"OnionRouterPort":{"Case":"Some","Fields":[55000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Janus"]},"Identity":{"Case":"Some","Fields":["IEdoPd2lZCq0/JNBTKRAf+EAOBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["srjV8TcFDTzAyXoNxoSqGLWYULTC1/h63ipakJ/L+Ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:25"]},"IP":{"Case":"Some","Fields":["92.35.4.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SXbqvQix9zBHtEnBY3R"]},"Identity":{"Case":"Some","Fields":["IEZfPf1396yV8xpNNXJvttgvDmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q05lz06qpUH6nI9aAwotreWCU0KgHJ7R+XEw9M65ftA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:44:22"]},"IP":{"Case":"Some","Fields":["178.78.212.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scaletor"]},"Identity":{"Case":"Some","Fields":["IEYsul2kwtljVn0X0LcklxgRSmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSMhbFZiNjKbBq5F7xOQWa757+5Mykaikhqfmy40jWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:13"]},"IP":{"Case":"Some","Fields":["212.47.229.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:23a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mytornoderpi1"]},"Identity":{"Case":"Some","Fields":["IERrgbMrGXuwndxO/rFicyZp+d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ppVCruybVVlAed6FpHmkSgmZo1pVHkSndldIHtWlQ7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["82.213.247.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LunaTor"]},"Identity":{"Case":"Some","Fields":["IDemVoxXcaXY/1xk/BgZJH5v7ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEXzpuIq6WmorSC86GqDeArnGnTcNmBv1nrzjmFcYnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:24"]},"IP":{"Case":"Some","Fields":["66.146.193.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bernard"]},"Identity":{"Case":"Some","Fields":["IDYYZiU72xoHHX6tN0ThhwT85vE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hb4MPMwnf8lQyiI6LXv+0A7uIJewQUUDzd3BnfRR4sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:01"]},"IP":{"Case":"Some","Fields":["45.92.238.246"]},"OnionRouterPort":{"Case":"Some","Fields":[6666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["n092c7283c"]},"Identity":{"Case":"Some","Fields":["ICMG/mhaq8uEy4JTRIDFaBnSRj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DFYlClVpNb2CIRu0o1RNmOi5JjQ3jtZswldbxjDFdvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:06"]},"IP":{"Case":"Some","Fields":["47.254.174.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ICK8s3RT3BaObLe02tEZrAcvLe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rp5nl6m7lo05RN8XRPCFWJyRnene5zZ8RqVo9a/lakk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:35"]},"IP":{"Case":"Some","Fields":["185.80.222.158"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2498:f000:0:216:3eff:fe4e:7134]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ICCQIc6LhzL47lfTE6Nv+NyCPl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XoiXQcsRt+elPQkWOe+4I0yBlstoTg3Hvps01Yh+tTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.41"]},"OnionRouterPort":{"Case":"Some","Fields":[10041]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::41]:10041"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0191"]},"Identity":{"Case":"Some","Fields":["IB/3Ns80BhNLKmL+WcgPFIBFiBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wdfCX/QaPyUAE6DQQhl7QL7+aJRqCmhOGr8C5NztSFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:13"]},"IP":{"Case":"Some","Fields":["185.220.101.191"]},"OnionRouterPort":{"Case":"Some","Fields":[10191]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::191]:20191"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode2"]},"Identity":{"Case":"Some","Fields":["IBcVtlSoaJTA6jVRaMO7fD+GpkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vpnZxIKXn+C/wfg1wVnoFPjkNMtC8kngK8NYyZ+QreM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:26"]},"IP":{"Case":"Some","Fields":["184.105.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::89]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DulciusExAsperis"]},"Identity":{"Case":"Some","Fields":["IANjBHPltn1NiY08lDBnC4Ox/8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zmjDyi8FxGzPEeshKfPUfOqY0rxVObkPTJEqNa9LnYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:36"]},"IP":{"Case":"Some","Fields":["82.54.68.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mbserver"]},"Identity":{"Case":"Some","Fields":["H/TVkasO0CRHXpSWm+1Yxu+3FUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GUJ/jEYg0qr6iGjUdbEwZSsMrFmDTGDf4u4V0DwWxiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:13"]},"IP":{"Case":"Some","Fields":["141.135.88.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thewatchtower"]},"Identity":{"Case":"Some","Fields":["H/DlIcWyCFdg7zpQ1q5AA2pED40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLTRm1ycNzbOX6I/HinkY2aUpj099mq1c5GcZpUQDdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:18"]},"IP":{"Case":"Some","Fields":["81.169.240.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid3"]},"Identity":{"Case":"Some","Fields":["H8VbblR4nLSu8fWp01xEIHiatd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoVqWql+Y0loT5/SBQYXNHbUXfmtBNTfWuMKG1h/xgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:28"]},"IP":{"Case":"Some","Fields":["94.142.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeachUnknown"]},"Identity":{"Case":"Some","Fields":["H7nMvgLPEJeOqxaUOXOsXFSPokM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AUzvTngqvBlq7RyHxgu2JiIkrq7Bb0fnAwFHVYn0Lek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:07"]},"IP":{"Case":"Some","Fields":["79.141.174.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uta"]},"Identity":{"Case":"Some","Fields":["H6RuWd3ndSs+IDEubcG3AnM2KVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAZX3QnkrwPcOr6XyLwkSZAp6cVht9vxBUkICUVK9eE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:02"]},"IP":{"Case":"Some","Fields":["5.181.158.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:8::12]:9054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["H6RLxRvyQW0+RMmq1zL3sUwNHAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0zEbGj3Aw8uuD2APO02e0Dp0UKNpq/lFOJmm7bhoKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:39"]},"IP":{"Case":"Some","Fields":["89.102.210.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["H5U6y/ufRM44VDt+nA4L4b3H6UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuxK6WsiPG1W6ishjTXEUTBJm4jgfsTAN696Ecjgphw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:25"]},"IP":{"Case":"Some","Fields":["185.32.222.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:ee80:e:fefe::41]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cducksy"]},"Identity":{"Case":"Some","Fields":["H4bKF+wZ0LZGI5vEnuUBSpi0OW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["naqRfpFEPF8pNem87mnMWSWMRSm0ieZvpU+cxwOF7qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:33"]},"IP":{"Case":"Some","Fields":["45.61.137.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PigsAreWatching"]},"Identity":{"Case":"Some","Fields":["H4QrNHpbnHD+tYIGC/mi1aBsi2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z7pp6EjHzdqkXiBu9e5qWPpTEepkmwpLPxtFckOFz4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:31"]},"IP":{"Case":"Some","Fields":["146.200.41.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unitedstatesofx"]},"Identity":{"Case":"Some","Fields":["H4N0CM7OkPji25O/0vwSHti26bY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3obn58dhHTxaElkuyODv1UpJRLIsexz0X6yy5tW3QYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:38"]},"IP":{"Case":"Some","Fields":["185.112.147.58"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toreto"]},"Identity":{"Case":"Some","Fields":["H3qtrr1hQdzqMg/oIdws+OfkS4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mG2euJXcss91zsHudOBOOj9eSYBdAZDZluf5U0k9aYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:19"]},"IP":{"Case":"Some","Fields":["79.143.186.17"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2009:4845::1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ballers1"]},"Identity":{"Case":"Some","Fields":["H3ct2T2iCmdF4zS6/8e5dlh2uxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntxIbTMT6Aic4o6RakkS+Qi6oGOsrbaV7aSIDOCOkpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:09"]},"IP":{"Case":"Some","Fields":["104.57.231.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VPSRelay"]},"Identity":{"Case":"Some","Fields":["H26182SdJXYkDJ0TR4lfbIoLeGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["42cdnA5reaD+2eC9X07ss6du7cvlUrZWfRIauHF1fvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:55"]},"IP":{"Case":"Some","Fields":["51.75.170.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9040]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dao"]},"Identity":{"Case":"Some","Fields":["H2q9CG9AuJCjPJPMRgbuaLMclVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCH1uozzVQYDvNDxLtE4q9d+GhYy8OsSxG+kAHIJqpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:55"]},"IP":{"Case":"Some","Fields":["199.184.246.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:124:1009:1::171]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterry2"]},"Identity":{"Case":"Some","Fields":["H2Q5J7z4vehb9HpeOs7WZjNUUfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S+g0roXpEdPXuAvWYWrSPa+16QgrbqJIfFduEUJVUYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:16"]},"IP":{"Case":"Some","Fields":["70.109.131.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perlman"]},"Identity":{"Case":"Some","Fields":["H2Fu+ufUVpYENy75YM4nvMiQYKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lk/rNjC0Dwxsh8DqmmwG+8NO/WyIuQ5PWMORqtHsUUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:52"]},"IP":{"Case":"Some","Fields":["45.76.86.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wut4"]},"Identity":{"Case":"Some","Fields":["Hz/kQmO7I80sLwiL3SbvkdLjeLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rps6DA2K64etwR+VEMYFBCk/W3FCLfhYRwf+sS1oHKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:09"]},"IP":{"Case":"Some","Fields":["54.37.137.112"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1a6e]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibksturm01"]},"Identity":{"Case":"Some","Fields":["HzuPlSJj2+6L9VE8XRIOu1mz3ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdF5uGjFa7OF+1e4MVq90/7Su1W50gzDxe3MmoHbqWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:31"]},"IP":{"Case":"Some","Fields":["213.196.191.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b441:8b77:46ff:9406:c292:7673]:9080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cerberus"]},"Identity":{"Case":"Some","Fields":["HzmOIOyHY/wt2Je82jfuJMRgaeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Xt75/wIjQGbrkdP/4/Wy7lk/p1aBS+CxmAtnrcnVTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:46"]},"IP":{"Case":"Some","Fields":["85.1.110.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhiteGoldeBlizzard"]},"Identity":{"Case":"Some","Fields":["HzU+L6vOgEkrFWVlorVDmvgWOCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qige+tsGdzrP9xCP93XTIXY3A2zu9Gxt3FpmmqDht6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:27"]},"IP":{"Case":"Some","Fields":["45.86.209.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f303:463:374::5ce7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["euphrates"]},"Identity":{"Case":"Some","Fields":["HzIpSQ+0Rkjj7m+MPuozu2zpdnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xL7CQfGBKttMy1CMJdjfcShoRWo7FFaN8UUmq4ylG+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:16"]},"IP":{"Case":"Some","Fields":["162.251.116.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Hy9jTW2Hz2xTWME2f5vV+SbO8/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6P+sYT3kRmQRKjey8FCv9Q8piuXvAOKUKvn/ZOanyk8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:00"]},"IP":{"Case":"Some","Fields":["188.68.58.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Citadel5"]},"Identity":{"Case":"Some","Fields":["Hy63AmjOnhjOhk1E15PiCR885yw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmhjYf/nREd26VahyccNgc0TuKgRF/YQ8biQFsNP0Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:52"]},"IP":{"Case":"Some","Fields":["46.4.57.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:1465::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HyTCXgqX9Js/MZUCeATqhQc+0aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fOzpK2TuTZBocxt3SvKTUIlIXIRexK2An2M/eoHMzj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:55"]},"IP":{"Case":"Some","Fields":["185.204.109.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plutoa"]},"Identity":{"Case":"Some","Fields":["HyB3vwHK8j+BnUiSqJiDGWq6hCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNJZovZMrHR/hldYT86e472YaxQRCitny5cZNhhJOkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:46"]},"IP":{"Case":"Some","Fields":["37.235.48.247"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:48:37:235:48:247:1]:7654"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Hwy/n53h43L5abox0tIU88pd3s0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6q5UFBJO6+VupvHGgmrQkk9BzpUyuc8v0RC9ALoMa4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:34"]},"IP":{"Case":"Some","Fields":["37.122.208.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sepiidae"]},"Identity":{"Case":"Some","Fields":["Hv8nBNGb9FMFu8ylPitZo9F6buM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QTWIpq5HSpULwT4c1eM6HMJMJIUQybvVnlI80rH2i8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:00"]},"IP":{"Case":"Some","Fields":["172.0.47.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cb1820"]},"Identity":{"Case":"Some","Fields":["HvuszSigf9ateqbxKTF31xOX6Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+IGRuJDj8PMWv4gJrzcLlp/EkW4syZvffH7lD/wOJUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:40"]},"IP":{"Case":"Some","Fields":["144.76.3.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:7385::2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["initramfs"]},"Identity":{"Case":"Some","Fields":["HuolEUcYCP0mMi9k1paayxiTZEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d+1nyFC3Lrv3JF+MoXO4mdkJPhBgF+yw2vVgoYmBmBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:56"]},"IP":{"Case":"Some","Fields":["114.35.245.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b011:4006:1d03::b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuackQuack"]},"Identity":{"Case":"Some","Fields":["HuFROfOJ/aJEACOWB8tMC+XdjHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["72IOjDQe4yZdAwBaURVK4kPJLOekLzO2QNF0xJedPE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:56"]},"IP":{"Case":"Some","Fields":["160.202.162.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W4LS3R"]},"Identity":{"Case":"Some","Fields":["Ht5gjF4ZDIaCovgnZk51hBYQRnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9H6GiJaJW3BO9hTMhwifjGxwMtxL0NjI54dkf516gTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:51"]},"IP":{"Case":"Some","Fields":["185.156.175.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DynamickaCibule"]},"Identity":{"Case":"Some","Fields":["Hsd1Akp/L09Gv+HnxYfarNxSBNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0INPfyrHMGF6iWRHLHwtogSqfO4XIGFmwYnnQZfTybY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:22"]},"IP":{"Case":"Some","Fields":["107.189.28.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f1f6:b1b2:cfe9:7a71:69d1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ailuuchequai"]},"Identity":{"Case":"Some","Fields":["Hr/HM8zZUvf3YW67p7xrjm8vDLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vr3zCnGYJ5pHXlrjJ+U4WAgWDz+46Fq328Ou2XEPW5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:45"]},"IP":{"Case":"Some","Fields":["94.130.58.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:2613::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HrpWx2SxxWviW0BchMgsWPEmsbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ILpLy6ycKpHR9+fs9MjM4ssFTS71IBTWyERwbl89hbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:56"]},"IP":{"Case":"Some","Fields":["188.95.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobjoe1"]},"Identity":{"Case":"Some","Fields":["HqUtHS8F6/6QuivuytewOcK9qpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LFgf6T51bDL7wWTnxSm1akp/UWK33DIij/xecn7Mybc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:01"]},"IP":{"Case":"Some","Fields":["75.58.62.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:6b8:800:0:8000:0:3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipdb"]},"Identity":{"Case":"Some","Fields":["HpsyoAxZSwMll9i2od95tzRTFTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZdA+V0ZIKPttcv3EeiSdivN6IZHBDfVrmJIoXeKA5Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:55"]},"IP":{"Case":"Some","Fields":["185.220.102.243"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::243]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["HpRjTMjTiSeaHF6t7G6BcXnXT/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mRgctjn5AKr2tDTeb9hZ8+jgXff9lua0Ak+94gQ2ho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:45"]},"IP":{"Case":"Some","Fields":["23.128.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv09"]},"Identity":{"Case":"Some","Fields":["HoWY4eKnR+dZlAF+aVc16yqGYw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VeyW5BL/B5Q1T4DNH6FlWWApKyr0a+ckRgO6o9bE2CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:43"]},"IP":{"Case":"Some","Fields":["162.248.163.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoodColours"]},"Identity":{"Case":"Some","Fields":["HoJVc/jv1WNeXB47hcpkfPyEuoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vnl0GHclddgvzWrfMrUCpHuvkm9/9TrzBO5kvdKLWDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:45"]},"IP":{"Case":"Some","Fields":["23.105.163.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bambam"]},"Identity":{"Case":"Some","Fields":["Hn/jZKgUNAy9eaorM2XnGNOxpnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1UAkYF37T8lXdP7pOiFzd1rzqIeXX1THNB3LurHyvTU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:40"]},"IP":{"Case":"Some","Fields":["90.231.149.18"]},"OnionRouterPort":{"Case":"Some","Fields":[39062]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorNY3"]},"Identity":{"Case":"Some","Fields":["HnOsOrvVUAr2hQwtWSw2NzRFT6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["23OTNBIti+L8Pkl1nvt68vIEnVawwXUbYlNkGtD8+Hw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:43"]},"IP":{"Case":"Some","Fields":["107.173.89.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste16"]},"Identity":{"Case":"Some","Fields":["HmTazhN6SmIj56SnMGCiLspG17M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PRvy/6jKCr7EgUvaGSskdfkKNfod/VuX2uYLT4H+rAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:31"]},"IP":{"Case":"Some","Fields":["91.143.87.51"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2fcf]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blankenship"]},"Identity":{"Case":"Some","Fields":["HmPCztO23c0QeLKk8QyKSL0sMaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwUyneQz2zJer8ROXZS4uUO2f3GuiL/h70lo+7GYEb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:27"]},"IP":{"Case":"Some","Fields":["13.124.18.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hazeltine"]},"Identity":{"Case":"Some","Fields":["HlYYwHnXTPmuDFNw3kxuGv1cCzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xSoh1yZQMlXVukCSvuE1rBRNSR56vqceI12cZVUaoVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:12"]},"IP":{"Case":"Some","Fields":["62.113.216.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex43"]},"Identity":{"Case":"Some","Fields":["HlE23cUvrhIZII8Ka62wumJYfuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwJH781jphRacXHrYVKbyIppE3vi4xsTIuvv62KUrHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:23"]},"IP":{"Case":"Some","Fields":["199.249.230.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e642]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["HjwZfIySISj/BJhW4FNv+ctOXow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JHJMiD3Vgr5eD7WzCE6ykIdLglkIsn4Cf25UTKH0xRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:50"]},"IP":{"Case":"Some","Fields":["185.244.192.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slotor03"]},"Identity":{"Case":"Some","Fields":["HjJu/jVauYkSJyr3JNWRdrXCN5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnCM5yJDkT+2r2NH3mH7cw+Pp8qUI56QZbEMRKCznLY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:49"]},"IP":{"Case":"Some","Fields":["51.79.221.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redbeans"]},"Identity":{"Case":"Some","Fields":["HiOj4IHiyALs5hGQwhTwcjpmlxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EJVbSdDu1ikdFfR9r7jLcadRStt9YPcrnHqwLEQOzkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:50"]},"IP":{"Case":"Some","Fields":["45.35.130.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allstars2"]},"Identity":{"Case":"Some","Fields":["HhvvLI4WlawCHJAQQl01CAIEk3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XvpV1NRHladCugP7Crc6FWXRvNCabKdTKZ912dXbPuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:32"]},"IP":{"Case":"Some","Fields":["51.79.170.198"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams08"]},"Identity":{"Case":"Some","Fields":["HgbK07qQm2dhjkjIJQgcQK83/zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3FWz3OS6Ugk9hiJIWtl1sd23+0kb9An3eTJU1vxLY6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:59"]},"IP":{"Case":"Some","Fields":["45.151.167.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::d]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Goliath"]},"Identity":{"Case":"Some","Fields":["HgPYHJdE3g48nebm+98d+drqWvw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOFt3zjpdu8hqIb9Uqn026gAktoE/rhd6vMcn3WZTjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:40"]},"IP":{"Case":"Some","Fields":["185.107.83.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra16"]},"Identity":{"Case":"Some","Fields":["Hf45dJPQeR3mPy1upatuvLe5hxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixd23b/En8RhZaTHqIF7obj0zQjzyITDeCKuwF3iyy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:54"]},"IP":{"Case":"Some","Fields":["193.218.118.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::155]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charybdis2"]},"Identity":{"Case":"Some","Fields":["He7NkGr+z0lrfcHkCCn0VjUXtMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CrialbvMQ6F833cCIzkwmr3E1qLKrSLHK+RNPeahLRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:50"]},"IP":{"Case":"Some","Fields":["92.205.161.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlindedByTheLight"]},"Identity":{"Case":"Some","Fields":["He0RMFLxpGoAjfrOv0w/IMYxPUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbnEnqeAu4GLD/RBb26pGotJVwPC8pcVuqgzJW7txak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:26"]},"IP":{"Case":"Some","Fields":["45.11.57.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["HorrorPicture"]},"Identity":{"Case":"Some","Fields":["HecFBMbpuyI+LsT61FxowHpq6fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZMdqtvEtfLmXbViYz5ifV70Fjb/jwiAZakzlyviGFdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:06"]},"IP":{"Case":"Some","Fields":["195.122.181.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorUser793"]},"Identity":{"Case":"Some","Fields":["HeRDw9nA3EuwFEGA2vSjwlu8kew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RhZ5eT/gZplz6La9dBxB8YeCAatR0eCYhQp30vwZjGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:18"]},"IP":{"Case":"Some","Fields":["178.19.96.125"]},"OnionRouterPort":{"Case":"Some","Fields":[27941]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::d3de:3e4a]:27941"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DETL0001"]},"Identity":{"Case":"Some","Fields":["Hc/ksCIWVwSX9+g6W2akP2Hc84U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["scXDXCvQ5qxfn9bZmYX+7w33YHCi8GkjZVoFoH9uzh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:39"]},"IP":{"Case":"Some","Fields":["89.247.201.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GaladTor"]},"Identity":{"Case":"Some","Fields":["Hc9KAxr5lM8Ws9P86+wO3KyQQhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VRfVBG8N5aU0zuNO+kaTYGlzwpzsDRpurwZ44wxb9hE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:34"]},"IP":{"Case":"Some","Fields":["77.182.171.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:c23:8429:c500:ba27:ebff:fe7d:3f4a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sgtor2"]},"Identity":{"Case":"Some","Fields":["HcnfKEL5W1Z5DwfapwvvqfEUSXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ymQHQcok+1UiLGxpLBwC/KVjvMmwiOdCS1Rl30ZU780"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:35"]},"IP":{"Case":"Some","Fields":["45.61.188.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonimaCasalserugo"]},"Identity":{"Case":"Some","Fields":["HcQr14NnHih5RXIkdYg35n/H5kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yCFbEqANuNVs+DZ1RlXOtQJdixbiZ/4AOHTesqWYBj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:24"]},"IP":{"Case":"Some","Fields":["79.41.243.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv128"]},"Identity":{"Case":"Some","Fields":["HbrMMUhvxnD71AP66Hc0LsaW1Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bia/Mrpl1hjEPNQR8gpSOdt0eV8rZLt/S3kdaiPRvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:38"]},"IP":{"Case":"Some","Fields":["192.42.116.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5528]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex14"]},"Identity":{"Case":"Some","Fields":["HbJd9Z2qAbW+PTzriv7RFZQOvos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTz/pqAjToUDRcZErjt00Y2BR37W3BbBtV8XW0oiIqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:09"]},"IP":{"Case":"Some","Fields":["199.249.230.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::104]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fenrir"]},"Identity":{"Case":"Some","Fields":["HajW4BCSsglo+Z1oYcXVG4AltRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LBjklCIBp1sfeH2tWYKVaySXHiMOUndHgORsRTWL94Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:00"]},"IP":{"Case":"Some","Fields":["139.59.58.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HangTheDJ"]},"Identity":{"Case":"Some","Fields":["HaiI1H5D7fzGDLwOH98MikPWQ0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h1SeX/cI0S6dOdWWmKRoswSu7oWFbza1cir98TzbX0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:53"]},"IP":{"Case":"Some","Fields":["5.2.77.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["incompatibleultra"]},"Identity":{"Case":"Some","Fields":["HZ6nkjHN6PxdUYECKvjPBtg/4Ik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qyc3QMiZHu8wOMMS270fz58vOZf/tm75cVZz6Ft3aro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:38"]},"IP":{"Case":"Some","Fields":["82.73.87.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarsBaseOne"]},"Identity":{"Case":"Some","Fields":["HZqQuJ4/9jMlquEq9zWIKgFlLhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d63P2mejZfcc3b2mV99dDqoiNUPD54G9iSt/Fk3xdsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:35"]},"IP":{"Case":"Some","Fields":["71.230.136.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boxendotspace"]},"Identity":{"Case":"Some","Fields":["HY7VTqnfLUZVitAJbdXZ3Sl/E6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJ0XXvVD9zm8c0SuJGndxZIj8kUrC8CT/54Q/4Of/lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:26"]},"IP":{"Case":"Some","Fields":["193.182.111.182"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG4"]},"Identity":{"Case":"Some","Fields":["HY3k70v6ONNm/OckncQaVA2OHrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mSK5Tckjw/alIf9fwu+2kfAc3LI3EwsU5j6/dc/j4mI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:51"]},"IP":{"Case":"Some","Fields":["193.189.100.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["friedShrimp"]},"Identity":{"Case":"Some","Fields":["HYrMH18o1SRGMD0eGXoaO5/YFQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/m3oUEc3GE86C2c6SGSQurCkgD4wKr5vjsNOpDmxfKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:23"]},"IP":{"Case":"Some","Fields":["199.193.115.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HYEnIhm2edURkwSZrYKGvNj2xEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9PyCo1rHAsxTq1CBU+B/7I/fndlcXyRMlm1NjVZNf/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:02"]},"IP":{"Case":"Some","Fields":["37.191.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[44100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe4b:98c7]:44100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORu"]},"Identity":{"Case":"Some","Fields":["HXo78KiQZFwB+uZZCgF7UY+2Ocg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ryojvk0FSmz20N5YosQe16azHcdUAV0Gyk1SV5QRyFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:10"]},"IP":{"Case":"Some","Fields":["194.116.217.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HXVokN9CxQ6cLp8Q2v7TiDklJ9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OFJR84apw9djhu69RVQRjA0cFmpx2odwSekv/mkFU/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:58"]},"IP":{"Case":"Some","Fields":["213.54.83.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schumacher"]},"Identity":{"Case":"Some","Fields":["HXAtpD1Yj+nTCNOHmm9eYbsuzPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1UJ+QZkUZzzhq7oy8fEO/El01MTYDTNLILCA6gnMypY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:54"]},"IP":{"Case":"Some","Fields":["188.40.147.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RevRun"]},"Identity":{"Case":"Some","Fields":["HWgZ1YMoUUqUcIJdawixDulfDaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+E7YnFrGv7Kny67QZKpP9z35fEfLn6td/VewquKDk3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:20"]},"IP":{"Case":"Some","Fields":["185.107.195.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor03"]},"Identity":{"Case":"Some","Fields":["HWV3Hmg4PylNTxExsZ32SYnu34o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ki1qAZMpnf64W/4nJK2saZ3YjzaRUgUBsd30+7JBO7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:38"]},"IP":{"Case":"Some","Fields":["198.46.166.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay748635"]},"Identity":{"Case":"Some","Fields":["HWTBS343UEXX6bNacrcRvi+Hlkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J9RgWGkw14mPg2eOp09IXeHI5RdAfu4vB1ywKmwKL2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:46"]},"IP":{"Case":"Some","Fields":["88.209.77.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9846]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vuela"]},"Identity":{"Case":"Some","Fields":["HWGonxD4IYZg5JWOtUgrF2ighfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DB164LzNHLkCMOREIKahen4MYE7ClOu1HKeJxsBGA3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:48"]},"IP":{"Case":"Some","Fields":["107.189.11.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darklab7"]},"Identity":{"Case":"Some","Fields":["HVqX0z3ikF5Y5qkna78W2eZsg6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["guskGTH0YkqPYHmPvsD4IvA7rMf3PygDvl60RGsU5jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:19"]},"IP":{"Case":"Some","Fields":["89.58.30.164"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isbear"]},"Identity":{"Case":"Some","Fields":["HVT3zLfHoYXuiqVhbAed2SPrV/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BkifAz36DdVaFoYi1QQiB2/NZx4YK8TiXIXdIbsEjaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:12"]},"IP":{"Case":"Some","Fields":["176.36.117.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BaronDeLaPwnerie"]},"Identity":{"Case":"Some","Fields":["HTiU4kjPjasbIr6YNXl5MVSNwGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["boAs4as9mtPv7/1vfvOz/ZfqUdRhGIYLmI1J3K3pfLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:53"]},"IP":{"Case":"Some","Fields":["188.149.184.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9668]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalmass"]},"Identity":{"Case":"Some","Fields":["HTF0M4oRMaU+CYRD524RA83tANw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pJr86vpl+YnmQx7KVmqv3Q8SXNPSkPcqhuIStfWA1Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:56"]},"IP":{"Case":"Some","Fields":["185.220.102.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["HSQpIRNhDwCW/MVUZk7DO+J6T1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmqxDTlIT56lyK5PWt8c/JFll4Zjefd5t//H9E6yj1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["95.214.53.96"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3560]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["K4M1K4Z3"]},"Identity":{"Case":"Some","Fields":["HR+lDWBf3I9tw5oKYKcjPdNdAAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7dleKz3Azpv7t8nbfr0YCtt7MbqaWrl2YELn3YbJSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:10"]},"IP":{"Case":"Some","Fields":["191.252.111.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv08"]},"Identity":{"Case":"Some","Fields":["HNyszAaqYbyNZ5T/otokivLntis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yj58yVo4Ue5SGZrSRAStfOO/uC/2VL8oyIBG8AvcgVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:17"]},"IP":{"Case":"Some","Fields":["162.248.163.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei00"]},"Identity":{"Case":"Some","Fields":["HNSPTtDxgh/78ZQIAqE+79TCdQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0GaPlywP8JIgmhsFzgRpj/4R9w4BxN6oR0Q3XHjoeb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:42"]},"IP":{"Case":"Some","Fields":["176.9.40.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:518e::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE68"]},"Identity":{"Case":"Some","Fields":["HM2ryHEGeb8wr8D5c6iwZaKThSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V8n4uSp23VKseSP48YAUOeN5X+k1WNr4+zmwwLG0dzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:15"]},"IP":{"Case":"Some","Fields":["37.221.66.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:109]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lamacarena"]},"Identity":{"Case":"Some","Fields":["HL5UpA0cw7zaZbqPyR4SwKAa41o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BhGVfO7G2bSLEzrjE2kZY1LrdSlDGgSt62rjf+2AI7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:58"]},"IP":{"Case":"Some","Fields":["86.104.194.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["HKJrD1EhKY/g0QRDEFEQEcNAeKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6IHhAjAJsfjO0cHqayTlxLo740FlUVC+Mn5obTETscM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:51"]},"IP":{"Case":"Some","Fields":["178.17.171.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstTryFFS"]},"Identity":{"Case":"Some","Fields":["HJ3+RFUlGsk+OmKPk78rmswJVtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2Gzji7gVbNsZ+QNKGhmu0MT9OvzBEat/vXPGCUFudA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:52"]},"IP":{"Case":"Some","Fields":["77.11.240.153"]},"OnionRouterPort":{"Case":"Some","Fields":[15001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongFlame"]},"Identity":{"Case":"Some","Fields":["HI7QQ6FhF0Y+qcHUYFYAMDP2hvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYQKraF3b4IY32SzIVA9OgXJesERt6T0JbwTsowKZeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:51"]},"IP":{"Case":"Some","Fields":["199.58.85.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["T0pS3cr3t"]},"Identity":{"Case":"Some","Fields":["HIg/rJpafbwku12dE7RHrnxOM7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zr19yp2rX5C4LxEZnEWZgwHxBKmFvX28kqiT1VWENAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["87.120.37.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TheRock"]},"Identity":{"Case":"Some","Fields":["HITIkZiRHQyJYqplw+TmUwB1OW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/nf5nKizKVLorxp+OPbw+1SdqUMMzENtV1cWSMNiijs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:29"]},"IP":{"Case":"Some","Fields":["188.151.213.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BabyOnion"]},"Identity":{"Case":"Some","Fields":["HH1xolgd55xc/E7R/3XVvjDwG7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rpY/4/auA3J+fM1y5rudeN2BA864NX/6ywatsUoXloU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:48"]},"IP":{"Case":"Some","Fields":["51.15.243.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:1a12::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["HHznLAymVka3JzwbaxTIqiEGkL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rDo0h5zen6wiPe078eT7z2GnV4Kvn+OoOIpKrIl6TQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:18"]},"IP":{"Case":"Some","Fields":["212.192.246.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HHxoQdC38QtyYI3Tf5kvGGr7U0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5B+YfGXpUVEWBjl1z9MI4EE694UV9vC6lnEJbSkppDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:30"]},"IP":{"Case":"Some","Fields":["65.108.58.113"]},"OnionRouterPort":{"Case":"Some","Fields":[10101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:8bcc::1]:10101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RIGALAND"]},"Identity":{"Case":"Some","Fields":["HHkmFVHg+Tig05WeHy10pLSCY/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KS4bJE6yt9SO0wHUM9IeZfL3yxa+28KY8pqw3+yvntg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:53"]},"IP":{"Case":"Some","Fields":["94.140.114.255"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipea"]},"Identity":{"Case":"Some","Fields":["HHcAqU27/s+iNMGt0NI/uH0ddZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ffAoC6mTHJstwVq28sDIXvzyalRmRH7bF6Vtjj2XgAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:19"]},"IP":{"Case":"Some","Fields":["185.220.102.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nerdhere"]},"Identity":{"Case":"Some","Fields":["HF/KIixrwpdCSqoObJdpyYw/J78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3j34gdwMvaxRjcuovyF64espCY3SyYreI2w9hmZYiMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:29"]},"IP":{"Case":"Some","Fields":["45.61.187.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d3xtor"]},"Identity":{"Case":"Some","Fields":["HFPyE8m7qy6zkBXdWhvInOFSoPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EKec2g7LV8bRanM443Mooq9Hl8j6QBzjgtQ5ji3gRGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:10"]},"IP":{"Case":"Some","Fields":["79.115.185.175"]},"OnionRouterPort":{"Case":"Some","Fields":[18213]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":{"Case":"Some","Fields":["[2001:470:1f1b:1cb::7]:18213"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stvnrdgme1"]},"Identity":{"Case":"Some","Fields":["HEozUH5AG3kmPQKNGSf09UrYNYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0t8FG0zmGC8oAMs9kv8bjtqBCf6X2voqz1szRHyH7fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:20"]},"IP":{"Case":"Some","Fields":["176.123.1.67"]},"OnionRouterPort":{"Case":"Some","Fields":[15901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::b0]:15901"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid"]},"Identity":{"Case":"Some","Fields":["HEFHveMe1lcV/hzwiFcOFFv0aqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LR10wNuZ9nmF46h5PzZgpupDKZr+VExlRFHkjPsFWL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:23"]},"IP":{"Case":"Some","Fields":["94.142.244.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange020ca"]},"Identity":{"Case":"Some","Fields":["HDxK7wNtEgLuxiMijrpftxkx4qM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQzXjvKYULFeh5paxc8aHGWcJaU4NtNI0rXLlGph4ts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:17"]},"IP":{"Case":"Some","Fields":["162.250.191.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theherosanctum"]},"Identity":{"Case":"Some","Fields":["HCHv4xugtVsTWVl7C0bzcYTfzL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A+vcC4hu2QPKGuvhz0UZVVEfLmS4863SsBhw8nDq3iU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:32"]},"IP":{"Case":"Some","Fields":["131.255.4.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpongeBob"]},"Identity":{"Case":"Some","Fields":["HA0K8/8FzLuktu0mIZakxadhAuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sLl12qNdugm70rS6WsQx57z09KEqCTRKLv1378ggnbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:07"]},"IP":{"Case":"Some","Fields":["104.244.76.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomFries2"]},"Identity":{"Case":"Some","Fields":["HAc2zzdEo7h8LSJpuL0ziMfmBVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQaKwUK3eWU8sJom/e1x6zu51KUTC+d8QWtx8+bE2Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:42"]},"IP":{"Case":"Some","Fields":["94.130.246.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:3344:106::106]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e3"]},"Identity":{"Case":"Some","Fields":["G9vpwPcDTmeJqb977YK+IEXw9bc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HSS/bDqNy1j4FZuLSPzvkjx9QaN+lXFAjr33QFySZNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:57"]},"IP":{"Case":"Some","Fields":["94.230.208.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::148]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funrelay"]},"Identity":{"Case":"Some","Fields":["G9ZGK4VnVOnIJrIgtMR+WdBHkQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVEc9iuoM9lT2honXacmoM4ZCh1dkbzIwtsV93GjbRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:43"]},"IP":{"Case":"Some","Fields":["146.59.12.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::4c5f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex77"]},"Identity":{"Case":"Some","Fields":["G7yut2PKRt61ZaclH6pqx5o4it0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIfZFbMTcxZhUr6NZrtBRIshgyLfH+KoHPwNZ1PO2Lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:07"]},"IP":{"Case":"Some","Fields":["199.249.230.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::166]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nudelsuppe"]},"Identity":{"Case":"Some","Fields":["G6/Dv9HjnLb3WRlaiQfqealJb+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UKtx6139xyNNXAOvkFyy+agt/A445qShGSfHeXRkS3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:24"]},"IP":{"Case":"Some","Fields":["5.147.29.248"]},"OnionRouterPort":{"Case":"Some","Fields":[43903]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:2222:fda0:91e7:5d68:dee6:b225]:43903"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finely"]},"Identity":{"Case":"Some","Fields":["G6jHWGmXo1FEzXcb8/2YMcFTFdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1vuIbjb5UhX/hiuSPc8jZVlOMzKIjkY/srhAkM2yIeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:07"]},"IP":{"Case":"Some","Fields":["153.92.127.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange017hu"]},"Identity":{"Case":"Some","Fields":["G6L5Q2wAGKS1JiXQcbcvZIUit0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aGy59FmYVY7Z9xHRacLz1W4tRJx6e0L8jh862nYwe0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:48"]},"IP":{"Case":"Some","Fields":["87.229.115.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute07"]},"Identity":{"Case":"Some","Fields":["G5+s8l4X0m4wfqfPp9RVsUSwMuU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVF8zgVNMuVjeQOHImnuddJGMbq+nj/hqCG/sEH4w0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:11"]},"IP":{"Case":"Some","Fields":["82.94.251.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["G5hGgJfn8/8QKSZCPfRDFeQUy88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kP60j/UvRquFT+xspm/HjASxnFdfH5fjfuXJ+9equvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:56"]},"IP":{"Case":"Some","Fields":["95.89.112.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kibble"]},"Identity":{"Case":"Some","Fields":["G5Y9DLXPEgv5XMIR+aV3qwliDv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZX0FM+88WVB4wbj4AafFCBIbQL1iqgM7vC8pNBxVjCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:36"]},"IP":{"Case":"Some","Fields":["66.165.241.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4500:8:14::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["G4/E0TRAfFyQvmECE/QRtjrVIpY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KOmZ7hpEFXYUdVujcFQ0tbV7gAgaXBrsSgURqHtdaZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:42"]},"IP":{"Case":"Some","Fields":["65.21.235.52"]},"OnionRouterPort":{"Case":"Some","Fields":[25028]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeastBistDeppat1"]},"Identity":{"Case":"Some","Fields":["G48AYY10MEa6XZ7ECGIgrH6h33E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G7mA/e3HRM3LgvzA1QtYe/4l/7kQ/L/3Wpj6YKpoVlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:33"]},"IP":{"Case":"Some","Fields":["80.109.75.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vulnerar"]},"Identity":{"Case":"Some","Fields":["G39Hgn4v+v4FuSscWpK4+aSvZ90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V+oFZdffTxsTnmGmTcu2xVah/h0hIr8MOyJGruJPs4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:29"]},"IP":{"Case":"Some","Fields":["157.90.179.103"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aemrelay"]},"Identity":{"Case":"Some","Fields":["G22f71wvnGtb88n6qRMdabcKNbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lDanuu3zahqiO6XLuMVL4SyqKyF3z8eQRewGOr91p6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:34"]},"IP":{"Case":"Some","Fields":["31.16.217.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["G2vLzbOENktvtPNXbKcK7PwINkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NByz6DuaoFDAqhrk3mU4whx3BAUrGDH7N0CQDpJLMwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:10"]},"IP":{"Case":"Some","Fields":["185.194.141.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaymirror2"]},"Identity":{"Case":"Some","Fields":["G15416HrMgdLO+LoPMzlC2mbeC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZXVRAJ2XPme1pQq+8fyOwbzzXAkESZLyB5T8ctdi7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:31"]},"IP":{"Case":"Some","Fields":["85.195.230.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNODERELAY2"]},"Identity":{"Case":"Some","Fields":["G1vP/XOQlGpuLbxSHdZjM4bwWPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvJu0kNwDu4wP1kRJMougN+szDPWFVh+PIsFrSE7a8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:50"]},"IP":{"Case":"Some","Fields":["185.232.71.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4e:cf6:a47d:bbff:fe95:9658]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBestRelayNick3"]},"Identity":{"Case":"Some","Fields":["Gz5I115/fmHRubviS6FaOLRUOA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4Bpx4sqMU54uXPowcXWENrs6ZibnUZpFiCn0J0pCvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:09"]},"IP":{"Case":"Some","Fields":["174.91.91.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP08"]},"Identity":{"Case":"Some","Fields":["GzCYpxHQDs1ChXbrLoaO1NIslrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lnf0YNrDJf4ZDzbeXQbf/Vrffpd9NTqgeVY+S8D1wxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:03"]},"IP":{"Case":"Some","Fields":["15.235.29.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bottles"]},"Identity":{"Case":"Some","Fields":["GyiScY1m4Qff3sj6RzHVKJnP6XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EC9ZXHIbRwxrzT645Pt+By8xuxPDG8M6O32OFvKLt3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:20"]},"IP":{"Case":"Some","Fields":["107.152.33.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:0:35::939f:ce9a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber54"]},"Identity":{"Case":"Some","Fields":["Gxj5hTRjTvTrSzZSPwUvTYKeBJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r2Q+c7b7lGPPV0G1wUUQeRYr/G1tiAth3KURXbN4/Ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:46"]},"IP":{"Case":"Some","Fields":["185.220.101.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::27]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who7USicebeer05"]},"Identity":{"Case":"Some","Fields":["GxdLD9qqxQp4sS5kFD1H7XkiyO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91168Hnm800z49BUlmknE6GgtHKH8IwKsjwhj5LEkBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:58"]},"IP":{"Case":"Some","Fields":["142.54.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8088]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gigabyte"]},"Identity":{"Case":"Some","Fields":["GxCJY9z5QrbSYr/cQw7ZvRlH41M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hdEnvIzWo1ONYBWmnjcy75hnTfzEhtZLDKHK264D1Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:49:33"]},"IP":{"Case":"Some","Fields":["161.97.83.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2077:9922::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RagnosystemNode2"]},"Identity":{"Case":"Some","Fields":["GwzNutr/mI6Swg7kpR/y0Twzt30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9b2597OaTzbPd5eG4MNyZVkjt2Xb1hHusO1pneebFT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:26"]},"IP":{"Case":"Some","Fields":["37.220.0.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex36"]},"Identity":{"Case":"Some","Fields":["GulJln+Cu+dTSj1rp3p+vhztQ2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwDR98qpyMJhn7//RdcTHmbI9IehE4YheFaXuecSCjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:25"]},"IP":{"Case":"Some","Fields":["199.249.230.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e655]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GuiYFENLdcOjBGB3KmkSvOT15GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ni4DLq8IDyDT5pWGeEuewKgmnA3FobXpQQciCf9OWx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["103.124.104.229"]},"OnionRouterPort":{"Case":"Some","Fields":[39888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknd"]},"Identity":{"Case":"Some","Fields":["GuHL2qyN9xMHQ3ENig5ZgVeHPtU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4KNUA4xMkm6xnvT9fIT2TvRZXYXGqdsCUoF4Ll+IWt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:42"]},"IP":{"Case":"Some","Fields":["61.4.102.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot60"]},"Identity":{"Case":"Some","Fields":["GuA57gsR23nktLKcup91KGSgJZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ZmBIDFMmXQhJ6ds/mXNVo5euA7QmuQQXNzspGOOLUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:23"]},"IP":{"Case":"Some","Fields":["81.7.14.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::1fa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["948794crazy"]},"Identity":{"Case":"Some","Fields":["GsstAFGRtri+LibAIesLoWR6WrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gGyC+WCIlpI9mYZr/eBtoawqB4PWkFgo33GpEDdVVDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:13"]},"IP":{"Case":"Some","Fields":["185.193.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GsiIS5wdHijex6JGEPMenG0sT6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["942nLU0weZQYqplH6maFEX+mjKtuE1FDzvgdm8UUwKY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:06"]},"IP":{"Case":"Some","Fields":["202.61.205.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5b:563::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vsm"]},"Identity":{"Case":"Some","Fields":["GsRQg+vH4CcgwTJUzqP3sDLCSOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cM0F8X3GBjaAa79cRgwi16dVvm/YcYFdIUJi4Q5flB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:52"]},"IP":{"Case":"Some","Fields":["170.133.2.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:5429::b3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sdIUe8f"]},"Identity":{"Case":"Some","Fields":["GrpC2vbhf2X+L7/5yi6zaetqaQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hw7KA2fgfcq8bXsz7gldBLnJDtBF9feX+TBl2gn1bvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:12"]},"IP":{"Case":"Some","Fields":["91.137.123.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rhabarber"]},"Identity":{"Case":"Some","Fields":["GrXleoNWyUgDuRmf1KmEWFTmoKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUFIW4Jz5jZThcNJojcTVwMZqV8bMDYr/rmC+ZzFJ6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:16"]},"IP":{"Case":"Some","Fields":["109.70.100.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::12]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Gq0BX02IVBOivODlgVkRaQEjbEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJ15cu/AA904SY8z/+GuAwSo+oljclJ+Z04KIGNXA0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:30"]},"IP":{"Case":"Some","Fields":["51.75.143.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["GqwZ2JL4SRCrlMRQkiQaujz8TIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZg+eNj899hy9A0exhmRStKNltbqCM/YZ7D0NrR44ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:58"]},"IP":{"Case":"Some","Fields":["185.220.101.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev2b"]},"Identity":{"Case":"Some","Fields":["GqaD4DbqEKpuB41ASYzHI09kJLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qyA4YCsMg+FAJQgZQ8Fu4HmJ1RJnnByv4a+CiJeW2TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:00"]},"IP":{"Case":"Some","Fields":["87.118.122.30"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:103:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay2"]},"Identity":{"Case":"Some","Fields":["GqY0dKsid6lE5FJknrGQRPITFOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4PsL/KL7PSyG0QktLVK2YgCeRQMCY0loX49LjMqxW8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:58"]},"IP":{"Case":"Some","Fields":["185.183.158.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:a5f:684a:58ff:fe7e:8bb7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit1"]},"Identity":{"Case":"Some","Fields":["GqBCqoATt8eFPOKniFN99VhJhRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oW9jYrWvcnO/XW9TzU50sYUSMakMy6BFg4fvpO8M6qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:44"]},"IP":{"Case":"Some","Fields":["185.129.61.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OpenWeb4All"]},"Identity":{"Case":"Some","Fields":["Gp/CuU4ztrTOOM0N8lANTCRfuRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JktWo5owin9rm13p7Ut6fejnJElSf42Np3cpnv5kagk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:28"]},"IP":{"Case":"Some","Fields":["209.141.55.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1dce::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blablabla"]},"Identity":{"Case":"Some","Fields":["GpOto2l0dnpjAh0Gkf8FgaDDL+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4TZMUncM+ApW+OasNzbn/nW6xb4CvE5zJcCFJGW1QPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:47"]},"IP":{"Case":"Some","Fields":["185.206.225.59"]},"OnionRouterPort":{"Case":"Some","Fields":[18049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM09"]},"Identity":{"Case":"Some","Fields":["GoG+4FT+XGIloNWBadcpJLJuK1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3pdCVbZPXIwsBgh25HF6cCVRFe/kYOO0NN3IZM9yUlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:27"]},"IP":{"Case":"Some","Fields":["185.239.222.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SimpleRelay"]},"Identity":{"Case":"Some","Fields":["Gnf+BdQAoSKEm31cXjTpmrDWjqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DduHC0b1SVEMZrr6K97noW2atfurrPV7X00eJtg6cUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:59"]},"IP":{"Case":"Some","Fields":["194.180.191.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:20::6c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pad2"]},"Identity":{"Case":"Some","Fields":["GnIxbKDWmqG3N0V4mG1QjOgtmVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sM1QRA/XmJpYcblg6EnSCBTu7dN2wvxoefAqiA2uagY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:36"]},"IP":{"Case":"Some","Fields":["5.161.72.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:c4f3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoolComputersTOR"]},"Identity":{"Case":"Some","Fields":["Gm4nh9Ogh8AMHHpjfR9jJErrCog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ANvwqm8/d24eWQ9dwjHLQSCQHneH+XFoGq1zzSAt9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:48"]},"IP":{"Case":"Some","Fields":["68.99.156.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c5ef:6000::1005]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoVna"]},"Identity":{"Case":"Some","Fields":["GmbAKhGdb4QvVQaF4AUcSuI7i+g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Ps17PRe8FV5+PhkwL2TUdcNQyVS9Hlqk0m5TZ/JIxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:08"]},"IP":{"Case":"Some","Fields":["108.62.103.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetbox"]},"Identity":{"Case":"Some","Fields":["GlRhx6GBEExqVFB7/5rj+D4uHZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTqLJwkEdewpZXcxhWzt+SKyVl3B5VB8+/Red4rZxsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:01"]},"IP":{"Case":"Some","Fields":["134.209.159.59"]},"OnionRouterPort":{"Case":"Some","Fields":[33443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::9fc:5001]:33443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["just746436456"]},"Identity":{"Case":"Some","Fields":["GlLh6pXqHAXmo7ZDqprB6H/HlvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wUan130//vyEGkx+QrlhuLqebmwktymeQS9XaWdS9uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:43"]},"IP":{"Case":"Some","Fields":["37.221.195.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torquera"]},"Identity":{"Case":"Some","Fields":["GlG9O0vHUtF1zFEj6DwJnyoNUAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lL0X3+hsHgdZeUOYyVLXVL9wyP4kSGtcmYGTYFxECYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:04"]},"IP":{"Case":"Some","Fields":["82.64.190.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:212:5f50:76ce:2825:9c75:d720]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sorapis"]},"Identity":{"Case":"Some","Fields":["GknkT387ataz3gANHyGJXRxQXvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s35YmMUQFrmoqxezJ0gaQ4ZNRnywES/23/rnYzpz1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:49:18"]},"IP":{"Case":"Some","Fields":["62.1.21.232"]},"OnionRouterPort":{"Case":"Some","Fields":[58097]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc3"]},"Identity":{"Case":"Some","Fields":["GklSjTuyI2dp6My4SQol6kR8yU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rb00nGMGS2WWGLWm2ZD6ImAzgi+Mk+8IbPUJ1CdW73Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:41"]},"IP":{"Case":"Some","Fields":["37.114.40.104"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[8081]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlimTor"]},"Identity":{"Case":"Some","Fields":["GkSZW1+G2t7B3Qy6uhXBm0TI4N8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jIkZqwloGm93/IdqVkA40UnUEfjaBDT/YosyrSkt97Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:35"]},"IP":{"Case":"Some","Fields":["75.184.41.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohrelay"]},"Identity":{"Case":"Some","Fields":["GkJa9n1FXaZS40OlOuYUPkL6uKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJfQ/KVjcduacaJTY7x5yFPvn+MSAs+YgAcpL0Id4HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:39"]},"IP":{"Case":"Some","Fields":["51.15.8.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lana5"]},"Identity":{"Case":"Some","Fields":["GjYj++WyjU9yKQZ2f/qPCrfszB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["haQKakY8KENG9FjHru4pljybXIArsxp+Rb/671BmBMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:01"]},"IP":{"Case":"Some","Fields":["31.133.0.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4162:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bilbo"]},"Identity":{"Case":"Some","Fields":["GjKVQzCAR7BTIfsbkYKcQO95/tY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GdRIiYystV+4TmVJGH/dOpzghl1P7SN7rhPEMSCmDxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:54"]},"IP":{"Case":"Some","Fields":["213.156.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9900]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE69"]},"Identity":{"Case":"Some","Fields":["GjJH7QpymBUNrWoygitZSKtZ8A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+61T2XYK0BGalD1AYQD94pFiHc7jaXvJ/GbLNV9B7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:00"]},"IP":{"Case":"Some","Fields":["37.221.66.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:10a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FranxzkfchRelay"]},"Identity":{"Case":"Some","Fields":["GjJAtRVKmpFQlxgJFPGDZgmY3U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bli3Y4KfWHx4u/mImrhsQP5Ekmki1u+saYBoZ3az92E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:28"]},"IP":{"Case":"Some","Fields":["136.244.94.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6c01:2c38:5400:4ff:fe23:58a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["GiQ9pvY5qcmbQ5EVjg4U6JwpdUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VStGi+t6PMXKI9qKbZU7Zj853OhH2sSeK7Gnkrzg0Rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:27"]},"IP":{"Case":"Some","Fields":["185.183.159.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DebatableMink"]},"Identity":{"Case":"Some","Fields":["GghzZUF0/4sdZrAtqC1Grd1GrEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTpmOMO8mt69WnYEmICcfO3Lr9PJCnFoFOMW5J771ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:53"]},"IP":{"Case":"Some","Fields":["164.68.113.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2098:7239::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversMagique"]},"Identity":{"Case":"Some","Fields":["GgYW6x+1ZAGlYQLBD8+mnnLa/tc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TdFgcf2gvRsstJfHmGE6Lu92roN7gy8ptsk5nhzhsmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:03"]},"IP":{"Case":"Some","Fields":["176.123.9.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayors"]},"Identity":{"Case":"Some","Fields":["GgStKzoGuUnosMpEEr15OsJZsVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["21Caqq3rLuSnbtLIi9s3z8RONhM/XLF7TsDRcgQHyPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:00"]},"IP":{"Case":"Some","Fields":["185.68.250.161"]},"OnionRouterPort":{"Case":"Some","Fields":[6443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1748:f7df:aa11:ccba:3846:50f8:d881]:6444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ABCVG"]},"Identity":{"Case":"Some","Fields":["GgIKQU2Ksl9UQVyMHnWlViqd2aY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbdfHGKoG/aDEDfJp+TCBgqOuqvkyP7Lf1HJEIPcKLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:28"]},"IP":{"Case":"Some","Fields":["37.187.103.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:2736::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Noaccess"]},"Identity":{"Case":"Some","Fields":["GfkDE7LA6wPvw0dwbyc16Bh22EY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rZZuZHeYcwXcFM430O6Gh5l0OApmL/eqqcLOOJ9gEIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:21"]},"IP":{"Case":"Some","Fields":["80.219.136.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayletsgo888"]},"Identity":{"Case":"Some","Fields":["GfEVJthFKk0EYX+9/lJeOaapbvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iKEkEAhCH5MN1JY7EE2ai36Qr4QNtqwXDRV3C3nH9g0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:54"]},"IP":{"Case":"Some","Fields":["50.65.180.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TouchMyData"]},"Identity":{"Case":"Some","Fields":["GeEK8VEWCRZeGTMKxJzP7OYBjkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h5Y1cFhebYZDe27f9XLpej2nGNKuVIn/tAmWKi5fcRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:34"]},"IP":{"Case":"Some","Fields":["75.75.102.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tawny"]},"Identity":{"Case":"Some","Fields":["GdDwKLrdEbedxYRsHXVJdnLoVRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rMCF2vhcOXzxGR/TP25iF5AsId9Crxl0vY154vvqe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:37"]},"IP":{"Case":"Some","Fields":["45.137.100.160"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r1"]},"Identity":{"Case":"Some","Fields":["GcmQb8tksSpV2LOB9XMaBRIOX9Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hl/fhK/tlPknk8XUsImCeqXi71nRl+IJuKpJe8uk3Mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:17"]},"IP":{"Case":"Some","Fields":["74.208.136.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GckwBDy8ki+E40odk8dHykTBYjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOpiCz/9uUcEZiu5B7QhQxM9zQQUf3XAvt+ugaCV54Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:55"]},"IP":{"Case":"Some","Fields":["23.128.248.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::68a8:1eff:feb0:68a7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kt"]},"Identity":{"Case":"Some","Fields":["GcTRx3ZBYAdT6T92CQn8lb+6lPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4cmEAgLAG1e3xWyQ+L0RQjMh4fVySqx2YpX2zuTT3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:02"]},"IP":{"Case":"Some","Fields":["83.229.73.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RocketNet"]},"Identity":{"Case":"Some","Fields":["GZJIikaA4Bq38KI0HtpHNzG3jGs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Po1gVLZBIBFcqxdmaAStrrUsxbagzpdShcnlj+IjExc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:46"]},"IP":{"Case":"Some","Fields":["169.255.0.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2c0f:f2a0:0:1::132]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blueflagrelay"]},"Identity":{"Case":"Some","Fields":["GYuSqYR/Woybm3+LXutYTTViKLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZKS1Ih0JslpWQAMZoZHQi+SZ12vnFGJRPOzvkCnzHm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:26"]},"IP":{"Case":"Some","Fields":["194.195.250.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:93ff:fe7a:9df8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode1"]},"Identity":{"Case":"Some","Fields":["GYq9tJyMQf/fej6NfOexhfV1A1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKxPb2X24f0K07ylh3amR55qIrNdnUQyRhE8e/kdroA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:30"]},"IP":{"Case":"Some","Fields":["85.214.38.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4255:c100:4e90:2717:4cfb:4a91]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["GXkMIfLmCsJT8+rG3TCuktOPFSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["urPqVWiJOC/Z1NoxoKuc7FCyU9JZZf7x96riCYZZEdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:44"]},"IP":{"Case":"Some","Fields":["149.56.169.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GV8jSbgobdl3ao+eZE0O3RuMlTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZVbuGXCDqNIiXguQEm2pWfAZGvCDgbuHzG1rQSkBLsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:48"]},"IP":{"Case":"Some","Fields":["132.145.57.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev3b"]},"Identity":{"Case":"Some","Fields":["GVcS6W/RwbGNFNCenk56ZBbiOyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qcZQTzH3/VxxCF6ogVGZmXDR55tGxpq8BfHRZmcGFHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:21"]},"IP":{"Case":"Some","Fields":["87.118.122.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:106:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay08V6Rocks"]},"Identity":{"Case":"Some","Fields":["GUSpa9UMeywKfEuWV4du8HxI0pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Br1J1YGnAsI4l6SGS1cvTAI1pKHwVxJlhk8aFRjRl28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:10:48"]},"IP":{"Case":"Some","Fields":["188.68.50.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d51b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["animator"]},"Identity":{"Case":"Some","Fields":["GTLGsLPRX2zaR2MvsiV6XfO8AU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1C00/l5tu48gMPdA6zPIymd1kIu5GU7IvP/4BV8AGR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:20"]},"IP":{"Case":"Some","Fields":["178.254.18.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BYv"]},"Identity":{"Case":"Some","Fields":["GTBlvnqsxylbsvyErnHcIJcO0n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Pn7P58sB2ne6oqmfwF0EqCc14A7L+KkFVfmOhD+cnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:18"]},"IP":{"Case":"Some","Fields":["192.81.218.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WikiHowRecipes"]},"Identity":{"Case":"Some","Fields":["GRyCbqkbn99F/1DgHbK5z65xFO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y28BS4R8dg4QB2IqBaWhZNb8gr/FTeAacR6mxNy2OrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:32"]},"IP":{"Case":"Some","Fields":["38.97.116.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gaunahTorRelay"]},"Identity":{"Case":"Some","Fields":["GRcwBrBbYRnZZrc652d9ce9SnPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tPRt5okIboZohQXbdfE/tUPCbXdrKk1jy34O4aXPeMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:52"]},"IP":{"Case":"Some","Fields":["173.212.236.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3006:5899::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homez"]},"Identity":{"Case":"Some","Fields":["GPNK5lZ/X7CBxDU9Xtpc7hVYEMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["loPCmsiahkXaDHZxMmveI/M4CO3YNAgUWLlRR1zAU/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:55"]},"IP":{"Case":"Some","Fields":["188.165.192.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GO94GSXt9UYzOKtFDvDFbFyqLxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bWpeRy5uG88FZtoGEjLT6DpREfrnietyJmogzE2ky+Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:41"]},"IP":{"Case":"Some","Fields":["217.24.239.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:75e9:1::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GOy/w6aDTLZ0FGQMfx52XlQs7Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RO/xVMg+HwKBVzTv+nGrZTUrHGWCb09AXf21iPKaWXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:39:53"]},"IP":{"Case":"Some","Fields":["144.91.92.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GOrSRlOMUP0IWb+XbE6EAfyXVaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8DAJCvpZqrJfBqUAiCxKN1DjOmMi0c0ktdZJJ5mkb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:04"]},"IP":{"Case":"Some","Fields":["24.18.194.124"]},"OnionRouterPort":{"Case":"Some","Fields":[12101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex53"]},"Identity":{"Case":"Some","Fields":["GOdTIUzYJyRCgLvTaqxPjnCz7o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CtXGd2YiY4lYTMCRw0Q76jRRYr1YqskJsHw8FdaQtvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::142]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malvin76"]},"Identity":{"Case":"Some","Fields":["GNazh9TCnckEKyJBECDcsFYm3nU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3RfCb/bHNegeXDpRKy0OZ7b5OTbB+Jh/xbHmUiAy1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:00"]},"IP":{"Case":"Some","Fields":["212.146.101.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fractalia"]},"Identity":{"Case":"Some","Fields":["GMWF4VPfvMQUuCWf55lLpSC1628"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZVkcb4cxOmssBVaMcdClXeJr4tCUQgvrVk7bYCtDIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:46"]},"IP":{"Case":"Some","Fields":["162.55.177.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:bba4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["GLEz8w8ukQd1yKel1LkrxszsBDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aMe/DlBDkxb4KuYEysZBClkTLORaDX+sydJ82FlmBfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:46"]},"IP":{"Case":"Some","Fields":["23.128.248.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::66]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FckPtnNRW"]},"Identity":{"Case":"Some","Fields":["GKtpHcbVZCz6wrvW+hFI6za5b7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pgBMl/XOq6lO0wn2b+Evrz/9orox1gpirdhnSGFpJNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:27"]},"IP":{"Case":"Some","Fields":["202.61.225.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:cfa:c833:1fff:fe70:d8f2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMePlz"]},"Identity":{"Case":"Some","Fields":["GKXtS5qkNIgydcFdbPP3lbqGdEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ0IsXEhm2PcNJN3l+mn9rQZavmu8Zul39uv/3PmlxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:30"]},"IP":{"Case":"Some","Fields":["149.154.159.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["GJxE3QYxLW34+1epROaBn/JFdAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhYRpU06GlULzBQYW7/hqk0f1BiXKBsZlVK5pIgvM8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:11"]},"IP":{"Case":"Some","Fields":["5.45.102.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:608:942a:42ff:fe77:728c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["igel"]},"Identity":{"Case":"Some","Fields":["GJMEG4b87Ros4vnixZh/U0t9w+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0MAqQOE/UgAemfX4Pt8ecmnRNUZEZUwQJ7pIJnaMXdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:56"]},"IP":{"Case":"Some","Fields":["109.70.100.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::66]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOPAS"]},"Identity":{"Case":"Some","Fields":["GIZzzzk3RCUXMBgA84O+U9ShdzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+8JwYeNzN5uJC+ZQXdWvpbycMEGn9lDZmLhkyoy5Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:35:03"]},"IP":{"Case":"Some","Fields":["92.117.218.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9e8:2752:f400:e65f:1ff:fe00:96c5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["faceless"]},"Identity":{"Case":"Some","Fields":["GHt/0EIPUe1cv2stiIg26m7B2Ww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/FrxcavXSyg1dbBHXRUizUU2m3reVeGwk1DRPm58GQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:18"]},"IP":{"Case":"Some","Fields":["81.217.189.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["GGcd5QksZ4g7+yRQwyZ7kmGL7GY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3AosPrCiQl7jtg86n1rfrmcrw7wnA8E8gFlee/muu1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:59"]},"IP":{"Case":"Some","Fields":["185.220.101.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::208]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CloseOmega"]},"Identity":{"Case":"Some","Fields":["GF8y3uQ8pG8S7eBhB8cY2wDp/do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8LrJZIhMcoI4mMf1p00yobt+3Stt5q+X2Nlm8HQLSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:34"]},"IP":{"Case":"Some","Fields":["109.248.147.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoingBoing"]},"Identity":{"Case":"Some","Fields":["GF8qV7DEYgWCYCdhCX0X24FlT3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JVt1SUcAeTsLiqM7KLlEt5JosKwaKMbnGmBexraQXds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:54"]},"IP":{"Case":"Some","Fields":["204.11.50.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golferjoe"]},"Identity":{"Case":"Some","Fields":["GFtsHx0NMq3yW4mAc6YV3Q/BLag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MnwDfSduApX4a7dFn9wJ4O1uQoKm+g4y+xb52dEBHwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:58"]},"IP":{"Case":"Some","Fields":["130.162.250.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xmtx"]},"Identity":{"Case":"Some","Fields":["GFBYW+m8ofgNCgUZCclOSdHEntM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8pk0r/7GqEXT87YgXXjbFM4Z/3+eKeA2JtD4j2bP1CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:47"]},"IP":{"Case":"Some","Fields":["82.64.86.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:530:a0a0:eecb:33f9:1f82:4621]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["squid"]},"Identity":{"Case":"Some","Fields":["GEdPiew+ir5AFItCTI3VOZJCzsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIpN2Q9odGlEfpWKS8TKt+wDxQiui2Ye3/EtEwZplsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:08"]},"IP":{"Case":"Some","Fields":["51.81.93.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["32a3c0b02b181e"]},"Identity":{"Case":"Some","Fields":["GERtMHNheQ1a7zakLwz54XCY93I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gLsQzrWgEMqw/9AXrmtiOamlHg+ptXnT9+ccaH19ReY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:46"]},"IP":{"Case":"Some","Fields":["88.198.184.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:d85e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchulteTorRelay001"]},"Identity":{"Case":"Some","Fields":["GEHLlgEogGFRth/G2Hr76amLmdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FxXibCZboI1a1GhCmncfXUR+yDx8JXgMaNeHujHNBZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:47"]},"IP":{"Case":"Some","Fields":["66.70.211.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StaySafeHaveFun"]},"Identity":{"Case":"Some","Fields":["GC2V9SfT7DMU3w9Dmpp9wz9Fodg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jc9V/vPLJTBkY6xYj5upYr3H0jByjLfCzHlqs76ySEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:20"]},"IP":{"Case":"Some","Fields":["185.183.98.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["GCv/AQC5dyaZvkot2un3As2re5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQmPKIoWFGj+tgS8bYZEzm+D5ZCWlMt45tGit3ULk+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:48"]},"IP":{"Case":"Some","Fields":["45.154.98.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["GCvSW/pulMk+WAZaA49b0+oPx6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A2LcYBxIa+uO2ZrCeWxI1ApveaQJKbrviJFaagEj0Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:54"]},"IP":{"Case":"Some","Fields":["45.142.211.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:b641:6f1:6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeslieY"]},"Identity":{"Case":"Some","Fields":["GCYKFLwQ+RuGwZMbDc/DXAJkBu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2QcM4L8G1EW/t9gt65uKoarWDVb8AyjMLHfd8PnkOs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:31"]},"IP":{"Case":"Some","Fields":["198.98.62.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stx74"]},"Identity":{"Case":"Some","Fields":["GB9Iv/XUJbzsHnjaxbXw5F/9r00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8rb8ggbPP2IZNXLl+e54AxoQAFYSVCeU3a7rDvJ78h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:17"]},"IP":{"Case":"Some","Fields":["51.75.68.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::1db4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GAsfuDASns57zdedjp4dyqREyhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bGwqohmVkVk8GPqtBUTKJpzQgezlzg/6/rLQH3msRFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:09"]},"IP":{"Case":"Some","Fields":["146.70.82.126"]},"OnionRouterPort":{"Case":"Some","Fields":[38045]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["F/Qfja+ks2qrEOICq6FGAarh1hY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Kc966/cOE/0nYPPP6AuGoihKqtdoxyDOeHz4A/2FdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:35"]},"IP":{"Case":"Some","Fields":["45.154.98.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crimsonshape4735"]},"Identity":{"Case":"Some","Fields":["F/BQ9lfsQbJcr48wwXPaWc7bWos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9lPIu1bYqtLAnaoCN6tGYiZCAiY9dLEib9Rl8zpUP7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:46"]},"IP":{"Case":"Some","Fields":["69.164.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe73:c4e9]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["F+wEN2C5C9rDC1NvTGUCkXY47Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKL4MB+3zrAzRLp0wcnWis6afsu+qLwmwbmPVJ7ZrZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:38"]},"IP":{"Case":"Some","Fields":["23.128.248.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::79]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netfoxy"]},"Identity":{"Case":"Some","Fields":["F9IhYSqHLdK6eDq5YcwqPP4YXPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ab3dxHHdVYFQnxoSrEGrTWSMKfQMClqxFkg4upiCBsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:03"]},"IP":{"Case":"Some","Fields":["45.156.22.110"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trolling"]},"Identity":{"Case":"Some","Fields":["F9Adt1B6spPoxoiXwVjdj+WhDhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I/fb+ffvFtRp7WrV1qYuKQKxbKE2x5LCxMZZvJc5f70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:04"]},"IP":{"Case":"Some","Fields":["198.244.142.123"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:1000::1538]:420"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Conservatism"]},"Identity":{"Case":"Some","Fields":["F7OoJpq6NIq8rzXHeuPV0nD/WVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6vRcf/ofnM5SKsZDX2muMiqbjOu6t7jpw8rODPeoeSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:56"]},"IP":{"Case":"Some","Fields":["71.135.200.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["F6or+DnhKwxNf2QNoeijUh120fE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ffWTPjqYkYim103Maa7ThQPFMiZBlkFZk2leQQE09zk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:18"]},"IP":{"Case":"Some","Fields":["83.97.20.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:58]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bereg"]},"Identity":{"Case":"Some","Fields":["F6G6ZfiWV7Ner3GMRqIHPgo64D4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZHUlMVPAciwu8OJJMJGB3bzvCLkRylTpHLb+/1eIg7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:14"]},"IP":{"Case":"Some","Fields":["46.226.107.215"]},"OnionRouterPort":{"Case":"Some","Fields":[10400]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe93:b598]:10400"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lon"]},"Identity":{"Case":"Some","Fields":["F5GUYO/g38Kwzw1sRTrHKyUmMPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HEnqESH5L0Dy5TGaxN/cODQ2pfvxNPR7bgffvXuMqTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:26"]},"IP":{"Case":"Some","Fields":["160.119.253.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4Freedom"]},"Identity":{"Case":"Some","Fields":["F4Qc1hlUssN5mZJ+3wEJ2T2KUKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZL2kY+/1VNDlVBPq+1c7uaLqdQTsyvkcEvZqFxuqTRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:28"]},"IP":{"Case":"Some","Fields":["77.68.73.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:27f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sabine"]},"Identity":{"Case":"Some","Fields":["F3u/XPnpA8KFrV7Kgi8SAhv25WI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JFT3K3+FmnWaF0TiCOgopLSC/90L4Orq05csfuas614"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:02"]},"IP":{"Case":"Some","Fields":["51.81.203.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluemax666"]},"Identity":{"Case":"Some","Fields":["F11j77kXa/rdMGhDlgv8CFoqupM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdVC8mB9/yXqFuSPXJrFGBhL5i+pq4mDbyw864YePQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:41"]},"IP":{"Case":"Some","Fields":["84.75.28.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["czrpYOL8Pp"]},"Identity":{"Case":"Some","Fields":["F11Zs39l7+srm2sz5T1HVGgLvPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4T3u6LDpB38qdyli354izcdI68BbJDIifuvkM1km4r8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:52"]},"IP":{"Case":"Some","Fields":["149.172.239.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8071:4483:b940:dea6:32ff:fe5a:4ba6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeadOrbit"]},"Identity":{"Case":"Some","Fields":["F1zuP1OdojVxWa8tPKXyqfwspbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bxGQfwX27yM6z0iio1WFX4Rb6z5vpvcuqgusokhqKBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:42"]},"IP":{"Case":"Some","Fields":["188.166.66.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["260VoltLive"]},"Identity":{"Case":"Some","Fields":["F0b+lbxuuc8QY/UGOyMJDBT4Za8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eZkPBohIoAFeW4ic9+IWE9462nu3g/Dd0bFfc2NzpaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:46"]},"IP":{"Case":"Some","Fields":["110.32.181.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackPanther"]},"Identity":{"Case":"Some","Fields":["F0YJl+ZsR/gFqDS+k8wU7A3GCOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uku6I/yiLFnxx4cY7+eWnMOvg7kMyOHuZ7mJDW50MSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:09"]},"IP":{"Case":"Some","Fields":["213.183.56.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fz66H6yllxhJmugCMYfl+V6L8cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxD1oY4jGw/eU/LQ6D3/8cQoc8nmumd2UkXv3BsXPXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:16"]},"IP":{"Case":"Some","Fields":["37.187.122.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:f365::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fy4JvJTAGTlXdq8VCXZILHMKUvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EalyT0B5loILjjakFsX3O0HfKcYo0UcynG7+vW+5Vn8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:44"]},"IP":{"Case":"Some","Fields":["193.200.17.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:8::a38c:7e20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FyN1GFST2dYkiwHPloOlQJ0BaPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vsnw9xGwgLqhs9CJUUSBXEebm4dxNWZj8FLbPVxQPFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:54"]},"IP":{"Case":"Some","Fields":["141.158.39.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PumpkinHead"]},"Identity":{"Case":"Some","Fields":["Fwokqf/EM7rMpNnB20BcnRHVR2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HsvrogLG7P0e8jNNU3UE5zWtnWMY8P47b8pbp9vuarU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:33"]},"IP":{"Case":"Some","Fields":["178.175.135.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FwdLT/sKCBXDVWOO66N7h/oS/7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1S6mJxjJMCpgHyuBP5aYRvOpeoXGAY1Xab0IZ+BC/Zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:49"]},"IP":{"Case":"Some","Fields":["46.105.91.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenMonokuro"]},"Identity":{"Case":"Some","Fields":["FwL2iIdX1nmvvsmEL0uY6bArbUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oz/1+NkLMvYQrApY+f812jmRInB3msSODs3vEbPhDno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:44"]},"IP":{"Case":"Some","Fields":["138.2.22.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ghostventures"]},"Identity":{"Case":"Some","Fields":["Fv8uxve1qT1Lvaynym04zhjdKFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HwYExyOWRfhAP7ORQvxKNj92ol3am8fCiLWmuizSKYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:21"]},"IP":{"Case":"Some","Fields":["139.28.36.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluesnake"]},"Identity":{"Case":"Some","Fields":["Fvfp6T1sxGk5KtC6Ago/NZ35g0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V9R5XSM+iMv/T/8fyIJRmWGpLEGSP2fxxQG3bLN0kt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:29"]},"IP":{"Case":"Some","Fields":["5.150.196.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:470:28:228::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FvNsD1pvfCZ/e6Jx2YaJFomXj8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PKeydHcUCe2r/nVh9a+vxJVCjmyv7wxY2w/RTEjyHHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:32"]},"IP":{"Case":"Some","Fields":["109.183.26.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9049]},"DirectoryPort":{"Case":"Some","Fields":[9048]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["456c"]},"Identity":{"Case":"Some","Fields":["Ftt4RZuEX05yhAXraU4ykp4rMYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bwi0hJ3n8RQpmfGlmSstEnSrEFD+bGuX+exYxXBtajo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:36"]},"IP":{"Case":"Some","Fields":["91.213.8.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mempo"]},"Identity":{"Case":"Some","Fields":["FtBiCrCKCRyTukSHaUd+TBCf9XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zKAiMU02UKDlz+wQhKT5OMIhKptOC3p/fC1FrjwEUQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:09"]},"IP":{"Case":"Some","Fields":["37.26.74.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShorTorExit"]},"Identity":{"Case":"Some","Fields":["FsKVGFI7Bruw89d13ZgShnPrYPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPGFwb16s/1gEhUpM+mEjUzyy2qWG4Vct3IHozafXZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:24"]},"IP":{"Case":"Some","Fields":["128.52.137.20"]},"OnionRouterPort":{"Case":"Some","Fields":[5101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked03"]},"Identity":{"Case":"Some","Fields":["FsGgfcaL3lRnQvcdIHge+PpZUIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLkaTa7Vd2In0aJbxKQ7HsR1ml/ZLvEOCmAbQz4o5pI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:10"]},"IP":{"Case":"Some","Fields":["130.61.233.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8006:63ff:8b4b:9e15:5919:2a96]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zetoo"]},"Identity":{"Case":"Some","Fields":["FrSb5Omo8cgcWc6sFhT+nP2BZh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HZFLbGQt9BbXnO3Oo7pK2ZGlqWCMxLCTjAmjTTHu5Cw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:32"]},"IP":{"Case":"Some","Fields":["202.61.203.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5a:b7f:e415:4cff:fec3:9d6f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0128"]},"Identity":{"Case":"Some","Fields":["FqIWWgsP1L8kozc3M3iGPjp2M6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oKgrfPqv6AL7c5CLsMZRZj75JzDVRKN044HgXliwGfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:10"]},"IP":{"Case":"Some","Fields":["185.220.101.128"]},"OnionRouterPort":{"Case":"Some","Fields":[10128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::128]:20128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fp02p1EI2dd7QiyJ76eDz7xmK/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sxzTt/oh56wZkXKYzo6Goyr2qqRaViEgQdzIwJ3Vfyw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:54"]},"IP":{"Case":"Some","Fields":["93.72.79.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bradburn"]},"Identity":{"Case":"Some","Fields":["FpU1zEx1/3nG1UjUFyAGTuT+YdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Or/YtLYw3xIzMo+ht68GKSbYerbUmOxLPtTm2wuXMOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:09"]},"IP":{"Case":"Some","Fields":["62.210.125.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["FpSozUVk2YfFnYoX108VPtlnrAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Wgp0tuVuBqOE6JTMlVkGg9IdDSNvRNl30+qtHrTmyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:33"]},"IP":{"Case":"Some","Fields":["185.220.101.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::196]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["FoxKB78djy5dnF274HWBZnZIYCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbO9ecmfA6Q2hqImv6jlIEA3CelzYA7m2c/9N6UvqIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:17"]},"IP":{"Case":"Some","Fields":["146.19.173.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FoSzCuKt03Hl06iz8orKTOnKLgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVwBvYZW7qd6zuGMYLOPmebqaLLWhgQKsFWcMqUHfp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:14"]},"IP":{"Case":"Some","Fields":["185.86.150.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::94eb:3758]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guidemenow"]},"Identity":{"Case":"Some","Fields":["FoJPiF1ytPp6UJDgjYd+VAS8IU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B0FF7Q6MonkSfmTGX5kCTGKs4ibJRWtiN9vzM0jPImg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:04"]},"IP":{"Case":"Some","Fields":["62.216.54.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fortunepink"]},"Identity":{"Case":"Some","Fields":["Fn3NqEmkfq7CJ7WEGAyz4iB3MVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ebz0MbsqKP9OsuKC9I5rTtraKE/9RGuY9EMM2X13qMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:52"]},"IP":{"Case":"Some","Fields":["27.255.75.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nimblebear"]},"Identity":{"Case":"Some","Fields":["FnBqr9olnRQ+B72Wfr5Q0Y7A3BE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o2jAG+3kYydYomcK8FxjUgFQw0Tvx+yQUfAw1aWpIKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:07"]},"IP":{"Case":"Some","Fields":["31.171.155.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boats"]},"Identity":{"Case":"Some","Fields":["FmnlGo8dfXJVaD9VNtO+ZD6xFmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NKsof4d54WK9gIUlMVmWoyn0afZbjRn+41MIGsMelzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:42"]},"IP":{"Case":"Some","Fields":["89.58.0.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:dd7:1451:c9ff:fe68:1d78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei10"]},"Identity":{"Case":"Some","Fields":["FmhQ0WnMeVbndSWhqSKLxFY8/Is"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf/1xgLmZIgYquVZmsSyIAY76QOCNbhvxnpeYY/n8R0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:01"]},"IP":{"Case":"Some","Fields":["185.162.251.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5c5:38dc:87ff:fe07:85fb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev1b"]},"Identity":{"Case":"Some","Fields":["FmJkFo6MzLskRK3g8KIuTm3e9v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/rRSD31QV6Ucsnlw9oYWn4PjE7WPkVd+rJF0i9S8fr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:11"]},"IP":{"Case":"Some","Fields":["87.118.116.90"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:3132:102:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toraway"]},"Identity":{"Case":"Some","Fields":["FlpOhDE2nyRvdL+D7rUVtLHSNMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwymRovhcgW90dRgVFfIvah11qKZFRMiGSZbjDEz+tA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["24.190.192.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["SonicRelay"]},"Identity":{"Case":"Some","Fields":["FlPIaHaqQwMLBYSXacupL14wqcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aj64dZet4Ryeiskbpi24G0GCQIVKZL0k5T4yWa9SKCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:59"]},"IP":{"Case":"Some","Fields":["65.109.28.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:5a:1a40::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mypirelay"]},"Identity":{"Case":"Some","Fields":["FlMNjM1qfCwTVkpXPpsjzhpK0k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BYknFekAWTyt39B/Q2ITY96GCWeLZs/AXWqw6NGEEh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:07"]},"IP":{"Case":"Some","Fields":["188.79.234.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IcyDessert"]},"Identity":{"Case":"Some","Fields":["FlFDuP+4Qkeb1c79eVa6hZC+k9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JjXKnTcTSYq42GhhcKrxdSQwG3dDSIL7FQP8t8CCZ7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:28"]},"IP":{"Case":"Some","Fields":["140.238.38.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DefinitelyNotTheFSB"]},"Identity":{"Case":"Some","Fields":["Fk2qAFXBTn7A3cxLl+g97fGD73Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pnNvJi7HSXwelWg83mWgo7lJBrALEg6fddDcRSV6bEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:35"]},"IP":{"Case":"Some","Fields":["185.224.83.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theqube"]},"Identity":{"Case":"Some","Fields":["FjwH9C6wa2VBDoKgqx0U3t2CbA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b44ojlzlx6xvkleaJq9ovCq4DZkT4MSEaZkHcmZgSb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:47"]},"IP":{"Case":"Some","Fields":["45.125.65.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FjVcHAsCr2lhiualF6UmuKa5i5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9sMcOh7kqu9xMLmmFmcB904+iVGZ7hD+FJROCYb3cs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:14"]},"IP":{"Case":"Some","Fields":["104.244.72.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei01"]},"Identity":{"Case":"Some","Fields":["FjMD8Fg6GRcyYhQ3m9GrLShgRuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WesBEbRu5ooQqdzBNkIvArYXqZBovqq2z/j3+dUIYGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:41"]},"IP":{"Case":"Some","Fields":["185.233.106.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:24:591:a8a0:aaff:fe05:20e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BucketOfBits"]},"Identity":{"Case":"Some","Fields":["FjJMiRMr4U8Z4T/W6zIm/Frj8Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yyb2IXGriTDbrSvomgJ7yxAY2M/axSkrqwdfFvcW6XY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:53:19"]},"IP":{"Case":"Some","Fields":["142.54.162.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DefCon"]},"Identity":{"Case":"Some","Fields":["FhtnrSv71DYCkDCIozDvpkLn2Y0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s48ExV1VdReAgVUt207Huw1Pig1lE1NbsDfsqsQOMzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:25"]},"IP":{"Case":"Some","Fields":["188.109.126.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ceviche"]},"Identity":{"Case":"Some","Fields":["FhCIqpYfnWDCjGYMgVJe9NZYiQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0KcB+EGZMaxwahNZgm3WJmB/4UrgAhtxVag3hjIeDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:37"]},"IP":{"Case":"Some","Fields":["190.42.210.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nullptrf700ec10"]},"Identity":{"Case":"Some","Fields":["Fg8AJj2aeAVBWm3zqmGF1W2jHbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DXqDnsuUbKof4kb1wTMDaDgcU9dv1/CkHeIUn11mqu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:15"]},"IP":{"Case":"Some","Fields":["51.89.148.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spider"]},"Identity":{"Case":"Some","Fields":["Ff7kI9/4r54uCBlZsMYyYHLGDaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEWKHxnRNPlzLJkFOZlG9/S0FofZb7fwv640zPkVotI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:20"]},"IP":{"Case":"Some","Fields":["192.119.108.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloak"]},"Identity":{"Case":"Some","Fields":["Ffz+yBUiRTpYrjiE1mCmIahHKBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mu/52L9c0TKyrgnv16ZhXkAWs+cUT7fby1I+DeS1dS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:07"]},"IP":{"Case":"Some","Fields":["185.26.156.13"]},"OnionRouterPort":{"Case":"Some","Fields":[40745]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:d0c0:200:0:6ca2:b2ff:fee6:2c13]:40745"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomPersonX"]},"Identity":{"Case":"Some","Fields":["Fdf7oKPvCMc6ekJgYZc5m3Bs3EY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SGOkfTcZDiKQR5TLkC7e89/2Y7o+b7UvpDUYJmsjtGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:08"]},"IP":{"Case":"Some","Fields":["2.204.199.222"]},"OnionRouterPort":{"Case":"Some","Fields":[13001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FciHcqwfKf2nAu5MXb+74Fezu0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UIkY2pk2R1gn+Zes4tA35m/pi4qJIGRCbxHi8X+7IMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:16"]},"IP":{"Case":"Some","Fields":["23.128.248.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::301d:faff:fe05:55b6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor07"]},"Identity":{"Case":"Some","Fields":["Fb4XyZ+s4kRw1Ar3gtapxpKrNtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ouSZndGq5VfuFVMjDqz9iRuFLWqWge89nGFloQg1T0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:44"]},"IP":{"Case":"Some","Fields":["51.15.78.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2415::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bayswater"]},"Identity":{"Case":"Some","Fields":["Fb0vTNCfNE5AmO1rl3c8UuJJYsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OSVNPWJf/CeVjPZ4gOpqs5Q9t+1vvhH4njRBwl3SWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:01"]},"IP":{"Case":"Some","Fields":["65.109.16.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5b82I0IfxsHI7ekh"]},"Identity":{"Case":"Some","Fields":["Fa5v/g4kWoINT3TqZLTDBO5VXB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AhraRWU9VGoakmH0cEmDej9azz/l9lg95rkXoaJBvV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:26"]},"IP":{"Case":"Some","Fields":["94.134.60.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoomerIsland"]},"Identity":{"Case":"Some","Fields":["FaSOcyXDTTO4SZ5uAgZZFLoYAcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELZyoWBZrQLJXlIrc2gbjyxc34lutYxGCrJ4XN2Cd0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:36"]},"IP":{"Case":"Some","Fields":["150.136.142.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:400e:2d00:1dab:577c:9b9:1ff0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fckalltrmptards"]},"Identity":{"Case":"Some","Fields":["FZ0uYLh5hJ5V7Z0qgZIqCohWtPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vTZz9Gyss3r/yyqskVvELZ8cn127hu4NpBaJWd/ONDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:58"]},"IP":{"Case":"Some","Fields":["104.237.135.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe25:f3bf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RToRpi"]},"Identity":{"Case":"Some","Fields":["FY1BG1HTE0VtRe9m0JlYWXbM3W8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvzax4GmaWDTN1plwhT2iou2hpEJNZAwDlIvPqXfG6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:01"]},"IP":{"Case":"Some","Fields":["194.99.104.35"]},"OnionRouterPort":{"Case":"Some","Fields":[13526]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bundesgebaermutter"]},"Identity":{"Case":"Some","Fields":["FYQalspcEXGYWpVlv3zd/iv46R4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FjN2AJ5xfer4DRt2z/Co1mQww/tvK72XxODznh9kVUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:20"]},"IP":{"Case":"Some","Fields":["178.1.124.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kwt"]},"Identity":{"Case":"Some","Fields":["FXKMGrZRsCnjJZhRfmUacMpD3v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2IEoc48xy0mAsNakX7FRJXcPTgsbakN2iTcjR3E1v68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:53"]},"IP":{"Case":"Some","Fields":["195.88.57.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex18"]},"Identity":{"Case":"Some","Fields":["FV1vV0JfFsBiTXd3dkHk6xtHxvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A+w71sXp7J/z8XiMgOFsbpaH8t+YdHCTFLnZ8KnBv4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:29"]},"IP":{"Case":"Some","Fields":["199.249.230.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::108]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["FVVxiGUDZV7bU07MQU6sZwejqcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MXhlHj1NqQALYvgVKCBPy3IaIpqtYdE4YjzgO4kE84U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:31"]},"IP":{"Case":"Some","Fields":["91.211.91.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mac68tm"]},"Identity":{"Case":"Some","Fields":["FVUT2vQuGPoW/Od9CEF+RgeFqVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0pGwcwZsPkbgApSkrgdAGmICehAnTm5lWv10Yt2ydw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:50"]},"IP":{"Case":"Some","Fields":["94.4.206.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FUUGQBg9ZIiv76i1DujpH2Sv6as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8khik/Q5fBVcOI6cLfoPsr0Y+EAy8Pcgux3xYtopSrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:19"]},"IP":{"Case":"Some","Fields":["198.98.57.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FUNe1UtnkkzOZgLI1X1l3v02bC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hxK6AD6/+1oZSpJ+KjEQLtmpldh7xNJ1sJqRnA5Y/Wo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:52"]},"IP":{"Case":"Some","Fields":["185.194.142.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tspio"]},"Identity":{"Case":"Some","Fields":["FTKjYXLHABKxBX+7+v4nNO2/Sjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VxdttLNu5/c7aIM1sZ836BYUGBD450GnAZ+ZypdNHMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:11"]},"IP":{"Case":"Some","Fields":["77.81.247.72"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["FTBCM2IiFD1nvz0DySVX+Rsa2Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8Ez1Ug/JhXChIWxAdK9x2+9Wvlf5hCkStsKt9BDAow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:01"]},"IP":{"Case":"Some","Fields":["152.67.162.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:8001:dfea:1::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie5"]},"Identity":{"Case":"Some","Fields":["FSkSkdgeQE+2vsFtNmYIWQ0rAkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdi7PFle54ZE2cKJT6xmoKEUPA7rW056WuDroNdYlr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:06"]},"IP":{"Case":"Some","Fields":["65.108.136.183"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["casaholiday"]},"Identity":{"Case":"Some","Fields":["FSPFAql1S2tCzKXrQCqDPP8OQC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xm9xIPguvAJmP5ZkGhbngaS/w8n267uPLG5zsI1NE3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["209.90.224.5"]},"OnionRouterPort":{"Case":"Some","Fields":[39001]},"DirectoryPort":{"Case":"Some","Fields":[39030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarbarianParty5"]},"Identity":{"Case":"Some","Fields":["FRDVfcRxJLIxmMeMPwM0p8JMx4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cmze5p90Dv3NikxKjPfN2DQ8recQBE59A+Rlr99VsNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:38"]},"IP":{"Case":"Some","Fields":["173.82.108.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["donttraceme"]},"Identity":{"Case":"Some","Fields":["FPI5HBKo+8LHLefUMMeC16AJNPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nSsDXhaVh7L6oey8iVQgR9ub7fGV6NplKrpVtagSmbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:03"]},"IP":{"Case":"Some","Fields":["78.22.225.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange012us"]},"Identity":{"Case":"Some","Fields":["FOctTaELZjU+WD8m7gSsDVY+p+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XtwWC3QsuJPxpXT/vl317saKy8tbnUC7kws8QXZlnhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:53"]},"IP":{"Case":"Some","Fields":["147.135.114.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::6c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torRelayMoniuszki"]},"Identity":{"Case":"Some","Fields":["FNoSg9kDmWCi4vS0Y4eCHb2unMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hCy5KRT+42pnHqFnwi4OlviQbKaVP+G2xnSbHS61+GU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:35"]},"IP":{"Case":"Some","Fields":["185.45.245.113"]},"OnionRouterPort":{"Case":"Some","Fields":[763]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tw"]},"Identity":{"Case":"Some","Fields":["FM5ElLyLY1XSGIIffWqsX3532iA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bf+Zx+/ByzkSJnAJixt5NarbLcr9c7lUOdEnlDoNv0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:20"]},"IP":{"Case":"Some","Fields":["103.54.59.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justhelpingout"]},"Identity":{"Case":"Some","Fields":["FMx9s/b3vpjVfL7cN/vEkjLH/Q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VdqUZpKuSQGNXpAXmzAhA4l2Hh3P69JqS+p9pwO07A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:25"]},"IP":{"Case":"Some","Fields":["5.9.137.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["FK8D5elIbnSLZRuj+C80eK01GK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28TVrrbUA63wrIbL9adWuxJtxOq2wLAxnyCPQ61xRK4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:51:37"]},"IP":{"Case":"Some","Fields":["23.128.248.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::42]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quartzyrelay"]},"Identity":{"Case":"Some","Fields":["FKHWtvQX3sOLsFo/+tVm9uAD4Nk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iq3A+iJDI9BLbExe+QlvWlhMhBTF0TF61ih9wAPej8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:21"]},"IP":{"Case":"Some","Fields":["130.162.33.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FJ5YQZna1ZZvraoH9GUusV6fxlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SDVPQGsI/R2uAsCTVm6BmjuIO5PNUaN2dO70aGppfDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:31"]},"IP":{"Case":"Some","Fields":["199.195.252.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FISHxuvgTrIklggMIHlsUbBg9hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xs/x7CnmL2uFHpuSxN5GfBbVeohODg8pRvoF32dQd6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:17"]},"IP":{"Case":"Some","Fields":["37.191.199.95"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fea6:13cc]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH114"]},"Identity":{"Case":"Some","Fields":["FHscbh1Nh0uylJ6Q+AdXImWsr74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U4t7dzqTuuH1mX8wNrJRGHL2oqmOU0uZElC4Xzbq1H4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:42"]},"IP":{"Case":"Some","Fields":["192.42.116.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:214]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlexGraywood"]},"Identity":{"Case":"Some","Fields":["FHMh7eg50mZgHmWn+q0wZ0mx7sU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sdplGronu7Kg9B1EPeHKXlwEujwm8UU1O6bJR8/xkkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:56"]},"IP":{"Case":"Some","Fields":["165.73.242.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackMesaAG"]},"Identity":{"Case":"Some","Fields":["FGkwdMIyXOyHRq+7hSkedJrEXV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BVS+Yz8rXvWbX5QPxNESrrYXQ6XmVUo55+qMsPvmXoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:43"]},"IP":{"Case":"Some","Fields":["85.214.64.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1162"]},"Identity":{"Case":"Some","Fields":["FF4Yh1Yjugx61R7osbnPUSHAcc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Frhz1m2FH3l3LlEqVEnqkZM919Zjg3MjALEmDtqss8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:55"]},"IP":{"Case":"Some","Fields":["185.220.101.162"]},"OnionRouterPort":{"Case":"Some","Fields":[11162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::162]:11162"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayChu2"]},"Identity":{"Case":"Some","Fields":["FFIjpPdh3Z8OFNzfUSD+1PmY/cY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MUF8Fx7SB55WsxVAnhbFA2QjYh9AbiVtv2jlCLqsdes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:01"]},"IP":{"Case":"Some","Fields":["158.101.203.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c002:b0e:df68:94b3:52b1:5f2c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UrbanTorRelay"]},"Identity":{"Case":"Some","Fields":["FEParwn0eHXZIvcYyMyJqIxQs/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVMMyGWRf5HdWfGkSe8/S+nYB3qupltLhm3yeja+5PA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:22"]},"IP":{"Case":"Some","Fields":["108.28.144.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wagwan"]},"Identity":{"Case":"Some","Fields":["FEL0DKM6wpRB9U72lvzASloWwwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sI/438dBWBeTH8LHsySlYbxhQY1DfuY6Az9di+fUst4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:10"]},"IP":{"Case":"Some","Fields":["50.7.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ServerTor2022"]},"Identity":{"Case":"Some","Fields":["FDyY1PEX88UuvdbsAzI7haE6oxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9uUzOQ148Lj7SyWf0FsWEkBP4W2bcFA3Xe3qWZXyp7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:53"]},"IP":{"Case":"Some","Fields":["46.235.182.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal2"]},"Identity":{"Case":"Some","Fields":["FCWTT6OQRjhsOy78PY944IpzHKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j/4yjSNHBGBJs0zW3MY+yr5odcZtpdK+xZJdx4sT4wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:30"]},"IP":{"Case":"Some","Fields":["158.69.48.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::3aef]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vulcano"]},"Identity":{"Case":"Some","Fields":["FB6aWi78H4zO2wMs3rrTIH7MZQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J0J0tqlL4EsNAAJflnnQssJHaUvG2N9JmJqqxbkaAVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:57"]},"IP":{"Case":"Some","Fields":["94.172.84.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KatSystems01"]},"Identity":{"Case":"Some","Fields":["FBNxE+QEXuyyCQPLVCma+zcGE1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSuyty+9O1u26mM5vrEwPufB3XZzND5sW0O1MB1YaVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:20"]},"IP":{"Case":"Some","Fields":["54.38.215.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::3eb5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["g00dplain"]},"Identity":{"Case":"Some","Fields":["FAjuV2iiyhbHQKWcQZc10MAWd6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6B0l/5jcTCHYmIKSkRyaCJayGQLBBdG7gU0ArZR9OZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:23"]},"IP":{"Case":"Some","Fields":["82.66.103.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:807:de30:4066:2214:e028:3ae7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["E/vJdRbchUOZ5wvHyppFE//U8Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QAkUmhVSoe3XO/OOjC5o3dvbQVKyiQVhvdkfRGOZ2nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:39"]},"IP":{"Case":"Some","Fields":["94.16.117.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipgb"]},"Identity":{"Case":"Some","Fields":["E/sm+TYfgDrRkP6Is14kHcCEsCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ei5w/weeRhvnuhJHn8XA4Lps6q1L1rG554y7kMY/qWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:05"]},"IP":{"Case":"Some","Fields":["185.220.102.246"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::246]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanopoIT"]},"Identity":{"Case":"Some","Fields":["E/fq5zHKRgCVGYaSHgjsq5sdKvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x6RF9g74zWdTLUOOhHz5DSJaWi8fKzBWtUEEfPEoTEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:43"]},"IP":{"Case":"Some","Fields":["37.9.231.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b78:2006:ffc3::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prostor"]},"Identity":{"Case":"Some","Fields":["E/TN5xz71KsNj06E9ip3TyexiQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VLkLVSzT0RaP1l6qRby4Zv/FAcJjPfPWOII3nzFSO2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:15"]},"IP":{"Case":"Some","Fields":["46.226.105.168"]},"OnionRouterPort":{"Case":"Some","Fields":[10100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:feb8:ae3b]:10100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darky1"]},"Identity":{"Case":"Some","Fields":["E/JNX8YOmdNTWmh2HC1iIwNIT5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9nENAvtOhgkhg0L6bsPYJr3vdt278ny8IXmKiZV197M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:37"]},"IP":{"Case":"Some","Fields":["51.15.46.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1828:925::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["E/EinEG4pn9KuUmjr6Xm8572i/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KVpefBtxvkoGywGv8sPfvekntV/uY8jkD3B6xY/mwv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:38"]},"IP":{"Case":"Some","Fields":["62.171.165.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation52"]},"Identity":{"Case":"Some","Fields":["E+4OFMaidRYzE4J3wUQ6TDfdVdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lqFXPh/sfXQ+I1q0MekbZAfoFxh0XRvpPKo+CobPcu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:46"]},"IP":{"Case":"Some","Fields":["51.89.143.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t1saczhbu0dgljekrq"]},"Identity":{"Case":"Some","Fields":["E+lDx7DA3WobyCAbYgN7S/ces3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAdBlD4sXmVKYu9ZTlofHRqhDpyFzMncUbpHv0uVHYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:42"]},"IP":{"Case":"Some","Fields":["51.154.39.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:ee41:84:9066:200:ff:fe00:202]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RavenSecurityOnTor"]},"Identity":{"Case":"Some","Fields":["E9/8hupMz7gg6+YWLmv57cO6ZqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ypEO2ukux6Jv/a8+pMhLSJSd9epH2Bxwr2z50Ew+DUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:24"]},"IP":{"Case":"Some","Fields":["135.181.165.179"]},"OnionRouterPort":{"Case":"Some","Fields":[25]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["E8rcngnzCvJKmLROiDI9tlWoA+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFTrU0Od1Ik+is6MXJloih2sRXeDqxAC7laiVWeyCZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:29"]},"IP":{"Case":"Some","Fields":["188.68.56.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imieeet"]},"Identity":{"Case":"Some","Fields":["E78gZaXC+Hz+kO9DG11oCQM+rSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0RzWraUUqmzf0iYrGqgveT7pycxHkI3ugBgtM7IoX7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:11"]},"IP":{"Case":"Some","Fields":["51.210.61.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORtitan"]},"Identity":{"Case":"Some","Fields":["E7I1THTM4pgVtOH2kvLw6Gx/E90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwDP9SKflEIO8Bb4i6fLnbZB05iH48+5mal2sbP8LPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:18"]},"IP":{"Case":"Some","Fields":["172.241.140.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zion"]},"Identity":{"Case":"Some","Fields":["E6cCLEn22Fb+KO4yBWGes//NRrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7eZrGDVI+TqahiymixjHI7OlIdAZGy9+Xr42qn695vI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:30"]},"IP":{"Case":"Some","Fields":["78.194.37.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex67"]},"Identity":{"Case":"Some","Fields":["E5yGxMm8lOibr3mxXr/fk5bdW7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l7JkLILoDBkpKiA386Tz6RH4zPbnr17PPgZO6fFy0qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:05"]},"IP":{"Case":"Some","Fields":["199.249.230.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::156]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catcharities2"]},"Identity":{"Case":"Some","Fields":["E5Rz+g3Ai272NRVJjqtRwSeWGw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9u93F5nMcZgjXJxqg/d6v2VIm9t7n+oahGsVObNQdVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["207.2.121.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:3e20:378::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sennovakatido"]},"Identity":{"Case":"Some","Fields":["E4uV+aEOi+umsUKtrHMxdlxhrOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0C/bYY2ZajLZlEn8iii7pBeN7z/6Uzhap/uVU/ctayw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:59"]},"IP":{"Case":"Some","Fields":["158.248.86.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doerak"]},"Identity":{"Case":"Some","Fields":["E4CcwcB4KHUqJIzbyBhpxS52vr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CfjC1FhXZsif0rGyGz9NWsLUyMeMSDG5TKWhSS8QEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:00"]},"IP":{"Case":"Some","Fields":["65.108.210.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:3711::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["QuandaleDingleRelay"]},"Identity":{"Case":"Some","Fields":["E2YvTItYhrC32nYEoCXN2+P8LYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eoNozqj1niUX6wJqjuN0sSJr1hoS4ZYOv47c8LFqVJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:33"]},"IP":{"Case":"Some","Fields":["95.235.232.34"]},"OnionRouterPort":{"Case":"Some","Fields":[59132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jellyfixerpitbowl"]},"Identity":{"Case":"Some","Fields":["E1/0TMM05mMvL3S52Z59QzQiq9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xn360RvJXsTssj4vROCSjx14mhujoE1OtbgZivO1y6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:08"]},"IP":{"Case":"Some","Fields":["45.79.14.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:92ff:fe97:c70b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonjubilex"]},"Identity":{"Case":"Some","Fields":["E18qizL1g4RfKw4TPv2EwlAmdhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0v2ll5GCmhflH2A4N0Mh4eGjSCvlvXTqOXV+XGY8yiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:37"]},"IP":{"Case":"Some","Fields":["185.220.100.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:8::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4chanEngineer"]},"Identity":{"Case":"Some","Fields":["E0eYwCHe5AHqTILY6ZZw/rnKI0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+qNIT4J+DNdAFyzaHZYPjae2rvvKMAkeZRjXjsJIoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:24"]},"IP":{"Case":"Some","Fields":["66.187.123.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["themayor"]},"Identity":{"Case":"Some","Fields":["E0R+7v/UJ3EgOp9/2ztCWHuQbHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4zIv8BFdXUeKOAOqZOx+lc7v//PucK4PIR7KbaI4VZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:16"]},"IP":{"Case":"Some","Fields":["45.35.34.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu3"]},"Identity":{"Case":"Some","Fields":["Ez09jztyIKMUuvAqQqVm4jAjRjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M8UQLHFcRcX1qbN/JjrgaA1pIynWYOTYE6mOjtlR+bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:58"]},"IP":{"Case":"Some","Fields":["95.217.231.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:48d0::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KoolJack"]},"Identity":{"Case":"Some","Fields":["EzkVehQUhKtfQfJZGQJkPwdFy/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rbRpoCIaeGWWfjeLMxiK6xGok3rPS14WXzVVzwZb61M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:24"]},"IP":{"Case":"Some","Fields":["154.67.116.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakePHOBOS"]},"Identity":{"Case":"Some","Fields":["EzHU8g+Wef6p8ar6LqnJkqxvFy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eThMFC3qa2my1WsnBHnTH7r4d5CJj1hBQM4DP91cVnM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:11"]},"IP":{"Case":"Some","Fields":["5.199.162.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809nl001"]},"Identity":{"Case":"Some","Fields":["EyoILOMvPN0b24CyQCmaYVNG80s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZfQDwz23VohjW7FFH98ymIYjDm/rl9xEGs5Q8cEbwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:03"]},"IP":{"Case":"Some","Fields":["5.255.102.43"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:be74::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quichupps"]},"Identity":{"Case":"Some","Fields":["EyBOCOv5qUMhttb8Wh8K3wLvPyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["erYiUg5JbRUTiMBlRgOOFtitDqdrJpl2lYob4qc3LE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:49"]},"IP":{"Case":"Some","Fields":["146.0.32.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9788]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffa0:59::1]:9788"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CCrelay1337"]},"Identity":{"Case":"Some","Fields":["Ex+8ij1LRN6bJYrcWGdAgrHgbSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5wFYCtEviJHOpvbuFrOo4ACQeFAXKvsXyXOJ8EfQj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:03"]},"IP":{"Case":"Some","Fields":["188.40.238.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["futureWorld"]},"Identity":{"Case":"Some","Fields":["Ew8zUR1To0+QlK0ENKkBPsY7IBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DFgdiVo9D7Re/fjgi/pIQlLwwnVn5lNi52A+YTTOnWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:56"]},"IP":{"Case":"Some","Fields":["188.154.181.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkturm"]},"Identity":{"Case":"Some","Fields":["Ew5p6PeD3vJW51f6eBVLfcKjng4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Q6c0q2b0rK3+dPMIpHSF+pyWfjVuxRhST8iZGgVM7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:29"]},"IP":{"Case":"Some","Fields":["185.72.247.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lossantos01"]},"Identity":{"Case":"Some","Fields":["Ev/zkNTVbFQkbT+EMLR10XYLtKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3N3ThBMyQuxiF7mefeemG1dFAb22OxGxmde6XFg+zMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["212.227.142.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ridcully"]},"Identity":{"Case":"Some","Fields":["EviHmN1Lm/slppeNqD8ILvHVBRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8sxYB6shmuaqUcXGkOaMSjh9FJj2jN5IHsAGSP8RYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:00"]},"IP":{"Case":"Some","Fields":["188.40.99.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:1901::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Et7gEhukQxuYDlfO8fcWNMMbZzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6hQK8JwEDgBHAmuz6geXp/XjYZzvIbSiJQF86/q0i0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:03"]},"IP":{"Case":"Some","Fields":["81.197.113.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelayMPC"]},"Identity":{"Case":"Some","Fields":["EtnaU59HpVkf1T2Supvd+IiWiew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzeJDb0CDz/q9TizesjBbU/T0JhyV0Ni/wMRWx4fPvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:15"]},"IP":{"Case":"Some","Fields":["151.80.44.177"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:11b1::1]:49001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shortmax"]},"Identity":{"Case":"Some","Fields":["Etl4wqTLSsF5QP6I+Jm2eg/5uq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5I3s8N1YvslqGEWpsG952Vqf5Mu8fbR+th38nrjUf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:18"]},"IP":{"Case":"Some","Fields":["95.216.141.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:513::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFNrelA"]},"Identity":{"Case":"Some","Fields":["EtVS6K96orcbIYtbv2pf76bya6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r5fOW5uGosLSvNvRPfR/2xNxELS6KsPfwMsRAg9oFdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:40"]},"IP":{"Case":"Some","Fields":["217.182.196.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dbalittleB"]},"Identity":{"Case":"Some","Fields":["EtUUWMcHJPxiVfkzyDHCKBMTaYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9SSzfvW7p/9XpOS7wTVOYyAnfWTWcrb92IEfn6Kl94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:41"]},"IP":{"Case":"Some","Fields":["63.225.188.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PikachuZap"]},"Identity":{"Case":"Some","Fields":["EtUM0DbezuXDoQTWtxn14k5dRbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/nKTVnyb3hd0J+TITPBDeA5HPtYDc7OBfkFy6nXlFBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:31"]},"IP":{"Case":"Some","Fields":["185.244.30.43"]},"OnionRouterPort":{"Case":"Some","Fields":[12810]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:803f:b5e7:1ef0::1]:12810"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4rescue"]},"Identity":{"Case":"Some","Fields":["EtEPFmaC7x/K6uRn8bTX9srrITI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["htMWRK6xubArs9kQh8g+9aAVPJpUHCp0PDRx2L1Va5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:42"]},"IP":{"Case":"Some","Fields":["213.202.223.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Es+E09LjC7l5m/wOHd39qNNa8Ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["igRV4xIlQX2zLpW2N+NXDK8/5P4EQduRNWGjUXQ0YR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:04"]},"IP":{"Case":"Some","Fields":["149.202.91.90"]},"OnionRouterPort":{"Case":"Some","Fields":[39353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1004:b5a::1]:39353"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bammbamm"]},"Identity":{"Case":"Some","Fields":["EstMDninHIRgaWBTYbHh/1KOGvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GRSBDFwzaCD1atb1+iG+pYUixWuBGCRYsqSjhvFMNWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:48"]},"IP":{"Case":"Some","Fields":["193.43.147.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["EskzdsWnCzU917RKNPtxDhMVKt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+KQvWrY5AFHMxrUXHjPgxeSKuDYoXZWujx/ROVxV6nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:24:58"]},"IP":{"Case":"Some","Fields":["185.241.208.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay32L"]},"Identity":{"Case":"Some","Fields":["ErGldp04/0fPaMIjXhvaMV30API"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SdFJ8sSzsMWzixXHj8vcG/VGZh7XOkBE3n+z/36XJH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:52"]},"IP":{"Case":"Some","Fields":["185.212.110.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8620:201:215::2cb9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet1"]},"Identity":{"Case":"Some","Fields":["Eq0w5dJapn9Rl4DiER5hGkVf3Ik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oA5bKWeZKq57ohFP/mKebQIzYvJoZeNqWd3bF9oTKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:52"]},"IP":{"Case":"Some","Fields":["193.11.114.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::99]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torarch"]},"Identity":{"Case":"Some","Fields":["EqTyB+4jHzQsxbWj8sbcgKilnpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X55ib24wWEDny/ZLQN36fyuoEsdGdJ+QWsM/4Jkva4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:45"]},"IP":{"Case":"Some","Fields":["45.33.55.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:93ff:fe25:b23e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["Ep95CauDLT7jchxJcfEv/08TKu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7h6kt3pnvjF9rDK2GcfHAQeEUlBeKEuhfdk4NLm+P6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:28"]},"IP":{"Case":"Some","Fields":["82.48.209.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sasuke"]},"Identity":{"Case":"Some","Fields":["EpYRME89k1NR/SVQcTSH7y7qUFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lMwehgvqsNtIysNlF0cvnw/atOFAgUYI17lmnL951gg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:26:22"]},"IP":{"Case":"Some","Fields":["162.251.116.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quartz"]},"Identity":{"Case":"Some","Fields":["En9jWPaP+35DfbpR1tTaxHufeKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYKAISi5k4nhOCai9XdHUDmHXX3eOGvg2UwexrqCJ1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:50"]},"IP":{"Case":"Some","Fields":["5.2.67.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:46a::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["En6AOIjYLzPMPDEezGzOt3CIMcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZeSpT/cMcDrH1mvAaty5rx29F2F0XY0YLXyY+Q9eEIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:23"]},"IP":{"Case":"Some","Fields":["188.68.54.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e028:242a:33ff:fe87:a24]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ROBIN"]},"Identity":{"Case":"Some","Fields":["En4VZJnAQE28twM6/rpt9CjtkY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eHjBFkr4azYRV+imCUlPWY98ghTz1ZrKZXpx3a/lK9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["92.223.90.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:2c6::135]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4rescue"]},"Identity":{"Case":"Some","Fields":["EmTbiTA8ioG5OQ6n4GUWYRlZwJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAA/ZdkOUGuAZ6vik9EWyL70Ynj7qGdGRjDJvLk4uoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:40"]},"IP":{"Case":"Some","Fields":["213.202.223.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["costafastgarnix"]},"Identity":{"Case":"Some","Fields":["EmLswGnUlX0TN+g+DCQ3zIDdPfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NyOreg5Wc00PsaHAbILyTmwixz3ECZDGjTK9QWp3bsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:21"]},"IP":{"Case":"Some","Fields":["78.46.141.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EljQqdlVgrdmb8Cvbpp5gQmpop0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBHMuIVxf7/X+zLgItrvsdvsH6TLtJbrXYdmVvHnt+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:12"]},"IP":{"Case":"Some","Fields":["165.227.161.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["EklI/boLY/I6L7ffx99i7Umd5UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkYilk8LR36MhsWvvVPEUks0EkfPpyqdqFwdrOAxHSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:07"]},"IP":{"Case":"Some","Fields":["51.158.164.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKraken"]},"Identity":{"Case":"Some","Fields":["Ekgtw6VQBBboc40Zh6gLlLlD1O8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Xd+KYI/lcoIZ8HkWj10+KoROAxXyqQAX21vozaTSTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:53"]},"IP":{"Case":"Some","Fields":["185.194.140.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:66d:827:90ff:feb1:17e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritdown"]},"Identity":{"Case":"Some","Fields":["EjquOgMbAjSyUBydUKxt4YAxqRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sRhb998kqgKJX7eaHAgLHa5uVHiiovlH0Wp4vh8g+Gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:56"]},"IP":{"Case":"Some","Fields":["159.223.233.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1107:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FermentationLabs2"]},"Identity":{"Case":"Some","Fields":["EjV1kpSAIkMKj+dtMS/6jFWExag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URXvS6zBGgUd5/YxoFDPhtf4o6LWxWCPIhjFRCM5/PY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:46"]},"IP":{"Case":"Some","Fields":["99.150.229.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TeleMishka002"]},"Identity":{"Case":"Some","Fields":["Eh7MinvYgYI9rqPAhY1R/fGbGZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DrHaS7BFi2UUs5IaI0vWsgMmixMftSYgZQwmFbZ573c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:15"]},"IP":{"Case":"Some","Fields":["157.245.184.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=780"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LadyTremaine2"]},"Identity":{"Case":"Some","Fields":["EhvNqukP3M7ymXUPt4qiRH5C04M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tP1x8eOrcijJr5V39rX+BVcN+9t1n8/tkrH1aRCNqBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:32"]},"IP":{"Case":"Some","Fields":["212.51.141.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gepard"]},"Identity":{"Case":"Some","Fields":["Ehgg3Ukv0HruEdz4UuUq/0p9Y2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5f8XBtS2RCABpklXPEypPo5JVk4d+lutZsh59qbrVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:29"]},"IP":{"Case":"Some","Fields":["109.70.100.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::70]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccrelaycc"]},"Identity":{"Case":"Some","Fields":["EhGsG7uKGvfLqGvOhomqMUa4ZCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glPEISV7TSLtw3jq3HObPzQDFK16kLwQFaioYKZMwYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:02"]},"IP":{"Case":"Some","Fields":["65.21.251.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:344::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LostArkIta1"]},"Identity":{"Case":"Some","Fields":["EgtTXlPErPlo7zriabIk0c8PPB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lo2lRAe72EDkEVYNzhdy8XAeWIYpQF0Ief9yUx83k3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:13"]},"IP":{"Case":"Some","Fields":["92.223.93.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:1b5::cf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AgrippaRelay"]},"Identity":{"Case":"Some","Fields":["EgYmB3eLVMIhWmhgbHw7Ad186PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnK1cSU5Mck6WeSGL6s+joe1d0m424Qbj1uQ7coEmFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:02"]},"IP":{"Case":"Some","Fields":["88.99.76.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["EnzoTheBackupBox"]},"Identity":{"Case":"Some","Fields":["EgRs8F98B6Lbqj6ohmoRfxQ6IwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qxm5uY4Ez3sx4gCGElz6zmHWumQtFsOLuTPACo12Yc4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:10"]},"IP":{"Case":"Some","Fields":["173.187.191.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b88c::5]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasedExitRelay"]},"Identity":{"Case":"Some","Fields":["EgH0p2bStj4cxy1Cbm2fFToJsQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jG/37k3BBDFse1+v6ceFtS2m/OJNo2HebZVTbaiiBnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:18"]},"IP":{"Case":"Some","Fields":["144.172.118.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:b592::134]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schlafschaf"]},"Identity":{"Case":"Some","Fields":["Efx9nH2N90MmuQ7HHBAXMnlzi48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B2T7fzgj7kTr++zlly4p598WgejuS3P2U8vq9McBX1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:43"]},"IP":{"Case":"Some","Fields":["130.180.63.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["EffH9+OXKZJ84jbaHjtsKEfxRFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ppC/RStLzDA1R5f1XEG8YrLnZsyZ8tZZjNTW58bBiS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:11"]},"IP":{"Case":"Some","Fields":["23.128.248.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::71]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IdeaNexus"]},"Identity":{"Case":"Some","Fields":["Eep/ilgde80fd+1bdSaguSsAOoc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EILR2pD+loqi6GockmAUPHgnMfxU4AXNuGpQCF9MX3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:37"]},"IP":{"Case":"Some","Fields":["164.68.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3005:233::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EeaI0hPEwLBnPvcNm286gxlQNlY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CEUCkTcvZSGUtoxz6xf6cnPSK8/iYpBH5beKd4cbQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:41"]},"IP":{"Case":"Some","Fields":["193.32.127.232"]},"OnionRouterPort":{"Case":"Some","Fields":[57282]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gGDHjdcC6zAlM8k08lX"]},"Identity":{"Case":"Some","Fields":["Ed8AF6Q68fCIJc1dlzKX+BqwD/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lQAQMLq4iUzCTZXiGYz+ga7u9CRaXOxr/Tz8JRnbyMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:04"]},"IP":{"Case":"Some","Fields":["37.120.174.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:724c:df98:15f9:b34d:443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mekansm"]},"Identity":{"Case":"Some","Fields":["EclSnJ0GcVRervgN/iCa2Xe86Qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["05K9FShSjl8GkGwk5NJzsuFG0JxVt+1KdR8/YkBDSvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:56"]},"IP":{"Case":"Some","Fields":["77.22.42.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dudebroooo"]},"Identity":{"Case":"Some","Fields":["EcHyhWLVJixqfWY7AZe3rDXYmU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9TZJqebNukfmde3AEwKVJ/YRz+ZZhJ9UCTTpEtN3SBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:22"]},"IP":{"Case":"Some","Fields":["188.166.168.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["auctoritas"]},"Identity":{"Case":"Some","Fields":["EcCL1kxdS3Fz9qTCdr7gDCxSxi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mfsJbYrLVpOXj2YtqJCzSnT0zC6BUUqeFY3KuuqBk/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:46"]},"IP":{"Case":"Some","Fields":["146.19.213.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mirage"]},"Identity":{"Case":"Some","Fields":["Ea7lZ9JM3mgKx4vNbrrDbFCzz0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hxtn6dH4HcUkXUn1mJkmEm6T4rA6cEbjnpTIAbL9xoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:39"]},"IP":{"Case":"Some","Fields":["172.72.163.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jonasBebe2"]},"Identity":{"Case":"Some","Fields":["EavbTQuUTxhqiYVgy4LHBDmVfco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4K7vQGbzZuCKCuEB/tAgvClaXl1JsbDWFP1QXU90YU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:01"]},"IP":{"Case":"Some","Fields":["178.63.18.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:431f:4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ru20101315"]},"Identity":{"Case":"Some","Fields":["EaqZt2tGUzNEHjAA9HeZXHBJm5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dd8U8UYvW63se/Fdp3IJNFqMGmDK+xjAALO/L1z+s8U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:28"]},"IP":{"Case":"Some","Fields":["185.246.182.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["EaLH5GKbyPKugYjP9kIfH73SqM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3sMMJ7D46UBIKHQLk4fwW/uyO98PGSREfHMazqI+bh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:41"]},"IP":{"Case":"Some","Fields":["185.220.101.42"]},"OnionRouterPort":{"Case":"Some","Fields":[10042]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::42]:10042"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber15"]},"Identity":{"Case":"Some","Fields":["EZ1ZWoGmfWweTWa3R3F/2VIl+fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOrC85KCjqm0PcGV5iIw8F21v2toNODd+SYIljeLN/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:54"]},"IP":{"Case":"Some","Fields":["185.220.101.8"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::8]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EYjcVJ/fXoBU4f6MeJpjLNGHL34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gN5pdibS3tqrVIOqNCj4VEbwq2Hm8eBmXhN0gKoWqDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:41"]},"IP":{"Case":"Some","Fields":["51.75.143.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp6"]},"Identity":{"Case":"Some","Fields":["EYF62KplUzoM7NI/j1R6l6afGSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dogY5y9vxfUrGU2qpxhbSK8+3bnhgvM3EAMX38WnbQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:39:34"]},"IP":{"Case":"Some","Fields":["185.220.103.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakeVISOR"]},"Identity":{"Case":"Some","Fields":["EXKGo/XfcnXy6x8o2KrHJ3LYSTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O6HjU6IzpS5Ioouod0z1DAxUT6xTRtmJIK6MFYLv6Tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:15"]},"IP":{"Case":"Some","Fields":["5.199.162.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Razor"]},"Identity":{"Case":"Some","Fields":["EVw/7FOSKY7yEzlwalCmiuwCYPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0XAYQVPV+iFcUVdnOV11OpTC6BFk70tmY8jBYU97Amc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:42"]},"IP":{"Case":"Some","Fields":["162.226.56.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange040fr"]},"Identity":{"Case":"Some","Fields":["EVgjQZibGG4XbVg2LxIk0oukyfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tHFl+GRJ5SR87OT6Vi1ShJC2F9Zpr13ojeHIrjrlhEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:13"]},"IP":{"Case":"Some","Fields":["37.59.151.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yogapants"]},"Identity":{"Case":"Some","Fields":["EVIWP5HDqi0wuPuP/KjYRCEV74U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6wMTBNVYdLBnmG4tMIeAs0LlRnY2eFYrHa4CtVRXFrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:43"]},"IP":{"Case":"Some","Fields":["172.105.237.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:febf:f72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedDrake"]},"Identity":{"Case":"Some","Fields":["EU0IUUBAFcAmXx9NS6al4elw4V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7raw+mm+Q4j8Twl9n2gHPXPyYgYyZweGrI0mEz0X/uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:25"]},"IP":{"Case":"Some","Fields":["23.154.177.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hashy"]},"Identity":{"Case":"Some","Fields":["EUxDsrrViIYbx6g/qYiezE9Ohe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc5d7Itx4XqFmt2OnFghHEmxhnIkX7VukRF0bxyWzx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:08"]},"IP":{"Case":"Some","Fields":["103.152.178.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:df4:1780:3000:cb4b:95b6:1d99:4544]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueGene"]},"Identity":{"Case":"Some","Fields":["EUwArIjPoYWq8a2ixsGdGnxnB4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["95zsh3PEeHmZ/NztMPyt1LDVKb9WtajXFQoKLl3/KtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:57"]},"IP":{"Case":"Some","Fields":["93.160.17.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChaChaPoly20"]},"Identity":{"Case":"Some","Fields":["EUeeZaxmNMKQHbyW6m7KFghn7n0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zm2x9Kx40nL3Nh8oM94Ics5wpzaC9r8Oj0NHrcDFn7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:49"]},"IP":{"Case":"Some","Fields":["121.99.242.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["excavation"]},"Identity":{"Case":"Some","Fields":["EUBXr/fRKE9Kga4UZLiZwO1qMuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kqr7m42sBSL/khQweFN3xf4/EjGvRqb4+WkGAelYRwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:35"]},"IP":{"Case":"Some","Fields":["82.64.139.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:231:6221:1d33:2ab3:f82e:f232]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AveCaesar"]},"Identity":{"Case":"Some","Fields":["EThtM/zVvxiMonllEy9nFBSO19c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qGbMeh6rbYaAD2PDkD0bqX1Ts/SXeULJloAcbEohTB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:15"]},"IP":{"Case":"Some","Fields":["178.165.27.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["giovanna"]},"Identity":{"Case":"Some","Fields":["ETerH4TsLVLfsZFXF/FP8aEOs5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZVvnPr4vWWGwLBiYTOsAd0ua4wvNVwcmrbMKAduAZYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:28"]},"IP":{"Case":"Some","Fields":["185.227.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fa11en"]},"Identity":{"Case":"Some","Fields":["ESGAvGylNhOP8hC8WcsJV8O/rME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1FqG17IyqJkk628/7ODpIVID+qFKoWlupgIhlc6YyZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:03"]},"IP":{"Case":"Some","Fields":["51.15.127.227"]},"OnionRouterPort":{"Case":"Some","Fields":[7890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:24b::1]:7890"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zerodivided"]},"Identity":{"Case":"Some","Fields":["ERmonnKdtlg5+yMqHg+GabCuhN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egEAYT9s9vAIXkquRUSn9nzNhKYiV0aPWv12T1U279s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:38"]},"IP":{"Case":"Some","Fields":["80.241.220.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:1000:6686::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cricket"]},"Identity":{"Case":"Some","Fields":["EQg3E+yI/wkmnsN/WtndqsovJHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["56m1zQgn27T0BhgHbrIkQ6pl5auxtAyo+bHkA0eiGbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:12"]},"IP":{"Case":"Some","Fields":["172.106.17.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torry2"]},"Identity":{"Case":"Some","Fields":["EPX0YHPJL3H5+/DSuNntxkLPZf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1VWP4PwZvOEzud4Pfbbt/EFRIW62PsRmoBP1/gir1zg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:23"]},"IP":{"Case":"Some","Fields":["77.180.229.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9999]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lusifaisland"]},"Identity":{"Case":"Some","Fields":["EOFgJSiTy7C5GxR+iwRScCfqLPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nz6oI5yjTHif1NScwNAwotozPTRMSz7rZSd1HciCtk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:12"]},"IP":{"Case":"Some","Fields":["45.32.80.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MRNobody"]},"Identity":{"Case":"Some","Fields":["EN+ZaPSqA8Z2XrEiwVBhFxi0/aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVRrrjRM0Car8auLGB7dpto6WmOSJrOivLbGqDQ67rQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:13"]},"IP":{"Case":"Some","Fields":["217.252.191.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ENWhzFCEn2OpGz34Bo+AbuNTJUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8dJJudbVmXV95P1VwtXfOEeUKwwcpzpqlqob4TVcCdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:20"]},"IP":{"Case":"Some","Fields":["185.194.142.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baloonasTORrelay"]},"Identity":{"Case":"Some","Fields":["ENIZiX5PJZSvHsAcQUwuN1Srpcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WTGVZDlkF0zVqfBa/8xD7FsJcMwOwMv+4/lp9M6cgKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:21"]},"IP":{"Case":"Some","Fields":["94.16.104.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:50:e4c::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GeorgeIV"]},"Identity":{"Case":"Some","Fields":["EMG8FP9puT2yRenyWAo5qRm9v0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1oM71MyROuoyuFBTjlv+iUTmfOU7YI5MB6DX21cTfj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:51"]},"IP":{"Case":"Some","Fields":["37.153.16.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["movingday"]},"Identity":{"Case":"Some","Fields":["EK9lRauzI/boZOB+cOP6q9llbLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bpJphlEA3v9xAr/ycCZw4dQPfxeS7KI8U/1L8YCl/ZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:43"]},"IP":{"Case":"Some","Fields":["66.23.203.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MuddyMouse"]},"Identity":{"Case":"Some","Fields":["EKnB7DvMhcIJdn43TZOmz/XyLKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glkZ9MRSQBzMEXbFbg7WnFVkcHR2ofbzIuKY09+xEcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:31"]},"IP":{"Case":"Some","Fields":["94.156.128.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra82"]},"Identity":{"Case":"Some","Fields":["EKcweNPXHQHEsAftdasnE05Q8dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GG71kFnHXSJYuQSOlzjORESqzvLh8O6PsWU11UGY6AQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:58"]},"IP":{"Case":"Some","Fields":["185.247.226.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eridanus"]},"Identity":{"Case":"Some","Fields":["EKXvzNL7nBpKwg+3eaXbEbWJV6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMhf/y6OIIBUxYJO4Q9OOOWaNukwnez4c8aysMv+UBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:53"]},"IP":{"Case":"Some","Fields":["144.76.154.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:2211::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["collaborator"]},"Identity":{"Case":"Some","Fields":["EJNTrPtuRUd7Et/i7tk1oURj1Cw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEuF5MvpPM1R8OSckh1Ldd1teFiia0Sm1gkrdMnNsiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:44"]},"IP":{"Case":"Some","Fields":["5.63.42.231"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benedict"]},"Identity":{"Case":"Some","Fields":["EIR+UHyaEBy5m/PZJ6SyvKHCYVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["omIawhWW4YN0WmpLmPbMH/MqO9ktCWx+/nq8PqYJ+fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:53"]},"IP":{"Case":"Some","Fields":["185.141.25.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tommyboy"]},"Identity":{"Case":"Some","Fields":["EIBaODN3S4EtB+t9HXWlQCFZD1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jW4buMYEu6iNYxeJp+ybF/cAjlhkov5zlN67YOvEOaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:58"]},"IP":{"Case":"Some","Fields":["116.12.180.237"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoochySloochy"]},"Identity":{"Case":"Some","Fields":["EHnmKPxrACVlasAk8tmXXEQUmM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/bg0hlgvsiSVO6U1I8fF2oRfTu0HVrIrrrwxowo132Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:44"]},"IP":{"Case":"Some","Fields":["51.15.185.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809tm"]},"Identity":{"Case":"Some","Fields":["EHYRgyZeYnUpvCULamZF7ZgNlpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SSE39ns1Tv/C8KuUYxfr+T+xqSW4gAsogLZP6BDlpzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:54"]},"IP":{"Case":"Some","Fields":["69.197.128.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3eb::154]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["panda"]},"Identity":{"Case":"Some","Fields":["EG48j8749XdLnpdzKjfazplQNjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z2G3K70HmxWhxGdklNayU0UJPftLYzLRyP/homeivZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:48"]},"IP":{"Case":"Some","Fields":["109.70.100.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alured"]},"Identity":{"Case":"Some","Fields":["EGaGEFzSEVX7OS3f3Pcp8Kyqaac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C6d+pPWaht8fDW8j0FY/he/LD/+ouw2KVI4BUjJm9WQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:03:48"]},"IP":{"Case":"Some","Fields":["51.83.227.239"]},"OnionRouterPort":{"Case":"Some","Fields":[586]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber49"]},"Identity":{"Case":"Some","Fields":["EF+AD9MOY3iDpk6mS8VW6CwkilE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Qo8M4f2aqekmo7qwOc2btcwuQuK39sqK7M8gERrfj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:26"]},"IP":{"Case":"Some","Fields":["185.220.101.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::25]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["realdeadbeef"]},"Identity":{"Case":"Some","Fields":["EF8j/EmpZZZbtlk2RCPqmp6bN5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzGbPVMUBWkbnvUgoFcRev5hQEfQ/1o42Or1Qp/onFU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:24"]},"IP":{"Case":"Some","Fields":["51.68.215.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::5a8a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rollingback20"]},"Identity":{"Case":"Some","Fields":["EFdJPBibtczEe5ZMeHM+bQ6XzM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vbnko10UfwL0CYaZLOju+eWlthu9mpm8LF52n9UaPMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:39"]},"IP":{"Case":"Some","Fields":["172.1.227.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra6"]},"Identity":{"Case":"Some","Fields":["EFD8ecXxEDsYUwDvct31tO3Gg8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GCTy51OoiHyM+SNF7I/RT10RhaJUfq98aY5m80YPgH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:13"]},"IP":{"Case":"Some","Fields":["51.195.103.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra49"]},"Identity":{"Case":"Some","Fields":["EEL6x8gEis2eqzZc9os/fENQc4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M92UvevviK/t7Rl9Q9XUQvq16i7aPzrlfH5ydQB58qo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:54"]},"IP":{"Case":"Some","Fields":["94.140.115.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayStation"]},"Identity":{"Case":"Some","Fields":["EDM2FloNLvytNgUzmEOgp3ELi5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nPLtMLZ0tt0ZQqnKWJy0/FX0fiXmdg/Xr4uKKJI7N3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:55"]},"IP":{"Case":"Some","Fields":["85.195.235.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:a403:13:5054:ff:fe21:7c4c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["max7"]},"Identity":{"Case":"Some","Fields":["EC6hSSEfSQwSLKzEBU8bxqhQPrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pLEzaluDRsb/PuB/jUCtoC6zIhfV+5WiAI2qi8WiePM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:32"]},"IP":{"Case":"Some","Fields":["93.170.246.217"]},"OnionRouterPort":{"Case":"Some","Fields":[1294]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doofenschmirtz"]},"Identity":{"Case":"Some","Fields":["ECMeCPGcA9Wi/jqtA9hjq94ggbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mHLCs03ccOCypYfwALmwUX0DJrZ4/28bXhAlD8TOIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:15"]},"IP":{"Case":"Some","Fields":["65.108.77.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay04"]},"Identity":{"Case":"Some","Fields":["EBwYiGswuyOzbLqtFZJhGIhS4RI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkSC8+w25E+jsVyH6hD30cqx/gwU9VIeTlAsFDTkRjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:55"]},"IP":{"Case":"Some","Fields":["82.149.227.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:123]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlphaGremlin"]},"Identity":{"Case":"Some","Fields":["D/n4glAfsdYQUi32qtbnXJX48rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qgodt+3S5yXrGWJPFrBOtHnGSF6lY8g1GjEHGbeniM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:53"]},"IP":{"Case":"Some","Fields":["194.87.97.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baxTianRelay"]},"Identity":{"Case":"Some","Fields":["D+H2EQKksQ7jOtwrQnWtVjLi0xw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ZgpNHKDynUPwkNVFmb3UpkwjOc9jgP53ZhzvhRAFGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:00"]},"IP":{"Case":"Some","Fields":["92.222.172.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchweinfurtsTor2"]},"Identity":{"Case":"Some","Fields":["D9yafWBggSPPVDL24lxuS8I+eTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6bE+W6rti8OsL0wbK9IH1IccaTdIsqfCGfgV3Oyrts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:24"]},"IP":{"Case":"Some","Fields":["85.214.147.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BaBaBooey"]},"Identity":{"Case":"Some","Fields":["D8q7jG5BLmDLhi/hmmQZGmnrlOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSTnQDcTzO00wuUX7vTj2pTKxgrXlCqEYKZ3s+HeDac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:35"]},"IP":{"Case":"Some","Fields":["108.62.211.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Innominato"]},"Identity":{"Case":"Some","Fields":["D8i5JcmGaX1BwbFQrceLstLlD8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M3OPEse7kLLUxsxU8CNFUsP2zHcDwJhkk0OV3kLbLMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:58"]},"IP":{"Case":"Some","Fields":["79.52.232.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[9033]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mentor"]},"Identity":{"Case":"Some","Fields":["D8EvK33Q6Ukw+bPN0yEwiZZlKVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f+0evv17S+6vZop3djCeHEFub6yC+s0QAehJ27mQikI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:20"]},"IP":{"Case":"Some","Fields":["72.14.177.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::19:ffff]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["D7q7jHsizt38hJMx6OninBgIEjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8lqi0WPx8FMjWyGTMnsgV87mPF7Otsiu4uz1K95Muz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:37"]},"IP":{"Case":"Some","Fields":["45.86.86.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5170::1db]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frantz"]},"Identity":{"Case":"Some","Fields":["D7mnfdtqyHhQd+wdL8lVDxnHVCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ewbYz0QUJhi3oZHybf10rf1GTMkAvYvLIDpJfq7t2Po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:52"]},"IP":{"Case":"Some","Fields":["37.220.36.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay35at8443"]},"Identity":{"Case":"Some","Fields":["D7B2kNZM5cIrUXUYPA5ZZ4zffqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0meBjWvx2EqOWsBPwthGMsK+vzWCQOX1AFN/y7UW+tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:14"]},"IP":{"Case":"Some","Fields":["140.78.100.35"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NaruOTORI"]},"Identity":{"Case":"Some","Fields":["D6YXiuOcQT/mV2Qt3Alck7GEKnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XXHjMU1obAdq09MyD05k/jsrV1t/7aRAonES1Mpl2Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:04"]},"IP":{"Case":"Some","Fields":["157.147.121.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sk"]},"Identity":{"Case":"Some","Fields":["D6J0IHNsm+LoK9ElZr80oBV8VYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlBWgGXa29y2ziUXRd7n4ZJIJ696i0TfqZwdX7nE3TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:54"]},"IP":{"Case":"Some","Fields":["63.250.56.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RussiaOutOfUkraine"]},"Identity":{"Case":"Some","Fields":["D6FP5+NlgPaZeN9Yynr+XVKAgu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v1fXscasUuBi7xCpWROw7N5rn97RTCOyjvfiQ0i5fsU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:44:04"]},"IP":{"Case":"Some","Fields":["92.32.77.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unimatrix01"]},"Identity":{"Case":"Some","Fields":["D5+QTWHyVsMvAac/vwvFcEFja/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6Dyb++KAFuAEXrMWV09Xcius0wDESUu1t5/F4TMMjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:05"]},"IP":{"Case":"Some","Fields":["84.158.124.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BotheredSoul"]},"Identity":{"Case":"Some","Fields":["D5wydpO284cNL+erJbWnZ4fqUt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y2vlw9t63w/Sll2UvVpIQoUNaixpOuh5CpkGA+0dOLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:49"]},"IP":{"Case":"Some","Fields":["108.48.87.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["K3PO"]},"Identity":{"Case":"Some","Fields":["D5MecVbya5ZLPpC4Hd6uRpkp4mU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dNsp9CWJ/mAP/Ccivg4HBYpzLNumz+5mZIRtl7qVfQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:13"]},"IP":{"Case":"Some","Fields":["185.117.118.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:f040:0:8::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo112"]},"Identity":{"Case":"Some","Fields":["D3GwFK9qIjW9DQ+9LVAWH1+TOg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/0hHbNe3i75eKfmhOQM8WD4WuYJqvLs1+WyHWozIIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:37"]},"IP":{"Case":"Some","Fields":["190.211.254.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["D2y/ueXN/FptQnMg6Qsd+RCV3Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YQ/rnN9LE9sH8Ds/VeOib5NnKLUvQg6twMlyVPOOpos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:23"]},"IP":{"Case":"Some","Fields":["185.125.168.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:42]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilvi"]},"Identity":{"Case":"Some","Fields":["D2oEJ2y5XQQq7o0ot0WHj4J9IQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EQCEWR/i4tKtHIKncHa033CAouWcIB9Tz2XPSKpAe5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:34"]},"IP":{"Case":"Some","Fields":["87.100.255.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[9041]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["D2Az+LSyYZ64EhzRDMabDg5jWmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6bsOwFNsIBbYntmeMKxTlTUCKr0YQT6yn2j5Ct79dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:42"]},"IP":{"Case":"Some","Fields":["193.26.156.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4c:b27:a410:8eff:feb3:1c4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot1"]},"Identity":{"Case":"Some","Fields":["D1O0sWdoqKGLg4ED3VAAaMTWVus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y8cvHbagpU9NOoX1AbUD0kzbkqLMwLlKv5O2LWz3mSE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:29"]},"IP":{"Case":"Some","Fields":["139.99.134.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Qazwsxedcrfv"]},"Identity":{"Case":"Some","Fields":["Dzsby0LA5ojUpFiH7912K40vCPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yraaUujDXy0aA1z8PpLmqqBkjFIe8GTl+vofsUoJ+js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:46"]},"IP":{"Case":"Some","Fields":["76.89.223.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:8000:b00:9103:e139:a2df:f3b:e56f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MalakataLU00"]},"Identity":{"Case":"Some","Fields":["DzjY7YE3kOLFBghjbhShR99mlG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pn6ZPE3SYpUH07enHJiQPiPd+j81ZhGvFaVcgD5CXRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:33"]},"IP":{"Case":"Some","Fields":["188.115.31.97"]},"OnionRouterPort":{"Case":"Some","Fields":[42000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sovereign2"]},"Identity":{"Case":"Some","Fields":["DzX13dFiGZtgstLLybt+NaCEr/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e859keotY/x67H7k22R/zZpvIWklAt/7NON8lL/OVzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:03"]},"IP":{"Case":"Some","Fields":["178.170.10.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::506]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE61"]},"Identity":{"Case":"Some","Fields":["DywsQYn3SuktYSB6YQ5b+vdrgYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xiEkXby6ueDJQnaEO6PdxZzP4tw0Dg+nze7ovmxq2XQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:21"]},"IP":{"Case":"Some","Fields":["37.221.66.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:102]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cadory"]},"Identity":{"Case":"Some","Fields":["DyOVCwhjq6/RGdfjJ2rUWNUV9Pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K12geKKDCUtNNy6QR3Sn3DYQit64yHfSVgNPsFxCWq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:18"]},"IP":{"Case":"Some","Fields":["178.200.169.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[4444]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["DxyBaN/QqtvmG9cRlNN8hn/tWiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7wWoxVkhtz65zf1LCCmHouj59/frG72wymif3bYIyJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:37"]},"IP":{"Case":"Some","Fields":["179.43.159.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra57"]},"Identity":{"Case":"Some","Fields":["Dw9pCvHTLHw8csVDg2YlYoiHuoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["heZktSXxWFylvtZGGx3bUT1I349OHbVdfw+XB5++7IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:32"]},"IP":{"Case":"Some","Fields":["51.195.107.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["polux"]},"Identity":{"Case":"Some","Fields":["DwXpahEJ3KIha2Nl1X9kgmwpvCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X8LXcJlCIAUKdw+2V0+xfmObB52+9voR9aCfljlVa8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:48"]},"IP":{"Case":"Some","Fields":["86.234.206.33"]},"OnionRouterPort":{"Case":"Some","Fields":[4005]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams02"]},"Identity":{"Case":"Some","Fields":["DvmRgssEsUpxjv38wPo1KO1IarU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xUwVGvHG2d35ZXP80chOvqUCBZKSG8dKdLqkP4A6biw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:37"]},"IP":{"Case":"Some","Fields":["45.151.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::a]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EphesysEntry01"]},"Identity":{"Case":"Some","Fields":["Duw73h9V6riJ1lL5y0bwcEiRBtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qUyWW/cPahLNYMiQWbbWvLkzpdKQYdqqLLPJ3WHk8tA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:05"]},"IP":{"Case":"Some","Fields":["64.33.179.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["DtTKio5s4tKNbSOyCBWuOYJkb8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4qq8Ju2/fUnJ8TA6VShkP3yVtjTKeTy9HVSJt5+U2mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:41"]},"IP":{"Case":"Some","Fields":["104.244.72.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f858:2704:73e1:7085:12ef]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFNrelB"]},"Identity":{"Case":"Some","Fields":["DtDqMkyTHPQctScr+x0BWz1Xcqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6of5SfVD1z9uuNO26L8raB6TjaW8ciK076fUg37GFgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:47"]},"IP":{"Case":"Some","Fields":["217.182.196.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0187"]},"Identity":{"Case":"Some","Fields":["DsBRV0O0wog/kIxSh3Sm4S5hO4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lrps0s5eZsPrFL2Yrp7ec7DfWUh/9PrHzxt+84GGJpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:47"]},"IP":{"Case":"Some","Fields":["185.220.101.187"]},"OnionRouterPort":{"Case":"Some","Fields":[10187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::187]:20187"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myrpirelay"]},"Identity":{"Case":"Some","Fields":["Drd4Jvvv/jp0lmFtyyyw9Hh3ijM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cyh1jSSgVwMZzjyrHGEutZD08tJbCzK0cWuELCCuf+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:22"]},"IP":{"Case":"Some","Fields":["72.68.41.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Dqvc+F3cQSSdZCkzhkbxWZgTwRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MSw4J9mES3LJT9ZNvP68S3NysPC4rPz2z7n/p4H8o4g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:51"]},"IP":{"Case":"Some","Fields":["95.214.52.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1143"]},"Identity":{"Case":"Some","Fields":["DqHXLVkl6ZmpOGb/zRaVDUMN4mc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uy5LGuwCK6ZrswxIWj+DlNz29kGwpJmZNgqqCKab1S4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:54"]},"IP":{"Case":"Some","Fields":["185.220.101.143"]},"OnionRouterPort":{"Case":"Some","Fields":[11143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::143]:11143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Dpz5KhhANBrss50flwDBuupRwoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8TStnpKblmtaMwfIRmkGBUAplXyk/q/LMWV5iHWaUQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:43"]},"IP":{"Case":"Some","Fields":["188.165.26.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberation"]},"Identity":{"Case":"Some","Fields":["DpjqBabaD6EcDDwyvw1uT4sNHbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ykmx4kRODYlgF7/JRTYcQ8Hz3vhwA01Ogv4wo+NMobs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:23"]},"IP":{"Case":"Some","Fields":["87.236.199.239"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndranikMarkosyan"]},"Identity":{"Case":"Some","Fields":["DpTm4oYTIwBWK9Eqa4gXCMwDK68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVVY45OFPZ7hsidWwe0WRGTzzTi3gs8ZeBU8Osfv+po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:04"]},"IP":{"Case":"Some","Fields":["172.105.68.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:92ff:fe58:5755]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ua321"]},"Identity":{"Case":"Some","Fields":["DpK/ArPBGw3RgwGg3hsWSgVG428"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RYCvn1XwpNRhtHMs4JLXQ/EAlezkinjeJ45or8ASc44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:48"]},"IP":{"Case":"Some","Fields":["193.218.118.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::182]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yank"]},"Identity":{"Case":"Some","Fields":["DoLoHvo6NjK5zVCwjMl0va4hzPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJlV7Ms+s3haCrDHVHYmeWFJZHu7kuxgDIIPmSDv0tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:09"]},"IP":{"Case":"Some","Fields":["37.46.80.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1187"]},"Identity":{"Case":"Some","Fields":["DmmqDgCrnlu/BSyGRoIimwsfFq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iIvK/j6zw4Tq6+aYqLDReVqxGXiSswcMttDvwESN4lA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:14"]},"IP":{"Case":"Some","Fields":["185.220.101.187"]},"OnionRouterPort":{"Case":"Some","Fields":[11187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::187]:11187"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artlogic"]},"Identity":{"Case":"Some","Fields":["Dl1zBGblu2dbyXBMN02+fhnwYWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DM0gKYQK1SCHe3qveixUGGZ7qkWsiqs6OcnPpTFGxRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:18"]},"IP":{"Case":"Some","Fields":["165.227.34.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::6805:f001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MKHWDJ"]},"Identity":{"Case":"Some","Fields":["DleC4AlOvsWW9qQNdsKwEqnwV2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["asbT/JUwSjV36iixnb8PysHR3SUF/5bIImPE61POkDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:26"]},"IP":{"Case":"Some","Fields":["198.98.52.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum"]},"Identity":{"Case":"Some","Fields":["DlUiy09542wLsmO6vIYc/GhpKa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IHRgDeuqHAg8kJHHhVWSLqH4oVsK0JyGOac85yeHHWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:40"]},"IP":{"Case":"Some","Fields":["62.102.148.67"]},"OnionRouterPort":{"Case":"Some","Fields":[42895]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Dk8ZDEpvfd9/jJp4QrhbS7z19Es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/2wLhX5rOOAlB6MmUtPskj9USY34jvy2HPz4vf7D0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:29"]},"IP":{"Case":"Some","Fields":["217.79.181.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:58::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DjLvMYQZ0wBcMAOv9NFWapQdpIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sHl4eCzr4B3h+knHrdgciGjjo5mhdersfJ989gs8LVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:53"]},"IP":{"Case":"Some","Fields":["104.152.209.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Di/1v4c98v26vkLb8ELTUN55TxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tvi+BrS3cWd7/iLrIk67RWkoHNtyjUo3UkyiPvw886E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:44"]},"IP":{"Case":"Some","Fields":["188.68.36.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["limoneneis"]},"Identity":{"Case":"Some","Fields":["Di8gqg28h8JVZA4PT0FbFGlN96U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/ydBGmwZKn3C8FefkbtAaxNobo8e2YoIJgNiBi6oNoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:49"]},"IP":{"Case":"Some","Fields":["5.189.134.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3000:8469::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nako"]},"Identity":{"Case":"Some","Fields":["Di7sElpqyNXr9ds2t3aj2lUQ56A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YHN7wQdtr3zuB4xlV+V1DVKYYH2UbK0nfu/2IyH2ZYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:18"]},"IP":{"Case":"Some","Fields":["162.55.58.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:b436::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uavae5Hahngu"]},"Identity":{"Case":"Some","Fields":["DiMAjwD+zjWq0xBrQ3yTAl9R/pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QeKmSqXB3d2pfYm5tPc/M9DukofrxsZPHiPeSE9ZUPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:19"]},"IP":{"Case":"Some","Fields":["107.189.12.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JazperExitNode"]},"Identity":{"Case":"Some","Fields":["Dg7YDQQtMcmO4k7PrYnaMz+kw+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EkvMMn/TjmPpL3L2s7qvMTtB1kz5JZooMQkqNB6KjGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:13"]},"IP":{"Case":"Some","Fields":["185.51.76.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:966::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["82320e8da3"]},"Identity":{"Case":"Some","Fields":["Df/l0oRsU3lOnEuren1r2sBzKFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cnudmbY4e4z1al2nkhqpw2DtyvgFS1Io6ezYBo60mrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:31"]},"IP":{"Case":"Some","Fields":["195.90.208.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoveMonero"]},"Identity":{"Case":"Some","Fields":["DfEQY1NoqmD6yVE1h+YBb0B+95k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/dklIKiZ8cvSDE+amYuja3JhCGUeizGASG4yNxT4mQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["185.213.175.112"]},"OnionRouterPort":{"Case":"Some","Fields":[7977]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:dc2::1]:7977"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DfCTefqUYvcyfQDmN9AAaT7hO6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nrlyN+1dUJH0HHeaZ2W8aYyuOfgNL7QXvWS/6IC6DG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:30"]},"IP":{"Case":"Some","Fields":["92.248.61.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH105"]},"Identity":{"Case":"Some","Fields":["DeE1pNDsy11X+Lcb+OIpWPxBRqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WK0zwwi3vH1eyG9+QoSL5RaT6HerPfaNV1sH6HvVZ2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:07"]},"IP":{"Case":"Some","Fields":["192.42.116.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tahm"]},"Identity":{"Case":"Some","Fields":["DdOB5mHMi5ypvdRQPj05PgijUbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVQo08Fr7oa/G+JX2koPaeCUZWLEwIuUUGuyZwe/TmQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:18"]},"IP":{"Case":"Some","Fields":["37.120.190.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:b628::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["avdjusko"]},"Identity":{"Case":"Some","Fields":["DdBO8LCBu/3jCC1OzIpj/QAi/K8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mz5zmZ+vGyCvr2A9mWoSB0U3foI1rllqsrGl17UdAEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:59"]},"IP":{"Case":"Some","Fields":["141.255.161.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay28at5443"]},"Identity":{"Case":"Some","Fields":["DbqJGnCuldStd1k6k25sBKvy584"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JZ2/Lrkg87cb3FKPf1hiaP6aYfJpotg6xOrPib0xzCU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:10"]},"IP":{"Case":"Some","Fields":["140.78.100.28"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI13"]},"Identity":{"Case":"Some","Fields":["DZZ+rOQkSKCOJENm33U7v/YR6zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T59Ii6mbIBGcTOEkqmErmydiVV5MndQ4hjObDkHVRTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:31"]},"IP":{"Case":"Some","Fields":["171.25.193.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["DZYhcPuzg36F4jFO6qxJlmoVPzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wK7vY+SDj3oNBVFtjYwwg4fNhgOYMCHcb7tZomfT6CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:22"]},"IP":{"Case":"Some","Fields":["51.158.230.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Starlight"]},"Identity":{"Case":"Some","Fields":["DYh3OS8v9a2NjlvEOAh/Au+XuQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0PSgGCdB3CNMPzKda1pN5x7dl/Tjh7k8TP56T5P+Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:19"]},"IP":{"Case":"Some","Fields":["58.107.88.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoooseMoose"]},"Identity":{"Case":"Some","Fields":["DYO4pZN/aTjHTzJsIcIZWfOV6CU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HAhsASkQZe6Lw8/u7V6ceyUqQm8mCfcJW9cPsVfSDas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["206.174.119.65"]},"OnionRouterPort":{"Case":"Some","Fields":[51021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["DXZhoz65ykS+wxCdvsf5xeir+wI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7O7IQOup7/k3koZmHWFtAVmfEl3fe2L9smAN5hnBW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:51"]},"IP":{"Case":"Some","Fields":["5.45.99.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:683:3805:33ff:fe78:a676]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["martina"]},"Identity":{"Case":"Some","Fields":["DW4lvYxUAXjDCe4qhMenRJY2DW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nks7uM9Ey4/WrLT/C4wEhFjuamao7psFzVeZKm2gzf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:51"]},"IP":{"Case":"Some","Fields":["37.247.55.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:dcc0:dead:a728::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["DWyCNszY6ovFn+8Y06/1l0kGHlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lf+j/jhuppKZZrtECaIUVWa7HwNKquiNpYmB2qdw9uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:23"]},"IP":{"Case":"Some","Fields":["23.128.248.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::61]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toothblade"]},"Identity":{"Case":"Some","Fields":["DWbAWazLQBCLTgq8vxyE414koyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9QyfUrmX5rR3nzsWpR4XirLa09OjjCKdeBffPW4piXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:13"]},"IP":{"Case":"Some","Fields":["202.157.187.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1128"]},"Identity":{"Case":"Some","Fields":["DVqnwMU7ZevpzjpAk8uvIxnEUnE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b28vfj1L6F5TXL737zr2K7SNmCjks1+EFWVt6u2fGf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:30:21"]},"IP":{"Case":"Some","Fields":["185.220.101.128"]},"OnionRouterPort":{"Case":"Some","Fields":[11128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::128]:1128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e3"]},"Identity":{"Case":"Some","Fields":["DS3iQq2g7XcyXjruOp2MXNB8LPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LrpNBzpB+z9MrNlNUYY5yK24f4QWc+FReNDRsZTGtUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:47"]},"IP":{"Case":"Some","Fields":["195.176.3.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor01"]},"Identity":{"Case":"Some","Fields":["DS1LHSdGiAa7Ht+wJxXu6R4auU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+tRkWgaPv+v8L5pkWwIiF2FdYQc41TJv+wl0t62tUDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:16"]},"IP":{"Case":"Some","Fields":["51.254.96.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3100::30dc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StopWarinUkraineNa2"]},"Identity":{"Case":"Some","Fields":["DSt6ypr0VIZWWUVPgwK/tkJKNGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qkEx8Q+JqXQunuHGn70scV1U/MuDwolsJDlzmTCW2j8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:04"]},"IP":{"Case":"Some","Fields":["51.68.152.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DRL9h4IPrZz7JneIoDzblkvTL7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CHpxEEgqwiNz4jDNAx5m0kc1EcDwvpcyDc2cmk1FZYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:00"]},"IP":{"Case":"Some","Fields":["185.213.175.43"]},"OnionRouterPort":{"Case":"Some","Fields":[2020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:4cf9::1]:2020"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["sellerie"]},"Identity":{"Case":"Some","Fields":["DRLY5y3tme4xuwxXeJNSvtDO7v8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gn+MDWGCD+xKYpBhGPemes9UoFr3/LDRwTinpgk1yd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:47"]},"IP":{"Case":"Some","Fields":["109.70.100.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oli"]},"Identity":{"Case":"Some","Fields":["DQkYWvWQ4pQ6lO805L48Jl2JHcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["duWN9i78hENHxue9W5jhNnfU/Ajhq7WlWo9NO731sH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:01"]},"IP":{"Case":"Some","Fields":["188.93.140.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mef"]},"Identity":{"Case":"Some","Fields":["DPw8AT48SVh4Q3lhBsXjrQk/Vf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yM4DeCYpOlcRTjUUg+qQDIsVSDohPC++IjKxLs+ly68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:48"]},"IP":{"Case":"Some","Fields":["94.23.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:7b9e::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["comedy"]},"Identity":{"Case":"Some","Fields":["DPLwf/BYHrvM3yCeZVaUNYqY2BY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y8mBYWaUrJxqYf6JWVmN+gKCaVZ8CHtC7K1C6Zn/o/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:52"]},"IP":{"Case":"Some","Fields":["185.225.17.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCtorrelay2PL"]},"Identity":{"Case":"Some","Fields":["DOYgGcUmE3KQVQFXQDlzf0xxc7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sowVZ/ehG6sLjeViPMnu9IxFDlcDBgxsmVBsQPrTPHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:46"]},"IP":{"Case":"Some","Fields":["45.138.16.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Route66"]},"Identity":{"Case":"Some","Fields":["DOO3Pd/5L/ZlOpx/kAOjK7bCNk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MBXqpMEp/3rPYXvIGgMrglr+ZR1Gg5BMmVLJVmSWdag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:44"]},"IP":{"Case":"Some","Fields":["46.9.42.110"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLoneGunmen"]},"Identity":{"Case":"Some","Fields":["DNz7C24VAOV73X8kBUPrrvgcEco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gi4kgtjT+GRt8bshxNEOI0lJFpNb/SX/aeTwQOZpasE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:30"]},"IP":{"Case":"Some","Fields":["213.163.70.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eita"]},"Identity":{"Case":"Some","Fields":["DNyP3YpIcnHey3kcDUZYXxa8jxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4p6CEyaUHOheToLc3lMXTjYEL7uRH9qzPKNMWCwrnxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:46"]},"IP":{"Case":"Some","Fields":["185.26.127.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc2:45:216:3eff:fe42:b953]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["DNZm+cmkCoz7HmuUZVl6UdOhy/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzOln8KcT504kywy8s9f9jm5urJ7UJsGwDmRYuC+eNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:03"]},"IP":{"Case":"Some","Fields":["5.45.96.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:669:582f:2eff:fea5:9474]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WurstRelay"]},"Identity":{"Case":"Some","Fields":["DMkmSDbvAUB7STTQa2zVN9RBpio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4JhVLa+8RI4/NkF60FRKI9z4rnhDtuA0eOFNeJzp5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:55:26"]},"IP":{"Case":"Some","Fields":["37.120.165.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BESTIOMONDE"]},"Identity":{"Case":"Some","Fields":["DLw/xsyGPszzZ2FtVJXlOoYTtcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X9HgdtjePhU+5pYoiCNn8lh0mHbLxrOooI6yr150OHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:29"]},"IP":{"Case":"Some","Fields":["172.105.242.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:fede:8f5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mgvx"]},"Identity":{"Case":"Some","Fields":["DK//5HDoivFW1nULYWmVs3kPJO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vg16Ft3oI3ptm/jXtpW+cvDjM/7TJsP2cHtEhRw5NTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:00"]},"IP":{"Case":"Some","Fields":["86.123.52.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSecondRelay"]},"Identity":{"Case":"Some","Fields":["DK35ZQvm88tqCfKdi5ElDZPdkeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TBslGwiok/PXPz2zuN+QWX8YVKjxEoqYW5e3pHHXGi0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:31"]},"IP":{"Case":"Some","Fields":["107.189.10.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Polyphemus"]},"Identity":{"Case":"Some","Fields":["DKvtkVnx5L6Ch59aNO2Nc0npMb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6NpTrmg0Tw3+psEe7LDl4xtMvTVubYaP7hZ55Iu9y8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:45"]},"IP":{"Case":"Some","Fields":["198.251.84.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f174::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Turquoise"]},"Identity":{"Case":"Some","Fields":["DKmcOIhvRsl5JIJ7fj66LBAfCuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orJhXsZ1vvH9sEXI5PK1kM2WC2X9ECPGtrrGzRis05A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:05"]},"IP":{"Case":"Some","Fields":["37.120.244.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM02"]},"Identity":{"Case":"Some","Fields":["DKmK22GLTYI8y+HfZgLZTa/hHNY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M1kOtiOQSrI/oQTExsoNvvBzluC3Hj+ZZKSYyPeGALY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:32"]},"IP":{"Case":"Some","Fields":["185.239.222.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lodrich2"]},"Identity":{"Case":"Some","Fields":["DKP02VvPJJZPxGI1iKPxfi7iFt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BpImpnCIzTSbJOAEUS9i6YNzpqxq7v2UQ6/mrbmiG7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:17"]},"IP":{"Case":"Some","Fields":["85.195.253.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":{"Case":"Some","Fields":["[2a02:168:8235:0:44bd:c9ff:fe2e:3165]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1179"]},"Identity":{"Case":"Some","Fields":["DKNnfc9DFEA84UiFnuVVP5rf1m4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ly+z6zEjarWznKKcGi8mxw0F7qpfw42YTryDZeN6tok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:31"]},"IP":{"Case":"Some","Fields":["185.220.101.179"]},"OnionRouterPort":{"Case":"Some","Fields":[11179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::179]:11179"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber19"]},"Identity":{"Case":"Some","Fields":["DKG2vJBuXdb0z+MitL7+ehfULVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["le3qx/KTwqbZkj9rfXIxp2+SZqzsZQZc3g3Y8BwHUzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:40"]},"IP":{"Case":"Some","Fields":["185.220.101.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::10]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsaPwned"]},"Identity":{"Case":"Some","Fields":["DJs8aGQhxajCC6oNc2nNkp9DoXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Ykvn6pfzjOPaX2IkpP9pzV+KtcarB2naGbYoPsU9js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:17"]},"IP":{"Case":"Some","Fields":["80.244.243.158"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4d88:1ffa:c8::4:158]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EyeBtoR"]},"Identity":{"Case":"Some","Fields":["DJaFOxmbmd7Q3FajcxXOig+Nwr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+kq5lyTBcas0u9mYQqzKSHSWPidOFW+ASncDqqeqsbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:22"]},"IP":{"Case":"Some","Fields":["89.212.41.199"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sometornode486"]},"Identity":{"Case":"Some","Fields":["DJAkkfV3jmURE+Op1h/bunsXuPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dUTqGNK4tZGtpoQaeFit2RZcsMrIpar+2U3uiGmhN0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:08"]},"IP":{"Case":"Some","Fields":["91.41.211.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DI2P8Vo7WK5KAZEFxQEw3Rz48b8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GkaGxQr41GIbcrra1dbyQv2dV+oUf+0TdMsYET1fvYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:44"]},"IP":{"Case":"Some","Fields":["68.104.31.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doppelganger"]},"Identity":{"Case":"Some","Fields":["DIpJ/mK3x97WS3xqlB71JA5PP3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vMMSSOEWYnfgBD92PvzEK2F5FLVccnZolrWDIlJgL18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:52"]},"IP":{"Case":"Some","Fields":["95.217.5.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:54f8::1]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oignon"]},"Identity":{"Case":"Some","Fields":["DHsrCS8FJrx/wtiya/AwdnZeSso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cnTUeIft8P56WJKMcOX0/QP2V4HxdcL2cNfSwi0x9mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:05"]},"IP":{"Case":"Some","Fields":["142.188.85.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bruxa"]},"Identity":{"Case":"Some","Fields":["DFz9fMMCUVVaw6iy+H5SNDBHf7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXHzxIZLJrqljoDiUUFGYPdpl3EhRn6+GeeOJflA7JU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:33"]},"IP":{"Case":"Some","Fields":["23.250.14.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird32"]},"Identity":{"Case":"Some","Fields":["DEdbpNOqPCibcW+VlUytYW5QxOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CmWhG1vuzRpK0qx/2PR1Dux4elgC8QzUmOhon6nNGvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:33"]},"IP":{"Case":"Some","Fields":["81.7.18.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2eee]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HORUS1"]},"Identity":{"Case":"Some","Fields":["DD1eGePHW1Bcis0m+J3KLflwVT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOrfVlxt7VFQ980HmzY8PU+Wd/KYk9oFa/29L1uCIio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:14"]},"IP":{"Case":"Some","Fields":["65.108.3.114"]},"OnionRouterPort":{"Case":"Some","Fields":[1066]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6a:528d::a]:1066"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rem023"]},"Identity":{"Case":"Some","Fields":["DDWZB57yHEmUrW3ekfcqSPFuipg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fi17AaNkij2+gjZ07m1l5rU7/j3tBVyjL0P8IfQvYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:42"]},"IP":{"Case":"Some","Fields":["217.78.28.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9451]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp0"]},"Identity":{"Case":"Some","Fields":["DDI1GR/Klyx0V0d6vCB6n/7IGMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Af63K/FlUrEneHAPcXf9QhCUpXWky43IfjGpICMn1CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:56"]},"IP":{"Case":"Some","Fields":["185.220.103.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libel"]},"Identity":{"Case":"Some","Fields":["DAOfNcLkDctxzYoH6Xx/13h9QtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r8KBubmG+yTfaBJfNnIBz3ASKpZYruEZh8/ZahbHU1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:04"]},"IP":{"Case":"Some","Fields":["5.200.21.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x766c6164"]},"Identity":{"Case":"Some","Fields":["C/YG3oNtTHlMr/fKeHIPjIdmCZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXvawqQnwS0Pr5tIPVrjt15cgxG3HQ+SUh7JcXOj1wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:25"]},"IP":{"Case":"Some","Fields":["86.127.196.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dagoth"]},"Identity":{"Case":"Some","Fields":["C+yGDEX2nwRwhN/q+3561ooGJ4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1dTlcxpCfq2OBbThANJsVjSBn63zqlMHw4HuAfqcCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:00"]},"IP":{"Case":"Some","Fields":["174.52.254.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk6b"]},"Identity":{"Case":"Some","Fields":["C+LGyP3Llq9lgD087kkhTWGfxUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EUOa5eaTSGDFKIkq2LbiFNfXXKnzDWd4WINGXy0HZxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:22"]},"IP":{"Case":"Some","Fields":["62.141.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:32:4104:104:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quark"]},"Identity":{"Case":"Some","Fields":["C9dExGdP+2DNHypuh3sC975FWLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DoWwYgUUTbXfwfvQMi5usILTylWbtiC9G3NMf/DLK+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:47"]},"IP":{"Case":"Some","Fields":["178.63.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:121:12b3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev1"]},"Identity":{"Case":"Some","Fields":["C8i6Msw8sPWY4MknePfAlG37zpE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7jMHI9XVnkkdaXEVZUxu8kaSYfQEmYMUmO7jFN9daPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:16"]},"IP":{"Case":"Some","Fields":["87.118.116.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:3132:102:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BerkeleyFiberGuard"]},"Identity":{"Case":"Some","Fields":["C8a3FzJWyod6pyqLbDWcnim+ccY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["scO/lJTMQz9IHPaN1OErgIRnh8fQvcOSkhM4GgX69a4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:47"]},"IP":{"Case":"Some","Fields":["135.180.40.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokeneye"]},"Identity":{"Case":"Some","Fields":["C7YTYxrqffjGs0y9GJJdGmK7xQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eE5H4Gwl9ZqiupKtuurduwoDv2R+fbI0nDg6fPs3pW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:22"]},"IP":{"Case":"Some","Fields":["179.43.145.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Albis"]},"Identity":{"Case":"Some","Fields":["C63ZUQRAyb86co8stjCDb/mBQrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3mwxNGNbavnLyIf1UxJv/e2PaYzGvawLJ8AQ3InzrJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:57"]},"IP":{"Case":"Some","Fields":["138.59.18.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tdxchg"]},"Identity":{"Case":"Some","Fields":["C6MKPRG3P5XRRHzJs1vl8GgdWhw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+oVN6+WNc4GymUj+qgGDUaesV1nN1y40Y8OBfIAopI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:05"]},"IP":{"Case":"Some","Fields":["207.180.192.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:8686::66]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber27"]},"Identity":{"Case":"Some","Fields":["C6HI8mr60/rvO2oij5c4LRFQJ7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zospiA9gNYuHB7e4aw5iyz9wAeghvOYGTg8y1u5xNSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:51"]},"IP":{"Case":"Some","Fields":["185.220.101.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::14]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4oobeivanai"]},"Identity":{"Case":"Some","Fields":["C6FWB++dAPRWTJMSeKaG5LwBwtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pxfPI9Q/fdn3vtHWCbDblwrsOw14FKy6cEb3fQftE6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:53"]},"IP":{"Case":"Some","Fields":["199.48.93.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer47"]},"Identity":{"Case":"Some","Fields":["C4pVefQwUSFOKIVJJCBSA6gB5Qo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iD7e9JUSuxWi4dM3B/Edc4/yUEI0gwKWUTKd7NcVVwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:19"]},"IP":{"Case":"Some","Fields":["173.208.190.12"]},"OnionRouterPort":{"Case":"Some","Fields":[7162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["purplewineglass"]},"Identity":{"Case":"Some","Fields":["C4a7/Vz66AhnChaqd9dbekBsqHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyArVT+7UAmsEm2iiMvEKRXnJwrtZsJ1W5s/KMfqBBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:47"]},"IP":{"Case":"Some","Fields":["93.42.106.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission04"]},"Identity":{"Case":"Some","Fields":["C4Qctw+e0f0DIsK6LrDYBCDYfPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkICvLGwC5f74n0P3J+vtn69KI4OR3zmbhB3H7Pj7hc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:43"]},"IP":{"Case":"Some","Fields":["149.56.94.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionDAOContributor"]},"Identity":{"Case":"Some","Fields":["C3eHIu5h4cNfWUL3uudZj1PftZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M18iskLx2xUFvMppZ21ZbcV+aUbWJ6fhsrSEZ9xa7mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:51"]},"IP":{"Case":"Some","Fields":["5.255.99.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:ad97::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fabmann"]},"Identity":{"Case":"Some","Fields":["C3UXijjRNQGowfIfBsiS1pWhvos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Z9i3742S3v6ZwtPzXcStuwsm7tIYlx0iGyxVhK4FGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:14"]},"IP":{"Case":"Some","Fields":["213.47.199.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute08"]},"Identity":{"Case":"Some","Fields":["C15ecP/qnH+f/RO44WkWpgjz6es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A8o/3tSQiweh2xB/2wHfmy9s2ok0zQ2wxPmirkZI810"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:59"]},"IP":{"Case":"Some","Fields":["162.247.74.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["C1vHazvnVTsin9PnPyau1Bwx3Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNDSbu6Qv7WEeCVggsetm4QviaScr9HpxUEKOcTfhAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:09"]},"IP":{"Case":"Some","Fields":["188.68.42.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChuckNorris"]},"Identity":{"Case":"Some","Fields":["C1fxa/lkd4jNZ78EYHpfaonMuFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWxxQOQUeeUFIw7lBzSqaYAAELeRY8ImzVivhrLtz3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:24"]},"IP":{"Case":"Some","Fields":["116.202.169.25"]},"OnionRouterPort":{"Case":"Some","Fields":[3443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poopypants5"]},"Identity":{"Case":"Some","Fields":["C1fsS1+DlXx6y+juWrp67qfOHWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7psUGCKyDhytWofrlhOIDa7U4psx+dNIx8iH3T4Slb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:37"]},"IP":{"Case":"Some","Fields":["168.235.111.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORro"]},"Identity":{"Case":"Some","Fields":["C1VZQNN9yElyiEHAspAHThob3Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J/nnUofhGosLxEzJJAkyWv7doIg0uv3cnDLj3XdOE2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:07"]},"IP":{"Case":"Some","Fields":["188.138.75.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l0z3rzb3d4m3d"]},"Identity":{"Case":"Some","Fields":["C1O/kZuaAe1i7RDlEpKspQ3bEOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jN1YnDCKC5NLzrVPGgkCNQ2bd0vwJmVIlAMczFeh/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:42"]},"IP":{"Case":"Some","Fields":["65.108.253.128"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:9e93::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ranlvor"]},"Identity":{"Case":"Some","Fields":["C0U3WizoBl6KZJ1SzDXznRKHRag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggJpuFBLhA8VPEbjdF4d2QlwFkLnxUueY/tqAh4XzKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:22"]},"IP":{"Case":"Some","Fields":["95.216.27.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:1b96:2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnarkyRelay"]},"Identity":{"Case":"Some","Fields":["CyYNZqHupbxbWkvjIHH3Xw9dk4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ls8pDt5BpG2IZo6hCrfHKCIxKBEAPUrBDUDRr5+L4EM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:30"]},"IP":{"Case":"Some","Fields":["75.172.18.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CvmCzHGgHZXolZ12PQ7A5abGEkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqHus1WnvEN5CyN8ErcCZY2Cihcyg5N8QVLD+XrNwEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:01"]},"IP":{"Case":"Some","Fields":["188.68.36.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CvkChdaz7MUqv6PLMUBN9vr5MTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTdgMstremduBM/q0ohsZWX4mgv4Pz70u+U14MJRxAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:13"]},"IP":{"Case":"Some","Fields":["37.191.201.85"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe01:344d]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyexit"]},"Identity":{"Case":"Some","Fields":["CvOZQK+WjP2iv3pgHvMwTgb0S7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esyHJu4n2UIEiTxZeP+L1MGwjuBcEjfHVkRbiXQUYfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:17"]},"IP":{"Case":"Some","Fields":["185.170.114.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:a68:58bb:1aff:fe4e:768f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scylding"]},"Identity":{"Case":"Some","Fields":["CuUcD6BtAyf9VIIOwcokqgjt5ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sntJGlhWSbVyKOcGL2mPF5xiK83iFH2j5U5DkMvx91E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:28"]},"IP":{"Case":"Some","Fields":["50.250.14.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor7"]},"Identity":{"Case":"Some","Fields":["CuJeJhILaGb1SKD8zwh6H3ayrU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xIco5Jk09CUeCchTPxUThyDLOenzNFb4CJn1Qkydzz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:18"]},"IP":{"Case":"Some","Fields":["31.133.0.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4401:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanaheim"]},"Identity":{"Case":"Some","Fields":["Ct9JgqYjHs1tBBcENb+0wOTK31s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8+nWBOKYApMLXk2K7EJWxvuu+RrFUTmJO9iwTHycRfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:26"]},"IP":{"Case":"Some","Fields":["173.69.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PieroV"]},"Identity":{"Case":"Some","Fields":["CsPIa8nKKlDHdi70KrxtN1daz/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jlJMalSyMIwLgwy5pG7kKbQbhYtVG4E90+52ShUJgpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:17"]},"IP":{"Case":"Some","Fields":["164.132.226.30"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3100::7fda]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinnacle"]},"Identity":{"Case":"Some","Fields":["Crwev/UMilgnmtB/vXPhg/ngC4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ETaLUcf3SMTEQJl76nBZ7+b8W9B23zi646dhENbZh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:21"]},"IP":{"Case":"Some","Fields":["5.252.178.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Cn3kz1/kngA0VT1xb8q7mtXteSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+SOW7hkhKmiC2VnUrU6RM3kFgv/tjRl+3M5sTBIQMRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["23.94.220.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CnbAoKch3bwyS3Ba2/yV/YBq6FU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ejd0FVOzMmsbZEW24i0FxkMHrAVX+SwDIy4qE4tndyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:52"]},"IP":{"Case":"Some","Fields":["188.68.50.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CnQcesH6fnLtnDaEscO34barTM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U2mGw00WfaQE9vjtyIFFzA7GfeMyn7UvH9alag/zu1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:10"]},"IP":{"Case":"Some","Fields":["82.160.220.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sikrelay"]},"Identity":{"Case":"Some","Fields":["CnQTBoAYrd5RSmipGkjIbCfvZKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQa7Et3pnbk8sJCAiRS6wqh7wcteLRWLEbZCItybvhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:10"]},"IP":{"Case":"Some","Fields":["162.251.116.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notGCHQ"]},"Identity":{"Case":"Some","Fields":["Cm+43lwbYxEXr5RESq/oUACBOC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLU4pyURe+r+QnAs7e1r1Wh563PT2ee+r9OSz4r4IXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:14"]},"IP":{"Case":"Some","Fields":["77.68.9.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arighttosurf"]},"Identity":{"Case":"Some","Fields":["CmABseOp9TZb08KYi9abuOrXEok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btsOa94vjsjLcVKH41PtodsU1Xd8sFMbPrNfSCyzJLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:40"]},"IP":{"Case":"Some","Fields":["45.83.234.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1854:1::face]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EatErgot"]},"Identity":{"Case":"Some","Fields":["ClaYW73bX9H6qMkTPHEVlhqmw3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKkedpvZC/HKbDCsrQOLgbCsnQGxgZ3lT8AAmMBM7HQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:08"]},"IP":{"Case":"Some","Fields":["193.218.118.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashEel"]},"Identity":{"Case":"Some","Fields":["ClAA5f8pd+DSNrn1tHWQ2IiElN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OYbVBf3cqqIugHJ7WKs1rkylsD9RAuQd2U1m/M2ftH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:48"]},"IP":{"Case":"Some","Fields":["130.61.125.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv21"]},"Identity":{"Case":"Some","Fields":["CjujZI5Tpivc9PSdV2KAOYGLjmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sux8cSjXa8l8RcAQpFNR/Pvc6BGSWp1X/gtCwxTtCV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:28"]},"IP":{"Case":"Some","Fields":["45.62.224.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CjqvUwdH1wNNv4jFGAM6IoJ+PEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i3fKr6Nrm7HoeMKpvpP45Sa90Wmt92s1HrTKF45G1o4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:18"]},"IP":{"Case":"Some","Fields":["5.45.103.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:5:c437:17ff:feca:57d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipca"]},"Identity":{"Case":"Some","Fields":["CiNmmAooQtdw744Tan2hSHY2BEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jb+ULzEDUkYOKPp0KAhglISru7b9Rb01Mkqc8gDK+h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:23"]},"IP":{"Case":"Some","Fields":["185.220.102.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::242]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4tahfahce"]},"Identity":{"Case":"Some","Fields":["CiFRwEkrihf9A+1AWYYnpwJ645s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["usTAOv4QNHA+7vpNomeyg+Q+qoUb83dgFpkQFCtsqz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:38"]},"IP":{"Case":"Some","Fields":["63.227.116.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingpins2"]},"Identity":{"Case":"Some","Fields":["Ch7Mt98CckkqTzf7V9wPn0KnfXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K3xHo6Jx1wrYwnCK95ADQrce6ApDDLoAl61FKPloESc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:21"]},"IP":{"Case":"Some","Fields":["45.58.156.77"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anaconda2"]},"Identity":{"Case":"Some","Fields":["ChdUWTw9v1tbNcBNYI438oJWs18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gzz9v2r1h8/BruwVUo8Ffr6CuvwSjz6zLHOs94QsXks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:02"]},"IP":{"Case":"Some","Fields":["83.0.60.229"]},"OnionRouterPort":{"Case":"Some","Fields":[1315]},"DirectoryPort":{"Case":"Some","Fields":[1316]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luxvptorex"]},"Identity":{"Case":"Some","Fields":["ChHHVGoTMkEtHr0TvUw9amZE1+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DfXzgxXbycMDae9LrOiUeesKgR1sGSBrsMfzIGFTXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:55"]},"IP":{"Case":"Some","Fields":["107.189.30.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["portnoy"]},"Identity":{"Case":"Some","Fields":["CgwB3QBE5wMY2ePaXxJaCQacV8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ctqXG2EgoK2FFoJxzQp17nNyNhnHMjt9DChp2X4y+0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:46"]},"IP":{"Case":"Some","Fields":["185.198.26.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:bdc7:100:16::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorxzontochoRelay"]},"Identity":{"Case":"Some","Fields":["CfhXLWiR1hrpt/AjXrfrR4KRYzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32uf1eTm+vVvBcH7xuZwmMxVE/BAZKUPrumcZM3v4tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:05"]},"IP":{"Case":"Some","Fields":["137.220.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:b002:8f3:5400:4ff:fe23:18a4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["CfZOAPNMiPYEFj8k03vq+SRXAuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zPfP2Er3M9yzMIJ+QMUbe6jJFulEhf16nFWm+dEjVu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:54"]},"IP":{"Case":"Some","Fields":["98.115.87.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spiritbomb"]},"Identity":{"Case":"Some","Fields":["CfSaSs8e/EMAGIoCSdFJ6grxChw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tq+m4/PGX5eA9e/Eu22QyUjsR+3yvG0E6CRO6fc4wPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:21"]},"IP":{"Case":"Some","Fields":["79.230.237.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["CfGTZYfVqCq815sRWZwETnLBOEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uKPks/3HC0PVreZduAd9jz2nvBO1I0poGSTO56Ii2Cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:39"]},"IP":{"Case":"Some","Fields":["185.163.45.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GomasyDotJP"]},"Identity":{"Case":"Some","Fields":["CeEHsYGHGWdk/4zIdOIkfOQRtQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DOWijrO0/RD7xxE/eKT1fy21v3ONTax0fKs+zUYKT9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:00"]},"IP":{"Case":"Some","Fields":["139.162.127.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:92ff:fe5e:9635]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node2"]},"Identity":{"Case":"Some","Fields":["CdIimpWJAdklGfqO6T/7FIGC2po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hGebmWxha6e15MTf+NUq2yzIhzoU3PZwKtXP7CZrsxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:02"]},"IP":{"Case":"Some","Fields":["141.147.33.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:10fd:ac01:a751:7a6f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Cc4a8/ty5z3+bvX698gLAbjGIoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNW9q8gqbOEZsy6wevAclpor1heUFG2H7nZo8R+T82U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:58"]},"IP":{"Case":"Some","Fields":["103.4.153.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CcoZV+wGcQRNrS7qKCo0j/19Jx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P9EAoZZ1ix1EI9K6+lRvBXmsw3v++2y9iNUa2KElYyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:04"]},"IP":{"Case":"Some","Fields":["185.194.141.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiebelfoo2"]},"Identity":{"Case":"Some","Fields":["Cb/mo2LSzkNcRfmbVhcbbaSG0PE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tA147W2kNh3jLw9FI0jyYfZ1zlLJLWb3/44dPDBEuoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:54:37"]},"IP":{"Case":"Some","Fields":["89.58.33.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:d6f:3855:34ff:fe06:ba9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Ca9celmFLvRP9W0wwB1fQS/Rl4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["na29upe5xKvS9Sus2RRGtgkneDG6IkyrW7cTUomxnic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:09"]},"IP":{"Case":"Some","Fields":["74.208.182.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Deepsky"]},"Identity":{"Case":"Some","Fields":["CacOOW3pP1TUVBu7Dsjisjdh808"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyMt9cN0kLAD05CF5o+7HbI7gsRYNpRFfMBolhbWNMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:43:41"]},"IP":{"Case":"Some","Fields":["109.228.53.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:cd::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["martzeladidnt"]},"Identity":{"Case":"Some","Fields":["CZXLBmVbStUGifSrMDdkzXF8JY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TE9oxaadUMuyH+OWTO5r8mdcMqiSd+RgfQqqWLESe+I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:25"]},"IP":{"Case":"Some","Fields":["82.116.120.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CY+YU4ohoWMy6MS3JDBcKjSWpGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3Y1oq5xJsJprbEX2LlBfWl7nmMyDx279+C7Qy5jL4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:58"]},"IP":{"Case":"Some","Fields":["185.194.142.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lrjstorrelay02"]},"Identity":{"Case":"Some","Fields":["CY73Rk/VXkojIekFeMjz7We1OkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JRQqfJtUwkBxqBslmvBiqiCrvAonGZcHa7cxUUimtUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:26"]},"IP":{"Case":"Some","Fields":["194.163.147.235"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tourette"]},"Identity":{"Case":"Some","Fields":["CY2c91aNJ6goj6S7OBmpmRMxXW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uK2e1eHbS5VtzBpjx5FIW9yRXksHP+cj4Pm8QnSHxhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:42"]},"IP":{"Case":"Some","Fields":["91.47.203.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornasol"]},"Identity":{"Case":"Some","Fields":["CYs0V6ujGtZaOvR/YbYj41s/qy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v2mjqATIwlYJGt4IU73kUjM4s51EYro9WXSKs6mz368"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:37"]},"IP":{"Case":"Some","Fields":["178.199.50.198"]},"OnionRouterPort":{"Case":"Some","Fields":[26709]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorWedos"]},"Identity":{"Case":"Some","Fields":["CYdEqB1cycMZKhmX1MrG9nkImbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xnSn2jMQqhr3T94FfYsZXaixJaaYpd23CJVU91P40Pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:50"]},"IP":{"Case":"Some","Fields":["89.221.212.118"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:176::1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalsAU"]},"Identity":{"Case":"Some","Fields":["CX2DkKmY++vb2oC6x9hviuYG5KY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oZu5hM/EiT6tj20eGsSOSuhpSez2tVn29WX5oqzjJtA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:58"]},"IP":{"Case":"Some","Fields":["93.95.231.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["collyum"]},"Identity":{"Case":"Some","Fields":["CWVugepavU45PlZEgo9PtmKHAEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mmGNF8pd6Kz6DOEWPFzcnlEZlMP+hCPYR69mLiuJnjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:48"]},"IP":{"Case":"Some","Fields":["195.189.96.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SevenLayers"]},"Identity":{"Case":"Some","Fields":["CTW6kXj547UMmd1T9yOGX8Ikz6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ka48/2q+e1inubpUenTAU3defgkM7NSgWK+hpFvCUeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:49"]},"IP":{"Case":"Some","Fields":["192.124.250.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt28156"]},"Identity":{"Case":"Some","Fields":["CSpwc1/Mp1PQiM3GC2D3dDCa+sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["81hl1Q3LPU3zmNrCT+/KFBVqwYnSqyP15kXhOnn2JdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:40"]},"IP":{"Case":"Some","Fields":["185.245.60.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bhsdztorrl02"]},"Identity":{"Case":"Some","Fields":["CQuDupWn4tYV1nme/XV94t3H0P4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oYgwCYfbHWAOhZVwti2Kkm9ZEYMPmT9BQx4b8zH0NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:49"]},"IP":{"Case":"Some","Fields":["54.39.234.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mercury"]},"Identity":{"Case":"Some","Fields":["CQl1h10bvlP2/yrcqLpByX27Plk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H4eNGUVmhxHZrPvmW4KiVmmcjcgTjvuxm0YCGVgNObU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:57"]},"IP":{"Case":"Some","Fields":["45.9.168.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:bfc0:0:3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer79"]},"Identity":{"Case":"Some","Fields":["CQey/5Q3bEHLfrBTXYcX/Z8uhLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ld2UdefxCpHJg3jzYNUY6s8Oype1ZFW9zaplaA18ijM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:05"]},"IP":{"Case":"Some","Fields":["95.214.52.156"]},"OnionRouterPort":{"Case":"Some","Fields":[8179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CP4n907Ei012Z+v69lTlFRuZJPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CIDfBhcm3onWeZPjP/oXTEt3FC5dXE7XjoGE6G+NJJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:23"]},"IP":{"Case":"Some","Fields":["217.87.70.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neartAurora"]},"Identity":{"Case":"Some","Fields":["CPRpK2CGJkD2iLhoJrZvMN6nq3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zc4Oy62YY2PKI3jXrKmpJuq57lIdTtekzWux8TIIAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:27"]},"IP":{"Case":"Some","Fields":["51.15.182.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeelTorRelay2"]},"Identity":{"Case":"Some","Fields":["COpUV89m8TrInqdGgkF6YAHcYdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AveEbNlmDCMuxGzfYpkslhERHCsZO63O9BOrdUD8jpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:04"]},"IP":{"Case":"Some","Fields":["97.113.240.90"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yoyobolo"]},"Identity":{"Case":"Some","Fields":["COcV84DwAxOzuZrLENqsel9jgn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zkyHXX2he88kcT2qM7q8BxNDHVEEjEub0eCc9s117cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:39"]},"IP":{"Case":"Some","Fields":["75.184.16.251"]},"OnionRouterPort":{"Case":"Some","Fields":[40932]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynfulRelay"]},"Identity":{"Case":"Some","Fields":["COZAebl9m6mQotysEF+bvDsq4nY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rxvhnBVXceV/CJQeXqvKBPpRaJBFgj8GVDAMRXaIDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:50"]},"IP":{"Case":"Some","Fields":["2.56.98.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:4000:3e:568:446c:e7ff:fe7d:de4f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e4"]},"Identity":{"Case":"Some","Fields":["CM49v9qifbbARKZ3r2jXI1wq/IU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DqRm+lL76X80Lk7j+eMDoiS2nJSDMviXVHmPO0HYq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:41"]},"IP":{"Case":"Some","Fields":["195.176.3.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::20]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lollipop"]},"Identity":{"Case":"Some","Fields":["CM2dQiQFjcl6HydnmlvuVyTExuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCb2Zrh1bBcZVWf3ZiF6J2svu0BCkYGvf0qvM3CAo2o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:01"]},"IP":{"Case":"Some","Fields":["195.123.212.113"]},"OnionRouterPort":{"Case":"Some","Fields":[1357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27ac::120]:1357"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["annatesla"]},"Identity":{"Case":"Some","Fields":["CLSIimVm9rxTY0I4YvSFKUIKufc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZLsebmTVqdoHmLdhDBAk41Q/1R8NJBm8i9XyJjWVNMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:48"]},"IP":{"Case":"Some","Fields":["5.255.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:106:d219::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["IloveTorone1"]},"Identity":{"Case":"Some","Fields":["CKnzS8flib8MeuxaqdLg9sOtTF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/kwx5/N7aoNH/yvp6KT7uxZY3FUqr8GmN472vSCXAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:25"]},"IP":{"Case":"Some","Fields":["45.134.173.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheAdoptee"]},"Identity":{"Case":"Some","Fields":["CJ6JWdOGxNwoP/2itZCmX86FyLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy2Lt/AsYfw9ZlhnJAN6BLl3q1fppMq6wAUuIxb4HWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:13"]},"IP":{"Case":"Some","Fields":["185.112.156.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CIpiN+7Yft6w4eOtCkpBn5Y/B4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LBpTvbyOan8gNLL8by/PTr3NWlCP4VgFlS23bDYb3NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:57"]},"IP":{"Case":"Some","Fields":["176.9.40.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:173:402:267c:d656:b84c:abd6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8lyWARGTU4wesrfy8i"]},"Identity":{"Case":"Some","Fields":["CIJECHQDSvvi+/FkY6KQ8yeOJPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["80Qm+cDLw8155EPxDJ9WVN9u0Lg5OM72Tf6G/RpPHlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:00"]},"IP":{"Case":"Some","Fields":["176.58.121.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe70:e0b8]:9099"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYCROFTsOtherChild"]},"Identity":{"Case":"Some","Fields":["CGH0lm4ZnAup2x2QTbS8hDUI8Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OoUCdUBt7Dgnu1kR3WnAGwrRAShoSoq9tMafsUAora8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:00"]},"IP":{"Case":"Some","Fields":["98.193.69.56"]},"OnionRouterPort":{"Case":"Some","Fields":[32323]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pastly01"]},"Identity":{"Case":"Some","Fields":["CFUny9ZIX9R1rJg/qGg6LZAouqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kHTuyQvXeS+yVQyJ1qfmZHTQK02vCR3to0L9sZ7bSZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:04"]},"IP":{"Case":"Some","Fields":["173.66.161.213"]},"OnionRouterPort":{"Case":"Some","Fields":[8234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyftw"]},"Identity":{"Case":"Some","Fields":["CFCXElTLXbWVkog5O0OOOJSb0H8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cwphiU+uYps+vMDtaJZcxRnZGGVWoUyUT3c363rgNqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:28"]},"IP":{"Case":"Some","Fields":["92.34.220.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["CD9Fnqc0BJ+zvRvkheATrLFpxJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7UL8VeXN2gC6XVGYa0b4/c++mj5U69KjOEW5Tb6UbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:32"]},"IP":{"Case":"Some","Fields":["128.0.64.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NAKAM"]},"Identity":{"Case":"Some","Fields":["CDxSBRFA24r3cL1Ax8iIPv/0yvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCdt5p8rMVcBGBSpAPHnvFvx5C3awUgZFjRc8fc6WfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["212.227.165.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pengy"]},"Identity":{"Case":"Some","Fields":["CDlMSHPIpxvp9TWT+bStaUv825A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPQ2hVvd6jWCe5bayjsy+RyrErUIaE/tcE2T96y7V3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:38"]},"IP":{"Case":"Some","Fields":["185.56.171.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hirelayarty"]},"Identity":{"Case":"Some","Fields":["CDdpHnQa6OK4sMYHwbTt2y5d8Bs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zms5iMZnyeDekWHiQcYzJPTF+zSuqc+q0dq/C3eaV7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:24"]},"IP":{"Case":"Some","Fields":["107.173.167.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheGreatKing"]},"Identity":{"Case":"Some","Fields":["CCTXx/sRfVxqwBWB/XmOZww3yAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qIP37GTWkGoN+S88QAWz7gNCceJ6Qs+lg5W7/9YFus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:34"]},"IP":{"Case":"Some","Fields":["80.66.135.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LDLUEXRp175"]},"Identity":{"Case":"Some","Fields":["CBFMjQP7m+pF6H6xNF1Rv7KwBIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ep6g4uyJGEZ+wrLHQlZX2zm6/zxgS6b0APVbgEJdOb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:10"]},"IP":{"Case":"Some","Fields":["107.189.1.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RiggsOceanlock"]},"Identity":{"Case":"Some","Fields":["B/DmUuTMsKDx6I0ARuyzIuYxjIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LrfCycZfqosOiHK0L9KFMEU/Au8iWQzKgeVQmqcHk5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:51"]},"IP":{"Case":"Some","Fields":["78.138.98.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fav53"]},"Identity":{"Case":"Some","Fields":["B9dy30ZxxAp6yR8iNLzpz18z9PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nqr1IxJC+twR17BjOpEaeI4AIH8zQ1+jndlg6Y9ALxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:51"]},"IP":{"Case":"Some","Fields":["205.185.117.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WolfClay"]},"Identity":{"Case":"Some","Fields":["B8PrvkHfn+hVHfaWQv66cOlU3A8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KG6pZX+YM0cWoBWZUDdXZoR1EQwgGorMLcWeemMsAPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:05:01"]},"IP":{"Case":"Some","Fields":["185.177.151.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgSG"]},"Identity":{"Case":"Some","Fields":["B8EC1rAn5bK5yULj6ULA8k3+5Rs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbH6cfP+pPhfV+XEBwdcMxk/VkaZExzRDg2/IVPlesc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:44"]},"IP":{"Case":"Some","Fields":["139.99.46.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homeplanet"]},"Identity":{"Case":"Some","Fields":["B7j8W2ZxnDVfq/hLT14BMeEn3wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjtWRX/O3MTi9tGvABEjSQDqnBySDS0ahQi9WpRgH7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:21"]},"IP":{"Case":"Some","Fields":["85.91.153.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debiansRelayTor"]},"Identity":{"Case":"Some","Fields":["B7V4qE6Odvp1kVuR4xtuUOf93JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vKZe9iiUhY5kZuRhCe4nSPHy9j9F0c6i1sNUWEGf6m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:43"]},"IP":{"Case":"Some","Fields":["94.16.114.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:900:786f:7fff:fe08:8217]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mymumisthebest"]},"Identity":{"Case":"Some","Fields":["B7NbzPYhHm2XCgFQEvyaLGdoSPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GGowhnLnWH/n+p43/V/CRpGi8jN0WL87y1uu0sdcCWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:06"]},"IP":{"Case":"Some","Fields":["158.174.11.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:28:805:1000::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kramse02"]},"Identity":{"Case":"Some","Fields":["B6z7CAHk909WEPhwtfy7VTnby9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/mYo3zbcMItKEPip+/FAv4s734oIX68vFz2q7tAHJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:45"]},"IP":{"Case":"Some","Fields":["185.129.62.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:d380:0:103::63]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0159"]},"Identity":{"Case":"Some","Fields":["B6KtsHnhRAknAg0jtHtDWMylhag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qlhEiGJaQjdSiYugpzrBITqDnZsFfDqJ+DX8Z/w47mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:31"]},"IP":{"Case":"Some","Fields":["185.220.101.159"]},"OnionRouterPort":{"Case":"Some","Fields":[10159]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::159]:10159"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mistersixt2"]},"Identity":{"Case":"Some","Fields":["B54RfguAhIRkbKdxX1L2/8gx748"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["373IiFmRZS9pjy4G8R263F24NQIR4U0ACMxIE8RpLV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:23"]},"IP":{"Case":"Some","Fields":["88.99.104.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10a:189f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["SingularET"]},"Identity":{"Case":"Some","Fields":["B5BaDYrRwTTTA2hyFAsdset2F3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oziTd6p26D1YVWWmD5Yv+Yj7TZaWG8eCChlLXHJAp+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:43:14"]},"IP":{"Case":"Some","Fields":["185.212.149.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AcrimonyOZ"]},"Identity":{"Case":"Some","Fields":["B4z8yqPfBcLRL+Y2nFqCBZRSgFU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SS9p3PYJSVqcLo4nyBzAarVUN2PazduMcaHAV0uVxKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:16"]},"IP":{"Case":"Some","Fields":["51.161.202.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:1ec::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORpedoSHAdow"]},"Identity":{"Case":"Some","Fields":["B2coktEco3QLalDyebDMykyhyjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ReWupNdtGYxQ3578vLbMOMGiFm6ahkSzgBlxQsCkJTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:27"]},"IP":{"Case":"Some","Fields":["90.92.72.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["B0sgwz1KA0U/sZqFNc3OE1JlilY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gsPn83BWn9anF4f/CfjVO3CgHd2e8c9rX0PIfO8o0pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:51"]},"IP":{"Case":"Some","Fields":["93.99.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5e0:0:2:20c:29ff:fecf:4819]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc02"]},"Identity":{"Case":"Some","Fields":["By4og4VK2gxrD8FJdUTlKdn9g3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xRfKEeFIbFO0F25wpV6QshnfWtQmEeCfyS2AkHntaQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.100.87.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarkstarTor2"]},"Identity":{"Case":"Some","Fields":["ByhxQ4kkK4o0YY81vbR3UlOXSbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6w32p1Q06MD7Fd4W6uS9KCTsia0i495NcebT+6bcXwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:31"]},"IP":{"Case":"Some","Fields":["51.89.45.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:126d::14]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elenore"]},"Identity":{"Case":"Some","Fields":["BxG3IGKKhLFNQhB/uMlU72mbODM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pv8+FAazNz4ND50Y7KWXb5qKD8z+hvI5v0xZQoHzt2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:14"]},"IP":{"Case":"Some","Fields":["81.16.19.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:55:d46::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hyrututu"]},"Identity":{"Case":"Some","Fields":["Bw8Lj9FF6+qXlA4nT6+YSoQa4TI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a+ye8Q0ijujywp2XS4yrl0UQfadaCuNPRWBkyNIYLYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:07"]},"IP":{"Case":"Some","Fields":["46.226.104.191"]},"OnionRouterPort":{"Case":"Some","Fields":[10600]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fef1:a10a]:10600"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["panoptykon"]},"Identity":{"Case":"Some","Fields":["BwsWRQlA8As6HIjBrXHrILbGGnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/H9x3fh7fAkHa1843KixV6yn1qnb4i0BKqMP3DFkztM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:53"]},"IP":{"Case":"Some","Fields":["51.68.155.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["execs2"]},"Identity":{"Case":"Some","Fields":["BwsD62K9eal5S5A/Ojiuu6Jd3vk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddhQQmhD/U968aIjNKHD23SdJFqT1uOPibMYpEGE27s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:37"]},"IP":{"Case":"Some","Fields":["45.58.156.75"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorgodofhunger"]},"Identity":{"Case":"Some","Fields":["BwQGL7mlpWWTYaC49CuItkGaG0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WmDlEHk9DHY6doz38Bs3bqqefhpkyyxCQg3psMP7iFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:07"]},"IP":{"Case":"Some","Fields":["94.130.10.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonbeshaba"]},"Identity":{"Case":"Some","Fields":["BuwsFmnlqBHZZA4HztV4baUMVzc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIWV4hsWw02Hok3MHkGMXej3p8TIyQ7//8w/dQkdDUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:22"]},"IP":{"Case":"Some","Fields":["185.220.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:11::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wien"]},"Identity":{"Case":"Some","Fields":["BuclJrvgQMUcWt+6oHrdmuteH6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s/NbtqPNIlvX6UvuBjvLH+C6Y8k9zRce4NZDPnJVD+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:44"]},"IP":{"Case":"Some","Fields":["94.23.247.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza4"]},"Identity":{"Case":"Some","Fields":["BuHvQMtGNbfIJLZ1fAU09LAf4us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JXIRnKe5GVFdOocgOiXNGzTeNoM58PgL4UIdJP1cvmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:47:54"]},"IP":{"Case":"Some","Fields":["192.9.166.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COSMOPOLIS"]},"Identity":{"Case":"Some","Fields":["BtD7nGhg6Nf7meoxCgFnB6+qcc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1+ytncEpz0x8zYuG/fTyfGU5B5F9aIUAo+4l+A7K+Dg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:54"]},"IP":{"Case":"Some","Fields":["154.57.3.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["r"]},"Identity":{"Case":"Some","Fields":["Brvqpvc3WaF5XrRh050qoWjzBdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uAHJ35O1lSd+qdk+qefYYA3CqhdlM17/T9QgZhIQm3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:18"]},"IP":{"Case":"Some","Fields":["77.68.94.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["BqxSeAafu0rMJUh+1LeCLxwR+JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2idPp4KA48X3J9jLVzFhe6oGGUD4fvD2XRATOnxntkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:23"]},"IP":{"Case":"Some","Fields":["95.214.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EntrecotalaPlancha"]},"Identity":{"Case":"Some","Fields":["BpAyDWVJPhglrHCI6VTm7RIFuIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3HsX3MO1iKwVFrY3ppRbG5JOgP/x9BfDWRsVGaVjZbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:35"]},"IP":{"Case":"Some","Fields":["82.130.171.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paradeiser"]},"Identity":{"Case":"Some","Fields":["BoBOY4PulOg8lFPzmx5STCctbYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+GpLTv5mlOMrcJXJd298FbhAxsS/d9KLhutAUhVppY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:26"]},"IP":{"Case":"Some","Fields":["109.70.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Psyduck"]},"Identity":{"Case":"Some","Fields":["Bm/jxOB6GOpTsoKPdT03iNWNdx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jFNHz9/hg5PT/cVmB4SZ9fOaJ6sOuXcMVpyrQXWOOD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:52"]},"IP":{"Case":"Some","Fields":["102.130.113.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1153"]},"Identity":{"Case":"Some","Fields":["BmzSxJPk33MAsnMer34xdDMmJZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x4OK+MpcgpeZpJFFRJXs08j0+Rq9X8uFv0fv3yEMrVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:56"]},"IP":{"Case":"Some","Fields":["185.220.101.153"]},"OnionRouterPort":{"Case":"Some","Fields":[11153]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::153]:11153"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode3"]},"Identity":{"Case":"Some","Fields":["BmYKIDB+ImYZ7/KpM9JXnnZE34M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwGULQDE13LcqoeBTmFnfC+01O0xV4cw+bcK+7k09f4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:54"]},"IP":{"Case":"Some","Fields":["184.105.146.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::90]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raptorist"]},"Identity":{"Case":"Some","Fields":["BlGGNcPMvHDDEfm830w1lrtzbv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y56oEcjIQcZQQScbLVtmUythaXrAv2isHUBQ1G420ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:52"]},"IP":{"Case":"Some","Fields":["78.132.17.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElectricSheep"]},"Identity":{"Case":"Some","Fields":["BlF2arJ61b96j6jzdFnPxMotI1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aiBY2Z8aIEaw26Q/YabnnxDRMS9EpwiaPUqyKBtbi6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:23"]},"IP":{"Case":"Some","Fields":["158.62.185.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheYOSH"]},"Identity":{"Case":"Some","Fields":["Bk0YPTTey4T3LEM1sMJNHolGqbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S/AsGdPmbBTdVWNw0m87c02kWZ47Cm+d2v5tc5UY78w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:29"]},"IP":{"Case":"Some","Fields":["85.146.92.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0a:716::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WakNETX1"]},"Identity":{"Case":"Some","Fields":["Bkj2lGNs2LnDjSn5oCdl+X7C99E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XjX3CU0pYQljJRo0EY75gDukatU8/pPhihs0lQ3Ckw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:25"]},"IP":{"Case":"Some","Fields":["185.130.47.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e03:3:26::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lakeshoreCrypto007"]},"Identity":{"Case":"Some","Fields":["BkWoCheQnTP6+1VI6KEPgKs45l4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oABa78kJjItr8FmXEYZC7mobF4gDw2xE2Wq4A7/S3lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:12"]},"IP":{"Case":"Some","Fields":["45.41.204.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:e0c:13::7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CloudOasis"]},"Identity":{"Case":"Some","Fields":["Bj0j7Wplzcy/iiqMwjCwnDTwH88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uC35NFshfsjpPbF8tFFl9Hboq8YDyG+C0t7ogW5b4wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:37"]},"IP":{"Case":"Some","Fields":["104.200.17.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fee9:6481]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bgbaeveRelay"]},"Identity":{"Case":"Some","Fields":["BiBACCTmQSKq7NJxwbanD0GDnMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LL6UJgHqkYymxSkaTzMtQE7bRSC4P+mzb8VXaI013kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:01"]},"IP":{"Case":"Some","Fields":["85.191.207.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay1"]},"Identity":{"Case":"Some","Fields":["Bh4ElpMdI6gaK2hckznTaFfdD6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3zo6qcq+wMlIY9zmWxb15+YKpEizBgr3Kmx4qHmyDVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:39"]},"IP":{"Case":"Some","Fields":["163.172.184.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xbHnAiyz"]},"Identity":{"Case":"Some","Fields":["BhdhnBuqJhCr5s54wl926l9VChw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8k1jxPGbQO/nUJT0jJ5d60BZ4cGtFyz48yJsjLYX+z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:03"]},"IP":{"Case":"Some","Fields":["178.17.171.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:28::cb68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1177"]},"Identity":{"Case":"Some","Fields":["BgOlCfceeGuuBpS6NdA7PjklW0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCcbbKiBSMXeGxz/aObvUS+qmms91GSouiuGl9NcfOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:58"]},"IP":{"Case":"Some","Fields":["185.220.101.177"]},"OnionRouterPort":{"Case":"Some","Fields":[11177]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::177]:11177"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l1st3n"]},"Identity":{"Case":"Some","Fields":["Bf/OkYlNpqdM85wMY08ynL8JQj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNNlrkWjUwnd2nkAcoLdB22PUPR53YFGdNuFCiUHOMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:10"]},"IP":{"Case":"Some","Fields":["135.125.250.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:62bd::7465:a380]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelpCensoredOnes"]},"Identity":{"Case":"Some","Fields":["Bf+jnXHaEW92aepO5ToLrqMVun8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["odxVOYQCd982oeZ3A0e8r68pYV0EsLLCqIRN/LJhmpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:55"]},"IP":{"Case":"Some","Fields":["85.93.218.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeUyghur"]},"Identity":{"Case":"Some","Fields":["BfUGKUMFRkbMemVTLOUlmAUmKPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3fGCc8jBi/+IRWgFRy8wpAHKKxTq3Jgo3tAmpNg9RBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:10"]},"IP":{"Case":"Some","Fields":["163.172.211.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taco"]},"Identity":{"Case":"Some","Fields":["Bd27dKq28Z4AMYhwKx5U8jA10GQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqDvMR/IXID/Lo3tWX3dDYIHYCK3LYGZ9tVK32aMC6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:19"]},"IP":{"Case":"Some","Fields":["37.48.120.47"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["madblock"]},"Identity":{"Case":"Some","Fields":["BdAdJDu3ZGi4BnDM+PB/XpKWc20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+27rlkiPT0BJvqJLFpFhQfviIUg+nqnnQLpGhL1yMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:44"]},"IP":{"Case":"Some","Fields":["94.199.217.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["electroncash"]},"Identity":{"Case":"Some","Fields":["BcYhtE72gziJrnt+KgtHZWnEfjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYy/ILJCsGMRkI68zboBYMxzJWhySWRVfmL5ZF1TO/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:20"]},"IP":{"Case":"Some","Fields":["193.135.10.219"]},"OnionRouterPort":{"Case":"Some","Fields":[59999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:136::2]:59999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h3u60M7iPf"]},"Identity":{"Case":"Some","Fields":["BcRtFVSVkWohAhMAa2TMmfuQPNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JiyJE1ktJuTb3/gdRBkOyn+fYLY6l+wHBV885DTPj6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:33"]},"IP":{"Case":"Some","Fields":["85.212.98.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORtuga"]},"Identity":{"Case":"Some","Fields":["BcMsXuFEVODEzYHa4PPcMvcp2ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OAK5yI3p9PAaCkv94F6XNVsEctPBswmsrMCakWC9O6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:13"]},"IP":{"Case":"Some","Fields":["144.76.86.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:192:1318::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ranchiJH"]},"Identity":{"Case":"Some","Fields":["BcKe8BLyChUrBgVzhtWoskUwnQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BPW/l+6TsuQ8VZ88SYgoG+FN1F+dK4qVI2bS8M2D2sQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:43"]},"IP":{"Case":"Some","Fields":["129.154.227.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sonolbellsan"]},"Identity":{"Case":"Some","Fields":["BbFCq0/LwBSCucj2WIsiHC4ZPu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S7EjGeuuDcZDKP+8PxssaCVbL0lgNxtJCHAp9nffpRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:23"]},"IP":{"Case":"Some","Fields":["121.50.43.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1149"]},"Identity":{"Case":"Some","Fields":["BZhR5BB25HyLORKSvw5zvhYA+80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGujj8lVa2TQiBW8V2evfMRMgK/UpKQONqZ6BNPUB3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:16"]},"IP":{"Case":"Some","Fields":["185.220.101.149"]},"OnionRouterPort":{"Case":"Some","Fields":[11149]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::149]:11149"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay938635"]},"Identity":{"Case":"Some","Fields":["BZOhGlwQo/o9xpxyVqgY0pSWHJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5hPLZpzUhloaNCsqi5FL8fCk1eSMS9T/7O9r0erBY0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:52"]},"IP":{"Case":"Some","Fields":["188.154.144.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9847]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["BWgal2eDTZ7am9/k4Vob1zxP388"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ayw1A8dHxV52BG2DWPP47u6H8G1YIjb1MUcqtfEq1uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:42"]},"IP":{"Case":"Some","Fields":["109.236.83.11"]},"OnionRouterPort":{"Case":"Some","Fields":[46810]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4"]},"Identity":{"Case":"Some","Fields":["BVurwJajb0H82hngiFn7HDSrWlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O3/bTUDHpK5Owh+7gWPumP3vPLfzc6f9aHCx79Ta2hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:29"]},"IP":{"Case":"Some","Fields":["193.56.240.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["BVeRDYFy5COnmE8UhEMpLpUkcRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtOkqNb0uQPTGyHp42CFxyrCA+0JSNAa2i0wwrO1mIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:15"]},"IP":{"Case":"Some","Fields":["2.58.56.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KatyPerry"]},"Identity":{"Case":"Some","Fields":["BVMOdR6A4RcS9726B3ZZsvBEfIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ft1Ri6h7s4GsCWyEUHu0cQ5ep3XDpCiISupOUT+DbOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:10"]},"IP":{"Case":"Some","Fields":["174.53.167.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KubaJaKubikula"]},"Identity":{"Case":"Some","Fields":["BVLbSvovKA2iGPzOacSd4LVsDek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3odmqyP0JLP7ZIctpM0/i3IOp2JaC8fDb8oG5vXI0gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:26"]},"IP":{"Case":"Some","Fields":["85.4.8.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:1210:4ea8:200:6d4:c4ff:fe4f:354b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayChu"]},"Identity":{"Case":"Some","Fields":["BUr1rl2kqguB1xVVQq8gQlLLbWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uj4BOZ541IjlFFfiN27y5AsH3gEKyVUSTmJEhbpYaiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:31"]},"IP":{"Case":"Some","Fields":["150.230.20.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c002:b0e:f620:461d:1cc1:fa75]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mesolvarde"]},"Identity":{"Case":"Some","Fields":["BUddlGt0jhIE9NmqRABFddsqPKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yfpe7+wNN5XWbxmEuUt8v6B/ZiBtjnUcxn/EcmaU+E8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:34"]},"IP":{"Case":"Some","Fields":["80.13.139.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb08:8e80:b900:54c5:dbff:fe01:840]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captains1"]},"Identity":{"Case":"Some","Fields":["BUHOni3ajAsdmI+2QNZZFrBoPDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TffB9tuTEs4GcVSgDsyn+ozuPsXaATDaJHM5ClpKkY8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:00"]},"IP":{"Case":"Some","Fields":["45.58.152.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stx74"]},"Identity":{"Case":"Some","Fields":["BUAq7HOFVMUwj7B8polh1TJtXUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3yN+9K8IQPwlLVvGi9GRftxH7pzN8TcHKKMyxONmrR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:00"]},"IP":{"Case":"Some","Fields":["51.75.65.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::291b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLXicebeer01"]},"Identity":{"Case":"Some","Fields":["BR0npO/igy1cnf5c9Y8kSKBbSJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3FIra7IDlA9THrldBOGfKNENO37nv1rCvQV3lqpLtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:42"]},"IP":{"Case":"Some","Fields":["95.214.54.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:365e]:5118"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["icecitadel"]},"Identity":{"Case":"Some","Fields":["BRvubZ3qPC6fIDwfaNaDzNbyrEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8dRjZDh4sGJZp04p6JOx2imBF6Uif+QcA9INGhrzqSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:47:06"]},"IP":{"Case":"Some","Fields":["54.36.174.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow007"]},"Identity":{"Case":"Some","Fields":["BRYIXWysQO1M3O/fxcz2sA3mHe0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEJDEvlufRmVKVWhTZN12sYbTEL9XBCN74+1a1Zng9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:08"]},"IP":{"Case":"Some","Fields":["185.195.71.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ADeafMute"]},"Identity":{"Case":"Some","Fields":["BQ5gebafb58tFX867M/QEblm/z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oGTPpiWA6q/OUo8ljF4naD8pSIZOJ3XN0YmoFrHdt64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:29"]},"IP":{"Case":"Some","Fields":["89.36.78.165"]},"OnionRouterPort":{"Case":"Some","Fields":[54939]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adhoczone"]},"Identity":{"Case":"Some","Fields":["BQp7JsDKymrpo3teNCs9XMVseQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc8up8YYCjZTgcDzGjdmI/VomE8wlH8LWYWgi0p9+hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:21"]},"IP":{"Case":"Some","Fields":["185.206.146.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:5741:0:504::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber57"]},"Identity":{"Case":"Some","Fields":["BQoSRe7Ha3Q4M3uq8Z9KsGZrN18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b9qFEjAbkm/kDxmsWfNe/Md8Dq35E8yNetQO6RB4jS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:30"]},"IP":{"Case":"Some","Fields":["185.220.101.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::29]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dorinne"]},"Identity":{"Case":"Some","Fields":["BO5eGyMSfSajb3HGaBDYiwuAu5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jnwvYUZI3sYwCBq1aRfteG2rkR8JAbeT336DtA8td6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:57"]},"IP":{"Case":"Some","Fields":["91.213.233.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor08"]},"Identity":{"Case":"Some","Fields":["BOO1kl619mxuyBCj13AuDKP51ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noAvgw6wqfVhGKYns2Ic1PGPH4xzlo+QNG21PYhggWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:52"]},"IP":{"Case":"Some","Fields":["95.216.136.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:2e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["takei"]},"Identity":{"Case":"Some","Fields":["BN/gR6zfemYgrKeC+vxe8a5/R1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6ClZTe3zZ2KMHExHEV8sKPArrbyvZjdtPancaSU/UY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:05"]},"IP":{"Case":"Some","Fields":["46.22.212.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange006us2"]},"Identity":{"Case":"Some","Fields":["BNnOqNd4q6EwsBT3WMK8rdMdoF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TIgLB8LdaUZV7XxORlunlIcTvnHWBY/tldOogFc3tfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:32"]},"IP":{"Case":"Some","Fields":["207.244.238.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:2050:8019::1]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MitExtraSwibelePls"]},"Identity":{"Case":"Some","Fields":["BNdF8xvrQH0F6/eziA/MsktWYf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zm2w3sewFzz9k4UkhtcWshyG+IvEvxYQBL0n0FlmY1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:58"]},"IP":{"Case":"Some","Fields":["91.132.145.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aaron0x10c"]},"Identity":{"Case":"Some","Fields":["BMNGi+JHQDR8vMAFNMlA28vKvII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ONQfF/gh/hQ4+e4jcuu0U46pKz0LFIvPq4XAjcvt7/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:12"]},"IP":{"Case":"Some","Fields":["51.158.187.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:421::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myOtherRelay"]},"Identity":{"Case":"Some","Fields":["BK5d1jA8UhavCh6cY5xLMjOQZNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DW/u/Q4qUO3qpK6CjrVuZgbFuOaypWeTogDAe6SZg+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:07"]},"IP":{"Case":"Some","Fields":["93.218.178.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9006]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darknebula"]},"Identity":{"Case":"Some","Fields":["BKKKYvJ9nEpg+e0MQmTpi5iMZaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7lxZxOl4gEO0ib/X8GWy2kgt4YSn7NRntubwGUdpLgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:53"]},"IP":{"Case":"Some","Fields":["163.172.169.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:644:c15::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallyniceplace"]},"Identity":{"Case":"Some","Fields":["BJhSoQgFg16assVR1sQ4vm3oskw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/0KvZd9xylKyJVI4h3B3JEeT1D3Z4eWzpFpFYpr1czU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:43"]},"IP":{"Case":"Some","Fields":["193.218.118.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::180]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HackerBobRelay"]},"Identity":{"Case":"Some","Fields":["BJcAuJ2QSGaC9PlrmMWJ8YcxJn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTo5UvI3aXCIVCvuilBQA71fAyLYrGNslIyqAT3hcbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:53"]},"IP":{"Case":"Some","Fields":["85.214.49.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Scarab"]},"Identity":{"Case":"Some","Fields":["BJKYmGR3qJQHqnAxFkXQSX8eD+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8TUJVbPIxj8m6hZIq52Vrn7QxViYK6sx2LWz7fFHr64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:40"]},"IP":{"Case":"Some","Fields":["146.19.213.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9114::11c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhome"]},"Identity":{"Case":"Some","Fields":["BIzNAQGTBulehX97vJrjLSW1OKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bNJihKtR1JVFYsOlzpnbrmzRTEhwEONgU7p1bNTJYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:50"]},"IP":{"Case":"Some","Fields":["92.205.62.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv117"]},"Identity":{"Case":"Some","Fields":["BIUCego0nUVNl49sHOzdKeoXdpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oA5VCETD47NO8BtWexn7bF8rl8XCc5tJmAsot+0g7ZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:51"]},"IP":{"Case":"Some","Fields":["192.42.116.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5517]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["BHSc1qa+HAsU7mPf0PE+657+6Ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rmIh0noDz/Qj5gQxjUu+b+sZhKJSgBuCxpj2D7zYdAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:21"]},"IP":{"Case":"Some","Fields":["185.220.101.51"]},"OnionRouterPort":{"Case":"Some","Fields":[10051]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::51]:10051"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zwiebelmett"]},"Identity":{"Case":"Some","Fields":["BG8tWahfrmk2dqh1M3F8V0NiYcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yu3IDyYNynBTxh2h9ZaxQBlbmPV2wv8cNh0+p8iuwdk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:39"]},"IP":{"Case":"Some","Fields":["95.217.62.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LAGARGOUILLEVIF"]},"Identity":{"Case":"Some","Fields":["BGooQaUm49VpDtM9Vo6YkcOVA9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Cib+rZ+GbsVdjeomwcdd9DFO0Q+qK6zdNqLT6wquQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:49"]},"IP":{"Case":"Some","Fields":["190.211.254.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["BFu8qWAqIsESmE8lADzUiXz/ueU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Skdh5QaJJIqG1JPWsv3geuVQqc0CC1Qa3ArWPhis85w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:36"]},"IP":{"Case":"Some","Fields":["185.229.90.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:43f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vovis"]},"Identity":{"Case":"Some","Fields":["BEbHXnEF2FyRKdg3fswT0FEEpH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXLH/WTGyR10LZGrBl5234wWbUUWSJ1UeTPk38JMmv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:31"]},"IP":{"Case":"Some","Fields":["201.80.78.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["BDv8ouxm7+/rT1yGqkdjn9bZHck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQ1UJbX/1FvQeBf7mP0VKxh9Ui0EqWfPVsm4cTvKmRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:45"]},"IP":{"Case":"Some","Fields":["27.133.132.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["johnsrelay"]},"Identity":{"Case":"Some","Fields":["BDmrc7srhzD8sVsYJSko/Awu35E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zFOUg+gus98d5O9hnXlWckqy4Bi8TwZ5tVJNxcwoQkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:13"]},"IP":{"Case":"Some","Fields":["95.216.22.87"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:16a8::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbertDelroth"]},"Identity":{"Case":"Some","Fields":["BDK+6Cn8sVXOks9Bi3KA+YSeEtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZpxzhYG4Lse/eq6+EHhrybYB/m6C70FPP4vKrtz88G8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:24"]},"IP":{"Case":"Some","Fields":["77.109.152.11"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6426::11]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ecuasterces"]},"Identity":{"Case":"Some","Fields":["BCvN8tNteu4HDghtrUtX8nsvEUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ynyY+JbF0fuZz/QF66sQYPLvsn+kTOmI4h24qGgMTjI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:57"]},"IP":{"Case":"Some","Fields":["66.175.235.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN26"]},"Identity":{"Case":"Some","Fields":["BBZGZAqzBup0sAGWboYWmwTMiNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCmRdlneNaotxcfDXulc3eZXTq6bw22v7ePYqap0nwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:30"]},"IP":{"Case":"Some","Fields":["199.249.230.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64f]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EntitaetNull"]},"Identity":{"Case":"Some","Fields":["BBFTINEeJYPsP3+UStLUGfm4QQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ek7gFOPs83jKtWvDPlnWqTkqqlE2fPGmj5uyDhYWfvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:18"]},"IP":{"Case":"Some","Fields":["85.214.156.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["BA9e3m+0Zx5O4Szy3w+4IVHcIls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJRrp1Vpj2K9CpekXX0SBr97qdTtOsF/IHV3NnLGr6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:32"]},"IP":{"Case":"Some","Fields":["23.128.248.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::83]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stars1"]},"Identity":{"Case":"Some","Fields":["BAlgXoNDVip5D/6EbLO9fARCn3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3kwRu347R08zVokqn2uw6XUCI/mXNGVbHdMHz7oc/lE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:15"]},"IP":{"Case":"Some","Fields":["158.69.204.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgIL"]},"Identity":{"Case":"Some","Fields":["A/jHfcBaogKwYipvpEovopqLU0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xMyddy1PfBc/XElZjQ3e9MSPPWjOi3iRedhhXWhpotM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:40"]},"IP":{"Case":"Some","Fields":["109.207.77.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shockrealm"]},"Identity":{"Case":"Some","Fields":["A+593ZMdkrtXuBswOK58QKCKsjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1JNJfmNF0QGNPqHJ9bbIveio+yAh5nhKy7FvlhwlPL4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:09"]},"IP":{"Case":"Some","Fields":["123.30.128.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4pyro2eu3org0"]},"Identity":{"Case":"Some","Fields":["A+n35mnI+RHF7sPsCUUzFR+FdCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nxu7If3EAok8CnTgDaRVeKDSKJlKON67xOQlTjbq+Ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["217.155.40.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:8010:60a1:2013::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Wildtwister"]},"Identity":{"Case":"Some","Fields":["A+EHo2Y+kSZk9Kk03/RRJiwhg1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CclfjExHhqmEzLBKDaI3DzjYnv4piticXM4VfuBGbhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:30"]},"IP":{"Case":"Some","Fields":["94.100.6.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itzme"]},"Identity":{"Case":"Some","Fields":["A9og/XHO0YjIt2UugZQcUGck26Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q8HljNSWyNQ62SnKdhg3B7LEhPI4FnZ5ItGmjnwGDNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:47"]},"IP":{"Case":"Some","Fields":["198.74.57.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackfox"]},"Identity":{"Case":"Some","Fields":["A9HvPvK+UUUVDFisxyUZ3YYOYbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bixn5ksZnhWLNURL46DmL9m/mg3ULwBxqXR/HYy7JjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:20"]},"IP":{"Case":"Some","Fields":["136.243.3.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:1d41::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow5"]},"Identity":{"Case":"Some","Fields":["A8woMv7V46pHHMOHQzi5icpFlrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hticnoAP6peOE6vbIOnIOMCbaAy4o5PQBoLDUju5FlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:32"]},"IP":{"Case":"Some","Fields":["164.132.207.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["server001"]},"Identity":{"Case":"Some","Fields":["A8eUQBqS8vAzrV37L8AF1EWRBlQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zy7xUFLB3EueYQiKHzUbwwpKxjWRQHPpu1upTg+KqhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:03"]},"IP":{"Case":"Some","Fields":["185.163.45.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot61"]},"Identity":{"Case":"Some","Fields":["A8MGnoFOKW6xh3brYbHst1Ttif4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c4pbqnXwbr4c8ziHWeNgG+5TJMicW3+Hnoy6a2nO9cM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["81.7.10.193"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2f16]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["929oi1u23jd987j"]},"Identity":{"Case":"Some","Fields":["A75z5YH5nv/xmrWC7wx+jmUxzto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COIJVhKCSKRfKl8QpHnQbdKzaVBBATI/kTrUc9YP+d4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["85.215.91.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Totonicapanp6"]},"Identity":{"Case":"Some","Fields":["A71WtQcvsH0rTXni+wQ2bUFe8+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSTfU9OuIDJ2Hi+7PsczZ4EPYQqirgGYBEB1qNtYRhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:03"]},"IP":{"Case":"Some","Fields":["163.172.76.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snakeskin"]},"Identity":{"Case":"Some","Fields":["A7qsh1YOhbKCqU+mkSjgBDhmNRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPDPb4bJwxBorENMLzWyMzUV/j66pKBIJIBSsuAcuBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:36"]},"IP":{"Case":"Some","Fields":["46.148.26.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TLCOnion"]},"Identity":{"Case":"Some","Fields":["A6M8NFT8D5rGlm8S+khpmfWiKJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B+oaXUqv2VL3mnX/qjlrz9oNeOZb3tJ+ctTBfv1HjQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:06"]},"IP":{"Case":"Some","Fields":["96.66.15.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp7"]},"Identity":{"Case":"Some","Fields":["A59Mvf99B/xcgYitwHP4Yyyclwg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmFEuaSfA2tuoDIKWCQWI4/1dDmX2n/B5W0+vQPePws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:51"]},"IP":{"Case":"Some","Fields":["185.220.103.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoomStick"]},"Identity":{"Case":"Some","Fields":["A5o4P4zluY0ahNKDjSSTBlfkcuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kFL++QDaSAVesoux6dkRm78MsHL0aGdVK3pOH3KzKoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:40"]},"IP":{"Case":"Some","Fields":["45.138.228.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:15ed::2003]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ry4an"]},"Identity":{"Case":"Some","Fields":["A5ADwyDZmA4KdA8QehqcE8mcX+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fuUBzU80C9vD1GcQ4RwiXM0rQDFup6W/I+/fMVCWERI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:43"]},"IP":{"Case":"Some","Fields":["45.79.159.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe8d:a3a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["turnt"]},"Identity":{"Case":"Some","Fields":["A4ww0q0FMUfJHvsSkVJ+1iHX0bE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GatZY6s1X8s1qUtlcB0N/YYQpLx6mCBJ1EwPqrGInsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:43"]},"IP":{"Case":"Some","Fields":["82.221.131.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SLOG"]},"Identity":{"Case":"Some","Fields":["A3tsYNrU3zL9opv0WNXIyBaqjz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mU4ZbMWQNeRoqtGhnQqSrgpjb51NA1oQI/e14jF6U8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:19"]},"IP":{"Case":"Some","Fields":["5.154.174.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hong"]},"Identity":{"Case":"Some","Fields":["A3Hk7JAcT8d/6iqlvkIY8L4fbOM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uWq4UBDr5FSS72HbxCF265k/b+IBPvq30x11NBPfUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:53"]},"IP":{"Case":"Some","Fields":["209.58.180.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG9"]},"Identity":{"Case":"Some","Fields":["A279LmHeo9L+5ZhhukJF5N6GQRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFLGNHF2omX5yksjQJMDFUkd5pNGZf8oEGqfAUq3JPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parsel"]},"Identity":{"Case":"Some","Fields":["A24BWthNPGBWZuOjMGsePhiolII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATX6VpAeYJK25mHdpm80wQO1CRcohcJoEo369NrqeT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:52"]},"IP":{"Case":"Some","Fields":["172.107.202.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arrelay"]},"Identity":{"Case":"Some","Fields":["A2kSKZ6tCvbN/pIuGELDrn3e/jA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jXAT/dYwQmJJHhlOtVzEBTU/mUVNUJG5NHjXpA+52T4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:27"]},"IP":{"Case":"Some","Fields":["124.170.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["A1+BMZXwy59Wft/fYMZ0XKNroL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NfiKQ65I3SLQZwS2HB8/LDh3Rdjb96I+IYb2I6vcnZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:48"]},"IP":{"Case":"Some","Fields":["77.68.3.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:21d::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lick"]},"Identity":{"Case":"Some","Fields":["A1YM/XWxl8f3ZuzEKb0K5mG3ujE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CetnKBfn4jmyxtbJY+0579nai6AgYR0SC9DKTbwj698"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:14"]},"IP":{"Case":"Some","Fields":["23.160.193.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:10:10:8000::d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Riley"]},"Identity":{"Case":"Some","Fields":["AxmNXoejnKorhV3rZY/fCnOktYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R/GDp02mG9ZzqaxyW0YNbt9Ghjz5lyRtu3BTD7FLzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:41"]},"IP":{"Case":"Some","Fields":["72.95.19.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GladesvilleRelay"]},"Identity":{"Case":"Some","Fields":["AumLvgsSVw5OKXTip0crKX+NmVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwRPZYxnMXHSMa6NZKgjkPrgCK6q8Y8gJX7hA7VEu8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:53"]},"IP":{"Case":"Some","Fields":["60.242.251.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oxi8xiG1eiyo"]},"Identity":{"Case":"Some","Fields":["Atgy8ALUyj0lrdosu7LQnuQaFas"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bEzA+tf3eHEFiVmsGUxu4xPv4y86FOwToJPtnTfJyE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:40"]},"IP":{"Case":"Some","Fields":["209.141.37.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fearless2"]},"Identity":{"Case":"Some","Fields":["AtY0rdm0FnfSg0vyxSA7aDPec4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REqfy5ya26yCbSIPKK9WjVkvtw+CQcYI1HfQiGADZDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:59"]},"IP":{"Case":"Some","Fields":["178.170.10.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::529]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritdowntwo"]},"Identity":{"Case":"Some","Fields":["AtEMqmXmt/7lU0O6eJCy0bbZMTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VSMGR+Ux4HqfQzEynTCL1rdxcsDiKH0wZKHcgmYhPQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:02"]},"IP":{"Case":"Some","Fields":["159.65.89.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::e58:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shado"]},"Identity":{"Case":"Some","Fields":["ArS1uS7mDVMXoNswEXVzerjxcYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC+G0cJdeEjJNxJLkSah30Tojm2i65cKARGfTAlAKWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:08"]},"IP":{"Case":"Some","Fields":["152.70.140.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["onionDAOrel0aded1"]},"Identity":{"Case":"Some","Fields":["AqjMsftwmEImIxKDWW2nNKgOP28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zi8TTzY02+CBbThxtBxREr3068XCfyM5keSVqIAkwyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:05"]},"IP":{"Case":"Some","Fields":["5.2.79.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unknown"]},"Identity":{"Case":"Some","Fields":["Applvq7lZz8yrsyykj+IN9sSuiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KjfJDxPnPptszcX8yzsQ2kCk7tgonE6LdFbAsvjGmpI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:21"]},"IP":{"Case":"Some","Fields":["185.130.46.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["ApBMmuisjuuRn31cXv4ItANjyzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vR02yAOZhZE9+YUXKnzxGhdJ577XDdWt9EZ1bqAOU24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:57:07"]},"IP":{"Case":"Some","Fields":["23.128.248.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::223]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["AolaWZSmopHTk4wRQuv9O4wpZwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V7IYz5BDsQggP3zp6bTwB4eTHrZn7k8DLslg42yrn8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:36"]},"IP":{"Case":"Some","Fields":["185.44.81.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::70b5:bcff:fece:22c1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipeb"]},"Identity":{"Case":"Some","Fields":["An51yS8SMa5fe9ThU2aW/jBAxGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DGL2tJ2LZyKATtdf5jHVg3n3wKfaBGl54qB/U+N4FMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:52"]},"IP":{"Case":"Some","Fields":["185.220.102.244"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::244]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zagreus"]},"Identity":{"Case":"Some","Fields":["AnQPRy0dpcG3dHXxiUD+efFa9Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UDqn/3JvsuusgbBsG9Bw7eDmS9plesTzCsnFxQ93W1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:40"]},"IP":{"Case":"Some","Fields":["81.169.222.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4224:8d00:f3a9:25e6:4cb6:f3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nologcz"]},"Identity":{"Case":"Some","Fields":["Am0RMUsW/lGh7KquOIZ70LSSceg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cxK+/CN1KBZjiqynZhaT9gOb2zJMqkGeovAF8k1gaGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:59"]},"IP":{"Case":"Some","Fields":["171.25.222.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:a900:ffff:1116::203]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["middleIsenguard"]},"Identity":{"Case":"Some","Fields":["AmVLi5gDd1hgzfLH9xCf9ooTSao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZIVuXK0lUzZof8KTH2DIBhHxVkltvkC/nmXsY0xs1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:36"]},"IP":{"Case":"Some","Fields":["79.20.11.198"]},"OnionRouterPort":{"Case":"Some","Fields":[10101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange029us"]},"Identity":{"Case":"Some","Fields":["AmSPLxNccpaiex9Z0q5O7CXZqHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bRw/FwMd3R1wTpTODBp4FaoRhB4b8kbKaFLsqja6o7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:47"]},"IP":{"Case":"Some","Fields":["104.194.235.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["howlin"]},"Identity":{"Case":"Some","Fields":["Ali9rps1FxSwvMDavh15jWYuuog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jYgxcUHVlfTs4w5cqjDsMVfpS/tFGJTkKg2RZu2Gdnk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:30"]},"IP":{"Case":"Some","Fields":["45.141.153.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["AlbMf3bkYVf5VwXaxY8OPvnNFYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it/kBiYCzRHrk2v5k4syrs98dBklqdHQ37eNSrL9xkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:38"]},"IP":{"Case":"Some","Fields":["195.90.208.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:fa::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rome2"]},"Identity":{"Case":"Some","Fields":["AjV5EbiC8ldnbnWwfs//WIXks0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XkWiz2eeEGa5nRjAPVIe13Gs8SlGANBOtzuG9Ol+3PU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:33"]},"IP":{"Case":"Some","Fields":["185.146.232.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:16b::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0der"]},"Identity":{"Case":"Some","Fields":["AjUfyI0L8G9s3lRSZWZB5hGdvX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dYZ0lxgIGo6XGrbEED3t8hk9bvVxyO0JfH42CloXlHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:37"]},"IP":{"Case":"Some","Fields":["95.216.20.80"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:14af::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrmmlDag"]},"Identity":{"Case":"Some","Fields":["Ah3c1of9UFt+p+ddps7w13iqB/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qyVqiTkH+ObduIuwLHfhth4OJhcXv/N37bPRSqydXWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:04"]},"IP":{"Case":"Some","Fields":["213.239.215.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:90b0:789d:6a4:95f3:a78c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["island"]},"Identity":{"Case":"Some","Fields":["AfwWnK9EnV5e9nUj9pNG58tqBXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JxaiDzFMbmZcloo7KxQNBl1Mob4VnGu2wA+EfyOq+/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:17"]},"IP":{"Case":"Some","Fields":["109.207.77.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dcslTorRelay"]},"Identity":{"Case":"Some","Fields":["AfuIxAYsXAAu9q02Yt1ukLi5+A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ooVasBFwe2GMIH2pq+b6wBX4fzFmG4LZ08IHiVq7/9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:36"]},"IP":{"Case":"Some","Fields":["87.62.98.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:5e40:3056:1a0:69eb:f035:36ab:2e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zinc"]},"Identity":{"Case":"Some","Fields":["Afc9vZtWwx49Oq65X4zx3rfZpy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVVBpHlzx3mmy/jrohuGVICn3AuWo8J+kMWY30v/1DU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:09"]},"IP":{"Case":"Some","Fields":["185.184.192.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrTorRelay2A"]},"Identity":{"Case":"Some","Fields":["Ae5HjW3zm6zc4PPemcRaew7qTCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bp4rtwX/sLvMrtBtPvPa/fga2twqw9Dqwb6nlhoxmkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:10"]},"IP":{"Case":"Some","Fields":["50.92.81.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["AeG0tvIvR6zSC0KNnW9G5AbcKa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["atGa4AjNLvsp7+MaOiqaj3P3TWrk2q7/UcKlTbFMAuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:52"]},"IP":{"Case":"Some","Fields":["23.128.248.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::45]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nanna"]},"Identity":{"Case":"Some","Fields":["Ac/lABQq8ZslLIswNy/LK0eQT1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CWnhWDmdwJsi3PXwwY0VVLu9vIWZRQLBUj4ZsPO3tvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:38"]},"IP":{"Case":"Some","Fields":["83.137.158.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra45"]},"Identity":{"Case":"Some","Fields":["Ac/MJUUjTu5SPTPtJe8eeYB6GKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CfIubkeY6XQ5ifLcufSyAwT9x3HR4I0/ywSHJOYquMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:19"]},"IP":{"Case":"Some","Fields":["213.164.205.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Overjump"]},"Identity":{"Case":"Some","Fields":["AcsuKXqPWG27z5jwKKPRpJsKt7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZoYgoXccKEgujjnGuxgL1Yb7b1PzJ4mOBBopAEUeOmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:28"]},"IP":{"Case":"Some","Fields":["103.228.53.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["root1Moh"]},"Identity":{"Case":"Some","Fields":["AbjxjBHOKHfoGQ+iyBgIzQh1FcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/kNzFPLt9NhKkNTqR5Iqt6SwjmmpKXORFPOxRod7BFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:14"]},"IP":{"Case":"Some","Fields":["89.58.34.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:fe8:c853:14ff:fe86:7a3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rixtyminutes"]},"Identity":{"Case":"Some","Fields":["Aa4t4xQnbIL8zDYDocLzI45lRMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HvvVbTcZBIjUeas5+N5JhB/pVIC9Q3UtUHVf2m5R4Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:09"]},"IP":{"Case":"Some","Fields":["149.56.233.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PyotrTorpotkinTwo"]},"Identity":{"Case":"Some","Fields":["AZ/rIs4Ey9BIm38kvgOFGLZPoiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qgfTQGWTY2DfOI0azDm+FOovWR5/6GMOlQGtBFVnkk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:02"]},"IP":{"Case":"Some","Fields":["142.44.243.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::3e59]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeftBehind1"]},"Identity":{"Case":"Some","Fields":["AZ4g41JIG9RaPOfWaRoQ+1MYUPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xlQJ5S4BbSis+bK8zms5ASQDDw2udajbZ0VCvNEY3wY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:45"]},"IP":{"Case":"Some","Fields":["111.233.139.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nicknamesomething"]},"Identity":{"Case":"Some","Fields":["AYpdmyM+/3D7rbLnW1SoPy6dNA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wwv8qwFLeLLILeZsFHfmqaoJCzvyk8i8w9D9SU4P9Ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:37"]},"IP":{"Case":"Some","Fields":["87.151.169.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["AX56Nk/sTm51Lemn1sUhKSl/IFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZNpp2I6fqunqhH5hHPBDlBk1xTwdH6wd3a7Aeh1CAUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:13"]},"IP":{"Case":"Some","Fields":["194.32.107.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:172]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raptor"]},"Identity":{"Case":"Some","Fields":["AX2Xuw8oHDSXIJHAeSvycZi2dOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jx5k38hHtr2gvcsO+aPVgHW1JrIXs+4v/D6HBMGl500"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:43"]},"IP":{"Case":"Some","Fields":["135.23.97.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bigdaddy"]},"Identity":{"Case":"Some","Fields":["AXsIzBY0JM1qukrdQEK0F01JRzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWMa2FBcFqlZTSFebQWT2gzkwmsLJLaJR5OiqgrWsV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:01"]},"IP":{"Case":"Some","Fields":["185.21.217.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10042]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation01"]},"Identity":{"Case":"Some","Fields":["AXWbql3l+hnjb62vfZvGTBVXOrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gbVbPNVcpoQp/0TLdCydZLZH//nhHJlXo4t2h20bfPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:15"]},"IP":{"Case":"Some","Fields":["45.14.233.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e995]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nyatorexitno"]},"Identity":{"Case":"Some","Fields":["AXNC4Ze4xXWlxTAc0Ah4Ddd1KGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3nbX+vSCZ02U6nR6ApG0uzMMtKDUao4B5hgCdnFGGr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:09"]},"IP":{"Case":"Some","Fields":["185.125.168.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LastResort"]},"Identity":{"Case":"Some","Fields":["AXIqYNwOqmTXkFrWCjJCxgkec9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WN0dKq3ERHzHuM5PZEJFkqFNiT2eMapkQq0fNvcrXJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:28"]},"IP":{"Case":"Some","Fields":["185.112.146.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForetNoire"]},"Identity":{"Case":"Some","Fields":["AW744ivuqB8wU1l07DG2lDaXyos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVsBxELbz1gTxvymlSyZfi0i98MzGRG/s9WOEi+2Tz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:59"]},"IP":{"Case":"Some","Fields":["5.135.182.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:bd83::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d0dak"]},"Identity":{"Case":"Some","Fields":["AWCT7kuumvRz/AyBGp0Q/aqco0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1sCWdRJVuQW0nGlTqGuJYCsL9TV8RCCd5Mhjc7capkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:54"]},"IP":{"Case":"Some","Fields":["62.65.106.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raspitor"]},"Identity":{"Case":"Some","Fields":["AV/TpcOriWJqK5jG+8g0rWfWF0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cf5rA+KvPQTqXUHdRJzJpnY1ZFDmYwZBcNQNgbYF/0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:00"]},"IP":{"Case":"Some","Fields":["86.148.202.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["marsmellow"]},"Identity":{"Case":"Some","Fields":["AU7iS8vaFg8jayVHpGObJ+MDoec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xBsTrRnleloDLd7Nug8PwgIQ+xuB25FyJPNNSS/vIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:10"]},"IP":{"Case":"Some","Fields":["20.224.145.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["insist"]},"Identity":{"Case":"Some","Fields":["AUvQljY3O3jMKLpw42xxkOPeI2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7OBReJX/TYbMxDK4jJsb+Ysraio/AVruXwODjkJ/3Gc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:12"]},"IP":{"Case":"Some","Fields":["5.57.243.47"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rken"]},"Identity":{"Case":"Some","Fields":["ATq67Y9M22d74LUhLkslg7hgNe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Z/vH+c4ovLLTN+iRujyhilXo5n7SuWFQFN7VUc19Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:54"]},"IP":{"Case":"Some","Fields":["45.129.182.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:47:631:a437:b1ff:fe5c:74a2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bang1"]},"Identity":{"Case":"Some","Fields":["ATZpawJaxVA4R9c2/p89ZesnpZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oY48x+Ov1gm7TYm01F91Pnl9aOrN25g2MGGio6zprdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:47"]},"IP":{"Case":"Some","Fields":["134.209.159.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::8bb:6001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["disobey"]},"Identity":{"Case":"Some","Fields":["ASpnaF8D1msj1hftg/hCWWbp1Ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KQHgrg+drJ239mYxDvTJdYDU3PHPEpfvEEs0hyPdn90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:47"]},"IP":{"Case":"Some","Fields":["172.97.177.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["ARyLfeyAm7L6iiI9cQEFjJ9wK/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q8kccE4ku8pURNsMAkTKNWW/ou2KND8WRsX70GhBao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:30"]},"IP":{"Case":"Some","Fields":["194.50.94.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:300:c232::5ef7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["motauri"]},"Identity":{"Case":"Some","Fields":["ARgbMb5YYMfWbaiPiK1SLAZHD9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GH7KuIFUknybRtJbbttM5JB+aWEUMJaoQUipNwtWDtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:09"]},"IP":{"Case":"Some","Fields":["95.143.193.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor1e1"]},"Identity":{"Case":"Some","Fields":["ARG6m2BGaeY2/9W1A/OCpLetboA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5SN4aVELlO6sPZtOlEofsDq5aw/5jVTwXzaxoq+e58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:44"]},"IP":{"Case":"Some","Fields":["185.195.71.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex85"]},"Identity":{"Case":"Some","Fields":["AOs6Esd+cPGfZqe70JTWKWmvNQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HdZIDtURTkLpnH/MrPTsJtWdEDp6dyTDqrZyKlrZLKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:37"]},"IP":{"Case":"Some","Fields":["199.249.230.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::174]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonhoard"]},"Identity":{"Case":"Some","Fields":["AOFknmn/kdfwHnSl5i7xT32ZFeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tyJRBzv2zgwC+6Ksy+yL/LViNSCTaTmQBrI+IS4508g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:08"]},"IP":{"Case":"Some","Fields":["116.203.50.182"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:b16b::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex55"]},"Identity":{"Case":"Some","Fields":["ANyurj5UwygJ5/fMS/Km/Gj8VS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mmCZFnpwqQSK58aUJvFyJ+GiWc8rgCP7F10PBnO2ltI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::144]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tried"]},"Identity":{"Case":"Some","Fields":["ANLOPCFT6gl4byEF8msTjPdZQk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XUkbIT1+jreXrOgBhtW3JEKUcCH/stKd9jdhprOWgNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:18"]},"IP":{"Case":"Some","Fields":["107.155.81.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["effiorg1984"]},"Identity":{"Case":"Some","Fields":["AMzmqE5tY6GkLhBYObyO1dSxZmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rWkL3SYg9eFLVfxfmf2KPctal9hr3PtL3xz+3oDip/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:12"]},"IP":{"Case":"Some","Fields":["89.236.112.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l25"]},"Identity":{"Case":"Some","Fields":["AMS5E3SseQyy84ZdLzb2LfJ/Cg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8mqti/QHb3euXKCSK589uu43CqvC6xqqpLbpRYRKNCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:57"]},"IP":{"Case":"Some","Fields":["185.66.141.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["roterechtehand"]},"Identity":{"Case":"Some","Fields":["ALwRxEi3DILGEA9bE2LflQpgnwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8nbqM1iUKzTLwXn3jsyVtQXo4p5/jhgj3vlvF9jtkF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:58"]},"IP":{"Case":"Some","Fields":["185.183.194.94"]},"OnionRouterPort":{"Case":"Some","Fields":[4569]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mharelay"]},"Identity":{"Case":"Some","Fields":["ALV79hT37TBRBztdRSb/CyOvIXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/ASbtLr2fVMin58JmdnqV0mwc3yyMOh2eKwzo5C91Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:29"]},"IP":{"Case":"Some","Fields":["158.174.145.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:403c::1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode1"]},"Identity":{"Case":"Some","Fields":["AK5iWCxan+62r4LGSuAi16hLULI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n2tR2VUTDdV1QRjDMAU53v3dtYIRxyCMLicwiKaDvMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:36:16"]},"IP":{"Case":"Some","Fields":["184.105.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::88]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["AJhfcQByeAxQ5ZEWsDKLjSoIU3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8/RH5dbWDtVBDuDKnac7CJqU/P0mpPh+BriZPa/k7R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:48"]},"IP":{"Case":"Some","Fields":["79.110.62.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackBeluga"]},"Identity":{"Case":"Some","Fields":["AJYtLdC5vzpq8dXrIBEyOIrKFCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Ip0JZI4SIadLOU0x3rExyuyPSkH2syySaqDvS+pVPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:58"]},"IP":{"Case":"Some","Fields":["5.189.155.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mb8aku"]},"Identity":{"Case":"Some","Fields":["AI3Uguym3S7tHit4FIogUpvWbkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xD4m12ZGlvYELlOUHQVOIhoqX6bWUxpuT4jYRlVBO9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:41"]},"IP":{"Case":"Some","Fields":["209.141.33.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay42at8443"]},"Identity":{"Case":"Some","Fields":["AIGW3ESUgsc8+pcSRFIjkX92CSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pywwn0/V5of5ek2IbcRA2TJi5v+toZkJwk62+EjtJPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venenata"]},"Identity":{"Case":"Some","Fields":["AHfd3bVJVCFM/uD+iqhd3IV+fIo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0rQZbSia0QlouQUSxz/SXiIvaMvYOriOVW5h7Z1GXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:42"]},"IP":{"Case":"Some","Fields":["71.19.144.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe2c:cd37]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex13"]},"Identity":{"Case":"Some","Fields":["AHe8unJE2z5qXtJ0boYXAGZoSIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1TTcTyS+FBXPpPJG4DxO9wVOLaWpXDlT3GeYefWHIw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:31"]},"IP":{"Case":"Some","Fields":["199.249.230.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::103]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["right2"]},"Identity":{"Case":"Some","Fields":["AGVBE5WXY/ZTySr/B4p+w6e70tk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["25sjY05+pVXDzFJAwZwo8qg2f8dCFI44Y0AGJgzTIt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:35"]},"IP":{"Case":"Some","Fields":["174.128.250.165"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eisbaer"]},"Identity":{"Case":"Some","Fields":["AGHSKv0fBtTm81AGvT2cIdeYHqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7UiQ8JSMEi0HFvY6K+hrzK9bz5hmIZkehYgwK/s+NRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:04"]},"IP":{"Case":"Some","Fields":["109.70.100.73"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::73]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athena"]},"Identity":{"Case":"Some","Fields":["AF7ZchP3JYZ+QiuNwEQzYbuyTjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OaWeyjysCt1H0CB9Stxpj/kW9YBPc+Lk9lbw37wPfPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:01"]},"IP":{"Case":"Some","Fields":["104.244.79.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fb10:d07b:edfd:2c84:bb4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["namie"]},"Identity":{"Case":"Some","Fields":["AFyL+BoOH3CNtCpXPISvAlpAb88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I2bRikcknXdQOn3xwCu4L91hCIUbH1MBsWHKoAqK9fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:09"]},"IP":{"Case":"Some","Fields":["109.241.109.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["suominode"]},"Identity":{"Case":"Some","Fields":["AFYmkM8z9TfE9MlYdlX3Rphoxzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yW5+gcEudV0vrF962L5bv9vjwnSXuI4IZ34bROF+SAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:29"]},"IP":{"Case":"Some","Fields":["37.16.105.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk11d"]},"Identity":{"Case":"Some","Fields":["AEClsEx+MJ03y+ftsrctPhXQV8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RebXkemb1dep4B1glT2Re14omz6lyNoZewttn87bSnI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:10"]},"IP":{"Case":"Some","Fields":["51.15.75.120"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1329::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ADb6NqtDX9XQ9kBiZjaGfr+3LGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0YZ3QM9Ec/sfD88MYBk4KONtixMhoYER274t6XVHqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10133]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::33]:10133"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsMobley"]},"Identity":{"Case":"Some","Fields":["ACg7VWTjBy3N2rMdbvYi3Um/Uk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AQ4qn2l09Mq6p7CpJKG4XNIxQrfMoFcPyP15PHHrbpw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:13"]},"IP":{"Case":"Some","Fields":["195.15.242.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::201]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skylarkRelay"]},"Identity":{"Case":"Some","Fields":["ACQOyytTWqTB4YdNdE36avLl6UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1S9VmyN469C3VwtS+wER87B6B2KJ8AQp7/SI661zt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:06"]},"IP":{"Case":"Some","Fields":["95.111.230.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["earthpig"]},"Identity":{"Case":"Some","Fields":["ABUt+rlyo/iwhkjhSnsJjMKUg+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rf9Ck3bhxjdUczTTc02CRCc3GTurEoxoVXN/qJF6Wbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:09"]},"IP":{"Case":"Some","Fields":["41.216.189.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute14"]},"Identity":{"Case":"Some","Fields":["ABG9JIWtRdmE7EFZyI/AZuXjMA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qs0yOymbVs6GgnbYYduADsxleU7xFUOnsQoMOC5nCwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:42"]},"IP":{"Case":"Some","Fields":["162.247.74.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seele"]},"Identity":{"Case":"Some","Fields":["AAoQ1DAR6kkoo19hBAX5K0QztNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YcEe5/d/nL7u0lMKmuQTGaSjVE5dAROlmU9VZ/9XRbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:45"]},"IP":{"Case":"Some","Fields":["104.53.221.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]}],"Sources":[{"NickName":{"Case":"Some","Fields":["Faravahar"]},"Identity":{"Case":"Some","Fields":["EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97"]},"Address":{"Case":"Some","Fields":["154.35.175.225"]},"IP":{"Case":"Some","Fields":["154.35.175.225"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["0x0B47D56D Sina Rabbani (inf0) "]},"VoteDigest":{"Case":"Some","Fields":["75FD97064EE7E338E4CDB244CEAACF4DE6E786F0"]}},{"NickName":{"Case":"Some","Fields":["gabelmoo"]},"Identity":{"Case":"Some","Fields":["ED03BB616EB2F60BEC80151114BB25CEF515B226"]},"Address":{"Case":"Some","Fields":["131.188.40.189"]},"IP":{"Case":"Some","Fields":["131.188.40.189"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["4096R/261C5FBE77285F88FB0C343266C8C2D7C5AA446D Sebastian Hahn - 12NbRAjAG5U3LLWETSF7fSTcdaz32Mu5CN"]},"VoteDigest":{"Case":"Some","Fields":["BF99C6627E5C3203D4CA12F5C41BE5A5DBF98BD1"]}},{"NickName":{"Case":"Some","Fields":["dizum"]},"Identity":{"Case":"Some","Fields":["E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58"]},"Address":{"Case":"Some","Fields":["45.66.33.45"]},"IP":{"Case":"Some","Fields":["45.66.33.45"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["FD790065EBBD5E7AE6D039620D7F81CD19147711 Alex de Joode "]},"VoteDigest":{"Case":"Some","Fields":["253F98BE09A1498E22FFB23345ACC4C26136DC2E"]}},{"NickName":{"Case":"Some","Fields":["moria1"]},"Identity":{"Case":"Some","Fields":["D586D18309DED4CD6D57C18FDB97EFA96D330566"]},"Address":{"Case":"Some","Fields":["128.31.0.34"]},"IP":{"Case":"Some","Fields":["128.31.0.34"]},"DirectoryPort":{"Case":"Some","Fields":[9131]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"Contact":{"Case":"Some","Fields":["1024D/EB5A896A28988BF5 arma mit edu"]},"VoteDigest":{"Case":"Some","Fields":["91CE4979C25A4F227D6F0B927B94D33056147AC0"]}},{"NickName":{"Case":"Some","Fields":["maatuska"]},"Identity":{"Case":"Some","Fields":["49015F787433103580E3B66A1707A00E60F2D15B"]},"Address":{"Case":"Some","Fields":["171.25.193.9"]},"IP":{"Case":"Some","Fields":["171.25.193.9"]},"DirectoryPort":{"Case":"Some","Fields":[443]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"Contact":{"Case":"Some","Fields":["4096R/1E8BF34923291265 Linus Nordberg "]},"VoteDigest":{"Case":"Some","Fields":["868A010676C297B727D4E9AF085FD9510D955D6C"]}},{"NickName":{"Case":"Some","Fields":["bastet"]},"Identity":{"Case":"Some","Fields":["27102BC123E7AF1D4741AE047E160C91ADC76B21"]},"Address":{"Case":"Some","Fields":["204.13.164.118"]},"IP":{"Case":"Some","Fields":["204.13.164.118"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["stefani 4096/F4B863AD6642E7EE"]},"VoteDigest":{"Case":"Some","Fields":["F8EFC6506570978DCD99E7680A2D49BC28CE6263"]}},{"NickName":{"Case":"Some","Fields":["longclaw"]},"Identity":{"Case":"Some","Fields":["23D15D965BC35114467363C165C4F724B64B4F66"]},"Address":{"Case":"Some","Fields":["199.58.81.140"]},"IP":{"Case":"Some","Fields":["199.58.81.140"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Riseup Networks - 1nNzekuHGGzBYRzyjfjFEfeisNvxkn4RT"]},"VoteDigest":{"Case":"Some","Fields":["0F4B77E189D5F3634828FBAEB10BA78EB009B819"]}},{"NickName":{"Case":"Some","Fields":["tor26"]},"Identity":{"Case":"Some","Fields":["14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4"]},"Address":{"Case":"Some","Fields":["86.59.21.38"]},"IP":{"Case":"Some","Fields":["86.59.21.38"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Peter Palfrader"]},"VoteDigest":{"Case":"Some","Fields":["E1EA245851802B749446AAE4B7DA0666538DE206"]}},{"NickName":{"Case":"Some","Fields":["dannenberg"]},"Identity":{"Case":"Some","Fields":["0232AF901C31A04EE9848595AF9BB7620D4C5B2E"]},"Address":{"Case":"Some","Fields":["dannenberg.torauth.de"]},"IP":{"Case":"Some","Fields":["193.23.244.244"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Andreas Lehner"]},"VoteDigest":{"Case":"Some","Fields":["342B422BA3BC35F5D34F24D3095DE4443665DB9F"]}}],"Signatures":[{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97"]},"Digest":{"Case":"Some","Fields":["21FB228258F9A729F88E86D83AB77F88C272C75D"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----VxpW/fSnPk7m5/f5Lo7dZcLXVvmqtBcOpI5ygW5dQjVpl1ebseUXWlutvn8+hRAfp8GCMRLdce5oF7gHu7Zg/SAQ5cPFsL5r9wZfEGdTRf8+woMfPG877YnOlAnFhGa97USSpE1d40kzBawVAGEmtPMWBM7Kze8fqfJ0XH3RE5cuk2Mho5ukOA+L+w3LTdoEcYA509uMxbsaGj1/j43+WxCEQpCXf8Uo9tMIErlvGY49yay3TYADe8vqA3Jd/IMg2yQ7b3+hIg5HmqUVbEuME4IBa4MxDcHQy6pRSuxJRj2gOwCD/cCHDxMGJSVbmBbaZVrqmpnplr7zhMvMqRew0A==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["ED03BB616EB2F60BEC80151114BB25CEF515B226"]},"Digest":{"Case":"Some","Fields":["B0794B84C7868261D06C3A9FE683D3C9FE804065"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----pmiMx7HPeO3KtXfIMbj6/BYfVvSw7FqvCNf7XEmDn/XYN3liDiVo2B0hk1uR85N2wXSpZ56ztFwcpUSvCNUS2w4ARe+5foCGyfEZjbIqboH6U6mMx+yDpHfQaXLENHNBUn0CrxWMOEfUUQRTjwfDUQ77h2nKdYttbJO6yC7V6iShbVdyp/djyxFHD3vGbsibTy9nU+HYoqVuNb08SJV20lqCEY899AhJJESxDT7CHBGksS1nn6hOl7XN+G7taBnLPL02HNxAyvf9U+bHpVRnRu7MFy8ZFZLAWAW0506OiVUDYhvu8BSXyGpIwMwUyCoJIDFjGGlP4rsjw7uRZJBxKA==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58"]},"Digest":{"Case":"Some","Fields":["0B5340CE4134B252118CFBECC491F98F107798C4"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----E3cKVBDmeqq2JevIC4ZKOUeoePZ84Wsl8yt6uZT/HFND39wLgIyzRJjp10C73WvcYnVaBSlPsl0NzBbO9tDxqJ0QS2xrsGNiex0p14/edBwNbL9vdMHUUCSYvEz8E/to5wxdDRnY3VRxTG/rVf5bh+k7HcOHgD/HxSixUsfHk7Hu6UE7CmoeB1hmYZzqL8qdPmMe3EmJNJBFgMzCt0wZ9H4UjVLcjZOhclahdWjzdEb72z8FVJ2zhHRjZUp7SryCH/GKfmnG6LFrJuVSeiDaELJmI01u1dW+rKxYZy4F/xRjoXicFTXd2M1dcFeojFu5JVQe4X0vj8VOpHGGzITGMA==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["D586D18309DED4CD6D57C18FDB97EFA96D330566"]},"Digest":{"Case":"Some","Fields":["8EF5B21B3F94DA1E6F2EB09A7ED05AA68ACC0E19"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----h4IyRQAXckPfb1Ye3bWfvw57A3nbX/SUP2Q0A4dksE9d1fMqrSokVHqcjeMmpI5PoCe1NVTpJSy319Jc8KfNuw/k5wx6e1OtPB/ERgDwj41qI+40vb0sg5Uv4CWjruwkaCIrBlNMoncK+2tnqlYvs76v4PtMtDOkwfXG2lj6zEFmjTSc9nCtQoh2TTdvXD3cxXL6994kx9jbhVh+VlmSDUxL39fNwMlwVY+HSIpPuxuTyhcSS6JIWH17Sk/w5ZR1E4xNCYSPuK+HUQcQT9Sqdgkl3pglkzOtUTv1zjQom9ssBP6BEU+ggHh8rlbn9mll1CnGpYRQ7QAlcj0sjwgjNw==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["49015F787433103580E3B66A1707A00E60F2D15B"]},"Digest":{"Case":"Some","Fields":["DB47FB5A2A042523A663A9FD328AF67EA955F2EB"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----B+q7GxoMvEy5l25s3vRQw1tUseRTU8VQTxrihUOYy+dbtStvJ88YqqhJAYlRkNuF3CASJIag2jfzhuM84f/V9ELckhBSHeUG+qIx+nEqCV5OuAtKn7WKzMpDI23PzOkcTyI3wpIyV0Gj4WKXTrIs10ljyrz4l7rMWX3g1GVwcsua6OaJRV/CY3wl4oAtQqLyxONauOyhQ303SK5qrKWBJmDxbJmohRwys63nyVSH/qc6igiWqKXLDwLjB3Zv2gc8UDR9Q2DpZ3MTmvvbhmAVfNnDz8Nk/91O5kchffNgJv9mRroAmQ5dNVAw5bnJgQlBIQt45oNucN6QXjYkszQ4YA==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["27102BC123E7AF1D4741AE047E160C91ADC76B21"]},"Digest":{"Case":"Some","Fields":["6BBBFADD5D17017136EEA85AE030E4B2730E6FA7"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----OjjEkmSsoyo8qiT2WmCJ2QRox3o8CUcWEb4Gmplbo8naxnujCtSSt3Gt3EiAfhWVYrFgKdF4/ArxyIMwJdK7ovr/mNcaTkC502rWd+pN/E/qc4URO977UHDiFNsJ2QGLegz9EJmSZhwqR1D9CzxHvzVkEYqxcVNLf+MnWBPiCQ8YQIgtt0hacWUa5RPSYzhVQ+04VPWI/HHoaslTLGNHoXOeOPBp13Pp/22G4pJIWqSYS4NsIvjz/wktvVX+a5zFyOizqWX8NL+/vu+wTdBrqw6lD5JmiS8wQd1J8uOsq2gPMjgI8T0MhYaa877I5hfeFWjnDOl+fV46F/Zhj1OuRg==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["23D15D965BC35114467363C165C4F724B64B4F66"]},"Digest":{"Case":"Some","Fields":["62EA5595951196DACDCE605C53DF6FE025641864"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----GpNn/5S+IWuDdvMmcvJfpKy/O+VHYfkXnVlgI8waCbShHDLF5AO7be93e8rbfKmvOVW9IkhSm8AUttJOUAfE2Cu3grQt10xVhujiwhwsl2VR8AByTb8af6jXLqL4eYP6HLOBZGSy33OnWxV2nv9BgkDqc9gqgXOgTizjSLlAl6eGx4JLq7X36pd2O2yZw+/MTVrPzHnSuYLyFteVSVz08/4xEzHj7DWn1z8BeWdZKXwGxiTilPQIaw/w0LTBBEjIaBjhXBxHjOI7KUvX5M5mLyyqJaZfgNSo8QcrVMIi9QMYygMBVOzg308eBm+wEtTf/TW20YKBQOFA2VXIk2pGCw==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4"]},"Digest":{"Case":"Some","Fields":["4A69B937C66923151A7B98F091135E5E7529F375"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----FZCPiK8Khh6EntevQ7+zKbdb/q4dutYMfesbI1WgSEmTkSJydFX5OJkx4uDDYVqAXSyXoFRdqGRsNqs2bi1G8g4YyIfXl47Lgj2bkoclJhMxesItg32Q2Cd1aok/rYAZrPcspmwZf0HyGqLOpp/SqFrf62Nsx3hrRdC3qh9qSsIg2eLNT0ESW3VtNg2ijdnhEjqLXwGxIHpHgaaQ0/qMznnE7sEhzydTYhfRrAxqayXI8IBJg3G5YwRtbrPSo/Xt8YmUhQgyQ4cZIOA9OlLSz7uNHOcAH7A8B+CI/nUuo31nPUXLNNQG28swMLnu07MF7/msPUleMjPprM2ILSdgNdkhoSQzklR9FZsUDTg1ewe5cNtaFhENgITvsd/6pRbFeSdNGhtdOquFNuJ+bDCUVKFWAtmZE+wSGlk0oZsoKG3dDu7AfsCJpdZbtSwNryRftLxvY17HKqS7MAUKVSPOy2l3QKJuczeywMIbbFpuwT8ByOLsyNF5R7ltRirE+rDO-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["0232AF901C31A04EE9848595AF9BB7620D4C5B2E"]},"Digest":{"Case":"Some","Fields":["8762993F29E1DF05ABCE3AB0CC15D3ABAE6448BE"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----IrHgB3ibljXpN2cwDswLSTGZ/oHfnAN2Wmetse6V+JIV3imitqxxGGEHJ2uLDE1EVI2dY/brBZopyWwlhFPRXHwDZNti+NdRIfA1xVGiadLS1YbUoEcxmKl6CMEqYDHufhHO/IOlfdIYaxCjFG3TKYEHrzIQMAv+1rsh4iPiibp3AD8ikxAKqDmZUaAjuAkOObm5cqMHWeAZsOZnyaR76sCqLBOkh+UmIdJXZj1ecOu8dg/HDYGVkH0Po/BuShzDYeqmdObd+Ez0VlhmnfCgOXWMITqcoxylqDJga02KTbtZ+c7onh3wb+6tjOICR5jGF07ux5T4YVMXEhOVseVKcQ==-----END SIGNATURE-----"]}}]} \ No newline at end of file diff --git a/NOnion/Directory/NetworkStatusDocument.fs b/NOnion/Directory/NetworkStatusDocument.fs index 0d1b2408..ca18cd5f 100644 --- a/NOnion/Directory/NetworkStatusDocument.fs +++ b/NOnion/Directory/NetworkStatusDocument.fs @@ -1,7 +1,6 @@ namespace NOnion.Directory open System -open System.Text open NOnion open NOnion.Utility @@ -216,6 +215,7 @@ type RouterStatusEntry = type DirectorySignature = { + Algorithm: Option Identity: Option Digest: Option Signature: Option @@ -223,7 +223,8 @@ type DirectorySignature = static member Empty = { - DirectorySignature.Identity = None + DirectorySignature.Algorithm = None + Identity = None Digest = None Signature = None } @@ -252,12 +253,24 @@ type DirectorySignature = | "directory-signature" when state.Identity = None -> lines.Dequeue() |> ignore - innerParse - { state with - DirectorySignature.Identity = readWord() |> Some - Digest = readWord() |> Some - Signature = readBlock String.Empty |> Some - } + let algs = [ "sha1"; "sha256" ] + let maybeAlg = readWord() + + if Seq.contains maybeAlg algs then + innerParse + { state with + DirectorySignature.Algorithm = maybeAlg |> Some + Identity = readWord() |> Some + Digest = readWord() |> Some + Signature = readBlock String.Empty |> Some + } + else + innerParse + { state with + DirectorySignature.Identity = readWord() |> Some + Digest = readWord() |> Some + Signature = readBlock String.Empty |> Some + } | "directory-signature" when state.Identity <> None -> state | _ -> state From b0edcfca2ea62de06e7062408bc0425dfe7c105a Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Wed, 12 Apr 2023 21:05:36 +0330 Subject: [PATCH 6/9] Directory,Tests: validate consensus data Making sure consensus data is signed by majority of trusted authorities is probably the most important security check in TOR which was missing from NOnion, this commit fixes that. This commit also fixes an issue with parsing directory signatures, adds digest calculation to NetworkStatus and changes networkstatus.json to use Indented formating to help with manual validatation. --- .../Directory-Samples/KeyCertificate.json | 767 + .../Directory-Samples/KeyCertificate.txt | 662 + .../Directory-Samples/NetworkStatus.json | 488541 ++++++++++++++- NOnion.Tests/DirectoryParsers.cs | 16 +- NOnion.Tests/NOnion.Tests.csproj | 6 + NOnion.Tests/TorDirectoryTests.cs | 17 +- NOnion/Crypto/DirectoryCipher.fs | 20 + NOnion/Directory/KeyCertificatesDocument.fs | 215 + NOnion/Directory/NetworkStatusDocument.fs | 40 +- NOnion/Directory/TorDirectory.fs | 136 +- NOnion/NOnion.fsproj | 6 + NOnion/Utility/FSharpUtil.fs | 5 + NOnion/Utility/PemUtility.fs | 30 + NOnion/auth_dirs.inc | 31 + 14 files changed, 490480 insertions(+), 12 deletions(-) create mode 100644 NOnion.Tests/Directory-Samples/KeyCertificate.json create mode 100644 NOnion.Tests/Directory-Samples/KeyCertificate.txt create mode 100644 NOnion/Crypto/DirectoryCipher.fs create mode 100644 NOnion/Directory/KeyCertificatesDocument.fs create mode 100644 NOnion/Utility/PemUtility.fs create mode 100644 NOnion/auth_dirs.inc diff --git a/NOnion.Tests/Directory-Samples/KeyCertificate.json b/NOnion.Tests/Directory-Samples/KeyCertificate.json new file mode 100644 index 00000000..7cd4a36c --- /dev/null +++ b/NOnion.Tests/Directory-Samples/KeyCertificate.json @@ -0,0 +1,767 @@ +[ + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "49015F787433103580E3B66A1707A00E60F2D15B" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAxVbS0noZKz1Ei6858RGyyuQgwQUKG4Urrp2BiAzkYxwX+6fURlut\nAjeLb4XysqCdNdUipuLRQ2QIy1C220QiCHV6jZAsM4tmEq6TpK6q1lxi5YPKqbGS\nCfUQFT1nO4s4DCYSLCwiRNy6bMe8tNHc0MpXP3loCbPkYCoXrEL6vYIROw3oeGWE\nKbFPQrzYJAPHgUubBibsY5lkUY9N/5QZw2y1bn+dq9mFOoCIHLd6DkQmySmftnMe\nQrpYA2WvE4M5yN2HB8QGT7TdzXPPL6889rFw/mjqYExQPX7cqmILkchsB7I5whjA\nu0oodF8Y9ooK9QT0GeK4h3xQhzNG17anuUxbZ7sxzmBwBNmkNyLWEeIntazyjRFr\nP2mDY/9YK2JOQKkh3tKl1whcCG9ZtAhKmm/ijG7OrhqtusdGKBXIgALf4f111AK1\ngNcacDx2fJzRHuNK8zkIORAzStxKdLbAbBNeLENk1zBjSkrxCOJH4mBpr8TXULq1\nThLI/8OzZq4LAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2023-04-05 17:47:59" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-07-05 17:47:59" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEAvv0TXkvzn4wlk6zF5qvalq3Qt0s3Uj4N6AqDRiX4ouPR3u64ZKvO\nV0po5LKo1NiqFsHQW5U64SVYpG6z6QkG0dzCXGyOrm0FVlTA4OE2UErBkjzwRpMZ\nwCyTRunJ1wfPNsptuV6zqVWijDwY5BNyHONJFcghHQS7zcvRKDzAMVlB5a/hv2Za\n8Qzak1CdQvqec+Zi6II7OKuGhm8S2IAi5NVTrFgA7H8JmP6Md1ObmUBstoTzuFHi\nqUNGmXYGhDnRYO9AhRIA3WOq8BYw45uAV6eXbnW6wqpf2IOVaKoPFkV6nWyE8HW+\n7fYT/9hrclPvKj9hJb0MGgbZ/a9cYxuTcwIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nKnIxJUWxDkEGPhUQfDw7rbln6noHLeOrirQ//QrTKWb4vXIixy28RVieCl8wp8Ww\nbxBugbfp3DJAWBkONFkqXgWkhSV/FI9OGdchZHgb7tJegdu8667RoaZC4uEOoZ8R\nVQDLt8xjs3cj04VwV+s1biVTpUXRaaUbgKfYUpKbeD7Cc+Eo1Vh/QT+WaaDlWKvm\nVdbLycF11zq21Ud2bHZ0I9kuPaI3w8K7KRIjrBI+AYLFwQrLMwLOkQhZf88ZMLnG\nM0/g14uVpixvSDaYkSddnAq/wWg6ISlbYtFDqKfyfoiMjQ+ejd4oHwx6CDVbEU+z\nrxEsJ0aTsSmEFomL113M6Q==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nVd3HuW47Fd7TUhJhSy4AiDvqWACiTkzEXEHDw1p0MqR8ZKh4yS56ykk4ZecZ+Mq/\njmgMK2y79smy0jNMAKQCONUVQhZ8qoXQaQqI0DCV3NogujhyPeGSOD3ARHbh6LVW\nfYrRvKxqEtckTlBC+hoygE7R5MehK9XclHeCO+p2e4jy207yJMZqJ3JDZy5YXTgI\nJfC0ldMLmFovUZZyFHN7xgJThAgD6Un3xdRmwHZZYLlQvwEsVXOzMnQUPtrhqoZZ\naiUQ2/13t8//QfMqQyD/dIOWB7TPDEQvgOXK/ioQBiZ3znI6lLOTBzCvqxVmpJ69\nnzAJ8vktK/chgntAelh+aQhlgGrqM+jO1gB0w+Y1Z+BdOHa2H7YK26WZDtE84/Tk\nva4+G/rIvJ76FGPA9T06L6p08W9gk3uXHtKwriTVhkQjkRKcFTQrlez9kv2XlTgu\nRXibEQLzINVX+oo3mmA9M6EcLnBW2Eip2vec8DFrQxHxG5jAJl45f2tKrnYQbiPz\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "81349FC1F2DBA2C2C11B45CB9706637D480AB913" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEA0TuNVBVxd/eXb+7550cNjredjedQfnPdEpHslXWJywLkWSrVcWx5\nim9jKzdjzE7GIdh51NO7P+1TS4TdFfXjoxZfLErTsmnoNGNOyobPLPXFSHUK1f/9\nwr8OyuzMc7a33fRfpB7EisEyyVvbtMkjlnc10wv6hLpglHLMdv5hHi0sBqRLevmu\nH/caGhKR2cDq3YG5dgwO2FK/MnARIpTnyzsmcthygabyBve2bEo3CRWB3D+1dH0i\n/YzRl8JOOUGOsvJTjASHNJjJSn3M5O8VuFsacCGiJhPCxr5vgDpCJqqZ7brBNZOo\nRg6safxj10CT7eyUDEtjm2EsBClNDT+YdFe0/dKmOMn6r8W7kZMdV4unzGwV4y8/\nCWLcsrapIdtSthOsHYY9SLfg9lA5Lpcnxsc3dCHUot2LBLKJHvKLe0+TlJYvF22J\nxeWIl0qMyz+PjWITPKc3VVZKUPGQ9gycPcpAOgG9fMil2/3d7nn3TjRiEx/WwC7a\nexZ+UFy5zpJtAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2010-05-03 20:14:22" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2012-05-03 20:14:22" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIGJAoGBAKfVqb51el1QpSTdwdr6i3Zde8PmLn3SB+NygFXeeFXVRapmKrhm9B6R\n/1rTog0Td701wDkYKPBQLmbsEJtiv70v6kOWf4k4Zs3gwGklKWeGZ+gNjj5jEXNA\nm38FJ7Iug2KjbMb7qE4wzPvUqvmxQbFxqEXPfIzSdVixISDqgmohAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nATWrJMzj9iuKpiyZV9bXFPYa+lRnm0iR2foeOnaWVffM3od+TUy44XXnJM30rzkD\nkoivRiyimRmwy5CrJ4kseQuWuSlcQhYQTMZsWWX6HXT5qthMWIgIKOdXn+pB5NPN\ngIk8dMkxyP0i6P1/emuR3NUlXR8IuypFCcOURj/3/NA=\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nh6XRRocHvK6YkIhSvnNKF7BowgbK6NIRvP+yn5q0iCAozYH5O/glcluuoMC1KlzZ\nMs35TkSZHgcKicPtlpY6uQ1UPTZrflKwSJUUDpmY0Uea3HTRzUdKZHEu6xccwNos\nRE4Rd/Meu4gQEKPH6qCPAPfaC/omrW8JXvWNrDxSujYO+YspIIMWTPCwadoV9fRG\nG1t8O3DXRfBoEDXRxqjWyshFMOd2x/BWr6hgaymnm9ErV/TRodyQXdcLH2+Oiaio\nD9WHvVduW57J8h3CJ7Zdgw/BboYQQKQTs9XKD303MbsWrIKu5H8yZmvI7+/7YvwT\nXkj6b/3aqQ6UrnAFY/efOOKIKVDH1okEyUPnhwvlundd4EpNHtCxwQGd2BvlMU5w\nm7zJoYNgVbfMkz+lwuWhdPVGRGcZMtQk0+ehu1Pe0dXA/kbwkdnchXycw/AiDhsn\n9DFNwZ6F0JW4WNb5KIAdvijvtEz/5YlyvGOIhBJ/wHGCfBXAMArlZ+/NsMC0mDUM\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEA7cZXvDRxfjDYtr9/9UsQ852+6cmHMr8VVh8GkLwbq3RzqjkULwQ2\nR9mFvG4FnqMcMKXi62rYYA3fZL1afhT804cpvyp/D3dPM8QxW88fafFAgIFP4LiD\n0JYjnF8cva5qZ0nzlWnMXLb32IXSvsGSE2FRyAV0YN9a6k967LSgCfUnZ+IKMezW\n1vhL9YK4QIfsDowgtVsavg63GzGmA7JvZmn77+/J5wKz11vGr7Wttf8XABbH2taX\nO9j/KGBOX2OKhoF3mXfZSmUO2dV9NMwtkJ7zD///Ny6sfApWV6kVP4O9TdG3bAsl\n+fHCoCKgF/jAAWzh6VckQTOPzQZaH5aMWfXrDlzFWg17MjonI+bBTD2Ex2pHczzJ\nbN7coDMRH2SuOXv8wFf27KdUxZ/GcrXSRGzlRLygxqlripUanjVGN2JvrVQVr0kz\npjNjiZl2z8ZyZ5d4zQuBi074JPGgx62xAstP37v1mPw14sIWfLgY16ewYuS5bCxV\nlyS28jsPht9VAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2022-12-01 00:00:00" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-07-01 00:00:00" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAxllu7lBzsK4ZRHsEjJ/y94AF/hWXDl9mrPdbajmGAI39nrq+cR/g\noRGPbckQVlARikHgvpbd0KqOYcLf6UfmcKt3PiIPi/3dsNO5PlHlfaCAU+tJOJ1T\nMaegoo1EB7CjV2RDgMxg2YrBvpACgKTDVMPB4VJ+DIf3xJr/WGvFDpx0FmC/6lUO\ndUrFkPUD1o/YZnZ9hxZjIqiVVNapJsEgJdQFI3L6kvSdVnGO7IUaIWdS9CWin78i\n8p3Gb1LNq7eKUawFS+x3wAPfaubcbkr2MEcbJtpvJ60PmXkC1g0wvyevUSS4W19i\n37XhMHgJpCJkOb1GWPisKyTWxxZdx4NaRs7upjUz9+3NyuJbDGRb3x93nGAka5we\nUNoPupvjdEZVWsQ6iOvT7CJQJXA/NghG6XtSbr+j3nDI/vQ/osaLupTZ28pTdzuM\nyq8w1zTW9/3wVX535RTTeITJQf9vzAPlh2Ckeqc1WL446BgOX8dhbv0rROqopYAm\n/5dCR3qcpr9VAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nTIquEV7KjeODaQpKP1yb8Xe9k+0iAVDxAQvHc5A/K8FN1SENKoSpZLojuPSP86s0\nMephRU0EnX0iksyg3rJyyRpdnDe5E59qQzmaVeBdvdPZGQuIo5jB7ZoSlA+MwuAK\nbdxKvUiGZIj0him7FSMbIP3WS5uUr1mTmL0iN5TzuMV031YOUnZXP8VUpSkgZh2/\n+awwhZXBNWWrPKHinKoQr6GVGhy6wNz18Y+5upLi4WKsK1DhUwMxA6AI8AcJuDtq\n4jSOCv1ADT3Io+aakpKDbBdpHRcKyuA/MhuVE1Uj2ESw+8LPpwWHBz5LF/Mp7ZWz\n38G3JSK0EUVFp4Xu/tBXrhF3qrGIRwUOzBFVf50v30o0lX0NS2Uqtvxgh+zu7b8X\ncqDX91HXZZpX7SAZtAIhDA6OAFMpnzuYF39K/YWWpSJOh0jfFPNi05gZIM1vvMRG\npl6eiB44URtNXrdk31yzyWHUr52UPcZG0lpSqtv8Y9yHhBtq4qRArovwU2Mlhxts\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\ntaqyC7fvSTO2WVf1z9BU5RLFYhmShbN9qXpXQODPsjhE0X5p7S4MB/6hnIWsCuih\npBiy50MIyKBfPdYJ7sPXxoISBNuhAOxg/rtIraP05mhZM0had5zNMKJekxdj+eze\ntcsIocxjbXInOOlReA0kVqSgIZ9jSAHvgkk3lbvJGIp85euSCppXt+cxHiALPM07\nLan4XgiGXqIdsaIoH4Z83X4Fcsu6Y93RRU3yq0f/rV24otLxoMI0W+wu9zf4RCss\nI4qx/V15BX5yMbXtzHUfbRkYrf3/WwbDryV+uWSRkVe7jHPO6r0EZuOxgrhySq39\n8N2rRej7acKWo+A65ZNXjEwM05yn4CVocb3HbIbTIIJXh9F27AK83y5edsGbX7D5\n0U5GA/S+rGe07kk565Fn4MCxOLmadUtZWt5iQh9xOOcHEd1X3Cx91+e6XKPagk0U\nxIh4UOU7o/6fajlawzHisz7NQoDSAg8m2wnq1INRiKUKjjIG53FX2p0imaE5k7y/\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "27B6B5996C426270A5C95488AA5BCEB6BCC86956" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEA6uSmsoxj2MiJ3qyZq0qYXlRoG8o82SNqg+22m+t1c7MlQOZWPJYn\nXeMcBCt8xrTeIt2ZI+Q/Kt2QJSeD9WZRevTKk/kn5Tg2+xXPogalUU47y5tUohGz\n+Q8+CxtRSXpDxBHL2P8rLHvGrI69wbNHGoQkce/7gJy9vw5Ie2qzbyXk1NG6V8Fb\npr6A885vHo6TbhUnolz2Wqt/kN+UorjLkN2H3fV+iGcQFv42SyHYGDLa0WwL3PJJ\nr/veu36S3VaHBrfhutfioi+d3d4Ya0bKwiWi5Lm2CHuuRTgMpHLU9vlci8Hunuxq\nHsULe2oMsr4VEic7sW5SPC5Obpx6hStHdNv1GxoSEm3/vIuPM8pINpU5ZYAyH9yO\nEf22ZHeiVMMKmpV9TtFyiFqvlI6GpQn3mNbsQqF1y3XCA3Q4vlRAkpgJVUSvTxFP\n2bNDobOyVCpCM/rwxU1+RCNY5MFJ/+oktUY+0ydvTen3gFdZdgNqCYjKPLfBNm9m\nRGL7jZunMUNvAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2014-07-09 16:01:34" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2014-10-09 16:01:34" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIGJAoGBAJ9GfBr9CPy9vH7nmY5Q+JMOBjsSptV3lmAc3LbsE2vjIoXwVUO+9JZI\nj1lxW3K7PGkc3pu5VBdXKA4mClgMA7MBnP2I/2mO/Jsk/owxbYgTsnJsfmbUSSfc\n7YA2HkuJ64vpvbFJEvgvWKLNNxcMEwbhEA+BWxdVHPVVDNqcM3UTAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\ncWy1kFl8KMuKErUUMONTuPEjQHJFDJUesw1bIgaKay5CRSjWJ2Sle/wkh11Q7XBB\ndYihklKjsvNbkuSNUOaWfexy9GBif8VRWPjE7E3608GWheN8qDd+4sQylnRiKngG\nSn62WYUTUaU+W+sLyFYo3cI4EGsjzKK8bU4Tm5nNVTE=\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nZ/IDiIyGgAaR9jjJ8kRZ8X+FMKEEIaSWFU6glARQnUdWJ/e3pdEF6zKrsYf8ruGi\nYvSDrzXBH6JgKN+JEmH6vrWSaKVSE9wk70giNN1GefyP3HDjIpF3fH+id9TDGr0b\n9Im3+H7tBO5MjL3g1OTQUEbm1kbwNE/mYNNogVVaM/F6BnbgwrrS/HnidCIWsEyS\nUR8HJOYSkrRRtzhbmC+EGuHPa1RZvyNunjeyt8jB3YGGlC+h0WPO/IgLmqU4ZDVH\noW3Bes2eBk2MW4z7dGmtZVXOz4mL+f3ISM4eMiP1XsRUFvn8/POukRso8LiWkGlR\nUGgYsy0POZcMIIHUkzqV+ypoVznRyILLf50gGI5DgmRUuBHOPjG3We7aYfiAB81c\nQenb9JtvXykx9iSFZ3om5QyUBvNA2MdYQBtPExCIG/VZwnTOXIeT26PRChadUy2F\npNtUhGQ8hcmaCR5sLWrmFr+t6KDsshzjCYMG5pYNj1AihEQiY729PHyxM70eFQQG\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAwBmqdD+G0q3smN5OBFHCcK5pQH5G1GIpFJ1JxCVEp92tTK4ZHnot\n9RzMfag6zQFqwLaJ+yEb1DOjTdTMfcUTsj5f3GUqPB+U7shSMAvvAAM+Bx/4m1AU\nu6sk4XmPB1bCBfcRl4zhnY6XFIbj0ktuBDblcxHz3lDgHFpBoci9sF59mM14MZ09\nEdwgeckcU5oeq6ApuSlUVaOT8xsKV/yeK4SKaFfDclwPAJuitQ5CpqctP7ExmlrY\nsboTDtz7/Xa6OccaGDEUf7TRlipvUX6rvlmvHm3qjdixVfExpa8E5QG79GZTL82p\n1zBd3iqc6QEnRDTiW9cMUeQt4EvrwOUVVYPWo3hp1C/iiNzWraDays2xuhaSB0gj\nfPatu2CFW5XB2vd9IvIiWeklSFqnF8DL38jDL7DbFiETJreGsDMR03yHWVd0MbPz\nOrvAxG4tJn+JtnwhzlbRjnfk53jOTbiM0vMV8h/ztapCiJeT/6i7nVQ1xL2boeYw\n5RDUlwZaQiaXAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2022-02-08 17:14:26" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-02-08 17:14:26" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEApIIcKBWvD0P2YQtsrFKEF1kprJUCEUlWqzV4mVbTcVdzVQpct8t8\nNAO8kDbxRSyU2S6gKecusy4H1MJWVAe2qvKIY974espuJwBXWFgT70jSBTFzjMpB\ndAaTTY+kNZa66kjBjCVolr8UfFvL7HaL3CCtWD9ds7+ep76co1h3s3sD2BWW/M5m\nV6ML8kYkjRW6SW8YHW6By3G+UuqRiGziJIIwQAoPnNSWrzW6UTLpVRDjdo70bQvU\nvvfppUuNNji5SFfzSiakxHIse/eHG/rTNSzOvlpjuZxzPIcekr71eu1hCVHb2QdA\n9Ikc5pUQeB0zImI8WJ9OVJDFUEgjJ9LGtQIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\ncy+VPbSGSJ5aI7egCwgNY6mgSlJumULFmUN8gfahvMo5hUwVLqP1FtoKIO8yBUc0\nY47pt6G5a0fjm6mjapFbU7IpqIUl+5gLBRKD6ugx+hr2IoqIVJY7WQUvVMBnfqHp\nZ5N6kXfFBT+EbnbLiUqoRo1/AHC6E6CqI5pdhV86UCFydmuLf/MfwJpXiYRJueqk\nDnPYEflq+Zu/RReL5aJlVOVuWq0ZpuzUHk4gIicKESLGkv4eI2CvuB5HTeNAB9L5\nlaMe+YpoXqgqMae1HT+rupPXYeONPygFXXbNLNVrR7OjAYG2TOaqdUTQkFefFVtD\nungKyPS6LTytSuU/rjWCbQ==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nj1sr6ko2udr+H04YowNoCHoCNLMWuliFgofiNRAEdl801hizMdQOppvJfQVsndF3\n8GBHlZtXPDqoIhWsUzmNtGA4nwYvhR97h+5KQ4WV8TK7jihnc+P46z7UxNP8viqI\nAFU7gMI6kz0LGRJ+f+04fVCS2+6lQxD5flkTnwKgKQtPPKZuj2POq5XAedRI6Fr9\ndAO98a7pLArha3ZeZPZtmcZ2pzDG4WYiK2W7LxmCfACzb8akXGbaxXw61sC/lXBt\nf4RjsjUJ+DF7Oqw+JHKA1IKK0MHccRKGaiPCeUvIE/iRjwSjSCGSx1sze3urK8eA\nlCp/zfnBOojY+2VEPtkZbvROdHIDHy8L/u0I9uTiEeHQILtjw5D43RfiqF9ajHna\nXkdAsMlSEa2Iph2XAnyyxlZ0VNTDhJr7Bvs8nnioomfG9sV6qNUVqRFFlpJcTdaz\n7Q7nrE6PDd0bsgqYQwqbRRdzrmhts66EUE/5vE9lNbOa6UpmSjdOmZ8lG5AUZkoL\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAu/DOrbv/4IAYvyxsy/6ivC3q5yCQBWLKHZGYKQa5G/3rem8wen0f\nqF7y4ye6U6faWc5kcNMHEKMIeBzMErxwF345qoGHITxbbOWnizgwPgrdCwlK3p0H\n1XZGU/TTjoaM25P+ZNCBvGmDQRAtgs2odnv+i8hpu6vrcAUZYXmmw/Ag1Ou2AlLC\nmPpbjV1O5SMylgC4IuCBPr3iA+M1kKkvj4LmwU6pJxjAae76GLzzQ/Ffvi7rRpvU\n2BHetjehk+7/t8izgbhT4VABtzKgrv9ATnhfEgPeT/WBq0E75iciBBAXRPF5kEA4\nk++NPy21XpL7jkQ4wnMs2HyiFhHbUwbLcoyQ/JVq/WBboSwStYbkdizRpkhJ1eNg\nLiD8CPWcZnhWZi9VWrwT0xl+Mu4v6kwo9kVnXhOfcK8Wni9FqiBu2tmNDoGPG1Ac\nwptYQSIoujuLgn4MARREwo9cWrKp2w+D7Dt4U7U5OrXL7TXjonEKuEHwRhzz1JA8\n7LXm/wENwn1/AgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2021-11-09 19:16:37" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-05-09 19:16:37" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEAuxJxHCGOw9DgNtw4wqi78OE3djdiLwbie+2CevKMRaO14IhuQGVK\nw1PYsnTuVLVcJl3Y4QKQ4nnbe1QCiGrLq9wueQy7ZvBeZry3f+QD1Q/PAG19n6/7\nhlhXclSOJ/jRah0Gi+QXAycKE5RES/Qn4F5fNE7MxzM0ZQHIlszZLNUrcpeLE9nX\navlqlSqK8FmLPOpOSRrdPtzKP2sjW9UUFVGMfurDYIC51hkZI/nyy8A1C844sfuF\nLV6oYpYw5+soA122zBqGqP6vApwFCvWSDcGlx8xj1Irdo+JIDfK8vklu9P11rTWB\nR7dZw9pD21reD0pf0Bipzneho6iiL++w+QIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\naMzjdOHri8Kmdoy0qt1a33Y9/e5vKkJQkzCKdHN34Il5FMMCkOrJ1yeQgZyp6mU4\njPSpUZlr1Iq52x5ers4fH4SybvX16BDq+p6+Zel9f5TpFg1vzdpJH1WOJ3ZoES1N\nS8CpiXVz8flc5Ez6Dc7uZGSE2fYRl1Pswn3GuLfR1Wjw0VNp1VgHZk6xYXRk/YLx\nOyjZTWEWAF/0qw3usXtvTvh6wGniVxr0rg3zZbesLXti4TAn3B3N6VG1TPOizna6\ns26edpQ6RQPigAuccEwU5iaIQEGkIxcoe61qnPvAoWP3Jk/sZAGCqhbya0CBCH8U\npEW/OauwlDlr3yXEKh05aQ==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nXhAoF04YrM2zJUvrQuEsGhU53Pbf1B0jv5F4YkMlRX2y15rKXKI93vQTM1LbnYc0\nETkhSOQB2rpnX0bcE+K+x0sWXiMRtR1HSX/oIPDI9MNqHv75eZlEkSaDJHIsQJlj\nDd++tMHkRc49nNNo2J25J3TiBU0ecpVYYvtJzynE3W8tX3io6EmvTehkj2o79z0A\nax2A5JG65plch0ES2yK2jqgBEmkA/eZENDNQAaERXMFJbbpHIMBaGguwCEieJe77\nJBAOxJFRGpL6MhMpcvi5MgEMqfAv3AhlBo93n4apT2CYR8PdCHUZyq7FrgwTSJS7\nndl3YmvxJ7wnyTXitw0GcSVeQaYMQV+LR9Z1VkmjIwRuHliUn7hR79pYqs3t11aQ\nmuW8jOrx+5QsiTLEPV6Hs0pzXc9XDw7mnJ6M2gxxF8fZCztal3TNLs9+1O22fxME\n0VU1oS7SG6T4M1YOXgKFUP20gLl8sZf+3lGp3aLZIK8psR3vzggpaRSUKgip4Lqv\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "585769C78764D58426B8B52B6651A5A71137189A" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEA3WQNtrUSQyVdjYjl2LT11rYDDZ7gEDqiObSakbRKQjLtKsHqDn1E\nvv9QbujUQfsq4rwLPCor9qAOsIuNlOcVSHKPD1BZ2F4G0B0NlTWsKyR0Tk8sikcq\nwpQMtRO/w/S6zmVRpcAugEKfeolLDgIt35H1vwLUsf8FV+yot3RaD4/Mfz7Cmo+C\nSXQfF1L0dJvgYWqDRe9oJEI041ElvMet5O17lejDWPxtLH3AHOqy33c/AQhFaCsb\n12OKr9pkn0DrOGjkYBxGH1irN11xX9SmuxDePt28+GQx3+qvTG2phhdlmOHgSTYL\nvJ9Ga/ALpciaSWcLpleopkM9eHFiGqGFbEnpBfA9/6G2kaYpwCxKCOsCtPoN/+aL\nRarpFyLycXxSVuhm6kvMpQH7rDzOmwvghC5etJXBTsTFYssE7ethRlcUE7J8UGx2\nUKRrafTFWk5sSK3ZBclSfBJjxakHgh1wveYX4QWtqlJevw1TEtt4YJA1YD7wuu5P\n4Vzmj+0RYoWRAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2015-04-13 11:13:06" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2016-04-13 11:13:06" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEA2QYhb5j4FhadlNCtAKaKecZCbJhBoOtr6hAWIBNAT9QYVAU/si05\n6qD9PXcZ2TyvAbyS3fzVIHX2pcj0KTjFktHn9KOM31CqSgpZ4cC2tI+qqliUfm1a\nl9Sq+R6ZS4Xn4at+b/+YxGVFUbIZ0vDbyT7RX/PPy5sy3vpcdjzXf8BjzlOvxWVN\nOpR/cIKUb4hXdVZ4tdfnDBLM+L644Hqi7U7NIlQsXJjpNaxnrkZPh77xJCmcaScf\nqdDONU8iPyqpLz9362qWagnIQ7C94RVm11pWj008K4a8BoY1YUL0WhH4BqjmZcNE\nDKND5rDOtBZbX5DgaEh85C69EpVEHl6/EQIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nwaBQ/jdvBXvkiPivxlwSG/HeidcQqaCCQx0enVYXrFLBL8NWwS+Rs/0XmxnY295K\nTJ+bn4g4pA3fQj0C0EbSNcHvHBGnSdP4ojxXdFJ0snczCSLY9aXsM8IYl/eO68X7\nfjc2BvaWS7Ecd7hUxjiquGTnJyoy7iVlhYEPYLg5raTZQsAkukJrtiD3ORCD/QlS\nZIyMrj+mcCEr7I0Hmw0CdBAnn99IIKnQtJQZRsVArYR2CCG1kopY8FJUIM+B/DBV\nMKeZbY6QPXZ9qjjZZO0UQA/isUsi4+d5iBXS48ipixGcE/7Qd2rl1BRuJTRz/WAP\ngoO39RpJCDUhplp1Rm/rgA==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nKBt+ubBmVHFClReTjDd674rU9JsSGma7+x8mPWPUiaaxh47Gkq3l3vGWQWB4Zn6A\nCfrBIS+pW4bqJrfV3DnZrHOPRBpVbTRiHRlUiRL0YMk3AyFfpKdkF5eQdVqeqr2g\n0RiRqMt6A5Xe4yhqBcvoKAi6gRVS0kqyZSDbsSPsbg08vFD7gt708JOr5X6UySsk\nkFxlFnD5iA9gm0s+HcsWG51kBet6lUBm3hwYKk0Qu/tzfl5HQZS+3keQDEoYhEFA\nERhM6rkHYoFxa/ZkHOwElgE8CM6Bn82GOyyNfYLGQw7CQH+1LUfRmsSCe3rRicTM\nBR16oL9/WD5DkZR6pzqmbAQOmlLrd8PTSTXUNUDKipwrb84k8RtSnGyovFiGXrXZ\niWBvVV17LcJr00D8TRtBJWzcLQD+PJG4EYn/rsgYjBfkJ7fbv54X+Czc1skP9d5r\n58gfg164TVLCJsUYOwo1iS2c3GwxB1EXkOPwf1JJGO/ZrR6tvduvXvvFR/J8JUZr\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "ED03BB616EB2F60BEC80151114BB25CEF515B226" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEA1d6uTRiqdMp4BHBYIHKR6NB599Z1Bqw4TbOVkM2N1aSA4V/L/hKI\nnl6m/2LL/UAS+E3NCFX0dhw2+D7r7BTJyfGwz0H2MR6Py5/rCMAnPl20wCjXk2qY\nACQa0rJvIqXobwGnDlvxn4ezsj0IEY/FEb61zHnnPHf6d3uyFR1QT06qEOQyYzML\n76f/Lud8MUt+8KzsdnadAPL8okNvcS/nqa2bWbbGhC8S8rtDpPg5BhX2ikXa88RM\nQdrrackdppB2ttHlq9+iH3c8Wyp7bvdH8uhv410W7RnIE4P+KIxt3L0gqkxCjjyh\nmn9ONcdgNOKe31q2cdW5LOPSIK+I5/VTjYjICza7Euyg03drpoBMGLuuJZY6FXEV\nauIBncWe+So8FMxqU/fwo5xm6x085U1MwXUmi4XDYpr/kau6ytPnzzw9J++4W9iC\nem5Jp0vaxrDnPdphqT0FWsBAwsZFL7nZRnmUlTgGsXUa0oSM9/MErDwzELh/NwG4\nDNyyzRG8iP61AgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2023-03-05 22:55:19" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2024-03-05 22:55:19" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEAvaQxritqKpbDk3YHM5nZdb7HiyF9oJ8jgxja4uwda5+q7JD4ZDSp\nfZPR5jet7Ceijf69XjniJQB7HOQOwWe4QDujylFMRYT/JlBlWGQd+48UXdgyjJ/a\n6p0pOp7mus6956GRwijqL8uvFQYKW2Vkrl50g1UTqci1Hz+lhcIfqL7flc0bNJMt\nFvUl2K/hLx2Qa339RyiEW22ifAp06G2gxEH2Ron/AHiohvvXFD4bZFEfaRerIo9m\nDdSuwUOFKqayOgfZM5yNtQL/BmCpARcA+HkLSTIsbeCzrXDB563JdoOhuvp556+L\nklgZycCey/YoxrYFJwBIz/uKV7X9QRSqsQIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\noLpUyLkCrnLq9V3b7H+r/kWFi19JQhQNOdVxZOUSByuYxdEo0B87QaTkuMdquwIE\n2mP77gQCvVMS5CHtGK7i2VXToU/PatUiSxU1x+r57iT2XeUOGTRXWtZOg/rbXUcM\nNgMfqD1BDMxbA902AYt+aj//6ZDjXN8d1jrvSuG/c2XcFl2qAlulFOauC7969qaS\nOk8knOJN5gU4NRULy39NSWS8FnssGAyCnivfPzDO3NoDp+BvptMghnMCcQtLR8Vf\nkE0sRsFTBVL47lNmb0C47R0DeNzvn4xRAfByVtZCl7v1fR/o1GevPmJWSWYOVdU2\ninmF89bNVEOqLLIb1nkCjg==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nuJCx1371Nwv3mQcgGWx07KmxnjUGaGTN7Q5Dt34915YY5Y0eRo2eKGbfoUMvkPUy\nimL1RBbAHbXlljqTwTGNB4cBc98VxSLjkr6Yi4Uo8MIn5jjxQ4USZx1YBVik6Dn1\nuELrgJwJpgagEJbBZ+mrcQ/QWBzO5NjlEJqJuD6U6l16nabMZBGOBQ+D/GLMCVed\nE0NCU+fVcg3nNj9+V1Ml0KnPw8Sgk/AG9DHSMl/p367P99wfks/W5PxbGSL59civ\ndGKikLWqP0ZBPteXyX4e/Yd+DEeSi32vMVNlbXb/6w1XUizCGgbjzWOKC6D/hUpU\nj+ixJ/07DGvkbso5sDCFJQ6Y9HBHyw+mTyYfQaXM1FSHzKLwjwVDmjowhzQU/o9A\n6MCu58HxPuD/mLi6y5TTx6OjAtMRkdzS2V2Wm1+c4lA2DYGyeaHdriIqRQwinwVC\nRIvaBvwe6zTubwsiu7oyq3NcO4h7JGYh2GotaJtbpeXteA6FoA2mZ5l/PAMFB1pA\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "27102BC123E7AF1D4741AE047E160C91ADC76B21" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAuxgnMVH4vwBjMeGvrEODOYcjbCS4N+Wt0SZ6XA5I08HyMf5AbaaF\nMDscJBRIUOp7DyLmUwK+jp+QI8pUjjKsB8S0ctb/J3Im2T6CXnP2KgEfVmpNVQmV\nXdMm8cRZl1uIZDDBAXizSQ51f9A17TJh7pF/5khYp/SAzl6aO5ETn7ry0ITiJnNa\n6cY+400F7ZBA8NuXnCHVGfmpFFsiJKFrS1Kve629eeaNEd3mynRviBXJy5a4NEGf\ny42Ev8on6SxEnF9OG0NMJ081/+mP+j8Dsl3+Uehzr9B42MQQfDo4RdYGrt9XolBm\nL4eay1ieZEsFeDy0TMfiGGbr90wo1fgGLHIRSfTNLhhPJ/f9cTZPe98rhSgGWiAd\nRvK5SljoIOR4qdS9/aiZkj1P+etvh1rIQUcG4/xCOBnouEBK+DDHZFqyMtpMPtV0\nBxi20DVaMJcyhdfjVqcRSyuR8tlOnTid6QwBj6kgIIfMaC+4Ht6yO/SYquCWlaZl\ny7Pu7li8WyW9AgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2023-02-14 17:40:47" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2024-02-14 17:40:47" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEA0qiOegrOj0eeeEhoMDARPeCARUyV1GH7a4wwom9lpGETyy5A0wBU\n/EA1IAeBB1ayj9AGc9n2dgMAqMnQAwCVG36kFq9+4bHZR/l329evRIwzfv4b1evN\n2MJ9/w+pTBj1MfyS+W/h6I8moDR5jLSRie2gs6hrBrO0QwPUVPfz/3LroI+WiyHl\n4Yj2qmwfluTFMWtVY49R6lWlsBwbV9aCupJqPPVtGS/Obr8G/jy8rAysIMh0eZYb\nm61bqpeGHMDu3QLUvOUqoU88ZG0BrJoRHlfnYO1TdCW62hBNYQtAxShR75fh0wny\nNrhThXTw7NAa9/waxZ5LQiu09CbttDKyVQIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\n0ptTVp66FEZMwtGiNp3iauW8duMS4qoQqSsR6ShtWqvdPM5pvVeLqNGDoKlY6JUt\nOqCeMl60iw6uudaaDvqSLVToCLuoy6LZSSOsUNXJbtyCUQvzqStCWLyw+PpuAnIS\n78uU67OZHgqqTEADz8qx7kS+6giNmuQBrtwVnPETACAKcVQB7yLxoMCzlP9iCId0\n0Hs0p94/4Il3aqaHMJI3EJAN5tSMdJNt6dAEH876NCQ1fZNuxFrc6Mglphf5WrqS\nEPZD9S/WP1W2Li5LpZ7OPCTXp7TbOXW+UlrXZ3zqinQUC3ntUE8CJ+zkRsLKYqFd\nszoJrX4nxeoyftzJmnURRg==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nSOZnblqsVhVMgHSOO8JRB9RjuFHe/s+Ik2aansfLpbBbmdy4ED51zYsFN+0Roc+r\npXMZYrII1Eez4YNvuLo3/Egl5nE8pQF7NfPNyn+w67gaCc1Ll8zer/kEGSqFwzt+\n/nH+W0R8Pc8hTqTGKoLwbfuPkbwjmGbGKvm7vkW1yPlh6RbKmhgv3vdaNNIY8Bwg\nlI1GWuBoUkhIKZ3/j60pXoMY8uNuwL57japbaE51sbYGi67SC3a3WQvOr70vOKUj\nJ1lq6DTB6+4959c5w2V7poyiROmqw8IkJ7t/xfZI9Tx5JlCR3i/csMCnBx6NVgWR\n0338/z3IMtn5jd8wIG/DKxOMWpLobHE4HvowH8k9Zc4B69p/qa1kj0qKP36cDwGe\nbmNxzd3FkpT7ujaNze5q94haQl0IVU0FIKdQOKl4Q/p4hrEvKyNQMAjtQV7grhKn\nb7VL+vavrB2V/23UoHv9f4b80QeaZi/53X7/b0kPVuZItv3zcfTKUoZREq3ZHtW2\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "80550987E1D626E3EBA5E5E75A458DE0626D088C" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAtKpuLgVK25sfScjsxfVU1ljofrDygt9GP7bNJl/rghX42KUT975W\nrGp/fbhF7p+FcKCzNOhJFINQbRf/5E3lN8mzoamIU43QqQ9RRVf94688UsazVsAN\nNVT0v9J0cr387WePjenRuIE1MmiP0nmw/XdvbPTayqax7VYlcUMXGHl8DnWix1EN\nRwmeig+JBte0JS12oo2HG9zcSfjLJVjY6ZmvRrVycXiRxGc/JgNlSrV4cxUNykaB\nJ6pO6J499OZfQu7m1vAPTENrVJ4yEfRGRwFIY+d/s8BkKcaiWtXAfTe31uBI6GEH\nmS3HNu1JVSuoaUiQIvVYDLMfBvMcNyAx97UT1l6E0Tn6a7pgChrquGwXai1xGzk8\n58aXwdSFoFBSTCkyemopq5H20p/nkPAO0pHL1kTvcaKz9CEj4XcKm+kOmzejYmIa\nkbWNcRpXPiUZ+xmwGtsq30xrzqiONmERkxqlmf7bVQPFvh3Kz6hGcmTBhTbHSe9h\nzDgmdaTNn3EHAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2015-11-10 18:15:32" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2016-11-10 18:15:32" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEA363/6N+QrBpqWGmd/x8dKgFAmS8ZwNdSUa+AUBI3S/gPHTkUf2Fa\n/j/hh2Kkj43REmY8kT2ZnvU/Hmt5YVf3ootngKRFTz3gUf3dE3yrdDPzNzKMDdEJ\ndUD6Acccx8FlCA3hGuQHEGPB9wQqe9Zi0XtaI8Z7vLksPMbhBmgNXHvs2VWaz6mc\ne8eKlMJgcUUAmBHpQXMOeafMatjPi00jVdcvQ2x5eDLDv49FwuKUfw0eNKWQaACu\nYRDNVGqRisEMAOiqbT9fVDPXTUIRrHP2aVoDnQRmYnHArhiQTPPJtS5HwgCkAvdg\ngXxfT1vQNGmL9K8Nzwc2cDQDygPKQtn5qQIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\naW+SFhwAywOIgHC0EcyPA11pV6CBbVsQ1tl2CdKVcZDeP/i7AeXriz6wlQYdxLdV\naX2EKfqXxQ8o2+sVRpErgIfmOZ16gKhkyJGArCW+4XNvwqrYY0dQSyl8h3lk/72u\nFYEiqcYCYM7a0+GCeCNNvc3lhuUKj8oAQB9SxYmybZFQePkfxtsI1eAT3BAz+trU\n7es4kXdYag+eDwjuBy+HmhyMp83x6SGSlts7BS8hxrM1ru6mTbjDAht26kjLhvX9\nbuvEiV41XWKvvC7Kzj0JWz2Q22KtymfxHONuRNNENCPsvZXVDsH1QWR+WgsJSIWU\nuaRdH6sUEB4H64Ova0jxwQ==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nAm9Yu+Gqw18bW/NjPl12FP5XOEqpXljiF4wYq+qwxLCnrj/ZdT+uPt6kIT6EoHPN\nUWjWA2+GAmepZ+N3AI9yZyOjeby2LE+vxLSX3zZJm6NtLbZHGNAq/9IBp7KGkauj\nT8Yi0iGWATV7jYfz/5s7FVig8iUzbVri9QbRGXdJYzFou/xApSzurFMReJiUUREj\ndBnGtB41oOhYKk0YtUeNL00dgGclpCeNWh97anJnRo/AumevgAycjons62vLoDEo\nEGt6PrRgpq6KDneeNi2FPrJEZ3pTao+Z8MULxMN1aRcTHmjWqqXCXDxKL2MaYHtv\nOCNFMyE40B0eIqAuq7wneVe1pu7bWKlx1pteGlk5H3Z5ytLglTEfR3s4J9Sco+pt\niTQ1LJ6dVrO6t0qJzAkTRJPrEnDmJMdoZKcbAHvrQeCUalDyjRT1kcLhaKgEXHe6\nBoDrNLwv/ilSqOGMq6lf+7xx7TeADHs5zs/xE7t7MdLbgfFbpjFeTMPMIWhHVQxD\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "E2A2AF570166665D738736D0DD58169CC61D8A8B" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAzKCVVdz+P3skRyiRjPHLYiCFzWxgAKzGkI6AQPOjqsfDrdwsPUn3\ns4BAj/BJjIhVrCxyrcfW8pQYHLMqXWtmJ0ZcP9TjqtpxLkPdLjqqWkUxAfRygX51\nLYb2Kez7XG2Wcm/dkTxlFD1DREtq5nivUExuy3FCxvd1xrEWspDJ8+nQl851Oyns\n4wMGUA/QFkmvmCW6ndgIlgGjhFBs3vswW8YvTBTnYK6fl2FiqbZfsd0m1l4MbBrO\nvQlTjvnLPBZK5kePNuMQ2O2o20PjlIKKvLZwBO68KEh79qilXyQ5mD4EyHdrvfIY\ntG+otDn5kuzCJ1hkxWBXRzr6mY7stKRK9tSK4MxCvAU7FI6aTYk470ZkKi4S4n5h\nmS9PgozhXHbkeVlCppodA3xq6oIHOd7DRgs0REKoRGYOjXEesqx3EzX/2BuKL2Pm\nhMUPDZoMqRhBey/UCbcNWhPYDsdxV0WuC9evvfzmnt6uDoA/r9HqKkRuOlbpwouw\nOlen2GGTq+bpAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2010-04-16 18:07:53" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2011-04-16 18:07:53" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIGJAoGBAK7fnqZLJnsJIsqroggguuIM9N638D26z+RDHq4xqwNSDr1A/H1dukK7\nydC83vcp1pBEn3U4a3m4wW71XW6BYFCouJFbx+vyGE1L1pdfrw2mf1ywSaZ7NwsV\nR5cnEGtz7FislHcFwenEnJlz/F4vD5mTC5oHGiNx5JvAXlTxXY8TAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nZdXPzngfdxpvuqLa0VUXGINU++SdFf5TzZb+wQILnMKCaUTa67rekz1MvVJpdrSp\nAyLeErpCEtX6JLR3btFahNnRGHKLwVlHU4kg/hALSxKFLs5iIfSCYEh6dpTNnAuq\nyiEZTIykJsaeUGSfdYn7AWQUuaUNtRUK+Y4Oh28Sxh8=\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nwvLTu0Po7nxThXWB1SNcwd0tRacnLbWAUN0YhE+mdJixUKHCd0gaf3G4NXKUtjVh\nJL8HSJz65iPbh5PA5L2yj1UdtmT6lvgVo+MFzMvPs067BV1+lTPlTeB5OYZkRXbG\nxKdjbKVr0eOm+SUSAXE2/AeXlwI8TmYl5CA5UBfOuar+NT/p+JQ20/fQSbUcqK17\n+xhu97yjkw8ZZivaDDoK9gZnlZtJ3dPfTGLCVFwW70eeds5pS8EnlmKiRNxOCCBI\nPBQln4EU9MzzR+GuTMhXV+7fKrWcAu/zRVnDFnHfwnl0Zun3NlOeF0HBrgf4CYBz\nzR/c2N3jQJw2eLpbt7pI6ZbqzKUUaXTf5kCyq7gjH67pYqh5d+fs0ST2h4qD+VhX\n+T1lPkMCnIPCL/QiUo8PEZo2UhO8g8ZBk0en15oswQdQOQdFBOt8Ljec6FZQhzAE\nhRKauQd9jEztV3H29qHFQ66FAnhBzRMi/Yc/HrKy5GMxc9vgVrTQIG7+NZxm2TzH\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "F533C81CEF0BC0267857C99B2F471ADF249FA232" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEA26vma35pBGlxbq19BQvjxF0+e54AsnGL31+DUdfDYhwK5Pb0Pj0E\nriYH63W/rGeZr/aevtp4VjMT6WDMhc+hu4WHitX08tTm9iuUinAAG/7zqi3MOmuq\naS7/hs7smKJsUSQhT47b60DUl7FwQcfGepk5ssz/Q4gppPEJd4gu6hlukfdQPSZS\n/m56Q6YDF/ZjbQCzL4+RnXhY+pyAonPKxxdSic0J6Zjz43dPyzrz5TOmhVOc5oaI\nDeY1/kA6FbIMprieHgU2k6kvYsCPcHtQlndoga4JVwfXoZ7RsmFfHvhqMFRGWg+p\nCkPiF8waM7d7mr05qw96MPZB5MJtcFlbta2QNOQL/avg7ji6Tegpi9ou8zYzaLFW\nVFs6cqe875TdCtCxhTNcjYxYXxaVJyz4Q7F41Os2POCka6cKNhe94VLt4/+5kQKf\nfsj8shzenxoffMasmIzHYOI5ZX3pPrOGajKbkjufl1jf6mQ+T5jiTfCSQHGtajFC\nfSbDUgA3LbnzAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2022-11-29 23:11:04" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-11-29 23:11:04" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEAufvOFrQz/ruPtR2Inv++HzabJfvfp0V3flrjp0TMGOmkQvV1/PRK\nTfLZMHeS43SKCWJmrqh3NQjE6VM6NBmj8Cnf3QO41AjO26iw2+DBW8vdtE5elNm3\nkLY8/GClS+xTh4F91lJK25uFysZGBzayPSBOUvpV3tv0cFktgZEfFu3/r1pYXbfS\nQaPhK3BzK9F7JT3geI0aVquKwzEzQ1kNXlvUwJHpEur70Jyaphu+lzEaxhJ0L3TQ\nybQ3hoq+FQL+P6ue98gn/OxuLTM2qshUFOfIGLoZigEG/bxaHJLsY/FO4N7s6XLI\nAKd+L0HxndQh7vD5hUeFgTrzszerdqgo+wIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nF3osW2Ve5gSqQ/de54ozfnQZdTww9ctGSZ0NgjqsnzRvKShaxDOqmdQYb5/WU/ha\nV63vGiykm3/5sxsgf7TYvcGEpQ0p5AtOh2cOuT736ZLUdPfgZ3NEpVNchuI4qGfC\nGKgC/8+qluk92DMGXnAU32IdkshZgxFOV7KdcSlkj1ZP/9UaTzXn+8x4KrDm8eI+\ne5OBXEsa2Bu7X4IL5ZSBCADLJRtrvqxyQ1r9btwhQZII6DgE7VBVBKkvhYPBsqvO\nBKGkIojrHbsMEbFKDF7X/Ar5oUJLBKfiODDpV2lt/Fq4pLMmjBkg/cN1CSiDz5gX\n/3JDn5IBCgXZXlkpkeSzNQ==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nXP9/pCnMSQQ/H189yyLuwbfVF7/8AfnLHQ5Rl8l0TjgnB82EclsvfxFnWYgfCBhx\n2QfGjHhwi5OH3PPF6CRuM9E5vNjG1RlVpfjLLFyXmjp24ErP7a8I36opfgvwcxHK\nZ/mcyPlrUt2N5sZPvepsBkREYGa1Eb0Q33ngIcFImkNJ1os1eBLN9jwKye/HVASB\nRksRDb4UtzjCXgEG/BbJ5LICwdkeAB8zDWjWS53g7J5NBhbpRIWf+abw/TPDbJqE\n4JVTFhCMlohaUsZXhV4m4hirkdgYjtDq63ymmnXBr8m/TwHh/7jmpuZ4jbyRrcJ3\nWK6SNyhH4cS/yf/5hsAym00msaybjteXlslW2rXPonZyqgjqk2Kt4M2wzHXFunTf\nsuM4DNxxJNgq3eCPI/oOlB4GBmTHVE5nvFDqCZ1TYtoa4Y1UP/0MjTJ40jONiboW\nB9PCldTth7ZV8wsIflH/ubU9CqDyEwk9b/z7C1SBPX+ogyTZxeK19KdSce4cVy5S\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "0232AF901C31A04EE9848595AF9BB7620D4C5B2E" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAu9O0Pueesn0+29BlxZs60mBqehjdQtgSnKOm9QZxbQ0xrMQgbFnR\nhWbKD8erenyeFk2SF6AJkbyzgYC89hyPW+8GBDmg5bE8fRKjgV/nI3tY2m4rkY3u\nzSmYIdwqHUUc98Xzt9PaQ8IJAlDBY4XLKrWmJMxSyhBlVEept7+9Tj23qowW44Mz\nxPJZ1aFkB1FpkD6qmoCzVZbhXy3cGt1nDwdJK7KqlaXziz9pFiw8PzTVU2xFgJNy\n+nEcT72DBtk3G5K2Riu/aXY/D541Cioj9KMV4Nv4g8aBKx58Xq2tq1pFkc1Bqj1y\n2MomVR3iskFzlqC8yKWGVe4OP2IaOhtcQJYp5GR9q+dWnr53WWNVxNu3sA9iMal3\nPJUk5pIYrsmArGew5gmlCe+Al46nPINxc7ouztmStAV+2F6SpZlKOcstnT+KJ52O\n1xnOSaj/WnzG2o4KZ9UrFQoUNOLQJcelPcC+vrinMk9BQPcB072l9NjpUBC9brsW\nqTCMStn1jfDDAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2022-06-14 11:48:34" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-06-14 11:48:34" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEA7LzrnjFMMIdR5jsYtXFJHnunnnPA5+gROwBG3QyQKZMKHcJDi/Sx\nE71eLa5wutJjDwxT1HSyuPex7/74h0IEj06DUYiMm7YU+wbLDNflgF2PbVrNtVYx\nIaOPlZDnugBbis9/No5yHypzLeKvk8q+xzGTLx2s+YWFqpc6bgYYRmMP3SdR7Fao\n4FXTJMJXtfx4kNUnxYj+8pHcJ55Bv7LJGzqzW8BNdJlgEfbdJDy2ehASIYc+wxVL\nAPzVevhtGZ/RlwXiwh3zYe+wQ4KMlr/dG8GQfm6eWQl2uOUO/JMqSoqFVozCO5qs\nGonpzpsKSRjltMhBPUc5LEeQDfWF8pcXLwIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\n61Jh3zSxj6+wdIl5Zc5wHXa+U63zr8QOtm/sNR1ZxNOqzZDPwLh6gQ6UgCqACSAt\nVm2XQdHmJeW56/5MfhcY/Gt0TKo54OHFoVbZSdCwSDhEf8Qq2ZjEARgrm8LRdOQp\nBOABqE1C/nD0Zo572Q3tceAC51Xa36RCv530f0+8K1K+81CnMUeqT8qvwXnPR9hI\nH9GQ3JMkGYpInQcFgzVNZFilqW7Rxy2lDxbeNkySOXeBHKET3Ol+di9onPBPDIX9\n+N5cNsjCnFXnqtQwKqUJjZm+RwddI8JhGrpuAcxbFfWirxQp3UhMdTMAdoz3gFdP\nFqLHN5G16MKVaRkKmIvWww==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nttczQabPrPvIaAwt4yPBmCnCg9nDVvB6g6lcbzmWIV8ccb26my8waSOfGx4ob6lJ\nSc3UCVdWMJNU78bvGQNLjZtpgZGhI5lt6x9Nrk5eouOmsP7mLBjf6HFSqIuuqBPr\nuPOTEamdB322fbYsBBjAzoSBD0aeD3qDqK+LMvS6X5C+OkBDnwbRtq60Oxh+39M+\ni6qfmE2sAAKvMJZ5rn1OIn9ipXDcWh/vyB/4OtBNjo52iMcifFZHJ34gzjt66tDZ\nkojUkbUIhDORpbFb/1yPWmcXhCz4Wpgi7W0QCK13sSEuakG5ZeVypFdDVQ/E6qxD\noQnWNueVGlSkBvSdEBjMoPplWHCLxCl3OBj+zl6FhaHPv4ZqvPPR5NJIymwli6Yr\nqJl1QfeH40MyfBO9q8gQT1l1rHGMn9qAly9Q/G2OH0BTdSTkOf8xESScwnh/zQKI\njzRd87vlN1mDzcrbsHsuylibtLqshoVQFUR9vYQx8JsT/QnFvqxDvjjCBID4mq6A\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "23D15D965BC35114467363C165C4F724B64B4F66" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAlv6XS+VppPaQzOgor0YFlcXLWeXiMn5N3VBneXuw8maLOu9oPJ9z\n2/oMQN8a+VOWTf+/jebGzOBK6MamXpgsIZPQWiT18gZMsYdR8mcqBYqVP3khwUWh\n9QYkV+m+Auxa0TLzTrsi6dLDJ384XdpDweU+YJghMJNZ1NqiT8ogj84hxs5Tf+Qf\nbn7EBIcU7SAKr5Lw25KrMb5e3AZSC5MilBS/KLgVTq/GiWb7pKd5pxGwlGolNX8a\nPccZ2ZT2DrSQsct4wVxhSbUqANI3PfMpXvmUDxWWBgbQwLF02/4gi+13snlHtqwl\ny1WjE55HVfx1CTX13SStwmF/N3SFtFf1qil3j5qrHdHtKlAYOaTfqab1eLVH1l83\nLI5QWD7ri9GpPqIjlh6PuaHjaO2FW20SouZtS9jJKwi1l1G3ef1tSlha1cxkRxIp\nU/ngvQBsoa9X26VfQA4MieZgVVdMVwjCNh2YC9aEXc/KxfcBueZkM1194qP88cVu\ndOFYaftOkuGPAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2022-09-16 19:14:12" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-09-16 19:14:12" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEAocBazlzJr02eAiuhp3Rs42ED+p0AlTm7ZwMJ40rqJCTKcyX6tghM\n9H6+m7WP5AVJBvkdRHIVECwTJ+jAHCpq4/oYAptYEWO8jgvLLfRwp0wZ3hFQ02iy\nOu/Zk0pLezbL9Y06HwcDetdcZtr4tpswgUL9HoSyC2H2mppwXXGevW9RTtDzQOHo\neMatbMwIswvVKqSYA4+44R3u96+hGH5qE1HKN0HhSH5aIb70EsWOt/QZ9b/2Lb2C\nqAfUqrHCkj3dyaNQocVBAeilP37SRJF8/3QoMEzjEK4ouHsF+t+6+LzJW691xH6n\nTbUPMoSsEXzvJ9xaT3b7ryUN91NHbO9ZowIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nXpESBn4mNlIJi0el8ZXo9W+Y1c57e3XCKCKlnpYEJIqsSipQh78dYx1xDwivZSXu\nfoF5Z+b/O1ua/UI5axb7Nut3c+uumrshUG73QW9Ee+wpPhkAQ2eqZ0Xz4+AVoEBq\nyf2/EZB1+K8fLuQYDsBzd8XeP2qgabC8js3/jGZjr0E3LqkGjHdPFVzkhOzvD4Mh\nd0eqpnqWaXNMibwDT+eOFXzpiDdjvNdvU3cyQpnL2YF6SGV6ciCi1wHg+PzJwINc\ntf9BpwJGIfOH4Y4d4OibUTUsQ+8AMbpoJLUk7HE3iFJ03RC+31Ph/N3r9mJeKR60\nj4VGN03HCsFA43jI0zRWag==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\ncdrS5+cWQl55tLenQpbM69+iCy5MYw10y7D8pbsMrBiwkFJB+7JmID8V5sqSP8Me\n8TeVRaAR89pglq+vmjewNzXw2J7FC34ieGfIWNl+qoQ8bkKqSjJEDLswHmMDck56\nZSWDqa4D5QVomqXHsHDqwDhkqucUVMo8QRqu3sKzA1d4uOiRGCJIBfx0sELZNVBw\nSRqwc3IXs1iRKsaF7Fqxnk5huB6vWUVnVX+vbmUxOwZsppQ7ouZ8hk25R8Pls1xA\nctVhMhT+05fIQvMffnquOUUk/qYd1a1B7CkEyeBAimiRmU29QiOiFW8ZLOc2dcMX\nIZPweR6RRRnmzJYgQctDkaotawmKNq5PZI0kAEe3xciE2Yxh9zY081+1hCPNPjGc\nU57z7Ccn7GW6yUGqV2i2mr5B1y1C97PdAjJhC5GLbXx18U6zhIspTRvGn+Ocy1Ee\nuwdc/LtRso7MY3bfmfjYTK52v0fTIwr+u/v6Nd9L+EqIBBlUxVLHj4iiZOPiORBA\n-----END SIGNATURE-----\n" + ] + } + }, + { + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "Address": null, + "Fingerprint": { + "Case": "Some", + "Fields": [ + "D586D18309DED4CD6D57C18FDB97EFA96D330566" + ] + }, + "IdentityKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBigKCAYEAvi5+A+XPw4jxMYhmEI4+MpnaX3dUEbsMGHA+xAMnmVhuxbm3Dn5c\nTyhQNY2LOlsieE84UYG+J4dABfaFH4w0l6zUJkuytX4+6WRQontw9puR/IcXkRwM\n8Tv/tY675OYRCm9DgDAWfqZM0IgTzSrYRDl8eFPSFCOP0NhMrQZeUrdKgwAXVZWP\nxt9nTCwT4K9BMp47LEmZKdEokeVsr0l29Z9v5+r24k9x8EQjDexsoHwlVrxWfarG\n1klWssfSFpkMN+FkTQnBC6ByiBh5ZKM5AC/HkVFvuHjehUpfrtNk6XNFcKbDvEIg\nqPdg1QWuuSWpZVA+/EwSBtwMNcq9pv60L8Cm9WCJoSC691WByiGwFCy1/XcBI4J/\nBkoMEvP3kAxzm92jqGbpFSJawFRPZKy89FDKpha/So3CERQPV0ar+DTpVqDlryWV\nN4x1IzpPeSHFj7T74q8qdrxx0wcAjWJ9WYoGQif6FK3hHcmbSGSgyvAFeoYxyUCL\nJHkjBCD4WTWVAgMBAAE=\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "Published": { + "Case": "Some", + "Fields": [ + "2022-11-10 23:21:36" + ] + }, + "Expires": { + "Case": "Some", + "Fields": [ + "2023-11-10 23:21:36" + ] + }, + "SigningKey": { + "Case": "Some", + "Fields": [ + "-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEA2Vt7oP9P+yEV+zzaH40/j5PTsRb1Pyyzd6P3PLKObM6Wil/ZvcBF\nXB7KDIO/bsL6/K1ZqQwn4zVaLQndNWNN2eXGWZ6F2l3h2nK4MbIMTYs1iiDgtDbe\nzYYlGGJXbmD/iju0NaXwtnqstwZlVCaWkRJweOpXsBqcgB25/dmw0nVgfPpuhCFv\nP+LNoOzfLsvHgQn9ZiDVGxtGGNl5PuIqzDO2bb9YHsrSRLA1TiGnDrKzb1ggdIAJ\ngNyr3GJXJwJQB+1eXSkbyQSs24MF/EKakRAxmfcIAu5q5qBvlqoiyrTUE3GU6cHt\nlzL3TUpMRom62rQ4zHQPKB4TBuMqtl4lbwIDAQAB\n-----END RSA PUBLIC KEY-----\n" + ] + }, + "CrossCert": { + "Case": "Some", + "Fields": [ + "-----BEGIN ID SIGNATURE-----\nYVwD9Ezq8dlYNvnE9/XhfBOggdjFHq6lP2tNwFIPZLo4EV6IvGXZAt5Le3/Anr7W\nT3ZXlcHYcS3Y2JOocBXoP+3WBgrYEBoUuLTfTK/YHglB+kJx8HuL/U7y38HunngV\n85NM4oaHX4sVn2XRG6coEmoAiIg+xAmh6fT7YRSE8nm/1B9hqcw02oUSi+lFOo8q\nRmHU/rLZnMERN1l5q6xPyHGnImcRUeFZBaAUrRpqBsmZI31nPI2WjDm+FYMFJjc/\nnR29yqmqNaDVfcazMnC9u/12uYPlbkWtLgVPBbNAhFfm/INnwhJe1emVRRT49+GI\nQNhbMCO4aAKWQ3LctqdCDw==\n-----END ID SIGNATURE-----\n" + ] + }, + "Certification": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nXdshvfB7lmX5UnYINa0bb+sHgIVqEhdEa/9/OvAgwjvUXWPuyp57YkI3eqBh3Bwa\nW/laN/kUrEyCnKV5LISkw8/dasELKAd0Q7oe7jhWczUD7M379iT2iCjwGGyR53h8\noXNOIOXCGVFF8DumGzdpL99CYx/JWIss6U/7gxxK0wIdc5RHnB9tYjT9203pX8+N\nj43V2Uh/Ol2d/7AmeZS2LqCeokfkwTK72EhLDiDjtTSAFqy3DAFSZEzVH+FA9nvZ\naIWOAXfX5m3JhSlDQXeyoI2wqEOaVuWmoTHgQDJPbctQ2inII7mZUIACS2YBujg+\nVTmjCn1AQwAxEpiT3K4I6Bmf79tP2ZJ4kk86VcSxHrXG+YMG/Rz0pzzRTnoTVWoi\nAwu/bTB2d/R8JCiRhePti1zmHATyEDHjoaC17i4GgIhXT3Xf4mFovabj1NILwStb\nkBTlWnTx1KrrQbtdULj+95gWGTGhj5OdTFnDqi3ph/6ansWGA5RlTlqFlaiX7CaS\n-----END SIGNATURE-----\n" + ] + } + } +] \ No newline at end of file diff --git a/NOnion.Tests/Directory-Samples/KeyCertificate.txt b/NOnion.Tests/Directory-Samples/KeyCertificate.txt new file mode 100644 index 00000000..2f1fa7f1 --- /dev/null +++ b/NOnion.Tests/Directory-Samples/KeyCertificate.txt @@ -0,0 +1,662 @@ +dir-key-certificate-version 3 +fingerprint D586D18309DED4CD6D57C18FDB97EFA96D330566 +dir-key-published 2022-11-10 23:21:36 +dir-key-expires 2023-11-10 23:21:36 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAvi5+A+XPw4jxMYhmEI4+MpnaX3dUEbsMGHA+xAMnmVhuxbm3Dn5c +TyhQNY2LOlsieE84UYG+J4dABfaFH4w0l6zUJkuytX4+6WRQontw9puR/IcXkRwM +8Tv/tY675OYRCm9DgDAWfqZM0IgTzSrYRDl8eFPSFCOP0NhMrQZeUrdKgwAXVZWP +xt9nTCwT4K9BMp47LEmZKdEokeVsr0l29Z9v5+r24k9x8EQjDexsoHwlVrxWfarG +1klWssfSFpkMN+FkTQnBC6ByiBh5ZKM5AC/HkVFvuHjehUpfrtNk6XNFcKbDvEIg +qPdg1QWuuSWpZVA+/EwSBtwMNcq9pv60L8Cm9WCJoSC691WByiGwFCy1/XcBI4J/ +BkoMEvP3kAxzm92jqGbpFSJawFRPZKy89FDKpha/So3CERQPV0ar+DTpVqDlryWV +N4x1IzpPeSHFj7T74q8qdrxx0wcAjWJ9WYoGQif6FK3hHcmbSGSgyvAFeoYxyUCL +JHkjBCD4WTWVAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEA2Vt7oP9P+yEV+zzaH40/j5PTsRb1Pyyzd6P3PLKObM6Wil/ZvcBF +XB7KDIO/bsL6/K1ZqQwn4zVaLQndNWNN2eXGWZ6F2l3h2nK4MbIMTYs1iiDgtDbe +zYYlGGJXbmD/iju0NaXwtnqstwZlVCaWkRJweOpXsBqcgB25/dmw0nVgfPpuhCFv +P+LNoOzfLsvHgQn9ZiDVGxtGGNl5PuIqzDO2bb9YHsrSRLA1TiGnDrKzb1ggdIAJ +gNyr3GJXJwJQB+1eXSkbyQSs24MF/EKakRAxmfcIAu5q5qBvlqoiyrTUE3GU6cHt +lzL3TUpMRom62rQ4zHQPKB4TBuMqtl4lbwIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +YVwD9Ezq8dlYNvnE9/XhfBOggdjFHq6lP2tNwFIPZLo4EV6IvGXZAt5Le3/Anr7W +T3ZXlcHYcS3Y2JOocBXoP+3WBgrYEBoUuLTfTK/YHglB+kJx8HuL/U7y38HunngV +85NM4oaHX4sVn2XRG6coEmoAiIg+xAmh6fT7YRSE8nm/1B9hqcw02oUSi+lFOo8q +RmHU/rLZnMERN1l5q6xPyHGnImcRUeFZBaAUrRpqBsmZI31nPI2WjDm+FYMFJjc/ +nR29yqmqNaDVfcazMnC9u/12uYPlbkWtLgVPBbNAhFfm/INnwhJe1emVRRT49+GI +QNhbMCO4aAKWQ3LctqdCDw== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +XdshvfB7lmX5UnYINa0bb+sHgIVqEhdEa/9/OvAgwjvUXWPuyp57YkI3eqBh3Bwa +W/laN/kUrEyCnKV5LISkw8/dasELKAd0Q7oe7jhWczUD7M379iT2iCjwGGyR53h8 +oXNOIOXCGVFF8DumGzdpL99CYx/JWIss6U/7gxxK0wIdc5RHnB9tYjT9203pX8+N +j43V2Uh/Ol2d/7AmeZS2LqCeokfkwTK72EhLDiDjtTSAFqy3DAFSZEzVH+FA9nvZ +aIWOAXfX5m3JhSlDQXeyoI2wqEOaVuWmoTHgQDJPbctQ2inII7mZUIACS2YBujg+ +VTmjCn1AQwAxEpiT3K4I6Bmf79tP2ZJ4kk86VcSxHrXG+YMG/Rz0pzzRTnoTVWoi +Awu/bTB2d/R8JCiRhePti1zmHATyEDHjoaC17i4GgIhXT3Xf4mFovabj1NILwStb +kBTlWnTx1KrrQbtdULj+95gWGTGhj5OdTFnDqi3ph/6ansWGA5RlTlqFlaiX7CaS +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 23D15D965BC35114467363C165C4F724B64B4F66 +dir-key-published 2022-09-16 19:14:12 +dir-key-expires 2023-09-16 19:14:12 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAlv6XS+VppPaQzOgor0YFlcXLWeXiMn5N3VBneXuw8maLOu9oPJ9z +2/oMQN8a+VOWTf+/jebGzOBK6MamXpgsIZPQWiT18gZMsYdR8mcqBYqVP3khwUWh +9QYkV+m+Auxa0TLzTrsi6dLDJ384XdpDweU+YJghMJNZ1NqiT8ogj84hxs5Tf+Qf +bn7EBIcU7SAKr5Lw25KrMb5e3AZSC5MilBS/KLgVTq/GiWb7pKd5pxGwlGolNX8a +PccZ2ZT2DrSQsct4wVxhSbUqANI3PfMpXvmUDxWWBgbQwLF02/4gi+13snlHtqwl +y1WjE55HVfx1CTX13SStwmF/N3SFtFf1qil3j5qrHdHtKlAYOaTfqab1eLVH1l83 +LI5QWD7ri9GpPqIjlh6PuaHjaO2FW20SouZtS9jJKwi1l1G3ef1tSlha1cxkRxIp +U/ngvQBsoa9X26VfQA4MieZgVVdMVwjCNh2YC9aEXc/KxfcBueZkM1194qP88cVu +dOFYaftOkuGPAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEAocBazlzJr02eAiuhp3Rs42ED+p0AlTm7ZwMJ40rqJCTKcyX6tghM +9H6+m7WP5AVJBvkdRHIVECwTJ+jAHCpq4/oYAptYEWO8jgvLLfRwp0wZ3hFQ02iy +Ou/Zk0pLezbL9Y06HwcDetdcZtr4tpswgUL9HoSyC2H2mppwXXGevW9RTtDzQOHo +eMatbMwIswvVKqSYA4+44R3u96+hGH5qE1HKN0HhSH5aIb70EsWOt/QZ9b/2Lb2C +qAfUqrHCkj3dyaNQocVBAeilP37SRJF8/3QoMEzjEK4ouHsF+t+6+LzJW691xH6n +TbUPMoSsEXzvJ9xaT3b7ryUN91NHbO9ZowIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +XpESBn4mNlIJi0el8ZXo9W+Y1c57e3XCKCKlnpYEJIqsSipQh78dYx1xDwivZSXu +foF5Z+b/O1ua/UI5axb7Nut3c+uumrshUG73QW9Ee+wpPhkAQ2eqZ0Xz4+AVoEBq +yf2/EZB1+K8fLuQYDsBzd8XeP2qgabC8js3/jGZjr0E3LqkGjHdPFVzkhOzvD4Mh +d0eqpnqWaXNMibwDT+eOFXzpiDdjvNdvU3cyQpnL2YF6SGV6ciCi1wHg+PzJwINc +tf9BpwJGIfOH4Y4d4OibUTUsQ+8AMbpoJLUk7HE3iFJ03RC+31Ph/N3r9mJeKR60 +j4VGN03HCsFA43jI0zRWag== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +cdrS5+cWQl55tLenQpbM69+iCy5MYw10y7D8pbsMrBiwkFJB+7JmID8V5sqSP8Me +8TeVRaAR89pglq+vmjewNzXw2J7FC34ieGfIWNl+qoQ8bkKqSjJEDLswHmMDck56 +ZSWDqa4D5QVomqXHsHDqwDhkqucUVMo8QRqu3sKzA1d4uOiRGCJIBfx0sELZNVBw +SRqwc3IXs1iRKsaF7Fqxnk5huB6vWUVnVX+vbmUxOwZsppQ7ouZ8hk25R8Pls1xA +ctVhMhT+05fIQvMffnquOUUk/qYd1a1B7CkEyeBAimiRmU29QiOiFW8ZLOc2dcMX +IZPweR6RRRnmzJYgQctDkaotawmKNq5PZI0kAEe3xciE2Yxh9zY081+1hCPNPjGc +U57z7Ccn7GW6yUGqV2i2mr5B1y1C97PdAjJhC5GLbXx18U6zhIspTRvGn+Ocy1Ee +uwdc/LtRso7MY3bfmfjYTK52v0fTIwr+u/v6Nd9L+EqIBBlUxVLHj4iiZOPiORBA +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 0232AF901C31A04EE9848595AF9BB7620D4C5B2E +dir-key-published 2022-06-14 11:48:34 +dir-key-expires 2023-06-14 11:48:34 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAu9O0Pueesn0+29BlxZs60mBqehjdQtgSnKOm9QZxbQ0xrMQgbFnR +hWbKD8erenyeFk2SF6AJkbyzgYC89hyPW+8GBDmg5bE8fRKjgV/nI3tY2m4rkY3u +zSmYIdwqHUUc98Xzt9PaQ8IJAlDBY4XLKrWmJMxSyhBlVEept7+9Tj23qowW44Mz +xPJZ1aFkB1FpkD6qmoCzVZbhXy3cGt1nDwdJK7KqlaXziz9pFiw8PzTVU2xFgJNy ++nEcT72DBtk3G5K2Riu/aXY/D541Cioj9KMV4Nv4g8aBKx58Xq2tq1pFkc1Bqj1y +2MomVR3iskFzlqC8yKWGVe4OP2IaOhtcQJYp5GR9q+dWnr53WWNVxNu3sA9iMal3 +PJUk5pIYrsmArGew5gmlCe+Al46nPINxc7ouztmStAV+2F6SpZlKOcstnT+KJ52O +1xnOSaj/WnzG2o4KZ9UrFQoUNOLQJcelPcC+vrinMk9BQPcB072l9NjpUBC9brsW +qTCMStn1jfDDAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEA7LzrnjFMMIdR5jsYtXFJHnunnnPA5+gROwBG3QyQKZMKHcJDi/Sx +E71eLa5wutJjDwxT1HSyuPex7/74h0IEj06DUYiMm7YU+wbLDNflgF2PbVrNtVYx +IaOPlZDnugBbis9/No5yHypzLeKvk8q+xzGTLx2s+YWFqpc6bgYYRmMP3SdR7Fao +4FXTJMJXtfx4kNUnxYj+8pHcJ55Bv7LJGzqzW8BNdJlgEfbdJDy2ehASIYc+wxVL +APzVevhtGZ/RlwXiwh3zYe+wQ4KMlr/dG8GQfm6eWQl2uOUO/JMqSoqFVozCO5qs +GonpzpsKSRjltMhBPUc5LEeQDfWF8pcXLwIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +61Jh3zSxj6+wdIl5Zc5wHXa+U63zr8QOtm/sNR1ZxNOqzZDPwLh6gQ6UgCqACSAt +Vm2XQdHmJeW56/5MfhcY/Gt0TKo54OHFoVbZSdCwSDhEf8Qq2ZjEARgrm8LRdOQp +BOABqE1C/nD0Zo572Q3tceAC51Xa36RCv530f0+8K1K+81CnMUeqT8qvwXnPR9hI +H9GQ3JMkGYpInQcFgzVNZFilqW7Rxy2lDxbeNkySOXeBHKET3Ol+di9onPBPDIX9 ++N5cNsjCnFXnqtQwKqUJjZm+RwddI8JhGrpuAcxbFfWirxQp3UhMdTMAdoz3gFdP +FqLHN5G16MKVaRkKmIvWww== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +ttczQabPrPvIaAwt4yPBmCnCg9nDVvB6g6lcbzmWIV8ccb26my8waSOfGx4ob6lJ +Sc3UCVdWMJNU78bvGQNLjZtpgZGhI5lt6x9Nrk5eouOmsP7mLBjf6HFSqIuuqBPr +uPOTEamdB322fbYsBBjAzoSBD0aeD3qDqK+LMvS6X5C+OkBDnwbRtq60Oxh+39M+ +i6qfmE2sAAKvMJZ5rn1OIn9ipXDcWh/vyB/4OtBNjo52iMcifFZHJ34gzjt66tDZ +kojUkbUIhDORpbFb/1yPWmcXhCz4Wpgi7W0QCK13sSEuakG5ZeVypFdDVQ/E6qxD +oQnWNueVGlSkBvSdEBjMoPplWHCLxCl3OBj+zl6FhaHPv4ZqvPPR5NJIymwli6Yr +qJl1QfeH40MyfBO9q8gQT1l1rHGMn9qAly9Q/G2OH0BTdSTkOf8xESScwnh/zQKI +jzRd87vlN1mDzcrbsHsuylibtLqshoVQFUR9vYQx8JsT/QnFvqxDvjjCBID4mq6A +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint F533C81CEF0BC0267857C99B2F471ADF249FA232 +dir-key-published 2022-11-29 23:11:04 +dir-key-expires 2023-11-29 23:11:04 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEA26vma35pBGlxbq19BQvjxF0+e54AsnGL31+DUdfDYhwK5Pb0Pj0E +riYH63W/rGeZr/aevtp4VjMT6WDMhc+hu4WHitX08tTm9iuUinAAG/7zqi3MOmuq +aS7/hs7smKJsUSQhT47b60DUl7FwQcfGepk5ssz/Q4gppPEJd4gu6hlukfdQPSZS +/m56Q6YDF/ZjbQCzL4+RnXhY+pyAonPKxxdSic0J6Zjz43dPyzrz5TOmhVOc5oaI +DeY1/kA6FbIMprieHgU2k6kvYsCPcHtQlndoga4JVwfXoZ7RsmFfHvhqMFRGWg+p +CkPiF8waM7d7mr05qw96MPZB5MJtcFlbta2QNOQL/avg7ji6Tegpi9ou8zYzaLFW +VFs6cqe875TdCtCxhTNcjYxYXxaVJyz4Q7F41Os2POCka6cKNhe94VLt4/+5kQKf +fsj8shzenxoffMasmIzHYOI5ZX3pPrOGajKbkjufl1jf6mQ+T5jiTfCSQHGtajFC +fSbDUgA3LbnzAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEAufvOFrQz/ruPtR2Inv++HzabJfvfp0V3flrjp0TMGOmkQvV1/PRK +TfLZMHeS43SKCWJmrqh3NQjE6VM6NBmj8Cnf3QO41AjO26iw2+DBW8vdtE5elNm3 +kLY8/GClS+xTh4F91lJK25uFysZGBzayPSBOUvpV3tv0cFktgZEfFu3/r1pYXbfS +QaPhK3BzK9F7JT3geI0aVquKwzEzQ1kNXlvUwJHpEur70Jyaphu+lzEaxhJ0L3TQ +ybQ3hoq+FQL+P6ue98gn/OxuLTM2qshUFOfIGLoZigEG/bxaHJLsY/FO4N7s6XLI +AKd+L0HxndQh7vD5hUeFgTrzszerdqgo+wIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +F3osW2Ve5gSqQ/de54ozfnQZdTww9ctGSZ0NgjqsnzRvKShaxDOqmdQYb5/WU/ha +V63vGiykm3/5sxsgf7TYvcGEpQ0p5AtOh2cOuT736ZLUdPfgZ3NEpVNchuI4qGfC +GKgC/8+qluk92DMGXnAU32IdkshZgxFOV7KdcSlkj1ZP/9UaTzXn+8x4KrDm8eI+ +e5OBXEsa2Bu7X4IL5ZSBCADLJRtrvqxyQ1r9btwhQZII6DgE7VBVBKkvhYPBsqvO +BKGkIojrHbsMEbFKDF7X/Ar5oUJLBKfiODDpV2lt/Fq4pLMmjBkg/cN1CSiDz5gX +/3JDn5IBCgXZXlkpkeSzNQ== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +XP9/pCnMSQQ/H189yyLuwbfVF7/8AfnLHQ5Rl8l0TjgnB82EclsvfxFnWYgfCBhx +2QfGjHhwi5OH3PPF6CRuM9E5vNjG1RlVpfjLLFyXmjp24ErP7a8I36opfgvwcxHK +Z/mcyPlrUt2N5sZPvepsBkREYGa1Eb0Q33ngIcFImkNJ1os1eBLN9jwKye/HVASB +RksRDb4UtzjCXgEG/BbJ5LICwdkeAB8zDWjWS53g7J5NBhbpRIWf+abw/TPDbJqE +4JVTFhCMlohaUsZXhV4m4hirkdgYjtDq63ymmnXBr8m/TwHh/7jmpuZ4jbyRrcJ3 +WK6SNyhH4cS/yf/5hsAym00msaybjteXlslW2rXPonZyqgjqk2Kt4M2wzHXFunTf +suM4DNxxJNgq3eCPI/oOlB4GBmTHVE5nvFDqCZ1TYtoa4Y1UP/0MjTJ40jONiboW +B9PCldTth7ZV8wsIflH/ubU9CqDyEwk9b/z7C1SBPX+ogyTZxeK19KdSce4cVy5S +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint E2A2AF570166665D738736D0DD58169CC61D8A8B +dir-key-published 2010-04-16 18:07:53 +dir-key-expires 2011-04-16 18:07:53 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAzKCVVdz+P3skRyiRjPHLYiCFzWxgAKzGkI6AQPOjqsfDrdwsPUn3 +s4BAj/BJjIhVrCxyrcfW8pQYHLMqXWtmJ0ZcP9TjqtpxLkPdLjqqWkUxAfRygX51 +LYb2Kez7XG2Wcm/dkTxlFD1DREtq5nivUExuy3FCxvd1xrEWspDJ8+nQl851Oyns +4wMGUA/QFkmvmCW6ndgIlgGjhFBs3vswW8YvTBTnYK6fl2FiqbZfsd0m1l4MbBrO +vQlTjvnLPBZK5kePNuMQ2O2o20PjlIKKvLZwBO68KEh79qilXyQ5mD4EyHdrvfIY +tG+otDn5kuzCJ1hkxWBXRzr6mY7stKRK9tSK4MxCvAU7FI6aTYk470ZkKi4S4n5h +mS9PgozhXHbkeVlCppodA3xq6oIHOd7DRgs0REKoRGYOjXEesqx3EzX/2BuKL2Pm +hMUPDZoMqRhBey/UCbcNWhPYDsdxV0WuC9evvfzmnt6uDoA/r9HqKkRuOlbpwouw +Olen2GGTq+bpAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIGJAoGBAK7fnqZLJnsJIsqroggguuIM9N638D26z+RDHq4xqwNSDr1A/H1dukK7 +ydC83vcp1pBEn3U4a3m4wW71XW6BYFCouJFbx+vyGE1L1pdfrw2mf1ywSaZ7NwsV +R5cnEGtz7FislHcFwenEnJlz/F4vD5mTC5oHGiNx5JvAXlTxXY8TAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +ZdXPzngfdxpvuqLa0VUXGINU++SdFf5TzZb+wQILnMKCaUTa67rekz1MvVJpdrSp +AyLeErpCEtX6JLR3btFahNnRGHKLwVlHU4kg/hALSxKFLs5iIfSCYEh6dpTNnAuq +yiEZTIykJsaeUGSfdYn7AWQUuaUNtRUK+Y4Oh28Sxh8= +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +wvLTu0Po7nxThXWB1SNcwd0tRacnLbWAUN0YhE+mdJixUKHCd0gaf3G4NXKUtjVh +JL8HSJz65iPbh5PA5L2yj1UdtmT6lvgVo+MFzMvPs067BV1+lTPlTeB5OYZkRXbG +xKdjbKVr0eOm+SUSAXE2/AeXlwI8TmYl5CA5UBfOuar+NT/p+JQ20/fQSbUcqK17 ++xhu97yjkw8ZZivaDDoK9gZnlZtJ3dPfTGLCVFwW70eeds5pS8EnlmKiRNxOCCBI +PBQln4EU9MzzR+GuTMhXV+7fKrWcAu/zRVnDFnHfwnl0Zun3NlOeF0HBrgf4CYBz +zR/c2N3jQJw2eLpbt7pI6ZbqzKUUaXTf5kCyq7gjH67pYqh5d+fs0ST2h4qD+VhX ++T1lPkMCnIPCL/QiUo8PEZo2UhO8g8ZBk0en15oswQdQOQdFBOt8Ljec6FZQhzAE +hRKauQd9jEztV3H29qHFQ66FAnhBzRMi/Yc/HrKy5GMxc9vgVrTQIG7+NZxm2TzH +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 80550987E1D626E3EBA5E5E75A458DE0626D088C +dir-key-published 2015-11-10 18:15:32 +dir-key-expires 2016-11-10 18:15:32 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAtKpuLgVK25sfScjsxfVU1ljofrDygt9GP7bNJl/rghX42KUT975W +rGp/fbhF7p+FcKCzNOhJFINQbRf/5E3lN8mzoamIU43QqQ9RRVf94688UsazVsAN +NVT0v9J0cr387WePjenRuIE1MmiP0nmw/XdvbPTayqax7VYlcUMXGHl8DnWix1EN +Rwmeig+JBte0JS12oo2HG9zcSfjLJVjY6ZmvRrVycXiRxGc/JgNlSrV4cxUNykaB +J6pO6J499OZfQu7m1vAPTENrVJ4yEfRGRwFIY+d/s8BkKcaiWtXAfTe31uBI6GEH +mS3HNu1JVSuoaUiQIvVYDLMfBvMcNyAx97UT1l6E0Tn6a7pgChrquGwXai1xGzk8 +58aXwdSFoFBSTCkyemopq5H20p/nkPAO0pHL1kTvcaKz9CEj4XcKm+kOmzejYmIa +kbWNcRpXPiUZ+xmwGtsq30xrzqiONmERkxqlmf7bVQPFvh3Kz6hGcmTBhTbHSe9h +zDgmdaTNn3EHAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEA363/6N+QrBpqWGmd/x8dKgFAmS8ZwNdSUa+AUBI3S/gPHTkUf2Fa +/j/hh2Kkj43REmY8kT2ZnvU/Hmt5YVf3ootngKRFTz3gUf3dE3yrdDPzNzKMDdEJ +dUD6Acccx8FlCA3hGuQHEGPB9wQqe9Zi0XtaI8Z7vLksPMbhBmgNXHvs2VWaz6mc +e8eKlMJgcUUAmBHpQXMOeafMatjPi00jVdcvQ2x5eDLDv49FwuKUfw0eNKWQaACu +YRDNVGqRisEMAOiqbT9fVDPXTUIRrHP2aVoDnQRmYnHArhiQTPPJtS5HwgCkAvdg +gXxfT1vQNGmL9K8Nzwc2cDQDygPKQtn5qQIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +aW+SFhwAywOIgHC0EcyPA11pV6CBbVsQ1tl2CdKVcZDeP/i7AeXriz6wlQYdxLdV +aX2EKfqXxQ8o2+sVRpErgIfmOZ16gKhkyJGArCW+4XNvwqrYY0dQSyl8h3lk/72u +FYEiqcYCYM7a0+GCeCNNvc3lhuUKj8oAQB9SxYmybZFQePkfxtsI1eAT3BAz+trU +7es4kXdYag+eDwjuBy+HmhyMp83x6SGSlts7BS8hxrM1ru6mTbjDAht26kjLhvX9 +buvEiV41XWKvvC7Kzj0JWz2Q22KtymfxHONuRNNENCPsvZXVDsH1QWR+WgsJSIWU +uaRdH6sUEB4H64Ova0jxwQ== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +Am9Yu+Gqw18bW/NjPl12FP5XOEqpXljiF4wYq+qwxLCnrj/ZdT+uPt6kIT6EoHPN +UWjWA2+GAmepZ+N3AI9yZyOjeby2LE+vxLSX3zZJm6NtLbZHGNAq/9IBp7KGkauj +T8Yi0iGWATV7jYfz/5s7FVig8iUzbVri9QbRGXdJYzFou/xApSzurFMReJiUUREj +dBnGtB41oOhYKk0YtUeNL00dgGclpCeNWh97anJnRo/AumevgAycjons62vLoDEo +EGt6PrRgpq6KDneeNi2FPrJEZ3pTao+Z8MULxMN1aRcTHmjWqqXCXDxKL2MaYHtv +OCNFMyE40B0eIqAuq7wneVe1pu7bWKlx1pteGlk5H3Z5ytLglTEfR3s4J9Sco+pt +iTQ1LJ6dVrO6t0qJzAkTRJPrEnDmJMdoZKcbAHvrQeCUalDyjRT1kcLhaKgEXHe6 +BoDrNLwv/ilSqOGMq6lf+7xx7TeADHs5zs/xE7t7MdLbgfFbpjFeTMPMIWhHVQxD +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 27102BC123E7AF1D4741AE047E160C91ADC76B21 +dir-key-published 2023-02-14 17:40:47 +dir-key-expires 2024-02-14 17:40:47 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAuxgnMVH4vwBjMeGvrEODOYcjbCS4N+Wt0SZ6XA5I08HyMf5AbaaF +MDscJBRIUOp7DyLmUwK+jp+QI8pUjjKsB8S0ctb/J3Im2T6CXnP2KgEfVmpNVQmV +XdMm8cRZl1uIZDDBAXizSQ51f9A17TJh7pF/5khYp/SAzl6aO5ETn7ry0ITiJnNa +6cY+400F7ZBA8NuXnCHVGfmpFFsiJKFrS1Kve629eeaNEd3mynRviBXJy5a4NEGf +y42Ev8on6SxEnF9OG0NMJ081/+mP+j8Dsl3+Uehzr9B42MQQfDo4RdYGrt9XolBm +L4eay1ieZEsFeDy0TMfiGGbr90wo1fgGLHIRSfTNLhhPJ/f9cTZPe98rhSgGWiAd +RvK5SljoIOR4qdS9/aiZkj1P+etvh1rIQUcG4/xCOBnouEBK+DDHZFqyMtpMPtV0 +Bxi20DVaMJcyhdfjVqcRSyuR8tlOnTid6QwBj6kgIIfMaC+4Ht6yO/SYquCWlaZl +y7Pu7li8WyW9AgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEA0qiOegrOj0eeeEhoMDARPeCARUyV1GH7a4wwom9lpGETyy5A0wBU +/EA1IAeBB1ayj9AGc9n2dgMAqMnQAwCVG36kFq9+4bHZR/l329evRIwzfv4b1evN +2MJ9/w+pTBj1MfyS+W/h6I8moDR5jLSRie2gs6hrBrO0QwPUVPfz/3LroI+WiyHl +4Yj2qmwfluTFMWtVY49R6lWlsBwbV9aCupJqPPVtGS/Obr8G/jy8rAysIMh0eZYb +m61bqpeGHMDu3QLUvOUqoU88ZG0BrJoRHlfnYO1TdCW62hBNYQtAxShR75fh0wny +NrhThXTw7NAa9/waxZ5LQiu09CbttDKyVQIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +0ptTVp66FEZMwtGiNp3iauW8duMS4qoQqSsR6ShtWqvdPM5pvVeLqNGDoKlY6JUt +OqCeMl60iw6uudaaDvqSLVToCLuoy6LZSSOsUNXJbtyCUQvzqStCWLyw+PpuAnIS +78uU67OZHgqqTEADz8qx7kS+6giNmuQBrtwVnPETACAKcVQB7yLxoMCzlP9iCId0 +0Hs0p94/4Il3aqaHMJI3EJAN5tSMdJNt6dAEH876NCQ1fZNuxFrc6Mglphf5WrqS +EPZD9S/WP1W2Li5LpZ7OPCTXp7TbOXW+UlrXZ3zqinQUC3ntUE8CJ+zkRsLKYqFd +szoJrX4nxeoyftzJmnURRg== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +SOZnblqsVhVMgHSOO8JRB9RjuFHe/s+Ik2aansfLpbBbmdy4ED51zYsFN+0Roc+r +pXMZYrII1Eez4YNvuLo3/Egl5nE8pQF7NfPNyn+w67gaCc1Ll8zer/kEGSqFwzt+ +/nH+W0R8Pc8hTqTGKoLwbfuPkbwjmGbGKvm7vkW1yPlh6RbKmhgv3vdaNNIY8Bwg +lI1GWuBoUkhIKZ3/j60pXoMY8uNuwL57japbaE51sbYGi67SC3a3WQvOr70vOKUj +J1lq6DTB6+4959c5w2V7poyiROmqw8IkJ7t/xfZI9Tx5JlCR3i/csMCnBx6NVgWR +0338/z3IMtn5jd8wIG/DKxOMWpLobHE4HvowH8k9Zc4B69p/qa1kj0qKP36cDwGe +bmNxzd3FkpT7ujaNze5q94haQl0IVU0FIKdQOKl4Q/p4hrEvKyNQMAjtQV7grhKn +b7VL+vavrB2V/23UoHv9f4b80QeaZi/53X7/b0kPVuZItv3zcfTKUoZREq3ZHtW2 +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint ED03BB616EB2F60BEC80151114BB25CEF515B226 +dir-key-published 2023-03-05 22:55:19 +dir-key-expires 2024-03-05 22:55:19 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEA1d6uTRiqdMp4BHBYIHKR6NB599Z1Bqw4TbOVkM2N1aSA4V/L/hKI +nl6m/2LL/UAS+E3NCFX0dhw2+D7r7BTJyfGwz0H2MR6Py5/rCMAnPl20wCjXk2qY +ACQa0rJvIqXobwGnDlvxn4ezsj0IEY/FEb61zHnnPHf6d3uyFR1QT06qEOQyYzML +76f/Lud8MUt+8KzsdnadAPL8okNvcS/nqa2bWbbGhC8S8rtDpPg5BhX2ikXa88RM +QdrrackdppB2ttHlq9+iH3c8Wyp7bvdH8uhv410W7RnIE4P+KIxt3L0gqkxCjjyh +mn9ONcdgNOKe31q2cdW5LOPSIK+I5/VTjYjICza7Euyg03drpoBMGLuuJZY6FXEV +auIBncWe+So8FMxqU/fwo5xm6x085U1MwXUmi4XDYpr/kau6ytPnzzw9J++4W9iC +em5Jp0vaxrDnPdphqT0FWsBAwsZFL7nZRnmUlTgGsXUa0oSM9/MErDwzELh/NwG4 +DNyyzRG8iP61AgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEAvaQxritqKpbDk3YHM5nZdb7HiyF9oJ8jgxja4uwda5+q7JD4ZDSp +fZPR5jet7Ceijf69XjniJQB7HOQOwWe4QDujylFMRYT/JlBlWGQd+48UXdgyjJ/a +6p0pOp7mus6956GRwijqL8uvFQYKW2Vkrl50g1UTqci1Hz+lhcIfqL7flc0bNJMt +FvUl2K/hLx2Qa339RyiEW22ifAp06G2gxEH2Ron/AHiohvvXFD4bZFEfaRerIo9m +DdSuwUOFKqayOgfZM5yNtQL/BmCpARcA+HkLSTIsbeCzrXDB563JdoOhuvp556+L +klgZycCey/YoxrYFJwBIz/uKV7X9QRSqsQIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +oLpUyLkCrnLq9V3b7H+r/kWFi19JQhQNOdVxZOUSByuYxdEo0B87QaTkuMdquwIE +2mP77gQCvVMS5CHtGK7i2VXToU/PatUiSxU1x+r57iT2XeUOGTRXWtZOg/rbXUcM +NgMfqD1BDMxbA902AYt+aj//6ZDjXN8d1jrvSuG/c2XcFl2qAlulFOauC7969qaS +Ok8knOJN5gU4NRULy39NSWS8FnssGAyCnivfPzDO3NoDp+BvptMghnMCcQtLR8Vf +kE0sRsFTBVL47lNmb0C47R0DeNzvn4xRAfByVtZCl7v1fR/o1GevPmJWSWYOVdU2 +inmF89bNVEOqLLIb1nkCjg== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +uJCx1371Nwv3mQcgGWx07KmxnjUGaGTN7Q5Dt34915YY5Y0eRo2eKGbfoUMvkPUy +imL1RBbAHbXlljqTwTGNB4cBc98VxSLjkr6Yi4Uo8MIn5jjxQ4USZx1YBVik6Dn1 +uELrgJwJpgagEJbBZ+mrcQ/QWBzO5NjlEJqJuD6U6l16nabMZBGOBQ+D/GLMCVed +E0NCU+fVcg3nNj9+V1Ml0KnPw8Sgk/AG9DHSMl/p367P99wfks/W5PxbGSL59civ +dGKikLWqP0ZBPteXyX4e/Yd+DEeSi32vMVNlbXb/6w1XUizCGgbjzWOKC6D/hUpU +j+ixJ/07DGvkbso5sDCFJQ6Y9HBHyw+mTyYfQaXM1FSHzKLwjwVDmjowhzQU/o9A +6MCu58HxPuD/mLi6y5TTx6OjAtMRkdzS2V2Wm1+c4lA2DYGyeaHdriIqRQwinwVC +RIvaBvwe6zTubwsiu7oyq3NcO4h7JGYh2GotaJtbpeXteA6FoA2mZ5l/PAMFB1pA +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 585769C78764D58426B8B52B6651A5A71137189A +dir-key-published 2015-04-13 11:13:06 +dir-key-expires 2016-04-13 11:13:06 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEA3WQNtrUSQyVdjYjl2LT11rYDDZ7gEDqiObSakbRKQjLtKsHqDn1E +vv9QbujUQfsq4rwLPCor9qAOsIuNlOcVSHKPD1BZ2F4G0B0NlTWsKyR0Tk8sikcq +wpQMtRO/w/S6zmVRpcAugEKfeolLDgIt35H1vwLUsf8FV+yot3RaD4/Mfz7Cmo+C +SXQfF1L0dJvgYWqDRe9oJEI041ElvMet5O17lejDWPxtLH3AHOqy33c/AQhFaCsb +12OKr9pkn0DrOGjkYBxGH1irN11xX9SmuxDePt28+GQx3+qvTG2phhdlmOHgSTYL +vJ9Ga/ALpciaSWcLpleopkM9eHFiGqGFbEnpBfA9/6G2kaYpwCxKCOsCtPoN/+aL +RarpFyLycXxSVuhm6kvMpQH7rDzOmwvghC5etJXBTsTFYssE7ethRlcUE7J8UGx2 +UKRrafTFWk5sSK3ZBclSfBJjxakHgh1wveYX4QWtqlJevw1TEtt4YJA1YD7wuu5P +4Vzmj+0RYoWRAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEA2QYhb5j4FhadlNCtAKaKecZCbJhBoOtr6hAWIBNAT9QYVAU/si05 +6qD9PXcZ2TyvAbyS3fzVIHX2pcj0KTjFktHn9KOM31CqSgpZ4cC2tI+qqliUfm1a +l9Sq+R6ZS4Xn4at+b/+YxGVFUbIZ0vDbyT7RX/PPy5sy3vpcdjzXf8BjzlOvxWVN +OpR/cIKUb4hXdVZ4tdfnDBLM+L644Hqi7U7NIlQsXJjpNaxnrkZPh77xJCmcaScf +qdDONU8iPyqpLz9362qWagnIQ7C94RVm11pWj008K4a8BoY1YUL0WhH4BqjmZcNE +DKND5rDOtBZbX5DgaEh85C69EpVEHl6/EQIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +waBQ/jdvBXvkiPivxlwSG/HeidcQqaCCQx0enVYXrFLBL8NWwS+Rs/0XmxnY295K +TJ+bn4g4pA3fQj0C0EbSNcHvHBGnSdP4ojxXdFJ0snczCSLY9aXsM8IYl/eO68X7 +fjc2BvaWS7Ecd7hUxjiquGTnJyoy7iVlhYEPYLg5raTZQsAkukJrtiD3ORCD/QlS +ZIyMrj+mcCEr7I0Hmw0CdBAnn99IIKnQtJQZRsVArYR2CCG1kopY8FJUIM+B/DBV +MKeZbY6QPXZ9qjjZZO0UQA/isUsi4+d5iBXS48ipixGcE/7Qd2rl1BRuJTRz/WAP +goO39RpJCDUhplp1Rm/rgA== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +KBt+ubBmVHFClReTjDd674rU9JsSGma7+x8mPWPUiaaxh47Gkq3l3vGWQWB4Zn6A +CfrBIS+pW4bqJrfV3DnZrHOPRBpVbTRiHRlUiRL0YMk3AyFfpKdkF5eQdVqeqr2g +0RiRqMt6A5Xe4yhqBcvoKAi6gRVS0kqyZSDbsSPsbg08vFD7gt708JOr5X6UySsk +kFxlFnD5iA9gm0s+HcsWG51kBet6lUBm3hwYKk0Qu/tzfl5HQZS+3keQDEoYhEFA +ERhM6rkHYoFxa/ZkHOwElgE8CM6Bn82GOyyNfYLGQw7CQH+1LUfRmsSCe3rRicTM +BR16oL9/WD5DkZR6pzqmbAQOmlLrd8PTSTXUNUDKipwrb84k8RtSnGyovFiGXrXZ +iWBvVV17LcJr00D8TRtBJWzcLQD+PJG4EYn/rsgYjBfkJ7fbv54X+Czc1skP9d5r +58gfg164TVLCJsUYOwo1iS2c3GwxB1EXkOPwf1JJGO/ZrR6tvduvXvvFR/J8JUZr +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58 +dir-key-published 2021-11-09 19:16:37 +dir-key-expires 2023-05-09 19:16:37 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAu/DOrbv/4IAYvyxsy/6ivC3q5yCQBWLKHZGYKQa5G/3rem8wen0f +qF7y4ye6U6faWc5kcNMHEKMIeBzMErxwF345qoGHITxbbOWnizgwPgrdCwlK3p0H +1XZGU/TTjoaM25P+ZNCBvGmDQRAtgs2odnv+i8hpu6vrcAUZYXmmw/Ag1Ou2AlLC +mPpbjV1O5SMylgC4IuCBPr3iA+M1kKkvj4LmwU6pJxjAae76GLzzQ/Ffvi7rRpvU +2BHetjehk+7/t8izgbhT4VABtzKgrv9ATnhfEgPeT/WBq0E75iciBBAXRPF5kEA4 +k++NPy21XpL7jkQ4wnMs2HyiFhHbUwbLcoyQ/JVq/WBboSwStYbkdizRpkhJ1eNg +LiD8CPWcZnhWZi9VWrwT0xl+Mu4v6kwo9kVnXhOfcK8Wni9FqiBu2tmNDoGPG1Ac +wptYQSIoujuLgn4MARREwo9cWrKp2w+D7Dt4U7U5OrXL7TXjonEKuEHwRhzz1JA8 +7LXm/wENwn1/AgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEAuxJxHCGOw9DgNtw4wqi78OE3djdiLwbie+2CevKMRaO14IhuQGVK +w1PYsnTuVLVcJl3Y4QKQ4nnbe1QCiGrLq9wueQy7ZvBeZry3f+QD1Q/PAG19n6/7 +hlhXclSOJ/jRah0Gi+QXAycKE5RES/Qn4F5fNE7MxzM0ZQHIlszZLNUrcpeLE9nX +avlqlSqK8FmLPOpOSRrdPtzKP2sjW9UUFVGMfurDYIC51hkZI/nyy8A1C844sfuF +LV6oYpYw5+soA122zBqGqP6vApwFCvWSDcGlx8xj1Irdo+JIDfK8vklu9P11rTWB +R7dZw9pD21reD0pf0Bipzneho6iiL++w+QIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +aMzjdOHri8Kmdoy0qt1a33Y9/e5vKkJQkzCKdHN34Il5FMMCkOrJ1yeQgZyp6mU4 +jPSpUZlr1Iq52x5ers4fH4SybvX16BDq+p6+Zel9f5TpFg1vzdpJH1WOJ3ZoES1N +S8CpiXVz8flc5Ez6Dc7uZGSE2fYRl1Pswn3GuLfR1Wjw0VNp1VgHZk6xYXRk/YLx +OyjZTWEWAF/0qw3usXtvTvh6wGniVxr0rg3zZbesLXti4TAn3B3N6VG1TPOizna6 +s26edpQ6RQPigAuccEwU5iaIQEGkIxcoe61qnPvAoWP3Jk/sZAGCqhbya0CBCH8U +pEW/OauwlDlr3yXEKh05aQ== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +XhAoF04YrM2zJUvrQuEsGhU53Pbf1B0jv5F4YkMlRX2y15rKXKI93vQTM1LbnYc0 +ETkhSOQB2rpnX0bcE+K+x0sWXiMRtR1HSX/oIPDI9MNqHv75eZlEkSaDJHIsQJlj +Dd++tMHkRc49nNNo2J25J3TiBU0ecpVYYvtJzynE3W8tX3io6EmvTehkj2o79z0A +ax2A5JG65plch0ES2yK2jqgBEmkA/eZENDNQAaERXMFJbbpHIMBaGguwCEieJe77 +JBAOxJFRGpL6MhMpcvi5MgEMqfAv3AhlBo93n4apT2CYR8PdCHUZyq7FrgwTSJS7 +ndl3YmvxJ7wnyTXitw0GcSVeQaYMQV+LR9Z1VkmjIwRuHliUn7hR79pYqs3t11aQ +muW8jOrx+5QsiTLEPV6Hs0pzXc9XDw7mnJ6M2gxxF8fZCztal3TNLs9+1O22fxME +0VU1oS7SG6T4M1YOXgKFUP20gLl8sZf+3lGp3aLZIK8psR3vzggpaRSUKgip4Lqv +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97 +dir-key-published 2022-02-08 17:14:26 +dir-key-expires 2023-02-08 17:14:26 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAwBmqdD+G0q3smN5OBFHCcK5pQH5G1GIpFJ1JxCVEp92tTK4ZHnot +9RzMfag6zQFqwLaJ+yEb1DOjTdTMfcUTsj5f3GUqPB+U7shSMAvvAAM+Bx/4m1AU +u6sk4XmPB1bCBfcRl4zhnY6XFIbj0ktuBDblcxHz3lDgHFpBoci9sF59mM14MZ09 +EdwgeckcU5oeq6ApuSlUVaOT8xsKV/yeK4SKaFfDclwPAJuitQ5CpqctP7ExmlrY +sboTDtz7/Xa6OccaGDEUf7TRlipvUX6rvlmvHm3qjdixVfExpa8E5QG79GZTL82p +1zBd3iqc6QEnRDTiW9cMUeQt4EvrwOUVVYPWo3hp1C/iiNzWraDays2xuhaSB0gj +fPatu2CFW5XB2vd9IvIiWeklSFqnF8DL38jDL7DbFiETJreGsDMR03yHWVd0MbPz +OrvAxG4tJn+JtnwhzlbRjnfk53jOTbiM0vMV8h/ztapCiJeT/6i7nVQ1xL2boeYw +5RDUlwZaQiaXAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEApIIcKBWvD0P2YQtsrFKEF1kprJUCEUlWqzV4mVbTcVdzVQpct8t8 +NAO8kDbxRSyU2S6gKecusy4H1MJWVAe2qvKIY974espuJwBXWFgT70jSBTFzjMpB +dAaTTY+kNZa66kjBjCVolr8UfFvL7HaL3CCtWD9ds7+ep76co1h3s3sD2BWW/M5m +V6ML8kYkjRW6SW8YHW6By3G+UuqRiGziJIIwQAoPnNSWrzW6UTLpVRDjdo70bQvU +vvfppUuNNji5SFfzSiakxHIse/eHG/rTNSzOvlpjuZxzPIcekr71eu1hCVHb2QdA +9Ikc5pUQeB0zImI8WJ9OVJDFUEgjJ9LGtQIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +cy+VPbSGSJ5aI7egCwgNY6mgSlJumULFmUN8gfahvMo5hUwVLqP1FtoKIO8yBUc0 +Y47pt6G5a0fjm6mjapFbU7IpqIUl+5gLBRKD6ugx+hr2IoqIVJY7WQUvVMBnfqHp +Z5N6kXfFBT+EbnbLiUqoRo1/AHC6E6CqI5pdhV86UCFydmuLf/MfwJpXiYRJueqk +DnPYEflq+Zu/RReL5aJlVOVuWq0ZpuzUHk4gIicKESLGkv4eI2CvuB5HTeNAB9L5 +laMe+YpoXqgqMae1HT+rupPXYeONPygFXXbNLNVrR7OjAYG2TOaqdUTQkFefFVtD +ungKyPS6LTytSuU/rjWCbQ== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +j1sr6ko2udr+H04YowNoCHoCNLMWuliFgofiNRAEdl801hizMdQOppvJfQVsndF3 +8GBHlZtXPDqoIhWsUzmNtGA4nwYvhR97h+5KQ4WV8TK7jihnc+P46z7UxNP8viqI +AFU7gMI6kz0LGRJ+f+04fVCS2+6lQxD5flkTnwKgKQtPPKZuj2POq5XAedRI6Fr9 +dAO98a7pLArha3ZeZPZtmcZ2pzDG4WYiK2W7LxmCfACzb8akXGbaxXw61sC/lXBt +f4RjsjUJ+DF7Oqw+JHKA1IKK0MHccRKGaiPCeUvIE/iRjwSjSCGSx1sze3urK8eA +lCp/zfnBOojY+2VEPtkZbvROdHIDHy8L/u0I9uTiEeHQILtjw5D43RfiqF9ajHna +XkdAsMlSEa2Iph2XAnyyxlZ0VNTDhJr7Bvs8nnioomfG9sV6qNUVqRFFlpJcTdaz +7Q7nrE6PDd0bsgqYQwqbRRdzrmhts66EUE/5vE9lNbOa6UpmSjdOmZ8lG5AUZkoL +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 27B6B5996C426270A5C95488AA5BCEB6BCC86956 +dir-key-published 2014-07-09 16:01:34 +dir-key-expires 2014-10-09 16:01:34 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEA6uSmsoxj2MiJ3qyZq0qYXlRoG8o82SNqg+22m+t1c7MlQOZWPJYn +XeMcBCt8xrTeIt2ZI+Q/Kt2QJSeD9WZRevTKk/kn5Tg2+xXPogalUU47y5tUohGz ++Q8+CxtRSXpDxBHL2P8rLHvGrI69wbNHGoQkce/7gJy9vw5Ie2qzbyXk1NG6V8Fb +pr6A885vHo6TbhUnolz2Wqt/kN+UorjLkN2H3fV+iGcQFv42SyHYGDLa0WwL3PJJ +r/veu36S3VaHBrfhutfioi+d3d4Ya0bKwiWi5Lm2CHuuRTgMpHLU9vlci8Hunuxq +HsULe2oMsr4VEic7sW5SPC5Obpx6hStHdNv1GxoSEm3/vIuPM8pINpU5ZYAyH9yO +Ef22ZHeiVMMKmpV9TtFyiFqvlI6GpQn3mNbsQqF1y3XCA3Q4vlRAkpgJVUSvTxFP +2bNDobOyVCpCM/rwxU1+RCNY5MFJ/+oktUY+0ydvTen3gFdZdgNqCYjKPLfBNm9m +RGL7jZunMUNvAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIGJAoGBAJ9GfBr9CPy9vH7nmY5Q+JMOBjsSptV3lmAc3LbsE2vjIoXwVUO+9JZI +j1lxW3K7PGkc3pu5VBdXKA4mClgMA7MBnP2I/2mO/Jsk/owxbYgTsnJsfmbUSSfc +7YA2HkuJ64vpvbFJEvgvWKLNNxcMEwbhEA+BWxdVHPVVDNqcM3UTAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +cWy1kFl8KMuKErUUMONTuPEjQHJFDJUesw1bIgaKay5CRSjWJ2Sle/wkh11Q7XBB +dYihklKjsvNbkuSNUOaWfexy9GBif8VRWPjE7E3608GWheN8qDd+4sQylnRiKngG +Sn62WYUTUaU+W+sLyFYo3cI4EGsjzKK8bU4Tm5nNVTE= +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +Z/IDiIyGgAaR9jjJ8kRZ8X+FMKEEIaSWFU6glARQnUdWJ/e3pdEF6zKrsYf8ruGi +YvSDrzXBH6JgKN+JEmH6vrWSaKVSE9wk70giNN1GefyP3HDjIpF3fH+id9TDGr0b +9Im3+H7tBO5MjL3g1OTQUEbm1kbwNE/mYNNogVVaM/F6BnbgwrrS/HnidCIWsEyS +UR8HJOYSkrRRtzhbmC+EGuHPa1RZvyNunjeyt8jB3YGGlC+h0WPO/IgLmqU4ZDVH +oW3Bes2eBk2MW4z7dGmtZVXOz4mL+f3ISM4eMiP1XsRUFvn8/POukRso8LiWkGlR +UGgYsy0POZcMIIHUkzqV+ypoVznRyILLf50gGI5DgmRUuBHOPjG3We7aYfiAB81c +Qenb9JtvXykx9iSFZ3om5QyUBvNA2MdYQBtPExCIG/VZwnTOXIeT26PRChadUy2F +pNtUhGQ8hcmaCR5sLWrmFr+t6KDsshzjCYMG5pYNj1AihEQiY729PHyxM70eFQQG +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4 +dir-key-published 2022-12-01 00:00:00 +dir-key-expires 2023-07-01 00:00:00 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEA7cZXvDRxfjDYtr9/9UsQ852+6cmHMr8VVh8GkLwbq3RzqjkULwQ2 +R9mFvG4FnqMcMKXi62rYYA3fZL1afhT804cpvyp/D3dPM8QxW88fafFAgIFP4LiD +0JYjnF8cva5qZ0nzlWnMXLb32IXSvsGSE2FRyAV0YN9a6k967LSgCfUnZ+IKMezW +1vhL9YK4QIfsDowgtVsavg63GzGmA7JvZmn77+/J5wKz11vGr7Wttf8XABbH2taX +O9j/KGBOX2OKhoF3mXfZSmUO2dV9NMwtkJ7zD///Ny6sfApWV6kVP4O9TdG3bAsl ++fHCoCKgF/jAAWzh6VckQTOPzQZaH5aMWfXrDlzFWg17MjonI+bBTD2Ex2pHczzJ +bN7coDMRH2SuOXv8wFf27KdUxZ/GcrXSRGzlRLygxqlripUanjVGN2JvrVQVr0kz +pjNjiZl2z8ZyZ5d4zQuBi074JPGgx62xAstP37v1mPw14sIWfLgY16ewYuS5bCxV +lyS28jsPht9VAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAxllu7lBzsK4ZRHsEjJ/y94AF/hWXDl9mrPdbajmGAI39nrq+cR/g +oRGPbckQVlARikHgvpbd0KqOYcLf6UfmcKt3PiIPi/3dsNO5PlHlfaCAU+tJOJ1T +Maegoo1EB7CjV2RDgMxg2YrBvpACgKTDVMPB4VJ+DIf3xJr/WGvFDpx0FmC/6lUO +dUrFkPUD1o/YZnZ9hxZjIqiVVNapJsEgJdQFI3L6kvSdVnGO7IUaIWdS9CWin78i +8p3Gb1LNq7eKUawFS+x3wAPfaubcbkr2MEcbJtpvJ60PmXkC1g0wvyevUSS4W19i +37XhMHgJpCJkOb1GWPisKyTWxxZdx4NaRs7upjUz9+3NyuJbDGRb3x93nGAka5we +UNoPupvjdEZVWsQ6iOvT7CJQJXA/NghG6XtSbr+j3nDI/vQ/osaLupTZ28pTdzuM +yq8w1zTW9/3wVX535RTTeITJQf9vzAPlh2Ckeqc1WL446BgOX8dhbv0rROqopYAm +/5dCR3qcpr9VAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +TIquEV7KjeODaQpKP1yb8Xe9k+0iAVDxAQvHc5A/K8FN1SENKoSpZLojuPSP86s0 +MephRU0EnX0iksyg3rJyyRpdnDe5E59qQzmaVeBdvdPZGQuIo5jB7ZoSlA+MwuAK +bdxKvUiGZIj0him7FSMbIP3WS5uUr1mTmL0iN5TzuMV031YOUnZXP8VUpSkgZh2/ ++awwhZXBNWWrPKHinKoQr6GVGhy6wNz18Y+5upLi4WKsK1DhUwMxA6AI8AcJuDtq +4jSOCv1ADT3Io+aakpKDbBdpHRcKyuA/MhuVE1Uj2ESw+8LPpwWHBz5LF/Mp7ZWz +38G3JSK0EUVFp4Xu/tBXrhF3qrGIRwUOzBFVf50v30o0lX0NS2Uqtvxgh+zu7b8X +cqDX91HXZZpX7SAZtAIhDA6OAFMpnzuYF39K/YWWpSJOh0jfFPNi05gZIM1vvMRG +pl6eiB44URtNXrdk31yzyWHUr52UPcZG0lpSqtv8Y9yHhBtq4qRArovwU2Mlhxts +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +taqyC7fvSTO2WVf1z9BU5RLFYhmShbN9qXpXQODPsjhE0X5p7S4MB/6hnIWsCuih +pBiy50MIyKBfPdYJ7sPXxoISBNuhAOxg/rtIraP05mhZM0had5zNMKJekxdj+eze +tcsIocxjbXInOOlReA0kVqSgIZ9jSAHvgkk3lbvJGIp85euSCppXt+cxHiALPM07 +Lan4XgiGXqIdsaIoH4Z83X4Fcsu6Y93RRU3yq0f/rV24otLxoMI0W+wu9zf4RCss +I4qx/V15BX5yMbXtzHUfbRkYrf3/WwbDryV+uWSRkVe7jHPO6r0EZuOxgrhySq39 +8N2rRej7acKWo+A65ZNXjEwM05yn4CVocb3HbIbTIIJXh9F27AK83y5edsGbX7D5 +0U5GA/S+rGe07kk565Fn4MCxOLmadUtZWt5iQh9xOOcHEd1X3Cx91+e6XKPagk0U +xIh4UOU7o/6fajlawzHisz7NQoDSAg8m2wnq1INRiKUKjjIG53FX2p0imaE5k7y/ +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 81349FC1F2DBA2C2C11B45CB9706637D480AB913 +dir-key-published 2010-05-03 20:14:22 +dir-key-expires 2012-05-03 20:14:22 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEA0TuNVBVxd/eXb+7550cNjredjedQfnPdEpHslXWJywLkWSrVcWx5 +im9jKzdjzE7GIdh51NO7P+1TS4TdFfXjoxZfLErTsmnoNGNOyobPLPXFSHUK1f/9 +wr8OyuzMc7a33fRfpB7EisEyyVvbtMkjlnc10wv6hLpglHLMdv5hHi0sBqRLevmu +H/caGhKR2cDq3YG5dgwO2FK/MnARIpTnyzsmcthygabyBve2bEo3CRWB3D+1dH0i +/YzRl8JOOUGOsvJTjASHNJjJSn3M5O8VuFsacCGiJhPCxr5vgDpCJqqZ7brBNZOo +Rg6safxj10CT7eyUDEtjm2EsBClNDT+YdFe0/dKmOMn6r8W7kZMdV4unzGwV4y8/ +CWLcsrapIdtSthOsHYY9SLfg9lA5Lpcnxsc3dCHUot2LBLKJHvKLe0+TlJYvF22J +xeWIl0qMyz+PjWITPKc3VVZKUPGQ9gycPcpAOgG9fMil2/3d7nn3TjRiEx/WwC7a +exZ+UFy5zpJtAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIGJAoGBAKfVqb51el1QpSTdwdr6i3Zde8PmLn3SB+NygFXeeFXVRapmKrhm9B6R +/1rTog0Td701wDkYKPBQLmbsEJtiv70v6kOWf4k4Zs3gwGklKWeGZ+gNjj5jEXNA +m38FJ7Iug2KjbMb7qE4wzPvUqvmxQbFxqEXPfIzSdVixISDqgmohAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +ATWrJMzj9iuKpiyZV9bXFPYa+lRnm0iR2foeOnaWVffM3od+TUy44XXnJM30rzkD +koivRiyimRmwy5CrJ4kseQuWuSlcQhYQTMZsWWX6HXT5qthMWIgIKOdXn+pB5NPN +gIk8dMkxyP0i6P1/emuR3NUlXR8IuypFCcOURj/3/NA= +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +h6XRRocHvK6YkIhSvnNKF7BowgbK6NIRvP+yn5q0iCAozYH5O/glcluuoMC1KlzZ +Ms35TkSZHgcKicPtlpY6uQ1UPTZrflKwSJUUDpmY0Uea3HTRzUdKZHEu6xccwNos +RE4Rd/Meu4gQEKPH6qCPAPfaC/omrW8JXvWNrDxSujYO+YspIIMWTPCwadoV9fRG +G1t8O3DXRfBoEDXRxqjWyshFMOd2x/BWr6hgaymnm9ErV/TRodyQXdcLH2+Oiaio +D9WHvVduW57J8h3CJ7Zdgw/BboYQQKQTs9XKD303MbsWrIKu5H8yZmvI7+/7YvwT +Xkj6b/3aqQ6UrnAFY/efOOKIKVDH1okEyUPnhwvlundd4EpNHtCxwQGd2BvlMU5w +m7zJoYNgVbfMkz+lwuWhdPVGRGcZMtQk0+ehu1Pe0dXA/kbwkdnchXycw/AiDhsn +9DFNwZ6F0JW4WNb5KIAdvijvtEz/5YlyvGOIhBJ/wHGCfBXAMArlZ+/NsMC0mDUM +-----END SIGNATURE----- +dir-key-certificate-version 3 +fingerprint 49015F787433103580E3B66A1707A00E60F2D15B +dir-key-published 2023-04-05 17:47:59 +dir-key-expires 2023-07-05 17:47:59 +dir-identity-key +-----BEGIN RSA PUBLIC KEY----- +MIIBigKCAYEAxVbS0noZKz1Ei6858RGyyuQgwQUKG4Urrp2BiAzkYxwX+6fURlut +AjeLb4XysqCdNdUipuLRQ2QIy1C220QiCHV6jZAsM4tmEq6TpK6q1lxi5YPKqbGS +CfUQFT1nO4s4DCYSLCwiRNy6bMe8tNHc0MpXP3loCbPkYCoXrEL6vYIROw3oeGWE +KbFPQrzYJAPHgUubBibsY5lkUY9N/5QZw2y1bn+dq9mFOoCIHLd6DkQmySmftnMe +QrpYA2WvE4M5yN2HB8QGT7TdzXPPL6889rFw/mjqYExQPX7cqmILkchsB7I5whjA +u0oodF8Y9ooK9QT0GeK4h3xQhzNG17anuUxbZ7sxzmBwBNmkNyLWEeIntazyjRFr +P2mDY/9YK2JOQKkh3tKl1whcCG9ZtAhKmm/ijG7OrhqtusdGKBXIgALf4f111AK1 +gNcacDx2fJzRHuNK8zkIORAzStxKdLbAbBNeLENk1zBjSkrxCOJH4mBpr8TXULq1 +ThLI/8OzZq4LAgMBAAE= +-----END RSA PUBLIC KEY----- +dir-signing-key +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEAvv0TXkvzn4wlk6zF5qvalq3Qt0s3Uj4N6AqDRiX4ouPR3u64ZKvO +V0po5LKo1NiqFsHQW5U64SVYpG6z6QkG0dzCXGyOrm0FVlTA4OE2UErBkjzwRpMZ +wCyTRunJ1wfPNsptuV6zqVWijDwY5BNyHONJFcghHQS7zcvRKDzAMVlB5a/hv2Za +8Qzak1CdQvqec+Zi6II7OKuGhm8S2IAi5NVTrFgA7H8JmP6Md1ObmUBstoTzuFHi +qUNGmXYGhDnRYO9AhRIA3WOq8BYw45uAV6eXbnW6wqpf2IOVaKoPFkV6nWyE8HW+ +7fYT/9hrclPvKj9hJb0MGgbZ/a9cYxuTcwIDAQAB +-----END RSA PUBLIC KEY----- +dir-key-crosscert +-----BEGIN ID SIGNATURE----- +KnIxJUWxDkEGPhUQfDw7rbln6noHLeOrirQ//QrTKWb4vXIixy28RVieCl8wp8Ww +bxBugbfp3DJAWBkONFkqXgWkhSV/FI9OGdchZHgb7tJegdu8667RoaZC4uEOoZ8R +VQDLt8xjs3cj04VwV+s1biVTpUXRaaUbgKfYUpKbeD7Cc+Eo1Vh/QT+WaaDlWKvm +VdbLycF11zq21Ud2bHZ0I9kuPaI3w8K7KRIjrBI+AYLFwQrLMwLOkQhZf88ZMLnG +M0/g14uVpixvSDaYkSddnAq/wWg6ISlbYtFDqKfyfoiMjQ+ejd4oHwx6CDVbEU+z +rxEsJ0aTsSmEFomL113M6Q== +-----END ID SIGNATURE----- +dir-key-certification +-----BEGIN SIGNATURE----- +Vd3HuW47Fd7TUhJhSy4AiDvqWACiTkzEXEHDw1p0MqR8ZKh4yS56ykk4ZecZ+Mq/ +jmgMK2y79smy0jNMAKQCONUVQhZ8qoXQaQqI0DCV3NogujhyPeGSOD3ARHbh6LVW +fYrRvKxqEtckTlBC+hoygE7R5MehK9XclHeCO+p2e4jy207yJMZqJ3JDZy5YXTgI +JfC0ldMLmFovUZZyFHN7xgJThAgD6Un3xdRmwHZZYLlQvwEsVXOzMnQUPtrhqoZZ +aiUQ2/13t8//QfMqQyD/dIOWB7TPDEQvgOXK/ioQBiZ3znI6lLOTBzCvqxVmpJ69 +nzAJ8vktK/chgntAelh+aQhlgGrqM+jO1gB0w+Y1Z+BdOHa2H7YK26WZDtE84/Tk +va4+G/rIvJ76FGPA9T06L6p08W9gk3uXHtKwriTVhkQjkRKcFTQrlez9kv2XlTgu +RXibEQLzINVX+oo3mmA9M6EcLnBW2Eip2vec8DFrQxHxG5jAJl45f2tKrnYQbiPz +-----END SIGNATURE----- diff --git a/NOnion.Tests/Directory-Samples/NetworkStatus.json b/NOnion.Tests/Directory-Samples/NetworkStatus.json index ecdfb51a..43a23d21 100644 --- a/NOnion.Tests/Directory-Samples/NetworkStatus.json +++ b/NOnion.Tests/Directory-Samples/NetworkStatus.json @@ -1 +1,488540 @@ -{"Version":{"Case":"Some","Fields":[3]},"VoteStatus":{"Case":"Some","Fields":["consensus"]},"ConsensusMethod":{"Case":"Some","Fields":[32]},"ValidAfter":{"Case":"Some","Fields":["2022-09-20T17:00:00"]},"FreshUntil":{"Case":"Some","Fields":["2022-09-20T18:00:00"]},"ValidUntil":{"Case":"Some","Fields":["2022-09-20T20:00:00"]},"VotingDelay":{"Case":"Some","Fields":["300 300"]},"ClientVersions":{"Case":"Some","Fields":["0.4.5.1-alpha,0.4.5.2-alpha,0.4.5.3-rc,0.4.5.4-rc,0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10"]},"ServerVersions":{"Case":"Some","Fields":["0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10"]},"KnownFlags":{"Case":"Some","Fields":["Authority BadExit Exit Fast Guard HSDir NoEdConsensus Running Stable StaleDesc Sybil V2Dir Valid"]},"RecommendedClientProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 Microdesc=2 Relay=2"]},"RecommendedRelayProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2"]},"RequiredClientProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 Link=4 Microdesc=2 Relay=2"]},"RequiredRelayProtocols":{"Case":"Some","Fields":["Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2"]},"SharedRandomPreviousValue":{"Case":"Some","Fields":["jaj43bDL+z6z8nV6JOrHRMd488DD+/t6fHZp9bOMib4="]},"SharedRandomCurrentValue":{"Case":"Some","Fields":["cvXb9GWk4MPwCyUXylg6IIb3AlnGAv4VL0QuMPUCwOw="]},"BandwithWeights":{"Case":"Some","Fields":["Wbd=0 Wbe=0 Wbg=2771 Wbm=10000 Wdb=10000 Web=10000 Wed=10000 Wee=10000 Weg=10000 Wem=10000 Wgb=10000 Wgd=0 Wgg=7229 Wgm=7229 Wmb=10000 Wmd=0 Wme=0 Wmg=2771 Wmm=10000"]},"Params":{"CircuitPriorityHalflifeMsec":"30000","DoSCircuitCreationBurst":"60","DoSCircuitCreationEnabled":"1","DoSCircuitCreationMinConnections":"2","DoSCircuitCreationRate":"2","DoSConnectionEnabled":"1","DoSConnectionMaxConcurrentCount":"50","DoSRefuseSingleHopClientRendezvous":"1","ExtendByEd25519ID":"1","KISTSchedRunInterval":"2","NumNTorsPerTAP":"100","UseOptimisticData":"1","bwauthpid":"1","bwscanner_cc":"1","cbttestfreq":"10","cc_alg":"2","cc_sscap_exit":"400","cc_sscap_onion":"500","circ_max_cell_queue_size":"2000","guard-n-primary-dir-guards-to-use":"3","guard-n-primary-guards-to-use":"2","hs_service_max_rdv_failures":"1","hsdir_spread_store":"4","overload_onionskin_ntor_period_secs":"10800","overload_onionskin_ntor_scale_percent":"500","sendme_emit_min_version":"1"},"Packages":[],"Routers":[{"NickName":{"Case":"Some","Fields":["nestor00patof"]},"Identity":{"Case":"Some","Fields":["//v7UKg6QUzCG0zak6lnSwBHBeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R42nQguGr0wFhJiYkT96zjPk35BTNKB5xN6vi9X4IAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:44"]},"IP":{"Case":"Some","Fields":["24.203.134.20"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheWalk"]},"Identity":{"Case":"Some","Fields":["//qR8YZj+Mzo5yWiST+Fs5C40zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6wQBNtJmg5AJipzhS/YOeudZgC05SFRoqFLQFqaf+BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:43"]},"IP":{"Case":"Some","Fields":["81.169.159.28"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:423d:b500:d308:6847:718e:e2a6]:29001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddetor2"]},"Identity":{"Case":"Some","Fields":["//eMRLpua291JQlbvhTvfL64l0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYWdfEdZXcFugP3a34dtEVP7qaX3TIqx2qqwxJ2RsNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:19"]},"IP":{"Case":"Some","Fields":["144.76.75.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:191:9388::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DoctorWho"]},"Identity":{"Case":"Some","Fields":["//WZlUw4IaKGIOlcCMvcYkXp3ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LY2BL9w1aKHumdXtgU7JoEmbpnxKYKcfgXjmW7wJM50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:07"]},"IP":{"Case":"Some","Fields":["195.154.200.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarkfireCrypt"]},"Identity":{"Case":"Some","Fields":["//MDHROq1Y7oSa1Lc4BR3h5R59g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l+PlXOkaTlX5b1EBXRz1PCKFXv/vCOvgN4WAT1Lm9as"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:54"]},"IP":{"Case":"Some","Fields":["31.7.175.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitCz"]},"Identity":{"Case":"Some","Fields":["/+o3ttp2xFjT41R23X0f0KmK5zE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WB9UBWKnwEz3aPhfr391VobxRJy9ITmJBZHOyfGat8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:02"]},"IP":{"Case":"Some","Fields":["195.123.247.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9403::215]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bionictor"]},"Identity":{"Case":"Some","Fields":["/9SzRqffegCrcshWPyacNSj+Qe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FemBEjuzXjIyeigGk8veC1cMoItsUBblUipJP8vHNs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["68.193.108.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["euler"]},"Identity":{"Case":"Some","Fields":["/8P0vk1cOSJG3Ho3slamFYw9hWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["shXlPx01EWdJgX2HZLhxMgDUo3L8WYrPSESZ4E/ZHB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:27"]},"IP":{"Case":"Some","Fields":["176.10.119.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SSnetNode"]},"Identity":{"Case":"Some","Fields":["/75MdAYtkHe4vJuzPSAHJ1b8t9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3I/O1VDxTG0UinXm++1U0mK1KXyGqadfONkjy9iK8AY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:46"]},"IP":{"Case":"Some","Fields":["72.235.37.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9leia"]},"Identity":{"Case":"Some","Fields":["/7xpRns31qxmWYu9KV+bDXQRmtw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["df8Cnl8+RKbCOZhcSQkyh8ptB0IH+VKN/TWXECWYsE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:44"]},"IP":{"Case":"Some","Fields":["213.239.217.68"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlazingMonolith"]},"Identity":{"Case":"Some","Fields":["/7u6fxxzsHqA9a91mirvSB8UOJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/mXRyCH+mcxg8/cpLmQlI5JMTwAay1IPTtZcEmDFvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:21"]},"IP":{"Case":"Some","Fields":["65.108.42.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:4e17::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/7YFyG1gaZGt7XhCJp+iWgO0pNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["12J9YSEhPd59K8irmFSRS+mBYwYh9FQD9fbOphtdVvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:38"]},"IP":{"Case":"Some","Fields":["165.227.174.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lule"]},"Identity":{"Case":"Some","Fields":["/6cr1oO8L8+Yg1bmvsHkkPMT+wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YWu5KMogOQae+3kqNZFt5htX34pVyHn3ovdcnuZL3fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:42"]},"IP":{"Case":"Some","Fields":["193.11.164.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:7:125::243]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay3L"]},"Identity":{"Case":"Some","Fields":["/5/G0TD6Jq466LI2iGkdxBnw8i4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bdp5pHxi3OIHNo9Q7WimOYctqcv5QzH56sHyiwaVbQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:40"]},"IP":{"Case":"Some","Fields":["89.163.164.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:12a1::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1jcbcaulbxid"]},"Identity":{"Case":"Some","Fields":["/5KaAftYuJiOmtenXejEFEhqgus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SagkyOdAD8Bz/eOQ0b2fzGeOAMbQxeZFWB9PhIdXD14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:33"]},"IP":{"Case":"Some","Fields":["141.136.0.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["einNettesRelay"]},"Identity":{"Case":"Some","Fields":["/4t8rV9QiXJQnXn5M/sk0vUkq3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmfzjIb3vu93yEdVYgZB090ObhZVIZqvhhjiZzA/Qsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:10"]},"IP":{"Case":"Some","Fields":["89.58.3.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:b8f:1478:68ff:fec4:27c7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MehlTor1"]},"Identity":{"Case":"Some","Fields":["/4fknvMweLBKXeJqrhcN34uuE58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6WD9MCRkRlioZdQxylaHZl2DCKj7sLFSZYqGypsSBgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:35"]},"IP":{"Case":"Some","Fields":["188.68.36.209"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:33::1]:59001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RicsiTORRelay"]},"Identity":{"Case":"Some","Fields":["/4alnjWiz38nRNp2jfvpCGCGhnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4nfV0RBlqPcqYaPn4enSp04GU74ylRrCTwc3J6P6Ymw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:08"]},"IP":{"Case":"Some","Fields":["45.142.176.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:c5f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssrv"]},"Identity":{"Case":"Some","Fields":["/4MwDUYWqQNbN1KyWVS7f4fFRJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRvJERoidoC67EWzjQOp9zYDr7tQzmALWitP4bZodM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:46"]},"IP":{"Case":"Some","Fields":["83.43.228.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra1"]},"Identity":{"Case":"Some","Fields":["/3wmBO/ui1iY/eEUWkyjXI5eVgc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qzB5Gz9HA7FMH4cFgQsC1XDoOOhOXiabUuH0hS4H1HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:09"]},"IP":{"Case":"Some","Fields":["193.218.118.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::62]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay01V6Rocks"]},"Identity":{"Case":"Some","Fields":["/3JI/sUFm8U+cP/+3cyMSYMb26E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXEO0pcaeMmauiRGfJKqYIBmDyOSJHCNyGyNHPNmFtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:18"]},"IP":{"Case":"Some","Fields":["185.207.107.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:778::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["/11Ti3LayFTUyP46Y3wkL1tUZJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJUysR6rk1w1s46Fs3lKME0YSv+LCSQSE3C2G70Vif8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:50"]},"IP":{"Case":"Some","Fields":["185.220.101.38"]},"OnionRouterPort":{"Case":"Some","Fields":[10038]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::38]:10038"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["/10wUF7pRUpTyLiEU42O+YZjLJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKRVi6r3l77OflYQTFg4VoHGU4Rlz+JGDtIkh1fO+OE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:26"]},"IP":{"Case":"Some","Fields":["46.38.254.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:2:44cc:3dff:fe89:3297]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0170"]},"Identity":{"Case":"Some","Fields":["/0UPaDt75JRwO5CCfbLb0FtiRHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4ReKHGrM3/V77jwVWAYfyEW/6CLxY6ZRF7aeYwlLH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:38"]},"IP":{"Case":"Some","Fields":["185.220.101.170"]},"OnionRouterPort":{"Case":"Some","Fields":[10170]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::170]:10170"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexnl1exit"]},"Identity":{"Case":"Some","Fields":["/zdZL5qn65OAxe+BfdGlSDqV2Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9MDNL+PhRejm+hDA3uyDyJyF5ZFzTD0P9pAloYT2K2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["185.130.47.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e03:2a::bcde]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer75"]},"Identity":{"Case":"Some","Fields":["/zXvDrRVBDytCRSWQd8CpjlDwdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jR5euqSuES0zUoR9WcWDQh64dHgzWyCZu7oM1W4MMVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:20"]},"IP":{"Case":"Some","Fields":["95.214.52.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8175]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuego"]},"Identity":{"Case":"Some","Fields":["/zU/XQEeaezaEKV7RtBrx7P+sZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UiiQgLGbUkKIim8GYVQ6Dm4XbP6DUC0G48cZGsx4o34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:49"]},"IP":{"Case":"Some","Fields":["148.251.90.115"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:7071::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay"]},"Identity":{"Case":"Some","Fields":["/zBZ535dIvHDsgzL4SVpGtJ1iN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eKqltXPvvinr6P/Z0uwXjOugM3pq568k1HgmxSKuCfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:44"]},"IP":{"Case":"Some","Fields":["185.163.45.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsjeufh24h6"]},"Identity":{"Case":"Some","Fields":["/wbnoGihymbOWT3OheJHeAfEgwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xcakia/TtBOzqMUXoQlM/actwfp4GMDSp/0Ueb02T+Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:38"]},"IP":{"Case":"Some","Fields":["51.15.37.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:e50::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DareDevil"]},"Identity":{"Case":"Some","Fields":["/wO+To+efkHix9loLOTWSW/uBiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8OkwazxUL/280M02cfXYmafA1fpBqXns7BZHznqkek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:26"]},"IP":{"Case":"Some","Fields":["216.73.159.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tgtor01"]},"Identity":{"Case":"Some","Fields":["/vT2sJAO1JLd1YYoamasGU36kBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWA/V35ZAp9TGPUo055vCgdiXy2x/vaSPVjfB9pxJvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:40"]},"IP":{"Case":"Some","Fields":["192.95.52.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eierschwammerl"]},"Identity":{"Case":"Some","Fields":["/t9JmJUadQ1deXTfJDA1SZ6EiC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UBEHrbSt7uTTLfs6utaHe9yI6qeKw0xug1TLlQ+iOyg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:58"]},"IP":{"Case":"Some","Fields":["37.252.185.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNinja"]},"Identity":{"Case":"Some","Fields":["/t1DqbmvmsuyZOWE7jVsVdg0UCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKM90BTY6furnqziZkpt3kjpRhtKkb4lUaubvd6A/l8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:59"]},"IP":{"Case":"Some","Fields":["85.119.82.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba8:1f1:f05d::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/tzapN38uYpbdAnw3XuWmZTBX10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTjQiH3e9j6WmBZ7nzRiSC7hdIaHRZ+hwxbKhUNOqxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:12"]},"IP":{"Case":"Some","Fields":["54.38.183.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::165]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeroCalcare"]},"Identity":{"Case":"Some","Fields":["/tL12BzKBmmOVApCA4yz1q73R8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eElcC01wnJLuNolSAMspUMN3ba3gh+5o9KCRV7jWCwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:13"]},"IP":{"Case":"Some","Fields":["5.2.70.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ADKP"]},"Identity":{"Case":"Some","Fields":["/qrpusi2dHu8OhTZ6aw5JKD946c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqzAhkEx033rz7OfAgUnTg0lZSJ9WqXBaAyhwGFkn0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:52"]},"IP":{"Case":"Some","Fields":["185.41.154.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.2-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra92"]},"Identity":{"Case":"Some","Fields":["/qp8gC29Z3jVMcXLzfsuW+hLoss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FvMO8NKYm8mRxJ3C6cdPg6OhNxSK+2937oK3d3m0kYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:08"]},"IP":{"Case":"Some","Fields":["45.141.215.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chito"]},"Identity":{"Case":"Some","Fields":["/qMh2PStdzIg/A1KKuefikpZ20I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RdLBk0/7yMT8bQKdEghNX6r1s8ajGvEp70rxTKajydQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:43"]},"IP":{"Case":"Some","Fields":["80.78.27.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:8078:27:0:504e:1b79:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["volodymir"]},"Identity":{"Case":"Some","Fields":["/oV8MENBL9VFTtX+9VxMVy5bcM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZNBRh5VUgGiMo3556MwdeEDNYBgJL1LxhzFVkNf10fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:15"]},"IP":{"Case":"Some","Fields":["46.229.55.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Voomoo0o"]},"Identity":{"Case":"Some","Fields":["/oAy3rpVOlz+jKjSS1ND3G9vIc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["piJ+DLSC1mFGKa43awYqJ2n6mol+D7ZHX2NPUE518Sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:41"]},"IP":{"Case":"Some","Fields":["185.101.105.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/n+cJVYsoWpX/xdgccHSJP9SUOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AJd05IULN0IB7D7wQUmIHwuIKqJdEImdC6hisMQ9Fuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:38"]},"IP":{"Case":"Some","Fields":["64.20.57.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rangiferine"]},"Identity":{"Case":"Some","Fields":["/nWlY9cIttFFmIQDZj/Ki/2I7BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i1cinrRXoyPCL4ii3B85RHK4YaYnjdccZYwQ97TfpvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:10"]},"IP":{"Case":"Some","Fields":["158.247.210.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:1c01:76f:5400:3ff:fed4:c583]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W0nuIKVExitTor"]},"Identity":{"Case":"Some","Fields":["/mvIToSYnSBYGDnwpy8Y0Edtekg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eRirzHH/Y6X0TAGoGlmFP/2E871At1mvkZ07MLOvEEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:02"]},"IP":{"Case":"Some","Fields":["212.71.238.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fe03:94e4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["juliansTorNode"]},"Identity":{"Case":"Some","Fields":["/mI9pOsrpyeR2aoRr3ySmQX3SDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uyg131tbHfSfY+Ot4HRho+aD7KLc3fSQo8N7UesbuZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:56"]},"IP":{"Case":"Some","Fields":["91.2.206.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HandStanderd"]},"Identity":{"Case":"Some","Fields":["/lvkRqLJSuyoLLtDY2fugP1hXKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUVmqHof/BoXprmfJcO27TRtuo8Oza3uQUfn5vUGK2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:33"]},"IP":{"Case":"Some","Fields":["46.20.35.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["/ljsed1M0BxSSzd9Gnvb66ic9tU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NYVcfeu9bsgn4ERFzpvypFdezao0Aks/PihgMRVRDtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:47:22"]},"IP":{"Case":"Some","Fields":["195.142.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["turing"]},"Identity":{"Case":"Some","Fields":["/lbp5T6PaQtrSLSnYhO+ZPK3sa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wy677pqlelOzpZZeFuS1UORgUxKuy5nZRQMh8aokdUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:55"]},"IP":{"Case":"Some","Fields":["85.183.60.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc09"]},"Identity":{"Case":"Some","Fields":["/kaYoDPlRCxsHRuXlh+hg7+8e5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qgBrYUcLiiEU9ypsYn07PeMo2tQcHutjLUmDZNNx8Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:06"]},"IP":{"Case":"Some","Fields":["185.100.87.139"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/js+yuOYH1rZ5bRSyH9Albt/za0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8xCEChSXjimnNZCyILDahDaAjkFTreBadhQAM+oSHpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:18"]},"IP":{"Case":"Some","Fields":["23.128.248.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::73]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["x2lans"]},"Identity":{"Case":"Some","Fields":["/jn3wXwe7XzRDYT5mGpFjhgMDxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uO2PA0Fgg223pPtm3f4sfBd/Gb6WRjzEaVRIK4PI5iQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:31"]},"IP":{"Case":"Some","Fields":["45.131.138.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay09V6Rocks"]},"Identity":{"Case":"Some","Fields":["/jTjhT3vr0gvplji5D7jPziWLv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bC8DSHqmLdXpwJol7OtyPPQOPa4akVEIeRp8mOYrDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:12"]},"IP":{"Case":"Some","Fields":["5.45.104.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["/ixBqkfDAuFNkxhqt2BDSSuUDxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wxw+6wyQ9qnt0g2Z5U0xwlM7UuS6WXG65CVtmX4BYHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:07"]},"IP":{"Case":"Some","Fields":["80.64.218.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::f1a:87b2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PyotrTorpotkinOne"]},"Identity":{"Case":"Some","Fields":["/ilhgAGIM68DqOrNWJSmFGI9P3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OgZPJYxGCr6fLNlrnLWNaJyKcrvDIqIzeuhMYlxDNpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:17"]},"IP":{"Case":"Some","Fields":["149.56.45.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::17d3]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed"]},"Identity":{"Case":"Some","Fields":["/ht0x87gSTYTkpqS+aHYkOWNxkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zMxF9zXkbgnJA29+TLET1ijuis+1sK8CE6OsYHO245A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:19"]},"IP":{"Case":"Some","Fields":["195.154.237.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI25"]},"Identity":{"Case":"Some","Fields":["/hNkWc3n9ELw4QCb3jyKRoVrUqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZhuYQmENW3r8Q2BL34VZYkLFqZ9r+mCEU6bdMnNjgs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:44"]},"IP":{"Case":"Some","Fields":["171.25.193.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::235]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueStar"]},"Identity":{"Case":"Some","Fields":["/g+4e4Ig+BpfHTrgqjWQL+n4qtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["On9KK31X6SgXqWn018IGZaaw5WZ3yc8ESA7RK1bEO9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:42"]},"IP":{"Case":"Some","Fields":["94.130.24.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1e:c88e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COCAINE"]},"Identity":{"Case":"Some","Fields":["/gjb36tttUzsp/JdJZ7fHVl90ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HoQVeeSTGh/Q+NYHmBIvYGrWD6zzNnkdsL9tF0WIIZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:46"]},"IP":{"Case":"Some","Fields":["178.175.148.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:189::3582]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex42"]},"Identity":{"Case":"Some","Fields":["/gCjqDVoDmf7vIlack4mV7slPpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i+wxsXtwhtC0vDsocNYKFz1fej+zzIBrfljRnqONBtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:17"]},"IP":{"Case":"Some","Fields":["199.249.230.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e641]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebigowo1"]},"Identity":{"Case":"Some","Fields":["/fUD5cacmf0W6Bv3hfXC1pQdlxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MgWc3xbKwvIRWmcY+K1sVyZjEf5yZWQ5ZnZE1bXU6bE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:46"]},"IP":{"Case":"Some","Fields":["213.171.209.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:10::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marmotte"]},"Identity":{"Case":"Some","Fields":["/eGl99EojxD7PpXOWmffLVYN/FQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uGxdlp/3Fd11S0+JVIyCpDYE646Wg35eJD/IYGcZGX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:52"]},"IP":{"Case":"Some","Fields":["31.133.0.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4571:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI17"]},"Identity":{"Case":"Some","Fields":["/eEnMFzEECZeZrqC+1o+gBv9GE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jt6D7q20ou3Ey2ClyhFKtxFXWAwe9U+A4ZXns0vsOyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:20"]},"IP":{"Case":"Some","Fields":["171.25.193.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG5"]},"Identity":{"Case":"Some","Fields":["/dnNdAZYLgtWxKJ9RBJq6EPq9t0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p44PT3PnBc+6S78mIF3lbT3gc20eAgMcdDdytEXi3N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:58"]},"IP":{"Case":"Some","Fields":["193.189.100.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::198]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN24"]},"Identity":{"Case":"Some","Fields":["/dcAx5HMa7CsHCCZqCy8NnrUt2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q5Od2YKnlbv/L8DmBxMH9bnE8BzIqBWposcyo+snpyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:11"]},"IP":{"Case":"Some","Fields":["199.249.230.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64d]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip4a"]},"Identity":{"Case":"Some","Fields":["/c/qGMxkRhRV3l6j/DGDTGtC/sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/AC4x62fb/X4QYE7oNj1V92nW4idz9JF6shK1j73MPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:27"]},"IP":{"Case":"Some","Fields":["185.220.102.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::251]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE76"]},"Identity":{"Case":"Some","Fields":["/cRWtAq/BO0BxNLfYuPjQCX7jdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jqgZud+uGA3HeKVTvMHDp055yKN235SxHVCDkjbGbdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:58"]},"IP":{"Case":"Some","Fields":["37.221.67.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:106]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["/bqPtICZdTUK+DZZiKNzANCRA/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTg5aXrGeOfB/BN8GKr5XQqHQLydp23dco4mUccsPo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:20"]},"IP":{"Case":"Some","Fields":["185.241.208.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dorrisdeebrown"]},"Identity":{"Case":"Some","Fields":["/a7RXJjP56QW5WdvYUJU94QGEFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EBgE8jUVtsHeG4oZhLeORMbCtT7abqt+abZKiC/bets"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:10"]},"IP":{"Case":"Some","Fields":["185.220.102.4"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vicarious"]},"Identity":{"Case":"Some","Fields":["/a3VnJtavFc87SIkTrHub+66ClM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UcPyOmaJf3FB2nYUhEA6qsuNn2DFoLSXMjevXbfylno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:18"]},"IP":{"Case":"Some","Fields":["87.98.171.152"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["camilla"]},"Identity":{"Case":"Some","Fields":["/as3IqTqaobjXZrIQiLz4R8vbW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["usj9YGCTFPobAeP3UU+gUYW7VM3x98IzRJ6G3D6+xxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:53"]},"IP":{"Case":"Some","Fields":["130.61.51.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8000:6a00:2::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob03"]},"Identity":{"Case":"Some","Fields":["/Z140TLXamNoqYOxlH85unobC+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S0BvbPG/8ro17B+H8r5P1V3f0X912owd3csyUQc/wY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:27"]},"IP":{"Case":"Some","Fields":["188.68.56.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f847:745e:86ff:feb5:b3c8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FQ63HLEW"]},"Identity":{"Case":"Some","Fields":["/Y8RyTFaeZgZiC0OMEv3nyva5rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/o4t+zdX3Yn2gPV3vjSRvtsrxKfkIVLey8sSn32z+Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:49"]},"IP":{"Case":"Some","Fields":["62.210.85.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dezember"]},"Identity":{"Case":"Some","Fields":["/Xm3+SMIWLSOdfOJZhhAxwJREHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BljxfjyxUKRGbdTnDhD5Jf6V1TSOLGjkhgGmrAkUmdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:19"]},"IP":{"Case":"Some","Fields":["194.55.13.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:31:141::1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drymm"]},"Identity":{"Case":"Some","Fields":["/XmMVIPD7YP8o5BQxWn/6bemSYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["itNGZRbwBus3bBQCd7rlRQ4MSaoNDYp2MULHZ3tw7vA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:57"]},"IP":{"Case":"Some","Fields":["80.146.119.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lw"]},"Identity":{"Case":"Some","Fields":["/USRJ9MNj10SRlPZ73Nu30oStNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["stOfyicx8ML987WQA37llEU44+OWWVZ1k+WZ5rQmA/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:26"]},"IP":{"Case":"Some","Fields":["77.174.62.158"]},"OnionRouterPort":{"Case":"Some","Fields":[43261]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a468:8d92:1::baf]:43261"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Desson"]},"Identity":{"Case":"Some","Fields":["/THsKZiB4pN38Kh+4HmvPapV+tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ied6931/DbVca5Qpew/eLpPJFoTK+LG+SVx9DstULtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:14"]},"IP":{"Case":"Some","Fields":["216.98.209.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nova"]},"Identity":{"Case":"Some","Fields":["/S+biBrGQBAMQo30fcmoY9wvJTY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qPBzm+RS0gXNn1Hh+GEHf5+PGukF7v4qEA83ZpyD+ig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:34"]},"IP":{"Case":"Some","Fields":["37.187.17.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SummerTIMEBlues"]},"Identity":{"Case":"Some","Fields":["/RlSsi71PUkeDX487LhcPO9jyrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MsEylJFvJJdae0FB1nujPsIJlvLe0ILDP3WWJAdeCxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:13"]},"IP":{"Case":"Some","Fields":["37.201.108.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["velarde"]},"Identity":{"Case":"Some","Fields":["/RJ9EBTtPTav5QVYqIvV6Ns0pkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjxoaXpAcu9KBh11r/qUYn6nOq+PA7cGP3sUGORlCMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:58"]},"IP":{"Case":"Some","Fields":["179.43.134.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inthedark"]},"Identity":{"Case":"Some","Fields":["/OX/v6Uo3kvYZ0rPqlruGd2eC68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5M0076FHsU9aAflE6E29lcaFUGzHhewth08hCs/qbgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:16"]},"IP":{"Case":"Some","Fields":["162.251.116.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluppflupp42"]},"Identity":{"Case":"Some","Fields":["/ODAX34tC4JfoP0qN7pbrjw9bhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["op5NmVXPp7DEPppUdqKJ/fmWdANRXkRHLT0Ya31MBLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:30"]},"IP":{"Case":"Some","Fields":["148.251.68.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:31d6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["voltorb"]},"Identity":{"Case":"Some","Fields":["/NV5Qud+qDWQDR/UR7wftaMlqS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hw+FRdYJ6U8hSOpB+sr7TSYdnX1BHQC7pjN/x7qjke4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:46"]},"IP":{"Case":"Some","Fields":["112.213.37.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:9400:2:0:216:3eff:fee1:b8ac]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["shrimpmaster"]},"Identity":{"Case":"Some","Fields":["/Mzs3EQnPGf7N0IAE4Rk843fOaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2XYGh4jEtUP/go3yHUv0dUXN+Q+yaRwYFRANWqrLXmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:37"]},"IP":{"Case":"Some","Fields":["145.239.76.95"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:302:2200::390e]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChelseaManning"]},"Identity":{"Case":"Some","Fields":["/McNP1AMLqYgBBN7ATcgGpOitX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s2XtNrekr8sKOVz1/shiPKR4vDQshNiB+xw5buHCcCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:56"]},"IP":{"Case":"Some","Fields":["104.219.250.148"]},"OnionRouterPort":{"Case":"Some","Fields":[26918]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktj8rmhy53b16bwqg"]},"Identity":{"Case":"Some","Fields":["/MOS/CClwcW16Vq24kc15JPjrrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BU1Xuzh/PhbF2BtMfUfhXmI+WG/GvQ5Yi7dncyFehOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:18"]},"IP":{"Case":"Some","Fields":["85.131.16.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:14ba:1400::8857:e4fa:d28f]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["urkle"]},"Identity":{"Case":"Some","Fields":["/KUqKR3t/Octa35TilqRvpA+Ff8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LQpVYA3oiO51Rey2Y62tqwlW9+D/tP4V4t+jJZwf3Lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:49"]},"IP":{"Case":"Some","Fields":["45.35.33.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saga"]},"Identity":{"Case":"Some","Fields":["/IL+o+ioZ4WyAvTBRR+JxeEqigA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ttpgnuGgb0AP2nLB0Z73/v75zn2iO9H1nKBgb/3LgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:05"]},"IP":{"Case":"Some","Fields":["209.141.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:183::8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SSGserv"]},"Identity":{"Case":"Some","Fields":["/Hmq07A9P4A3uXkJ7ZgrjTnF+cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1n/ZhQIkpyFG203qdx9EgZX4fx6MiG12uqs53BaauDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:13"]},"IP":{"Case":"Some","Fields":["54.39.130.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Donatello"]},"Identity":{"Case":"Some","Fields":["/HLZmDx0pnviGrGlOG37yyqgwG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1Z/7A5hddzUvhFzStgfUW5JKsZnfzuF2ltKdGDO1aQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:26"]},"IP":{"Case":"Some","Fields":["190.10.8.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["/HKPMpyS1npDXvuh00tZM9qmD2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2I7/cxXQoVPTucemdWz+90wAEpDqNnAI69o61JkRzW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10139]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::39]:10139"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/GqEoSUYFbyqRHvugvaT6EfTJac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmMs6/U217WUp3Qnw1i7SQplFZYIbPe1VriUJ/ZJag4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:30"]},"IP":{"Case":"Some","Fields":["23.128.248.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::37]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GhostNetKennel"]},"Identity":{"Case":"Some","Fields":["/FtPkNGpu2tYhcprT07EfReDlS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2vWMhqWQFL4s5Tyd6p3yiovybdQ+4NXDDju7DuJCVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:50"]},"IP":{"Case":"Some","Fields":["217.155.3.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8010:67ae:5:4f4e:c47d:1783:952d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Valsec"]},"Identity":{"Case":"Some","Fields":["/E0DQD7NkEYxmLny+B4LN+16/h0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BXkcZkLlQ3f/JQbQCSpzajS4CAgRg8ACDEJiVRYGDLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:24"]},"IP":{"Case":"Some","Fields":["88.90.177.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bernhard"]},"Identity":{"Case":"Some","Fields":["/Eot/279jAZSsjMQwmTlObNkJGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+vvfaoeM+wBDbr9Ho1vTFWz+rKBjxArF0V1QASZD2rk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:43"]},"IP":{"Case":"Some","Fields":["212.227.211.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:83ee::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nanotier"]},"Identity":{"Case":"Some","Fields":["/EDMxhkfk9RRSt40elQvviY9oMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8NURqbFt2GV7N7rXJQQT/rpTaXRTq0faJb2QRQ6afk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:16"]},"IP":{"Case":"Some","Fields":["209.141.38.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RobRaspOnion"]},"Identity":{"Case":"Some","Fields":["/DFDl9kBLumFeXgm+CsjiEQium0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K3Nh6IFNRSqGaL1a8mk2N62P4NJPzmNuAi6fDwNt9K4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:13"]},"IP":{"Case":"Some","Fields":["49.245.93.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["/CzVMOhcDlb9+/2+2rkX2dir6wU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEMMoXktT9TenrwSPwvRoaNzgt4PwHjLbAAXuea/E8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:29"]},"IP":{"Case":"Some","Fields":["23.128.248.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::48]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay12345"]},"Identity":{"Case":"Some","Fields":["/Cm64t1pQYV37f7m5mPHcieCKrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kH6tJ96WIn7uD9T4/YEA+nvU/6Iy9MKGIqINrf0NwRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:32"]},"IP":{"Case":"Some","Fields":["107.189.8.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f9d0:8d45:cd51:c1aa:271f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeusVult"]},"Identity":{"Case":"Some","Fields":["/CgjJv9IDCOBHvIkiqoAkhtKf+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BFkiwMTgUwfsJyV+HFYMyLCbRylh+HV4YkY6iwdwnq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:28"]},"IP":{"Case":"Some","Fields":["144.202.40.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:9002:255c:459f:9c0:1b9d:2e1b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torcatgirlcloud"]},"Identity":{"Case":"Some","Fields":["/B5EHgl7o2kwqi9hXvsyWvdtJZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9p79rB1fqoFp0KaBK+9EfP7gvHmXQYpIlHBy2O1hsIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:50"]},"IP":{"Case":"Some","Fields":["148.251.41.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kaisa"]},"Identity":{"Case":"Some","Fields":["/Ar4taO5UwDCoeCsGsnQCZsxATw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EpPyrmJaH+r/+DPaTVR38tD426xoh0OLHFMks6u4UIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:15"]},"IP":{"Case":"Some","Fields":["185.225.69.98"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev9"]},"Identity":{"Case":"Some","Fields":["/Ad8JbjbsxMtOX198DySv8FMnXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAXio2hVoHwTjkpfsi+t7Mrw9WOIIjmHFTfblmmUjdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:46"]},"IP":{"Case":"Some","Fields":["94.16.121.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:8a8:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HyNETRelay"]},"Identity":{"Case":"Some","Fields":["/AScE6D9RdPX5FS35ypXzuFa/2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0CBOQAQuIygUE23etcyKDxhXEW57rQGbymUzWDyCfNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:22"]},"IP":{"Case":"Some","Fields":["193.148.249.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2fc0::bad:f00d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo245"]},"Identity":{"Case":"Some","Fields":["++6ExJwDukqkIyhETnzDoOiLvew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nn2MoKXgHPo6h3IfP0HkZ70T11SpvkHQsnZCeqdrO7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:03"]},"IP":{"Case":"Some","Fields":["179.43.182.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NochnoiDozor"]},"Identity":{"Case":"Some","Fields":["++Va+726BGVD+FEXg3YN9B27IG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imo3CSzxd8lsxijLArjg0M7IOIVzYQhE+3jUf3vVL1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:08"]},"IP":{"Case":"Some","Fields":["79.204.15.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nononicetry"]},"Identity":{"Case":"Some","Fields":["+9QJN8bhUjynFwNvxP1ezIMqk7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qs9h6Fk+8+JE2hhvdxAKgBYYKux8sPVLzuy+ubsZMK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:50"]},"IP":{"Case":"Some","Fields":["188.68.58.105"]},"OnionRouterPort":{"Case":"Some","Fields":[4825]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f808:948b:b5ff:fe41:2238]:4825"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeliosReaper"]},"Identity":{"Case":"Some","Fields":["+9IDh/ZNZ+1TrFvS4DAtRLLaNgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["un7X2BshSw60vWq+y+PooyLH2WIORNwMBn/g8WeWEL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:20"]},"IP":{"Case":"Some","Fields":["51.161.35.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:205:200::1f8d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PPSStudios"]},"Identity":{"Case":"Some","Fields":["+81dhCjDQrAtlBVvUjWLArPy5Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NZTUJ15imuiYxJXNeocYeCc2Ad9QMGI1ViAt2bXrcIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:11"]},"IP":{"Case":"Some","Fields":["73.203.30.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+8XUwLGCb6alurdQCOKSNJ0rzBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BtkScH/TNsPa8sx/jNrYFNCPs5HO3QL2HPMWZxw7pfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:43"]},"IP":{"Case":"Some","Fields":["93.95.228.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveGiza"]},"Identity":{"Case":"Some","Fields":["+8KFakhwXz7RflBPj8iexkM+0l0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qmHBeFTRzeWbJI6Zpobw58B5MzGgiKMlKXiocVLpCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:48"]},"IP":{"Case":"Some","Fields":["65.49.20.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pnamstor001"]},"Identity":{"Case":"Some","Fields":["+7cl64wvCZMXkz+MVGmysiSfNsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mlMtK09xjIz6/KMwyb6s7pCeuda/0sBpXJNdbR9KuTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:56"]},"IP":{"Case":"Some","Fields":["134.209.85.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::fa0:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorion2"]},"Identity":{"Case":"Some","Fields":["+7ML+QLOakYrX7jDdutencavWnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7aFEc+6RnBLc48qILF9uE+hvVqOb2FNQplP9OvR944"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:33"]},"IP":{"Case":"Some","Fields":["94.16.120.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:a28:48a9:2ff:fe5f:5356]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yanush"]},"Identity":{"Case":"Some","Fields":["+6g68BwYKWb4xUoAJaatS72LTBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0+1WVuIMACjde7kutUnhLbU/yLzwzOdNSKPfVGLVgxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:19"]},"IP":{"Case":"Some","Fields":["146.59.34.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangolin"]},"Identity":{"Case":"Some","Fields":["+6DdEkr7AyGWRSYjIkc89cWd91w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yHXIyoIvY1kz1bXnLJG8hXCfAc1d8GReU4ckO6CFPy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:05"]},"IP":{"Case":"Some","Fields":["104.244.72.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Sandefjord"]},"Identity":{"Case":"Some","Fields":["+5qsOi3kDgbcmC01jaq6sA10VUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VuCw+/86UmnQDtTSNkF5C1098kRrD0ShpNOnLyn0rQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:04"]},"IP":{"Case":"Some","Fields":["51.174.128.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:79c:ceba:1b0:0:100:2851:ec96]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Small"]},"Identity":{"Case":"Some","Fields":["+42upKoLhF1RhCN1PG4SUWe6rGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9eSzwW0ald/DxCNQPvYePAVBC0qYetkNr0dA/DfkRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:08"]},"IP":{"Case":"Some","Fields":["63.250.63.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra72"]},"Identity":{"Case":"Some","Fields":["+3myvnB/Jy+/4VhPRKP6UVb38c8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qrDZi1yL2k41CgkD/gK1O6nkM35qsxTaD3/q7jBN3Tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:13"]},"IP":{"Case":"Some","Fields":["51.38.127.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ROOK"]},"Identity":{"Case":"Some","Fields":["+2koGtNcmb1kMu+NTtkAXo321OQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H3RofIFGz0XG0oSdjSozSmh/x4L3ceJzbymr9t0DD2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:21"]},"IP":{"Case":"Some","Fields":["146.185.248.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:5f5::19a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jjc"]},"Identity":{"Case":"Some","Fields":["+2RtkV3X4VMXZKQqsUlBbn4O9Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LelKHgY5tiIFsh7pd+gMA2g00zC3Oa/bh6zgCFscSlY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:59"]},"IP":{"Case":"Some","Fields":["185.132.133.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeepingben"]},"Identity":{"Case":"Some","Fields":["+0sLCmMlraKqOFLSi2gNMlns5E8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QPeK3eGbI9OFloKeZQ+W746vOxHNl7qhsQ4kw1UPU64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:24"]},"IP":{"Case":"Some","Fields":["208.105.141.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber02"]},"Identity":{"Case":"Some","Fields":["+0oOT0cLNueokVmoVpUwpHwpK6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CUh1LhCxul1hSu8oqynYPSTM5MMgjvI7QSkVgj5uljM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:11"]},"IP":{"Case":"Some","Fields":["185.220.101.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PankyBG1"]},"Identity":{"Case":"Some","Fields":["+0UxgX23MWiwQQrUv+qv4gbxp2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lppvX9cCSSJ8xmWgghePHC9Rf1F8dN871mqMxZIcbAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:42"]},"IP":{"Case":"Some","Fields":["213.183.63.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jcmediator01"]},"Identity":{"Case":"Some","Fields":["+zqP6f7KeTWztwfrmZDaoujWCcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EeGFRYMX+yonGpUVcGbnzvsigctngdoiUcAH/bonhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:17"]},"IP":{"Case":"Some","Fields":["50.230.202.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:1b5:91::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KrazyG"]},"Identity":{"Case":"Some","Fields":["+x4XRUVJVIvm0z/55phzXDHu6lA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/rQ/BF8fSBhi2IkjCHOwflUoLR3svTSiucrBOJvQ9nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:31"]},"IP":{"Case":"Some","Fields":["174.94.89.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratap"]},"Identity":{"Case":"Some","Fields":["+w3f6RXLk9lInT5kTvRrj05Rlns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bGTYFQfVvEyOEfM6MM205LCaToloPG307aUtU2bxeFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:00"]},"IP":{"Case":"Some","Fields":["51.81.155.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Najdorf"]},"Identity":{"Case":"Some","Fields":["+vCogp45BjZp+mCbkE4PuNXh8j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6Uv8r7ZyU0XYatqgswfCAoIF8rv/lwyBnXKvMdl+wU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:13"]},"IP":{"Case":"Some","Fields":["49.12.57.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:fff0:4f:266:37ff:fee5:cc35]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BadGateway"]},"Identity":{"Case":"Some","Fields":["+tjLTHz784434mFkxHsTYkQXs9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34nj/Iub3WA/41NDj3/vuwaBaPADEhEw7rlK5/BtRmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:25"]},"IP":{"Case":"Some","Fields":["162.55.163.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:86ae::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MoneroToBigHold"]},"Identity":{"Case":"Some","Fields":["+scwf+kFQh3EzMDKBNNq+MQ7Emc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eQLR1HUKIcHaMiJAXjxbYtZWRaO036IfcXLcSwE+1M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:29"]},"IP":{"Case":"Some","Fields":["185.236.231.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["aster1skRelay"]},"Identity":{"Case":"Some","Fields":["+r4+a+bzFiYAFp+GKtxXJ0SPdxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GTVZkM0wzXWrZ6IHxp4mbsFswYAMryWDGzCtVq/n/7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:12"]},"IP":{"Case":"Some","Fields":["121.173.56.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex96"]},"Identity":{"Case":"Some","Fields":["+rluAGlZbKytzx/LokB/zlBe0G0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b28hBC38xlEJHieF/+Qg1QmihfHgOw8pq/SCGQLVLYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:55"]},"IP":{"Case":"Some","Fields":["199.249.230.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::185]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Overbite3513"]},"Identity":{"Case":"Some","Fields":["+qQtzzZ8ljdosUHKSrqtoU2Ao/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sR8SG3qqVL/ZywD/cg+kWUJVesGp/g1pmea8jxFxrRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:28"]},"IP":{"Case":"Some","Fields":["107.138.131.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c983:1000::ea0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire64"]},"Identity":{"Case":"Some","Fields":["+oX+gQk/5dU93OotuihujMycbd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dM8QGhV5WsPgmNN8gbfOMX+E/KcBrw+PL2W4Ke7rPN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["91.143.85.52"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efe]:465"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["namedrelay"]},"Identity":{"Case":"Some","Fields":["+nxrT9vc925H8s8yNZgAs7o5Amc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J8ycC6/266PEtRxTGqLAfg7Dv5TXz7HwEecE0olDxuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:17"]},"IP":{"Case":"Some","Fields":["167.86.110.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2035:4794::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Morgoth"]},"Identity":{"Case":"Some","Fields":["+nqoCUlJTc4sHiZeHvoe5lknCjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2TUlMv8v1p/nwgdMK8ZiShYZNEDrHQjfzVPFmmIMrq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:15"]},"IP":{"Case":"Some","Fields":["178.254.12.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:38d::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman5"]},"Identity":{"Case":"Some","Fields":["+nJHyzt3r5v2JDDCNOt2I/AlKdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z71S1O8bKBksZhpPsXTRTRE7asAl0vW+AY+kD3lGn/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:25"]},"IP":{"Case":"Some","Fields":["85.204.116.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:3dc:f2:43cb:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KyleDewbrow"]},"Identity":{"Case":"Some","Fields":["+mn3xRBn2ahBaJYsRqykgKkM01Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WDH/TVwVxuKWbsjcS5aBbUN0Dxze0VMiO6lGATDNX/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:39"]},"IP":{"Case":"Some","Fields":["202.165.228.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metaverse01"]},"Identity":{"Case":"Some","Fields":["+l8as0aPgIsvsF8hVcBIGjUyx4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A2A9HLS0YfsTnRKMmmzrND4yghMCb1ETOPDEzwup9uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:19"]},"IP":{"Case":"Some","Fields":["185.97.32.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:66c0:1:1::34]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["53c70r"]},"Identity":{"Case":"Some","Fields":["+lYeU03d5jgw+gsKSEI17SO7J6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pRXHB60EL+qLcrjI05mfgRABzoXeEwpnSXjCpKPpffU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:31"]},"IP":{"Case":"Some","Fields":["89.58.32.236"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:d04::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kllen"]},"Identity":{"Case":"Some","Fields":["+lW0/86rvTu32WfnkHKuDoIs3ZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JOEOQZbWd3weLpFo6AX3lU8OoWawMUoI2uIcsTL0WEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:35"]},"IP":{"Case":"Some","Fields":["23.82.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["+lS9v2BUs/UigemTscAeu/nFmHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m1y96fjX8ntcwOXN8SLUPh/2nCdOW9Snu6XvtzVAd58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:02"]},"IP":{"Case":"Some","Fields":["185.220.101.195"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::195]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charon"]},"Identity":{"Case":"Some","Fields":["+k4VhUXoAyRKs3WGs65bjCWhL/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XzYzEpiXYQ4RCVlmpEwi2uRrz5MelxdQtemBlunzVSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:03"]},"IP":{"Case":"Some","Fields":["45.136.30.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:687:24bc:e7ff:fe86:785e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p8miz7ttgr5"]},"Identity":{"Case":"Some","Fields":["+k0C9x5bWdpD65i8lpSHUVT69v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9/D4ZlCS3vUNuWh5f9zz0B9MWG+qc8xO9oUv+ZeYJSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:50"]},"IP":{"Case":"Some","Fields":["37.120.168.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:500c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+kyWbAS4Cyo5rVoBde4YJO9mE3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4i6+m6/wQZfQ9mar2yjdbl82AZuMsBW1jrSK9CFpy00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:19"]},"IP":{"Case":"Some","Fields":["185.207.105.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erklig"]},"Identity":{"Case":"Some","Fields":["+jsuPfNHmqFTOpJdxXAlOlfUuBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3HQoi6Jx3CjAyu6RW5Cv3HLBF/HDjL96I13K29tR7ME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:51"]},"IP":{"Case":"Some","Fields":["63.170.122.227"]},"OnionRouterPort":{"Case":"Some","Fields":[28231]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["barnabe"]},"Identity":{"Case":"Some","Fields":["+jPCyAaWM9Qd5QP5p7xBYfnWop8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L0VZxlAz86fxG3ysR+YFwWQeGfjmC6G8IGPHSJD7P5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:00"]},"IP":{"Case":"Some","Fields":["176.78.197.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hohoho"]},"Identity":{"Case":"Some","Fields":["+hkPvlK3WXUd0SsOLuSnBmepv0Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hgtlaYMYEw8J3E3sXa5TZFRAahKSWlECQ0wlPmsBw9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:47"]},"IP":{"Case":"Some","Fields":["146.59.233.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::c48e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie2"]},"Identity":{"Case":"Some","Fields":["+hhFwxO4jvSei+HyOwLNCscCtjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2Bj27qZGcF065Sdyl40vH9tO1okSAvttFTTTvbH5qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:20"]},"IP":{"Case":"Some","Fields":["65.108.136.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishWingedHussars"]},"Identity":{"Case":"Some","Fields":["+g6y7RkA0s3h/FV+T0k6tWj45dM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkQsXVw5L/dRd1r1qxbZcJ82ZGpckBeVxiJ/FCXZUbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:42"]},"IP":{"Case":"Some","Fields":["85.89.172.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zw1ebelSuppe"]},"Identity":{"Case":"Some","Fields":["+gmvUZiTJ3RHLKMnBN1jP1+VmjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FmUE3N+VaQNskKZoadYzMHN8hAs8vQv22+jzDUqjjpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:05"]},"IP":{"Case":"Some","Fields":["80.133.251.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lucatona"]},"Identity":{"Case":"Some","Fields":["+er2ipy1VF3g6sk7SjGm0gadNtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tT6N/rs29WFFNDxzm9MauzSS6mj1dc+qRpdQRbRhP/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["5.161.51.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:1256::1]:9991"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenTwilight"]},"Identity":{"Case":"Some","Fields":["+eMtQFj3816bxPHYw7LaoMRGZmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+D7i7VjXOMBYA4SOW092QNCvpSF0Z7GHwnl/XUr8gm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:43"]},"IP":{"Case":"Some","Fields":["51.158.148.230"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:2000::a]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+d1bRe10pDnx8O5mNkULulyL8jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYsQPMdRMr5ODfWEOAAU0QRkZNTFdrcKe6b44smyPQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:13"]},"IP":{"Case":"Some","Fields":["104.244.72.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noeditconfig2"]},"Identity":{"Case":"Some","Fields":["+dlC1qMgd3lAoFHIpLPvPA8orTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NH+a2MD6fa5o1fm8VucpDxSeWHhGB/KK4LHxUq5q62k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:50"]},"IP":{"Case":"Some","Fields":["149.56.157.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindzero9"]},"Identity":{"Case":"Some","Fields":["+dDDOMTjwL93fWaBoJBJAnF7qjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s0ay8DdtT3J+aKwVJxMIZmHLmnZyNH24mTd5VxPocw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:40"]},"IP":{"Case":"Some","Fields":["193.38.255.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+cs/1MeATwMQWq8b97bH0tp91SI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XFiJWJ59j5aNvwPGk2LTmZoWJHFoSqZIlGJUBxPYuIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:03"]},"IP":{"Case":"Some","Fields":["51.254.45.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SyrxEditedTheConfig"]},"Identity":{"Case":"Some","Fields":["+cX5q0oYu6giarEPR7MLPEJ5zn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9tJzs3ZFKQ1IbE/FIYoohRSzN8ak0Cw9E8s0aq8Lb3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:57"]},"IP":{"Case":"Some","Fields":["192.9.247.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MasterOfDisaster"]},"Identity":{"Case":"Some","Fields":["+akZDGwOnkyOHzjMAzGxYyZStRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7A2jYBhWzej+IoOYkUi1Fs+iH0kxjcdHpJrvLXSRBE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:29"]},"IP":{"Case":"Some","Fields":["167.86.94.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode3"]},"Identity":{"Case":"Some","Fields":["+aKKtx1+TkRjCGQaVW6lO6Vfy1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Djc6wljgS87xlQCQD1HxlTRABqvLg4ls7aAljTtBSaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:08"]},"IP":{"Case":"Some","Fields":["209.141.45.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recodex"]},"Identity":{"Case":"Some","Fields":["+ZEM4qPp1Gf83Z1SKGlboYJ7AQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSG0EuGDSF7tBhgl04CGo4b0WeaY9EkfJriFNKc0vMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:30"]},"IP":{"Case":"Some","Fields":["138.201.132.34"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:2f66::2]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarinAsagi"]},"Identity":{"Case":"Some","Fields":["+Ypw5UJ7/xEWQAEfeuMeU37PHdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMjqW0FRMfbdL8q3tCi9s+Nc/SpMiJVpUY7mTcmmgeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:21"]},"IP":{"Case":"Some","Fields":["23.239.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBigShow"]},"Identity":{"Case":"Some","Fields":["+YYN7c62K3SnKLUO43QpOsSDhto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDwH1wXGXa2qgDhuO33v9l26g14gm6MxMRG81YPDJdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:33"]},"IP":{"Case":"Some","Fields":["74.123.98.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay35at5443"]},"Identity":{"Case":"Some","Fields":["+Xz3bZEhrChyfCKQJoGptTmrrpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["72qOVlxj6P0iQW+ivNWYJ4s2BiLa+qIGpb2xFDZnwek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:05"]},"IP":{"Case":"Some","Fields":["140.78.100.35"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torlux"]},"Identity":{"Case":"Some","Fields":["+XlxSCQN6sRt6+VRMdUZH5JjSRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AtrxN6QaBkAgVxZZ+uZSz0s8IJvNLTiUE6t4o/BIhr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:52"]},"IP":{"Case":"Some","Fields":["158.140.230.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["+XcqyLVxAMDSu6j02llWw/GTmA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rpaWiHl01QgrerxNY6PqxC3FJy0It1Ub5qU0U9X7mWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:48"]},"IP":{"Case":"Some","Fields":["185.220.101.60"]},"OnionRouterPort":{"Case":"Some","Fields":[10060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::60]:10060"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididreadtheconfig"]},"Identity":{"Case":"Some","Fields":["+Wy/xcB52DngGQKAKnAClIbSrYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ZWSdIlHp0TiRr3Jazth0flm3570zBUn09etb+EnUIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:12"]},"IP":{"Case":"Some","Fields":["209.182.232.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aloha"]},"Identity":{"Case":"Some","Fields":["+WdPRaJcqpd+e4coB+CgcMEh9fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GLVJoDRZAY0MYD+7IroRXSFx8x51yIs44y77KitcnGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:30"]},"IP":{"Case":"Some","Fields":["95.211.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yihwa"]},"Identity":{"Case":"Some","Fields":["+VY2CqXx5hBk4mcf4jHFBk0q/q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywkwx2dzR+ByuXXEphBYm3YZ/clUPHDZrBHNBiUK6Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:40"]},"IP":{"Case":"Some","Fields":["187.94.253.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0137"]},"Identity":{"Case":"Some","Fields":["+UCMFEs214pHursLtT3/Zx0jvlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zrld9WgsjDEDSdEEYuXnd554nTxaDRt7b/gw6dssdDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:33"]},"IP":{"Case":"Some","Fields":["185.220.101.137"]},"OnionRouterPort":{"Case":"Some","Fields":[10137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::137]:10137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+TivoqXo7ZROK1Bt4smcz1V4Lo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NPIkPfu0Pdc8Y6dOaGbNo1bssWcLeCYRyf4l7N6fxH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:29"]},"IP":{"Case":"Some","Fields":["77.8.1.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt98345"]},"Identity":{"Case":"Some","Fields":["+TbHS1yu86PnLqZrjyLeTeBot3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TP406XIGiXkUOuv7Fu6RSZzaOWftsIa4EKm58nL9bOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:07"]},"IP":{"Case":"Some","Fields":["185.245.60.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird31"]},"Identity":{"Case":"Some","Fields":["+SRt7ytlOAcjbaE08q6rED1Yq/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UrtXQ5qcWRMXbOKnl+iTAkRVxqh2oepJB5f50kfecyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:30"]},"IP":{"Case":"Some","Fields":["91.143.88.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::3d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["+SLCP/aKqtvSyaOERxtjaUqHm6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y6YlFvFihfKegrgtH5lDtR+x5FUIlOy/nuedvu9Pzmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:13"]},"IP":{"Case":"Some","Fields":["5.45.104.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1750:680e:2aff:fe12:6258]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim02"]},"Identity":{"Case":"Some","Fields":["+RkxwlNDwbBzZBtcRtK92/4EufE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Xm5MN27zTepNSAYqQM+W3pj1tOTZq5vX+G5tU6Aqqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:26"]},"IP":{"Case":"Some","Fields":["24.134.234.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer80"]},"Identity":{"Case":"Some","Fields":["+PbanW3XnJ6jxov59iazabc5j20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4aWdMcILhqTYfMsNCykf13FC/uP4f9DISNOlHgIrAtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:23"]},"IP":{"Case":"Some","Fields":["95.214.52.156"]},"OnionRouterPort":{"Case":"Some","Fields":[8280]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluxe3"]},"Identity":{"Case":"Some","Fields":["+NJ7FjuSR7Iyou7mjdi2mGlcKN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esAts+ZacxdR34/juYl945/HWtwEg9Zf21NZGBfo9I8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:51"]},"IP":{"Case":"Some","Fields":["78.47.18.110"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:4023::110]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanguardarchie"]},"Identity":{"Case":"Some","Fields":["+LYtOjZ/cmzQEeyakxtU9Lndm7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYyZNeOUXjjCryfucjDN0+VdQis6etFagJdms0xvKGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:00"]},"IP":{"Case":"Some","Fields":["104.128.48.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay17L"]},"Identity":{"Case":"Some","Fields":["+KqNjMugxfKDbeYxXN+m5KMaCJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["54Eowte4mnUUPeE1wMYTaWRTUUlCvkQWK1xOALVi5z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:25"]},"IP":{"Case":"Some","Fields":["5.34.183.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["+JV9YeKaYmQAApoDpjSEAOdQJgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3IBvWofooH5dfiqjmcoYE3sgg4bhxjXUKVqSk+6RCks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:37"]},"IP":{"Case":"Some","Fields":["108.161.139.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bwanzie"]},"Identity":{"Case":"Some","Fields":["+IchsNGENhrSSxTP1WgygkoOefI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K4P3L6G+7kmxUATclMrL50m860bWtvTkpxMwa5HIqxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:12"]},"IP":{"Case":"Some","Fields":["68.183.163.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::23c6:2001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse06"]},"Identity":{"Case":"Some","Fields":["+IZDajRJe7Cj3iNbLsO1NY6Hw7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTzUjN+N6V9wp4GW0fP1p8TWvhktUdz5Cd7cpX3bZCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:40:18"]},"IP":{"Case":"Some","Fields":["82.223.70.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8105::1]:9666"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["screwTheNSA"]},"Identity":{"Case":"Some","Fields":["+ILkpLc0R8VhYXAFyOaSsKcICAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T6kEeo7fN4W5Rw7I4VdDxlk1ghmBkV8kfwICWrbWGAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:24"]},"IP":{"Case":"Some","Fields":["152.70.197.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay17at5443"]},"Identity":{"Case":"Some","Fields":["+HisoppkT/Nh2Ziwckhj78B3rhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wMlC8OkEBCdELiM7ktg3UYMzPA5HeLWKiVQzpDcNqh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:11"]},"IP":{"Case":"Some","Fields":["140.78.100.17"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bullseyerelay"]},"Identity":{"Case":"Some","Fields":["+HOiOCbvm4I1+2Nd7ENoQhFGWXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esjfv322rs/7uWoqTmWDM42FAViXfmzm4oKeWrcDv7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:43"]},"IP":{"Case":"Some","Fields":["84.165.122.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torushopyard"]},"Identity":{"Case":"Some","Fields":["+GS962bIoR4glFaEZJnC+ZVDV5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XN1dfVzqgzPwzvU3GEdkX80Mg5HMDD4Osdb+MZ4/nVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:28"]},"IP":{"Case":"Some","Fields":["94.139.3.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["+FJ5719X5socuHGGLDqhglQkrbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1AGGFvUpv3TtLqMby8efA6WHrQZbWwawXppH9cB8L8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:17"]},"IP":{"Case":"Some","Fields":["86.59.119.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:86:59:119:83]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["+Edp7i2XtTgHkq0g592DjdW6/0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ALZhB9XqdSeUt0Br7/c2tpADpga1RNgLo0aTmvcSdJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:52"]},"IP":{"Case":"Some","Fields":["23.128.248.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::226]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeeEmmCee"]},"Identity":{"Case":"Some","Fields":["+EXf2w0uyr6/hbN9CSQOaZagjXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4SHMzeywn5n+eNuu2QZpiBahEBpuaYuCLtHqK1vYKjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:28"]},"IP":{"Case":"Some","Fields":["185.107.195.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["udeu6Piengui7yoothe"]},"Identity":{"Case":"Some","Fields":["+D/VLU8Uzzl0zrzxE0tWoBU7yDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Th2QLQedDnt+0guVMvN52+Yijuo7s7TP5lBjueTJZK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:45"]},"IP":{"Case":"Some","Fields":["45.62.246.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2607:8880::1846:d8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay01"]},"Identity":{"Case":"Some","Fields":["+DxpnyX1m4Jy8UXOpxy75lqlkdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWFvDO08sEtsVcw9LzrmAkEoWxnoO6JYMQtZnUdAUpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:25"]},"IP":{"Case":"Some","Fields":["89.150.132.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyberbits"]},"Identity":{"Case":"Some","Fields":["+DZEZmPx64FvE3CJVfEF0LL1yOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gjTt/7rshqQg+G2udoM/CLQIppL7Wy/sOpXu1TKO5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:06"]},"IP":{"Case":"Some","Fields":["212.129.32.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber22"]},"Identity":{"Case":"Some","Fields":["+C4iIRIet3ot4+aUECcmUCfqI3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FcMxXKNDXJldtz7Rk8lF0l/dvg1VuSP9kb6+Z12QjQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:52"]},"IP":{"Case":"Some","Fields":["185.220.101.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::11]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaellaTeam"]},"Identity":{"Case":"Some","Fields":["+BZ/TmhM6oOMyCmZI3MpbTsdxHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9v4oDojTRyP9BEmVFq2NbMHrD+QFdDXlV3Jis6nXu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:41"]},"IP":{"Case":"Some","Fields":["178.156.41.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8a84:2040::232]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARS"]},"Identity":{"Case":"Some","Fields":["+A/eJ+/LP2p7TizFFxM9v/p4ui0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iNerMydMXefxRIKoGD1F7hQqbheoNOWapzQXNzOhPOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:39"]},"IP":{"Case":"Some","Fields":["213.183.48.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:f900:1:100::53a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elbasan"]},"Identity":{"Case":"Some","Fields":["+AJ0q7kxN4LEdPcbwX6ltL9cB+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofKhXjiktqXx4feeMaUeoO4jQNGRlBZR47BkqBAcbn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:06"]},"IP":{"Case":"Some","Fields":["31.171.154.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uncloaked"]},"Identity":{"Case":"Some","Fields":["9/misorEfzKN/sqmbFknGfzOHo4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["109G5a+AdjYEwS9LqQ8+jYix5BtSzebNcyhYEjO/zW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:41"]},"IP":{"Case":"Some","Fields":["91.121.103.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1:9c6f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl0tjdevde"]},"Identity":{"Case":"Some","Fields":["9/bHuh3/pNSnKO2u0RxE10Zqowc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yWyRoMGT4+ZuXl80Vk1qCNmXJ5fyw3WUTqsZ+7ojvkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:12"]},"IP":{"Case":"Some","Fields":["84.252.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra23"]},"Identity":{"Case":"Some","Fields":["9+1BWLcRRhfo9zfGXb6H7muDRFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J+KpxhSH6AYW63n1WYlIGEZzbGnZxEBje7XXbQDxzTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:48"]},"IP":{"Case":"Some","Fields":["51.195.42.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["landsend88"]},"Identity":{"Case":"Some","Fields":["9+XNz/uHVJUyRzGUOT5hOFcYVPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nng4jBMcrdsplSm+2j7n4Faoisc8JjEQT0/m/rg8zQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:23"]},"IP":{"Case":"Some","Fields":["129.126.111.54"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mstirner"]},"Identity":{"Case":"Some","Fields":["99rv0IXSQDkr8eA2nKgRm/Ikec0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uCTzhqBQbPRIeN+9qMdOE69bPwtBa+wQ97oUtyh22a0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:10"]},"IP":{"Case":"Some","Fields":["185.125.171.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lupin"]},"Identity":{"Case":"Some","Fields":["99C3jjQ1HB3+A+LIh0b9mZsE1F0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t9iCk8GEqt6o08pp8+Ri0TiRKdX2/JIws93xXyku3lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:44"]},"IP":{"Case":"Some","Fields":["84.211.247.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pooclown"]},"Identity":{"Case":"Some","Fields":["97sDvHfOtu9mR4xYo0MCiVjrdpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rt9Wzma6rpA60/AgPoDKyQvfeqtwqz3vlzULPc+aoVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:50"]},"IP":{"Case":"Some","Fields":["23.227.173.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay0vpsfree0cz"]},"Identity":{"Case":"Some","Fields":["97Ak2wLGARhcIC4m3/0q1SXBajY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C09cCbKKm26qa7L7cAM8yxszRFJp8NA7b7q1s5nW2cM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:56"]},"IP":{"Case":"Some","Fields":["37.205.8.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorB"]},"Identity":{"Case":"Some","Fields":["968M1MRsF20cj42h02lU4jcGmFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7c0D1zp6V3AIlSWbFoDgOeTtefxP1Y3xwwpqJ9HQBlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:16"]},"IP":{"Case":"Some","Fields":["85.195.232.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:ad8b:50::b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockstars1"]},"Identity":{"Case":"Some","Fields":["96BS1O6i9LyULfsFSvLcVKKjfl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rSO8gfk2xXoEKHGqE1Z5yYN7GW4F+q0zEatSRjxdUXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:24"]},"IP":{"Case":"Some","Fields":["174.128.250.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de4"]},"Identity":{"Case":"Some","Fields":["95NwukatwDzBCGaSTuSjxHC6/pM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5YOqam90+vU6dqPbib315dZF9T2hVI85ZicQGSxjAlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:45"]},"IP":{"Case":"Some","Fields":["45.142.176.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KRSPYCHICKEN"]},"Identity":{"Case":"Some","Fields":["943eGCDInjqQjqZ2DSiHTP4EBm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["35ozNJaPc/hsBZ9NqEeMuE/AIaeg8aVxlIGi9wEzXv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:07"]},"IP":{"Case":"Some","Fields":["174.0.21.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trolling3"]},"Identity":{"Case":"Some","Fields":["93EG7j82athclbBplsynq8ZuySI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R8hOhopd1acwBu29QfMVs1FA7J1KflMy/ovEeG4LM2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:58"]},"IP":{"Case":"Some","Fields":["77.68.83.86"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zeus"]},"Identity":{"Case":"Some","Fields":["922OqGQ2i60Y4kFSmWQn0TF/Vg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kKhmTHtj0DtlHb2KduCh5u2bdDtXg9cPdxDiK5d5Q3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:11"]},"IP":{"Case":"Some","Fields":["104.149.155.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:6600:0:135:ec4:7aff:fe0e:757c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["92vrikrEG/g2QeOYgC/hrabSUxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9SKS9RqcqtAz6SwjE0X0P3xYX9SfjLf/TT0SUGzEJxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:11"]},"IP":{"Case":"Some","Fields":["23.128.248.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torchon"]},"Identity":{"Case":"Some","Fields":["92gkkKgwH+56u6xkuBiCalOboag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aY/wgtGto6I2vhDFAb9dIKahM+BZEnPF1LPBTzfKLNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:07"]},"IP":{"Case":"Some","Fields":["82.65.188.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:240:6790:b9f9:2aed:f31a:b612]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorCHI1"]},"Identity":{"Case":"Some","Fields":["90+qJjyQfw/dfRP6YJLYi63gn9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Y8/G7OtAxstAgplk/Aq3Up43N506bgCPKQ1mxobJ94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:37"]},"IP":{"Case":"Some","Fields":["172.245.134.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["90qb3Qyi7+B5B9cKoYtD2SPj50U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XP7mBBNQe8eNj8VNkIrfEPROY5955zI8vpA70egi25k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:16"]},"IP":{"Case":"Some","Fields":["37.120.185.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN1"]},"Identity":{"Case":"Some","Fields":["90R+metcvU1euRPuDjWsZCtcHvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FZXFOALG500QzlOS8BrzAMv/7aj9qs4GR7NclFD9p28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:11"]},"IP":{"Case":"Some","Fields":["199.249.230.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::120]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor06"]},"Identity":{"Case":"Some","Fields":["90HlEkyxJwDalGt4ybLdF11s0qE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7vGcUb/u6SJGn4LLNqJNcbmpDxrzDB/pZJJtEuriyVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:25"]},"IP":{"Case":"Some","Fields":["163.172.154.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:60c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IAMWATCHINGYOU"]},"Identity":{"Case":"Some","Fields":["9zcfVx3rKDiRAIoXXt1TO3SnQyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x+nIXzm5yDGVLKhzIznrPJqA7t5XPTB0URE8JoHxl34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:22"]},"IP":{"Case":"Some","Fields":["185.225.68.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTOR"]},"Identity":{"Case":"Some","Fields":["9zIwPa4BpO+a8oEnQllQtJTFmSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5sbGjpQ8Kpu0bgtu0drPjXwLPLTiIPoANWcwaC/LYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:52"]},"IP":{"Case":"Some","Fields":["5.255.97.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTor"]},"Identity":{"Case":"Some","Fields":["9zIbKu1mrs8HyxGIDMlFPrN7OCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["If81Ksf3z4HrQC/5kBKubsIOYsbFKyU+hjc27/rBwbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:53"]},"IP":{"Case":"Some","Fields":["185.146.232.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NonPersonallyID"]},"Identity":{"Case":"Some","Fields":["9yVcI2FQCb7C+K8boZ5qsuU0Xnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FQYw7SnrVdzHWqGs/egB3lELVV+u/XmByZcKaq2YNA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:54"]},"IP":{"Case":"Some","Fields":["70.95.141.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["knowledgeforrussia"]},"Identity":{"Case":"Some","Fields":["9xT8ioa3bNv0W1ZzeiXmAdebXI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+glgijYR20GTsTaNMUKDrGK3mJ0vxGSK+2BqBKwvfkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:37"]},"IP":{"Case":"Some","Fields":["134.209.242.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["phoebe"]},"Identity":{"Case":"Some","Fields":["9xBpPD8IaBD+GZEgjRLBNK0T0kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xD+6q/C0EBjcXCYk2MRgzrGYzFZKEsaxo0j4S7FQay4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:31"]},"IP":{"Case":"Some","Fields":["83.79.15.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wedostor"]},"Identity":{"Case":"Some","Fields":["9wt8XNctdMf58tyE+p0g1RuhNhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0RvF+5LOxGGEwORF3rBvgyj5zAuOs0X+/EF9lmDfLAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:37"]},"IP":{"Case":"Some","Fields":["46.28.109.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:1::4205:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragomir"]},"Identity":{"Case":"Some","Fields":["9wJiRoI8YyKSHzq4dTfrsCCrAeU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esldu8uXfahoSP3PDFJU9hhL51xwZo7y/3yQveEDjD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:14"]},"IP":{"Case":"Some","Fields":["45.249.90.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["9wGVPsu2km8pkSaYB4hY7jwqMUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8YOB4uY5ZYm+sJYGWdD8CDO4UEZ+HBMxZEQ0Sg9RWxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:41"]},"IP":{"Case":"Some","Fields":["185.241.208.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["9vwFml0coFzbuCToVEaMP6sebwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gMEVgZQubp9PvA5UB2eZb6wVuXRSnul0TesxmboE8zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:27:48"]},"IP":{"Case":"Some","Fields":["23.128.248.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::212]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt35265"]},"Identity":{"Case":"Some","Fields":["9vn5QpEndgZvRNi9rOycXNo2hvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nOr1xwO8zr3+lJHhe/emUxBAsAYbviRNEP+FFdWZcS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:21"]},"IP":{"Case":"Some","Fields":["185.245.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv124"]},"Identity":{"Case":"Some","Fields":["9vWbZLJJTymJnoByvLDms+BwqRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpqb1llubfuHkG4V3Zx4etXqQrGEMVGR5ujwWGp40g8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:53"]},"IP":{"Case":"Some","Fields":["192.42.116.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5524]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tondro2"]},"Identity":{"Case":"Some","Fields":["9vTI2Yp0MP6pW+wel4b241KA+hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oVw2srT+SF/5miYDvEi1lMpfHFAP1U9NDuXnECK8YiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:28"]},"IP":{"Case":"Some","Fields":["84.16.229.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay22at8443"]},"Identity":{"Case":"Some","Fields":["9uz9MaRvUXTCVmDhbDxi55l0+d0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pd2zXN7QGpNm4lLkT9AQOpSNb/d3zXyxiN7x4Pqtjhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:44"]},"IP":{"Case":"Some","Fields":["140.78.100.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JPsi2"]},"Identity":{"Case":"Some","Fields":["9uxGkzzo1PrVzNqoscWjd2hfxSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEBCiKg+ooOy2zMZjTbBZEPBRtY/TINTl8mR9kkQDlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:02"]},"IP":{"Case":"Some","Fields":["37.200.99.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::1ba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["9uW/yL6lqfMy7wmzitaDKv8T900"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["itJ5aex0SUWs2SnxI9Ij0yc4ufb486v0v4meQnqiR70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:43"]},"IP":{"Case":"Some","Fields":["208.67.104.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dhitechnical"]},"Identity":{"Case":"Some","Fields":["9uJP2w0gjUApLtknT+t/r6UprCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zTsmxmQXBMSTMZ/v0gF+bG5m8iBuFQ0L/DW3jV0wsfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:17"]},"IP":{"Case":"Some","Fields":["50.250.2.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["interfesse1"]},"Identity":{"Case":"Some","Fields":["9tYAzxOzu+KpGgZT8eydAOfLOms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HS7BMalNGA+Ju4hgXYew2ohhkqNnkJJ+ycmDJC1pI9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:15"]},"IP":{"Case":"Some","Fields":["85.195.208.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:c603:b01::42]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["9tNKop/FUaXhcG0WS0SAnW3AkkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BO1vZmS5/guNaVvooj6RtnvgtyI80IHKZK7YLPR7Oy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:38"]},"IP":{"Case":"Some","Fields":["151.115.60.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tRooo"]},"Identity":{"Case":"Some","Fields":["9tMLWt4T+Pa9yQ6/FAdBAqeWKg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ltlGpvrn5nEatw1FHZbryfQRsuFXtQKz6KS8qb6mU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:13:23"]},"IP":{"Case":"Some","Fields":["87.121.52.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imfrank"]},"Identity":{"Case":"Some","Fields":["9s/rfjbdF39JfSTa0ev84nD+rhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gERyqYgDRCXkVaYSYyf/ScWSXrf5SopQDkb5sLWd4fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:44"]},"IP":{"Case":"Some","Fields":["69.207.41.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["9sqSXNzRsS9pOktux56pFNzcmAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4hEU9j0JsDg75WzPzqpWFeS2TRe9gBEH8UTzXmuC/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:38"]},"IP":{"Case":"Some","Fields":["185.220.101.45"]},"OnionRouterPort":{"Case":"Some","Fields":[10045]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::45]:10045"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartleby"]},"Identity":{"Case":"Some","Fields":["9qyJGSkzs3uJ9t8sTJvHb5iu45c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WcBE0FLksGGNvch1opJWwBlKWVWnF1kasVrIVHEKcvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:16"]},"IP":{"Case":"Some","Fields":["79.116.34.118"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prawksi"]},"Identity":{"Case":"Some","Fields":["9qNY3TZ7MoLW71gkydReGhnH6BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tnGAQLaNUONUj0wOlag6pulzsFnonw7c6VZH4l1HB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:55"]},"IP":{"Case":"Some","Fields":["192.160.102.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::8]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9pkFB4jYVIl5CEh+CLRKP8vXX9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WqqvrRzhNXHqmjLXVS3q0cQ8cAozg1fQUDcyt0rJFpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:53"]},"IP":{"Case":"Some","Fields":["195.133.192.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhShitARelay"]},"Identity":{"Case":"Some","Fields":["9pMfRlos8eXsROgrpS5IDvM4JM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EZuuL/2BBJXEuGQmhBFWweZg5ll2xCaccUJ6pUfAjBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:39"]},"IP":{"Case":"Some","Fields":["24.28.101.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pretzel"]},"Identity":{"Case":"Some","Fields":["9pELZRb6rHdj/2uKUF2cNj7I21Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDGnVEOuv+iRSs1NPG0gKcGTW8hY0WrHljs54/znVus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:56"]},"IP":{"Case":"Some","Fields":["93.174.93.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infiltrator"]},"Identity":{"Case":"Some","Fields":["9pDgKE16uqIjF7yHFwxnw2rpUKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MRAgTFxclu3jy8Mf4Wg/jfwsCxupnOKscS5VmzqZvfE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:22"]},"IP":{"Case":"Some","Fields":["82.165.206.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute16"]},"Identity":{"Case":"Some","Fields":["9op2Ui01b4m+woaImjgiJQVnvi4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/QdaOqUMShmtf/7HptZ8cw1mAELNoaFHxUPaxOUvF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:15"]},"IP":{"Case":"Some","Fields":["185.220.103.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poiuty"]},"Identity":{"Case":"Some","Fields":["9nQN6r/V9iYS+gJaUHnqcoRrH2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["khSaVQqZ26mzJ4aCLb9CqglGHtZs1GHe3wTODsMv2G0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:48"]},"IP":{"Case":"Some","Fields":["65.108.204.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:a093::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maikastorrelay"]},"Identity":{"Case":"Some","Fields":["9nIOSRpK/MrRrYpvkCK5AlPFcA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlL69RRd3wdDudsky3vI4kBU4kcaFIo8LUOFzWwRRVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:18"]},"IP":{"Case":"Some","Fields":["134.255.219.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9m26Kr2UHMuCphQ6+NHNPu8WIvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KeMnRzCsvEG/iQV6mOw0L7l3s1TSpk3is0lWTR7Vdj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:04"]},"IP":{"Case":"Some","Fields":["37.120.187.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anotherRelay"]},"Identity":{"Case":"Some","Fields":["9mkePrfKs8h2qqiF5oAbY9yZjDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0cGX/KRVHfkX7/iywRPoMyrjDAl8Fkedwqte3ChHQ9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:30"]},"IP":{"Case":"Some","Fields":["144.217.4.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ebTorRelay"]},"Identity":{"Case":"Some","Fields":["9meYt1f/zAKEHik3+PWabfsz7TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NoMjmdUR96C3XSkXc/lKyW8YL5Gz0oiTzGIieYGxw8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:53"]},"IP":{"Case":"Some","Fields":["178.238.236.41"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2034:1631::1]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex79"]},"Identity":{"Case":"Some","Fields":["9mTl5QtNIW5ZQNp+nPZT9fncVhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJ9aFyRAXSqKuyHOySG2v5DGlNOISxaKC+K1SwqpWog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:58"]},"IP":{"Case":"Some","Fields":["199.249.230.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::168]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saltedcrimson2o7"]},"Identity":{"Case":"Some","Fields":["9mETHDA+KlkxiZ27CSugNCMIHB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WoBikxg9n/6MSTtSvUDupb/oYcrMlhobGaqcCqEYzv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:52:18"]},"IP":{"Case":"Some","Fields":["124.170.17.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9l3M1dDn6UpIScN8pcF3zpwb7Vs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/WqHVBhKB0Of2dlplDrpiXAV94V+4IEQISRwTvB+QE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:59"]},"IP":{"Case":"Some","Fields":["163.43.195.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BuyXMR"]},"Identity":{"Case":"Some","Fields":["9lBQLpCRZyqZBUuzR27nM3aN0/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNuNliGwzw2l/GXS9iXls3HvFMiyhyGwQLfXxFzNnis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:13"]},"IP":{"Case":"Some","Fields":["70.187.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE72"]},"Identity":{"Case":"Some","Fields":["9iR+TORSMaC0Q3f63IVJ6C5P314"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sCALJvVDxFunMbZFQN/JSSv9HeC6Z4dXorW7iAxoIGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:18"]},"IP":{"Case":"Some","Fields":["37.221.67.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:102]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giganonNL"]},"Identity":{"Case":"Some","Fields":["9iGr24+4b7es0nretwf5Oo4yAlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4SkzeF8wTC2lacP2QmKurFaKxA/MxSwbMGPjKVqatxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:41"]},"IP":{"Case":"Some","Fields":["77.166.80.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lena"]},"Identity":{"Case":"Some","Fields":["9hyLFEw9dp/YDjnrWJyn+OYeCMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yOur439IGGsrxCNIm0wssRliWrd5UzaF8Rb9xJXL8Fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:50"]},"IP":{"Case":"Some","Fields":["185.163.46.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2db8:13::91]:9054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oromis"]},"Identity":{"Case":"Some","Fields":["9gQTHcxDA+UduHagF6PcloT9Yms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/X0mt/WsXFe6llN32eyDsVWGABCVX6JR/lbleFWeBOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:44"]},"IP":{"Case":"Some","Fields":["217.112.131.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis72"]},"Identity":{"Case":"Some","Fields":["9f1+9DB/jFw5gUeHfzKp+fceIJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q3TAaIvO/6w0zerMM6Vq6JmKBsL1vCs7NZ/OqrSYL7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:06"]},"IP":{"Case":"Some","Fields":["37.221.65.168"]},"OnionRouterPort":{"Case":"Some","Fields":[8360]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::3aed:101]:8360"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nap"]},"Identity":{"Case":"Some","Fields":["9fhJeznBAivKeGASOQ4f2lWrc+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Suann9WX/IWsD83vJTv5fo1/DKrdD2mon7rschYpT9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:39"]},"IP":{"Case":"Some","Fields":["212.227.73.217"]},"OnionRouterPort":{"Case":"Some","Fields":[11143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6bc::1]:11143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trustn00ne"]},"Identity":{"Case":"Some","Fields":["9eG5a/5wD/i/Cd5aAhgeu0jiGPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9Q2L6py2FNaskvRzDKGqMMA7nedv4QmFzpDvG2wE3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:22"]},"IP":{"Case":"Some","Fields":["84.234.250.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summ"]},"Identity":{"Case":"Some","Fields":["9cdHsdd3tP0zQgOCADOCWZLGTGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2N08rKjOXpf3z5J9XZVh7BUnbTJgC08koPVV672cDiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:43"]},"IP":{"Case":"Some","Fields":["103.77.4.182"]},"OnionRouterPort":{"Case":"Some","Fields":[27015]},"DirectoryPort":{"Case":"Some","Fields":[27960]},"Address":{"Case":"Some","Fields":["[2a06:1280:101b::2]:27015"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ansarelay"]},"Identity":{"Case":"Some","Fields":["9cLrV4uYQgad5WDwD4CLa9NVTio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0zox7/MVNTdb5I9hcTinmY8N7/fYsDKUM9kRJQwQb4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:20"]},"IP":{"Case":"Some","Fields":["62.78.187.78"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golTorNode1"]},"Identity":{"Case":"Some","Fields":["9b8sg16G3ykdx9ht0eFUL0iH46c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V0jBi+Dw3gMXCMM6IruZ3Al8wtMJFNxrewI+n731gkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:29"]},"IP":{"Case":"Some","Fields":["188.190.109.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myContribution"]},"Identity":{"Case":"Some","Fields":["9bmVKmcq8qK2dm2Ap7vSmZAAl1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fe7xCtMi5pTDiZNh8WQ2p89TGcbuwY6bE6UF1AP4Hbw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:04"]},"IP":{"Case":"Some","Fields":["141.144.249.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bistrv1"]},"Identity":{"Case":"Some","Fields":["9bWP7kRXPDv9fRdtkYultAV1Gdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4pGvwusucZE1ahhOIHdshKzcrkidtYs1oyuiqPutgMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:39"]},"IP":{"Case":"Some","Fields":["212.47.227.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a4:933::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marinsThighs"]},"Identity":{"Case":"Some","Fields":["9adl1ZHcBSAeyqLBjAlbHRcIU8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZFKQu+HE3l2aNOa1vZ37fHvHEdy1TGfbTi6cPhVmvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:51"]},"IP":{"Case":"Some","Fields":["24.4.166.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torbuntu"]},"Identity":{"Case":"Some","Fields":["9aHQPAGfntTpdqC6x6R21+r3tT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uv4KEPTUWrkQXwawE4ML8uchZt0IkAkjhhhkBelT+0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:17"]},"IP":{"Case":"Some","Fields":["98.63.230.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:246:c200:22d2::8a7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WireCatLLC225"]},"Identity":{"Case":"Some","Fields":["9Zao+RSv4vB3Oq977iyoJmN7RwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eB3s6dCHeSnplAfsaCuqEbET9UHj44DDQbt0UDyGZm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:20"]},"IP":{"Case":"Some","Fields":["45.45.225.1"]},"OnionRouterPort":{"Case":"Some","Fields":[45555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc52:30f::1]:45555"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9ZWaHxFUgH0+Uah7zcpuCWNTV50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VK1B0IBadv1V9s7eceQ4PLwnnRAf45NGojAwSfCxBqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:03"]},"IP":{"Case":"Some","Fields":["5.2.54.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[9480]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddgserut"]},"Identity":{"Case":"Some","Fields":["9ZHbDtj63aY43rWZ2LCTCi4SL3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smiaE4zeIRprnslFA3iYaeYGfWk5V9bjUZwvpDGccf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:01"]},"IP":{"Case":"Some","Fields":["89.36.218.127"]},"OnionRouterPort":{"Case":"Some","Fields":[18364]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:a140:10:e7f::1]:28196"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["9WEqdUVYANzUJ8j9kZ71zOHVGVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V7lSXlsnAAYjsOjr13KimQElNizFcefA8sH05KfDEe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:57"]},"IP":{"Case":"Some","Fields":["51.81.93.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MeowRelay2718l2137"]},"Identity":{"Case":"Some","Fields":["9VoP/Zfxcq/niEaZ2hvwjA6UNU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i4dztJd54Unpzc263NxNWozZMgP5GrTs+HjgH6dh7fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["146.59.3.106"]},"OnionRouterPort":{"Case":"Some","Fields":[2718]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::51ae]:2718"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9VR3JBgobBPxnAuKT23Ao4XqC8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHvt0sFuyOWaRw+kox2VAZV+SJe5ymrQFf8XoPLTGWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:10"]},"IP":{"Case":"Some","Fields":["5.45.98.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:45:457:d2ff:fec3:e823]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot2"]},"Identity":{"Case":"Some","Fields":["9TGwuRvBWmjBtk6tj/eu4RHgYiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXMpgWYSsE6ywVig9C9hII+BBgNFhC6/lhZAg52gHJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:43"]},"IP":{"Case":"Some","Fields":["139.99.134.168"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1blu2DEicebeer74"]},"Identity":{"Case":"Some","Fields":["9TFplZIj9d9zpwX+cmHxKdumZUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtdJB4oYR1yFVhtM63qB5Lxn4hoJ6vKFmboGgfplelA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:27"]},"IP":{"Case":"Some","Fields":["178.254.44.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elhackernet"]},"Identity":{"Case":"Some","Fields":["9SYR2n4e4UNMi0U2jQhyxDegKVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M6GmfMUOEWI9fkTOCu5b+vTI5OKOYSkvMfoI2IrfOqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:20"]},"IP":{"Case":"Some","Fields":["91.126.217.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM10"]},"Identity":{"Case":"Some","Fields":["9SBNmKs4lLgHoMJBImf0tpukkcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2KD2I1Fo4nM2kmNpwiDrawu5SJ9JJVa6Juz+1JJLkwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:35"]},"IP":{"Case":"Some","Fields":["185.239.222.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["9Re6nyQTYTxEds4rgsOgPGW2tnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IvbCcfGlMA/AvrEPX/K9Jw8e1x/gpA7mLS/DwUtFEcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:29"]},"IP":{"Case":"Some","Fields":["23.128.248.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9RZc8mllonyQtisBYUHGDj5t2fU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xJbCamiKRLY0Z9V3dNUtEtepOi1MA24wp+cxgC0th8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:38"]},"IP":{"Case":"Some","Fields":["79.246.108.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["momo"]},"Identity":{"Case":"Some","Fields":["9RK0oEOFnXvt4ojY7iEWPXYJdPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVsQNZXlfLwokiJIEBI8X8SjNokT6mmJ51DIZ70pvek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:16"]},"IP":{"Case":"Some","Fields":["94.130.189.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob02"]},"Identity":{"Case":"Some","Fields":["9QzwKg5qnZsl9+siD8Jve9G3SZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MC1COBv9OyGFsCLBoHc3awUrp5Ck7JjQLO6EY7G9rRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:35"]},"IP":{"Case":"Some","Fields":["46.38.242.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:7:64d:547b:27ff:fe79:b9e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumpChugsDick"]},"Identity":{"Case":"Some","Fields":["9QqPFsVVrf8+WCew3QNc6G9xoOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/e+7X+4pXoL1uJXpVB3nMGMlw7TRCRhftt11cxhDCSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:05"]},"IP":{"Case":"Some","Fields":["65.108.46.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:521d::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypervistor"]},"Identity":{"Case":"Some","Fields":["9QdV1QGMI/bNEV8jyVzLLci2CLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["spZpvC19J3MJH628GzqCKrQniFxxv7otxAfw2sH0Dsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:50"]},"IP":{"Case":"Some","Fields":["95.216.19.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:134f::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KingJasperTheGreat"]},"Identity":{"Case":"Some","Fields":["9QB0jIUvo6hTn8f4ZVIaL1rS+C0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ApaBTsLUaCxx50rSWGbIEJNiFaxuT0LVEZjY7vcwPVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:00"]},"IP":{"Case":"Some","Fields":["84.159.57.70"]},"OnionRouterPort":{"Case":"Some","Fields":[61461]},"DirectoryPort":{"Case":"Some","Fields":[61462]},"Address":{"Case":"Some","Fields":["[2003:c0:bf1d:c500:b2c6:8ee0:75f1:24f1]:61461"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DidItWork"]},"Identity":{"Case":"Some","Fields":["9Pw2fsxbpfAXelU63eESAUhKHaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SA4ciakIduqEWoD3xfxpnuhl5hqqFxNli54t0m/YsK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:48"]},"IP":{"Case":"Some","Fields":["129.151.198.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["9PuagDCK5xyoBX9BWN1rPI7jdfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtqmJDAIfPnDnaep3GIvfYBMRbNPh72AD7G6MKbexPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:09"]},"IP":{"Case":"Some","Fields":["199.15.250.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:7:b74::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["puertasecreta"]},"Identity":{"Case":"Some","Fields":["9PYFqiHEYzzLW427wc7uXFkMbc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V4nBgyFAoOZ52r3ceiheSw7bKtJXNsiqvshWfjcr1AM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:50"]},"IP":{"Case":"Some","Fields":["46.231.93.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rodebardwaterski"]},"Identity":{"Case":"Some","Fields":["9O1Vp6FLZI+1TJAhZfgB5JN7Vpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lF3Sw8V+IdlcOkPdvTUL5bIbIVJIfr+mi1Y7Xpz5gZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:00"]},"IP":{"Case":"Some","Fields":["143.110.156.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::fa:1000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IQOnion"]},"Identity":{"Case":"Some","Fields":["9Nbpir4GWA+KNTRwZSA33YZFtHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CSTDydSYe/QO3hNGWBLEt0+vPBAKCf2kLytBkzxlCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:18"]},"IP":{"Case":"Some","Fields":["71.42.125.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XtorX"]},"Identity":{"Case":"Some","Fields":["9KTXjxbpoDU61bvvRjLHAi4g+yA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Smrftut0gGwqGQfviAcudLijIh8k/ni7QflE0OUqHg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:24"]},"IP":{"Case":"Some","Fields":["51.75.171.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::678]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leafspring"]},"Identity":{"Case":"Some","Fields":["9KS5adJuZHXSqph5BPuFYbzc988"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FENY/XZIdTWNQnYwunIZ53JxPTj8Pnk/HZ/dY0+CobU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:19"]},"IP":{"Case":"Some","Fields":["136.38.0.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9528]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Islay"]},"Identity":{"Case":"Some","Fields":["9Ic7PsMyW4HcNsfjitOl7RKy8zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRfrIUnKZh8XhJZ2YhID09Olyz9OJT9TtdfrOMfffoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:56"]},"IP":{"Case":"Some","Fields":["37.187.23.232"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:17e8::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elenagb"]},"Identity":{"Case":"Some","Fields":["9HsTv85O9Ize9sTXx6mSCOu5crU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrNb8ZWaRqWBIGg/Vt+muSa5Typqs/d0iS4DevfnT0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:59"]},"IP":{"Case":"Some","Fields":["185.233.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["9HZ181Lng8TQ3BUFbrkdyk9DwL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eaV7Seaw5ifzJlh/ZNkNCB86pxuWucwNPerUeq4iaq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:06"]},"IP":{"Case":"Some","Fields":["185.244.195.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:747:4804:22ff:fe7a:e606]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x1ea7deadbeef"]},"Identity":{"Case":"Some","Fields":["9HXlmH5EorexQ6K+4/gSju/X5aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/1v1dYOMpVu6Hhk4Mq6Kd8+Fxz1zHstaRIgIW5HP5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:32"]},"IP":{"Case":"Some","Fields":["188.68.45.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:47a:de1:ea7:dead:beef]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacymiddle"]},"Identity":{"Case":"Some","Fields":["9HHLAAB5ctwtx0jdV4XABaTqrXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8KyOa7A4rWdMLhtHwlzhh22sctnrelpxHADu7/aQis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:30"]},"IP":{"Case":"Some","Fields":["89.58.12.249"]},"OnionRouterPort":{"Case":"Some","Fields":[500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:60:cb7:3450:e2ff:fe8c:ae3f]:500"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["origan"]},"Identity":{"Case":"Some","Fields":["9GhU7azNFoKP6q/Gxu3cB93wRBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsAZwZYxknRL/ku5a1QR65s9w2GDY35z+CtFqoExOvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:28"]},"IP":{"Case":"Some","Fields":["178.32.222.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e17f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OpenWeb4All"]},"Identity":{"Case":"Some","Fields":["9EUYUx1n9+yXZFqT1bXhF7WHxuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8F21R2UoxGlQO/+Fqsz/HdoA+b6bvu9E0eMW8OQwYRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:04"]},"IP":{"Case":"Some","Fields":["107.189.6.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed17::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheCheapBigfoot"]},"Identity":{"Case":"Some","Fields":["9EP+12Wx8+/0twnCxQns/c/1oo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hlwCHr8uO+daSLUMVwL7FvktZbzFxuGQxrpzxqQN8ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:36"]},"IP":{"Case":"Some","Fields":["178.128.255.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EvilMoe"]},"Identity":{"Case":"Some","Fields":["9CYydc9UpoNu571SexMog2pvBuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CHe4Aszy+Gosz24quh2XrAz0VtMAnUBeBnbSl27i/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:20"]},"IP":{"Case":"Some","Fields":["37.187.102.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:266c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TaurNuFuin"]},"Identity":{"Case":"Some","Fields":["9CKTdDsLxKM8gKVCpFHubGSyfek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oEEQIlOZKH11sg3kn4XUf7IafGGdrVuOBA8QIz2L0es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:50"]},"IP":{"Case":"Some","Fields":["178.26.174.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubaura"]},"Identity":{"Case":"Some","Fields":["9Bz/GJ2oxMACmsyuWjmTBlIYyOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ZiKHsCDfo0Cwb/SfJKqN7VVbuuK/UINQgM0qasjv/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:35"]},"IP":{"Case":"Some","Fields":["23.81.44.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt85328"]},"Identity":{"Case":"Some","Fields":["9AAWxaLXRg2lzL+KI0YTXWu8PdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bNbopgugc4CC+sbJ+feboUz44ofX/YckTteWrXFiHQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:15"]},"IP":{"Case":"Some","Fields":["185.245.60.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PubliusAnonymous"]},"Identity":{"Case":"Some","Fields":["8/nMlV98WZOPJEWR22uymct0Vac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nUCbUZAYvul2nhMyCRTyakNazA2M+EvIQfbrO1eiayg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:29"]},"IP":{"Case":"Some","Fields":["77.74.96.43"]},"OnionRouterPort":{"Case":"Some","Fields":[1917]},"DirectoryPort":{"Case":"Some","Fields":[1953]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.12"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Merlin"]},"Identity":{"Case":"Some","Fields":["8/P0kAuHz0prSn+UAlAvxFe3sfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sXasAnaavShLN1UX/kwl+BiUt9vwKRfuck34Uq4NmT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:51"]},"IP":{"Case":"Some","Fields":["92.35.4.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ganymede"]},"Identity":{"Case":"Some","Fields":["8/D3F1cZ4D7QX2oEDx5pF2CanhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xgFVheVeD5vT28ZVzyzKr2PtA6aEQYAqDzTONFBr56M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:29"]},"IP":{"Case":"Some","Fields":["93.208.141.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pkj2"]},"Identity":{"Case":"Some","Fields":["8+1WjMWvfJELo79gl12EQEEMep0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C6Fnyk8mFDxQU2ckhdX4TZN+MOnAASbplk5f3fcT2Lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:18"]},"IP":{"Case":"Some","Fields":["185.82.127.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["teutates"]},"Identity":{"Case":"Some","Fields":["8+seH/RaPN5OAvvU6AXU/DekrVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w/7O+Eq2L5MvALelqDrgTyvaB5suceESAGVJQCL2F7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:12"]},"IP":{"Case":"Some","Fields":["37.120.190.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["8+bwFnHAh60xi7pH/NCLZdGkRg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YgAHLh21Tk+R7uC8ogb025Srz+pz0tk0i/9thGsZMrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:25"]},"IP":{"Case":"Some","Fields":["185.241.208.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay4"]},"Identity":{"Case":"Some","Fields":["89er9Qz1EvyTMjcWlT9cnsXbK5U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nm51Y23b66NPwR7e1leT3nxvo5iOMtjfTSmE6GOsUXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:48"]},"IP":{"Case":"Some","Fields":["89.58.5.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:dc0:94bb:2eff:fe23:c95b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams07"]},"Identity":{"Case":"Some","Fields":["89UTNtWowVSJyQNdKyKTKD0FF1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfK46u3u+o3aK2C3lWLqXZan1WB5ZZgTWvozd6/Xpyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:28"]},"IP":{"Case":"Some","Fields":["45.151.167.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::d]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchieSoftbrow"]},"Identity":{"Case":"Some","Fields":["88awEEU5JFmZv9GUlZvxMbPkFM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXFR/rRYXBKwkRhFRKkgxwAlQQC/0dnXBacbOJib/MY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:55"]},"IP":{"Case":"Some","Fields":["188.166.31.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev4b"]},"Identity":{"Case":"Some","Fields":["87LMjCqzMRUOCW3R24gQ5KQ/OZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1FBh9rBR6fvFMhYrxiBCZEsaLSO/dst/a27Ff2RCjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:23"]},"IP":{"Case":"Some","Fields":["87.118.116.103"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:4134:101:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deponia"]},"Identity":{"Case":"Some","Fields":["86t6xnQEjNVq8ydap4WZZ7sQ4AE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bo6NLDr2Wl/52WIGGdZarXpJiSU4NXm02WjkQa/0KI8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:58"]},"IP":{"Case":"Some","Fields":["185.248.85.30"]},"OnionRouterPort":{"Case":"Some","Fields":[57523]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast2"]},"Identity":{"Case":"Some","Fields":["86lYj7RfdtpN5bNQxCXBMPb/qYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBpP9skO1THV4qzTN8MxRN5xO7FjJZsvHUYigbI0nuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:38"]},"IP":{"Case":"Some","Fields":["89.147.108.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fumed"]},"Identity":{"Case":"Some","Fields":["86ZMMsHjs/1sQezOEQxh5Gy3RiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N1bcvSGg3A3vNdAsK8pV8BvHJVqz4dcYpbRru/ugXkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:44"]},"IP":{"Case":"Some","Fields":["124.109.1.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["53labsfmt"]},"Identity":{"Case":"Some","Fields":["86QlD2PyU7ZW942uccdd1gBjjpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9eTxZ3STDecaoUgAHIIOUsSxU1+ZSVeUnSwzKR8Q7ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:25"]},"IP":{"Case":"Some","Fields":["103.196.37.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1:dea::111]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finite9"]},"Identity":{"Case":"Some","Fields":["86ExAvHbplKFpkyfo0ZvcqWqBT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6I5E88/RBxiFkOKWnnLSvs/XiM5GivLh+NfC9Cj8YU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:45"]},"IP":{"Case":"Some","Fields":["83.233.125.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccvpn8"]},"Identity":{"Case":"Some","Fields":["859XL9b3t7July8unHuC6puq1Vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bX+a9dBb12cpMHDag7GWeZBbyWC7HuWA+mMd+sy+eJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["107.152.32.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:0:35::8a9a:9dc5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Dingle"]},"Identity":{"Case":"Some","Fields":["85sr4PC53P09Q6qhLWvhaxSxOnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RnUMEBbQFik6foDXcbOuL7+CyJHrMVse2NvWF/8Nuyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:08"]},"IP":{"Case":"Some","Fields":["23.111.179.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LostArkLux1"]},"Identity":{"Case":"Some","Fields":["85Nvl8FO/P0YFU30RDuR/t0HH0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTPYePG0DyITmmQDs9dJWkBtNDTmxykPvfPpLpeuAKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:40"]},"IP":{"Case":"Some","Fields":["92.38.163.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::1c4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot64"]},"Identity":{"Case":"Some","Fields":["84+1WozKagDN0CSl6iz+yzikjhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F2QhMyf0zdgkGcEWDJVJjNhSiAjGadbew6KEk8va9pQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:03"]},"IP":{"Case":"Some","Fields":["193.108.118.225"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:d00f]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashEagle"]},"Identity":{"Case":"Some","Fields":["84ieLGimc4SMqQlPb0o2U9dpIQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7WlLvK7UFYkzZeJ8qBeUA6enaeXRozt6sac8JInjRpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:28:18"]},"IP":{"Case":"Some","Fields":["46.29.163.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700::5:22]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt81678"]},"Identity":{"Case":"Some","Fields":["84bSP8WMzuaEbnBDg8hv/oRPRNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NY3q3io5CGnJned9XYTfoDMnxh88XtFUcSjKheZ3Hpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:15"]},"IP":{"Case":"Some","Fields":["185.245.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bishop"]},"Identity":{"Case":"Some","Fields":["83mCaQs1i0+DPWl5F+CcO+ekrU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b7S/aZvPGtXd6cFGy/hs2EFY95jmeqLGq00bDN3jSNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:13"]},"IP":{"Case":"Some","Fields":["107.204.177.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["electrickavenue"]},"Identity":{"Case":"Some","Fields":["83BvJnD9IV2GPmh6qJAN2m8scLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0mo+iqXcmdJNkXW9dpCS0Ptf4Mx5DVyj9SYoRm20aiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:31"]},"IP":{"Case":"Some","Fields":["94.100.6.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gweicz1"]},"Identity":{"Case":"Some","Fields":["8258h0ZkkHfaJUOX9yGFGrvUtSg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5UNm5zCowJ4qrB+HWT72cBXrIAv4nnRsQR8R0xwPxNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:37"]},"IP":{"Case":"Some","Fields":["146.70.129.124"]},"OnionRouterPort":{"Case":"Some","Fields":[56905]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iter"]},"Identity":{"Case":"Some","Fields":["82iUSDCbRqm3pmEsVMIFuvCXHjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jBu6j/hrgD2JlvWnduFPgRrYlrtgPsEoIEMRgWi6NY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:41"]},"IP":{"Case":"Some","Fields":["66.150.130.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:806:3::94d8:87bd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedSnowden"]},"Identity":{"Case":"Some","Fields":["807mcxIlGIc+cXwSjjWjibcseDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DMSGhsAK3eIwOGitcScBTbBJdXxgY9nptQSqm4wjUSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:54"]},"IP":{"Case":"Some","Fields":["23.154.177.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kaeferbohne"]},"Identity":{"Case":"Some","Fields":["805oGvgibevJE1pI9h3vn2iWa6U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKi7z4ly8rDmxMnCW+GXY4fsl/MlQkgGReWn9AzDuwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:44"]},"IP":{"Case":"Some","Fields":["109.70.100.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GreatCamas"]},"Identity":{"Case":"Some","Fields":["80sSV9sWjUBrV/9x+KOHauAZDRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["84soY44LsCiKNYaL0A2/ICOFgzz8truJqIsctIggpy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:54"]},"IP":{"Case":"Some","Fields":["51.81.236.225"]},"OnionRouterPort":{"Case":"Some","Fields":[56395]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SemiPvt"]},"Identity":{"Case":"Some","Fields":["80guBGteYR/fJ5r1m3CoioBNFHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DsL9hOHrD/W7DO92M9HjUt5cqrl9+5BNMpiwfwkueN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:14"]},"IP":{"Case":"Some","Fields":["51.77.39.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["8z16cvB0kKjYyYhBMMXuzNie76g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5R/pAzg2Je1PWxBe7WjacB9WYuK2xoNqietIc7kXhh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:28"]},"IP":{"Case":"Some","Fields":["185.177.206.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::142]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman11"]},"Identity":{"Case":"Some","Fields":["8zcCGrqfB/x9r4WcB9dvovf0ye4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xCxmmvKJsHUL1DEOqx8DjcSbeAsa5maZz2Yk5DqoKTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:20"]},"IP":{"Case":"Some","Fields":["172.88.196.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9004]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["8xRYDqIss9yxNdZOkhCL+4/SCa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1a0qFfO8+TRPPqYEo8N03pyme2EeqnGN0NQ8F5S8bBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:31"]},"IP":{"Case":"Some","Fields":["199.195.253.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:1362::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelayByBT"]},"Identity":{"Case":"Some","Fields":["8waQuiFfOd9up3Qk3xy2tbsP23A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tBpgywv1GidY735fLTXgzoHzSIuLP8HOKhkHdJHxhjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:51"]},"IP":{"Case":"Some","Fields":["125.229.28.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber52"]},"Identity":{"Case":"Some","Fields":["8wRPsqjOc3nS+6m/1iTv4YD0HCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W9ljOieHbb5AOgbgSwI63HgauhFMlQCkTQOPjg/876o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:08"]},"IP":{"Case":"Some","Fields":["185.220.101.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::26]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashDeer"]},"Identity":{"Case":"Some","Fields":["8wMX6f0MOlYFiSjWRUBnK1mQLR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NxLvgcIOy0MJHLr7WfedyS50rqVebtA7CZti5zTT7x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:20"]},"IP":{"Case":"Some","Fields":["193.25.100.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:12a0:3:24a9:8838:3642:9244]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["runninglizard"]},"Identity":{"Case":"Some","Fields":["8u1QMrUgIee627uC5llPGocv/Qk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYMdXKfz9JonZCno+0v3YXLyM4Oqeeeog/HVSDwBq18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:44"]},"IP":{"Case":"Some","Fields":["89.191.217.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krombianschniedschn"]},"Identity":{"Case":"Some","Fields":["8uYN4POb6oJrUOthmgFK3Olhk1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdO1WyridoqV5ctxEakkM7amPMymaXWEVP0LmwpnDjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:39"]},"IP":{"Case":"Some","Fields":["116.203.117.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:d8fc::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra64"]},"Identity":{"Case":"Some","Fields":["8tyt+yhdutchjg76BZhxXbqowY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ImfbmqLSuyUDmv4cbrhVQpD9m3/T3g9DQyBlW1ukuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:23"]},"IP":{"Case":"Some","Fields":["104.244.72.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JamMasterJay"]},"Identity":{"Case":"Some","Fields":["8tevVhu84yKhZC8MI998DLIr/Gw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z7FZLd5Z6tKW0VNFmDJh549mQpZ4dPp76zLD3nJwBTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:02"]},"IP":{"Case":"Some","Fields":["185.107.195.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DoubleX"]},"Identity":{"Case":"Some","Fields":["8rA+W8gatOGLrYYmZ2xtEp+lwxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uqJ+44JRSUUeywRuZQRSccF+taPgJx6jJjbuLKL4W9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:43"]},"IP":{"Case":"Some","Fields":["103.97.125.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inconnu4"]},"Identity":{"Case":"Some","Fields":["8qsOYu9tYyukerG6czbeJAA/bg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NNTIMUMFXtwtqjc2307Q9e9vLUcgoRdgMF1ztgxueZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:42"]},"IP":{"Case":"Some","Fields":["192.9.235.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor3"]},"Identity":{"Case":"Some","Fields":["8psPGpG1XMt/bNyiodGMY1cfdms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xWaxRYF2hj5XEbFAkolYrY4N+dDZx48frlHuPK5kq7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:25"]},"IP":{"Case":"Some","Fields":["51.15.44.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:1324::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8pVle7e7dPuIafqOeQNGG1DJi50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WaJH6E4Dhod4a85XAD2uOJ0KLIf6nEd5x1Dxtl6s6yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:35"]},"IP":{"Case":"Some","Fields":["185.207.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gork"]},"Identity":{"Case":"Some","Fields":["8omZgeOmAaey3cfd4CwkgGlwTZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LyQaoMr5AlEE7fh5tgjvOksQNLAHPrSQY+N01bsllHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:34"]},"IP":{"Case":"Some","Fields":["82.118.242.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra84"]},"Identity":{"Case":"Some","Fields":["8mV/ahe+YI/ZT1ZbxFZIMT1he2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gri5bhFPeH6A4QY7yVyTcrChTX8nrPFdaGETOBVHGo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:40"]},"IP":{"Case":"Some","Fields":["194.32.107.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["meatyRelay"]},"Identity":{"Case":"Some","Fields":["8mCZNhazGJeskLWPkxYrhetu6Cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h0ZU3Wpr2ZFePw+OUuSi8Y082xmQdCz5wVzxx98Ek6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:54"]},"IP":{"Case":"Some","Fields":["162.19.164.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["8lxhXCL79YQCWHtSWbWmgerjoUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FEXgWTtLo8jFN29Y/1EH4xriW7cS473GTM6ZTf1vvuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:42"]},"IP":{"Case":"Some","Fields":["198.244.207.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:b29:116e::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["staysafeandgoodluck"]},"Identity":{"Case":"Some","Fields":["8laaETmqsie7boMTonEjh/XmzSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EOfh2j5WdPGSZPDfh2qrskVkYARAKLcD8TqSew6twJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:08"]},"IP":{"Case":"Some","Fields":["185.181.61.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:181:61:0:23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktor2"]},"Identity":{"Case":"Some","Fields":["8lJORglPCM1GMayw+V1DT0P+JzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YOVaSvVlmetN4/2b9HQ6XHi4YAzwZgaHbLAj324jXZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:58"]},"IP":{"Case":"Some","Fields":["5.161.84.59"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:333b::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueOctopus000"]},"Identity":{"Case":"Some","Fields":["8kEzDxava9kCJsyRMNqOILWKrDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZ4yZ6tC5ONlEoERuaHVbYWm80+7C9dGwN1BrjAte7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:23"]},"IP":{"Case":"Some","Fields":["68.183.184.174"]},"OnionRouterPort":{"Case":"Some","Fields":[60000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::633:e002]:60000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stNet"]},"Identity":{"Case":"Some","Fields":["8j8C8oHXrEqFQH+iL4CDk4fNe9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92SfuZf30lRLHt57RDe4SR0CKUDrU1eoNBDz01YrhQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:39"]},"IP":{"Case":"Some","Fields":["194.104.148.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1c4:dada:bad::704]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeeJin"]},"Identity":{"Case":"Some","Fields":["8h5KctqPLxu3dxVUOVpqbQsbdM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6IO2fDc3ZVQSWSPIuhZsI4BuDpKCBuunEPTSPxowEls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:26"]},"IP":{"Case":"Some","Fields":["146.56.154.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN23"]},"Identity":{"Case":"Some","Fields":["8h3px94xYB2XFngeF+JDgIh4g9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qEBG3G7w1o9CVhYdVYMq5oYwNOcP6fHN0OiluCgxxC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:27"]},"IP":{"Case":"Some","Fields":["199.249.230.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64c]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ReleRapido"]},"Identity":{"Case":"Some","Fields":["8hfOg2vOPgbkcxVnIQ749hAdkpw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["giL7yWEezrMNbknFmb/N2VscZi8fu7x2C+W+hXyLuW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:09"]},"IP":{"Case":"Some","Fields":["5.255.99.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:d11a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondemogorgon"]},"Identity":{"Case":"Some","Fields":["8hdg5j/iu0Vim7FPzbD9Z3SF2vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V0uv1mPFkLcFMWzwE3cQ4mO9WJZmveIYuZXcNGLFVrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:53"]},"IP":{"Case":"Some","Fields":["185.220.100.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:10::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0140"]},"Identity":{"Case":"Some","Fields":["8hGnAxoU+w2hPUZ/bBuY/cPypVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xz9SNFOWQbORey8eu8OUWhDBfWl6xKIaaAJnLZzEq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:27"]},"IP":{"Case":"Some","Fields":["185.220.101.140"]},"OnionRouterPort":{"Case":"Some","Fields":[10140]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::140]:10140"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Komodotto"]},"Identity":{"Case":"Some","Fields":["8gw0ZxF0SmOa62nmrslB+HbIHbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gSHpgd98uQKaf/Vuo3X+DrnusxhaN4uaBe1x9fo+WAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:23"]},"IP":{"Case":"Some","Fields":["185.248.101.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gabelmoo"]},"Identity":{"Case":"Some","Fields":["8gREE9rC4C49a89HNaGbyh3pcoE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rsIPl2l4PWADCEzsbkURv65jp4s6ZZyZRyJGbFc1oL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:13"]},"IP":{"Case":"Some","Fields":["131.188.40.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:638:a000:4140::ffff:189]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heytea"]},"Identity":{"Case":"Some","Fields":["8f5xk6seQq6WVfPgNsJll0NSETk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iN+JeSSTD4h7e1Z5AtBb/pToq99aIdSYRv6q0oPRAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:32"]},"IP":{"Case":"Some","Fields":["45.77.67.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themis"]},"Identity":{"Case":"Some","Fields":["8eZnagVRtNiCYlNvqrSIuGGqyho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46eEWQqjwcP9spXZMWOnF35s3JZEnDftQiiopNixqQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:38"]},"IP":{"Case":"Some","Fields":["46.38.253.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1:47e::443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["8dSWZYZFTfRGT9biLyrsLcbioN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xW/JJPd9Mvq1g51OYdp7AgaTMWDvDBx3Dj+xQcOwVBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:22"]},"IP":{"Case":"Some","Fields":["178.79.163.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe62:716a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["csUniHB"]},"Identity":{"Case":"Some","Fields":["8c2HDXqPo2TkWaunCxc31AsLS7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gOG463P+pWGQ6apAHiOf934ORZ0IMCFViDk3WoOezUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:36"]},"IP":{"Case":"Some","Fields":["134.102.200.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:638:708:30c8::65]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortoke"]},"Identity":{"Case":"Some","Fields":["8ciQGlafZ2OHSNe+l5aVQbPsxZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glBk77ojj4333xiKZ0BcpXLb9bU3eBSsb82rHWu0ZHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:28"]},"IP":{"Case":"Some","Fields":["188.40.41.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoBoDy"]},"Identity":{"Case":"Some","Fields":["8cOwsHqsmYT+LsAY2eIVWXhZrGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7vqJxtHYc7Dzrj9ieUXJDCdse0x1Tc9RmDNTLwCHyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:54"]},"IP":{"Case":"Some","Fields":["87.251.64.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["8btvOOdo7CNqFr1nfAEgHiGCFs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m9+0CEoTJqYomEwK6nVaSkuyJvr/lLx3IwrFn1RbE2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:25"]},"IP":{"Case":"Some","Fields":["179.126.26.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bbkfry"]},"Identity":{"Case":"Some","Fields":["8agAdlZkyn2YOJfRM8gllFwoh0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34JnY008xmVZjYgmaDXEIIFqHSOS6/VCdsAq6D9cUGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:42"]},"IP":{"Case":"Some","Fields":["159.69.156.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:67f3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheAncients"]},"Identity":{"Case":"Some","Fields":["8aFY4C6QMP/QFvyvQtKE3pwx06M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlYqQH29UAVHnc8Q2fKcBtJBS7anVnWpEL5TUiBgumY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:32"]},"IP":{"Case":"Some","Fields":["54.36.173.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:602:caf::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["8Z2YQZyH42oLMHuFVZI43EbFYxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gl37flE8g3enuPXykibfe6DNZrdqcu8FlCpaKV8u9l8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:17"]},"IP":{"Case":"Some","Fields":["23.128.248.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["usNjBobVps4806"]},"Identity":{"Case":"Some","Fields":["8ZK9Ue8snKVTZG8oZo0op68cqw0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aVJE4+hsfoDNrkuDQFbGqeMBHxVoSAvFz7klrCEzXUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:08"]},"IP":{"Case":"Some","Fields":["149.28.58.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["PogboxRelay"]},"Identity":{"Case":"Some","Fields":["8XFlfPX3Jgc9Ot1UT1OPa6GyMQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqBsLVbMCvDouTQAKi1sK9oKRuD9o2K38uo3HjfxJUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:56"]},"IP":{"Case":"Some","Fields":["130.61.158.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WitchNode"]},"Identity":{"Case":"Some","Fields":["8VoqCL+RAX3PtgQhcWNWYeE6glY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NEUrU/n8Sk/wmLns91jU/wO2NygtQxy+T+du2ae6dvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:19"]},"IP":{"Case":"Some","Fields":["144.91.125.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2033:4966::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BriarFTW"]},"Identity":{"Case":"Some","Fields":["8Ubdcd7rtrs9emOM/9w71Dp1ZA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["spxgtjY5QAX/OI4uTyJnRJN5bRgnXd9leiftsRS7DWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:09"]},"IP":{"Case":"Some","Fields":["89.14.208.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["outstarede"]},"Identity":{"Case":"Some","Fields":["8TZhZ2a+4PBE9P3+TiNj3I/O4ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EvVBGQ4x91XoQRegQNKKabjcXyvIM+CtPfYQx9Vqrps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:37"]},"IP":{"Case":"Some","Fields":["85.235.67.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:32:7d3:18f1:1dff:fe25:dc29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract01"]},"Identity":{"Case":"Some","Fields":["8S+N/d4ZadTllAeB49qzJtKMEiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbLnfljZ50mrXc3CUi/HSJNivXz9EBFtlZkcpZHT+PQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:45"]},"IP":{"Case":"Some","Fields":["84.238.10.142"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LightSteelBlue"]},"Identity":{"Case":"Some","Fields":["8S0X8pbHko5TTTzvQr6PqWlh1VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fNu2khONFMzyHL411SeEtOrNoy4l8Vw9+qVLRXvM/b8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:59"]},"IP":{"Case":"Some","Fields":["95.116.21.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORneedsFreeBSD"]},"Identity":{"Case":"Some","Fields":["8Ruhf/YlUzkUmHrzzaxlJnlc0a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JYmXoyDVS1PmmLgBSvqttBuR2MEsU97hUQu4K0hrNko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:51"]},"IP":{"Case":"Some","Fields":["193.233.203.72"]},"OnionRouterPort":{"Case":"Some","Fields":[42564]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gusntwrk"]},"Identity":{"Case":"Some","Fields":["8RK6Z5XYY/IeUjoGYaE0oE9EkQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xRE+PDq3p99/02ykAHG3Expm+afkpKDZoXHAF+VQlC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:22:06"]},"IP":{"Case":"Some","Fields":["199.195.250.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParkBenchInd001"]},"Identity":{"Case":"Some","Fields":["8QveJ5rnFRXdzMxh3Bmsh2X4o8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXVoLeGLdmtLddteqZIf5UEqI84YBBc3yGv5rICjOyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:54"]},"IP":{"Case":"Some","Fields":["193.70.112.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["8QdDTXjy3+Tzgq+DbMaO4rP8724"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5lzaYyCMxyaG6LYoI48Ti4UK/HMEH74E/kvPHQQnYZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:41"]},"IP":{"Case":"Some","Fields":["23.128.248.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::54]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk7c"]},"Identity":{"Case":"Some","Fields":["8PUHSm2t09wi4fqhj9bYnLxSdxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32rpBn9kqEtXWejClMhIbDMMfs1jHeHkBKOIOUXLH9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:13"]},"IP":{"Case":"Some","Fields":["51.15.89.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:e00::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pinball"]},"Identity":{"Case":"Some","Fields":["8OQNLNaLzuFvprdo/kgGKu8JOx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AFxyjSNUL2InuZLJtbGo4H9rlmcoPB1C7aA3qUHHKkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:35"]},"IP":{"Case":"Some","Fields":["202.65.91.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8N9xIuW415YeYa+uLUE9riUnvyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["llss1QlkrSfJ3D71m/WTLolVbWZQkIsRCpJtImevnRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:06"]},"IP":{"Case":"Some","Fields":["213.54.108.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8NAesf3FCCeas0Eq8/yVC7HaKtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x4KfHpfrdMuASBtgs/GimTMNQ615HHoWRQzlHxIigUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:33"]},"IP":{"Case":"Some","Fields":["185.228.136.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["8M0UXPM3UzjvXPOF5ICnxIiVku8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVsIE7sJga1hzn4aZGNJOtVspkbWgQNvDoPgU7KwJtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:36"]},"IP":{"Case":"Some","Fields":["46.38.236.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TTIGermany2"]},"Identity":{"Case":"Some","Fields":["8MnAfRt8b8hUf1LKwQFbSnnirBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U0CIAcZualzCY67IULLc1pOE9YuqEKry1o0M8DPpQ0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:36"]},"IP":{"Case":"Some","Fields":["217.160.9.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:5b8::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrindItIn"]},"Identity":{"Case":"Some","Fields":["8MG0DsLP3nAt0+u1Ehaw2o1lTv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gc5xV+CyiLus3eo7DnQZlbLeRsb/Vbg9fvASwP1KYlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:41"]},"IP":{"Case":"Some","Fields":["85.239.34.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex87"]},"Identity":{"Case":"Some","Fields":["8LYNJcLoPqcHwohs+lnN/gJqDVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfxTJzGa+0M3H/KK/3//EAZUO1/evB3v5J0ql8Fu1iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:08"]},"IP":{"Case":"Some","Fields":["199.249.230.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::176]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vm242tornode"]},"Identity":{"Case":"Some","Fields":["8LWAeYuzA7o27RJoVo4q2TW2xIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIvoUDoQYtO7WpHxyvH9soLs/whdxnrn24sjGkRo0pY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:22"]},"IP":{"Case":"Some","Fields":["46.4.34.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Deteros"]},"Identity":{"Case":"Some","Fields":["8K6SK001jzr2t2IiolJrBHDn2RM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Byf7zpm/nAQ0A7FFHqDhcGRfE8Vu+Js/6IWKebXmcN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:49"]},"IP":{"Case":"Some","Fields":["167.86.66.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8Kgq19WPSeupcfdQSuIjtKhktQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GlhT2Bxx8XorKYlS+J84pBCmUAIANAHl6Y8ZrK1kPzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:11"]},"IP":{"Case":"Some","Fields":["136.55.42.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bambam"]},"Identity":{"Case":"Some","Fields":["8JqbMinC4z1OpxgejqsKsCmE9V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UqtStWa0i2+e8Ko4sRalMWg54eCLwTES2slHKFLxZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:14"]},"IP":{"Case":"Some","Fields":["176.198.219.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheyGlowInTheDark"]},"Identity":{"Case":"Some","Fields":["8JUBN7UHb9HGlc6DmMu12y8r2oQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jrp7kGoaRdUGp1S2kDynwJhBOsPfnePudDMf5EzaW0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:31"]},"IP":{"Case":"Some","Fields":["85.220.70.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontknowmeAT"]},"Identity":{"Case":"Some","Fields":["8JDQbdkIyRSH8KZd/9+x5M1mQog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3aNiS7ku3S+c466ndj7g3alv0L4MbaGMx/baPxoW0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:43"]},"IP":{"Case":"Some","Fields":["86.59.115.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:6:1500::666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["8IpSWsqWXPalXwWHv0tzc9mLlU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WtZFEa5j5/KbEjx4aiJTagbY1saAAZ3VgDMXUy85xN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:44"]},"IP":{"Case":"Some","Fields":["37.191.194.248"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fec3:62f4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["winR"]},"Identity":{"Case":"Some","Fields":["8Io3RMplaO0oVFwrfBvn2Lony94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h086jHzlRIKECBDkNO/rRxoftQhooCrCSx4E4LaSV5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:35"]},"IP":{"Case":"Some","Fields":["95.217.248.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:f230::10:4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pffffffttttttt"]},"Identity":{"Case":"Some","Fields":["8IezkSLBgaTJdnK0YLKEsyNQ31M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3wR4LBbgWAs1j9OEftuhvKCf3sCLvB1Jtyj11jmG3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:40"]},"IP":{"Case":"Some","Fields":["178.62.202.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GutterTor"]},"Identity":{"Case":"Some","Fields":["8IdR4nxrybNZC1qeIXc1jSzxksI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["emvQWq1nw4Jl+Qc0XUy1L/p8JWIj0JgdEq92LCSGIzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:38"]},"IP":{"Case":"Some","Fields":["65.24.251.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["8Hj+HXvam8rhMTM5a1ZMc+oo/6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dc92N8Ko8mIDHFRqb9GV0ksYCeV4xsw2ugyEqazGBQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:41"]},"IP":{"Case":"Some","Fields":["128.0.64.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickodee01"]},"Identity":{"Case":"Some","Fields":["8HYCvEN5YPHjk3AImpzJVqktKt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["greB2dFN6nCvFVFfpE+3KY9xnNjkeYS+LaWSGS7Il+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:25"]},"IP":{"Case":"Some","Fields":["195.230.23.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0175"]},"Identity":{"Case":"Some","Fields":["8DJn54Rh4ZjHqNPoJRRolbGb/Ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsMq1KKVD5ph8kQl1h2914YLrI+D8r0g1XkEBlF0fw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:23"]},"IP":{"Case":"Some","Fields":["185.220.101.175"]},"OnionRouterPort":{"Case":"Some","Fields":[10175]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::175]:10175"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ValveCover"]},"Identity":{"Case":"Some","Fields":["8CSOirMt9iSxHC85s1tlRLxjhf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["idOlBhm6/JTYd86EqGnQ8EUmx1iGvweXbUiTyR39TjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:26"]},"IP":{"Case":"Some","Fields":["135.148.52.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode1"]},"Identity":{"Case":"Some","Fields":["8B44LaUkpX8r+zxP8nCiPVzTMR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OEDdPFKX0ZA+xycsdph2s+0UiZVX9zm8Y6aI0dKH+CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:53"]},"IP":{"Case":"Some","Fields":["209.141.54.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PancakeWhore"]},"Identity":{"Case":"Some","Fields":["8A7C4KLKeaV/56CRigh5h3R9dy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iipMQ30Gp2MMtmMPaNQSq/QdCHfY7HyfpD5+Was7baw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:12"]},"IP":{"Case":"Some","Fields":["94.154.159.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f300:406::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JennyRelay"]},"Identity":{"Case":"Some","Fields":["8AyLdYn+5SvoQ4fNtCLB8ThpecA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6P0FtY5BRLIwXG9iUa7lOvoUb4GGT/S6EIkG6NKUjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:13"]},"IP":{"Case":"Some","Fields":["79.118.20.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudyDC"]},"Identity":{"Case":"Some","Fields":["8AuAu1gOH3i8Hje69bb97Wfk3Do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1sZ5gb8szenvid1MupoF67qHThSS7z/SPDmo9l4pqo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:16"]},"IP":{"Case":"Some","Fields":["158.140.234.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orca"]},"Identity":{"Case":"Some","Fields":["7/lFD2iRh3b4cLvFVPjjp9bhyVM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yoGyl21iRizZEeamNqo+TVH5OgbuFN3Hhz8sIWV2yZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:28"]},"IP":{"Case":"Some","Fields":["109.70.100.76"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::76]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeevestor"]},"Identity":{"Case":"Some","Fields":["7/MuCyuhAiUfP3F8s5iIlu6zqK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vXVwjxgD5CXIS+X6Pd5/LHF74TR2d1C8z9+WP5ABYig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:00"]},"IP":{"Case":"Some","Fields":["46.59.28.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marina"]},"Identity":{"Case":"Some","Fields":["7+3DEV7+S/oR/Fm55o+Gxl4h9dU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JTbkp7yIAlNQ99IT7yM/C8TXN3BrKgoLrP/ygjtR6Pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:47"]},"IP":{"Case":"Some","Fields":["46.4.115.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Slavyanka"]},"Identity":{"Case":"Some","Fields":["7+iez07hFhOhkkh3fruihxm/X/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AoOTA7OOzNuUJE+vzNoahQssE1i75ue1zhZUEbFZKzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:57"]},"IP":{"Case":"Some","Fields":["194.182.179.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:c47:e00:7cdf:4b9:a0ff:fe00:2f0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra41"]},"Identity":{"Case":"Some","Fields":["7+iEnRBRmrF1Dhr0dBAFlSKADTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwlbyOfs7ZpiT1FwBAg/eiPtmnSt09eD7jrOgI6FGO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:35"]},"IP":{"Case":"Some","Fields":["104.244.72.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dashcloud0010nor"]},"Identity":{"Case":"Some","Fields":["78Mg2Fu/X0G3v8FdzluwRLoY9Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8Da42UJMxoPYe3XO6+BQzVKZDu/GWZTi6HJlkxYerk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:53"]},"IP":{"Case":"Some","Fields":["185.243.216.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:93]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marcuse1"]},"Identity":{"Case":"Some","Fields":["765EcoJkmCIkRF6WIUwV+Qdd7h0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tOTuCcfYKrxOgn9+VYFCsr3yfnth/RlR/dR0a6FS19g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:55"]},"IP":{"Case":"Some","Fields":["178.20.55.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1b88:4::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay23L"]},"Identity":{"Case":"Some","Fields":["76LnsHOqTOLa9xYPI8kNuAWUj0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LmBQJhwQf5u90vX1QS0NpMUOwWULxX0nR71tOzIUuik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:34"]},"IP":{"Case":"Some","Fields":["85.214.128.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4307:8800:e806:8131:ddd4:af0b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PLUTEX"]},"Identity":{"Case":"Some","Fields":["75xGEfqnwhFVqLoqch3cPSeBYDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cKyqabppJL+h6LKU68D+8el1VCkUSJ786tnF4GQOF/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:44"]},"IP":{"Case":"Some","Fields":["109.69.67.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:16d0:0:5::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["madonion2"]},"Identity":{"Case":"Some","Fields":["75LJSP24OJbdvfdZb4J9d/iT428"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rr+yOVm/VEpslf4Tsp9XsCzDJ9PInHVTdK5BMlj2XJ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:00"]},"IP":{"Case":"Some","Fields":["45.140.180.71"]},"OnionRouterPort":{"Case":"Some","Fields":[1430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:c5c0:0:303::2]:1430"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["74gnJJCaapHViMkIHsW1EH84deQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkB8ll28J8LABIMlzvP5LP/cDqLOYtnkQhm+uTwdMJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:52"]},"IP":{"Case":"Some","Fields":["185.243.216.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:92]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flodder"]},"Identity":{"Case":"Some","Fields":["72YEuVqULxx62AffEPk7ngDEems"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qw/LL/X0g9aVrwDihMrpTIzlzvw5gXBjzBW5OY+Lwlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:25"]},"IP":{"Case":"Some","Fields":["91.207.60.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["71pCEV27MXhbGPbnPGQYlyQozFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3nTqj5XxmavadqOQcHrhfKfDF2YIrj6nR5SdWkkm/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:14"]},"IP":{"Case":"Some","Fields":["71.131.94.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["0x42FF"]},"Identity":{"Case":"Some","Fields":["71cg7b9I4a0EMA7eCQaXXm80kmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlsprPm8oRHzFBKovumhbfx2hiJNNOXjynznCTNpUWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:25"]},"IP":{"Case":"Some","Fields":["188.40.166.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["70zR82noCA37WkYYfPqXaNeFcII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sUcoFLCJ6zP8RL14yA0c+qgTSZsDyKcHMAJKiZ9Jp0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:48"]},"IP":{"Case":"Some","Fields":["185.194.142.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["70bE1miHLqIeihln6ZAtE7fpUmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wfGHwS8WsxUADwfI4r1GlgryyjqCuh04c/3+pIjG1NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:40"]},"IP":{"Case":"Some","Fields":["5.45.106.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justiceforall"]},"Identity":{"Case":"Some","Fields":["70CTOt4pnnz89LnF/PwzksC4cSg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hcOnS9aM6wBdMk52RbkXfbhtfqPv9VtXrD0X01LBkjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:17"]},"IP":{"Case":"Some","Fields":["46.101.192.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::e43:5001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ahplA"]},"Identity":{"Case":"Some","Fields":["7zz00oI6bJlcvb9B1cVahlz4QdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ax6KteHRPP1lypuSTnBlrDuBqBDnkTbFDWN2Rr6nNJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:31"]},"IP":{"Case":"Some","Fields":["178.17.170.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:cafe::39c:8624]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["dodson"]},"Identity":{"Case":"Some","Fields":["7y8m3Z0k3OsAqkwuoUbqo6bHuhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hcnx6Ke1tLOhsRNiyxkvS24I7djmgvYKisnI07P8Iu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:02"]},"IP":{"Case":"Some","Fields":["73.42.194.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:603:217f:8ab0:a8a1:59ff:fe05:d01b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["0x90"]},"Identity":{"Case":"Some","Fields":["7yXB+b74xKPyhZSTx8jFFIcltOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YoXXCvqU+VYrEB9/hGyptQ9HSikXRyk+O9p/g7+XrR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:45"]},"IP":{"Case":"Some","Fields":["176.9.98.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7xlAhrGFF44b9Umo+V3owD4t6/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WfUm5Y1jIDqeDi8TyJD0YFsGqUykaO2nNatX4lATC9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:02"]},"IP":{"Case":"Some","Fields":["107.189.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["v205"]},"Identity":{"Case":"Some","Fields":["7wkWPsPwPC9jqGW7vxzlZCxllaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1eF1eMu7zzday1jJa9eHJe/5R1OCOMz97cr390qbHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:21"]},"IP":{"Case":"Some","Fields":["78.46.192.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:821::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r3"]},"Identity":{"Case":"Some","Fields":["7wfSkN6b0RPWIkDklkEwDNgZ1hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N05nqCOUlI52pyaOZ41665qaVI2zll+AwTZF+Bk10N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:00"]},"IP":{"Case":"Some","Fields":["198.71.60.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JetiTorRelay"]},"Identity":{"Case":"Some","Fields":["7wTCvpz1ZtvMu2g/fQYPxIWlA5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3O6cF0u3EEsGA5jD9qDWIdapz/qJx1w1L0pnhJdPrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:31"]},"IP":{"Case":"Some","Fields":["79.215.21.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ozigbo"]},"Identity":{"Case":"Some","Fields":["7wHn5tXBSPp1HUKwEewZ4ht3Gn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kzpgo3ZnIbUatKR6vkd3nx8FywNJ8TA8Q7oawonjZt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:27"]},"IP":{"Case":"Some","Fields":["202.165.228.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stateiscriminalorg"]},"Identity":{"Case":"Some","Fields":["7v/A1TKrY7s+nK6tqCKXH2066NY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q09IVlcu8ovlrjcckxJ/v/uHtYwG5tUIwkFoEryzT1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:03"]},"IP":{"Case":"Some","Fields":["95.217.180.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:84f4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["g0bbles"]},"Identity":{"Case":"Some","Fields":["7v9MvaQWPJ179InYMQZwqNN4+X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d3GykP54v3y/4k/XxPlryYeRPeb8aElDdLJpP6xKzv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:08"]},"IP":{"Case":"Some","Fields":["5.255.101.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:106:1d53::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7vQLTN2qj2dGhUkeRek5kXmqGDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AgIH8/j2E3ngyYU6yneDnJOxnFkAD5qC6XR7EbpjbYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:57"]},"IP":{"Case":"Some","Fields":["185.244.192.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["st"]},"Identity":{"Case":"Some","Fields":["7vILoAeagQp7zgjn7KvT6cyf7U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jlCCy4iw12mDCBu72VTR8alAu3mH4nGm0+C+Ly4LmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:46"]},"IP":{"Case":"Some","Fields":["185.237.13.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adamsoftwinds"]},"Identity":{"Case":"Some","Fields":["7u+aL8g3vg4OWFJKBRj5jf/tKSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bXu+fo3gfMB9ULUETxhVQREKxSU1W99I6IkSCxmDpW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:38"]},"IP":{"Case":"Some","Fields":["185.140.250.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash1"]},"Identity":{"Case":"Some","Fields":["7tuf78kWX5tBtRWigvlaV0qAf7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dvCoxWPI4CQQoOprXQU7QI8smmX2uTBoe2AlsiA2aLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:23"]},"IP":{"Case":"Some","Fields":["51.81.56.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yourmomsbigass"]},"Identity":{"Case":"Some","Fields":["7s3KSNniEQlRuulKhX8Fm/TrfXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frSRVrYADe4ejJtBlFiIXMk/3NHXMjgh5m3i7ndzMAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:28"]},"IP":{"Case":"Some","Fields":["107.189.8.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tghb"]},"Identity":{"Case":"Some","Fields":["7syKBsTerxmR29ASdFl8sRQ7NYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gCO1JJR+9wNxXIOuiHfIiAReI1wAS0U4ks2LqHy/1GU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:09"]},"IP":{"Case":"Some","Fields":["79.201.178.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809n0n0n0"]},"Identity":{"Case":"Some","Fields":["7qhVZ81+vrHLxwrul8ReABm9vfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LlZdYZ6n9tizUQboVtUNGhwMR+Phf84K8/QMe6tPlck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:47"]},"IP":{"Case":"Some","Fields":["194.32.107.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LisaM"]},"Identity":{"Case":"Some","Fields":["7qUAohbaqD54FfLEZ4ZlKTX9c1E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LIDwxSe7eF/mrUR65g+wW/9n+n3QowwUH3NlUCm9ncc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:23"]},"IP":{"Case":"Some","Fields":["13.48.17.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandbox"]},"Identity":{"Case":"Some","Fields":["7pQDDQKvWniMYupW1INUDDhGDhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v6Sh4PRIdwjl7iZrpqZ9d/1ykXCxuse5LQRnS8JH6hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:32"]},"IP":{"Case":"Some","Fields":["176.107.176.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:1741:0:12::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7pCy7YJI6sIadmHgySUJFNDTVTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOZXpcnxHDGK1hbaRxec9AGwuNVC7UkI9/OGJLKGfO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:05"]},"IP":{"Case":"Some","Fields":["80.85.154.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cb1tor"]},"Identity":{"Case":"Some","Fields":["7nL4VEvEb2/820fM25VOWsZCdWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1y52YkeIuhcU68WrNQz9MRm1XG0dBRH5hwAcbgEvl1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:22"]},"IP":{"Case":"Some","Fields":["5.255.99.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cassini"]},"Identity":{"Case":"Some","Fields":["7lSzViTRdcbIV3kT+GF6IXoIhPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T9LdUjY65xJcNyIBmJUAyGGGYoBVyeQ+PO5xDDx/EkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:20"]},"IP":{"Case":"Some","Fields":["209.58.160.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer01"]},"Identity":{"Case":"Some","Fields":["7kskV3bYEbQ+Yg+K4+PP31OiB9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EZQxEIH16jNkDcF9kKZWUUWfvNwDFeMw2HZCaBX9ahY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:25"]},"IP":{"Case":"Some","Fields":["95.214.52.187"]},"OnionRouterPort":{"Case":"Some","Fields":[5118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay7L"]},"Identity":{"Case":"Some","Fields":["7kr2MgWPBzTBQmsa1on0dEXKIFY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XIZMfBu7AViZK+diFOPpL5iBNx9avLMTEe6A8h1z4Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:31"]},"IP":{"Case":"Some","Fields":["37.252.187.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:c:111::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anonymous"]},"Identity":{"Case":"Some","Fields":["7kghFrKkmitkU2Um6t2N6TL2kc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["De0RLi7SRqqJymfLoBJtrs2aLC2YYZUmyuSD6XDknt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:43"]},"IP":{"Case":"Some","Fields":["155.4.110.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenVonMecklenburg"]},"Identity":{"Case":"Some","Fields":["7j8UEMTh1km93kVkRveML9DMmMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O4dbbv8gJA/RZh7ZYoaApWRL6uz986S0q+7rh+7Qsdc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:30"]},"IP":{"Case":"Some","Fields":["84.131.92.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATP"]},"Identity":{"Case":"Some","Fields":["7jFdvSmxOExHBxybanLNZIHLoIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ETl+cSgEBG+p5akA7XVH5kFjzFPqy3/jvlPCqayhHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:29"]},"IP":{"Case":"Some","Fields":["45.154.28.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:848:240::240]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antonov"]},"Identity":{"Case":"Some","Fields":["7jE01te3A6Oe75wMWzf8hCss1yw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1aJPhdByNIy+XwYh86+zifAcW+WKdymP2y2gr4ETILY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:00"]},"IP":{"Case":"Some","Fields":["185.189.157.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myzwiebel03"]},"Identity":{"Case":"Some","Fields":["7iqRCKntv8tcRPKZMmdXMYgXaqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hkPk4GTAn1bTMtsi2q11Rgn3ciKG7Er0rGS8efpB5Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:10"]},"IP":{"Case":"Some","Fields":["49.12.225.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7ipiEEKZSylFLBL/O29i2elXdYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwGkn3qBW0Xwdof3c44pqwNe2KYweY9KV7L2+hTpF+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:47"]},"IP":{"Case":"Some","Fields":["145.239.41.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer84"]},"Identity":{"Case":"Some","Fields":["7h0ykjT95eILJgK5CnUl6sTteLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2erBWd44rWuxSvQ+l+FguOzAxITrfDOh6qVi42VRVFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:20"]},"IP":{"Case":"Some","Fields":["95.214.54.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8184]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n1c3r3l4y"]},"Identity":{"Case":"Some","Fields":["7hjokc0Qjip4Q43R2rxblEyDBds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hi3BUOZ67KrJi6aCxxdkHPW5t7W+aCKHQAkURW0NWb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:54"]},"IP":{"Case":"Some","Fields":["94.16.112.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:5bf:84a1:a2ff:feaf:4fc3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBigSleep"]},"Identity":{"Case":"Some","Fields":["7hRmMOFVun0P/b6TFCnygPR5eEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mdd5uVuLlOaF9mBiijq+/NJ1PA81x8I9YgObKrMn78A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:07"]},"IP":{"Case":"Some","Fields":["71.207.38.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kryptonit00"]},"Identity":{"Case":"Some","Fields":["7g4ywe4CscA8bUPa+mZO/SwV4gI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ZBvWJ4vWdqa4fIlEdc0UaxuX5jPK9PdNQWggAF2Mbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:06"]},"IP":{"Case":"Some","Fields":["37.75.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoleeShitSnaxx"]},"Identity":{"Case":"Some","Fields":["7f1f/p2XrcC6/jCjvYRU82/972k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oeE6ICN/JlVFAUjtznR6dV3k6bllGnOx2bOl8H5ONWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:42"]},"IP":{"Case":"Some","Fields":["207.154.192.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charity"]},"Identity":{"Case":"Some","Fields":["7fNX34pr0jxts3EFANwN9JjzexQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znZov7TZHagKH2iHGS3kPZs/6+MktKrvxIztiN+YkK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:58"]},"IP":{"Case":"Some","Fields":["51.81.209.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute18"]},"Identity":{"Case":"Some","Fields":["7e24eXhz00Ayi1/tvXdEp9HfFR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uhf5G4xmSDCkmSh6tXS7D5CILbUo+07Y47gJC71s5M8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["185.220.103.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StandForFreedom"]},"Identity":{"Case":"Some","Fields":["7eoZFy7IsUY73RnjoYd4xXVnEKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+HM6pg2YyyTwD2D2Lq79Q8/zLlhsmzCuPVECBclvMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:14"]},"IP":{"Case":"Some","Fields":["45.33.114.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex74"]},"Identity":{"Case":"Some","Fields":["7c30JHXNYKjr36fP5ktQBqufp4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIadaGdY1McXUlzrJVU1ZksNq0sK2nH2iDchXaHQv7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:54"]},"IP":{"Case":"Some","Fields":["199.249.230.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::163]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digineo4"]},"Identity":{"Case":"Some","Fields":["7cswZU0FdASjqk71WvbbUFGTutg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+F7jJhMbW6WTPZEom6kpYUlZYA3KZFeIjGvqjyZWtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:51"]},"IP":{"Case":"Some","Fields":["185.117.215.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:8781::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maybetomorrow"]},"Identity":{"Case":"Some","Fields":["7cgDNXxdeLmXA2tBfYFWJebZmfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["88BjEqByuTKXFpaRJfVlqCMQ7v+/hVhCyVIPUi7fVRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:18"]},"IP":{"Case":"Some","Fields":["182.55.245.23"]},"OnionRouterPort":{"Case":"Some","Fields":[2323]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jasiuwarsaw"]},"Identity":{"Case":"Some","Fields":["7b5Ewy5Z5L5Gy7pm1QwtOtkAGUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5YHgZPECKHwIfyGHrBrYLSVVWgR6cj3QJK+coHcB5k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:22"]},"IP":{"Case":"Some","Fields":["95.51.200.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangea07"]},"Identity":{"Case":"Some","Fields":["7bzSlR0JfNpuqiqE2/446O5jSrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KnurCNv2LrId3bVY8UT4HT1Rr4z+/GZyKvB9S3FwuwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:10"]},"IP":{"Case":"Some","Fields":["81.16.33.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poya"]},"Identity":{"Case":"Some","Fields":["7bfzWtuag8SDQsxWnfc3PE9I4LE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FkZ7JR0sGdaBEIclsFrWZO1i8m7K1yLLNc43oLCBUao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:22"]},"IP":{"Case":"Some","Fields":["152.67.73.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["7bTjb9kVDV99qbV5wluTyHYcKAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EafL/70emKVCuuf11elK63N5ou02mbHrVyEnIqRiT7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:31"]},"IP":{"Case":"Some","Fields":["139.59.102.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Karlstad1"]},"Identity":{"Case":"Some","Fields":["7a8wxY1szzWeoGLGaMcYChcHZEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzVlo7NQ88U+Mu3Lj0beaF1LJrP4cSkks7ONcKBhu+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:10"]},"IP":{"Case":"Some","Fields":["193.11.166.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7Zy1TAcU0BjqXkxjBEenCpAadxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xES/Q0uKlH+zU5+uCeKdeZQ7MEAlYbSxt7JiibohrJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:57"]},"IP":{"Case":"Some","Fields":["5.255.102.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:dd2a::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StayStrongRelay01"]},"Identity":{"Case":"Some","Fields":["7ZpzE3NFb6BxwSo+Y+LIvvCm5yE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pK4gLa4CN3NjE/VyDqUOJWGItGJL+XAHIruheUUM+tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:11"]},"IP":{"Case":"Some","Fields":["162.55.91.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gnarzkorf"]},"Identity":{"Case":"Some","Fields":["7ZToKpTNfl1xuxRSLo0hOHVjJFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PwrgRGIbvdmIn4oZi7EEIdzy2H+iYCtFkW0r9jn+8+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:37"]},"IP":{"Case":"Some","Fields":["77.191.168.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7ZQ9XTKzk1hikWob4z53gNtR28Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hA/0j8S9F7J1hi6b6+vR67XU+Rz5QXlcC/bc4D5VmZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:37"]},"IP":{"Case":"Some","Fields":["84.133.69.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["testalpha"]},"Identity":{"Case":"Some","Fields":["7Y/wwaugc/bmsPVwlA4USBxow9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2iQJKeQk9R4GaGZMF5SUPAtvVXbqPea+xUhEdIZlWd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:22"]},"IP":{"Case":"Some","Fields":["122.161.176.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pXXXq"]},"Identity":{"Case":"Some","Fields":["7Y2kqFOxnLxohVeSFyAnJXPLVLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qHHV8LdmdS7eNqYQhLt+BLpOHxzXQ9jAo3VVpZZflH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:07"]},"IP":{"Case":"Some","Fields":["217.23.15.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WallStreetDarling"]},"Identity":{"Case":"Some","Fields":["7YVF9e+TmEpuqliU8dI6rXz/Z+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5XoqCYbOsVlVu5TiYxevUJ7fSzvuoQcxowmNfLPG/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:15"]},"IP":{"Case":"Some","Fields":["140.238.157.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:1:1f69:43e2:46d4:a7d5:c42b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["7YH1nYgech7ckoCGE8f918zjjx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpIVs+7eC6OW5avz73Zeur+3n5Tvb3SHzQ0N1OLtKgk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:15"]},"IP":{"Case":"Some","Fields":["188.68.54.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e028:242a:33ff:fe87:a24]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire63"]},"Identity":{"Case":"Some","Fields":["7X8r5dKsf8+CGpCeJIb/+5XWUnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eUGLl2zbnqTE90DtyED9N11P22b4yFmsmZa4NvZ/+5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:47"]},"IP":{"Case":"Some","Fields":["91.143.88.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Enkidu"]},"Identity":{"Case":"Some","Fields":["7X1qPOw8QKytupGILNBP924cD0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8CXvD9FFhlBLHqDPjawVt6xRrnMHPV4wvAfJQID6o8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:52"]},"IP":{"Case":"Some","Fields":["46.105.154.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:4251::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunshine"]},"Identity":{"Case":"Some","Fields":["7XxlBnl/7BKAmK8KmTT6uxKdek0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V3bmUlpi/Nkc+hEjkyhdSqGnZK4oL8+wlgnGWMySDLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:03"]},"IP":{"Case":"Some","Fields":["5.255.103.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:60aa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["7W7kiCt3HoTVMwu2KACr7zFCN+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vJ65jXNkRO+OXeBzWD5Jjm6x8r5b29wmHL7UzhNeKGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:06"]},"IP":{"Case":"Some","Fields":["198.140.141.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:52]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Naname2"]},"Identity":{"Case":"Some","Fields":["7VzNLpDla3Ys9U4Ri5nMGDX/wsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LPevqe6TqE4fH5OovaFbitRvgVGMGH/1u/QtP2lzrLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:35"]},"IP":{"Case":"Some","Fields":["182.21.27.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk7d"]},"Identity":{"Case":"Some","Fields":["7VtgFNTFyRQIawYVIHoYbu9EWaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GGvrwY5WH1qfEraqGOW8zacKiPLzOM4TBHzG8nxxQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:49"]},"IP":{"Case":"Some","Fields":["51.15.89.218"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1864:e00::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LondoxzriaRelay"]},"Identity":{"Case":"Some","Fields":["7Uj1sr5/ZoTmGwNBKzjEvZ5e7bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tzK6n/mohHji9Q7WaIIAQ0JaOx4b24z3/Fbr1EjT5g4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:23"]},"IP":{"Case":"Some","Fields":["45.77.224.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7400:84ea:5400:4ff:fe23:183c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7TYSRRX3Hi4kAdcNnvw8rrCNYRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["di4DZ960MIqpqJYLSQ57ZdHLFg7LBKE9nLgFvjo3jgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:49"]},"IP":{"Case":"Some","Fields":["37.191.195.63"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fedc:ac35]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SEC6xFreeBSD64"]},"Identity":{"Case":"Some","Fields":["7SM4ysJxGz4zE5Lh7SgxIZt5QCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pe+cra20qe9b7IEHZMBwmq99W897YJxP6Sny3uOsHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:43"]},"IP":{"Case":"Some","Fields":["192.87.28.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:3028:192:87:28:28]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrushevsky"]},"Identity":{"Case":"Some","Fields":["7Rq5UpqNlp3LCIAkgAWNk0gfGiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BDV/79pS4mLprM9NBQFOPHsPU9QHesnEniyH1kVSjH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:11"]},"IP":{"Case":"Some","Fields":["185.246.188.67"]},"OnionRouterPort":{"Case":"Some","Fields":[36371]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sepi0l2"]},"Identity":{"Case":"Some","Fields":["7RqJBTsMMxAQi5G5TvyVPF+b08E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jt+jNB1Jo+LKlgicaZvFe8jPLvBKOHmHdl+wYE+HUiI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:34"]},"IP":{"Case":"Some","Fields":["74.208.239.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FileDitchExit0"]},"Identity":{"Case":"Some","Fields":["7ROQfjvSkB1t+yA2gFZA6joz2Xo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FJCHj6YBADfm9yDVgMmUSKdmeDQ5wGAMd/kswHQwEKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:45:41"]},"IP":{"Case":"Some","Fields":["193.142.146.213"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra78"]},"Identity":{"Case":"Some","Fields":["7Qw5cowEEKGmFz/g+MHJZn3ffWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZFBxgPopv9XRNv4RjDq59c6LrzvqSEerokglbpRNFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:04"]},"IP":{"Case":"Some","Fields":["185.247.226.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7P5Pdmhtb03rtFO2KWJwIrzr2pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ACytftrVK2ODmrs+LPiqdjfpcUOdmJ9MVLVZf6nFL8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:20"]},"IP":{"Case":"Some","Fields":["23.128.248.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::803a:d9ff:fe7f:d540]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["romero"]},"Identity":{"Case":"Some","Fields":["7P3qSMip9FpyQa7aPDhvTYL4lok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uUtuNTpqje9/CbOKFwatllY9oNl9xMijGaQrBzvh9O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:59"]},"IP":{"Case":"Some","Fields":["185.72.244.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vigilance"]},"Identity":{"Case":"Some","Fields":["7P283/JM0KLUzs6TzFHrdKWha70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AQTMzVD1u0MHugl96HPKQzA7xCev7QpOW98v3OtA/iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:06"]},"IP":{"Case":"Some","Fields":["87.236.197.123"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ambient8exit"]},"Identity":{"Case":"Some","Fields":["7OgxU0QmJ54y5TDNySedNuKmrGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ob803xYqdPCaSDUMS/PJnaWrP+S2HyMoM686P1cC5YI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:18"]},"IP":{"Case":"Some","Fields":["5.255.97.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:46e0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7OEHPKnyLjCwJPw768kBs5pFUqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p6DJvJeN2s38qSntiuxPil+tRRGkdCUWH3Pl41brmEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:26"]},"IP":{"Case":"Some","Fields":["106.185.159.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[240b:10:b1e0:a600:80d2:5dff:fef8:d3b8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["somerelay"]},"Identity":{"Case":"Some","Fields":["7NxAXkkYOy6vV5rNQrRDrqLPNyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf99EmtoTm5YRWvhbfLQYPNnHfnWSeXNsp510ORsq0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:23"]},"IP":{"Case":"Some","Fields":["185.81.109.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["7NBu8NetM20spPN9t19sr6O6/fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kw6RQYeU5WdvXTN4jAZr02/bId0Go/0MQ2RPCRfPE60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:05"]},"IP":{"Case":"Some","Fields":["79.192.202.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kelvium"]},"Identity":{"Case":"Some","Fields":["7MUl8nn/MahE5VsdK6DQenjER0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/R2dQPPu4RGscxLHk4GtKkYIyKayLlewtc2EjdMh3HE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:33"]},"IP":{"Case":"Some","Fields":["138.3.250.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8007:3b4d:6275:c3b3:ae2c:d51a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx1"]},"Identity":{"Case":"Some","Fields":["7LJKMm04L4S3vWMM/b4aDNzgJFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cwf3lpPrz5OxcE9uRM8emzUfcENAaly8e+LmvTv24Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:18"]},"IP":{"Case":"Some","Fields":["147.135.78.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tenthcircle"]},"Identity":{"Case":"Some","Fields":["7K0UhjoNIXrlctxq3eGCeww5paY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Y26k8tAK4W6iDFlLD+44E90hNx3vS5za1wtidxvlfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:59"]},"IP":{"Case":"Some","Fields":["37.19.210.21"]},"OnionRouterPort":{"Case":"Some","Fields":[56921]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["definitelyNotLE"]},"Identity":{"Case":"Some","Fields":["7KoJcyQmK2A5T+bzzURqZqMxlW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["19m8anOUUtkpWpOoYHv+cMt1fqVoCQYqbSkrsg19mqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:28"]},"IP":{"Case":"Some","Fields":["207.180.221.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:1408::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinho"]},"Identity":{"Case":"Some","Fields":["7JYhQz3yyZbeVacGO6r7K3HDwBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6PneAgwk5pWyCc07EyHEjcT4R/9qU10pz/ekvXbbpzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:19"]},"IP":{"Case":"Some","Fields":["15.204.141.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LePotator"]},"Identity":{"Case":"Some","Fields":["7JTzBTLH29so2/1hWUPhNNjU/Hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OxjOSV6yZGJYnJ2sgZ50pv6v5sxZVlDAJZDDZRl8zh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:58"]},"IP":{"Case":"Some","Fields":["86.127.234.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AESOP"]},"Identity":{"Case":"Some","Fields":["7IL6mJm+/G3uaOJpa53jZNF/rlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2BKieE6IAfA0eMsziMGQkaD2iHAfiscxXvOnlq+HUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:37"]},"IP":{"Case":"Some","Fields":["85.214.174.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42cc:9e00:b1f6:528c:4e17:6793]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract"]},"Identity":{"Case":"Some","Fields":["7H6ppuvKDp7W8SlSIxMevVWuvic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SpGrVDhIAPPyBH67U5OOLkfrzkppoy7XV99c/vhbNFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:41"]},"IP":{"Case":"Some","Fields":["216.71.206.21"]},"OnionRouterPort":{"Case":"Some","Fields":[7213]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["torwar"]},"Identity":{"Case":"Some","Fields":["7HNz5r7DcEuwYKFPyVlB1CEiMAY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nL1hrWMOLtaAY/cYMwGGL8XfCKQByKi7uyVu2Y2ScFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:14"]},"IP":{"Case":"Some","Fields":["70.34.247.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:f480:2400:12ac:5400:4ff:fe1c:7b70]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["demoncore"]},"Identity":{"Case":"Some","Fields":["7HKIGhEo6xsoPuU/VJB0dxGab+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iRowpX16aDNULSd2Xp11JebGs6EsWd9cqj7mM69nnA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:07"]},"IP":{"Case":"Some","Fields":["185.15.92.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b08:0:2::17]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oknp"]},"Identity":{"Case":"Some","Fields":["7G8jUff9WCw57jEPqjSQqI/kYtU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O36jJB3yQWzaOOrh+WaPalEFoU+L1+kENLlzqkAvvoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:15"]},"IP":{"Case":"Some","Fields":["180.214.72.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SerpentRangers"]},"Identity":{"Case":"Some","Fields":["7FH9OK1ESteoRjv9oDUoJ1W17sE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLPns+cHBUflnXm66ffmumAygdMO5H7PDrPAR/F9xe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:05"]},"IP":{"Case":"Some","Fields":["119.161.100.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bektarRackett"]},"Identity":{"Case":"Some","Fields":["7EaU0xN7om07yuGiWyTYhkaMYQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PIMM1kWw6/IOgaYrfO61nf3srv0ynkBPeix+Bh0yqOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:29"]},"IP":{"Case":"Some","Fields":["151.177.105.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["7EaSibbosKrYpgeFVRAo7EuzYjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vILLi9In/mKxKskSoVWB5vjiVZzTrOlodaByXZD0InM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["217.150.233.39"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:b102:170:50::30]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwellkneww"]},"Identity":{"Case":"Some","Fields":["7EKZhgeWmFlLTSKgoGDWZx4EA+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6t82lWxCMnSIyzbmYUhE7J/UQcszORqPRkEXH+UQpMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:10"]},"IP":{"Case":"Some","Fields":["109.250.44.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeilsOfTheOnion"]},"Identity":{"Case":"Some","Fields":["7D7C4mycV7Rmhunv5+6r1LVw1tM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCRy4tAcMXPxVMPuscRPN8W8vBVNgzZojecjzjrvzRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:47"]},"IP":{"Case":"Some","Fields":["51.210.178.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::baba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["katharina"]},"Identity":{"Case":"Some","Fields":["7BbysdE/ZYNv0reFaZWCjRjzLMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MepqVgNece7S9UxA+iVUX1HuUVRpDPhq0Tgf2U8EceY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:53"]},"IP":{"Case":"Some","Fields":["45.125.65.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["7BZ7jJo4oPX3nUoBR5A1dg4NPWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oEtW0dIeS4cMinPc2XZQa0XguzZBPAGZPm0z6O+AZZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:21"]},"IP":{"Case":"Some","Fields":["88.208.224.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:2b1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN3"]},"Identity":{"Case":"Some","Fields":["7BXbYtkQFIHzZN5S64MTyDi93Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sBqwOGzFtPKBPRbXFv40GLY4W8QVUGfKvrnPcSsLygc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:48"]},"IP":{"Case":"Some","Fields":["199.249.230.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::119]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortimerAtx"]},"Identity":{"Case":"Some","Fields":["7Aq6gR5Osz2ti8i3A32GK/Tzqig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BW7VdaIBxtc6MUqYwAsQnTE3mItFxHzWByuM6CItL+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:45"]},"IP":{"Case":"Some","Fields":["136.49.32.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallycoolthing"]},"Identity":{"Case":"Some","Fields":["7An1GPZKN4wxMw3EcWlP1t36MBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["apXSFuQQGY/TbjNIOYW7lACySjiBZudkXGCBvmit/wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:54"]},"IP":{"Case":"Some","Fields":["188.210.4.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redDragon"]},"Identity":{"Case":"Some","Fields":["7AHqZ0nJ/0TspPGtCKaqKtELss8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HIaiQRPEmqcGWuShGgvLo7zEd85PHmjKTSH+XTfnCLI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:07"]},"IP":{"Case":"Some","Fields":["37.235.49.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:354:37:235:49:138:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackpearl"]},"Identity":{"Case":"Some","Fields":["6/mFOZs969rIgJf4FCR10w00CLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sku5nVJkR8D/gb/Wp/2yvfabAUb2dyenh6dx9c5P8S0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:31"]},"IP":{"Case":"Some","Fields":["185.112.157.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6080::1:5453:e5f9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["6/ZI4c8/o6xGqicoV7yvzNcNSfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EARoxCX29r7qm45Fy0JUpB8BjOzIlVkUV4WRfIQT6UA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:52"]},"IP":{"Case":"Some","Fields":["185.220.101.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBestBridge"]},"Identity":{"Case":"Some","Fields":["6+yTvdFn9RUtv6tfAW5XgL8ylOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NjotzhGM8pRksIMcgcCxHAIWGK5BdQYA0PpjJSLA4rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:49"]},"IP":{"Case":"Some","Fields":["3.143.217.21"]},"OnionRouterPort":{"Case":"Some","Fields":[12000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluxe4"]},"Identity":{"Case":"Some","Fields":["6+cY4aSe4ikHFwKWT42x8xgHX/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npvVpyyUFOTtYccTnM39Y4H40QJHggNOqfQGlUEHHmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:47"]},"IP":{"Case":"Some","Fields":["131.188.40.188"]},"OnionRouterPort":{"Case":"Some","Fields":[11180]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:638:a000:4140::ffff:188]:11180"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5d82520d2de79c"]},"Identity":{"Case":"Some","Fields":["6+C+xcs043vxFkv8cgZP8ro97GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yyaRLnXLrA2mGw2D583tucZUfD9mPxT5VQwICwIV7VU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:52"]},"IP":{"Case":"Some","Fields":["95.216.185.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1742::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiger"]},"Identity":{"Case":"Some","Fields":["69LL/h0RAeW4sTiCPMIUEfOVNUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EMRUOYjKRYgOw7EV0fRtw/ghmpVYmLNFGnp7Wx0d5sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:50"]},"IP":{"Case":"Some","Fields":["109.70.100.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amazing"]},"Identity":{"Case":"Some","Fields":["68zCIeoEagII+cGr+M1omFDjonY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9p1OQ3fZPR/fFzrrdajJOXyvn1q9KmmM1Md+nA1tgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:56"]},"IP":{"Case":"Some","Fields":["135.148.53.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipha"]},"Identity":{"Case":"Some","Fields":["68VTkTH+6gBMQZhsC9A7XIW769U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzVrMvEUlDFS5kN2i+kKY0LoP/zsxvUyngAdQX1YlJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:19"]},"IP":{"Case":"Some","Fields":["185.220.102.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["67jmc4tiTS9hIJS1fda8ddMpHeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oMffQAG8bDaOJp2Cu4XaI0CS5DT6BrciRG/HpZieAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:54"]},"IP":{"Case":"Some","Fields":["80.78.25.36"]},"OnionRouterPort":{"Case":"Some","Fields":[30973]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:8078:25:0:504e:1924:1337]:30973"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OperationUrbanWolf"]},"Identity":{"Case":"Some","Fields":["67eZ+t1hXpPKl75Vg+Xrl90h4Q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbFWcJnZTKBn6nZZfYnQPjB27CVbU/z3zEuA8kiV/Bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:23"]},"IP":{"Case":"Some","Fields":["173.73.135.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jdvnsjfnHBDkScf"]},"Identity":{"Case":"Some","Fields":["67dtCW/1eHowOyyB4hv/mBbG+g0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HrYmYnSdBvvSdwVGwNatXC71eIpZlMQo8w/UC8xkpTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:03"]},"IP":{"Case":"Some","Fields":["94.140.120.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1201::b5e4:ac7c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei09"]},"Identity":{"Case":"Some","Fields":["66PPsSgVAvg1mkl+T2ce8ED1OLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nOUdM1Fq+zsyTyT7tuQ29iqteYRlI+3E+q39Ctq61mY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:21"]},"IP":{"Case":"Some","Fields":["188.68.43.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:689:5493:bff:fe57:5c27]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["66F6U6dzz7QKDV2fMKPQYd3pLAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOeVjZbyiGIlOkisDlyvotboMF3PRgKCO/EwsBsgIPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:07"]},"IP":{"Case":"Some","Fields":["209.141.59.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber10"]},"Identity":{"Case":"Some","Fields":["66D/pXmam515o74tvWAeMBrPsIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLAxN2D3Rwvh2jPy432c3uoOt+Ug7HCgaHntff+/Hns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:09"]},"IP":{"Case":"Some","Fields":["185.220.101.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::5]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["653YDmTdgppffHrKXV/q3+v92Ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3eYdHbg1ilzkLCZAlbDgpi2M0bB33kBhBddJpU+XLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:01"]},"IP":{"Case":"Some","Fields":["185.220.101.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedRelayA"]},"Identity":{"Case":"Some","Fields":["65lkAKHjNTka0N/P4vshAONloOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nylXeQxjgDLvexVehbTDDGxJdd78OHKJnDQKG6UtCF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:10"]},"IP":{"Case":"Some","Fields":["147.210.117.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coveredinwhite"]},"Identity":{"Case":"Some","Fields":["63SXxDq0AR4ovZ5VmpEi8SD1K0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAQENZe5zds48YDLRWLZ5g7Ej+1eAGfC5uoNjkfAIgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:21"]},"IP":{"Case":"Some","Fields":["18.135.138.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pegasus08"]},"Identity":{"Case":"Some","Fields":["63Nk1M7hOxQEx9z7PMNILyJt/Sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy/pbchIK5ISSHRTftbg6XLqypEo7+DNz3mmAc6Wio4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:48"]},"IP":{"Case":"Some","Fields":["194.180.174.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:e::50]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay05V6Rocks"]},"Identity":{"Case":"Some","Fields":["63G92paGEIxIwh+aSEA7Kw95MjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yiwMA9bpcScGn1LwkCv87M0poXw+uYhoKc2WHI2zFts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:38"]},"IP":{"Case":"Some","Fields":["188.68.51.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d519::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyTorRelay"]},"Identity":{"Case":"Some","Fields":["62mFW0G7WrfkNaiimj7fSECgESI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0VJf2aHAVd5/i9i82xrgr5blmCscjrzhdJxE5kQevvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:00"]},"IP":{"Case":"Some","Fields":["85.214.118.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["athanaisland"]},"Identity":{"Case":"Some","Fields":["62aPCnVaAP/YyyqaCS8uaZKxWZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f0pA3aLiKvqmCR6zn41rapiVm3MX2gPTSYN9Z12e6F0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:36"]},"IP":{"Case":"Some","Fields":["47.242.107.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wrogregpx2"]},"Identity":{"Case":"Some","Fields":["613wEkpewoHoLwA4svRfp+x8fHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pof41CWKQPHk2RZXOxxMf3t91uCsgYUXyRe0Tmhpxgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:00"]},"IP":{"Case":"Some","Fields":["176.121.81.51"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Jupiter"]},"Identity":{"Case":"Some","Fields":["611mx69TkT4J+kdKF72AKrZotbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["upNZYw+6RDXmRLpCfJMzR0mElgeQE6EXuEg3wzk2AIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:44:23"]},"IP":{"Case":"Some","Fields":["103.214.5.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8302::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrinityDDh39"]},"Identity":{"Case":"Some","Fields":["60pJ9KXd7qLOmx/Azfl/0CH0SeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dRJqPtBrQewJQ7uwFVXDakBJFCs7nvBBrO32HTMpUpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:42"]},"IP":{"Case":"Some","Fields":["79.254.19.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9056]},"DirectoryPort":{"Case":"Some","Fields":[9067]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6z2pO2//ppnB8nFMnnP6gTu4+CI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fV6xc9UPw0QyIijOvrwPxX1++dj2gnJSadKoW38UD/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:44"]},"IP":{"Case":"Some","Fields":["188.68.50.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dukdukduke"]},"Identity":{"Case":"Some","Fields":["6ysmq9E7L58Hp3xKxviyzFh1KI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CVbJ0BO+StUrUZVkGsrHEM5qEfcDwI+yN45d2GPbncM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:53"]},"IP":{"Case":"Some","Fields":["158.58.173.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NavierStokes"]},"Identity":{"Case":"Some","Fields":["6yHCVgf54PW/ENlKPdSmXOdMhOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOXQucPACJqA3DK6Rw6cL/20nnClEU/RarKCTtAEBFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:27"]},"IP":{"Case":"Some","Fields":["45.86.228.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6v6HZVoFbydimM4XoNj6vuOyD0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYkcodDA0G7n7//dwCGRLMio1YQXT2RCWni8chx3N7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:59"]},"IP":{"Case":"Some","Fields":["188.68.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EncipheredEnigma"]},"Identity":{"Case":"Some","Fields":["6vgOBewRajAyPQZf8P+HUd7vzI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvJVX1c2U/oHSJB7halQAPIP3Gi53OHBeYeVZXJPuak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:47"]},"IP":{"Case":"Some","Fields":["194.180.174.227"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:e::13f]:7443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crazymodding"]},"Identity":{"Case":"Some","Fields":["6u/AD9+W0k91/AB6ViO9ajpzdCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TYLrcZx2xDRMf//RmIjam9o5zheV9QJMsDTXJpB6f1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:42"]},"IP":{"Case":"Some","Fields":["24.134.118.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisLupus"]},"Identity":{"Case":"Some","Fields":["6sNeKQgt49O3ZBJS6Yw7BcgAXyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ErIR1LVGn9yqbLVakUhXh+acTpSo4VF+c1pF60yIMAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["135.148.100.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv01"]},"Identity":{"Case":"Some","Fields":["6r4CbdQC6JGE5nVRIEK0Cd2ZyV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oOAp7Nh5v60AKf9uf2lCkTJkRYZGkiuAlexE0UWosHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:45"]},"IP":{"Case":"Some","Fields":["162.248.163.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6rzlGSZ1OvDtfqGLQh3SbPCHwco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9dU7mtkjpQdhoXekfr+G1eRAVUTIkQAE/agyV2ZNE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:14"]},"IP":{"Case":"Some","Fields":["185.228.138.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex49"]},"Identity":{"Case":"Some","Fields":["6rwt0NR7XbEfLTfrPGDCpNkcEPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BdIHHgCPiA8eceWcgRuPqh6bUtcWRHszN83rSBRVPTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:46"]},"IP":{"Case":"Some","Fields":["199.249.230.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e648]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORB"]},"Identity":{"Case":"Some","Fields":["6rs5AyP4DURXuqXO7lEUVXAOkp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIKYMKxkb9l7PLfY0+Ky853gGX+qLkeco8T4r99d1Lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:09"]},"IP":{"Case":"Some","Fields":["77.105.107.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt56166"]},"Identity":{"Case":"Some","Fields":["6qmhmzdYEPkjW27hJBHz2+/JtQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TW2bSJsTUgX5nUfTCIlBb0h7owp2vHr65JFW4ABI27s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:40"]},"IP":{"Case":"Some","Fields":["185.245.60.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trift"]},"Identity":{"Case":"Some","Fields":["6pq44hjINDd+lXXtT93/oP2CVbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uNI8/B72kUKRS5vITa4d6NNJFq8UGwVbfWxAEdbwZ/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:01"]},"IP":{"Case":"Some","Fields":["140.238.220.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["6pU0pJqgZ6ShBRI367pR4k+2xCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vvo7OBRHE3wp/Weh/fB56Ilza5Q0Nyifjkc1YcPP7z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:38"]},"IP":{"Case":"Some","Fields":["23.128.248.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6oVCjyJOytwYuEeg6A2yUajWZks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aFf0v6qJL3rNPdMdkMLdUJpOXZGCJrR5B+Cx7N+FwXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:21"]},"IP":{"Case":"Some","Fields":["165.227.32.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex54"]},"Identity":{"Case":"Some","Fields":["6n1XXJG7H1PCVRD7+RuH2BrhRkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x9iAhRv/yloEesDMEoEBzq4Tbf10rVcnbnqQB6sESqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::143]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schmortor"]},"Identity":{"Case":"Some","Fields":["6nZCxpQL9lcSZ/Bo7yibk76C8Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ms3n46vuy8P2UiNSbNujjNm5IbEshoQJWEXiZ/KnOHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:18"]},"IP":{"Case":"Some","Fields":["104.236.87.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0151"]},"Identity":{"Case":"Some","Fields":["6mvSAYHUiKg7JVQSdbN09boapFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o3TdliWwPdzGBBcaEH8GRFy+2LtqDgX+Y3ft9u1zuDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:35"]},"IP":{"Case":"Some","Fields":["185.220.101.151"]},"OnionRouterPort":{"Case":"Some","Fields":[10151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::151]:10151"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kennedy"]},"Identity":{"Case":"Some","Fields":["6mmBgX4n14sAMgS5A7BwURPatxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQEt2+W4qXwsQYkx6CFWx5pbU0lI16STI4kAfnbRv5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:40"]},"IP":{"Case":"Some","Fields":["82.118.21.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE67"]},"Identity":{"Case":"Some","Fields":["6mdzGGMrGuod1QdSCAqi+CKax4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IxwBrEQ5qmTR7q+rH0D3Xn87FRZ7y2cs0WHikkCvmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:51"]},"IP":{"Case":"Some","Fields":["37.221.66.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:108]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fountainpen1"]},"Identity":{"Case":"Some","Fields":["6mas87Rj08uzv3cbv4Xp+S/Vfq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEXeP4D0xOCNB5Pu6Yl+xzQsdSwVGV86Aukdnkk6GMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:55"]},"IP":{"Case":"Some","Fields":["178.17.171.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:1f::8d74]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enzuru"]},"Identity":{"Case":"Some","Fields":["6mONuwFOzdBKOI7kTHnwHPwHyw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ei4oLQnyzSEdvfVfDmrEl9xMwY8+NtQbcbHuJCvILtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:33:16"]},"IP":{"Case":"Some","Fields":["104.156.225.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["kaflooie"]},"Identity":{"Case":"Some","Fields":["6llthM3vKo24n/hI/qfbSlKUoa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jAsjo/zkOkoP14+ibHkM33JfpfPwcNc7dJWCpXLMVD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:24"]},"IP":{"Case":"Some","Fields":["107.155.69.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlexJonesWasRight"]},"Identity":{"Case":"Some","Fields":["6lBvV+M/JZflbfXTa78WG0rLlm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLGBvmdGCa3IVJo5ALMAF4ODFoxdD+ZghzG3xOtsaNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:48"]},"IP":{"Case":"Some","Fields":["209.141.36.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monomorphic"]},"Identity":{"Case":"Some","Fields":["6iffMikzc0XLrMCzhvNlcJ1hT5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+5tEgJY0JkarBDc3nt+boTO8VoCKzGGygp6Mf0osx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:18"]},"IP":{"Case":"Some","Fields":["125.30.23.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer81"]},"Identity":{"Case":"Some","Fields":["6iX42USPQl/mmfGSPI9T4yzko7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XUFSd6twjm93vsjrXZVkuNp0pLh7MFlUw3gOLr8+Sxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:30"]},"IP":{"Case":"Some","Fields":["95.214.54.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8181]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Darkbian"]},"Identity":{"Case":"Some","Fields":["6g/Gs1zu+y7s+wrDZoIXfldM2fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e0jtkW+Sn+KJNh8/845ynqlbuuY8IJXo9UOsPnqhX7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:50"]},"IP":{"Case":"Some","Fields":["108.70.34.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redacted"]},"Identity":{"Case":"Some","Fields":["6ge3PsbBTW2NvrGH4bWOToMX3SQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jLsfw4TuqgQb5w6yzj0WeN9pXSKKYBy4g1d4fqqd1eA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:22"]},"IP":{"Case":"Some","Fields":["140.238.26.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8008:b000:8008:8008:8008:8008]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["warpventures"]},"Identity":{"Case":"Some","Fields":["6gE5NpqTQJjYmhTbj5Q2NvwXwM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OFuWouXTbJ3Vg4ABklSn+0xvqkcVbcTdRU8+NHn/wU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:01"]},"IP":{"Case":"Some","Fields":["51.195.29.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["libertas"]},"Identity":{"Case":"Some","Fields":["6fcawG8pshEOP8CQFrDlBAdETuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ToY+XyK6D6G/iimTRPC541Y2Pu4wnk594aZDyTIn3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:38"]},"IP":{"Case":"Some","Fields":["185.233.104.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:24:b3::443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tachikoma"]},"Identity":{"Case":"Some","Fields":["6fWZsBW0ts+Yv3NEN6FS+iif8h4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbmZa9JKawsNDeGMNtDxZHU1EXvsZn+WCK/npinJk5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:53"]},"IP":{"Case":"Some","Fields":["86.14.252.247"]},"OnionRouterPort":{"Case":"Some","Fields":[60024]},"DirectoryPort":{"Case":"Some","Fields":[60025]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waltw"]},"Identity":{"Case":"Some","Fields":["6fJ0LDyfL5/qeAHul6vnaTbVJoo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rtCWEc3AQtcT/4ly6MYto6E/vWxNa7mmcCzoDywVysE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:58"]},"IP":{"Case":"Some","Fields":["71.126.173.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9999]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Urgl"]},"Identity":{"Case":"Some","Fields":["6dpBAbDg1xit9SEAqbMKZ7o1pnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+y5KhYLbpb2dxWBC7p/5NWC1jQGsw8pcObgdOPruM3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:12"]},"IP":{"Case":"Some","Fields":["109.202.205.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["6diXkxoLX+Xk3GCM2zGq0XNX3Nw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXnTJV9EsCSNLJzW/eLsZO0tRlyCPsTuNh3tjZHn9eI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:10"]},"IP":{"Case":"Some","Fields":["23.128.248.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal1"]},"Identity":{"Case":"Some","Fields":["6bBtNd77Gg/6z3NcEN5pSw9KSfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GjQAH/3sFBCskzsGfhQ/AZJPMyY5/Xx2wUyg+I9aLAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:30"]},"IP":{"Case":"Some","Fields":["51.68.45.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::138c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toro01"]},"Identity":{"Case":"Some","Fields":["6abhVJMAw1UQcbcaxUfiVo2ffO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orAG/TvQIJ2viElhZzXt4HbMruVmkX9CO3IoJqVuv78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:32"]},"IP":{"Case":"Some","Fields":["178.17.171.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:5d::2d4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torHTHosting"]},"Identity":{"Case":"Some","Fields":["6aZD3Da2OW746PpKbr/keqYrtkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F7kn5FeFb911prjAOHMN0r1ncNMzgNM30kPwONr6TbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:54"]},"IP":{"Case":"Some","Fields":["213.202.223.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[81]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:157::200]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockeredTor"]},"Identity":{"Case":"Some","Fields":["6aCOEa22BojeNaO9mSt+L0Ho/lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8DSOVKdvigjzYdsEFmBvOEMSY98/UbdHSuUyqKV+VbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:33"]},"IP":{"Case":"Some","Fields":["217.239.5.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["6Ye90apG3UL6vYV0+tZaD4Newwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f9Gy4j893f5sZ5f6a/ii2Fu0R/y8/27H+suhtH2ARPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:01"]},"IP":{"Case":"Some","Fields":["23.128.248.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::213]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber60"]},"Identity":{"Case":"Some","Fields":["6X+9DV+VJrn5dSmdkcKF59oAE5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XG1kt431oQ/sGLWxzc0KDQ11jdYvDu7m8pdhjpLxd3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:58"]},"IP":{"Case":"Some","Fields":["185.220.101.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::30]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohhiMarc"]},"Identity":{"Case":"Some","Fields":["6X9YwG56pxdfm+KjxwgyXAP7L7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6pbRbRi2OjPBDfwD6MStQKgrYO8z41iHQCb+fz8pCF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:26"]},"IP":{"Case":"Some","Fields":["103.251.167.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gsrv"]},"Identity":{"Case":"Some","Fields":["6X6ymZ//+w3cHFwCchpJWUYHlnQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RRhqn6DtqCdu7OwAIPETTaaYaYibc1cH5CLUXgZ0ZFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:13"]},"IP":{"Case":"Some","Fields":["80.9.202.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb19:81af:800:48f7:8dff:febb:8997]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mgnsrr2"]},"Identity":{"Case":"Some","Fields":["6XRMT34seiGbOza3aDXAbGeq+mY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h5QJR2wsIg7RzJprNDXvBpCic92OZ6Y3Nqs5oggcA1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:20"]},"IP":{"Case":"Some","Fields":["46.38.240.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigChungus"]},"Identity":{"Case":"Some","Fields":["6WGM5mS4CanAutMZJhGLelHVdLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYV/KzKEv1ulFEEME/cuJfCyaqhaOIIAqjHY/IvVffs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:08"]},"IP":{"Case":"Some","Fields":["83.9.147.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kellersau"]},"Identity":{"Case":"Some","Fields":["6U39rt14QuBE0m5FFtr2v0cJy2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c+p2E2GztUK0MhTIGulaZHG0HmGcwjImwQnRftEoW4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:43"]},"IP":{"Case":"Some","Fields":["145.254.156.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dgplug"]},"Identity":{"Case":"Some","Fields":["6UfAKQh/ocNJm+9dQ3KUfFEiPY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3cf+O9edtSm0t4IO+lq7iAF14BhXVWyQacNqmG0Jvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:00"]},"IP":{"Case":"Some","Fields":["195.154.105.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maRn"]},"Identity":{"Case":"Some","Fields":["6UShGjLwyeCQUyhCUEHDml9MZw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sV6EKIFAzeCmrcpl/cI2GTm7dxMxIWLPcTcuBlfV2Ck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:21"]},"IP":{"Case":"Some","Fields":["85.81.4.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Horizon"]},"Identity":{"Case":"Some","Fields":["6T3LWH64QOLRbtRjIzzOU/0lmrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSTLIP1I3AQi/sk5WNt68lsDQOgdMzMLUt1oAID34gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:23"]},"IP":{"Case":"Some","Fields":["159.196.69.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForBetterFuture"]},"Identity":{"Case":"Some","Fields":["6Tu6bVrHvLFztdigu78wboUG5aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E3NMBfUCqYBBCgfv/E1eocNteE3WA6j1DxJZKe4+NNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:53"]},"IP":{"Case":"Some","Fields":["206.189.132.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DJh2o2"]},"Identity":{"Case":"Some","Fields":["6SSFx0FeLwIy/ikAnI8NYfvpBio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/a5NKnAbpP+E0NBnO354vxNWvUADmBVljXCywPzhxeA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:00"]},"IP":{"Case":"Some","Fields":["5.146.68.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt28156"]},"Identity":{"Case":"Some","Fields":["6SCaNE+DISRSuH1cl/SOMbPvEmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fo44GeL1VgcMmq5ZH1NjpKGnUFOybcSz3ztRdSyud0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:57:36"]},"IP":{"Case":"Some","Fields":["185.245.60.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortoise"]},"Identity":{"Case":"Some","Fields":["6RkFz+sjCxvqawMJgW+e6cGhqDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xq4wRfoa0kD8K48z8xo5sE0oflGtSMfdxgsSJrGllHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:16"]},"IP":{"Case":"Some","Fields":["130.149.80.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JesicaJones"]},"Identity":{"Case":"Some","Fields":["6Rf4c5jH5F7izOSh64fUZHSmUzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B+cxk1nqdj0+7NCXYqFNpqfkwrGQ3yo0SVS4pP/S/Ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:25"]},"IP":{"Case":"Some","Fields":["216.73.159.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6RSrIF+lq+YJBquefuUntoCaRsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RAyh6TgfTc2mt2F1mqU/LoQrtmSHJl+ZB/VOt0NNbh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:03"]},"IP":{"Case":"Some","Fields":["37.228.129.29"]},"OnionRouterPort":{"Case":"Some","Fields":[31749]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tengu"]},"Identity":{"Case":"Some","Fields":["6Posm2kPO8Fq3ppIA84sURMvEKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6kFqhbIphEytDlODLvPeo+MmL2Hm/SaGFoi1ZynI3pE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:13"]},"IP":{"Case":"Some","Fields":["66.183.173.29"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gorgothzilla"]},"Identity":{"Case":"Some","Fields":["6PCuFBUUWKV6OBLvsTmpfMSJyN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVJE/xKvIBDHfzpSpyDXxwsKxp+vYQT8dzlT2yKQzUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:24"]},"IP":{"Case":"Some","Fields":["51.15.177.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tortue"]},"Identity":{"Case":"Some","Fields":["6O1AXkekd9ktnvsgH63yj/f7r10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qYlUv+scIJm99uNTpxVvc3CwCx8QPW/t4WkDrByXgSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:15"]},"IP":{"Case":"Some","Fields":["31.201.16.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torathoooom"]},"Identity":{"Case":"Some","Fields":["6OQZzIpqjOE+c3iJvQJfctCh7dk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lIb6JTQEQH52pN+G2PTeGBNTzf5Lz5fkpFuwtY7dkTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:35"]},"IP":{"Case":"Some","Fields":["45.138.230.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousLover"]},"Identity":{"Case":"Some","Fields":["6OPRyiq21EaslzrztboxQR5xuwg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zf4QIti9JmzAzKm9utOBRmoSgR9ggtTDIl8+bYpbHhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:18"]},"IP":{"Case":"Some","Fields":["79.192.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[1515]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetafx"]},"Identity":{"Case":"Some","Fields":["6OG0+N4AT6uCmbGlpQYPD/fA5Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jNC8eIyTohZhT9Mkl9pcQ+pmk4QNT7cpeA8Ugi4FRVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:20"]},"IP":{"Case":"Some","Fields":["107.189.13.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mentoreth"]},"Identity":{"Case":"Some","Fields":["6OCYnoVnZ5pIdT5AKFIPUWaRTno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ItneEEWD8tel+LHa0HeTPohu+JX1LeMV3Bo93h3bD2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:39"]},"IP":{"Case":"Some","Fields":["103.251.167.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libreonion1"]},"Identity":{"Case":"Some","Fields":["6NEUs8eNjm5/6xAEZQ3WMsIUPJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zSzI+A7Yh/3RUApKn2H9y5r2uCbRUtVUROKw1NqRp3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:18"]},"IP":{"Case":"Some","Fields":["185.4.132.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:f0::5492]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1174"]},"Identity":{"Case":"Some","Fields":["6M9XC0q0OdV6YYsHtEZncRqBGCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rHamSETAm3WllsnAMOr6rSbPc9z1Q1DfRVxLVdAABR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:22"]},"IP":{"Case":"Some","Fields":["185.220.101.174"]},"OnionRouterPort":{"Case":"Some","Fields":[11174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::174]:11174"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["6MhmfK89UUjlLs9zansgSYL3jqo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P8+sqB8uCtX4bE303jP1Km/7m2FjoWdIo0u2ysn1tss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:50"]},"IP":{"Case":"Some","Fields":["185.220.100.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:2::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["6LiM4253a20AnZ0MzrduvpOrUW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEACGjFJp8Sqfcy1g9aV6QYGGh89Ug145h/lCJ7fu4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:10"]},"IP":{"Case":"Some","Fields":["213.238.182.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["6K2MT9w/4VIVDABbsuqmoJkLdN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WMHeEYMtsTnMwm5/FSSpp8cr3uTn3f/tyTT8LxiuQmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:22"]},"IP":{"Case":"Some","Fields":["185.220.100.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:13::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE51"]},"Identity":{"Case":"Some","Fields":["6KRwiUZ/huiWhqsyeacLfwzDi18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mds6M1KWlBEtGRd3U9CaM05pLsYUS6u3cRQHwyO864Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:58"]},"IP":{"Case":"Some","Fields":["170.231.236.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomNode"]},"Identity":{"Case":"Some","Fields":["6JxtyTJ5duYq09nbHsCVdm+DGiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/DpjkEeorSA6ePLeWW4Ia5raXzvsAnh/hydiD9MLMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:10"]},"IP":{"Case":"Some","Fields":["162.55.220.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:ba9a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Azula"]},"Identity":{"Case":"Some","Fields":["6JaGEmE8VIv8pj175Ufi0cWU9To"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o+gRc8Ucr8wtskl9964MtBNNdl+wh8koq1cNk2ZXI5o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:00"]},"IP":{"Case":"Some","Fields":["85.214.80.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei08"]},"Identity":{"Case":"Some","Fields":["6JZaefsvM1GUFB6JaHVVJIQMRLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0toWgrnU2n1Ux94ei9TdHs2ucdvduYcg7Ouw62j6xKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:14"]},"IP":{"Case":"Some","Fields":["37.120.171.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:543f:78b2:4fff:fe7b:fb6a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire60"]},"Identity":{"Case":"Some","Fields":["6I+OchAHCeIm8i32pQNlSABU7NI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q37HbRGIUgUKmqzP8Ty63IQWMaGbnBUwfqqyvL7Imsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:57"]},"IP":{"Case":"Some","Fields":["91.143.83.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::1af]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ORelay"]},"Identity":{"Case":"Some","Fields":["6I4uZiKIPcH4IpIUqET3mowKcCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kCTuwxIKetV98nP9P/oZKNMa+1Np7b3h+GSBBfAH58Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:21"]},"IP":{"Case":"Some","Fields":["129.159.197.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:800a:9b00::11]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6InJ7IVmAxSnzlohqhsGVADkXTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfL3yyl41gDQ26V4KMOicjdEOz/7ml9EM2VSYDGE4q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:52"]},"IP":{"Case":"Some","Fields":["185.236.228.89"]},"OnionRouterPort":{"Case":"Some","Fields":[43893]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH117"]},"Identity":{"Case":"Some","Fields":["6HLtQjvZCV7OWnla9TuUQRUOauI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JoMDYpc5T37+egXtIbu7dthHHmbjvZ6ieHbsPJu7ats"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:10"]},"IP":{"Case":"Some","Fields":["45.80.171.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:16ea:90:45:80:171:211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mailus"]},"Identity":{"Case":"Some","Fields":["6G2FjyqvneKiuVKgv4ZLfzXtyKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Fl7SHAk9eSQeNfzfEM8V+XAn+AaILf70/NflFpbHbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:57"]},"IP":{"Case":"Some","Fields":["136.243.177.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:2684::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6G0W0qDjUD5plx3pmZiXV8aTEZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ryhaRcNu7QVTvjzN5tVqgaV1Jtzkbmjoeplr/yunxy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:37"]},"IP":{"Case":"Some","Fields":["185.170.114.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torwell1984"]},"Identity":{"Case":"Some","Fields":["6Gqzio8lr02iNCy5wOhprwl4DhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nIeVrp8jWGdsdiyogA7kgNVdc6ePupmGc1SvLfOaATc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:38"]},"IP":{"Case":"Some","Fields":["68.160.134.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute19"]},"Identity":{"Case":"Some","Fields":["6GY5JP4qrU4IGhftaXbQroAQ9Hs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yr4Y6tFGUM5WjAlfIp+DLF2SgA/3Zhc2RttNK36GSko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:12"]},"IP":{"Case":"Some","Fields":["185.220.103.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["6F2ARl+ujSkauJIpLz6g1vsII1E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GuzVRoweBVO4G9RLyOMY6uUZJtwdg31tvbiPECP57I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:21"]},"IP":{"Case":"Some","Fields":["23.128.248.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Viscofresh06"]},"Identity":{"Case":"Some","Fields":["6FyOPPssiEqJb5v0lJ+76StvM/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M4lvrhOyaC8ThpheOSJ9XetZf/MjbEGUsQGLkGQ+dNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:28"]},"IP":{"Case":"Some","Fields":["145.53.186.90"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isoedideditheconfig"]},"Identity":{"Case":"Some","Fields":["6Fn/4+jQkxDyZkurja/vM/XNJG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FSOrc/dCZsEFX8Aosh2DYSPoXRH+PyK9HEljr8g+QAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:06"]},"IP":{"Case":"Some","Fields":["178.254.39.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:481::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2go"]},"Identity":{"Case":"Some","Fields":["6FYsfPvrZQHy4C2gAgP5WOixaFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8JlYK7i92imnm+5/aDJVaiDu3gxWUil8mOCpxLY/G20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:11"]},"IP":{"Case":"Some","Fields":["45.79.177.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:92ff:fe82:20a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["6E9B+h0fowP9epmjXlCs70Jphow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jzD1jLI66scessE/xZo9QLc/r0cvYsVeq0Dmxu3+H7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:52"]},"IP":{"Case":"Some","Fields":["37.221.198.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:26:6831:11ff:fe02:b39]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["natestorrelay3"]},"Identity":{"Case":"Some","Fields":["6Ex22b90aUBFUG6SK4jTxD2+1iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n84iSxQ7MT5JdPK4wbzvrARdBep75PGakd4SiysxOWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:20"]},"IP":{"Case":"Some","Fields":["198.98.55.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BetelgeuseIT"]},"Identity":{"Case":"Some","Fields":["6EZuAsiTuaZgKiUczqEA8lLiW0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dywch08OqwxZtTa8kOuR1JbZZO8+6bjm1U5jwryn9/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:12"]},"IP":{"Case":"Some","Fields":["83.136.106.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:30fe:8547]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kanagawa"]},"Identity":{"Case":"Some","Fields":["6EUHvD4JM/4GjC7Qup4bh0uQVm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mhZshROm9FWxFYwq/i3YRYYLgFGkMPOGEOQaSIz+Yp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:57"]},"IP":{"Case":"Some","Fields":["100.40.211.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dominate"]},"Identity":{"Case":"Some","Fields":["6EJmAY2J9PeiuyvKHFuD7TEmtb8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hCTX45DvZM4bgjho4mn7cdqsmei8sLdh+xklJvdSIoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:57:38"]},"IP":{"Case":"Some","Fields":["23.238.170.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhNoAnotherRelay03"]},"Identity":{"Case":"Some","Fields":["6CO18ACDWmaekC665ezLmjJPRsk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtGQxui7vigwf9J/prDFXcm0Qm38yWCe/O7hh37Cr4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:18"]},"IP":{"Case":"Some","Fields":["198.98.61.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:cdf:e985:affe:1b99:1013]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProxyDB"]},"Identity":{"Case":"Some","Fields":["6CLUvLnLxkn6LM0UPv/xgmzivW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dd64UTui7q5gLp2pCP7HwfBulYNLlImMiwA9QwDo374"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:01"]},"IP":{"Case":"Some","Fields":["107.189.11.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked02"]},"Identity":{"Case":"Some","Fields":["6CH83Udzww9aFSbhHFL5YLXlb6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/aiAhNtnbP96wYyC86gRtD4Kxglyvm152lcW4y7K/ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:17"]},"IP":{"Case":"Some","Fields":["130.61.20.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8006:63ff:a274:5ee:c506:8c54]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chimborazo"]},"Identity":{"Case":"Some","Fields":["6B72CnOzgJ+JZPc3ZrAbqgoXHiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7RaL7nGAQ71pNwNnIy7IaCxTWQ8fhMWNIG/OgORjfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:02"]},"IP":{"Case":"Some","Fields":["212.47.244.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["obiwan"]},"Identity":{"Case":"Some","Fields":["6BmT6lK3MoXP/QL+wANWnSFIMAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CxKopgFBcIWR72kEShYs6PnejnE9SAQvumCPXFqgyr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:09"]},"IP":{"Case":"Some","Fields":["78.46.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["llutztorrelay"]},"Identity":{"Case":"Some","Fields":["6Bl4159fvGfdDoD26tzoipenlVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Rro8Wd7XS5Te1xfr+4S57ptLz8pZEUjETjzpS6LXHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:38"]},"IP":{"Case":"Some","Fields":["94.199.213.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:147::52]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homebox57"]},"Identity":{"Case":"Some","Fields":["6BbE1M2pgQ0ssTcSV0Yv9rzk35E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRR0BcX2T8mYh+RjvW/1PpL88vzTf5QBRjXYfnN1Qwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:19"]},"IP":{"Case":"Some","Fields":["86.115.12.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor70IPConnectINFO2"]},"Identity":{"Case":"Some","Fields":["6BY15fIoD0yt0PjdsjBope8hblg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["40eHZByJnRBXCGvrt4e++z0SSawNN2lM0WCgncmzvEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:20"]},"IP":{"Case":"Some","Fields":["194.5.96.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["6BK34fQzywaEO4wNMcyHiOo8dTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ySl/gbnuWt6EBdx0uJTrTH8zBjCAhlffz8/lU9aHoCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:12"]},"IP":{"Case":"Some","Fields":["109.228.40.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi2"]},"Identity":{"Case":"Some","Fields":["6AKPDJa6S1DrfTXRqk2dxwnOYys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uuWEt8Qr9ZNUNdEsaU5J18KxgQgRF8V+/ZNRAMaY4ks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:59"]},"IP":{"Case":"Some","Fields":["46.28.107.138"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:0]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gertrude"]},"Identity":{"Case":"Some","Fields":["6AG/6QSBBvs+OaGwdssDZIzpPY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RQ572HiIJb4HpbSlxr5i9Zw6oagy5yx1BpPsvtvmhjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:26"]},"IP":{"Case":"Some","Fields":["176.58.100.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe56:2656]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gumersindotor"]},"Identity":{"Case":"Some","Fields":["6AFSfRp3MvPTC4fxRL5ooCjo7f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T35CqZVd9xxa9VsGNs85Is1/LZJFDg3Kag4RYp5pNGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:25"]},"IP":{"Case":"Some","Fields":["88.21.125.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5/79qujQGY/6LWAU3bOm15VPEYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwyNHKjBQLjG1ZAXWWQuZIwJ3ta4IVKYenOfWKejLmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:00"]},"IP":{"Case":"Some","Fields":["192.3.81.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["elites2"]},"Identity":{"Case":"Some","Fields":["5/t/IdaLPlmMCY41QLaWXcjZNPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Wk8H0o/+wustxZNcoB74J3gtdSXxtNbmu/umyDdGks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:00"]},"IP":{"Case":"Some","Fields":["45.58.154.221"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Silverwing"]},"Identity":{"Case":"Some","Fields":["5+9ztHIs+vDoqiFR06p4cB3l8Zs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZ/jsbeX2/0KGkf7vPzoriHO/8rqVYKvz6iOPz9sWig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:49"]},"IP":{"Case":"Some","Fields":["178.254.22.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["5+3WeJrf0OoiWV83u8Ku8Bno8uE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T5fKM63Oclc2Pz9h7TU9MfWhya/5Lg9Z+ITTzQiDi8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:49"]},"IP":{"Case":"Some","Fields":["91.223.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2"]},"Identity":{"Case":"Some","Fields":["5+AJLdyDlu4rV/bEaKrd3UjAz5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Eo+AoTYph9AT9koecMxrlW3cCT/uWvZer/+ef3kMPjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:31"]},"IP":{"Case":"Some","Fields":["67.219.136.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fd23:1:0:fc0b:dbff:fe0e:b25]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiebelPrincess"]},"Identity":{"Case":"Some","Fields":["57b9Fx9PXr94cW9jt9Etf2RxD/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IRMjkbxoem1x3gtMPxEVOcKv6/JWxT+hV1id5OqGziw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:31"]},"IP":{"Case":"Some","Fields":["79.249.90.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:4ff9:5a30:0:921b:eff:fe46:a0a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["57HXRDGaWrDwkliyb/2c5EYzlUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XCutdYNy4ofitCfwmfKQL34QOX2tvpKX0OkinyVeCiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:58"]},"IP":{"Case":"Some","Fields":["107.155.76.66"]},"OnionRouterPort":{"Case":"Some","Fields":[24752]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WetTrash"]},"Identity":{"Case":"Some","Fields":["56VtVvItcFJmepyBCwjHCd+ZmbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2puYkhMPErNzxe+r8T40882O/G8sRzy4yom+RcQ6nzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:24"]},"IP":{"Case":"Some","Fields":["135.180.214.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waveguide01"]},"Identity":{"Case":"Some","Fields":["56PaQryoZDDwid0yw/2jNTTnbxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u7yvalELDlwZ1GEXwb0Ah++3iMdz45nL8F2uSbuW3ko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:23"]},"IP":{"Case":"Some","Fields":["95.217.30.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c01f:30::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["55ggJ265zcadHB3O2F+5ivWMCHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Du1PiHNL5GiHRlCBx6126yu+2Q3KVu0O/3qs76xaXNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:40"]},"IP":{"Case":"Some","Fields":["141.98.6.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jobcenterfotzen"]},"Identity":{"Case":"Some","Fields":["54j16tNtR8FOQ8KJ603k20aLrBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fy9G70kKNzCgRzSv05kN26itWqn2QqQ2DCfSSmYVa/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:27"]},"IP":{"Case":"Some","Fields":["87.152.40.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["54WBP7vTUmZLwfEzzjGlTvWWxb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G3QjFVrQl9/BLlhr/CTyFpjV9vL7ZnqC4shHvzaxEOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:33"]},"IP":{"Case":"Some","Fields":["77.68.3.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:21d::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["52+oIDwLH9PysTvDFuCrupxWDRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["brwX/xIByqKChG0MIkQVA2znsjysneaMtN6V3CBh0bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.53"]},"OnionRouterPort":{"Case":"Some","Fields":[10053]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::53]:10053"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FortyTwo"]},"Identity":{"Case":"Some","Fields":["518qyhoYKRr+Uua+C6wfgFq8FDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cyGMbySSJTizEktP94nAyHQ/CGs4no44UdC0iAFrlgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:44"]},"IP":{"Case":"Some","Fields":["40.131.187.116"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["51q/KdS0F9PTVlrtr4nk+dFuc28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TF6fAECMICqbc6y+NKEWD3c+BYqUtS4blgWuYlbpWGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:59"]},"IP":{"Case":"Some","Fields":["37.191.206.197"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:feab:5d7e]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WorldGate2"]},"Identity":{"Case":"Some","Fields":["51o/rIGp7BOresmrCwQqAr2SO5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zc7w5QgOiRrkfaneZDeoUV3nnDhLyTdHQd7HJ+YNHoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:15"]},"IP":{"Case":"Some","Fields":["90.65.4.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:604:6700::1545]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipfb"]},"Identity":{"Case":"Some","Fields":["51FmztuDl7ht5RK5t5uMpyJey1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BCxw2/WgiJNvThkDM6n1yiHwBGOBIVJ9Hfz2peZocP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:59"]},"IP":{"Case":"Some","Fields":["185.220.102.245"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::245]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["50ZzcaDAYaZKmvlD9TDyU9VDM+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTgDflIGLFs/NL+0czr4bFWwl9Fqe+mbOwoVaEV+0Q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:46"]},"IP":{"Case":"Some","Fields":["185.220.101.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::198]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fezyqelo"]},"Identity":{"Case":"Some","Fields":["50YRLS9FDdwGNulr2WMeKTmcmxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2kiZkg/Wo3qWUSnK0vkW6ow4hKHVIVMbW2IC+T3kAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:28"]},"IP":{"Case":"Some","Fields":["45.130.229.91"]},"OnionRouterPort":{"Case":"Some","Fields":[10600]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:4780:3:3:d82f:b918:3557:6774]:10600"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DonBronRelay"]},"Identity":{"Case":"Some","Fields":["50NxJD7MK/xkcSUN3no1mWyCw3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuFNn48fPnPLeUiO8rncnBBIuO4Ai8pWIrgWxGy/Y1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:36"]},"IP":{"Case":"Some","Fields":["95.33.168.246"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockyrelay"]},"Identity":{"Case":"Some","Fields":["5x2NEVkIyxGWqb4Q2PQtL/0OJy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8sx30YBmZffrooibmMnlpgzLJjA+nWLH8eWyOS+akNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:25"]},"IP":{"Case":"Some","Fields":["178.79.181.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fee0:8bf9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["5uStLbxt45o1wz6dAWXASv9SzJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nFACtfyJAsRhAKk0kSq5Rzb6AGw/dv7uFtRccbSMDYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:16"]},"IP":{"Case":"Some","Fields":["23.128.248.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::230]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk13"]},"Identity":{"Case":"Some","Fields":["5tQzK/QP3ueBTy28kmZQ74AytkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8bHTjee2u8QJ0h9TmfeexlTzItVD7sVI29Qxz4ZCX4g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:59"]},"IP":{"Case":"Some","Fields":["51.15.44.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:190a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DogesNode"]},"Identity":{"Case":"Some","Fields":["5s06uB1vRYHtE/rs9quxoCDm3Ug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/njhJU7eIR0EAIHi8YIJZ9DRyMcJFQUHssmq+vw21WM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:04"]},"IP":{"Case":"Some","Fields":["54.36.203.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazarusRelay"]},"Identity":{"Case":"Some","Fields":["5r9RL+VqVIyx/YljYH0iATjER1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qi+PoYhtbbBEcvmLg10BK7UTM73SuHckD4JMYqvSzLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:47"]},"IP":{"Case":"Some","Fields":["62.204.41.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:3ecc:29d5::3ecc:29d5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5reBaGLqLa+oDIxBwxOAwfp4ViE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fttE8Ppo70XI2fCHcUrBTtSm1w1xlgJ0s0J2MzyAI7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["116.202.169.25"]},"OnionRouterPort":{"Case":"Some","Fields":[2443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaxyTorProxy"]},"Identity":{"Case":"Some","Fields":["5rFMUNpbK74/v+d9blaIAs/cJOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8RX09OWhhx956SZ1TqOEn0YjpNVk5CRCmKb2Rqj7xBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:31"]},"IP":{"Case":"Some","Fields":["79.175.97.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:22a3:100:64fd:a1ff:fe93:48c1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeverlyHills"]},"Identity":{"Case":"Some","Fields":["5pAi3sAPJZsYsvbqYWevH/S1SPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qCOwJ2GfYwIB5shDflPcBU1Hqj9Dec3WoPz4wKlEe8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:55"]},"IP":{"Case":"Some","Fields":["75.87.189.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["affinezeussv"]},"Identity":{"Case":"Some","Fields":["5pAQPz44ij2cElk28a5cZMGibVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pTH6gDormKeAyJDzUNB0BDL11fE5d8Is0x2/Uaupw40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:37"]},"IP":{"Case":"Some","Fields":["50.65.174.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:3d09:667f:e110::37f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlUA2"]},"Identity":{"Case":"Some","Fields":["5ozJwuJi4BxMccj2bwdRewq14kU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8QUf/teQJt2Iwzjk5qwT9od9nX5TVUkXtpei0/e1IzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:01"]},"IP":{"Case":"Some","Fields":["217.12.221.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::12b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra76"]},"Identity":{"Case":"Some","Fields":["5oVzOkovGEqzIIRglGUYBqYmJ7U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NrsqcxOEWDsUC34M92nu5BK9jY2r/bbdrSNAdaUOhuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:19"]},"IP":{"Case":"Some","Fields":["178.17.174.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:db::e9d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheClashFruit"]},"Identity":{"Case":"Some","Fields":["5oMVgGE86Sp9IT1KVDPe9FLIua4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gpFYGOQOSxyKHS8rpylDWC4tG+iY3pVEY0k2c9eltYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:45"]},"IP":{"Case":"Some","Fields":["92.119.123.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JupiterMan300"]},"Identity":{"Case":"Some","Fields":["5nhIWE4eRiHdiI4RrZxQR11+Rq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D8zTXXmNorTmWjiQQm27qrI0qrP90/IPIlxs75+SxOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:40"]},"IP":{"Case":"Some","Fields":["83.99.147.75"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["5lY74+Rb3+N13+RHaSXLmXklGYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6nqix89LGi988wKjCzbpGh4DQ+WU6MrpbnJgxwaYdwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:11"]},"IP":{"Case":"Some","Fields":["185.22.173.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:20e::a752]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["5lGCOgVjixqjQTcFxDR0DnCISSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XLl2u5gI/V2LUb+3if1AvD9sG2tpL6FlCqqCrZHXjFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:52"]},"IP":{"Case":"Some","Fields":["51.159.144.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber05"]},"Identity":{"Case":"Some","Fields":["5kuaVZOG5e/Uw6QmDst3XALDwDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CMqRv5b0JiTNQVhY/gFYGJq5M94aE2KYbaSpiq6ruEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:26"]},"IP":{"Case":"Some","Fields":["185.220.101.3"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Xternal"]},"Identity":{"Case":"Some","Fields":["5kYl7VsBofDpe88LXUMaQyok9Ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RTH0QrMKpnVYu6B4y81A36O9b+javIyunOmuS7MCUrc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:36"]},"IP":{"Case":"Some","Fields":["128.39.8.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MumxzbaDoRelay"]},"Identity":{"Case":"Some","Fields":["5jlU5ZTodo59SdDGYPf8ramb/Jk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xvgoq5FytcmjdgLnR5wBN8FcWExakPT87K0VoXpPUwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:16"]},"IP":{"Case":"Some","Fields":["65.20.77.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:2400:1ac5:5400:4ff:fe23:5945]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay23at5443"]},"Identity":{"Case":"Some","Fields":["5jeqCtS8zdFkOtu9bnveGxNSeGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TMbfmnXRTpf9QKzStdTDwfc4R2GbNfMecos5iKKkyL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:23"]},"IP":{"Case":"Some","Fields":["140.78.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MickThaMouse"]},"Identity":{"Case":"Some","Fields":["5isBgkUUA8F7PzNcFG/ML1Sd89s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6abSKH4hTvUgTk2u80VNxFh/HWVguKP9Af9QsIqUcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:20:45"]},"IP":{"Case":"Some","Fields":["103.9.79.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM15"]},"Identity":{"Case":"Some","Fields":["5ideisByZY4Za4njiRpZe0lxaDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eGMYGZFlgJV+ymh7CsKDxvOCk9VPu4Y+vAWodQ8YwzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:33"]},"IP":{"Case":"Some","Fields":["185.239.222.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theark2"]},"Identity":{"Case":"Some","Fields":["5hIwYyWuA/DILCkKyvuMckqLW5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XL3tDCsFL7PI8afJaL5H868vHQ4n5nUvRxAsN57FyaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:09"]},"IP":{"Case":"Some","Fields":["94.16.123.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:89c:b8d4:46ff:fe68:40db]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorKeyRelay"]},"Identity":{"Case":"Some","Fields":["5gYPCegAf8fPrHvCRHf52HiyR90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jthrcZcCETYpct1eS5F80pO9yCMzNDI0FFQV3KuaA7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:43"]},"IP":{"Case":"Some","Fields":["81.51.253.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["askatasuna"]},"Identity":{"Case":"Some","Fields":["5fPt2ScUjF6018tx3LyROC9Xp6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Efmzg4UjUw1+lcNcm+2CwoqnkWO3ojskf8t84oNR58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:46"]},"IP":{"Case":"Some","Fields":["98.2.231.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["liveinmoon"]},"Identity":{"Case":"Some","Fields":["5fH5RXZLuWn7JOyT7e12hGuMEEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COMp3G3J0n+aBo1j2fYLCAjNbBh6vtT0YDk9m2kIU0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:14"]},"IP":{"Case":"Some","Fields":["162.62.117.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["right1"]},"Identity":{"Case":"Some","Fields":["5e2h9FAmjmiObE/V952pVjCyrRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6uoRkpdMchzM+z0tNfh4Ud6IWuC/ilWhIrNZVWJ2rBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:31"]},"IP":{"Case":"Some","Fields":["174.128.250.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yyzz1"]},"Identity":{"Case":"Some","Fields":["5eVT9R2CA1os5VXbx9iD+qMu0LU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9unPK47S85HnCaAP9q/4f6EIWzUVNJA7+h2cR/+Gnzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:32"]},"IP":{"Case":"Some","Fields":["155.248.212.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c000:e400:5d76:a308:5c3a:b70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freedom216c"]},"Identity":{"Case":"Some","Fields":["5eDQErx2uOAkky+sRvPohzVOt0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0WmJg3r6wVx5xYUdXxvbzqq1F3PbHAaC4U8FanBrEkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:47:02"]},"IP":{"Case":"Some","Fields":["144.217.86.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::572c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5d6p9lcCB9uYQcoEwkC83P7DIA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wjYSKEetlNFrHi6PNwNYl76bVEuSjBr4T1qAsK631EQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:56"]},"IP":{"Case":"Some","Fields":["5.2.78.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["5ds5AerFmt/qKCN0k/YV2jq4icY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZHmVy9WcT8APAiGqNBxhS5bDCcQeaVoqrE5pxRDGdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:35"]},"IP":{"Case":"Some","Fields":["23.128.248.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG7"]},"Identity":{"Case":"Some","Fields":["5dfTU1fpxVtH4q3ecxmRU4iL1Ms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gXxpq8wiFe7WbEv1zM90xWpb7z7T0ZbZ4sMITS7WZFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:54"]},"IP":{"Case":"Some","Fields":["193.189.100.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["asagudentor"]},"Identity":{"Case":"Some","Fields":["5dToEgPTfAep0TI81jD/qLn2D1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8l2iryk/2h5CrTFiVQoJ4qNwzPF8ZBEj411g8a3xD+I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:20"]},"IP":{"Case":"Some","Fields":["213.80.102.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emergingtoadgiblets"]},"Identity":{"Case":"Some","Fields":["5bwWy8opJaeJKvkjlVoqZo3yOKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYsiVIAi9J8hn9VkDPibDVQd8Srx43Q5TslGwXuOst4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:03"]},"IP":{"Case":"Some","Fields":["203.51.38.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["5brhcjX0/HSrNiR3AEz8zUOaWog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TuHKaTU34AFS8jPi70RX2gH/ApGHlqpgXUsLc7FRMCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:52"]},"IP":{"Case":"Some","Fields":["85.202.203.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:f00:55ca::cbf7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelaySecurity"]},"Identity":{"Case":"Some","Fields":["5bf2XDbBxbieKw00EQ1kmjVm7qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BdFgpD/zkdLZF5NKC03Zh0wRnkxg95ZcmSaxbQpyEtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:02"]},"IP":{"Case":"Some","Fields":["172.104.52.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:93ff:fe98:cb68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["5afNMpAwj7mehVvK4fonmvGbFCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mMZzM77j2NaDO9Dfpr2MNTfRwmZHfgyq1+z4xKC23sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:58"]},"IP":{"Case":"Some","Fields":["23.128.248.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::57]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nutellabr0t02"]},"Identity":{"Case":"Some","Fields":["5ZrSS+VOQibPyGtPXTcKspI0KKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XPCsBx+bUPY9e1PmxFz914Qt4d6kEvVdybtXYYftNu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:00"]},"IP":{"Case":"Some","Fields":["213.171.209.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Norman"]},"Identity":{"Case":"Some","Fields":["5YpIpiM2oIzDxrQIApI3VOZaJgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V5khaA2wuCzOCQjmoGV76JV787QgM1hC265p8ATFzWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:54"]},"IP":{"Case":"Some","Fields":["52.52.230.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["epsylonhost"]},"Identity":{"Case":"Some","Fields":["5Ygci0YFLyl1uPwchLfMBgcO/ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmDiFQngRzj+7iB5RMK5sQJVXXXZcD8MYAn005Z5ZhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:19"]},"IP":{"Case":"Some","Fields":["77.3.61.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayofthehearts"]},"Identity":{"Case":"Some","Fields":["5XQUkErGfvU9H/9lBZ7KiaPkbYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jcw1ihw8EmHi0HDkguw4s00Tfv7XX3Arqwd6y4/fIwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:46:48"]},"IP":{"Case":"Some","Fields":["193.32.127.230"]},"OnionRouterPort":{"Case":"Some","Fields":[55615]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pangea06"]},"Identity":{"Case":"Some","Fields":["5W8HdZ5wTE9TM04WEGbxL69/fJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CU7995jiKtaOEgh39SW0VCQPmBF28oee7SaEg8LG9Qo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:47:15"]},"IP":{"Case":"Some","Fields":["46.167.244.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["5WDY6kk6N+2N5rjErQhjSD3nLvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aWSHiEW9KLhCYGA2KuRy92y3wgUBWEPCoxs6l38bzyY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:22"]},"IP":{"Case":"Some","Fields":["5.45.98.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:45:457:d2ff:fec3:e823]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["datahoarder"]},"Identity":{"Case":"Some","Fields":["5VB0RNrARTm43GJCmWFhQbDbZNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpzsZdRzY+qIhB2cvwD4T4rD+jgHAxbbTCamzrDHVfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:50"]},"IP":{"Case":"Some","Fields":["88.86.115.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:28:ca:246::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0157"]},"Identity":{"Case":"Some","Fields":["5TaD7fhG5tJ8ZoX6SBk1+xYzlSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiGXB8sHV86+d0kV4qjQhAhaUFOkDk+mVWMWek4QZwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:45"]},"IP":{"Case":"Some","Fields":["185.220.101.157"]},"OnionRouterPort":{"Case":"Some","Fields":[10157]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::157]:10157"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber33"]},"Identity":{"Case":"Some","Fields":["5TLUu50QxxcolWHgP6yyvy8Qlv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lQSqK/xmeCo10zy8nXL1fNL+nMNE0jSZ1jeywVd60+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:18"]},"IP":{"Case":"Some","Fields":["185.220.101.17"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::17]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5TJKlEf0LCPoGpQL6qlRcy8emvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OpL3uJr2XaKTO8WrHxuqUd9AP4hq7uezzgcSz5xl8Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:51"]},"IP":{"Case":"Some","Fields":["116.80.46.130"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["commonly2"]},"Identity":{"Case":"Some","Fields":["5SaLpnIAbxe9+mXGKkqqXXJ/XgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/DQUp4UmRKo8i+PJdtQWlcWY54SjUuQU9SB1Bccywr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:15"]},"IP":{"Case":"Some","Fields":["85.239.40.27"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fai9ve"]},"Identity":{"Case":"Some","Fields":["5SHQFianYoIquX3Nnsw0GoohLX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QicQd3BrJIKsv82SJO5lED3Fj4hW1409tCtjAyz5YR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:33"]},"IP":{"Case":"Some","Fields":["5.2.72.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fearless1"]},"Identity":{"Case":"Some","Fields":["5Rl2We/xz5dxtac+GesfFwoQslA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xnyn0EfiOBqnOErHs3ga/6oqw7EbXcb23l33DxycphM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:53"]},"IP":{"Case":"Some","Fields":["178.170.10.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::529]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5Rc2WlGJnyKOmaIunk71k0cYD4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v7wzWXQTJAbj7YMrJR0XP+0UZqbE2O9698thLhyC9pE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:58"]},"IP":{"Case":"Some","Fields":["164.68.107.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:1426::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gugusrelay"]},"Identity":{"Case":"Some","Fields":["5RZqTloErbrcDLfqhUBZOJjx4QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rm4VPftlGYM79nJ+1usWu7+S4CS0QPXNlh5uAzAzDwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:29"]},"IP":{"Case":"Some","Fields":["82.197.183.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:52e1:10::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stargazer"]},"Identity":{"Case":"Some","Fields":["5REr1tBoSD9wW1jSUlTKgUMLxEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MWPt4hHFnppbdE0dEBdttwrkCDs2mE5AmKDl+RKFD4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:38"]},"IP":{"Case":"Some","Fields":["45.55.240.225"]},"OnionRouterPort":{"Case":"Some","Fields":[2916]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::215:d001]:2916"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandman"]},"Identity":{"Case":"Some","Fields":["5QC2V5ybNzWbc7WMHuPe6S6bTzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x0P5BjmrO8xzgbschbYz7BsQxL1XOVHnNvSrNcSm1YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["23.238.170.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lucuma"]},"Identity":{"Case":"Some","Fields":["5OzNjuiJ6Mw+g54NjrPTUNsTwog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IRacKk84qjAIQ+2l6SkbzkJvODDhHZZjm5f5Vua56k8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:15"]},"IP":{"Case":"Some","Fields":["172.106.18.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute01"]},"Identity":{"Case":"Some","Fields":["5NHyXfvkhCCIZrpKGpWLcxJ8sK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sPQoHCedS3ef2uB+uYo31zTT3Fg8P5wpND/eJ++rEcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:35"]},"IP":{"Case":"Some","Fields":["162.247.74.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBlindAppearance"]},"Identity":{"Case":"Some","Fields":["5MEr+zrC5vFuTx80qoB9Edkk6QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3qmxRLSMMU7XXZdqM50HMSBJ2CwGFIa90k07T21kk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:45"]},"IP":{"Case":"Some","Fields":["212.73.134.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["5L+tSdIdODhIXGLYQpOpfaqqNbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WiuSpk0nlgfpEYz9tAoyx/3MSeSzDT+bLknLrFhnq2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:58"]},"IP":{"Case":"Some","Fields":["95.214.54.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3646]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5LDQq/dvrrwMlek2OnWm8MoPXhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["db9YAd+Eb4BJy+ZxBZL8KmuYMHqhnAbHbcV4IHFv6KM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:20"]},"IP":{"Case":"Some","Fields":["116.202.169.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fusion"]},"Identity":{"Case":"Some","Fields":["5LDK0RtUh8Rik3WaPUt0SEz5NQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9mUTIofbtn9gHp7+7NJRwtbPYoCjT7OImHJ57No4/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:23"]},"IP":{"Case":"Some","Fields":["148.251.46.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:172::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["irons"]},"Identity":{"Case":"Some","Fields":["5K1g84tA6CiMlGI5hrcUm8656Tc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FoQgYqJjsCwJXdMhnKh+Nngsr/+bPbdPH4Aw2UBL2cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:18"]},"IP":{"Case":"Some","Fields":["138.117.148.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["threeletteragency"]},"Identity":{"Case":"Some","Fields":["5KsusPf+R9Zxk3cstWSzF+QWGEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVCRTS0yXt7cwLXaJQwWSqoRVYJrHqDVIBQj9/DZW74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:19"]},"IP":{"Case":"Some","Fields":["190.2.150.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:7c80:0:171::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["5Ki8guZgUo1bC402wIq0S3c1FzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KXC+ATYcshaf+LIW+qAAxzKvx11TFIyzqznatmVT7Eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:40"]},"IP":{"Case":"Some","Fields":["104.152.211.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UseMoaBandwidth"]},"Identity":{"Case":"Some","Fields":["5KfPMtHsgVIeI0yL9GOE51g4qNc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SeDmnT4W7ZUWlSlg3WMW5GJEFPPLjWpzZUBQaEW5LkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:02"]},"IP":{"Case":"Some","Fields":["163.172.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["5J82ltwTlGpo3yqqbtpGC8FdjwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RP4+sA27409+8cJlyosZEErdFnTVJbEDMVEgOjEL4a8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:44"]},"IP":{"Case":"Some","Fields":["185.220.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10033]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::33]:10033"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["5IrQLFT9P4w6TqN0Us4ygaDSRqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qqz7/chfdjdUr4Kxk71Q3QWmhVsCTnb1LR0uVqEn2kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:14"]},"IP":{"Case":"Some","Fields":["79.143.183.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9200]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToolHaven692"]},"Identity":{"Case":"Some","Fields":["5IXzQaauVB3zE6wBynxeHdOCCl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLmmCGCgd6aLxMPo/6XlZop5Pg2XfYzXTleS8ZJi4Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:25"]},"IP":{"Case":"Some","Fields":["104.149.131.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex34"]},"Identity":{"Case":"Some","Fields":["5IDVd/WOeCpbxPpvSaZlDpOJMC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9y4UC16BtpO9M/eSCgwV76l30Q3NmqZkkG3SD4hl70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:39"]},"IP":{"Case":"Some","Fields":["199.249.230.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::114]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["5Hw0cWaOp/F0w7KTeWVEqRfg3Pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["90zN3Ee9K99Bm2UR9mVJVIOPud+2YVrWSjNRuczX3BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:09"]},"IP":{"Case":"Some","Fields":["23.128.248.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::225]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mfet"]},"Identity":{"Case":"Some","Fields":["5Hwwzi45fM2vDt6Tc5eJNnkH2ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xFlmQ9oBbvzEbOGqMiYvEKnH3rfzTWN/lB0rH/s3wvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:34"]},"IP":{"Case":"Some","Fields":["83.38.29.136"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["highwaytohoell"]},"Identity":{"Case":"Some","Fields":["5HPT7eWbCqRYIXcxsEWI4PT+BkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["swm62QT5ZeivCQAyGsBDnYH8fVYAtW2Hhm16MiGVmOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:43"]},"IP":{"Case":"Some","Fields":["85.214.58.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["teller"]},"Identity":{"Case":"Some","Fields":["5Gl5owU9Q63xh0Y6bkhWyHW8jIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XkrgevIwQIGylUokxYsE8BCRQ2K4Iah8rEFQcNNtf0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:51"]},"IP":{"Case":"Some","Fields":["69.164.221.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe70:357]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalist2"]},"Identity":{"Case":"Some","Fields":["5Gd3xu+2A2GQ76rZsT7p0OdcVRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CB7IzHJuEyPoK/Q5dbbDWz2zpbLiq7J3tQn8237B03g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:21"]},"IP":{"Case":"Some","Fields":["37.252.188.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra19"]},"Identity":{"Case":"Some","Fields":["5GWtFmeYo80KSGb6Kou1rdFX+9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uNYzhsjZI0WzTimAUkuijQ4kZxpJqmQTeUa3VL1APUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::125]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Secretworld"]},"Identity":{"Case":"Some","Fields":["5F4T2Ln0mEX2qREO8boq/4/yayU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RkdY2LU08l4K2KWF2n+Jg05jvunESFjWQ6eBhgXdAx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:15"]},"IP":{"Case":"Some","Fields":["104.248.159.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AsiaArgento"]},"Identity":{"Case":"Some","Fields":["5FngI3TQOF0uJRXLvnB+ogiWa88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zWfRWn1aTHrLVehlXf4ejAaYXOeyeQ8fFZfTbkaWO48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:24"]},"IP":{"Case":"Some","Fields":["163.172.94.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:208a::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torx1steack"]},"Identity":{"Case":"Some","Fields":["5EY34gtNugpJRCThGPABESq40hM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e1egU0nEoPkdXRSosqalQinuZELPnbl+Z06PdbeRAqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:35"]},"IP":{"Case":"Some","Fields":["194.9.173.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shade"]},"Identity":{"Case":"Some","Fields":["5DtCwVPi9CFdWBoSG32tVo/j2xU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aGzGutdV8YH1qbPiW4mxxmR8m/t4rvUyZw4VHgKbRbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:43"]},"IP":{"Case":"Some","Fields":["176.9.84.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:151:2234::2]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HSLtor"]},"Identity":{"Case":"Some","Fields":["5Do0bLgd3zZLb/aCNa+tug6Gkrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cxm9nHG2YlVQtm9v2NA+SAkwrBbSxbMvhOolq8RWFpc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:40"]},"IP":{"Case":"Some","Fields":["185.220.102.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["punki"]},"Identity":{"Case":"Some","Fields":["5DJEaE4Mkk7AgrjsxzX68vjPHEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8FPFhkkF1tXkKEwoKwQWDbTuvOw6EcAbsBg1yhR+CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:02"]},"IP":{"Case":"Some","Fields":["94.32.66.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monkebarrell"]},"Identity":{"Case":"Some","Fields":["5C4w2fnCko4VqsQVjsAfsV09Nsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lj5HhITBf/XWYekjmUxI6dUAd0YiA3ssjS9ZGEHXNIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:34"]},"IP":{"Case":"Some","Fields":["103.214.6.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["5ClU/p2XrvTLycSkLKvuy1kmtfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qfY45lY8gzBLo1nRU4kczHPV198y24M+kiZavU1oCU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:53"]},"IP":{"Case":"Some","Fields":["136.175.8.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kptorrelay1"]},"Identity":{"Case":"Some","Fields":["5CE3ERRXe32sDTQ7Kq9j3mE1MIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46QQSDA7+eOoXWKLcZMAvipAKViVhFdV5OuEPDIYdos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:12"]},"IP":{"Case":"Some","Fields":["47.181.71.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrebenBits"]},"Identity":{"Case":"Some","Fields":["5BsijDLanCsRqi1urBjzRXFi5m8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pi2s1H6XERY3wlCub/yxflgjubH7xaB2BZPBecZmfPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:46"]},"IP":{"Case":"Some","Fields":["212.60.126.143"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xmission1"]},"Identity":{"Case":"Some","Fields":["5BsW9931LrsdtCaKsv40CzetiQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A4E/nX2+D4BhKlGcmuN3vd5q8MfczFtyaknVRv6IPqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:22"]},"IP":{"Case":"Some","Fields":["166.70.207.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeroMeaning"]},"Identity":{"Case":"Some","Fields":["5AEtOw37XLdDohwspBIxu6KXhrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+PxS0dzI1wBWkix/2CMockjWW1Zyq/ZItmZn5JTXWu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:28"]},"IP":{"Case":"Some","Fields":["198.50.175.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1d:395:2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Finisterre"]},"Identity":{"Case":"Some","Fields":["4/mMhsngETjdjqBrHmYKDNtLJ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FFF70tT7uZtHgh8cTS/Lb9hBMS7f+9TNvDphvw+8bNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:31"]},"IP":{"Case":"Some","Fields":["95.216.115.85"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["90377Sedna"]},"Identity":{"Case":"Some","Fields":["4/fafMfVtswIV5muBASqTS1QPlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g2XGDXXp6rQ1zpo16tCIPUt/AnhDCcu7oVOemOLVMr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:58"]},"IP":{"Case":"Some","Fields":["150.147.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fidel"]},"Identity":{"Case":"Some","Fields":["4/cX4HbY//4xxb6Y10YcnVRL9gE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEVSI11pyc765Yeau8stFhtXBnZRKFFYcDU1qLdSgjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:41"]},"IP":{"Case":"Some","Fields":["46.166.162.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrumpSuprtrsRDegens"]},"Identity":{"Case":"Some","Fields":["4+2bTVu2WjF8qpmNupSYhJgusAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtAX/1YKQGBOYv7WsDZQpo6nXRUq2Il4wFkkfO/oezk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:07"]},"IP":{"Case":"Some","Fields":["99.120.173.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cebeta"]},"Identity":{"Case":"Some","Fields":["4+nGwLVfHBlq3/tm3Mm9wxqeTyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+fqtO9DpTPEGyAsjDYkOvIJYEVt77w4EKi/Muz34mvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:17"]},"IP":{"Case":"Some","Fields":["46.183.119.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BruhRelayZ"]},"Identity":{"Case":"Some","Fields":["4+dwFdBIaIFZ97nc8MiOcs0QA/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UBMhtYtz/RemkQwb4WPWpKTCbiNLALW4x2YO2UnrlPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:48"]},"IP":{"Case":"Some","Fields":["172.105.8.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:93ff:fefb:588d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra17"]},"Identity":{"Case":"Some","Fields":["49rwZ7AoRQsxz1zhGPL5rFMUar0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Tyxy4cFElDd1dyLUFlVV/uJtFDwWkk77CXwr73c4Hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:07"]},"IP":{"Case":"Some","Fields":["193.218.118.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::156]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pnkantor001"]},"Identity":{"Case":"Some","Fields":["49EhFsvm1l88AYt6li6z893B17E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rsctlpj0WUT8SiEvzEtokM7nE6GNadQ9Emtx4jlw0Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:41"]},"IP":{"Case":"Some","Fields":["63.141.234.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["las1"]},"Identity":{"Case":"Some","Fields":["48gLkWIPm0NSxAOy1pLAlAPaJZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCAEp9ywqrb2VjUucp8MQMWo/rd0B/V+2D4+WWCnRqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:20"]},"IP":{"Case":"Some","Fields":["209.141.50.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:104e::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlleKochenKaffee"]},"Identity":{"Case":"Some","Fields":["48M5X22miT+zPahts3KLOHOE0sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5QkundMLed2fLCg+rIQSjYAOIcwUoUOOsCtXfnhPbQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:08"]},"IP":{"Case":"Some","Fields":["129.13.131.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a00:1398:5:f604:cafe:cafe:cafe:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toriligadaze"]},"Identity":{"Case":"Some","Fields":["48L2i/WJEmpxQOwhitZr7l77ymw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQMaarTzhk7jeMKxyU3UjBFXO1vaUXUkcQL64Xaj/8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:35"]},"IP":{"Case":"Some","Fields":["93.219.37.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex98"]},"Identity":{"Case":"Some","Fields":["46SR1JDcHDgy1/aGFe60UIyFfYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xPHtOzKqIb1fL8H046F861WOC7XORjyJbEce4o3SEcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:19"]},"IP":{"Case":"Some","Fields":["199.249.230.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::187]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste08"]},"Identity":{"Case":"Some","Fields":["44j3vRlvUZWu8RRVJYUVLqaUIyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SuEqLMdqfxBO0BiFQmn5x/FiL+0+146PyERxe7up0+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:15"]},"IP":{"Case":"Some","Fields":["91.143.81.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2fce]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay02"]},"Identity":{"Case":"Some","Fields":["44R0gpP8RCnitCc2DbT51MPWGdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Mae0L54gZRIp7CoRfFktBKhVrmrqBUuy9fc4YWxBA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:31"]},"IP":{"Case":"Some","Fields":["87.62.96.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9032]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hackeriet1"]},"Identity":{"Case":"Some","Fields":["43mmys76/huOpoUDv8/xIVvx7n8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ILo7AUS5BAG9AVJye54xYAlmvJLTDwTJSacg/bmQe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:54"]},"IP":{"Case":"Some","Fields":["185.35.202.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:ed06::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YATN"]},"Identity":{"Case":"Some","Fields":["43gpO+Y6cI2quHj+9Kb5zd3QLNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M5O4xJYL3415KvvZATDi3heSG7+AlgOVHwuiKOQs7NM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:14"]},"IP":{"Case":"Some","Fields":["3.21.228.16"]},"OnionRouterPort":{"Case":"Some","Fields":[30002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quokka"]},"Identity":{"Case":"Some","Fields":["43XNI9YMIpG9BOl8v057qQ4+VOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MSt3MgSu4M/QeDDiU4nJSxj+nbEj+RXTamabtn7PjX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:48"]},"IP":{"Case":"Some","Fields":["109.70.100.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::73]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["naiveTorer"]},"Identity":{"Case":"Some","Fields":["42U2QEIAp0kw2xZYWL1btVTSvqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2K47VkYvZeN9l1WPPg2/Jvt4+vQKWd6V63IDGCNQBco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:58"]},"IP":{"Case":"Some","Fields":["81.6.40.93"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["40+l0hibqOVIBUAUcRo/hDC/O90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XR8oWvslO1SC8eLNU79PoFSGkXO5rDlkK/cNuvWiq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:23"]},"IP":{"Case":"Some","Fields":["45.87.42.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["40jR1ufhIiCFanfFtSrMF1Olj/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FWP8OhBoVexN4fdHzU84o5pfc5G7AdhHr4oYOmAgTEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:59"]},"IP":{"Case":"Some","Fields":["188.68.42.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay5622095"]},"Identity":{"Case":"Some","Fields":["40DT5Pr5zQvinBbka9mCoS0rKdw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y9gxQ8WRtou4VEqi1BAn78ihp5blZN51kqgGFU0sR4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:02"]},"IP":{"Case":"Some","Fields":["185.142.53.93"]},"OnionRouterPort":{"Case":"Some","Fields":[10283]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:ca00:0:8000::f9]:10283"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamicTor"]},"Identity":{"Case":"Some","Fields":["4zz/1vA9U3hJk4ArM9+uKxeMYMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["baQtXMQf/UFCyc1a6Jll4e142T9NxMv88OzMzqOr0t0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:11"]},"IP":{"Case":"Some","Fields":["198.98.60.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:4ed:1:1:1:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HostingOSde"]},"Identity":{"Case":"Some","Fields":["4wvvlySUQ4l6oFHgpkMQZz/2NUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B8+9H/tWBrHUe9U9ArzxZBIWU9ko8kyvU33jWHlegwQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:48"]},"IP":{"Case":"Some","Fields":["89.58.40.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:deb:486c:9bff:fe2c:bcc3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vale"]},"Identity":{"Case":"Some","Fields":["4v7Mj9ugAHjCggEpUY2eGMIUiVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZKcp7+kaXVrxNgvYmoaF1rJTZENPOLmk4FLYSzh6UGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:52"]},"IP":{"Case":"Some","Fields":["185.243.218.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:32]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daNickname"]},"Identity":{"Case":"Some","Fields":["4t44/eeyL6k01fKhUGjdB47ibyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZYdqdNkzcqQEhsZlftgJM2ZDZohd89PEub/a1C/dd9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:13"]},"IP":{"Case":"Some","Fields":["173.66.192.213"]},"OnionRouterPort":{"Case":"Some","Fields":[1111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElToro"]},"Identity":{"Case":"Some","Fields":["4sav46NHsUz2OCpeqMY7UPfEeRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["82Kv6n/rNPFCiaLN5W71Fv9dYLOLR7VGDpCzITaHKrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:54"]},"IP":{"Case":"Some","Fields":["91.119.68.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["whvger"]},"Identity":{"Case":"Some","Fields":["4sK3Pv/7PqWTOA95us+7TEuec24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTzOpAE7hFCyn1exUGS4//S0CUXKFsU4N/SXjfFBKSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:30"]},"IP":{"Case":"Some","Fields":["87.123.99.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv113"]},"Identity":{"Case":"Some","Fields":["4rqv7OXD07T/5hc7MJeUjg9zBiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXjo64UDI7+3OVh0JRU1wt8S5ojJBnLDcVZ1MC/jExw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:48"]},"IP":{"Case":"Some","Fields":["192.42.116.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5513]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer16"]},"Identity":{"Case":"Some","Fields":["4rfOAeIIYzKYbvbZT27MgKDE/vY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IAmND4hsttp/5MPSM3bVj3PToZDnhIM2S5oamMMqeY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:04"]},"IP":{"Case":"Some","Fields":["185.243.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8126]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:41]:8126"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer77"]},"Identity":{"Case":"Some","Fields":["4rKMD0WjE5r199TcS10WxjTjEMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t4kiR+DijiPSi+zaHQKNfO7CVv3vmdjsb23vlJ26KCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:47"]},"IP":{"Case":"Some","Fields":["95.214.52.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8177]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4q9YefOf9A34mU6bj66rJRiu66Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LJ89BQwbGmybuRkA7zosVR/8Cyn0ydoI7VaD4H0QfNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:55"]},"IP":{"Case":"Some","Fields":["5.9.129.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra39"]},"Identity":{"Case":"Some","Fields":["4n08D7HgBJvhW5tT0CkF9BsMBCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZitr81j7KkEvm3DBT0ijWVJRTURNYIYpL6tEUn0Z0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:06"]},"IP":{"Case":"Some","Fields":["107.189.31.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hecarim"]},"Identity":{"Case":"Some","Fields":["4m1agrfMCh6Eahv2RYE7/GqMsjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqXhyDhzRV7e6j7a3gNEKKz4A2d9HKUJspJGzlQFMng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:20"]},"IP":{"Case":"Some","Fields":["18.217.231.202"]},"OnionRouterPort":{"Case":"Some","Fields":[33123]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IteraTor"]},"Identity":{"Case":"Some","Fields":["4mhtQEy6fkvWYAw1d+0PxjM2gE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+xHFb8Jv6L5JigQ7g+mdu8L1X1IRPbWjFiBibP6Eq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:20"]},"IP":{"Case":"Some","Fields":["176.128.1.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NvorDarkdrop"]},"Identity":{"Case":"Some","Fields":["4mY1+e1BzahGfCqpktgQdDN2Au8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r2F3P+xiXLhXsrz2RlJ7iBo4YQ9ug62oSr4ihRjFwV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:28"]},"IP":{"Case":"Some","Fields":["138.197.166.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bitcoingang"]},"Identity":{"Case":"Some","Fields":["4mO4YO+hd/Dd4ww4H4k/KAXBQNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JDKWRe/EPEBkjvQuNneypkNDNTFly8KlcDssDI0b8UU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:26"]},"IP":{"Case":"Some","Fields":["84.236.53.193"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MovieParadise"]},"Identity":{"Case":"Some","Fields":["4kjtWcA7d5KsGGQqnNMI47BhiGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVCdA4107cLTOQNmJll80MeInrWgf/LIOeuqV5BREhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:20"]},"IP":{"Case":"Some","Fields":["94.242.61.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeAssange2021"]},"Identity":{"Case":"Some","Fields":["4jvi85HFG7FDzCwCUb2+LekIuEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zh3K7Gab0+QmzmFl123W4QIFQ+osZtf4QNQeRQdePJY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:15"]},"IP":{"Case":"Some","Fields":["142.132.186.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[993]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:16ab::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thetdrelay"]},"Identity":{"Case":"Some","Fields":["4jkxkjEh2mTBLLaqILbyw+VWJ/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EedghGNiimIEmkyTnvwd29VMW1oODB5YEgx9KLBa3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:52"]},"IP":{"Case":"Some","Fields":["209.250.238.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MAXKO"]},"Identity":{"Case":"Some","Fields":["4jbwfXZHLJFLCbi6UpMO7TVV5q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h33NibRZPEAwt6B4tS0P3HldWvJcg2s4XqityDzKAf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:08"]},"IP":{"Case":"Some","Fields":["45.95.169.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["4jX+yNrH934Vhw+xQ695bFKAgO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2vTM2MYiYz4pVg0GK7qReOjUJHCD2HWj64CPuZdhYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:13"]},"IP":{"Case":"Some","Fields":["23.128.248.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::41]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YouOhKay"]},"Identity":{"Case":"Some","Fields":["4isB8J2hqlYIfW+WRcSlRxcIkHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ngiaiT71Z7fuj1MegR3j1MmfhzibGQtG/bctItFiF5I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:06"]},"IP":{"Case":"Some","Fields":["46.17.63.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:348:70:46:17:63:214:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev9b"]},"Identity":{"Case":"Some","Fields":["4iaU6D2nvPMN2vV4Du85TNA3DMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5aDdwJ9X3aetcJ6Zi+sbH5WvOhJMBmAst0R+wrKzs0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:56"]},"IP":{"Case":"Some","Fields":["94.16.121.91"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:8a8:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jubilee"]},"Identity":{"Case":"Some","Fields":["4iYz/xyUEq3tcx97Mam3UyFCyJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6YRI4pKAV9X8gWWycdvqE7fZfzSmdVo5Ru8UueaSI/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:20"]},"IP":{"Case":"Some","Fields":["147.135.54.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solis"]},"Identity":{"Case":"Some","Fields":["4iJWxBVtR5A6aD+rKQzYHKDXSE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4dPiEAOgGaUZij5LdwXEi6MQ8yJoJ2kZNpOMNZVSgSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:44"]},"IP":{"Case":"Some","Fields":["140.238.212.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay48"]},"Identity":{"Case":"Some","Fields":["4hd0bLOxM5TBbPp81IJBVL1Rn0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7hrs7IaRw43ajDb+aG5Ark/2d/E3gbXwh0d7T/WCUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:40"]},"IP":{"Case":"Some","Fields":["202.142.138.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalRelay1"]},"Identity":{"Case":"Some","Fields":["4hM2pdWwKDnGPh9o3BzgOwZ7rMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RinzC9cBVVzADBbwWjEhgcBhXSchYGPhmQXZ2Fu+g1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:57"]},"IP":{"Case":"Some","Fields":["91.208.206.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5130::aaaa:2d9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rudimentatious"]},"Identity":{"Case":"Some","Fields":["4gf2J+zkNF5nDgV1uQGWhCFlDI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DAYQYyyf1lvPY1krFuZxUG0AAz9CKtqx1vS6kZ3WGNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:37"]},"IP":{"Case":"Some","Fields":["86.62.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[59030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv25"]},"Identity":{"Case":"Some","Fields":["4gJ7ycXyzivTvgG4gNy5QWrJZxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DA6LGaslZfRbxJdJirYr7l2M9KBT4Peow14FWluMU1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:20"]},"IP":{"Case":"Some","Fields":["45.62.224.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LxcTorNode"]},"Identity":{"Case":"Some","Fields":["4e6qkWe0CjZ9mrQwM2SIAOmuLnQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wyAVog9sHm/k5Of/vcRlPbUS+SERGlwmjnKb4uGVEHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:16"]},"IP":{"Case":"Some","Fields":["45.80.171.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:222b:84::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liechtenstein"]},"Identity":{"Case":"Some","Fields":["4detv1JiaBnUmetKnj7xgI6SQuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["44dkv3pl50YLO9I+H1At7H8Y+82tchRaMqIr7QOlUwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:27"]},"IP":{"Case":"Some","Fields":["23.88.75.73"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yee"]},"Identity":{"Case":"Some","Fields":["4dSGzcpF0y25EQYLcKb/PN0nY7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZ6lA1gXBHYfYcENyVrAg1qnEzRPwKUxAjUjCPTSpW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:44"]},"IP":{"Case":"Some","Fields":["103.214.5.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8300:5d9c:6e11:6f98:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra8"]},"Identity":{"Case":"Some","Fields":["4dIyjQ2yoG7oWr2djXXMXb3f2lw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["44F6nbSv+OOHc6Y1zYAlhk7zKedm+aAubwc7tmKkWe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:30"]},"IP":{"Case":"Some","Fields":["213.164.204.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["4a9Tc+MkBWa1mPpIGtOGBUn2Fos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gWM1iIyPxImt5P+XwZiKEmnVZekv4Kl4K0tXoKWu4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:45"]},"IP":{"Case":"Some","Fields":["185.220.101.199"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::199]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idejasautors"]},"Identity":{"Case":"Some","Fields":["4a2CAVQPd3tkYUsnv4J9RwO8yLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uEgFVOxWsApargcAkTBsETn3/TzSyFFjjtNETe45dP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:04"]},"IP":{"Case":"Some","Fields":["85.254.143.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bbhr"]},"Identity":{"Case":"Some","Fields":["4aBtAcNEHFsfcwTYGoCuGDHVSuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZGKa4GultCGpU/vE3eYomKN+6TsWXWTapUTE+zC3m1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:15"]},"IP":{"Case":"Some","Fields":["79.195.139.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carson"]},"Identity":{"Case":"Some","Fields":["4ZdIfGPFoT7apxFEstMaoXTv9tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ywm502Ms6cAB5/GwzxL16Rp8OZUg3A36uQmhsYjWNzg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:20"]},"IP":{"Case":"Some","Fields":["172.107.201.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IhazTor"]},"Identity":{"Case":"Some","Fields":["4ZHJWUU0YTZUS6Mmp9rPIVbL7fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4W6Ws2dpOwIl0ZKZwkyNjdqMSF0voSYwTKTddXixO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:56"]},"IP":{"Case":"Some","Fields":["37.252.189.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:e:17::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorPi4Relay"]},"Identity":{"Case":"Some","Fields":["4YUkyhjW9Knm+1SMZcfHcTZe/L0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXrfxl9ImJWm9ToNCJEWjuOa+UG4G2LW4qukT0Wzg7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:24"]},"IP":{"Case":"Some","Fields":["216.36.0.99"]},"OnionRouterPort":{"Case":"Some","Fields":[777]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer88"]},"Identity":{"Case":"Some","Fields":["4WbvwwuSNkyhYFxxb1Oxds549f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OWXfojFcYJ/LQwe196gh9z/WBppx3a4PkjQKAZKN32g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:58"]},"IP":{"Case":"Some","Fields":["95.214.54.65"]},"OnionRouterPort":{"Case":"Some","Fields":[8188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["4WaqC8D5fCXvAhk9OXlEKoKDZRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kJZMX2rTStnnThiFxMgK3+yhoj0wBLT/p9H4ucHukqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:51"]},"IP":{"Case":"Some","Fields":["51.15.114.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VenusTorFIN"]},"Identity":{"Case":"Some","Fields":["4V663ueZ/2aMzI1fwS+AJfR0X/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9nBr4tjTbBd5+dOFscbYvK9s6vHXkxRqXgJjRmqIzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:31"]},"IP":{"Case":"Some","Fields":["87.92.80.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["4VJ2UuW7+1kYzmngQUNgnY1BXvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eTSlPsMwFFF8Ac028Rb1cq/fC8oPDnv7gV7e2YQf7r0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:05"]},"IP":{"Case":"Some","Fields":["178.175.148.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VonKuenheimRelay"]},"Identity":{"Case":"Some","Fields":["4UswqD/4DFdrLsDyyKXynUG43I4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AwapeOP1rsMJuRRygkPWhqCYL2F1n75jM5ACS+aYug8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:40"]},"IP":{"Case":"Some","Fields":["116.203.64.212"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:d75::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["legoman"]},"Identity":{"Case":"Some","Fields":["4TApZoO4lqEXzl2lMaVkVkQXhzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dzuXHSa2usdMphKrJ/zBgD0Ho26cvTlbIMDVGuMjrW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:45"]},"IP":{"Case":"Some","Fields":["185.21.216.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc10"]},"Identity":{"Case":"Some","Fields":["4S1SvT46iAmO7dOJh00wgWgBpGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GM6735F8XvrlJ/qwewPhPqmY6+Jhjv4G/i+HYxU5SuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:59"]},"IP":{"Case":"Some","Fields":["185.100.87.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mack"]},"Identity":{"Case":"Some","Fields":["4SyL9CGw99o+VdmpO/m81V+k77U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6dUMlIttWSrHEHYDDG91E1d5BmqIp8Nb1ADUFQ4Wv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:09"]},"IP":{"Case":"Some","Fields":["95.153.31.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ub4"]},"Identity":{"Case":"Some","Fields":["4R/HyD9BeAikzdhKWr/BEoRMR3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLdrQarYz754TBJGRRkeVxy6JYkvNS5r83lYu6cWh2w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:07"]},"IP":{"Case":"Some","Fields":["82.64.46.143"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:281:be00:1ac0:4dff:fe23:e65c]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KryptoKiste"]},"Identity":{"Case":"Some","Fields":["4RmsLVyJ1jL/BiSXB9vHDz+HcA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["597e5SkHDfH2oBR4meY3QJKMAIX/gRYyqnh2a/D83u4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:42"]},"IP":{"Case":"Some","Fields":["95.216.159.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1763::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berrycup5"]},"Identity":{"Case":"Some","Fields":["4RSA83VQ4RAncY7p/K3NrQuRyLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Slz/Pv7FD9v1fqK8DBWSklQ50do/oyWshxu1lndmtAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:20"]},"IP":{"Case":"Some","Fields":["18.18.82.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["4PwrYDO8wa1crClaCxnPbPU+7RE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cw5+MaKPp+j7LX7GD7JsqwOeH2I2xGxCG5iDyTl3luo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:27"]},"IP":{"Case":"Some","Fields":["185.183.158.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["4OxtsYyjZ/5thHjTLXYDRuHEPxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+3IQ/3bZGvAIrEGuoNobPEsHeQ+ZUvlVy2SY/Y2jrTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.56"]},"OnionRouterPort":{"Case":"Some","Fields":[10056]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::56]:10056"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH113"]},"Identity":{"Case":"Some","Fields":["4N6Ugxi3fOpAiumjlVV3/+FITYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NIIDW6NhK1C+KRBtgIsqI9V8lTFyGk/x8E+sa9ekNiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:31"]},"IP":{"Case":"Some","Fields":["192.42.116.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:213]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pincopallolandia"]},"Identity":{"Case":"Some","Fields":["4NR183+dOWWC6AIv8CUKrTUrsWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uZewQMHabnM3keKxBrU/VcBvK5mRTFGxykqer1D6uro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:35"]},"IP":{"Case":"Some","Fields":["217.133.59.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9070]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSpy"]},"Identity":{"Case":"Some","Fields":["4NIvO1qYiqtWa4KSptPZe3vlTgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hI7B/U9L2rO/MSsMFrPNckeTb3friEdwsQDSDbrf3Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:21"]},"IP":{"Case":"Some","Fields":["185.112.146.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["i82blikeu"]},"Identity":{"Case":"Some","Fields":["4MfVUbVF3NnNI32BQYWOJX1zQrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["++2N1ME4qlSMNAh7oZy6J0w9Fcikav+1xnYjElpKG1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:40:11"]},"IP":{"Case":"Some","Fields":["89.217.116.95"]},"OnionRouterPort":{"Case":"Some","Fields":[21698]},"DirectoryPort":{"Case":"Some","Fields":[22503]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KherNl"]},"Identity":{"Case":"Some","Fields":["4LOxAibwZ6GyFReNGaGe8xHn/cM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KGCgZnLwVjA16qlVHHvFktM9m3aVAO+n5hxPNtE9UlY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:01"]},"IP":{"Case":"Some","Fields":["51.75.206.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::7cb4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UseMonero"]},"Identity":{"Case":"Some","Fields":["4LGYadCHUr4DCRLEFFqNsoKZN8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7nfs4mH+vHDdU/Ri6PJBC1RlTKXbzdHaaX/ybHqHpIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:46"]},"IP":{"Case":"Some","Fields":["135.181.202.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:8aa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyNodeWAW"]},"Identity":{"Case":"Some","Fields":["4LFOhaqdnzMIGK3dW4NpwDPcPik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59rlRgWcXYcJikpk/MLVRioASR9EI6jEVgHFJPuTaUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:15"]},"IP":{"Case":"Some","Fields":["146.59.94.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5243]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["4K2qMekRJcSNQbt8JnGyW64lrxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UcCuVxjD/Tux8x9kY8ESbfAZB9f11UxXmB8LNLMdQ3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:55"]},"IP":{"Case":"Some","Fields":["185.207.107.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redsox"]},"Identity":{"Case":"Some","Fields":["4KNHHCTJAhzFj793QgMEb9K8iT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kQoAl2kGMB5TImajKO26e0UQ0Kuc2pGYgfdQb0Qm8uA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:28"]},"IP":{"Case":"Some","Fields":["188.126.83.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dappertr"]},"Identity":{"Case":"Some","Fields":["4JeCxfEZEx1d88d7g+MhRperY3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nWb3DSAK7/l/wLkHCyUqXczoDff7zpHhDnJd7KUk9tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:07"]},"IP":{"Case":"Some","Fields":["199.195.251.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kishaver"]},"Identity":{"Case":"Some","Fields":["4JTnev1AwIAwGVGvLMKXl1uTWLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["11UGplc1r8/Fzpwq4kIIQ4Z7O0wgD0wJw65VBDV6Vec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:51"]},"IP":{"Case":"Some","Fields":["91.120.111.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["4JTOM5LlkSm0SwHbXGOqUvX/RWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nW6DgS4PRgtWoxGoQs0thw9eq72nQIa7y2ewO/OHyok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:21"]},"IP":{"Case":"Some","Fields":["116.202.247.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:448f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleSister"]},"Identity":{"Case":"Some","Fields":["4I8v1EzBa3AVE43JVQemYL64hR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["56EujLvYFuFuhgMfqihf+jmfGO7uUuQU/8CM1V3tTTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:53"]},"IP":{"Case":"Some","Fields":["185.21.217.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10043]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galapagoo"]},"Identity":{"Case":"Some","Fields":["4G7HUvNc7ZpEQ4cZ2n/sbrJK7SQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLbSj52U2KQ//iNNxu979/k7ImzLGdLb3lj79CldATw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:08"]},"IP":{"Case":"Some","Fields":["217.79.252.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI18"]},"Identity":{"Case":"Some","Fields":["4GZfczs4Ic4FoqdUUQU3GCHSWHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nP0SW5HpQTaQKzY+F8XA3Y+Hj01veZdFCBZ0h4kSRAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:10"]},"IP":{"Case":"Some","Fields":["171.25.193.78"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::78]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedRelayB"]},"Identity":{"Case":"Some","Fields":["4GXk2XG+KqLiHYjCyOPA/WGgVzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9hgu1LB/68diPy6Xv9ekpuz+NB3bcDDsixT+BZgYuy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:04"]},"IP":{"Case":"Some","Fields":["147.210.117.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProjectExit"]},"Identity":{"Case":"Some","Fields":["4GQRRTIRhWmaSbnQDuLyK1t3lko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Al85pmXrUnzMKOkkkw0UJPhhvHorbvdI3O/dh9hRdqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:23"]},"IP":{"Case":"Some","Fields":["23.129.64.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:18c:0:192::250]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BurninThruBridges"]},"Identity":{"Case":"Some","Fields":["4GIMyPtLDdd7hq5zkgpqWrWInm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c1AItuSC2M7K3YmGD+FQhUMYqAwU67e8mkmvs0oMHak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:24"]},"IP":{"Case":"Some","Fields":["74.91.27.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["albator"]},"Identity":{"Case":"Some","Fields":["4Fyskp45F4cHcGbClGGp0i7PCAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HYpv54xpEthk1hpnTjQK15gRmp1GvxCidJqR3P49Ru0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:26"]},"IP":{"Case":"Some","Fields":["83.197.193.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cancername"]},"Identity":{"Case":"Some","Fields":["4Ftn3wMmsm8FQWcZ1ube3UpXpEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TxTgJ2vQtsa20+nJLktRm4B4NJmQV8SY4Nfj1rfvfzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:46"]},"IP":{"Case":"Some","Fields":["83.97.20.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["GloryToUkraine"]},"Identity":{"Case":"Some","Fields":["4FVi3X4hEmd2azrWf/G8mBoKQyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Syxa0Oxuab11bNXeoo/FqehSeFbNRRHMwynM0Uc/rtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:17"]},"IP":{"Case":"Some","Fields":["88.99.70.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10a:16d7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uranus"]},"Identity":{"Case":"Some","Fields":["4FNBGPm+HeaRee6Lq3SLigpCiJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ecl5rTcZXnKeq3fJhqCT8G2b1gZoI8vDiHCZDQuTW5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:09"]},"IP":{"Case":"Some","Fields":["141.98.8.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:9100:3::1411]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rEsIsTaNcE"]},"Identity":{"Case":"Some","Fields":["4E20vsT1UT1xoYyBeliPIhgMqjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qc0HZOFc1ySzi1pjjW0F0SZOYPU3KmqRmP5QQcmDT3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:51"]},"IP":{"Case":"Some","Fields":["51.15.51.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:50f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4A7"]},"Identity":{"Case":"Some","Fields":["4EfH14UUuiY0wi1Gd2OzLeA1Kqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oCH9aK4ZPy/jKXUZHgClzcjtyxocdsYP7HVkTwEnkkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:32"]},"IP":{"Case":"Some","Fields":["5.161.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:87de:0:34:2d:4137]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["M4dm4ni4c"]},"Identity":{"Case":"Some","Fields":["4EPO96O1G/eeibG9sGilhhNvhEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8zEWcmA9Ju39L39mIZVZhQOmwibsud6/Hdh+2rQ4Nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:39"]},"IP":{"Case":"Some","Fields":["95.208.182.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4D5YGqQqIR9p3GNgixmA8QrlLCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oavNsmRsIvez+XN9EAy/JwT+7qCmrfPTvlIsHjmb6nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:16"]},"IP":{"Case":"Some","Fields":["37.191.195.67"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe09:486f]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["4C9NMsWEw4ThDljHLLPU959izl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0mPJSXUcujWwxsR3hmo/tgpjRttGymiFeiEbB3YcPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:56"]},"IP":{"Case":"Some","Fields":["83.97.20.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elli"]},"Identity":{"Case":"Some","Fields":["4CLRiKF7k3XOWcJxxQZNDfFBnQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["st6QM/k46VF3afWPaFWskKCi/62KlJTsL+TaQO03QHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:06"]},"IP":{"Case":"Some","Fields":["83.137.158.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9017]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HNLexit"]},"Identity":{"Case":"Some","Fields":["4CASQ20nJmpaoUhPPhRS5WWgP2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ypma5xANkTXZQ4y919VBs9DxoERW3q26uyuIpIZpYCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:48"]},"IP":{"Case":"Some","Fields":["141.239.152.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MexzichoRelay"]},"Identity":{"Case":"Some","Fields":["4BcrcADafxE03JiKI6D1kPaZkY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jBXimbM0YzxoiEFK9wFoebyWemjZLN3Y8ahdn1XP0BU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:01"]},"IP":{"Case":"Some","Fields":["216.238.83.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:b400:1c35:5400:4ff:fe23:597c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labitat2"]},"Identity":{"Case":"Some","Fields":["4BSvvbRj2tC6vEhoybTfSqpy8ek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rOK6GLeDBjDTcjXX+98Au2WHJrQSRfHzrxFYcHb4dQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:58"]},"IP":{"Case":"Some","Fields":["185.38.175.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::131]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DesTorsNeueKleider5"]},"Identity":{"Case":"Some","Fields":["4BRoYZEahUpV4BxQCpfavaDvNyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rf7gmuv0Kme3oqDOlBJalzL226fappp/TejpndegnKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:16"]},"IP":{"Case":"Some","Fields":["81.169.253.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["4BRL+oJrzMPmSJWzKygngpYyRs0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hjBqy80eOa8XfqiBP2Z4qr8K14VKSanZrFtypArQexU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:55"]},"IP":{"Case":"Some","Fields":["178.32.223.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e257::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["despacitor"]},"Identity":{"Case":"Some","Fields":["4A39VNwWXVRS+9NTDTAYba0Bagw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hra+U47M2I0F6kImr2yw/tVMJiwlbWIWUTzcrKUgXf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:33"]},"IP":{"Case":"Some","Fields":["163.172.53.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e3"]},"Identity":{"Case":"Some","Fields":["4AbqBMaWu9bjVAdTgTEwX/PLjBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1XtwlAqjpBtLy3hmjC/yyLqqXYGva1vrlYmtWHXVB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:22"]},"IP":{"Case":"Some","Fields":["195.176.3.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::24]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DerrickJensen"]},"Identity":{"Case":"Some","Fields":["4AI6wUGAESov/wCoTGBJhiuz5sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UzHB2UfGqbgqNWrsN9ughVsqiy1KyIXQ5qtrLa5ZrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:02"]},"IP":{"Case":"Some","Fields":["147.135.112.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra7"]},"Identity":{"Case":"Some","Fields":["4AHSckzqVhXoKNMBEbhmqyd+hsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4pjT44Dmt0r4/lYV/ABiQz4UQhkvLqwwibC5kO3Z58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:41"]},"IP":{"Case":"Some","Fields":["213.164.204.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["9500"]},"Identity":{"Case":"Some","Fields":["3/nnQdAPdJmP6DzWJg7k2eCw2/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ytDJI1TuoqTr2ObAjwnh+mwvQGO+QQ6wDF/A6YoJ6R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:18"]},"IP":{"Case":"Some","Fields":["89.164.128.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sumsumbrrr"]},"Identity":{"Case":"Some","Fields":["3/jLwdnabFCR6WUscmimtsjX5Zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPrw7hwI4FJj7sYnTzxj+iE4t8gukACCY8cnm5omOeE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:36"]},"IP":{"Case":"Some","Fields":["151.80.32.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:6ac::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OdysseyHorror"]},"Identity":{"Case":"Some","Fields":["3/OkRcTlU7D5ibrLumhP8S8mEos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dIUUjxGzFRpkUPV3sBl9PWPaHjUcnn15rmqwzEPqFq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:22"]},"IP":{"Case":"Some","Fields":["91.219.30.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorchic"]},"Identity":{"Case":"Some","Fields":["382vimX1IyErHkIothgV5yYU0lo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0k7KDJ1KHMnTeV+p5SdXk5laVMJ8kjGQKBkuKGlUsCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:28"]},"IP":{"Case":"Some","Fields":["83.243.68.194"]},"OnionRouterPort":{"Case":"Some","Fields":[49005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["36v/a8JjGDFSY9nB8YOHcjFdseg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yl6HCk6gzhEaDpj6avMFILCkGcbCif8AzZ+q7FoHxKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:58"]},"IP":{"Case":"Some","Fields":["159.89.106.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay1337"]},"Identity":{"Case":"Some","Fields":["36rSkiAEbrHnMFShrqwrJv/XCV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQv9PyKRiQaHRe6rmSFnTy/ZaB/TL7y3b0PaenKnn+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:07"]},"IP":{"Case":"Some","Fields":["109.90.84.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["36l97Uznn/bzHa+RfCgQzOhynp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJUHlRM5xH9FWkLXXY9BsIuiVqqcyV/9yZhOEofXgHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:36"]},"IP":{"Case":"Some","Fields":["185.244.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:713:4489:4cff:feab:96fc]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra60"]},"Identity":{"Case":"Some","Fields":["36k8WCnPcjz/Jm5FtOykgvjWfiU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BBDTA7sXZx1MF+a1M6ycW98eYtaTOMm2CFB3KI61PbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:22:13"]},"IP":{"Case":"Some","Fields":["185.82.127.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["36QDBr6m6vKM70r+1HOih3qQ+bU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKfr32jQlMrd5XL1ySX0pPZm6FO9Jo4Uia3aI/6UZRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:13"]},"IP":{"Case":"Some","Fields":["194.88.105.13"]},"OnionRouterPort":{"Case":"Some","Fields":[33914]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeelTorRelay1"]},"Identity":{"Case":"Some","Fields":["35vL4Phex0JPXgRp3sqgBgcLXhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+nvWdcJ0dN46G92Aut1do8BsyVh9gv6qXyfefG4Hrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:01"]},"IP":{"Case":"Some","Fields":["97.113.240.90"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isaacmach"]},"Identity":{"Case":"Some","Fields":["35blqo42jLH+bV+sBzus1imwKhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27apl30xRXfN9GKqdgL8Uw3WRUkb1ZWefL0qNacKVxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:43"]},"IP":{"Case":"Some","Fields":["208.38.243.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deltersvrAnonServ02"]},"Identity":{"Case":"Some","Fields":["34nUu+np+85lEkwGoI/d7JOt1Vk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T1tN8WoEzMd0r3+ocEM8vn4NWXpiycUf03QC29VhU40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:58"]},"IP":{"Case":"Some","Fields":["80.122.209.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburger"]},"Identity":{"Case":"Some","Fields":["34heUGUZA6IS7lGb5aWDl60uCXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mY2D2i/Qz31177J7VPcO3p7hf0LuAA3E2qtBlONhJCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:05"]},"IP":{"Case":"Some","Fields":["23.108.55.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange007uk"]},"Identity":{"Case":"Some","Fields":["34YJiWi7zZY+OOA/w/wYN+9mfBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XowuKHZS6PdvD93rQSEhXkU9QBH26TWyJt+OrmQ5BZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:54"]},"IP":{"Case":"Some","Fields":["77.68.30.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["j7rly"]},"Identity":{"Case":"Some","Fields":["33qtDg853rfzWpIytcLDvhaiJik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["doKuf2KIvJ/rrkCqLLQTZ0xSpjNIizwt1iqmw4AGcX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:12"]},"IP":{"Case":"Some","Fields":["73.170.84.66"]},"OnionRouterPort":{"Case":"Some","Fields":[17946]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornado"]},"Identity":{"Case":"Some","Fields":["33qhbhpgN8X8u03tTzps0mLKN5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NbaMgMQrP3oVbqHw5hGxgUouA17QltxVrWEBCbzGrSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:19"]},"IP":{"Case":"Some","Fields":["195.154.253.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["applesandoranges"]},"Identity":{"Case":"Some","Fields":["33ho6vhWZU5z5y93S/POH+xcsEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oRjmoG3IlPCEdrA/oawyuywf7LNoOYr/T2ZK1eigpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:21"]},"IP":{"Case":"Some","Fields":["51.81.93.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchWood"]},"Identity":{"Case":"Some","Fields":["3295COf97uXebdnJL3yd+yCwzio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kebOPBqb0mUrX6SOWINgvtZgE4Q5KqV6k+lDZ+25V1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:27"]},"IP":{"Case":"Some","Fields":["144.76.3.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:73a4::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangepeel"]},"Identity":{"Case":"Some","Fields":["328rkckycHccjsktJDp8tiNCRKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tuAw/G2NiT+4jpGhrVEPOrX+SWYYOkK31miwNUon7HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:45"]},"IP":{"Case":"Some","Fields":["58.185.69.242"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["31XJDX64ehOwRCWZUcp4Ty9Zbo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1BH7GvBPGywIQJDbHS3H8FJQY5OkY+7BiAUw27AuQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:54"]},"IP":{"Case":"Some","Fields":["5.45.102.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:608:942a:42ff:fe77:728c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongorellik"]},"Identity":{"Case":"Some","Fields":["3zkIYLVhC46ZxaeLQJmjcFzTaxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["37GV1w5ZaE39FyOqIsL3Mp7yncTCSLKRJuMSCO10wAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:31"]},"IP":{"Case":"Some","Fields":["185.220.100.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:5::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex19"]},"Identity":{"Case":"Some","Fields":["3yBJfkh6l5mV2FGlvOwxPfflvFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["loibkxN8ZGVBny4Ccn9QEHlWvXwdRGbHq3vHhuXlC2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:26"]},"IP":{"Case":"Some","Fields":["199.249.230.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::109]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anityatvarelay"]},"Identity":{"Case":"Some","Fields":["3wLjV7Joum6QKfpt+4vCied2P88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BUXbxro8go1+Ar+mWEBq5MAzYEa0zETH7ONf6ymvnJ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:03"]},"IP":{"Case":"Some","Fields":["195.154.164.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["odg"]},"Identity":{"Case":"Some","Fields":["3v+dYfpEP+pCOs+wYjM3HHYFjQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gr5/PkkeBwj0nirLVhcBXrkju/ZH89G/iNLaFFEG67w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:05"]},"IP":{"Case":"Some","Fields":["202.239.192.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:f73:2240:500::a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torly"]},"Identity":{"Case":"Some","Fields":["3vNc6PzFte013sN5qe30IP9Blnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92DfiJcq2DaJZRKGTbmj1fGrURAFEk0LG5Ht1myyP/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:39"]},"IP":{"Case":"Some","Fields":["185.170.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:95c:74be:b2ff:fe41:52]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Joker"]},"Identity":{"Case":"Some","Fields":["3vM2XxwBL4DlaHe17wXOcr3rDMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSAer++DJQW2Ug2gEsSZiJIHQW6xcg4vASyERgRtSUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:41"]},"IP":{"Case":"Some","Fields":["139.162.210.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3uimXtKsYZ/4CpLraI72TwQM7LY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wORXifounVWijEBwz1oshNzu/tnlhzc9zQ3iBXSH3nQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:11"]},"IP":{"Case":"Some","Fields":["193.161.193.99"]},"OnionRouterPort":{"Case":"Some","Fields":[57532]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LiveFreeOrDie"]},"Identity":{"Case":"Some","Fields":["3uFFm0Jr3Lu7ge/p/EpebnosBmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b3P00ZU6AgP3yR2FnMu9o64HI3P2TUuSNXFlzPrM7Mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:20"]},"IP":{"Case":"Some","Fields":["5.161.47.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:e33::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ariolcnode"]},"Identity":{"Case":"Some","Fields":["3uEyRvkhCmhXA4k4n6CMwVWQizQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D08reH/Cmngbo/9unWfF/hbkigo4806JjZHwCgrCu10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:45"]},"IP":{"Case":"Some","Fields":["84.158.27.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hackster"]},"Identity":{"Case":"Some","Fields":["3rYWs9fZwxx9Oe+fDroB3vIUUFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SRj1CcwJkE8PEEpG1DaNycFq47vmrH2JvVa414nRLVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:40"]},"IP":{"Case":"Some","Fields":["185.163.204.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:c800:1:1dae::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackPacker"]},"Identity":{"Case":"Some","Fields":["3rDnEe3rI0jRkpEe9tC+5ify//8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcwckloppdUUKd82FBwajFeivQQf/v/HvI+zAuIsNM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:17"]},"IP":{"Case":"Some","Fields":["94.75.225.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0136"]},"Identity":{"Case":"Some","Fields":["3q/4umTMeJivxdlKG8+of//PVlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SdCQ+JI1HhULURg1APpjQi2MRkV53SmGrMmZHfVUc1M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:53"]},"IP":{"Case":"Some","Fields":["185.220.101.136"]},"OnionRouterPort":{"Case":"Some","Fields":[10136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::136]:10136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["windirstat"]},"Identity":{"Case":"Some","Fields":["3q33wIsqWyheQi5HKJiDQZ6K8w8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ec4As5Ysd7whG+n/SXQXEBTVdIi1/zE1PTzZimXthTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:57"]},"IP":{"Case":"Some","Fields":["67.219.105.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:2000:17af:5400:4ff:fe14:3473]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EFKTorBSD"]},"Identity":{"Case":"Some","Fields":["3pehpb8KTUmBM7NCJLA7Y9CO2aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYhniNkceoEDgLERUkRjcqToY4x/iUCGOjfiPDSwhdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:25"]},"IP":{"Case":"Some","Fields":["51.159.99.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3pMXocS1qVr+eOysgrXbanAYs2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXfaKcOrRPH7PAb7oDGh+4Hc4ZYdNOnhxOSJrdN3zf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:41"]},"IP":{"Case":"Some","Fields":["88.208.215.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:8162::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay40at5443"]},"Identity":{"Case":"Some","Fields":["3oeeuvULkA4ZQKl7BIKTAGh06pM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jGgP2zizWEGFxtmmlaV8K9CYZ+t/usho+cNsFowgAt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:38"]},"IP":{"Case":"Some","Fields":["140.78.100.40"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kohlrabi"]},"Identity":{"Case":"Some","Fields":["3oR9lOeLLlYKuH0nLckBktMUTxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kfHpZ04sCqI2kUw1bZpcCHiVhvfyaXH53b5Wy1nUsOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:11"]},"IP":{"Case":"Some","Fields":["109.70.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gergernet1"]},"Identity":{"Case":"Some","Fields":["3nToxPPPD7vLfnYbswcgUNHU3Yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xqWPLAk/Y+nMk/zQQqUE6cha2qkoElguG6xJz0t8bs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:49"]},"IP":{"Case":"Some","Fields":["217.199.199.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:4d80::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomewhereinPortugal"]},"Identity":{"Case":"Some","Fields":["3mc7y+Q28iwxomRdIVXRwDKLV9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3QXpDih1jjgnf3XN53fFlHvawQf3srFl685RqK3Jy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:21"]},"IP":{"Case":"Some","Fields":["85.247.237.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Darkheroes"]},"Identity":{"Case":"Some","Fields":["3mHzFJuTKY2HI3Is7musmeVHhY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Ncqqp/oYXG0VghbDsgQoclO0vsfm3QIYvNsxZdWPJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:32"]},"IP":{"Case":"Some","Fields":["217.182.75.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::3fd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindzero8"]},"Identity":{"Case":"Some","Fields":["3lXvfXOa2XCBJRV3C/yUUrpDD9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/qXjoI9QYA9X1zSfN8viRFm3vsEgoeJeoWajBbSvUic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:53"]},"IP":{"Case":"Some","Fields":["193.38.255.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex62"]},"Identity":{"Case":"Some","Fields":["3k96ey34aJsfjSOrqeMg0XY46v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1gP1cmXLWayTS9NZbq0KeTrgz72Jhfq8fhUETbXoxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:54"]},"IP":{"Case":"Some","Fields":["199.249.230.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::151]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoxTenebris"]},"Identity":{"Case":"Some","Fields":["3kh9jSeR8ra0fDDuUNKSkUqCYAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zInUj3icjBv9XoSUQTboJqaF0jprwz6u52mwb3/fAcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:49"]},"IP":{"Case":"Some","Fields":["185.146.232.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DestroyTerrorismNow"]},"Identity":{"Case":"Some","Fields":["3jsUK7EaPAESxqtB5NJ/YKy5xQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sFLth/9ynw/SliZOQkul8OEeofqCRuHGcXvxGrmFC0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:48"]},"IP":{"Case":"Some","Fields":["82.37.194.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3jkxVyry+ZfD9/HUMujOZY5i13U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL9JHlFu36xgJxZTfDRWxzwpfBoxEITLeEDYvLZOudA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:19"]},"IP":{"Case":"Some","Fields":["185.183.159.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangstaHetznDocker"]},"Identity":{"Case":"Some","Fields":["3i+uyqDXGk61Q8ae1Bi3elLKmEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egvZXY4EDmMmrTicRxVO8KzTaT3nj6oCdjj7Q7Jo+F4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:02"]},"IP":{"Case":"Some","Fields":["116.203.195.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3iyGg04cSoTMv1zEAjEeorDrKUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jwdFwRW1tSwXv+wqJEDKTZRPAQZHZxGGM3SCd0BYS0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:39"]},"IP":{"Case":"Some","Fields":["46.107.98.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jehanne"]},"Identity":{"Case":"Some","Fields":["3imlwNs4qiKShrI3eY2IF+5rdeI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8V01oJBUGGdH3Vxo9Gz3szCEvdpFO79qyRDO0AY568"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:50"]},"IP":{"Case":"Some","Fields":["50.82.179.25"]},"OnionRouterPort":{"Case":"Some","Fields":[5020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["3ieZjEUXSbr/cDUL/itFappRxs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WyUe9T5AJLxhFtBHsyz1jlgVFigR31GLRcBncp7whQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:47"]},"IP":{"Case":"Some","Fields":["23.128.248.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["3gUwFej2Nww6przTFxfKw1OOUeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sUHlMj1mG0dP3zl8UNljv83GJJs/AdlYZdytFRnXsv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:58"]},"IP":{"Case":"Some","Fields":["188.68.56.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx5"]},"Identity":{"Case":"Some","Fields":["3gQh+9dx5hiSBdNTNmh0sXkBhcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gfQpPSdwTpuYJvMEH6qHA0hytEGsW75NYWZPcIPMqTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:07"]},"IP":{"Case":"Some","Fields":["195.144.21.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArkGuard00"]},"Identity":{"Case":"Some","Fields":["3faxkkdE6c6J3h6DTiHyXgbMM/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1aZr2REw93ndORNA9rVVpYYBuAj0LljK95BmVaGTtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:47"]},"IP":{"Case":"Some","Fields":["135.181.199.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:5309::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AntonKlingRelay"]},"Identity":{"Case":"Some","Fields":["3fDvuYzdSiiJZmiupIlmul4j7e4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jiWqM+U7kHb4HXZZMWpRgo4PBULuX8y69DmpdhBvK9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:57"]},"IP":{"Case":"Some","Fields":["81.4.122.99"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccvpn4"]},"Identity":{"Case":"Some","Fields":["3exH2j3EBpiCfq7W8vssK6MW/cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/iEniqwQa4hG6t+vABVsySW9gqxfNnlB6X5YmnOvfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:11"]},"IP":{"Case":"Some","Fields":["51.15.188.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:3505:a000::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["3dzo42KgE70wpkP4tkajr1tQNYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4p8tRJhK42rV+B+txa4rZvTZO/IFua8WNY7CgCCsg/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:35"]},"IP":{"Case":"Some","Fields":["149.56.169.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYLABSUKTOR01"]},"Identity":{"Case":"Some","Fields":["3dFW5BHKon5l7q1zu7IH6MrU/UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["whEuFgTL2rv6ys/S8vJE3qzECP4kD4e06j0xcwddYCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:44"]},"IP":{"Case":"Some","Fields":["51.195.166.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation03"]},"Identity":{"Case":"Some","Fields":["3cPYFvKyKc7/YT5NkSzXnuNAJO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1MpJBwY08nLcKZrtPU1hV9IQe0FLvHQzNNpGy20KVic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:56"]},"IP":{"Case":"Some","Fields":["45.14.233.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e9a0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twinky"]},"Identity":{"Case":"Some","Fields":["3aoRLRrmfJYgBMNhG8WbeoYa+0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HaBouW+3190L/KQ8GUVIFfdYj0+bSLbcLVxwMOojwAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:06"]},"IP":{"Case":"Some","Fields":["46.20.35.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3aCq6IMFdiMQ8kJMBK5WrHcyDJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["24J/JxhR3CQvFS9pWNNr2yrjDo7jG49DPlGqJLEFGfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:38:50"]},"IP":{"Case":"Some","Fields":["195.201.1.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[8001]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:eeb7::1]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex86"]},"Identity":{"Case":"Some","Fields":["3ZhJvVzz3Hafoq7b+fFb9blqaVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yMVhvUGnTMhz1JCXPi1WlqF19VzddR7JxteNTtuBeBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:47"]},"IP":{"Case":"Some","Fields":["199.249.230.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::175]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["damnat"]},"Identity":{"Case":"Some","Fields":["3YxFrNn7+5/z3nNryjJsbJoo5zU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mxnsPG2C4w1a+0CExAjjfzdxlDRQ7kSBwZeOxQDWIGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:08"]},"IP":{"Case":"Some","Fields":["107.189.31.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Elcano"]},"Identity":{"Case":"Some","Fields":["3Yrq9RDfFT/P89aR3gLA0hKrAEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e8xBbH0NRKw8BMFcFU1HKBurGCZuFkdSaI5xTCL7jjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:53"]},"IP":{"Case":"Some","Fields":["81.40.67.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange014nl"]},"Identity":{"Case":"Some","Fields":["3XvT5b0LpIqMcLDN8Bf6WYi4fic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6tX6RAcM7YlhWOTQ3hXuBp8dhKrQ7iBVdZ4tZLN7A8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:13"]},"IP":{"Case":"Some","Fields":["5.182.211.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["3V2iHMUDZTOuIBDeLH5yvizfnF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2aCX+cYmL7Jx81U8rfglew0q+vfL+uP3ZJ0tL1sXxxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:10"]},"IP":{"Case":"Some","Fields":["195.154.250.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nonbrokeneye"]},"Identity":{"Case":"Some","Fields":["3Tv1fb1ENJp/epo6j/471GMHIQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uXXLA3R0Jv1E+W5Xl6GnrekHCo/7z3iWpZwt7yulqo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:04"]},"IP":{"Case":"Some","Fields":["179.43.145.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hands"]},"Identity":{"Case":"Some","Fields":["3SznnGH4OV6pOjGU/oc5SsQEU/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92HawFX3haIyBYO3OQKy7yCWO9/7oUeCCVqjsC7LZP4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:13"]},"IP":{"Case":"Some","Fields":["109.169.33.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv10"]},"Identity":{"Case":"Some","Fields":["3RowV+kdjf/V1qVCleUIARp7mJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dld8VWLPnReRPhdgtZrZ9bSuSW96jAaBNP+W9WGPzWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:27"]},"IP":{"Case":"Some","Fields":["162.248.163.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chaosDelroth"]},"Identity":{"Case":"Some","Fields":["3QyO7FykAqn6RHjxDDGkQPcfaIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1M2OCnl460GxWIvg6Yr4cHD6DZv4DqXzFR3c2q2M+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:02"]},"IP":{"Case":"Some","Fields":["195.201.9.37"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob04"]},"Identity":{"Case":"Some","Fields":["3Qqmbdnk5x/6+rZY34MA8c7qA2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g+hTnVBz2fryxmFYr6ai+ea1sD+olzkSmjw0dkBeHlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:59"]},"IP":{"Case":"Some","Fields":["46.38.242.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:7:649:e8b3:63ff:fe9a:5e24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["youdidthisvladimir"]},"Identity":{"Case":"Some","Fields":["3QIZvVswFSh8lL4TclNKf9ytnzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5kk+v+ZmTo4tPA7e2f4sJmnAxbPYPx5i5yFN4NULPP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:01"]},"IP":{"Case":"Some","Fields":["82.165.111.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:84f2::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iatetheconfig"]},"Identity":{"Case":"Some","Fields":["3PuptuQXX4toIr9/xrZ9h7WaHdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EFiCth0AISykrkanqqEToXaowBCXH451BNcIFXy0AJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:40"]},"IP":{"Case":"Some","Fields":["147.28.98.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CancerFighter"]},"Identity":{"Case":"Some","Fields":["3PqjCqUKYr4pLrcIHvMEEzm74w0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qbHdYUo6f810L2antgATA9ZTXdi3DVs6vQBW2OJVZB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:27"]},"IP":{"Case":"Some","Fields":["77.70.63.220"]},"OnionRouterPort":{"Case":"Some","Fields":[55555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["InfiniteMercury"]},"Identity":{"Case":"Some","Fields":["3OWqWyKHZjvn2+nIdjX6hGE42aY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4mQJRC8pd72sc5J5I9b9jWDe5Ef9aSr1AlhM1GgOsvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:37"]},"IP":{"Case":"Some","Fields":["185.17.184.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra70"]},"Identity":{"Case":"Some","Fields":["3Mu5cXzYsfAxuaOMch0r2WFWl6o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jwhODwkDRERJWPaGlItDh6lLX89Z6YcvhWhJoVyO2fQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:01"]},"IP":{"Case":"Some","Fields":["141.95.18.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belugaRelay"]},"Identity":{"Case":"Some","Fields":["3MlnPisfNTgDtooaQGIfN49sm0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i83pObm6l15S4w3TrsNnKWPZyN01IQY+P5YZFfQoZcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:16"]},"IP":{"Case":"Some","Fields":["82.165.167.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI21"]},"Identity":{"Case":"Some","Fields":["3LfVLJQlY1O6JxuLd2mZSKp5soQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mUhNTOHVb6KDyZdUASt40zHgWc6OsS4VxcU7h5WTYEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:42"]},"IP":{"Case":"Some","Fields":["171.25.193.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::79]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyArmyOfLovers"]},"Identity":{"Case":"Some","Fields":["3LUPuL49n5XsUDiVWQ6OLLQN22c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qevpixoePmdkHqIO7JXIIxuQNAHXmyEBOzLlCXfDjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:22"]},"IP":{"Case":"Some","Fields":["189.91.231.12"]},"OnionRouterPort":{"Case":"Some","Fields":[32566]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:4ec:121e:fd00:3a9a:99af:8126:2667]:32566"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChaotorumRelay"]},"Identity":{"Case":"Some","Fields":["3LC7XfbXzmRn3YIZPrSoWBoPBkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o9X+uE7QyL8pm1m8Tss2z6C+kVWJsHJk9Rq9HUvyunE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:10"]},"IP":{"Case":"Some","Fields":["82.165.116.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SweRaspiTor3"]},"Identity":{"Case":"Some","Fields":["3KoXb3WwQocTHG14t8/drG8mkdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lLRxtc151QEfV6Q2bapHqqSxmOJ2cfXnLp7g1oIydO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:32"]},"IP":{"Case":"Some","Fields":["92.34.149.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iretq"]},"Identity":{"Case":"Some","Fields":["3JzCJCExRfSzao3AAge7a67Hdp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7IghGf4FcAWD+OQoZA8id5Q/jLG3RAZpx9eOdrdXe2E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:27"]},"IP":{"Case":"Some","Fields":["85.214.227.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4377:c000:aa6a:d41:7918:2216]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer20"]},"Identity":{"Case":"Some","Fields":["3ISTzetPxSp6qottbVj69GHTgZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qD7LNDTuiaTIn3Kt8CEGMtuocVniMzSMgPbhuq6Cf1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:48"]},"IP":{"Case":"Some","Fields":["173.208.190.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8158]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnExit1W"]},"Identity":{"Case":"Some","Fields":["3IGqOx1RVm2/J7+lYuQEeuscUto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8g20NSqYdDdq5gssH09AngTuo7AQGzH6vHxu1NG55Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:04"]},"IP":{"Case":"Some","Fields":["91.132.147.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:645::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["s6tor2"]},"Identity":{"Case":"Some","Fields":["3H59mretUvA7hW5twnjp2SvxmzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vsTXUHGF55dJQfzCb3ahbus90SJOeB0PNOggZgW86Mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:53"]},"IP":{"Case":"Some","Fields":["135.181.67.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4b:4e97::6666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luftballons"]},"Identity":{"Case":"Some","Fields":["3Hur/zxeScki0jneGlxSUvUdL4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wyv67lQoFJ+wn3SyVyayF9nZU+wHAKhsyR0XvyV+sLI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:22"]},"IP":{"Case":"Some","Fields":["87.92.210.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KiwiKEK"]},"Identity":{"Case":"Some","Fields":["3Hf0SQAfxymt9a2vJ4e22dKwFso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nJ+bI8wIamMnTxczySaSh0fE6Ef6fBXcIMdpnvhS9cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:08"]},"IP":{"Case":"Some","Fields":["107.138.131.161"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c983:1000::2d7]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kator"]},"Identity":{"Case":"Some","Fields":["3G8ziuZy59P0/pV0/Jqn/u8n5F0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["weVonrXgKFBFI/I5S0AuF/V9x7JGLDCYC5yz8oaYPds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:01"]},"IP":{"Case":"Some","Fields":["81.157.78.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArcaneSpire"]},"Identity":{"Case":"Some","Fields":["3Gu72Tmt2lX84hCiOlwwlZYK0yk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AKxCiJCPaij5uEUDhEGSiKsPuZsSbteSsoMDi9B0Y3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:59:20"]},"IP":{"Case":"Some","Fields":["79.97.240.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay24at8443"]},"Identity":{"Case":"Some","Fields":["3Fus8mnv3H/pE1byqYrdqkm9guw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ToMaYYo+7p82jxBLYzyg0bH9varDPkXwppvcClGpO+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:34"]},"IP":{"Case":"Some","Fields":["140.78.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRelay"]},"Identity":{"Case":"Some","Fields":["3FcWrdJwzRwfgoTbgXBqPG6PnX8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SaCqRv334zZvSxvSTm1q5xyH+5NWttXvyGKaXhYQrEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:40"]},"IP":{"Case":"Some","Fields":["70.55.113.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ThisIsForEdSnowden"]},"Identity":{"Case":"Some","Fields":["3EClnU10Tyw8emVexr86Wa+hxmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBP/9teP9qTMwwnsBntrc5sdbClKCxhgxRfcb2cvAbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:08"]},"IP":{"Case":"Some","Fields":["185.228.139.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:678:b846:78ff:fe18:5ec3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev2"]},"Identity":{"Case":"Some","Fields":["3CGRZj3UuuyzT5ScysP9oATOW84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gT9SESWv0r9J/rfwS4ZgyNW8PgxPGczxWiw6waVi1Tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:36"]},"IP":{"Case":"Some","Fields":["87.118.122.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:103:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay6484"]},"Identity":{"Case":"Some","Fields":["3AghhIO2EcUlWl3z9IijBXVhaz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YaOtb6jR95gdrmNuGC532Np1GgPYXmiuUs904koU9/Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:47"]},"IP":{"Case":"Some","Fields":["110.147.177.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spechttor1"]},"Identity":{"Case":"Some","Fields":["2+gvojuf48skYqb89Sid7Ty/Su4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+TJX8pgQgp39Vdny7v4vGx+hd6vNaL00Q690eOKuzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:14"]},"IP":{"Case":"Some","Fields":["138.201.169.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:35b0::4:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wc"]},"Identity":{"Case":"Some","Fields":["2+OLxaOI5ZbYUxmXdOtIqB8RAJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dhg7Os+c5f1pAJlhMF+kAoCAd3qkx/iG2nCO7opOjgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:14"]},"IP":{"Case":"Some","Fields":["138.3.220.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["nocabal"]},"Identity":{"Case":"Some","Fields":["29Z3Z2QBl/+W7GqHaERk/Ej2EbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0AX2rTbkONShmh5PPW9wQwZ1GKOvDUJumCx5nTTzgfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:38"]},"IP":{"Case":"Some","Fields":["178.63.52.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:7335::2:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AncanRelay"]},"Identity":{"Case":"Some","Fields":["29PtKTpoWmbGhy7DklhOIP99Ovo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jn/cQDw3UL1dvUuQ3lvsFHuN0jFe8ntnwMMb0uzSnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:42"]},"IP":{"Case":"Some","Fields":["158.174.112.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["25UcLPIHPsr/CO/2rBCLaxyeZ30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvNukiyE3KB7oqBUVQ47Hh4SxHrXYVqCYbqrZfOhvvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:56"]},"IP":{"Case":"Some","Fields":["185.207.107.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["24xhml6QYDtM3ilgUy4t7NLtGz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iv+Nwz4u6Vqc2zfKiZecrriF9xLJ/5tl4Um8Rz+PNMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:24"]},"IP":{"Case":"Some","Fields":["193.32.126.215"]},"OnionRouterPort":{"Case":"Some","Fields":[56660]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xcn"]},"Identity":{"Case":"Some","Fields":["24VvtQ8EQAcKH8VyrEfzIP3KsEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TcVqQhhSEjlbgEsHmquEZSPzNbWg8zJSuctED5fSuhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:59"]},"IP":{"Case":"Some","Fields":["103.158.223.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wienor"]},"Identity":{"Case":"Some","Fields":["23MDvk9Hnwck6aXHXOtaNZtvVYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuTKXJU2FrKbT7hE1wHhY5E5/z+A4GUAuz7X1td+o0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:02"]},"IP":{"Case":"Some","Fields":["89.58.19.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:fde:cdc9:89ff:43f2:5af0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreamwriter2"]},"Identity":{"Case":"Some","Fields":["22+z1uZCxeU1WqVPqA9kqBrkgI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwIpqLJYxapqM/NoS5b5cIwcDhzykj6mgKFMXxou5IQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:13"]},"IP":{"Case":"Some","Fields":["157.90.116.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:5035::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sauberesache"]},"Identity":{"Case":"Some","Fields":["22rH37JcnPxwNrU8ePkdjjqSec0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LmMkeAmpTBYFWol+sJXT2no/sLsLKws5iJwWIlDpsRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:43"]},"IP":{"Case":"Some","Fields":["213.239.197.35"]},"OnionRouterPort":{"Case":"Some","Fields":[18732]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:222:141b::1337]:18732"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackAndGold"]},"Identity":{"Case":"Some","Fields":["22gXRbpObYum6n1TgfZXAh6Sgho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N3OOcOuTlAlbBqiTEZsg/2VasMVBcV5EybtYayHxn4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:07"]},"IP":{"Case":"Some","Fields":["5.255.100.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Songino1"]},"Identity":{"Case":"Some","Fields":["21/26IBqZnTie/adHh6/MI2ah6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8J2i8OjbVBhiuGmrAUBlmk7yITSn3Z5thVDDPvRWHag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:52"]},"IP":{"Case":"Some","Fields":["180.149.125.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei06"]},"Identity":{"Case":"Some","Fields":["213oi0kU9gze71gezKjepZ7yapA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPVudADKpmZVXuYbSNlDDvxNYtCPjS70mDb5Udusr4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:06"]},"IP":{"Case":"Some","Fields":["185.162.249.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:6f8:98f0:87ff:fe6a:29af]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Wellness"]},"Identity":{"Case":"Some","Fields":["21lpRrGCBsxxtWq7NquQj44L+nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCvmD09sEegOV0D5xT7vO/2oVgAy/bXfSI+n76YyteM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:35"]},"IP":{"Case":"Some","Fields":["77.91.74.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nC982filxW8x1tkWAjI"]},"Identity":{"Case":"Some","Fields":["20UQN8I689Aorht+L4K+XKd7mKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wZUOFAHSxk6CllNnW2yEpvvPwwg3vSNy1NLyNfB+ROw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:58"]},"IP":{"Case":"Some","Fields":["107.189.8.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f49b:e2ee:34f8:c854:6f63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wokwaixtor"]},"Identity":{"Case":"Some","Fields":["2ydz1OwmRkLajGLb+iVLDM4OuL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7bGab9RtMZibbykwL7FzAeXYxY84fKaFRqq3V8o0SY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:23"]},"IP":{"Case":"Some","Fields":["159.196.89.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft2"]},"Identity":{"Case":"Some","Fields":["2yaCFTrAzK7NK9Hp6+mcaBWAeh4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rxyjljo7yr/4SDDzq3jAVjFcTGoBQQ7wpEjFm7Jg3m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:53"]},"IP":{"Case":"Some","Fields":["54.36.237.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1137"]},"Identity":{"Case":"Some","Fields":["2xbHc6DodTD9T8bV2B/7bW6y5dA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+V68Q4kZRW8VqwAqrKrtPUmgVUqcTaLEiKu0oznApZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:11"]},"IP":{"Case":"Some","Fields":["185.220.101.137"]},"OnionRouterPort":{"Case":"Some","Fields":[11137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::137]:11137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["swlt7"]},"Identity":{"Case":"Some","Fields":["2wiUEwsvwL334juADZEBfWFF06Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/E6PLxizik83b+vlBq1tpye9Z4myQSI5x5islmUunE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["212.227.164.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poopypuppy32"]},"Identity":{"Case":"Some","Fields":["2wJETqNEUfjx80LNX++ZFNznyKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf+eulDb1JoXuu0LEh4PL3cmTUUK2K0s1wbcV17/LOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:53"]},"IP":{"Case":"Some","Fields":["77.171.66.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WolfsDen"]},"Identity":{"Case":"Some","Fields":["2u+Li3mccRqGNQ/cQzeys6dbl8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYre5UfwlVKkdtKu7/EYD0eWRXcM2du4yI8npLUxx4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:14"]},"IP":{"Case":"Some","Fields":["51.255.150.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex71"]},"Identity":{"Case":"Some","Fields":["2ulIdxmbkl1fecKwDXuDTRaZOvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XuqvlHZLY92WsOO7M3v3KLpceDrp7pQK3P6Cpv1ARc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:20"]},"IP":{"Case":"Some","Fields":["199.249.230.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::160]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pablito"]},"Identity":{"Case":"Some","Fields":["2uZa0yoHTOyzCtP7t1BPDNxhbNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v4S0mBFDWNu4cFOaRtJdslVNgs1MEvvbGQrGT2hDQ60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:16"]},"IP":{"Case":"Some","Fields":["213.239.213.220"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:8070::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2uYFHV8X2GeVlSuEVvuIXOPl5MQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KinMrE28/RmE6c27YySlK5LqIOqpvasSSpQvwzs82d0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:53"]},"IP":{"Case":"Some","Fields":["23.128.248.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scatterhead"]},"Identity":{"Case":"Some","Fields":["2txzMI1TC3Vglpy5VM3b13wBD8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4wzhWYe83tTxoJL8CgjorXxITA95PpOR/lrNRhlqX1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:48"]},"IP":{"Case":"Some","Fields":["88.207.122.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:232a:99::45]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malene"]},"Identity":{"Case":"Some","Fields":["2sglu/BdZ4q96hwwhujZnPC78RI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmOVmnAuBq1FDJDxusIAD594LsZxx942e7fLvNiELlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:14"]},"IP":{"Case":"Some","Fields":["185.73.220.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["2se78fL5LnSLHrWblQZ04sOf6lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8L9EftEg9sdxoiDL0kdnhclowsQecEJgACtidKd8BVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:29"]},"IP":{"Case":"Some","Fields":["179.43.159.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex76"]},"Identity":{"Case":"Some","Fields":["2sD9TRptGKv5WvJIk17Fb0blqSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["auSPp7GJmIyI0RWjC/xyybxtvRKfyLJaYR32F/wngLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:16"]},"IP":{"Case":"Some","Fields":["199.249.230.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::165]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2rSQ9o1l6M6GyskUX6hfCpGY4o8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SKhuDKC9qtxZTko0aAsy1kRFK4D9a9ux1qWkPdmuRWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:19"]},"IP":{"Case":"Some","Fields":["23.128.248.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::47]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mxcz"]},"Identity":{"Case":"Some","Fields":["2quOeqgR3kAgVg19Y9Sjksa6Yho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aXc7gyCp4UNJJVg8ELZejhxWJG8R3vc2I5EGq+8FYIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:12"]},"IP":{"Case":"Some","Fields":["37.187.20.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:14a4::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse15"]},"Identity":{"Case":"Some","Fields":["2qDTsNc5fYUZkP3ywBQx3iWR8lM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orseNUhcS0F7PafGue18Yf87jWWWBeuArsBUvJDVSSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:58"]},"IP":{"Case":"Some","Fields":["81.16.33.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["babywhale321"]},"Identity":{"Case":"Some","Fields":["2p/McdFQ6kzXQfOz7N7AvMhv9sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYhXnTH4fWlAVKbQPnJnL3Q9qKYGZeXF1XeHtDdeMd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:40"]},"IP":{"Case":"Some","Fields":["205.185.116.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1c58::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigmekk01"]},"Identity":{"Case":"Some","Fields":["2p4Cu4CA5HMVcFL3BDm3iGqoVp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it85U0Gg+0iBLaFysETwn7esl3LSUQv+dco8EJpAbLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:14"]},"IP":{"Case":"Some","Fields":["93.177.67.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:38:4c9:83c:c0ff:fe61:fadf]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber20"]},"Identity":{"Case":"Some","Fields":["2pq66kn7+edensAgOA42Foijsj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmPYeqTGffVnYgkSfcC3v7guPTzniMxZfLlS5q79z34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:05"]},"IP":{"Case":"Some","Fields":["185.220.101.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::10]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["z0rb4l2"]},"Identity":{"Case":"Some","Fields":["2o129fWBlpO1yW9Jm6GfdAQBR2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bYWPFnY395QnjRkKnxA+/JI5Kh5udP5Hc1OhacPt1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:51"]},"IP":{"Case":"Some","Fields":["148.251.11.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1180"]},"Identity":{"Case":"Some","Fields":["2oerVxiF+36bR/Zuvl0ePy723/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqMH1XMxACk8eAxBVn71MyERxHhb3esXuHkam1WyrRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:53"]},"IP":{"Case":"Some","Fields":["185.220.101.180"]},"OnionRouterPort":{"Case":"Some","Fields":[11180]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::180]:11180"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torhammer"]},"Identity":{"Case":"Some","Fields":["2oTUF4O7tgWMud+MkGl+jV6mR8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f9zWbg40H87hejijtieq6Cm+GSVMyRMniUrwgdwcmVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:02"]},"IP":{"Case":"Some","Fields":["84.226.204.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b425:88::beef]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kyra"]},"Identity":{"Case":"Some","Fields":["2n0OJ7CPAyx2Y7WMMgheJSnLzaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["if3tXNKAH+6z6Z8F/aH8eVUbe3jBRgy0bY0cSddX+Xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:05"]},"IP":{"Case":"Some","Fields":["91.216.111.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:19c:10::60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["2nuzdS/ArSvqF/GJnL4pzD6Vl2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u+tmBuhMVic3u3QALqFPV9IE2kfgKk4TSoT6ObFruP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:54"]},"IP":{"Case":"Some","Fields":["194.26.192.187"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex65"]},"Identity":{"Case":"Some","Fields":["2neq/gzDjblYQytFkQ9HcU1hSqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e9UIB3upi1nVKxZiWi4jlUJ9TY/NxkxRa1a1oMLkVts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:15"]},"IP":{"Case":"Some","Fields":["199.249.230.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::154]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackstar"]},"Identity":{"Case":"Some","Fields":["2nESbh0LEWBVM7etOZ3Vp+yOLw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qm9vJmQLIDvRnlNaBUS2NZ8pxItTea9QiGBjRY0MSiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:49"]},"IP":{"Case":"Some","Fields":["45.80.171.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1f:1::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp4"]},"Identity":{"Case":"Some","Fields":["2m+YraaEAeKhaRlCmLNjQLJjmGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFYs9RDsSnEAPJP0VeaDU4+OVHVfkc3tU2xqu1HK5MY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:09"]},"IP":{"Case":"Some","Fields":["185.220.103.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lancaster"]},"Identity":{"Case":"Some","Fields":["2m4jH6fAdhOmRHPMcJ6lWsgnQB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bwrOsFVLUWJhHt0Bj2ju2shB5+tX9zqTjxV9sNlOS+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:03"]},"IP":{"Case":"Some","Fields":["106.68.240.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["2mHoSwCbMEN3wIy4KUa+pYOYt4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0VoCmLUAS7w9d1LrckT9MyTK1gyjtksxwASbTmBMMro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:08"]},"IP":{"Case":"Some","Fields":["171.25.167.73"]},"OnionRouterPort":{"Case":"Some","Fields":[56890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex99"]},"Identity":{"Case":"Some","Fields":["2lyaWNvUnoOCG8Vvy8itkgloDKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoIK1dX8Q4jLKWjPLQcZ20F+/aD1/xPNWZyInQXl4+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:45"]},"IP":{"Case":"Some","Fields":["199.249.230.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::188]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LowEndAdatikrit"]},"Identity":{"Case":"Some","Fields":["2k+cT0seJTCOS2rBarbaUf8HosY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ad6MTJ2ewXQXja5PkxAGf8aHcuMS1WNuDcZmp5NaLUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:35"]},"IP":{"Case":"Some","Fields":["185.193.126.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:1337:126:0:b9c1:7ece:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["idefix"]},"Identity":{"Case":"Some","Fields":["2ktIjCgm37vQTWNdoecaK6WyB0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWVvQtOwRuf6qpJywLLw9tEynh0M6tlTxflWZJ8aPUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:03"]},"IP":{"Case":"Some","Fields":["82.165.70.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp5"]},"Identity":{"Case":"Some","Fields":["2kevBn9Cg+tsjkDiGW9uxf3//c4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYlskDXMLTwdrq9LXFzsHe11weFCCX4j5xn1vR3cua8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:52"]},"IP":{"Case":"Some","Fields":["185.220.103.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ExitTheMatrix"]},"Identity":{"Case":"Some","Fields":["2kXamfZVq4vNqgneI6J2u/h21YM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s5hjPWTI0W6ATt8/pv3QgmFPu6/VMZ5HtLKLOqIYpOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:16"]},"IP":{"Case":"Some","Fields":["185.130.45.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2kUs+KnnfMy5VFmOWchNlNxaTUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7EwmwSBmx4Wo3Deav2t0i9mY1MiE4c+3u0MXgpdYSqg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:58"]},"IP":{"Case":"Some","Fields":["23.128.248.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::50]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer71"]},"Identity":{"Case":"Some","Fields":["2j9vsYz8YDfWakRyF/TEH7GRgms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpadddrRXpZocQtR/XgFGO+AnIxDKZCPAMsuY3NeAHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:28"]},"IP":{"Case":"Some","Fields":["185.16.38.112"]},"OnionRouterPort":{"Case":"Some","Fields":[6171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob00"]},"Identity":{"Case":"Some","Fields":["2ihKElmQq9e9iu42fYjHhKXruyA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Iuol767e9BhjfzqJvbMc6vsXI1VlBOBJstlqxR2PM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:00"]},"IP":{"Case":"Some","Fields":["94.16.123.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:a6b:34f1:88ff:fed0:52b2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemOCI2"]},"Identity":{"Case":"Some","Fields":["2idXDeqRkBiJgp4/+CsUATtJQjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jZdEnkYbvXOSYDfl0OSuikvoyVuKkiuVoIGy3mkG0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:55"]},"IP":{"Case":"Some","Fields":["130.162.211.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1134"]},"Identity":{"Case":"Some","Fields":["2iLAtYmVmt0U0WYGuaKlEs7WHE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gPA4Z/447o1AFBe1beBSuISFgg+Kb+MaKxiCG1fgcZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:57"]},"IP":{"Case":"Some","Fields":["185.220.101.134"]},"OnionRouterPort":{"Case":"Some","Fields":[11134]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::134]:11134"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mjolnir"]},"Identity":{"Case":"Some","Fields":["2huLjWF5CZAlcnkM6LuZ2lAsZIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ju/QoUMSgVLIiFnNvT62GWnyRP94arh/xN7fKP9JDoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:50"]},"IP":{"Case":"Some","Fields":["205.185.117.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:3ea:c2a3:1162:7224:e5df]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IloveHK"]},"Identity":{"Case":"Some","Fields":["2gS/II02GC57414apOOGe1rt4t4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0psYe96u3ZSO7BZwJ1DbWyebM9TOpcXN/cDl9I18PaA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:19"]},"IP":{"Case":"Some","Fields":["218.102.182.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["letsdoitUS"]},"Identity":{"Case":"Some","Fields":["2fne/oc/nI7YMmUrhJBZQJVWLkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oe4DG3OIOXedx8b2H/qyCSKA6Ze5dVX6Icbu1RttYJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:33"]},"IP":{"Case":"Some","Fields":["74.208.216.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:fd::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brrsundae"]},"Identity":{"Case":"Some","Fields":["2e2z3Mj0mi7ERksQP4WzldCp7Z4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KdOc4mvUTVh2Z6SKuzkzZ0grookBbJcAcGjawzJFPnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:52"]},"IP":{"Case":"Some","Fields":["172.245.90.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LIN0DEXX01"]},"Identity":{"Case":"Some","Fields":["2e1XSmD7V07GFRjWw0w1A23KlCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u2eTvmxan3cuMMi4NngcHYjVijP04NSD3Lsv6DZ5zkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:51"]},"IP":{"Case":"Some","Fields":["3.9.8.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ledevin"]},"Identity":{"Case":"Some","Fields":["2eT3+nQBUuvZjD3nUl9IjnyoWfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x521bCE0oZYQOauyEHK5WqMIIPy9LLygT/a6uGCrTh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:49"]},"IP":{"Case":"Some","Fields":["50.7.115.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["traktorzetor"]},"Identity":{"Case":"Some","Fields":["2dbDXpMv73EAoAyZwZk1boLat+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gHeWCQoNw8OH/46CjzVvwGozSEGfG7I/aJbWZVJE4jQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:27"]},"IP":{"Case":"Some","Fields":["37.157.197.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:1::2f0f:f001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra11"]},"Identity":{"Case":"Some","Fields":["2dLb6sd2IVsz6Z1Ov/6PulwQDbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cFWfHV7NrASzHuLEj4BnCug/q2qNZajK6mic7MG1vFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:12"]},"IP":{"Case":"Some","Fields":["193.218.118.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::167]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["2a3+JaQvWcAQPlLE0N4lt4d/oPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ax6ua8cTXLujLVDngB7SM5zYBFZcjZ4p9Fvp65lDeVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:25"]},"IP":{"Case":"Some","Fields":["95.214.53.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["P33Vieh"]},"Identity":{"Case":"Some","Fields":["2Z++L+z7q5T3r/0RSNuvCvYW4QY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d17w7qYlyh2oueDBYffMpZKzmMMU+/dpNx9NJWIvLRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:44"]},"IP":{"Case":"Some","Fields":["103.119.112.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["harutohirrii1998"]},"Identity":{"Case":"Some","Fields":["2Z+rBLF6wwV5UOya2F2PjtG+YfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K1HqPrJvcy5UxBYTXZq5eesInYwOG4/G291Q0J+jUzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:35"]},"IP":{"Case":"Some","Fields":["103.242.118.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chachahamas"]},"Identity":{"Case":"Some","Fields":["2ZCpeMbCekhnuMKoSRQUD7Zp/CA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Dz6MUEo4ttCdoXk0+cK9nw3r94bFuPCduYp87t9UeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:49"]},"IP":{"Case":"Some","Fields":["86.104.194.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["refuseGlobalJam"]},"Identity":{"Case":"Some","Fields":["2XTHQxHW5gq4g2EP9zqeiB+eMPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsindeJbhGxnbFjl5EQm2f7k6urA3UVmoby4XGyM3gs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:28"]},"IP":{"Case":"Some","Fields":["213.164.204.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2WQouDqLFHf4/6L+bywj7jalwRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gw/CDDFTWi6MvzRJYTukP1ugduN3k+nX996HIDVL2kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:31"]},"IP":{"Case":"Some","Fields":["23.128.248.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Splinter"]},"Identity":{"Case":"Some","Fields":["2VmAwV954JSuJVuo8bV/1sgfK1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsmStHQQ+8znXOiDVZXHsch0zUTWxhyWtqyDZNr2YM4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:00"]},"IP":{"Case":"Some","Fields":["200.122.181.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catRelay"]},"Identity":{"Case":"Some","Fields":["2VJxkCTyH+6mLAesnpyZbWgGuy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ag6tiy/p74ehA2Km5VrDLV7r2I0yeyYlkoelKn+gntA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:21"]},"IP":{"Case":"Some","Fields":["190.7.3.34"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["franovgnet"]},"Identity":{"Case":"Some","Fields":["2UdiOzDJ1uFC59kPxzaLGipPUEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ag6176S3lwmCe4dCWIJkAGvW8NrgTsLgaI5AmrXdQrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:22"]},"IP":{"Case":"Some","Fields":["51.75.64.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::205a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tardis"]},"Identity":{"Case":"Some","Fields":["2UHTgOUijntNNyr01IRimpbcSLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5kJti9GoRhbvlifLZ53s3euOL4x7mU1D0vf4I8+UZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:55"]},"IP":{"Case":"Some","Fields":["158.255.212.178"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:158:255:212:178:2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Odi1"]},"Identity":{"Case":"Some","Fields":["2SN1OIaC/K7pjn6JL523YA/GRj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qB4xtra0dEWDlQ0/2iONKXQBEQ8JoOVOw6uccfSR0C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:01"]},"IP":{"Case":"Some","Fields":["130.61.118.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["yesch3f3r"]},"Identity":{"Case":"Some","Fields":["2QnKtODqBEao48yc2E3WQs/+ZCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kIOxUrU4raiSRaELrlboqICmBmLBINzqdRIPKghDBH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:41"]},"IP":{"Case":"Some","Fields":["217.160.254.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:382::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2tor"]},"Identity":{"Case":"Some","Fields":["2PecbPOG3PxbaS4TxQiYlGBQe3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sjZ70njjCvDXNCXti456N2QTI2TuO72aavDDecbfAnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:19"]},"IP":{"Case":"Some","Fields":["162.55.190.170"]},"OnionRouterPort":{"Case":"Some","Fields":[12333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aRC0C7"]},"Identity":{"Case":"Some","Fields":["2POwoZpx+ous7Es24KhkXu/wHm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7wI9T3iLhatZl45OPGh9OPj9bbeHEn35cqI7ZJeNzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:16"]},"IP":{"Case":"Some","Fields":["132.145.62.236"]},"OnionRouterPort":{"Case":"Some","Fields":[1234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tryler"]},"Identity":{"Case":"Some","Fields":["2OoQXnmAP7AECowqZ22T2uos//A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gx0VI4Bh6HmlYqM4bsA97dzG8xZfrKH/VwlknQjwjQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:19"]},"IP":{"Case":"Some","Fields":["185.117.82.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:21bc:1e::1:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["2N+WYCYbFYqd9sPX1j3ZKw/Vufc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QuA7BukHen8b4qT22W57WcjbJbrStOJ9vGkCMSt+xB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:27"]},"IP":{"Case":"Some","Fields":["185.61.148.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::e636:5252]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwerty12345"]},"Identity":{"Case":"Some","Fields":["2Nx0pVvM0G35324/BWiAnTspc7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ty0lPrGUcIVStt480V/jTACXLgCyacRGKmwd3pNbOSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:27"]},"IP":{"Case":"Some","Fields":["82.197.218.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Papazof"]},"Identity":{"Case":"Some","Fields":["2NOfvfBUvQFhcAlJ0BFONrrn8Po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/MtVKmN1MRYAaV1V2QCOPibhPmZcn1FdNwyKnfvJ6E0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:31"]},"IP":{"Case":"Some","Fields":["91.45.199.210"]},"OnionRouterPort":{"Case":"Some","Fields":[1412]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cepa2"]},"Identity":{"Case":"Some","Fields":["2LmuLM+vMKeXSq65s/6vA1sHDYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wGcynflOYM4kQ1Pq2gAUMr9LNRO1vQw2buSfOKBd4CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:58"]},"IP":{"Case":"Some","Fields":["185.100.87.41"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:3c::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aberto"]},"Identity":{"Case":"Some","Fields":["2LTDHk2vnLyJ7BPj9dlorWzci/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OVW6aVdSdw+oYQs6Lp0Q/+50N0DQhhDt5VFRT4wGYBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:18"]},"IP":{"Case":"Some","Fields":["91.203.5.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["2Kvxam/oZKZ2KH0cjJBaDYuOxpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b3M72HXOwobykfAINl0Y5De2AnMhzGqpF6CRHeSViAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:20"]},"IP":{"Case":"Some","Fields":["23.128.248.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::26]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porthill"]},"Identity":{"Case":"Some","Fields":["2KLQCAsMc+HcDsnzO0l/ZOX7P1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BhkmldM2uB09Gf3T9upYun91ymwCG+fWkPc40wd0e+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:34"]},"IP":{"Case":"Some","Fields":["136.243.176.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:2593::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexse1exit"]},"Identity":{"Case":"Some","Fields":["2KH1qOoa9T40FLnEj+axDDGsybI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eFVR5D8oXdCqdzLsJDNEoENnE27kpDsXGB2jA5Tu7CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:46"]},"IP":{"Case":"Some","Fields":["185.130.44.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:2:13::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Friedrich"]},"Identity":{"Case":"Some","Fields":["2JJn+xC/Yl0x/3aHr30SsDu/dXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLHPhGiwqJ37oOnNPKT32jk9/5SnQmnCudjxZnrVfl0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:08"]},"IP":{"Case":"Some","Fields":["35.182.71.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iceberg"]},"Identity":{"Case":"Some","Fields":["2I39va61/nl7vWWtcomMyTLAt54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+PAUdI3k2CDw1lht228lzY1kMuZjxMMZdrpOCuNiVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:31"]},"IP":{"Case":"Some","Fields":["89.212.52.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schattenbahnhof2"]},"Identity":{"Case":"Some","Fields":["2HqSfaF7n7eyzr7aNJ8ja8BAm8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3BFnG6paPtLjhsfk4eYbJn23Tme9xOFQvVrKEuWlksk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:38"]},"IP":{"Case":"Some","Fields":["188.68.53.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e34b:7cf3:194b:368:22d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saberrider2008"]},"Identity":{"Case":"Some","Fields":["2HMwSPyOyRAkZq2PMJhiK/G/cf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BlWiFCqxVqEKLcoH58MNkGWTYr5UN0r9hPxwu+vsmXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:43"]},"IP":{"Case":"Some","Fields":["95.91.170.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0a:5e1::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallrelay"]},"Identity":{"Case":"Some","Fields":["2GlmkgQNjjWSIuYLZArf2Tdqe3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZFAyn1fYxVdBaX9H/v4RtzLrdTzl/+GOPLAhE6mDzto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:07"]},"IP":{"Case":"Some","Fields":["93.95.227.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ljubo87bg"]},"Identity":{"Case":"Some","Fields":["2FFjIxBRdLLO6emZsBga/z1jyTo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Brf/uAN+T3P9LL3HJiFixTwDFyv/AbP+qcVus+t9bI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["152.67.109.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["trout"]},"Identity":{"Case":"Some","Fields":["2DgwEhR2LAe3hGyCbSpeu/zQiSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ZWVSatIaAtgQ6jwKJMqpgJI+kbDg0Dho1mmSMfhhyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:55"]},"IP":{"Case":"Some","Fields":["139.180.203.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7002:2ff:5400:3ff:fef9:1677]:9876"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Precious2"]},"Identity":{"Case":"Some","Fields":["2DgOCN7fbJCgnsN40fbBiB73lHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyP5VtpI6EF4EQhBmFacpsL/gBJihr/vvXZvJmpb0VA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:50"]},"IP":{"Case":"Some","Fields":["95.215.45.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::394d:31f1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet1"]},"Identity":{"Case":"Some","Fields":["2C0Y6DWe360LN0iHACq98fKepDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Gsy15IG1oY1V0XxS/U6e3GgtXG11qGKq3AUlKAb8fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:52"]},"IP":{"Case":"Some","Fields":["185.100.87.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:16::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blue22"]},"Identity":{"Case":"Some","Fields":["2CsUdxg+B5Fay6ByUDdDA9k/C8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["01Q0ukORqvWKmyUMaKMnc2wU9rkm7uT5iN38n0Rvm+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:50"]},"IP":{"Case":"Some","Fields":["194.195.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv120"]},"Identity":{"Case":"Some","Fields":["2ClDQ0skIE+/G0uBjP6mTyBd6sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQwgA9ubP3TRt7JoIj2KVWQgp5CHK5yZvC1hJF95w70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["192.42.116.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5520]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["2A9kkibMlrvg/3tFs3kZAVaf5aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZxZqIXVOk6NKytJu2dlnC+OUUMTX/OEvzns+z8rf8U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:04"]},"IP":{"Case":"Some","Fields":["185.220.101.38"]},"OnionRouterPort":{"Case":"Some","Fields":[10138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::38]:10138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["2A8yLK9H2JMk5Cr1Ygm16GBxA/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JrTMxSHRH6Vy6r4pv2qjEufyscsqi4FGsBnXqGk3Jmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:29"]},"IP":{"Case":"Some","Fields":["69.237.207.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bonjour1"]},"Identity":{"Case":"Some","Fields":["2A6iFia/roBE5AN/52UlLhV+NYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wcv+4bLjGQspWzhWuBMHD3Tb90DghHvnnZIugOg/lNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:41"]},"IP":{"Case":"Some","Fields":["188.138.33.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie1"]},"Identity":{"Case":"Some","Fields":["2AVsrUo9bufYJ0gCdHS/XFPladk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zMXMSIA7W4q0NwO5rr9gsWad3OG0J4OZhmL2gTp8QQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:14"]},"IP":{"Case":"Some","Fields":["65.108.136.190"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeBeePi"]},"Identity":{"Case":"Some","Fields":["2AJrc8vnbhbklTxc4/jINJZpKB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H12qWUIsXOJLa4G7FdxIRVu9wkD1obL0imPmLCzmZ4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:03:04"]},"IP":{"Case":"Some","Fields":["87.123.38.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9602]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapBLR"]},"Identity":{"Case":"Some","Fields":["2AGviDT97RwzmNeP05T+bZE1IgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eXTJw5EZy3I6XJJg6grXL2E6GiDAbz7sIlhxZM8KIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:16"]},"IP":{"Case":"Some","Fields":["139.59.38.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::a18:d001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ygWegnHEQ"]},"Identity":{"Case":"Some","Fields":["1+uTtQpNHu28U1TDEkKGgPOqkCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TLyKoEAdC4gDGVdmeSQxfxJt6iad3Zfz1ENDtnoXouE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:13"]},"IP":{"Case":"Some","Fields":["185.147.11.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["19xLrIgWn51VEiHiLDR2E6NpL8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5pg2gTqqkfraCiSjmuWDWIy7AvBxbXEHImjbJZJpnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:51"]},"IP":{"Case":"Some","Fields":["84.170.128.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay2"]},"Identity":{"Case":"Some","Fields":["176oGfb76WmuYIEymR1KQq7kCjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sgz6EjoH7rO0Now6w6QXxNPywbILrS/0BjvNxkziFtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:58"]},"IP":{"Case":"Some","Fields":["163.172.145.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:e2d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Platypus"]},"Identity":{"Case":"Some","Fields":["17NVgCAjXB83TuyL3hRo4ZVBHjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJjLTWqUK/dOJKr9uU4h3Um4HTdujjjUoSxzhx8QUNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:02"]},"IP":{"Case":"Some","Fields":["217.76.159.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:fe::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goodvikings"]},"Identity":{"Case":"Some","Fields":["16gOlYkqr1H/JM98LOSTEZMbVfc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ujkpEqEbXO1Yf45G05YVzL0vPc702UpmTKr53WvNJds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:15"]},"IP":{"Case":"Some","Fields":["198.50.128.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["niceRelay"]},"Identity":{"Case":"Some","Fields":["14KaIXJiIK93QBvlsrEyljoL6Cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gIBWMOCPRwG8IFmt2xrbTvJhGAV9qIUF3SCmI7J6LtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:15"]},"IP":{"Case":"Some","Fields":["94.254.74.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Centro"]},"Identity":{"Case":"Some","Fields":["14DI3nYYdgYJFdfcObEfO32+N84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Glk0KXE4NwP/0vnDk7iVc/Ojy5ltEN2X988zMiD0hig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:09"]},"IP":{"Case":"Some","Fields":["83.223.97.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slashcrypto"]},"Identity":{"Case":"Some","Fields":["13fTH5UIHQ9yI6rV+KdJd9UkFF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zDyDVIUhC0l3JDvQBhsNBBl1fi0VsM8pQS+MVK2f6Do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:57"]},"IP":{"Case":"Some","Fields":["85.235.66.146"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[587]},"Address":{"Case":"Some","Fields":["[2a03:4000:32:401:4d5:beff:fe5d:c220]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["13c4zhUIeqgXe7VoBonbOhPp3tE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCn15UPYdPBL3AtBTgA9hU7tS767I3UvtAth2zK+sMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:32"]},"IP":{"Case":"Some","Fields":["23.128.248.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::39]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2propstor"]},"Identity":{"Case":"Some","Fields":["124f3Ho9iZKCu4gvdBEbNqbRS2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S7iaRtRMB8ZUGTKUNOzuwpKtaVinGL44pCHghDykM3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:38"]},"IP":{"Case":"Some","Fields":["50.73.63.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SunshineInTheDark"]},"Identity":{"Case":"Some","Fields":["12nVRAYbdW4Se/Y6G3spYMBNxGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0xVynrXMT78MRKyH6Zyhy8tgtnoWGtdD58L5K/PU0xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:43"]},"IP":{"Case":"Some","Fields":["220.233.178.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wiwipower"]},"Identity":{"Case":"Some","Fields":["12eXn+TJnTEKRuxJA36f5+P2Tp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGOKxrMZ4wFGdIQck7w4RABImU7wK3EzKFctuP2Z8bE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:39"]},"IP":{"Case":"Some","Fields":["141.20.103.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor03"]},"Identity":{"Case":"Some","Fields":["12EQ53D7X20Jy4AdY3nDOhpsDMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HEUeLKjqD9Ar1oK0zfC2Il86s1eVm+8WsCf0IL6SQEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:16"]},"IP":{"Case":"Some","Fields":["192.99.152.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::348e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DizzyDuster"]},"Identity":{"Case":"Some","Fields":["10379gQ7kXu8Q14Ul9p0TQHR6/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3AHH3lfnbxZSqz2/d0cxCeb3M5dNoo49s7vp8dJP124"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:19"]},"IP":{"Case":"Some","Fields":["5.181.80.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["claire"]},"Identity":{"Case":"Some","Fields":["10eifGMbHJC+djiLxa9fo4nTDc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvzBlyz+X+a1qXKbFPMyLAaq7dFZKXpNLK8W13ObbIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:08"]},"IP":{"Case":"Some","Fields":["185.163.204.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:c800:1:1a07::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ThreatLevelMidnight"]},"Identity":{"Case":"Some","Fields":["1zixYeDCF9oVxslMGD14q2WO/Io"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QroKcR/lCcqIfz1HgZD76vyBO816cld2v0ECbcbUJNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:10"]},"IP":{"Case":"Some","Fields":["185.10.16.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NuclearShack"]},"Identity":{"Case":"Some","Fields":["1zFr9/1jPddHSxjDPh1f3rBNJqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["plXxl0gDF0GtU7S9ip4Czmdx5eLgMFIBlyWr3+ItCzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:59"]},"IP":{"Case":"Some","Fields":["158.69.205.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::da8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum3"]},"Identity":{"Case":"Some","Fields":["1ynGiDgswqV2CJcWvhBJDS1m/OQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XARCv1WcSAqVV2U0f8dEayl2pQ2V3cMqL34qoSF/47s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:01"]},"IP":{"Case":"Some","Fields":["62.102.148.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratte"]},"Identity":{"Case":"Some","Fields":["1ylqvUnBS/UHJiJ7+uGspCOswik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0eGc1xEiYZAYTALfDgcBgfYRa2QVAbj3bHMjL8esLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:06"]},"IP":{"Case":"Some","Fields":["109.70.100.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::75]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1xscocncfoymQVjhBq13CiEWD+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fW5qpnGF2G6H9XrG6/4uRjlyfeZFEC1jlJ8i8GfeJBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:17"]},"IP":{"Case":"Some","Fields":["185.34.33.2"]},"OnionRouterPort":{"Case":"Some","Fields":[31415]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:99a0:0:1000::2]:31415"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berlinwonderland"]},"Identity":{"Case":"Some","Fields":["1xsYxC1xVJxgZv4axd8P7B8DaW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RnxsaijyFtkaaDAF3NWqZALX9dg66T7cB+OFBeFQhII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:15"]},"IP":{"Case":"Some","Fields":["65.21.50.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:89f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor1lhvmct"]},"Identity":{"Case":"Some","Fields":["1xlCSap31cohm8MX4tz1tJqFeD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmEP2oGrlHCUzD3DrlBAvt3Tt9z6VJxY2deBrtMGrvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:21"]},"IP":{"Case":"Some","Fields":["92.117.9.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaders2"]},"Identity":{"Case":"Some","Fields":["1wpeAewU0HgWTV5YdgiUn4X9dxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3DEJp+Qo5XjjtKqVuz8T67rPSRzpYsojHTR/rlgHqAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:21"]},"IP":{"Case":"Some","Fields":["45.58.152.43"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pushfd"]},"Identity":{"Case":"Some","Fields":["1wakUAuxqQqwdup8wN195SdKLLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QY0li5HQx9H8xQYzHNUgqS454zrNTPlyYJsmcfbOLXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:46"]},"IP":{"Case":"Some","Fields":["94.16.109.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:51:9c6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnivUtah1"]},"Identity":{"Case":"Some","Fields":["1wGsr4ZBPpJSnqjjIIjH/EXqb2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yw7c9srgUD6Izh5jDCuD9IQ/zS0li8vUequBI1E5G3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:45"]},"IP":{"Case":"Some","Fields":["155.98.5.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN28"]},"Identity":{"Case":"Some","Fields":["1v8ml86lwMfahHl8LnEWOBT8JGY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTeVr4Jdw1OBNGIK26qieHPXfPsR5fJqB9ScmUtIfBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:07"]},"IP":{"Case":"Some","Fields":["199.249.230.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e651]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torzpi88"]},"Identity":{"Case":"Some","Fields":["1v8M6EZW1RIuX/6YArA2caFp/2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B0FT8rQ305zWcrPWB+rU5H+5mNWqq8z+FlO19Ph9pp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:50"]},"IP":{"Case":"Some","Fields":["77.220.198.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=940"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DELIGHT"]},"Identity":{"Case":"Some","Fields":["1u3TMqwEsdHo/vs/MvTAUM2zqVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mL/1mgjZre5HgeBvy/n6qKPim8G4Kru4jEXzGd/X/Hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:19"]},"IP":{"Case":"Some","Fields":["79.141.165.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1uu89PZQJYYIkRPYw3sP9aYVKlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y05HRR9EggR1z1J9q6IxjTnwHAe7q5FEoT+uy9d7rbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:17"]},"IP":{"Case":"Some","Fields":["163.172.94.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Titan01"]},"Identity":{"Case":"Some","Fields":["1uZfIv4AY7Vm5cKz4Yu41ehwVm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["owNy4Cwx1U1qwPM09RbHrsUtd4Nc+kK9WUMXQ2CkifA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:17"]},"IP":{"Case":"Some","Fields":["65.108.89.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:71a9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA04"]},"Identity":{"Case":"Some","Fields":["1tlnMQLfFDXBpm9MmOaLVvGSFvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9cMowt9Q9VOK77MSLaFWSYPSDxl2m8y9Ir0WqGqQsGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:09"]},"IP":{"Case":"Some","Fields":["109.250.38.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnosognosiaRedux"]},"Identity":{"Case":"Some","Fields":["1ta2YUye8trROsDJRIetjtO2h38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNibpolZdqfzQLZudW210gEL48LKErbYHVRfVFQK1b0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:34"]},"IP":{"Case":"Some","Fields":["185.220.102.8"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::8]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mittelerde"]},"Identity":{"Case":"Some","Fields":["1tZ3AUpYPm94OgP1I6bF3C9jR9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l76PEbwUQungsWm/rB+IuUNN0RmwFZGQH79gPwOcFJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:12"]},"IP":{"Case":"Some","Fields":["37.120.186.122"]},"OnionRouterPort":{"Case":"Some","Fields":[4711]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:992:98d8:54ff:fe3d:fc2b]:4711"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fourwinds02"]},"Identity":{"Case":"Some","Fields":["1svg2F7Tih1uRd+nAzkKno9geSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pK9zE0AqzHDzfnmjEzmBZfKQya2bcJfkuzjEoCkXLKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:29"]},"IP":{"Case":"Some","Fields":["5.255.98.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1sIwESEOHwFI+p8Z/UaaFxNXx3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GNksGD3yaYHuQa1ck8rbebgimNnGwviyFk8sXuYpJro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:18"]},"IP":{"Case":"Some","Fields":["141.98.255.148"]},"OnionRouterPort":{"Case":"Some","Fields":[55785]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["1r9Dv6WYqff6UQIu7QBhrf12TaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iww9o033XCZ3XVSZP4F/HC04es+BroMH0cMnIFRcX9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:40"]},"IP":{"Case":"Some","Fields":["95.214.52.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsalc2"]},"Identity":{"Case":"Some","Fields":["1q2gSJgOtDFJkNfyu0C4SNYF+YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uhNrSWIL1yYfKmelqQavmQlrzWu/vDu6sSOWG2nBJVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:04"]},"IP":{"Case":"Some","Fields":["80.211.130.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d40:72:2bf1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pipit"]},"Identity":{"Case":"Some","Fields":["1qnjIHF7wcjDaSkvxecpKz6ZTtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EXsdDoiyV2Haz2+122cBCm/7QYXasEydMmuRpRTuKLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:34"]},"IP":{"Case":"Some","Fields":["199.254.238.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1okS61pnOuwXlY0enKPwu7CU0fM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PjBapr9GxmxuUHN1F5wcNpHaeukrNA8pF9Xssq3CXqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:42"]},"IP":{"Case":"Some","Fields":["185.194.141.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XeSh"]},"Identity":{"Case":"Some","Fields":["1oXbFwzI/Ss2MOjhzt2IPx+LsOM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xd49GGDIIL3PjifbpeeHDDTUcrFtUKuAK/RinmShEds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:38"]},"IP":{"Case":"Some","Fields":["176.111.31.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drogo"]},"Identity":{"Case":"Some","Fields":["1mcPtUshgYznwTUkqgAyWLjjXTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tCuI6VpqVNncbq3SMX3kGO414R/ea+adfrNq53iTDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:55"]},"IP":{"Case":"Some","Fields":["94.100.6.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanwatech"]},"Identity":{"Case":"Some","Fields":["1lLVDx7TfAhKTxWGbg1XY393EU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zIzgFDqVwyMndQWBVVk8fY1qHD1BwhDlqsDVHcQjtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:10"]},"IP":{"Case":"Some","Fields":["203.28.246.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:cdc0:ffff:9ab8:4dd0:41ee:b98f:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glowie2"]},"Identity":{"Case":"Some","Fields":["1k9Uu+KYPumrwzmh5Ew8mmHQYpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z9WwEATj9F7090cYiLY2wXJxwDEB3S7yMkux7049G6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:51"]},"IP":{"Case":"Some","Fields":["139.59.39.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::1e0:4001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as204750relay01"]},"Identity":{"Case":"Some","Fields":["1i1KzWa5+5GsLqp88p5lSorsHDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mIGCDaodWvJZCUD2yCdYCmUcNlDxP8mnDWfr5J1QJg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:39"]},"IP":{"Case":"Some","Fields":["5.199.138.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3dc::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itsfavesun"]},"Identity":{"Case":"Some","Fields":["1ibQBpcqGP56hV3PV9C/wOkGTn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxHZg2tu/ghEvqNwcYI52YAbzL88bdBZ/u+0S9XTfg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:18"]},"IP":{"Case":"Some","Fields":["43.128.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tuurtornode"]},"Identity":{"Case":"Some","Fields":["1h/pC1ypdjHoraf7ZBzE95SJn0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["co16r398uZyVnFjqTIHtExUnC8IZOKFu2KdN/Nfx5JE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:04"]},"IP":{"Case":"Some","Fields":["45.80.170.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1hrpTrlNUSele5Fh6sZXEb8XIZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oJJ/IVpyf/r+V2kIUaZWv7HMM14b8VKIWkKxOhl874Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:22"]},"IP":{"Case":"Some","Fields":["172.104.226.248"]},"OnionRouterPort":{"Case":"Some","Fields":[41938]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1135"]},"Identity":{"Case":"Some","Fields":["1gTHv5ARkeWdeR74dY0Z7o6MmnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SA5tjncwUs3FKDnH5Z8AGeseq7TyojZmmW52fIVazMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:51"]},"IP":{"Case":"Some","Fields":["185.220.101.135"]},"OnionRouterPort":{"Case":"Some","Fields":[11135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::135]:11135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay41at5443"]},"Identity":{"Case":"Some","Fields":["1gFd73BzpVDbTnl8dqcfNdKEaKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4mR/MZt26DfPzK1XawhfG+0zAfIjtvvi8shoXFaWZfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:46"]},"IP":{"Case":"Some","Fields":["140.78.100.41"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["1fuA5qmC8g0xMYY9d13rKyQa9VY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZy+boKB0qeHD2k65sSI284P5thjY/acvm+QdHNTL0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:30"]},"IP":{"Case":"Some","Fields":["23.128.248.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor5"]},"Identity":{"Case":"Some","Fields":["1fc6fUoNe5DlFdmcokYqLrJKdlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mTK7JulKcJW1YvqH55hJyYWI2WVOCBKhmLQWnVtpAvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:09"]},"IP":{"Case":"Some","Fields":["193.56.240.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["1fCUl1SKOQcdFKyemqkmoPinSPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSFGtedspoT4pHn1yazUg2Mqno4cbaqyRLB7o/X0PG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:57"]},"IP":{"Case":"Some","Fields":["92.38.184.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:15::62]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strait"]},"Identity":{"Case":"Some","Fields":["1eyBinmycdrkXX11gQz6Ud5JCPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+EJ+9BFl05hhi7x1KR9/HB8aaMTBGtW4AwoLUrDS4Aw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:53"]},"IP":{"Case":"Some","Fields":["51.81.245.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Osiris"]},"Identity":{"Case":"Some","Fields":["1ek1allY5IkaEk+3SYKbMOt/jSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlY19P1gREx0Zym2kFH3JNOhNp83Kh+POpz4hTn+Ua0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:05"]},"IP":{"Case":"Some","Fields":["198.244.238.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:bec::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["piSORGaming"]},"Identity":{"Case":"Some","Fields":["1d/HK7c1a/TrrWKmuZkQBDFquXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddI/j81qAbc87pBdPN1zhXcA8R9tx23G7VwPF8jyFyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:29"]},"IP":{"Case":"Some","Fields":["178.201.248.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH102"]},"Identity":{"Case":"Some","Fields":["1d4lfjDlzkShh9MIKYyPzcGwE7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5BfGOCzJjyS3YpqfhMr2d12mP23PHDbFGa+c1VnMKug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:38"]},"IP":{"Case":"Some","Fields":["192.42.116.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CheenaTorRelay3"]},"Identity":{"Case":"Some","Fields":["1djDHh+EW0ZWSxEiM+7PtTkGCRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ev+8kAknVb8R7gkhEtesAR7QFcCHumG0LVVApbNJlAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:46"]},"IP":{"Case":"Some","Fields":["5.135.158.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d8a2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaycrunchrelay1"]},"Identity":{"Case":"Some","Fields":["1cuhZ3e01XFWBJmzGQHwA8hZK7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzCmfSkI+c6iqkiYAxosyQjNRELXpXewRrF9/5RkdEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:45"]},"IP":{"Case":"Some","Fields":["178.175.148.132"]},"OnionRouterPort":{"Case":"Some","Fields":[6999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:172::2]:6999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber07"]},"Identity":{"Case":"Some","Fields":["1cTYiNgPDVvpimcrXhC3jqXV1fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Be4G8JCi3OsDzqzFjnwimfBjzBQQtwRrIjfVDHWQ9+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:29"]},"IP":{"Case":"Some","Fields":["185.220.101.4"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZiqiaRly"]},"Identity":{"Case":"Some","Fields":["1aLHSUv8544YJj9UT8Dx14D0y/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pic4MsDVkpwABdQ8HX+QewmyK8SCKBaEzyzP78L2zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:35"]},"IP":{"Case":"Some","Fields":["67.82.173.160"]},"OnionRouterPort":{"Case":"Some","Fields":[4785]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["komeru2"]},"Identity":{"Case":"Some","Fields":["1aKzrh6ARwF6C7xyCf1iTbhNR84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sArmluk427E2+aaBgoz+5ujoFPpT6yINZWbp14FrUI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:52"]},"IP":{"Case":"Some","Fields":["104.244.76.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f99f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Enflurane"]},"Identity":{"Case":"Some","Fields":["1ZjihlFkr22ZWPyaN9glwoOoDDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ilft6fczCTwmF8QPR5+d23ADPuCSSCWDVubBg+QXYmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:09"]},"IP":{"Case":"Some","Fields":["2.83.38.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoolRelay"]},"Identity":{"Case":"Some","Fields":["1ZS8QkRjbMNClztZS3B2hdyqDIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gvwXrAXHpenQpseJLCwEa1CV9t5WUks2/POALkeEpmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:59"]},"IP":{"Case":"Some","Fields":["147.182.140.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::20ad:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["krustykrab"]},"Identity":{"Case":"Some","Fields":["1Yq8hWRPAhY4AQMQw8SzURqKQUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZRrsei1E49+jLuZ8JQ+g5HChBk6XEVmfPU46AtjvBwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:54"]},"IP":{"Case":"Some","Fields":["162.251.116.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mamadu"]},"Identity":{"Case":"Some","Fields":["1XgFOewFjTWFDw5kWUuJUVdF4lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZELNZwoyY4WUT7v8keapnjazudn6dHD05pWjTRIFPlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:45"]},"IP":{"Case":"Some","Fields":["85.195.238.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:a003:0:216:3eff:fec7:70b3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sTORch"]},"Identity":{"Case":"Some","Fields":["1WqY04/Dx14DR+7z3ZwSdJr3x8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vuw0xXRKhJuZWb1n1Bv7+lfZa9nl4PZFEOPI/DAHxsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:01"]},"IP":{"Case":"Some","Fields":["217.182.196.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jmlsteele"]},"Identity":{"Case":"Some","Fields":["1WImSNcCwEsWloFRLU7EUSe/ujM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1PI6jjhnmov0IROSS1Vs0EBiqXoogXXa2r/c8xXcRVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["162.243.168.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["peppertor1"]},"Identity":{"Case":"Some","Fields":["1VJ+SGjur/iZG9BPa/joe1CKN8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4FIcxzDXGAEoUN9cqRMNgvH5JLwOEBGXJTmoQHK0Hc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:34"]},"IP":{"Case":"Some","Fields":["89.58.41.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:f7a:38fb:a3ff:fe58:61aa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1U25OhDORbMnzmz+ZxelWcy+9lA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEZCSqY6bNgHnOT41vDw1YrrPRjNhOcQV979asqf27w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:55"]},"IP":{"Case":"Some","Fields":["185.207.104.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProtokollaRelay"]},"Identity":{"Case":"Some","Fields":["1S6KL3O6N/L4j1QQHFZvIRCS4XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gmwdQdV+sThtE0g2+MZ3xTxcN140NhAw662/0Vg340Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:57:49"]},"IP":{"Case":"Some","Fields":["84.248.204.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waldmeister1"]},"Identity":{"Case":"Some","Fields":["1SoWAwPGONn7A0Y/imt5NNV4f0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r8TMUM9oi2p3HPZHdddDKCIMO3GPz3yP1bAFmcU213A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:41"]},"IP":{"Case":"Some","Fields":["145.239.7.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomRelay9998"]},"Identity":{"Case":"Some","Fields":["1SZ2Jn4FCjiRdp6XdzoeHoftPxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V1L8dFxGbXnQnA3LT1Xme5WUTPQ1/c+Ed0+78VDnWI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:19"]},"IP":{"Case":"Some","Fields":["95.217.183.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:8840::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmokeAspectRangers"]},"Identity":{"Case":"Some","Fields":["1SKPpaqf2zgl5vGZr6n55vlSahc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMsCSUe2MSBz/pOtO8pud9SmTKc+Gk1GqSyCNUmM7ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:01"]},"IP":{"Case":"Some","Fields":["82.221.128.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TochierRedux"]},"Identity":{"Case":"Some","Fields":["1R2doVhLqui8SgoQ4fsgYYqJVww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mQ3rNAWrzA1yPFwCBnc2NV7a5T1TADBIeqhHE1mYPss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:04"]},"IP":{"Case":"Some","Fields":["198.98.52.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["1RvU5ZMIsCxr5BUQOPQX1BnWLm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LWbxfer7uyTqCSSRN0gqVdM8TXY3tXMzhAxUEO9ZOU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:23"]},"IP":{"Case":"Some","Fields":["79.226.66.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:de:2744:b701:bde3:de9c:63e7:6ef3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer23"]},"Identity":{"Case":"Some","Fields":["1Rri+x1pmy2fsR8rBI5+A1yYS0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7eHq/E8WaqbOUqIueXJkVI/42+EXK/q2+kaGEJOPBes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:32"]},"IP":{"Case":"Some","Fields":["185.16.38.110"]},"OnionRouterPort":{"Case":"Some","Fields":[2120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["indoprivacy"]},"Identity":{"Case":"Some","Fields":["1RAVVNCU+sn4DwJv7ogWaobVBuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B1ltOmEznOggBLSQNet9Wtd9ctgtJkxIFJtKBSWD6HA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:56"]},"IP":{"Case":"Some","Fields":["103.167.34.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["insula"]},"Identity":{"Case":"Some","Fields":["1Q33aYLw0r/bKKdTB5zdY6GSwy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dj+Ki3DARwlq6MbFpOlty7fuRZAubUPK1e/0thzvkQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:05"]},"IP":{"Case":"Some","Fields":["178.79.134.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:92ff:fe96:d244]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NICKNAME"]},"Identity":{"Case":"Some","Fields":["1QX7lcM/jf3ZHgu7ch6+0il2LsQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ruaKMI75lhmcvTe1mH850hCRVMnlDOsT4QeKFSNQCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:04"]},"IP":{"Case":"Some","Fields":["144.91.98.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:5297::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ELPrelay"]},"Identity":{"Case":"Some","Fields":["1QHpXVIZcLR/3dFE8nTnlYl2pzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D6wUyGOcLq3PeFwtnOypvHoE2etqybVnPXo3nbsGw1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:53"]},"IP":{"Case":"Some","Fields":["78.43.27.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8070:c187:3d00:2e5a:4e48:fbbf:95fd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex80"]},"Identity":{"Case":"Some","Fields":["1OWFzg43qLNPDVNMo5a5cjixK/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSetKGwCssh3YbdRLt3HBv4m+HqNtHpJZ/ZWpI1leD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:45"]},"IP":{"Case":"Some","Fields":["199.249.230.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::169]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andrea"]},"Identity":{"Case":"Some","Fields":["1OUNJKNSE27RNJD5k2efpyU+TNo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6LHGIZdxkCJc5Ns2FTL4QM8yhpAFfWU6b7lv+dmBuFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:51"]},"IP":{"Case":"Some","Fields":["23.137.249.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:7666::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1176"]},"Identity":{"Case":"Some","Fields":["1N1B/jaIfhnJC1l/innGg90Do+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4e46QEdi6Ft/J6fLVUhcVPTaB9DWp7VatfYDrtkDv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:36"]},"IP":{"Case":"Some","Fields":["185.220.101.176"]},"OnionRouterPort":{"Case":"Some","Fields":[11176]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::176]:11176"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay34L"]},"Identity":{"Case":"Some","Fields":["1NxwslQJuOSw/UgrinDKaj9KEjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0OLkDJvW+0DdVqPgiS/KZ83caXmXp2/j10qorBmGufQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:33"]},"IP":{"Case":"Some","Fields":["5.253.176.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1NEHaAsIl9/+5QDmJamKqoBgx/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYlXZv/fN6vFfcK/o/CZpvhSz2uo8ythk917ck9szJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:54"]},"IP":{"Case":"Some","Fields":["168.235.67.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2604:180:2:1bc::b6a3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0155"]},"Identity":{"Case":"Some","Fields":["1M+yPWiAE1uL8gyCDlnDQCkVNDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["89peQ5tJ/TzAvl4aGLRyxMbVg/046hpooAO7thsWd2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["185.220.101.155"]},"OnionRouterPort":{"Case":"Some","Fields":[10015]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::155]:10155"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev8b"]},"Identity":{"Case":"Some","Fields":["1Mp/0E2r9uLLZ5Qm9aoyBbZA0Uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["77K5iOaPbRZNsxbXwnmGZ2VM4PSL0t+JU62rkYKqF9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:27"]},"IP":{"Case":"Some","Fields":["46.232.251.191"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:66e:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1MFnMudl61LrC3Sds13BTI4N+ZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pk4lCNZkhaG8xYGSfk/MzBPwH7h2/PEDpZLzSso88S8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:15:07"]},"IP":{"Case":"Some","Fields":["144.76.168.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:4423::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Layer13"]},"Identity":{"Case":"Some","Fields":["1Ju3UUx49oMD2HmvfD1dZxSPWZs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1LKoOmuxR4qWNMSxvUfbqWrnz2LHwlEJz8ikHoYeSwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:05"]},"IP":{"Case":"Some","Fields":["51.15.232.19"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:600:2340::1]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dnb4ever"]},"Identity":{"Case":"Some","Fields":["1JpUhi0fwA5c5UyzK/MXdGbAWHk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W2iF3c5tC68ZYtRCwme0tFyDoNx5303ger4/G4iQ36s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:39"]},"IP":{"Case":"Some","Fields":["87.122.119.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cepa1"]},"Identity":{"Case":"Some","Fields":["1Jkb8Uv31LtoTlarAqRKbKY5FgY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yF6XPB6Z35zoJvtkuAdUOxB2tn6dnMYCnSPVJtaqxME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:58"]},"IP":{"Case":"Some","Fields":["185.100.87.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:3c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1IOC3t9bzBu76g5b3XIiqkglJVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sVxwOGpbpX4AZ1t8bmkTe3QTuGrLoe04WkX0jiL5XJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:51"]},"IP":{"Case":"Some","Fields":["5.45.98.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:20:3467:a5ff:fe26:453e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eigentor"]},"Identity":{"Case":"Some","Fields":["1EfYGA1ftn0OOtCKwKEj75Q9hNQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["soiIOvjj2jg5g/ajv//2OuzUkHB3K666SC6DLkjjaW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:17"]},"IP":{"Case":"Some","Fields":["188.68.56.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f776:5862:30ff:fecf:d2c]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Osterei"]},"Identity":{"Case":"Some","Fields":["1Dn8O18KgXlvRiIyAZepADLK5Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywTfRrBAut8g+rZtWSg3UEbHsP5Z4c4DHWw5b/MdWS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:00"]},"IP":{"Case":"Some","Fields":["94.16.143.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FarmanDK"]},"Identity":{"Case":"Some","Fields":["1C0mUF82/nnM/c2y7tYgyqnUTEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xrxA6wOw0tNrx0uwzCMz3+Z268l7AnEiv/aJd1BJ7JM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:00"]},"IP":{"Case":"Some","Fields":["91.210.58.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:626::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["harsha"]},"Identity":{"Case":"Some","Fields":["1CNs8mBSKtvcs9uVX4+WXDKBizU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2qZH4NpcmGpEnW8rmx2t4PcZolBj4FQ9EuUUJV2xCH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:00"]},"IP":{"Case":"Some","Fields":["5.255.102.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:2667::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1B8JJDa1yKoQvXGEr2TC+Yt7Avg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eaV3Fv1amgsjxSSWWgo1JODWuL/6sGzSv6DNvfXkVZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:06"]},"IP":{"Case":"Some","Fields":["109.250.22.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreadfair"]},"Identity":{"Case":"Some","Fields":["1B0XISOWVrvH1EFzUhbAHaI3l3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tReGH7vF5HmpeRH58VlKiFzJwsvSrVTIGozD46OXFTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:27"]},"IP":{"Case":"Some","Fields":["46.166.161.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["1Bnan3dvmyR7E9bCzEv2Y6+spIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/VrfL0d7/6YME0aIKkuave8H03/MCmnmby9gQFj63k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:26"]},"IP":{"Case":"Some","Fields":["46.252.112.87"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[29030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI20"]},"Identity":{"Case":"Some","Fields":["1Bb3yNg8rZE/PgkyABQXDVT+aqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MHoONGUvW6rhOM/baOeV0hxVPsObWGlRIMffnRR4jAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:07"]},"IP":{"Case":"Some","Fields":["171.25.193.79"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::80]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["1BBTdpo4v63m0G9LurmIxrNN/Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enY98zaSKE2XWFxoP63byqtrdJhxiG3iQVZkn8uoC2E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:53"]},"IP":{"Case":"Some","Fields":["185.206.225.59"]},"OnionRouterPort":{"Case":"Some","Fields":[15804]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gGDHjdcC6zAlM8k08lY"]},"Identity":{"Case":"Some","Fields":["1AX8zwat7fiY3y8pyTSNy2IwMbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gqzul03bJnrnUQnQcLK34cnJ1cpFje4Pm26umn6RA8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:29"]},"IP":{"Case":"Some","Fields":["5.45.111.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:2388:df98:15f9:b34d:443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["0/ZhYDREje7jaXgslvhP4UB+QgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CHZeFJcVR0flR3IpkGof7561hpHkW6caRh9A0aUyIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:21"]},"IP":{"Case":"Some","Fields":["107.189.29.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f24b::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transtbb"]},"Identity":{"Case":"Some","Fields":["0+n4Z93yjeGR6mEf02A1PIOE+Ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I3372+94ngBvs5lR79yPCKhBnYfp1c3GzrfnaJkK3U0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:02"]},"IP":{"Case":"Some","Fields":["84.155.144.3"]},"OnionRouterPort":{"Case":"Some","Fields":[14074]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["09eqH62r0fxE6hr2FqLszkEnUcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J4m1DNoVqVsb8TdjLmOgZFA33CzRYiJGwY9Dewm4r4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:39"]},"IP":{"Case":"Some","Fields":["173.255.140.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pissnissemoldova"]},"Identity":{"Case":"Some","Fields":["09LkLY5iXTZIkBWrHoCBzlIN8v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Um8LqbpYAqCSULsuKjIgLPED9ckQ7sBM+9tzncOE9u4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:56:08"]},"IP":{"Case":"Some","Fields":["91.208.162.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5100::139]:8081"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["str3DEicebeer63"]},"Identity":{"Case":"Some","Fields":["08pLEbTKHaDv/8milDQi0NeGayk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["63FFEq6a13og8Ba5mQSoE2aXtOCauYKPVtXumyDcYd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:48"]},"IP":{"Case":"Some","Fields":["85.214.199.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8063]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:436f:5800:c550:adf7:932:c52]:8063"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelaySecurity"]},"Identity":{"Case":"Some","Fields":["065B0y3jiR45OBMz7TcVyrlKLA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLYQkwSK/e1pjjvw3awgihB8MPtARTPxdzgwkmvxN+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:37"]},"IP":{"Case":"Some","Fields":["192.53.167.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe98:5600]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRelay"]},"Identity":{"Case":"Some","Fields":["06jtNFxhupalOC8mp5HKls+WjKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zv4zXkZ6GTtV5hTCcyLrJvuR8hPGjootuc5J3r+Wu1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:20"]},"IP":{"Case":"Some","Fields":["92.255.85.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex92"]},"Identity":{"Case":"Some","Fields":["06G33vNwy8YFXz/FQKUYyFdtdXA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2tsIwn47y/vt7kgHOmBmskVonGUzohj5/T2SJNnb1xE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:59"]},"IP":{"Case":"Some","Fields":["199.249.230.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::181]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3zpzl3mnsqzy"]},"Identity":{"Case":"Some","Fields":["059m3kkQ064cNBXkUBIZ07meGE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YaXXNIwmJGn/WQUMid6gOrKrn3jPns2aIGZWe0hdLvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:20"]},"IP":{"Case":"Some","Fields":["45.56.90.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FuckGoogle"]},"Identity":{"Case":"Some","Fields":["058s2Qojb5SmG3Zha0hzMp2neIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OSvhBmP1Q+AB+zgCRCRW2ympvOnMn57Pco/ENTJj5Qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:08"]},"IP":{"Case":"Some","Fields":["87.118.112.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:214:3235:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["044i+kPKD2ESCyFHi7Do94sOPug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X291I2ido8rGYkJ0lDanKtDkBkFA+rsP4jlTJdSn/DY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:59"]},"IP":{"Case":"Some","Fields":["23.128.248.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::98be:c7ff:fe83:9a08]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mule"]},"Identity":{"Case":"Some","Fields":["043f1ueaDiT7HPMyrhR7Wn3JqhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TS6F8jqrJ+TPy3XycW1qTWT5iRkxRhO7noNgUejjiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:56"]},"IP":{"Case":"Some","Fields":["103.253.41.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beachyone"]},"Identity":{"Case":"Some","Fields":["04UKulL8HEdWHo73KmBI5fEjSHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c0L63hZ/IL7KgvzoJbAxWbBbqMrf7YERtJhSuGAD7VI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:33"]},"IP":{"Case":"Some","Fields":["146.185.253.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["03+X3/pVthxmFUhRoq4kbjKxsZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggbeA9H1doGSL3VQI3orLpQ/ik25kWtZLdqAddgDsB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:00"]},"IP":{"Case":"Some","Fields":["91.223.3.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit4"]},"Identity":{"Case":"Some","Fields":["0315qTGW3jPiOLA3ltA/5qWHrmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZjDiHwv0e5PQSyTXsxrl6zSw7EFIZ8pXIdK5lCazQ5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:06"]},"IP":{"Case":"Some","Fields":["185.194.217.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2094:3600::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgarath4TOR1"]},"Identity":{"Case":"Some","Fields":["03FTCfiYJ/StLdHrcWZ12gLdd4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5tWYKz4TZNDvOD2Pe0mdJEPxl7AwqeWbekY14zFkceo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:46"]},"IP":{"Case":"Some","Fields":["213.65.114.38"]},"OnionRouterPort":{"Case":"Some","Fields":[65187]},"DirectoryPort":{"Case":"Some","Fields":[44444]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["08eRPfaL2Relay2"]},"Identity":{"Case":"Some","Fields":["027/skSBaU44R4f6q4D1aqpczZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wgaN35jxCMe+mRko3xG8qPO6jUK7C5Heq7DKtUR5rCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:08"]},"IP":{"Case":"Some","Fields":["185.170.112.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ae5:8441:4dff:fe92:25ca]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n0x0r"]},"Identity":{"Case":"Some","Fields":["02pypz+B7eUegffLrRxEC340vdU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKsPGXZ7dCx4wGQoSWKh40BNznjLcl94WB+NKzTQj9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:10"]},"IP":{"Case":"Some","Fields":["107.189.10.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f5c6::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["makarov"]},"Identity":{"Case":"Some","Fields":["01ktOubNbFAEXVQp1O/wq4o5GjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2vA0B0Ym/A/zEjMfJ2lZYspA97hx0h5i2Vum5+AcoQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:17"]},"IP":{"Case":"Some","Fields":["82.65.45.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveKhafre"]},"Identity":{"Case":"Some","Fields":["01aCq24p2RqgMOA6m+tCcA2Woe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r6/1ROwHwdUc2JxiRmk3Ja33LQvEmRzQ9uM4/rp40Vs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:16"]},"IP":{"Case":"Some","Fields":["65.49.20.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boots"]},"Identity":{"Case":"Some","Fields":["01BDmsDCSxmqwACnOXY7q5qJu/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1juqB5T1o+y9RnfardaN3Rm5lbJnFVGjpIzLLMPB/D8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:47"]},"IP":{"Case":"Some","Fields":["152.67.84.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:3:16fe:d191:b6c:c1ce:4baa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLicebeer10b"]},"Identity":{"Case":"Some","Fields":["00vicbhGMNXgjQQHQZzevSyTERg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["knLvfpFwoaWGBGIWo7JOqS6juQlNIddSwJYCADTv8Jw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:42"]},"IP":{"Case":"Some","Fields":["95.214.54.94"]},"OnionRouterPort":{"Case":"Some","Fields":[8138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN2"]},"Identity":{"Case":"Some","Fields":["0zKS/t4k3UDyOFKD5VyH+FwJQ7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vVRdtdR1xz7lMR7ZO/Lc8WXGG28DrrECLsSBWcA1X1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:27"]},"IP":{"Case":"Some","Fields":["199.249.230.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::121]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["satedaprime"]},"Identity":{"Case":"Some","Fields":["0xr+CYlvNKTnh8hvqXEyZRbfb1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["prc5Goo0+c7eeGSdAz7uM7MQXBi+9ULv58SEr9/pwlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:56"]},"IP":{"Case":"Some","Fields":["121.122.107.7"]},"OnionRouterPort":{"Case":"Some","Fields":[25783]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORus"]},"Identity":{"Case":"Some","Fields":["0xpZqkVBYpWFkOK7wmiACJdDvTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JG6ZFK/A6QeFTgMisb+mwt1UIhm4CsbBC7Ddsx/598I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:12"]},"IP":{"Case":"Some","Fields":["204.13.154.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["0xASQS2dc8aYAxicRXBwJbyOMV4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTutziuUPdVPruStTgBD1h2UIlfI3eHC9xl449SZgks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:05:21"]},"IP":{"Case":"Some","Fields":["74.208.37.237"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:31::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mine"]},"Identity":{"Case":"Some","Fields":["0w6dTWOQaGEdbZaGHJXCCZFAuAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O0IG+NKUze6aXptnzv4BMa/sqItCjdQ//G9liUdY6Tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:42"]},"IP":{"Case":"Some","Fields":["46.38.237.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:e5::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cairnes"]},"Identity":{"Case":"Some","Fields":["0vTaxZGLsIKlz6xSdbKfrJs5mys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rlu3f83rct/Cy2FHkUYW3bM98liVENnt97F3HTffveg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:41"]},"IP":{"Case":"Some","Fields":["95.211.210.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber18"]},"Identity":{"Case":"Some","Fields":["0vFedJVFl+QeFVRJoM6bTbiS3/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKbfLLssrkEqsoj2nAsSsKfm2u64XLEPlQ2BMh2lTbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:51"]},"IP":{"Case":"Some","Fields":["185.220.101.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::9]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0d210s"]},"Identity":{"Case":"Some","Fields":["0rhF1Q7VtJqLi0JatTDDjZUuXDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Bg8tD+yHWiY9gG2R7K0SBlLUaNiIv3aVaHFWKB3Br0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:05"]},"IP":{"Case":"Some","Fields":["13.48.138.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:d016:15:6600:2d1d:4e4:d058:deb1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Germany"]},"Identity":{"Case":"Some","Fields":["0rahbUTei1+xc5UHtaS6+KCgLiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxucMoUtC5nR5Dtwv5hrzhKxSEWxdzN2KaSbteGdcE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:52"]},"IP":{"Case":"Some","Fields":["78.46.39.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["0q3Wi6n3NQMYk8uKWFSDdegxtFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XH9NJI6d/ESaarOcoYzjUYzZcmT1hBMIz7Y6qMb5ah0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:05"]},"IP":{"Case":"Some","Fields":["91.194.84.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:1ce::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwell2"]},"Identity":{"Case":"Some","Fields":["0qS+5nVKlxHrD6xH8wWb5vwNcsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nVbxRi8Pu2fhACAFFWmWpyAD8/bLUs8DI2I2rlqfQ44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:24"]},"IP":{"Case":"Some","Fields":["93.95.230.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange020ca2"]},"Identity":{"Case":"Some","Fields":["0psx/bXt0tG5TNMcLxO1z0EbEmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3JG+hdwvwNvJB6+gwtgOn0lLf7OUdVrUFNVrUUGvdX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:17"]},"IP":{"Case":"Some","Fields":["162.250.191.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaders1"]},"Identity":{"Case":"Some","Fields":["0pOUbNNmRrzmQx7I38JXfrckRNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u5AjgRdjDJseh27KtCezvCRo47l0PKJO4Z9/ASmXIvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:50"]},"IP":{"Case":"Some","Fields":["45.58.152.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynR02"]},"Identity":{"Case":"Some","Fields":["0oHMtL71I5Hc1+kOc7MuMkBDqUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HyZPI+McT6PsxkiSsJ7+bh/uK8k0StLRssaWMnhO1QQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:31"]},"IP":{"Case":"Some","Fields":["89.58.27.85"]},"OnionRouterPort":{"Case":"Some","Fields":[44202]},"DirectoryPort":{"Case":"Some","Fields":[4037]},"Address":{"Case":"Some","Fields":["[2a03:4000:62:ec7:d42a:41ff:feac:7169]:44202"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MollyLee"]},"Identity":{"Case":"Some","Fields":["0n4AYYMQMs39goT+7np1sIQ3ro4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+Rv+BHSXUME3Q2HFx8xfehBWN8ocTwotbkNxnwJ8M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:16"]},"IP":{"Case":"Some","Fields":["43.251.159.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roubaix"]},"Identity":{"Case":"Some","Fields":["0n126CfpKZesa8s+h/9uYewHCZQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0/XlKdeCLgFj3+v8arQLTec0SgGrjMwnq78TqbBomD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:53"]},"IP":{"Case":"Some","Fields":["5.196.73.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:7b8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zlasvegas"]},"Identity":{"Case":"Some","Fields":["0n1IQcE7h6FA8JJG1TIemcaCS7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DM4gFNkS4VhrYr2borUgE9iRkc54exbinDLVbZYkAxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:27"]},"IP":{"Case":"Some","Fields":["209.141.41.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ymybe"]},"Identity":{"Case":"Some","Fields":["0l1BnBZ/PMjU0FzSp+KUW7KHk0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ZM12WrAYnEbERXscIZBDfO2HeOmJXAcTwUimY8o8xk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:49"]},"IP":{"Case":"Some","Fields":["94.139.8.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2454:4c1:4e00:3062:c7ff:feff:6e79]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anaxandridas"]},"Identity":{"Case":"Some","Fields":["0lYQv+MLDNfCJm6t1+9YYS8KHqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3O4CetNUFem9AAFQPqWJgv9n4yUzAw7CeUiV1MFe33w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:45:44"]},"IP":{"Case":"Some","Fields":["185.138.41.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow004"]},"Identity":{"Case":"Some","Fields":["0lUmi6y7RWJVTPIBR3Mb2g2MRSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["roB9L73Bv8riU+Wo/xZeFTQwiKEoMn3OolMDbOUCA50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:56"]},"IP":{"Case":"Some","Fields":["185.195.71.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexPhoulRules"]},"Identity":{"Case":"Some","Fields":["0lIQzgfEnypPK8elBusPXqf14sI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jpKNuZBSgQBlsVQBD+PcJigIabr8KaAueP/K0KPMHw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:30"]},"IP":{"Case":"Some","Fields":["199.249.230.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::112]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kukuruz"]},"Identity":{"Case":"Some","Fields":["0k0MKKtIdoz4t53XYtYdtP0BVnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDA3G7Z0qwE9jhZ+ftjIDUenvLsEj7B8rXK1qZ1FtSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:59"]},"IP":{"Case":"Some","Fields":["109.70.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IndigoMagick"]},"Identity":{"Case":"Some","Fields":["0jgHRZN6mU/h4ZhZy+vxgdu4BEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AWyDnaL/sjGQXL4H8byAiep5oWe7etdHEZ0kQTQXRXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:35"]},"IP":{"Case":"Some","Fields":["185.25.51.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::fb6f:72f2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gianni"]},"Identity":{"Case":"Some","Fields":["0i+T4mdfF7/20jL0ebWeeI/q+QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtuigNHOCpNipnZ0ilSPbe0yt/99KZj/WuOxuSA1X6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:47"]},"IP":{"Case":"Some","Fields":["23.88.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:49c0::1]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynethex"]},"Identity":{"Case":"Some","Fields":["0iOlwR3FWs/qZZpX8EafJjSIwzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbgBGnZgYLf8Hu4zVR6SyC182+Agx/rsf8mPgt4MzvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:35"]},"IP":{"Case":"Some","Fields":["45.156.25.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1132"]},"Identity":{"Case":"Some","Fields":["0htjggmasOLXRzD5Csu0lQSPpKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0vKxw+eKcC1td3vGA199kT0XyQfkgEB00aX00VZc2/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:24"]},"IP":{"Case":"Some","Fields":["185.220.101.132"]},"OnionRouterPort":{"Case":"Some","Fields":[11132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::132]:11132"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["0hhWHaWfCTq5SiJiDgY+zoc4FXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/uqAsF8nRX/26azEJ5+4gV9unuxKnGZPT+A3fNX3Rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:51"]},"IP":{"Case":"Some","Fields":["185.220.101.192"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::192]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashBear"]},"Identity":{"Case":"Some","Fields":["0haeZBssEMrOombTE3BHkgC7mtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eX46O1owFZ+G9/ybBpSB+uzZs2hzYvMErvHm+/8vTU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:05"]},"IP":{"Case":"Some","Fields":["185.22.174.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:115::8a3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StopFossilFuels"]},"Identity":{"Case":"Some","Fields":["0hC/CRYgYsBekx9xuuzZPdkQLxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6E47bqmr8XsifYj4m8bJeWhIs52fDvSZXfCYBDyJtgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:08"]},"IP":{"Case":"Some","Fields":["192.99.69.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["0gd15f7g2bsVVV8xrXDaTH1W1lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L64zsBbLZmqIxFNLJ2K1IMIyfZP4TRWSV/kkZBgRcI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:30"]},"IP":{"Case":"Some","Fields":["23.128.248.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::84]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moon3000"]},"Identity":{"Case":"Some","Fields":["0gbuIqoar5iQ9qBLKB53Tvkf5rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npllppoQaPcXYQNI24lgmh0H+mJaQeKuN42wjBGJMss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:06"]},"IP":{"Case":"Some","Fields":["31.42.177.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Amnesia"]},"Identity":{"Case":"Some","Fields":["0fe+w0pmSY/FZbwFdjImkV4xfyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hrispJHu5JLSPEyZNbbgoO6AN+EOOLKRdfon8vzzX5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:41"]},"IP":{"Case":"Some","Fields":["202.61.238.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor5"]},"Identity":{"Case":"Some","Fields":["0fLFyCCz+WvmFEy/uE/d+dDsCBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NnG6s5OAIFV8RCipRBws2IyzrWcnSQ9jOd6dBnEc8Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:26"]},"IP":{"Case":"Some","Fields":["51.15.81.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:2713::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kriefukegtai"]},"Identity":{"Case":"Some","Fields":["0fH1qlvPXatExETe+CghuL7GYUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVFXB9qAhIvHdeXSWHfhtIHZ8MUoUhgV4doMwWfdd38"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:28"]},"IP":{"Case":"Some","Fields":["181.119.30.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber04"]},"Identity":{"Case":"Some","Fields":["0eXEBtFEKb02usxu7mTmuMWDPns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3p72oYp9JNdq1CPvT60OwHurDX90vMZ62qofXPZ54jc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:10"]},"IP":{"Case":"Some","Fields":["185.220.101.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AmorousLibrarian"]},"Identity":{"Case":"Some","Fields":["0d8K5E5p4GFKdzBbOhLRocdxXAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cWCM5f56sMFBPVm3l+NfLeViVhGCH10lvjw75Fjgc98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:38"]},"IP":{"Case":"Some","Fields":["185.225.17.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8446]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c800:1:5::d7]:8446"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1141"]},"Identity":{"Case":"Some","Fields":["0dXWpa8blPT7M3EDSxH/cstAqD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kyEgUKxo2iNV6KZoaSeT9Je3CllUVFgYaS86swQiltw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:40"]},"IP":{"Case":"Some","Fields":["185.220.101.141"]},"OnionRouterPort":{"Case":"Some","Fields":[11141]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::141]:11141"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lint"]},"Identity":{"Case":"Some","Fields":["0czAqOyg2tgK5S/rO0LSixAYxvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3TGJIdkiCYF5OBC/QG/Pc7DGdDDMu5U7FMwgK8jJ3fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:46"]},"IP":{"Case":"Some","Fields":["84.211.247.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AFlat"]},"Identity":{"Case":"Some","Fields":["0crjGnCIfYpeTSKye4/6BCEb/mw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7/eJ6yleU7BRYiULHLjSTGMOYp43qEVckesghmjFY+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:19"]},"IP":{"Case":"Some","Fields":["51.81.254.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["juggernautrelay"]},"Identity":{"Case":"Some","Fields":["0cYPm88tugendZePZsmSfTqUkLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0TyyFiy0InrTW/H6K2nlfLfbncMWWXdNWJMdNfp1dDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:21"]},"IP":{"Case":"Some","Fields":["46.232.250.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:673:24da:28ff:feb5:e5c5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapAMS"]},"Identity":{"Case":"Some","Fields":["0cUJwMuTqLJoK46YqplIawM5riQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UxgMdVwRnprXVMK5Mep40fGKSy3KLME53oysjP9pZZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:03"]},"IP":{"Case":"Some","Fields":["188.166.34.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1300:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0178"]},"Identity":{"Case":"Some","Fields":["0cRfqtdm6BDtokATNcyOvejqhSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ocO1jtJFO9KjpjpMbMQueh49YzG4G4km5CLu4K3P6o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:27"]},"IP":{"Case":"Some","Fields":["185.220.101.178"]},"OnionRouterPort":{"Case":"Some","Fields":[10178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::178]:10178"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["0bhT7Sfk39yjpU0/LiacTZRnf2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4VlpZ3/b2Qy8ZbE+nZ8x0xn3eYZlcuVNebFUhE/CD0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:00"]},"IP":{"Case":"Some","Fields":["37.187.96.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:20b7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thekillingground"]},"Identity":{"Case":"Some","Fields":["0bMAtO2AQSu5zvq0Mj2pJnGwaBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Io4Jkkji9TiMASGmDw5qG35wURseD5h2wSRnsEeSM3E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:09"]},"IP":{"Case":"Some","Fields":["85.239.34.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nullptr9c01c676"]},"Identity":{"Case":"Some","Fields":["0a43V8iDSLpa2nZ5/MjizdHHW6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uiL+v0sPs7HTCgBYc6PJzYL3Sd7XRFhXKTGcNWB7rSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:39"]},"IP":{"Case":"Some","Fields":["141.95.55.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhatToPutHere"]},"Identity":{"Case":"Some","Fields":["0aC3liQmLs8QVfdmJN8DzMsWFWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["voV/XeH5AZyMNKW6WweYFg/52pdesSOslbrPcJKuqQE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:17"]},"IP":{"Case":"Some","Fields":["149.172.206.99"]},"OnionRouterPort":{"Case":"Some","Fields":[4444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8071:4486:9100::c4b7]:4444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["east"]},"Identity":{"Case":"Some","Fields":["0WyX6QPJHuCGj/R0oHFpzOS/kJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m2eD3WhS07yPREuaJIvdYa86XOhGKOOfh7O5weqTlsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:53"]},"IP":{"Case":"Some","Fields":["152.70.96.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ieYood1yaish"]},"Identity":{"Case":"Some","Fields":["0WszWnHpEHBl5kGazF3jHOxOMy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nwt5WoadG+jfIABgk/aEb0mc40Ix31f9AoJ6mvZlQ+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:45"]},"IP":{"Case":"Some","Fields":["107.189.13.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nxaat"]},"Identity":{"Case":"Some","Fields":["0WFiMRgiURRk6cbOL8YuSKBUiyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["asBMEJjiyNEfdpSXGRTgkXLkymrjLNc8N+uHPJA6jtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:10"]},"IP":{"Case":"Some","Fields":["138.201.92.183"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:3e7e::70a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RUBY"]},"Identity":{"Case":"Some","Fields":["0VPzQNlC+/BHT1xEAArtiu1YjJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yxTdoMWlQuge9Kjn5sqV+T0afDUCrVmn/LRIpYFMVZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:04"]},"IP":{"Case":"Some","Fields":["5.189.223.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:56::ec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nosplash3"]},"Identity":{"Case":"Some","Fields":["0Un9puPaPg+qyzaWkujWXV3ng/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lmMbJzQRyfvFlNB5/KgFJpsuZkCPwRRfzXmxIqzv3sk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:02"]},"IP":{"Case":"Some","Fields":["51.186.203.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluecrab"]},"Identity":{"Case":"Some","Fields":["0UL0f43FWZU/ZhmfH+fHxLoa5u4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhnlidPJQk0IAhcv7EhxQsT/1XhK5CX6KmOEeHdlISg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:38"]},"IP":{"Case":"Some","Fields":["74.123.97.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip7b"]},"Identity":{"Case":"Some","Fields":["0TaS2XI2wLjo4Z6i3ZUrXE+QELs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oq8SpvbANV28TpNWaBiGhIFpgxDrOY9XIY0vJUTX/fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:45"]},"IP":{"Case":"Some","Fields":["185.220.102.254"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::254]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AugustTORRelay"]},"Identity":{"Case":"Some","Fields":["0TC3qTIpBtOXyctBvCFFDT1ksyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQMEYtNcFRWCGjl7iUuv5KFKuBiVgsgFohY4Jsn7gv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:19"]},"IP":{"Case":"Some","Fields":["38.103.195.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:550:9601::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dmsdrelay"]},"Identity":{"Case":"Some","Fields":["0S1x3NnahITc0mfRhogjq4E7cjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jz+0mJYcxBzNO7mPAPiwTZJyDkUu2gktbA90GqzkPlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:49"]},"IP":{"Case":"Some","Fields":["5.196.70.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:3e2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bmwanon3"]},"Identity":{"Case":"Some","Fields":["0SPA+PVigEaTxH1oxheGAjspXpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwoV4qZUzNnaxctSDPpNVCmqjUBV/dsWbH1JWM2+C4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:12"]},"IP":{"Case":"Some","Fields":["176.9.1.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:31c2:5054:ff:fe00:ea09]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idol5"]},"Identity":{"Case":"Some","Fields":["0SKYufL6jfs5lY8oK/vOyfLLA4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VGGeilcMKHOX8bywqLgRZF17RLHffD/XIaf5YX+rsa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:30"]},"IP":{"Case":"Some","Fields":["85.239.40.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5cc0:1:1::8512:4a91]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gazelle"]},"Identity":{"Case":"Some","Fields":["0Ro8ETu9bMeonMarb9d4P3dJy2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVhPqvw66COkbswPO063UdaQuqZJPaAkpKnHgnLVlos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:16"]},"IP":{"Case":"Some","Fields":["135.148.171.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torSiliconhomeDe"]},"Identity":{"Case":"Some","Fields":["0RcasVdOxKGG9mE2TW/w11WDVvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enE2J2sDaSZd/3jj8sPIuZ6yrWWuSo8QITUYyLAfqPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:25"]},"IP":{"Case":"Some","Fields":["185.107.195.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:bbc0:310b:2::102]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["0RZlN18zM1biGg/itqr3uRuZFto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixu1aJkNrKhNqJd7DvN6KodOV2dTuHNyOoefMM9/4l0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:18"]},"IP":{"Case":"Some","Fields":["5.45.99.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:683:3805:33ff:fe78:a676]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kienjoch"]},"Identity":{"Case":"Some","Fields":["0RIXtEhz/XyHnlQYRLTCC5p+XPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AJyqlRck/KZI0rxzMZsz0veCy6h7/FzR57Mivv21mRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:15"]},"IP":{"Case":"Some","Fields":["85.214.97.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4203:7c00:2dcd:efd9:ce81:dd6f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moses"]},"Identity":{"Case":"Some","Fields":["0OGWKyRgulTYHhQmMA0Jcg5tQ+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGXPSMPPS4P3ibutnnJn4eJ9hic/07JQh2hRSRty30M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:50"]},"IP":{"Case":"Some","Fields":["69.164.211.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:34:ffff:ffff:ffff:ffff]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hotthing"]},"Identity":{"Case":"Some","Fields":["0Nmcyja0BvgTy35coXzuWPveiMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvDg5/i1ucIp7YdxodUjKfThkvPnTXmsoQA0V3oLIcc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:33"]},"IP":{"Case":"Some","Fields":["185.244.150.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OROGOM"]},"Identity":{"Case":"Some","Fields":["0Nk9XotGvXK2hhe0AuLbwW+KoEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ot3xevk/T9RWqUS+5f2svAAu8KvMILJjUxhWW4GX17o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["50.7.8.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:49f0:2920::d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loewe"]},"Identity":{"Case":"Some","Fields":["0Mx+CqeSHeQ2TaUMuQqDyzK5PGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["//NUflE5cnawZZ+Ty/jz5c01U3R7TaJtPjAk5K8SYik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:19"]},"IP":{"Case":"Some","Fields":["109.70.100.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xiellettalio"]},"Identity":{"Case":"Some","Fields":["0MXoCHQ2yZrmKTJnY0BdIsLlqwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uw/jYhK2elkEcc4R+pfMpGojUQr7cZ/qjscTJoZGbJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:34"]},"IP":{"Case":"Some","Fields":["87.92.149.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation58"]},"Identity":{"Case":"Some","Fields":["0L9qZAAIHaYDFTbs6tWfeb2r62U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SV8Th/u/CsG+BOR+irNUxEESvsTJo25F6jh1Kl1dVM4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:47"]},"IP":{"Case":"Some","Fields":["51.89.143.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortefidelious"]},"Identity":{"Case":"Some","Fields":["0LbjfVyjZo+D2lGEV2zcXIiHQy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SORzhlccTx25tXq/wm5l3mU1eoRFfwJu4wlGvQwf5/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:28"]},"IP":{"Case":"Some","Fields":["51.195.29.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elites1"]},"Identity":{"Case":"Some","Fields":["0LOYQM9Xk5YGuarCc9CQcIQnNtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3gNjyGKmsz8HZNgrLxak0r/Vu8vLseqb2saQ3gqXMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:46"]},"IP":{"Case":"Some","Fields":["45.58.154.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thelastvampire"]},"Identity":{"Case":"Some","Fields":["0IxpRIWgAxaS+v6MMgX7u9vNlAI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qzsx7jySSmju5/5oC1j9BU1zEAOqqotQ4VbkxKt1p0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:18"]},"IP":{"Case":"Some","Fields":["103.109.100.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spruce"]},"Identity":{"Case":"Some","Fields":["0IhqSvFAEj5HbXgE71HKdLrhzl8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLdFWIMmB1ladO5Sx/2DHiEjNp1Rp8hQcELktjQuXJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:43"]},"IP":{"Case":"Some","Fields":["209.58.145.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SNTor"]},"Identity":{"Case":"Some","Fields":["0IZgttcLYkmlfYm7eo8uoslSvTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sC8vtIl165iwNtLMtAZ2i0tyDSKgAfatqon1L7Xljvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:00"]},"IP":{"Case":"Some","Fields":["130.89.149.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2564:a120::57]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Transyl"]},"Identity":{"Case":"Some","Fields":["0H538GZafF+RGLNdypiMNGsoBIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jc+daU8yNnM39GdRLzcX4BKuYmzeTwXzeEYlEcUQ0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:25"]},"IP":{"Case":"Some","Fields":["185.246.188.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["0Ht7kYURmYXeu7L04Z9qGep0bO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mvKZDyqtE6ytBDLByhWlsPHquBZk2y1JnswrSpOXW+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:52"]},"IP":{"Case":"Some","Fields":["212.227.73.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:46c::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrkRelayForWaaaGh"]},"Identity":{"Case":"Some","Fields":["0Hbq1ISG8Fst8jSwhu5f6Ax+4jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bpJzNLIrMBaYcx2Kfe1uq2I6d/ctkwBLUo1nIg8v7Dg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:28"]},"IP":{"Case":"Some","Fields":["51.83.43.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Skyhold"]},"Identity":{"Case":"Some","Fields":["0HZWF2n1yT1ih3fj4F1GM9eD644"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bMZmGDaPuhI5ROdZFNdpm84TnyguuB93hSN2vrv2n4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:42"]},"IP":{"Case":"Some","Fields":["93.41.149.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b07:5d29:9575:2421:ca22:4b2:a431]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ajourmag"]},"Identity":{"Case":"Some","Fields":["0F9By3igAxHY7Eq7TpUVgugpjQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CBtgKDvlyW90n37k0QISUHHaDja9RQZZ/eqM68qDc+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:49:11"]},"IP":{"Case":"Some","Fields":["94.130.181.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:4162::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mitropoulos"]},"Identity":{"Case":"Some","Fields":["0FYrt0pcyIctEbIiZ3AJqJIvw4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cty8DxaWh46n+5m5tTv9qCoPZ3gHV4naorS82cqqcRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:44:11"]},"IP":{"Case":"Some","Fields":["212.83.61.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plaincrown"]},"Identity":{"Case":"Some","Fields":["0E6vRHjyZencDHtJcmuQ9YkUKG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NGS3BBXLmCkUPquDDXhpPQ+/0uWLATFd3gHBuC0es1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:44"]},"IP":{"Case":"Some","Fields":["87.120.8.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c18aa1b60d3c06"]},"Identity":{"Case":"Some","Fields":["0DQbSWiX+WCEVwtJM9UZyyWzXHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWK+xidZv6O7CNf8VlIC1aaxE254vZbS09UJzDFBDtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:40"]},"IP":{"Case":"Some","Fields":["95.217.164.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:73f2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de3"]},"Identity":{"Case":"Some","Fields":["0CetTmpXdVvICt0b9si8f1HoorA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pi/TqkeZMtL+UAkriw8fAJZpG4HoysbnJML6r8vEGls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:55"]},"IP":{"Case":"Some","Fields":["195.90.201.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kimchi"]},"Identity":{"Case":"Some","Fields":["0Cc8hWbMmuzkx2I3bJsGb+Dx2t0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F2MjEtlkSQvII5XOHxYfFFTQogXg4QxK1qlUbeAFqA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:50"]},"IP":{"Case":"Some","Fields":["54.36.120.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PGtorExit1"]},"Identity":{"Case":"Some","Fields":["0BuR1CRld34STVHCKbD5xXr5DwQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Enfk0DpVIGtNdrwg6lMoyBxlFAdXxca+RdR9T84FfAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:47"]},"IP":{"Case":"Some","Fields":["209.141.34.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["someTorRelay0"]},"Identity":{"Case":"Some","Fields":["0A/NHyUMcfc5+JGFtcQxMLPNjCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FgDbCZUDArlY1W747TWUvN0MIqbGyvw4X7J4762j6fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:54"]},"IP":{"Case":"Some","Fields":["185.65.134.167"]},"OnionRouterPort":{"Case":"Some","Fields":[55868]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aStupidTestBitch"]},"Identity":{"Case":"Some","Fields":["0AeVMw13x1NExU+4gAUx+rPED74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoO0OB2WDvL7nsxI9KsKwCX4+xQOSRuzrRWHTKrYyvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:46"]},"IP":{"Case":"Some","Fields":["104.244.77.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f503::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["z+91VJQpOwyWJLWaFJ4YcEpHVVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XQFa/Ayq9DVH7GBfPK7l1UbFl/LUU5moDQnRg0p2Yp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:06"]},"IP":{"Case":"Some","Fields":["185.232.117.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:5700:b9e8::75f7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pineapple"]},"Identity":{"Case":"Some","Fields":["z+oghaP90Ao495vt+bHp+POdRYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OKAAYRC99jA145jdtsT/0Xo9SYTgwmE8Quowqb2yUok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:32"]},"IP":{"Case":"Some","Fields":["124.50.144.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoldenPOP"]},"Identity":{"Case":"Some","Fields":["z+HLI5QC/kGsClejeBRHQYkHhd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HCxsBCKeFdtffQns6A2FbYW7JLPVBrgwO+9IFxG4eSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:46"]},"IP":{"Case":"Some","Fields":["94.140.112.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UlhasTor"]},"Identity":{"Case":"Some","Fields":["z9+Z7hkj2HAyn42uVDmP1FQJ8B8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GMklWNleh1csSmiqr6tO/8pFtW/gmyms0BwcAh7Q0sM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:27"]},"IP":{"Case":"Some","Fields":["212.32.240.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNETMONAU"]},"Identity":{"Case":"Some","Fields":["z9N2SdP8Qotbu0XErjK1svtcT6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0BxbYZkS4zp6FbjnNCLKSjGfRbceNkAdSZfZuE2cEHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:05"]},"IP":{"Case":"Some","Fields":["3.26.51.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Exit","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveLuxor"]},"Identity":{"Case":"Some","Fields":["z9NLHhxP4TY8ORadZTic84VoELE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DrE/x0lw3tUMIdYJVsodwtU+GZTPzmDfO/VwfbjD0Ho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:04"]},"IP":{"Case":"Some","Fields":["65.49.20.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["z9KJUgSuqoJDQ2O1XZU3uIzm3v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5+r9v19UWoMOX+MWcdExg6Kri7LqK2KErsrQ5yEGEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:19"]},"IP":{"Case":"Some","Fields":["185.177.206.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::139]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mytorrelay"]},"Identity":{"Case":"Some","Fields":["z7jOKNGxLuuGYlEa+8HQxveQZag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2rI0pd+vsVdDaUUoFk0IJLRlR2KereN67/u6P3G/0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:46"]},"IP":{"Case":"Some","Fields":["84.149.69.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kochan"]},"Identity":{"Case":"Some","Fields":["z7ffn76vnsEmprVXoa8XfK1Llqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6oZhcFpNV5B1t9YyPsEEt2WHhA+6aX2xPI3FLcFhOkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:12"]},"IP":{"Case":"Some","Fields":["80.108.10.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BFlat"]},"Identity":{"Case":"Some","Fields":["z7Y+WUccOOSvou7e6y5JxN9QZYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ABMkM5aOXmI1KrGOhUz65r2tYE7inmY9evsda/rEmGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:22"]},"IP":{"Case":"Some","Fields":["76.95.215.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay37at8443"]},"Identity":{"Case":"Some","Fields":["z7U1cVRCvA6favIkp5S7+gLQs0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIgexqBAiD2DWX7MAQx0wmW2sbfdxxKhChJnCsPkb/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:31"]},"IP":{"Case":"Some","Fields":["140.78.100.37"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["serv"]},"Identity":{"Case":"Some","Fields":["z6dEfGanCZMvA4/uawKLhKbmdug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KL+v9+2GDVbVIeBkvyGl+UeN8zpVs8NExOfsdBNVmjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:30"]},"IP":{"Case":"Some","Fields":["134.119.32.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeeVieh"]},"Identity":{"Case":"Some","Fields":["z6RaRzn75HfYxlAINLWfQadJopQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQD1ON5LetVGPZt87G7BdvlmDpMVIHCKgqDMNbf8oVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:21"]},"IP":{"Case":"Some","Fields":["103.119.112.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vunreteqrado"]},"Identity":{"Case":"Some","Fields":["z5vrPjVUxcNDAkZBqRzJrmuEmII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oOXRceW/PK97zchwbtcE5E/Uf7uEua3/OnZP63tnua8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:36"]},"IP":{"Case":"Some","Fields":["87.120.237.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["z5pUcIHJVmTIxzW63bkeYhD5eVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMFRXe+xuH514XD+M9M27g8IVVa5mqc/g58xELS2kj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:16"]},"IP":{"Case":"Some","Fields":["151.115.47.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jelegend1"]},"Identity":{"Case":"Some","Fields":["z5Mjbe4fV9QHLu3B+XUtt79JeJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lXjA8SXgQgNsmTLqzgY8ivW0YDLY1uwprZb8kZB3lQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:47"]},"IP":{"Case":"Some","Fields":["171.22.109.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::a076:fa9f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange034us2"]},"Identity":{"Case":"Some","Fields":["z4zEdjKY93/2Ta80DSbRu/M2LFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/qEjXHiZJZ1lnTMuuCaCoF+OxRxtRgvFcUEoYL7kzzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:27"]},"IP":{"Case":"Some","Fields":["162.212.158.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thinkindifferent"]},"Identity":{"Case":"Some","Fields":["z4J812pZ+s2uYOElmwCGrP9y80g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dYf2P9NXJzEdKiGLzomOUK21SRneTzgdNsPM72gG6Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:56"]},"IP":{"Case":"Some","Fields":["50.116.51.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe16:8f3e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yudejp"]},"Identity":{"Case":"Some","Fields":["z3Yu88hrEEwwFRGJRUfHI3H5UqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9y6gCvm9le/D0Xnl+IDbOrh61bUPaenAGUEAU1TNnBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:25"]},"IP":{"Case":"Some","Fields":["152.69.198.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashOuzel"]},"Identity":{"Case":"Some","Fields":["z3L7AQvwKhNygrfz6s4gGQXW4Hk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELNsLU8H1Qyjo+SB4usiY0KHFB89HmIxvZzfvoCPPg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:36"]},"IP":{"Case":"Some","Fields":["5.255.96.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:a59::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["z3DMVC5GmS4jACBzZjZH95CetAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jizmm2noBfHLgYvGGUYkF4LnAsmQCwH81mYgKzqMFRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:33"]},"IP":{"Case":"Some","Fields":["45.142.211.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:b641:6f1:64::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Faravahar"]},"Identity":{"Case":"Some","Fields":["z20Kr7OFvnG44RH8XP9LR5I3M7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["71A9GvYqtUwnOpqaZOHmDQY4bINLsOIBjazcFK9+zTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:59"]},"IP":{"Case":"Some","Fields":["154.35.175.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2607:8500:154::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay01"]},"Identity":{"Case":"Some","Fields":["z2pggAkbshCqOJL+/i9qOW2gjfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQK4PfbOg2o2RSkY+QYJk5ZzOdJEypUXH/BoDqA5kSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:28"]},"IP":{"Case":"Some","Fields":["82.149.227.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:126]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schabernax"]},"Identity":{"Case":"Some","Fields":["z2WStT4zA/aUcenGqS6Kbuq33cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ri/NrfikGpb8aQ4PxQs5H//QoHWatTW7sP4RX2RnJ8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["89.56.233.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:7846:e95f:101:47c2:2bf0:662f:9efe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GreetingsFromTheNet"]},"Identity":{"Case":"Some","Fields":["z02w4EgP6x6PWcPXdOuSdSg9V50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c7xZ4LLDi1BTAEALFr8G4V89dAxgbVj8Fk37aYg4Naw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:03"]},"IP":{"Case":"Some","Fields":["135.180.40.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taniquetil"]},"Identity":{"Case":"Some","Fields":["zyCpEBpplUQ6ns+gdVGir4cxfZw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cCYorKc+vmgscmMj5SZUTIu9H1KiAQdWxiAEsINilmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:08"]},"IP":{"Case":"Some","Fields":["135.125.25.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d1bf:4521:600c:c37c:3457]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI10"]},"Identity":{"Case":"Some","Fields":["zxwYBMM81p2KdVh/q8Y9XQ4pgPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIIB4h8daN9Z3lPY9G8pe6KmQpXRlA9NyM7Jx2oJu/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:12"]},"IP":{"Case":"Some","Fields":["171.25.193.234"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::234]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1140"]},"Identity":{"Case":"Some","Fields":["zw9JwBftFO/VTpU/QorjUIp+2Fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i1Np1dcmC4Rjqs58UmbHcfq/p4Drx5knxmMdXu5G2I0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:55"]},"IP":{"Case":"Some","Fields":["185.220.101.140"]},"OnionRouterPort":{"Case":"Some","Fields":[11140]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::140]:11140"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomOfThought"]},"Identity":{"Case":"Some","Fields":["zwGfHZJCcRMlCjOLu6EJUEQr6og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["163Rmf2n9+3S5ZkXqnovcw5mct9tPSHw0QtYyzT6x9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:13"]},"IP":{"Case":"Some","Fields":["85.214.236.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42e7:b400:778d:ed2d:68b5:acaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FSF"]},"Identity":{"Case":"Some","Fields":["zugE+gOoemXKpryzolC17ZI8CL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FPAKAGUTgneE8GeIaCWktoET/p37S/bJEtouHOYCMHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:17"]},"IP":{"Case":"Some","Fields":["209.51.188.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:142:5::48]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strayWires"]},"Identity":{"Case":"Some","Fields":["ztV38JHcsVrYyH+9RSpR6p5gv8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9ss41siOawCHrB0hHQxULMC/z16DhMLuIxgmdMDw0ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:38"]},"IP":{"Case":"Some","Fields":["172.106.16.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["simonjester"]},"Identity":{"Case":"Some","Fields":["zq7WmzfwdRzlIb2MzpR4xCoIl2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a5rB3+YW7ZjfeS5kLa5rLzAaoTYV0Bn7mmBXWg95BRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:43"]},"IP":{"Case":"Some","Fields":["212.83.167.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer76"]},"Identity":{"Case":"Some","Fields":["zqhsMIFnvU8NKuaRkYBduW2FZxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P59LIpSWGPqy7FSVD+bdkuhF4Gz7MXyJdyTaBSmLJv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:56"]},"IP":{"Case":"Some","Fields":["95.214.52.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8176]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpartaNet"]},"Identity":{"Case":"Some","Fields":["zpY3Nsz3q2Bu+Dy4MhC4ZWhQP9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p7hNF48kRm46OM8bFjxEb8L+thwz6Mo612DyZFSpFEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:37"]},"IP":{"Case":"Some","Fields":["85.236.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webkult"]},"Identity":{"Case":"Some","Fields":["zpADIIoEeWAkYFLGBKITw78Jb2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSqKv995eWnkaMLRS6HrbvGyOAlU/IR3ALlMbBk7qho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:56"]},"IP":{"Case":"Some","Fields":["144.76.219.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:92c2::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mj4"]},"Identity":{"Case":"Some","Fields":["zoY8Iq1au+r2Bq41oieBxAnYleU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XXvvA7TI+Fj9T7FwXb8MPrdi7C+h7W2jvZp9dfAvP6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:49"]},"IP":{"Case":"Some","Fields":["93.115.86.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RichardSnape"]},"Identity":{"Case":"Some","Fields":["znZB3y8l88zDhyTmnTgstQPAaDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W3cMZ7nUhIEW2ijxiz2JYotgOtPQZXy45GI0H+E4d0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:57"]},"IP":{"Case":"Some","Fields":["5.189.182.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["updawg"]},"Identity":{"Case":"Some","Fields":["zmmRYqd0leh6ivNztnTaNsHqc5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pOAj01Mld/KXLstm9KBuPvSYs3RaSVbRk0HqdlusKZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:17"]},"IP":{"Case":"Some","Fields":["45.77.151.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation53"]},"Identity":{"Case":"Some","Fields":["zmlLqNAZ7mDY54OMwXfmic6oJeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lHuIrkYApuS3DPR5nApf/5X8pSpMn85M8QtWhLtCncY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:45"]},"IP":{"Case":"Some","Fields":["51.89.143.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0183"]},"Identity":{"Case":"Some","Fields":["zmURlorKpDQCY41movrF8y+aRcQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qHeqCfVESnbu6xquoi0kQ/OB4jBcSfbL1f2hQax5B4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:51"]},"IP":{"Case":"Some","Fields":["185.220.101.183"]},"OnionRouterPort":{"Case":"Some","Fields":[10183]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::183]:10183"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev12b"]},"Identity":{"Case":"Some","Fields":["zl70+2RFRNsvQwpgzG64b9fim6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXx4v4BP8fk2fEdGL2j7tAfAJMDxtLtxHBRW2vGDHmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:19"]},"IP":{"Case":"Some","Fields":["92.246.84.133"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:c2c0:1:4::2]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guidelli"]},"Identity":{"Case":"Some","Fields":["zljPZm8gmFdQL86vHLUvY4r/vWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1QqsbY27AQpuHzMuJAh1ct/gDOrkjHuj5WrBbA50mgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:39"]},"IP":{"Case":"Some","Fields":["194.187.249.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WindowToTheWorld"]},"Identity":{"Case":"Some","Fields":["zlVHVOJF9z0HdbTHkilt2uFuIoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iN089hfDRR73g5pu2AzqlvkkIrep1sjCR4x3vY1Yqz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:19"]},"IP":{"Case":"Some","Fields":["45.67.219.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["juanovo2"]},"Identity":{"Case":"Some","Fields":["zlJhH7ceK3jq/gxh4kHsfBFseos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dKv+oM5kQFvpN/LzkB2alx4T3tGPFeXr8bJc4kLgLao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:22"]},"IP":{"Case":"Some","Fields":["205.185.115.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rymndbjcyirjoytu"]},"Identity":{"Case":"Some","Fields":["zkn5MpvxGKHB1CAVN1qtKYRPkwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fqeE/Lx4AmXNuIuc6ATfvNAlQ9vlLseLK4d43ZvsTQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:39"]},"IP":{"Case":"Some","Fields":["184.164.24.179"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy61"]},"Identity":{"Case":"Some","Fields":["zkfwNW2GzwoaIAjZdiMhbVYPsKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n0AxWpzpyAMtEGPlp+Q7ucg/bcvlDUc9H/cuU5deCuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:07"]},"IP":{"Case":"Some","Fields":["212.83.43.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:babe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["altenfurt"]},"Identity":{"Case":"Some","Fields":["zjuYMj3aQMKcnUhwW7eL0siVMPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WkHAZvVFqc6p9YLGwIHWEkCIoSQv1MtfIwba3cZVj0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:29"]},"IP":{"Case":"Some","Fields":["95.114.74.116"]},"OnionRouterPort":{"Case":"Some","Fields":[42299]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:c23:b875:cc03:b841:b9d8:9d8d:1b1c]:42299"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ahehfxubzfxwspvk"]},"Identity":{"Case":"Some","Fields":["zjawu0yBtG+9hmXHf+h+W9SP4LQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f6UD3IQYqx0F9rpey6Eg+7NkffCjwUJiX6TBk22OpRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:18"]},"IP":{"Case":"Some","Fields":["81.169.239.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42e2:ce00:d4f6:291e:2df4:30e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UkranianStrong"]},"Identity":{"Case":"Some","Fields":["zjDOOW1itryd78g0Taib/WAINmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TbXC138wZ5GacsZsU2WJEjI2kyws3VyUlmqVD9+nEIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["185.225.139.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:3::680a:e7fc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorFakedOrg"]},"Identity":{"Case":"Some","Fields":["zhU+PIExhaUWw0HPjCvmvvun064"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wd9vN9NbqY7xqQxxeVNc4skfVKclgeAIV/V4lceoPSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:20"]},"IP":{"Case":"Some","Fields":["91.66.4.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8109:8000:d:b46b:61d2:be19:167b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zfauzqmpCSyphZp4ZSrmDTWaRPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JFyIUrKafhQmZrxRSOIBLWxOa9jquKOBq3tFU2LYvsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:33:07"]},"IP":{"Case":"Some","Fields":["37.120.186.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:23:489f:4fff:fecc:5244]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra88"]},"Identity":{"Case":"Some","Fields":["zfVvKq+kK/aRIGlSkRB+I2SMsY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x7uVG4SoDnTLEqyMY+ZWR00sM1vX78DiMFxKg5hCWG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:36"]},"IP":{"Case":"Some","Fields":["193.218.118.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::130]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrresdemorte"]},"Identity":{"Case":"Some","Fields":["zfNksXW89jqQM1Tl9XdktMNB4jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0NZNjSDeW3qPzCDZ9qquT88cBZ3SIAdSG1ogbDf3EO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:29"]},"IP":{"Case":"Some","Fields":["77.8.146.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBlackH0l3"]},"Identity":{"Case":"Some","Fields":["ze1hWtHMz3DBGIe9ipGNPQs5KQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y7iyfOsDlU+02m0XToabbTTIOVHO51fI4xY9n/9hFus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:30"]},"IP":{"Case":"Some","Fields":["37.24.145.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0b:18e4:1:2:3:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sidlecompote"]},"Identity":{"Case":"Some","Fields":["zeiv0YFoRI3K9V8YXBxRe4Fdy/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RddddZfZdL9ykux3sNRwOTqDKkw/V4XTXHmRrN8NBaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:43:46"]},"IP":{"Case":"Some","Fields":["81.152.88.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c7:d381:1301:4262:31ff:fe07:9b45]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r3"]},"Identity":{"Case":"Some","Fields":["zegfwBUB1NnQsHpzFMFPSjaVjC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bDI1rUxkWdpqkQxlNyOUHeLdM+7wyyOr4IddjgPhhUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:59"]},"IP":{"Case":"Some","Fields":["216.250.119.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["silversurfer"]},"Identity":{"Case":"Some","Fields":["zeTF3J1jnpFbmbRh7iQwRPyiZLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6u/c8/EJXLZAx6Q7kHx49gMNPnqSLpagmTk+8cmRbQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:37"]},"IP":{"Case":"Some","Fields":["178.17.174.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:4::b29d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["zeSSs00UoNlxqLBIIW7LK/R9wN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Y6WakiSnEucZLHzjt4MDjaWpMwB4geWBxqFAuak4Cg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:50"]},"IP":{"Case":"Some","Fields":["213.238.182.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rotorstator"]},"Identity":{"Case":"Some","Fields":["zd7DzEsP1QVMmbLShD3otgmkyro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cZJWxErEYEbspTrX9MYY+Q7SVoIx1Y6Tg4rYrjlkhFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:09"]},"IP":{"Case":"Some","Fields":["74.91.21.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zighimilan"]},"Identity":{"Case":"Some","Fields":["zdKW2MOOqmqUJC/PAyk+DW7EoNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mtjd15R9iNdBBpW3+HIc5nnC1afmgBDHmLsKf2TxaJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:55"]},"IP":{"Case":"Some","Fields":["93.55.235.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bulbasaur"]},"Identity":{"Case":"Some","Fields":["zcZD5Z0E9jrf3g7ERzrHKNmni9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rJYvWWYBoe5Fq14OyWC5GrqRVR7ybDHi61B/UA2D9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:53"]},"IP":{"Case":"Some","Fields":["172.241.140.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2mpdhack"]},"Identity":{"Case":"Some","Fields":["zbJgXSvSjaMcyRlW6LrRR7ffivk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AIwsxqmfkprsLT5dtVQutgBHgYVXSKTxIKwXjZhWwFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:08"]},"IP":{"Case":"Some","Fields":["24.61.235.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jonasBebe"]},"Identity":{"Case":"Some","Fields":["za66RY9hKXdmQ3UZNAdqUdhRw0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jc8HvwoPAlqSS35dSQGl1mOzBKFl3UpkTxlrWmQi/x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:40"]},"IP":{"Case":"Some","Fields":["95.217.203.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:4683::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2fjsaf2ja4da"]},"Identity":{"Case":"Some","Fields":["zaLDNq2H4i3wKYOIej90shBw0C0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fBETQmz9KrsWT2GCEKBeqExgdPjJU688yNXBVjK/NmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:58"]},"IP":{"Case":"Some","Fields":["192.145.46.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:42:78:c4f9:9fff:fefa:980c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["YAVTR1"]},"Identity":{"Case":"Some","Fields":["zZyJW6cf2US1CGHedv/xJnFwd3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F25TB2aH27tUQt21zwOLE+DowJX26gCSIdzln5TSy9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:54"]},"IP":{"Case":"Some","Fields":["45.156.24.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as204750exit01"]},"Identity":{"Case":"Some","Fields":["zZNIaOgBhg8fPesWJh5MS5vH82o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EsP/BmfoyLZheQx9GwQ6tB5csqMOJ/Yy+h0eU4cKQMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T18:31:03"]},"IP":{"Case":"Some","Fields":["91.212.153.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3d2::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["khasan"]},"Identity":{"Case":"Some","Fields":["zYCs5an7C/4CN71N7WaS0bu/R5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TYCar2wUAnR3hZj92IcUXMZgzTcAGBrkw4AKilf3Iek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:25"]},"IP":{"Case":"Some","Fields":["188.93.233.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7a60:1::a06]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uwu"]},"Identity":{"Case":"Some","Fields":["zXka2T1HLVUYvnUS1Cho86Con0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVkR8Iz/tjK+SFv08vrnMa7hLBCDXBDp9HJUPytn3Bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:12"]},"IP":{"Case":"Some","Fields":["78.47.171.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:6c79::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TRFIAntti"]},"Identity":{"Case":"Some","Fields":["zW6MVIcE9M5UTNcTZdRvEQUY++0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4yo5bSvCEzRg1Bzdy5IdhyopmPSqUqEcfscs2i7paY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:39"]},"IP":{"Case":"Some","Fields":["95.216.140.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:49b::159]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mars"]},"Identity":{"Case":"Some","Fields":["zWiQRNDmX1LZahrLm20PJMAy4a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bw2xCJ/ViQNK9i6aMwToTQbLqd8LZReZ+Io3aZMOwx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:38"]},"IP":{"Case":"Some","Fields":["65.21.52.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porree"]},"Identity":{"Case":"Some","Fields":["zWhfYc3a+S6hlE3IrNzS4qp6isI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B00yJKlO+EYAmSD1A6hiaqcyyzoipidvDHqxA9ntHBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:30"]},"IP":{"Case":"Some","Fields":["109.70.100.8"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::8]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["riceahap"]},"Identity":{"Case":"Some","Fields":["zWP/3/Tx36uaBYwFWs1ckMNKboU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HLk7xTmfSAElGkV2HhIZ0cOQPHx5rnuOFoyWD+LteA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:13"]},"IP":{"Case":"Some","Fields":["198.144.183.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["execs1"]},"Identity":{"Case":"Some","Fields":["zWI2MPw/+NiqkrT71gq+FZpITBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lgZPr9o6YOe4oOM/dTr0YkBO1Zsu+mAVDKq1eZsK9CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:59"]},"IP":{"Case":"Some","Fields":["45.58.156.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllieRoscoe"]},"Identity":{"Case":"Some","Fields":["zVzxJf7Uvl2l8ln3WvPU3RgsVNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vaZqmuVTCoJaLBge8zFXv3973HSbyxq7dFZqYsnufWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:45"]},"IP":{"Case":"Some","Fields":["217.12.203.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JAJTorBits"]},"Identity":{"Case":"Some","Fields":["zVokLX8JXTCPSM6Ac17k1L5VqvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHXvPf6IupRX9sqSt5wVrYMvp5+69TaMaJ3db175xzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:08"]},"IP":{"Case":"Some","Fields":["73.117.132.138"]},"OnionRouterPort":{"Case":"Some","Fields":[543]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange003ru2"]},"Identity":{"Case":"Some","Fields":["zVMWp1VUwtrbh+82JOldhIwwnOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G2x4mZBEmE3rs7++QbsSTh9LSpwIthyGnCgRdNAYT+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:24"]},"IP":{"Case":"Some","Fields":["185.22.172.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:29::9201]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["normaray"]},"Identity":{"Case":"Some","Fields":["zTnCWCZbJeqkq6T9yy35gQTKo2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qjcpeHgJmJxLJRuguXrTDwZD4nrnGSNshDVplcKozEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:22:16"]},"IP":{"Case":"Some","Fields":["94.130.200.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zS3VK4oK8MISzNNAJQdAK1hwO30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpHJ/v9LRvkqrvnMC0jKPhRAdaYy7pRD7hvzKhBcsRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:57:26"]},"IP":{"Case":"Some","Fields":["188.68.56.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["order66"]},"Identity":{"Case":"Some","Fields":["zSScwTtq3TQm1gO57VtR/HG41yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tSPx71dbPUgJce27Xeue79uOtlkw/UpvUxPOqjKct5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:46"]},"IP":{"Case":"Some","Fields":["185.86.148.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::ba45:e7f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arecoque1"]},"Identity":{"Case":"Some","Fields":["zR/SwfMwoyk9pgaOaiOGbQY9bcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nt+lfJ2JLBsYLcEsHS4JFcNF5Hy26hmVjQwFY8jkOnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:21"]},"IP":{"Case":"Some","Fields":["80.67.167.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:e701:1198::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburgoo"]},"Identity":{"Case":"Some","Fields":["zRkuFSFQX5Aqwx0X+p030DJ1vGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j3B5Gq8JjtwWmYIjeGLefsoe81e6oAz9bE7X1ay8H4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:24"]},"IP":{"Case":"Some","Fields":["159.48.46.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geheimkaisx"]},"Identity":{"Case":"Some","Fields":["zRC1KsyKCtfRtMQLhJdxvR0N/0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HJQV9bTbZ74XsvBpYQnFrq5UacPR9R315GnZ6wDiQZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:24"]},"IP":{"Case":"Some","Fields":["5.181.51.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayoneltab"]},"Identity":{"Case":"Some","Fields":["zQnNfH+IFbNyEMfRpihZnHjSLW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2bnxTli/+VEm/GewlJfJNJKgq+abIgqUEKDNDh+3LVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:25"]},"IP":{"Case":"Some","Fields":["185.220.100.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:7::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazonedemerveille"]},"Identity":{"Case":"Some","Fields":["zO9lIsxWijTYXcygY958YYzl7Pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uuu/LyzBG2CmJyufzSe+iA2buJjcD99mpNJVG4hgu24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:25"]},"IP":{"Case":"Some","Fields":["172.105.35.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["zO8Lvaj1LC5g40vBUM2Otx9b2o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KmYqcLH70yX2D5zbggjpg/vhwa30DUxR8npoVXIcTf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:06"]},"IP":{"Case":"Some","Fields":["45.154.98.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkomaro"]},"Identity":{"Case":"Some","Fields":["zOCeqOJ8re+2aW2n1UlhlTTfiZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EcszOIcRy6n5997QYdSoJMh3UK2aWVXr8HLB3qFWc2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:36"]},"IP":{"Case":"Some","Fields":["195.50.212.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:7d0:4dc0:7511:d01f:7eff:fe6e:408a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zM/Y1f0hrHliNNkU8bfMM63OUvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Za6XR+DWDe7VBkP41d8hO85Bc1HByvXGJLPjmV6lJXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:04"]},"IP":{"Case":"Some","Fields":["188.68.56.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheGauss"]},"Identity":{"Case":"Some","Fields":["zMtysWrbtOx9vzcD/j7c3tPKOrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8kWqSzCljvOcOGT2wdbsbdAiXavP/gZJbecxzDB/Zbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:38"]},"IP":{"Case":"Some","Fields":["93.41.144.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zL6x24jSCYuqMAbwrOxhlRkoKh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC0LFQ2u4wXvhN70LVUNy2C0PM44Fv4Mh00di5EUFr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:06"]},"IP":{"Case":"Some","Fields":["96.52.236.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guthard"]},"Identity":{"Case":"Some","Fields":["zKpiDVyrNM6V/jyGPZ5lIMB0Udg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Id8E0a4h3WlpuuQ1Syu8MZC7pyK4sI8QP/gV4sD4j3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:23"]},"IP":{"Case":"Some","Fields":["82.118.242.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zKmXONZOz44tR4+rqdOO2ua13P0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkRQxv8IhDmw0BpzI+qoYJiQSMrjtCzSAnvTtj/dtZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:25"]},"IP":{"Case":"Some","Fields":["5.45.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SVRelayAMS"]},"Identity":{"Case":"Some","Fields":["zKU3FOpcfOVR1Q+W5+GlMHEiWoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRDxUFfQE8n/OA8OANAm6OBZdoTRWVqCzgEOlhSAY/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:28"]},"IP":{"Case":"Some","Fields":["46.23.90.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenInsanity"]},"Identity":{"Case":"Some","Fields":["zKIlCbhnQZwQIlQ4aIwY5y5zdYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["46yo7FXHoO1NYpjvgRgbBAfo3TQG9DrRViij1czbZLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:45"]},"IP":{"Case":"Some","Fields":["51.158.148.230"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:2000::a]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WeAreThePlague"]},"Identity":{"Case":"Some","Fields":["zJ8SemQx3WQiZKPMOGj5pxB6AZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kNZvXg/jgUGAGRCnuEsYhqJQaoE/+CNRwoWiuJGioDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:53"]},"IP":{"Case":"Some","Fields":["83.135.89.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation02"]},"Identity":{"Case":"Some","Fields":["zIshjtNhWCel3PAI/GJZje9TO08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJwEqNOd9Rbak4VxVQAmiC904Skg+0DcFFJ3BJ2ceFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:07"]},"IP":{"Case":"Some","Fields":["45.14.233.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e99f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IG11"]},"Identity":{"Case":"Some","Fields":["zIcy5uNNjBqmGjt/6V3dcbzpyIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpNPyQw/jWvo0GCQ2f2kNweY4YHLKSZo5gZtWP0g67Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:14"]},"IP":{"Case":"Some","Fields":["94.140.114.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::eb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["zIQSoM4xxVz78yy6jqXAU0iEbD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1wcIzQJ4B1XIsHxK+OWNPlw7+WyVqSeWr5hvp0wQpmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:20"]},"IP":{"Case":"Some","Fields":["185.244.192.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["w000000h000003"]},"Identity":{"Case":"Some","Fields":["zIAcfjyzgXg6vIETpz/9gvAis40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yoeyJ1j8HyvKKnbUM9xsS/TUJ9JvpNyAHmTqYG/Ybec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:25"]},"IP":{"Case":"Some","Fields":["178.170.37.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:2017:1::169]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sutsuj"]},"Identity":{"Case":"Some","Fields":["zHAfzobWr5X8PVtxZF00MHlJEME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Px2Vj1Bgg+O8mcBZLyADuGais7UbU9wnJQYmMt8xeoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:40"]},"IP":{"Case":"Some","Fields":["157.90.183.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Camaro"]},"Identity":{"Case":"Some","Fields":["zG4emTJQ5Go4qc8gkGZud4isTvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRm5l7IJMtx0hOqYQjKAc9pTQeqmjA1Vu2KcHNbR/NU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:27"]},"IP":{"Case":"Some","Fields":["179.43.139.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN4"]},"Identity":{"Case":"Some","Fields":["zEo66WDjYX9Jv5iHt5GGwUy6aBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tq7HjlZ06QxPpv1aieZJJus+NEsaCtAJzM0DzodLQDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:00"]},"IP":{"Case":"Some","Fields":["199.249.230.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::115]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor9"]},"Identity":{"Case":"Some","Fields":["zEnAgW+KhS8dJNDUUR8jerNe1+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpEVZJ95DM/KXzbwD7ie0MFgMyqMFZESD5nUqQgysOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:08"]},"IP":{"Case":"Some","Fields":["46.41.142.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:25aa:1:9000::1584]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dustrelay"]},"Identity":{"Case":"Some","Fields":["zEQcp+u3f337t++3fHi7Nxrzomw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IjJnOj3wsIWweHmJCwkhV5U1DR9OGsh6nM0paIPm19Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:11"]},"IP":{"Case":"Some","Fields":["123.208.202.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zEF7MT6AhyiwGdgkRwfR3eBNmCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LsocjAiu1Qt71d4Y3XA6X+SX2psIMj0jHDFfSekKcRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:20"]},"IP":{"Case":"Some","Fields":["185.217.0.89"]},"OnionRouterPort":{"Case":"Some","Fields":[49834]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taxburrow"]},"Identity":{"Case":"Some","Fields":["zDET5tUNLMehyslGJN0tbAAh9W8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CrhltH3B+Knlxp6TmcV+GlQMIL70dxqJ8ix9RYYCzTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:17"]},"IP":{"Case":"Some","Fields":["185.193.52.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PapaJohns"]},"Identity":{"Case":"Some","Fields":["zC95MsmfmHijTu4BqQibTqw2yPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TvwPfkT20r9dJeASaHc7G0EphzVRPlRLDfHauxp7QfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:32"]},"IP":{"Case":"Some","Fields":["5.254.118.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange019de"]},"Identity":{"Case":"Some","Fields":["zCF5qX1OxVv6VrJ/IwDFMWLOu24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JZXrcuy/w3AKebLOAVm3/+ViO4TxM4dw+KtkFPq7ne0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:54:17"]},"IP":{"Case":"Some","Fields":["213.226.71.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex38"]},"Identity":{"Case":"Some","Fields":["zBTJfx0j7pd2aCj8jthYLiHhFmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a0Q2zO/i1ZWUKKo7EmdKFTmuTk71A22gIoRKX3nP0ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:07"]},"IP":{"Case":"Some","Fields":["199.249.230.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e657]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maulwurf"]},"Identity":{"Case":"Some","Fields":["zBHP9FPq9UtPtQwCq2mlFAkj9q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aRdYo/PvfVvylLUXqQKCvRSHrrUo4p7AZO8nkL/i+fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:54:36"]},"IP":{"Case":"Some","Fields":["109.70.100.68"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::68]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["zBANwBeiXiRMNclku1GOQwhBWsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l9EjkbmqpIrJ6XqMic9YEY4ZJci8gGTre/l9PLKZKuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:34"]},"IP":{"Case":"Some","Fields":["37.191.195.63"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fedc:ac35]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc07"]},"Identity":{"Case":"Some","Fields":["zA7R07/H1ojzPZZ/uoIEWq4nkM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lkOT9o12GFZEEA5JW1DdbogLZcjOuY01psQ2jq6GGZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:27"]},"IP":{"Case":"Some","Fields":["185.100.85.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Grexit"]},"Identity":{"Case":"Some","Fields":["zAqJIX6ZmmR40DWBFskmYl+E6+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["joyqBh0l05Xgo8Wk5rjRQt6XrXeBVUkgziR21LYjE1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:14"]},"IP":{"Case":"Some","Fields":["185.4.132.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenStar"]},"Identity":{"Case":"Some","Fields":["zAnfsBYIGtUGhtrJZEC7LW80MlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f8qgPyirrTkKOvt2SuKhGmvnGiytgWsK3UqYqmWq4ZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:57"]},"IP":{"Case":"Some","Fields":["51.158.148.128"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:1000::a]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra63"]},"Identity":{"Case":"Some","Fields":["y/75DnowTpUVoETGHEEXzZdmBQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L8yfyZz8sMMsdq5HR5h2gH1qsgVShBvrm6OUw7bzEZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:44"]},"IP":{"Case":"Some","Fields":["107.189.30.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charybdis"]},"Identity":{"Case":"Some","Fields":["y/Wexbn9EICSrpFJ79rkH4gtpmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PA2m5epzjfbKdK4cZ6jUz7Y4l3f6JPL874pXom7d6Eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:09"]},"IP":{"Case":"Some","Fields":["92.205.129.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nope"]},"Identity":{"Case":"Some","Fields":["y/OICZzO6eZ//dP/qxGPKh2Ajzs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7x0J3/ktVXM4rt+zKNDlz57L4vBid6Dor4wxp6TRYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:00"]},"IP":{"Case":"Some","Fields":["64.98.231.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonlaogzed"]},"Identity":{"Case":"Some","Fields":["y/DM2dgNei+C5Pthw2+2iYpOulA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83Qqv23GtvWydyeJlPoSxIVYqn1q7aXql2UFrTjQ6mQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:55"]},"IP":{"Case":"Some","Fields":["185.220.100.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:6::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bad102"]},"Identity":{"Case":"Some","Fields":["y+E/740uoxxSYXfsJd9522hNVSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bxOAhXCZj5htojmOPMvgtxp2llNazoRnia+EDy/bVR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:05"]},"IP":{"Case":"Some","Fields":["138.68.52.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::2105:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reRelayJI"]},"Identity":{"Case":"Some","Fields":["y9/66ZXwW835b2VNdCfVr3CHSA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rte3zpD0K6c61ZUcdk0jrJQonOYmqX07cGTN/uXJ3U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:40:11"]},"IP":{"Case":"Some","Fields":["31.220.7.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bananator"]},"Identity":{"Case":"Some","Fields":["y9xW01RSnRzZaIJ1DQsqNEitBBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VRdfbH6/fvRUzVXzz3Fq513QKjcJO0moQEeEjzCM92E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:35"]},"IP":{"Case":"Some","Fields":["84.172.215.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nightie"]},"Identity":{"Case":"Some","Fields":["y9tM1y6oCBGdNyP3zaRK6taD/No"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Wzev+ITqIn7EWMu/ObvndNMih+X9Tj71LF4FS4vd6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:04"]},"IP":{"Case":"Some","Fields":["45.141.156.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["y9AJWKO4l3dOMz11wk5qdfUiDcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YgkKoL6BJ30tWZ7DeYkxHrp4vX38uvC0drl02NV2S5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:57"]},"IP":{"Case":"Some","Fields":["185.165.240.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RaspPi500b2"]},"Identity":{"Case":"Some","Fields":["y82cS4aZG3tC0MIht5ZBl0r9+rc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmqsmHa2CaayNA0RaY8irL2+qYyU/QYxtAMxJKMK6n8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:34"]},"IP":{"Case":"Some","Fields":["31.209.59.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xor"]},"Identity":{"Case":"Some","Fields":["y8yF8zXiBwX3kc/IaFlRyQ4kE00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hMcwIWCkBC4KD6YPWCUUxLq2fKdUnP/wd8Y1pWBiTLc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:23:44"]},"IP":{"Case":"Some","Fields":["185.56.83.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:e80:3000:1:bad:babe:ca11:911]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NA"]},"Identity":{"Case":"Some","Fields":["y8gmKqushKrrklTD/Dh38Mli888"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IDTp9aO/fQVtA93hTH5j+ZJzv0awtJG6RMT7su4aC7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:30"]},"IP":{"Case":"Some","Fields":["18.188.203.202"]},"OnionRouterPort":{"Case":"Some","Fields":[3128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrmmlNott"]},"Identity":{"Case":"Some","Fields":["y7pA99nyhPR6JD7iwIHpZoJ0HSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5pjMihDxGhzIAB808EBbIGdEfWOIxdU50Bbz1AfgjcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:34"]},"IP":{"Case":"Some","Fields":["176.9.39.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:508a:a62c:457:6b0c:a1f9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YouSuck"]},"Identity":{"Case":"Some","Fields":["y7TujOgx1lM9UeoeiNoKV1zUhgM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMWaVr6BNz2DUKxcQ8KqgmPgszhDHBzOzA1G0X4fXe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:03"]},"IP":{"Case":"Some","Fields":["101.100.141.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["teutates2"]},"Identity":{"Case":"Some","Fields":["y6ZTuGeM9773wsG83KCAfNRJqKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VqzBPWW7rCO22sXw/Avb2bC7ZXyFhs09hloqAoIN68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:13"]},"IP":{"Case":"Some","Fields":["37.120.190.6"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["y56slFgyzsjTbMF4nJ0xXaji7+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7Qfc3VARF3VLHiIoWXsZ/7Bvbc+aQhq6TtRppKdbIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:09"]},"IP":{"Case":"Some","Fields":["172.105.26.73"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:92ff:fe8f:4c25]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pinkiepiie"]},"Identity":{"Case":"Some","Fields":["y5wsrClyIPxneANfnxRybQLRElA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["llYxC2219DSB8bnkNb158ILptaQ6l86r7GTn1zrTJH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:22"]},"IP":{"Case":"Some","Fields":["179.43.182.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["y4+fP9aolHujxb/dFNe74KzOP9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYmaClw9QN50WW/T+R7WyPqYKrQzsXzO5Ip28OVLNGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:02"]},"IP":{"Case":"Some","Fields":["23.128.248.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::82]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presidents2"]},"Identity":{"Case":"Some","Fields":["y4L+xBVq4GEmDEQkzxk3u/7TTW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4AUMTL+x3ukPbuG3hRp6k0Sv1j02pnCadI8VpKmzOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:34"]},"IP":{"Case":"Some","Fields":["45.58.152.46"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ss23voyager"]},"Identity":{"Case":"Some","Fields":["y4G8/UT8FCYWu1mDZIvYrwGTB4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8YKMoied6QbUXZbhH/krAZwTwmJc6rv56I3FZyj5WIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:22"]},"IP":{"Case":"Some","Fields":["114.23.164.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noconname"]},"Identity":{"Case":"Some","Fields":["y32xMXLhXUrX+UBGZwId999umko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9TOYgYsNIFAXI9pOZgWEl9XmxwVZWLb37I4oQ/cgIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:13"]},"IP":{"Case":"Some","Fields":["163.172.213.212"]},"OnionRouterPort":{"Case":"Some","Fields":[10010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN25"]},"Identity":{"Case":"Some","Fields":["y3wNhB/jdu9D94Rf8gGwKQwKI54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqjq9A51Rh8t8tylt/5thRjE/KEILgi8MPwgsoK4zLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:55"]},"IP":{"Case":"Some","Fields":["199.249.230.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64e]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash3"]},"Identity":{"Case":"Some","Fields":["y3QBlNZgZNimbLBxvggHleP/pxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nkt1/7MOREBJBFbf/XG+0/JuTu/BmfaRxYUzw8x2xRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:04"]},"IP":{"Case":"Some","Fields":["51.81.48.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who9USicebeer19"]},"Identity":{"Case":"Some","Fields":["y3Hd5wqeydxrSK0Nb1/TKsZsytQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dxp1BmWy34DXf42TTP2nqwMYePuzdonkcQUMV3XURkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:32"]},"IP":{"Case":"Some","Fields":["107.150.32.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8116]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yuuri"]},"Identity":{"Case":"Some","Fields":["y3EO5/PuMXpe8BRKfutbnbBqIKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7MGAi80IkfVhipHEQR17Facpj81w0if6GEmEn0Dzxx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:25"]},"IP":{"Case":"Some","Fields":["89.102.157.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["y28Huz2Boy7yVp/E4FEeNr8kwDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWPccMR+5vONjMwSXR5jvUSGwCEWRxRh8zwtk+6A7WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:46"]},"IP":{"Case":"Some","Fields":["185.177.206.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::140]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jehovax"]},"Identity":{"Case":"Some","Fields":["y0qgefnpBh1UHlqu2w6VKjiO7UU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ETuI701jQ8YMYye7QfUbA1gBhdKZ3gj5lJA0Lme7TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:10"]},"IP":{"Case":"Some","Fields":["5.2.72.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet3"]},"Identity":{"Case":"Some","Fields":["y0J3Lj6PNov1EciQ4AUajfKoTD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FMc2GyDMb2KndWNojCfmyBUdmbjgY90vrEMaTFlS9YY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:36"]},"IP":{"Case":"Some","Fields":["37.228.129.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:1:1a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CrashMe"]},"Identity":{"Case":"Some","Fields":["yzudmTKlHyouEg6uC1+UCe43HoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kd4EnflVqNy3m3u5tyEgI4XW1uNdbCMboUQelcAONTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:52"]},"IP":{"Case":"Some","Fields":["213.252.140.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krelln2"]},"Identity":{"Case":"Some","Fields":["yzCQ9vWTdvBU7s/wZyqy1Yv8unc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GClSlrEc3b7B0qKB9dbZNZ1dNBuHf2aAp3uPsvWFA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:19"]},"IP":{"Case":"Some","Fields":["159.203.66.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::81d:3001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay26at8443"]},"Identity":{"Case":"Some","Fields":["yy7I2AYkym3VCS4aeU3qSIqBtQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AeW+IX6uucLjtoAUosD5DUVt7/5r4BCFgHw5GIS6YDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:07"]},"IP":{"Case":"Some","Fields":["140.78.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra9"]},"Identity":{"Case":"Some","Fields":["yyiSXaYQaaQ1hAMNJhBHHx/9QQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aUgms+/3mmBFs4JlN+HqbwqQGE7z6Ke01ruKtpYI1W8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:06"]},"IP":{"Case":"Some","Fields":["178.17.171.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:129::4938]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leonidasI"]},"Identity":{"Case":"Some","Fields":["yyACNwkSn8OjE/t/NWjWVk3Ts0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQV46JMtfz0BeOJcBu1d5PbmxM68SkBpABj6W3/cfdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:20"]},"IP":{"Case":"Some","Fields":["185.138.41.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["esojcmlin"]},"Identity":{"Case":"Some","Fields":["yw4pIOykr2S5q9fjRuonUvu4Y2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xk4uzR0xoY3c1Gau0YRF+ajFFjfsHMChK+my8Ha0zwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:50"]},"IP":{"Case":"Some","Fields":["50.116.35.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:92ff:fed1:4cc7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay0001"]},"Identity":{"Case":"Some","Fields":["ywQIRsZH8zjuGVDGzAMmcQIIjFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xMPwT/ekJWuA2QmsGKuRSYzhN8UI5vQe6iVCJkX2+y4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:42"]},"IP":{"Case":"Some","Fields":["153.126.128.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:2500:102:3000:153:126:128:94]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Benis"]},"Identity":{"Case":"Some","Fields":["yvv2NlI2OgSVFSw85HpJHns1tKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kx5iUmIjXXheDei6FBtCuagrLKc6dmyWKItGUCeJA2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:57"]},"IP":{"Case":"Some","Fields":["144.172.118.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maschinenraum"]},"Identity":{"Case":"Some","Fields":["yuimS3n2HljZuKn69bLkijIbKpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JXdHKBCE36+n5V63/JmP4aKFUhkTc9LZzYn7Pe8yCD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:46"]},"IP":{"Case":"Some","Fields":["82.135.68.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beroal"]},"Identity":{"Case":"Some","Fields":["ysWQO6dL61hd2UfrZXsZWOJfbMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OG4CrEZAcCtcirGNC0eDfvPJq+bLOtTepXgovo8cd+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:20"]},"IP":{"Case":"Some","Fields":["192.162.141.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["yqrgVaGnfSNg+FG5Y1fZxth5z4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HKUBJp806S0uxdwhBGfdtgjfxJkjgNkS6ogNFQvt3zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:35"]},"IP":{"Case":"Some","Fields":["198.244.207.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:b29:116e::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt27791"]},"Identity":{"Case":"Some","Fields":["ypka1IsEaAh4D6B4Z8SII2U5FjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aN55/YzNxfRp4C1KPnZIZZXuqQPfquxSE3+tgchYzKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:43"]},"IP":{"Case":"Some","Fields":["185.245.60.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AS62788"]},"Identity":{"Case":"Some","Fields":["yphs7gkJC1ObyApXxb2Jt3AnsZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRoR1BvsBfBPnkp/xWOhvIX73O/2vk3wTya0OTNGkp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:34"]},"IP":{"Case":"Some","Fields":["67.219.136.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fd23:1:0:acd9:f8ff:fe5e:d77]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["renewablefreedom"]},"Identity":{"Case":"Some","Fields":["ypRwQhcmDnSD2ohxnKzXqUxWTVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OgDWPAO4l8tIHYGR/jxIWOd0OYPySBEHyoLT5/oHW5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:13"]},"IP":{"Case":"Some","Fields":["185.220.102.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yn9HDGNEJRSgvUVQpRgJndc/62g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKaU7y3WT93Cnj9OlFocXPmqO98pGVJdO+fq+XJRS1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:40"]},"IP":{"Case":"Some","Fields":["27.133.153.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taskbar"]},"Identity":{"Case":"Some","Fields":["ynvdHOubb7O52LL/uarH3ObsYdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTtiBS7A9+QIt+5mSZIU9fnn0xzSzR9VxUGJeZmayDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:27"]},"IP":{"Case":"Some","Fields":["104.217.255.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff1"]},"Identity":{"Case":"Some","Fields":["yna37QSvIdGvOLhsd9U5pMA0zxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L8rSV2ps8wJenhQrMzMlmsoKSBIolWZfIx2iJc5Gq9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:26"]},"IP":{"Case":"Some","Fields":["198.98.62.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["foxican"]},"Identity":{"Case":"Some","Fields":["ynaaTEGfu+r32NMN03Ohjefj2Ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OpcUPNW73yd+K1y1G7b/FBD1JFapTepiufOdQ5rU6io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:42"]},"IP":{"Case":"Some","Fields":["62.171.137.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrPi3relay"]},"Identity":{"Case":"Some","Fields":["ylnRLOiyOeTmINwtoC7f2r4F4FA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ato1V+NX7mszXDg5TgBt8RY16VK2POAwftF3NJG+vzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:31"]},"IP":{"Case":"Some","Fields":["207.216.25.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9002]},"Address":{"Case":"Some","Fields":["[2001:569:5197:1800:45a0:7316:2b70:2ca1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NYCMesh1"]},"Identity":{"Case":"Some","Fields":["ylLkI+y/fQe7jhE5o5tNhmjP4qQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c8bLb50lYXOGhyMwG5bPwgiCyYOIebuKe4/W1zbpPA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:20"]},"IP":{"Case":"Some","Fields":["199.170.132.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webthegreenmileplum"]},"Identity":{"Case":"Some","Fields":["yk24Jl8UqT2KjViOw86FG45ySCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/5vJaLUF5G7Um3GCqvH55Bj48LGMxy3JnVRS137aKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:12"]},"IP":{"Case":"Some","Fields":["89.39.106.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clanofxymox"]},"Identity":{"Case":"Some","Fields":["ykkH/i62902HuFpSjpeF9fSn6GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XNXm1v6dyZZH2AwrNYcHEo74cTXseW1zAvNNmK4dpLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:53:43"]},"IP":{"Case":"Some","Fields":["185.119.119.164"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:14:164::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sillyhydrant"]},"Identity":{"Case":"Some","Fields":["ykcMvxsHn6yiWmI52VnLy0yomos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6LKymTvz6DDBiSGHA1UwXfXViylSlCOwaj/gHhigGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:14"]},"IP":{"Case":"Some","Fields":["93.31.215.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE01"]},"Identity":{"Case":"Some","Fields":["ykX1S9XCFY7i5kyUM1he3ISw4UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wp8izanGc3Vn2yPHZO7Gb4XdNoBc6PbiQZUbUaS/t/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:11"]},"IP":{"Case":"Some","Fields":["79.172.193.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:730::2110]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedMKUltra"]},"Identity":{"Case":"Some","Fields":["yi64pdxL2KDIfkwwBU54IuU9PiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/3TbaroFSTClyj1frbHxJx/TMMDhYShfP1Xyx1K1Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:26"]},"IP":{"Case":"Some","Fields":["23.154.177.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beckett"]},"Identity":{"Case":"Some","Fields":["yhiy82tR30leEwqZouAYwqwI79k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GV0qvBWdrsd5YkDO08GRR9Ky5cRLuJ76X5yTap1vByY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:40"]},"IP":{"Case":"Some","Fields":["192.9.171.167"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["D4rkKn1gh7"]},"Identity":{"Case":"Some","Fields":["yhaEUWt/7PPbdtQ/0C9W2Lleimk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UUuxu15pcgrI++jH4fZztpf4PLITd0i4fkQQywFneW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:08"]},"IP":{"Case":"Some","Fields":["142.132.157.35"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:2ced::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pbx"]},"Identity":{"Case":"Some","Fields":["yg9ZFvIUd+rTblP9ej0O6l/aL6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4rgc/b2EdR0U5pl/mW2XxgrTbezWE/tWkmg2NC/RlFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:50"]},"IP":{"Case":"Some","Fields":["94.140.116.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::f2d7:40df]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["jetplume36"]},"Identity":{"Case":"Some","Fields":["ygrwqwPddeg/yTRFZpiWQuPV5DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J78M2II0iy5IS2HysuXrdurj8QAwIc693S2RfKjFswE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:24"]},"IP":{"Case":"Some","Fields":["195.88.74.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d0m"]},"Identity":{"Case":"Some","Fields":["ygrJGTtWZYGOpTIreUiaohlRxlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDSaUXXEBZshGCzjt9q0plqGEBgIpUhL/RVbrgvaS8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:36"]},"IP":{"Case":"Some","Fields":["51.158.148.216"]},"OnionRouterPort":{"Case":"Some","Fields":[8843]},"DirectoryPort":{"Case":"Some","Fields":[8873]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:215:208:a2ff:fe0c:6c04]:8843"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lantern"]},"Identity":{"Case":"Some","Fields":["yeLqwXWgFANVxkclrR5gBOcHLz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3CsPL8h04optWgyV2pHkVwAGteYvJhCaLv8sAfRKq3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:03"]},"IP":{"Case":"Some","Fields":["217.170.204.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CamusprOTon"]},"Identity":{"Case":"Some","Fields":["ydn6fsBW1izJZx9IBPIqCSahGHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RO4XmN4DHqLrTW+KZW06fFcKhqodUAKd3iBa11wN9fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:40"]},"IP":{"Case":"Some","Fields":["93.95.228.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8af34cb1"]},"Identity":{"Case":"Some","Fields":["ydArFkS9R8E243n9+vSXPRoc4Hw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M51T2CNbDadUQvtJq4yx4YSi2j3gBa4wob5Y4cuTHXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:37"]},"IP":{"Case":"Some","Fields":["193.111.26.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["remember300baud"]},"Identity":{"Case":"Some","Fields":["ycHRGkDW9CwZQsrO1s964nAGWkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBpytwTN1IsiQhrgcd5TmtIMLgJhQ7xkAkWw3wE+c+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:44"]},"IP":{"Case":"Some","Fields":["23.83.91.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fit4research"]},"Identity":{"Case":"Some","Fields":["ybdauOYVecfD0B2ZztVq5U6TPLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/JYHWY8JCmL+QuWCM3OaaPS4etFnJ/mBhU0P8xVrGp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:48"]},"IP":{"Case":"Some","Fields":["150.43.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sybaze"]},"Identity":{"Case":"Some","Fields":["ybaMgCyiDD5PpG13FT1u3IDxPPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IToEuAtzsJaDeLPL12XymKW+haNT3Kowi8xBmG5Ovnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:53"]},"IP":{"Case":"Some","Fields":["92.243.0.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:feb3:28bd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charles"]},"Identity":{"Case":"Some","Fields":["ybNKvyww2la9AGt7QmEAmAcr70w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3eJylEZrmQpi5Tj0mfft+ZuQwmOetV5103/ajiukhRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:52"]},"IP":{"Case":"Some","Fields":["54.93.77.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CedarHill"]},"Identity":{"Case":"Some","Fields":["ybFrXTf1McjGwCgeTsTwVuhFQdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfIiNXGjSwmIocF/1BCpJAeht7oMRrBFWBWM0XTEdGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:48"]},"IP":{"Case":"Some","Fields":["45.33.27.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:feb7:9351]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a123"]},"Identity":{"Case":"Some","Fields":["yZp8/rHMvLIOZBInLMhsk7YeKiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZeogzYOGRvBR92KIK3nGKXF4heurcrJ4w7dJDSAsHAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["3.145.139.153"]},"OnionRouterPort":{"Case":"Some","Fields":[30002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yY6jm64sax6kRA8UOdd0RIQ16rQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CBif5NLnKhbnc6YkUTLYf+FXyGg2AZ/iPy8EbxtTt3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:31"]},"IP":{"Case":"Some","Fields":["5.196.71.158"]},"OnionRouterPort":{"Case":"Some","Fields":[41899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:49e::1]:41899"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BrightestNode"]},"Identity":{"Case":"Some","Fields":["yW1q7XluG5V4m3Ux+ISKyOxhbDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bq2Y1jMH/UO6mAqcrvdDwR68BkhA+TSUR6UJtt0vWQY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:33"]},"IP":{"Case":"Some","Fields":["152.67.79.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc04"]},"Identity":{"Case":"Some","Fields":["yWLYZa5ytvLvCOd/OxWJS5U5wrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M6knfPir9iVQdeQpAIfbcZA3ExHm4t0STRg7eyk8mW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:09"]},"IP":{"Case":"Some","Fields":["185.100.87.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay41at8443"]},"Identity":{"Case":"Some","Fields":["yVJYcuOqkmQC2JmAhaQJx7vfrlk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kks0OkZiJt0legKLXegqJw6w+Vg+tWdoYntVNa9MWWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamster"]},"Identity":{"Case":"Some","Fields":["yUNDMCtjGhOm9RDpZISWCUiOw5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sbmlwp1CJQlWrvDGjPVtgE5J/Ej/HPYohlFKn1p3rRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:54"]},"IP":{"Case":"Some","Fields":["109.70.100.72"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::72]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FileDitchExit2"]},"Identity":{"Case":"Some","Fields":["yS3pIcNKyxwbTqfSwez0oKzSygA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEUOkw7Ux6ZuekF7UXFtJWyKu+864yT1OItHWvFwK2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:03"]},"IP":{"Case":"Some","Fields":["45.134.225.36"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ySpV4tTG/vVofzl4Cf5WvK5Kwjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YAH7CHddZMp1TLtaZBZ/yn637UPZk9rDZa5k5VOVxuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:48"]},"IP":{"Case":"Some","Fields":["89.147.109.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BantuRelay"]},"Identity":{"Case":"Some","Fields":["ySeLYCAl+uQ5u1VLxOEYTP8aKr8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a80Gj2LQi36nQtinKG7y11pqBf9AlITxuzfJo2L5nVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:45"]},"IP":{"Case":"Some","Fields":["54.251.87.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cowcat"]},"Identity":{"Case":"Some","Fields":["yQyjt/4BoUa4Jo1Wl33EosAkueo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKGdhSG0lyus1M8dGuy0tEsnQNnwbHYK3vbXRtUAK4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:39"]},"IP":{"Case":"Some","Fields":["192.160.102.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::5]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["yQV8HFofdQzVKw/Eo7ti0Tmvmuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmNwKir9BeVxbf5fHRqGOjhpJMDziEctn4pI5NvqhEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:47"]},"IP":{"Case":"Some","Fields":["46.4.36.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:300e::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iceman"]},"Identity":{"Case":"Some","Fields":["yQVtMLz5FmW4KPN6hdwSfKxjI7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfVndLuiwT3jp0vWt38cxFYrypNbA4DxPVMjdcYx5x0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:33"]},"IP":{"Case":"Some","Fields":["95.211.184.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AAAAAAAAA"]},"Identity":{"Case":"Some","Fields":["yPSkdTbadXQZzuRF7UrVVuVr2Zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iMiZvzKK5b2X+6srprAdkqJ1kZfqj72oM3KYB/x16gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:07"]},"IP":{"Case":"Some","Fields":["86.124.228.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange003ru"]},"Identity":{"Case":"Some","Fields":["yPQC/fieW1HYYq1o2MF9+lo3G6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UWDQ/sksaWFrsXybKFFkU/gPQ0KbWwRwISK7F7lD+yg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:26"]},"IP":{"Case":"Some","Fields":["185.22.172.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:29::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pros1"]},"Identity":{"Case":"Some","Fields":["yN4m0tEZvn9Qnmcu4aPV+yXcupc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yp8TGSgmTtENi7GAnUKYuVLHgUEVbJ0jzQjfSC6y8d4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:30"]},"IP":{"Case":"Some","Fields":["45.58.154.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saucer"]},"Identity":{"Case":"Some","Fields":["yNIH/gHSQfmshvKihRzcLmmY5Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bSoMwWyNq+79il1maD0vFhu9Amg7KUifff1cwMiaVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:47"]},"IP":{"Case":"Some","Fields":["51.15.250.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cressington"]},"Identity":{"Case":"Some","Fields":["yMO5oRgwMUwVOM8Zq8OrJljtaz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QPDQD9JNUbdMg3q3uomfZcIuwUlYayeT/DkZ2LdlXyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:58"]},"IP":{"Case":"Some","Fields":["190.10.8.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rigel2020"]},"Identity":{"Case":"Some","Fields":["yL7z3wevOLaN0NqRsjsZ69LHZn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91CswAQpJjJnadGGn6xAaavz5fNti3PbfRzdfpraHJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:07"]},"IP":{"Case":"Some","Fields":["94.16.122.65"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipbb"]},"Identity":{"Case":"Some","Fields":["yLcV+WFo1BTlgKmFY8H4Y3LT/iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zmC6jN+1zxH9/k+Fy/QmbWjevLyFO2gu740mIiCGgV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:02"]},"IP":{"Case":"Some","Fields":["185.220.102.241"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::241]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dustsandstorm"]},"Identity":{"Case":"Some","Fields":["yLNPwxnjMBhZ/bvCOTNwgTAviY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4mr1908JDtsGjQUlkugRDq6EKjp7raLYWDbprEctuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:09"]},"IP":{"Case":"Some","Fields":["202.157.177.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei07"]},"Identity":{"Case":"Some","Fields":["yLI+pUP61vgg5YQag4DcKMg66g8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["76cx9XrQ2CIRVlrg8fKUsbgivBsq4U6XwOkQXR1j4gE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:53"]},"IP":{"Case":"Some","Fields":["37.120.187.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:64f:5443:78ff:fe62:7ad8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mayforth"]},"Identity":{"Case":"Some","Fields":["yLDHcBh08LWvzasLriMf4wPIIo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y3UeV+Tm/67WetC+SXTPqbCYaD3FfO4O2kmksIA33cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:51"]},"IP":{"Case":"Some","Fields":["43.252.37.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rucola"]},"Identity":{"Case":"Some","Fields":["yK4m1IGVBNAVetTF3n1aCn4ZDRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P+Zi0VJvrPb+6x/003JZRW5NCEgMN+WFUX09uJE6+YI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:29"]},"IP":{"Case":"Some","Fields":["109.70.100.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webhusoB2"]},"Identity":{"Case":"Some","Fields":["yKtwRGg/gmGPrV1SG1XHeyn8ByI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wR9tJJoPx3Uj7Jeb+OaFrGXCpaSIps1TqypVBko5OhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:10"]},"IP":{"Case":"Some","Fields":["89.58.42.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:fcf::]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM05"]},"Identity":{"Case":"Some","Fields":["yKny5CSxnkeatbnPYqbJprOsElE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lw/nKbqcZuyDBiAl1gU4ID73VuXVHHXBhbhWOrsrjZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:02"]},"IP":{"Case":"Some","Fields":["185.239.222.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapNYC"]},"Identity":{"Case":"Some","Fields":["yJnyDcgAUDfIaw5EeFc4PZX8dCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ipE6b2SuybffGjKvO5u97AzmVEag6k3gLEs7CLyiRA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:58"]},"IP":{"Case":"Some","Fields":["67.205.139.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::237f:f001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman2"]},"Identity":{"Case":"Some","Fields":["yJYdu5sePb0RxSeciyq3GAvezIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9sA/O8Na2arwshYh6uOZT/JkjtRzRSyaU2HlI+x1Hvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:06"]},"IP":{"Case":"Some","Fields":["85.204.116.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:35c:4901:8a03:8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jabberwock"]},"Identity":{"Case":"Some","Fields":["yIl4LhL3OOIvCEjvVZyealBBt64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GGu2MrW32YIjIvG55WzN4U3N2U11Xpk+ZF491FSCxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:50"]},"IP":{"Case":"Some","Fields":["137.184.42.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::4f7:f000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809nl002"]},"Identity":{"Case":"Some","Fields":["yITEmb369+fV5mZya8Ox8j0vH00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["id/miQa7qnbVyNbqjH2jO7s6rsNEIdfKncLarPYOe+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:12"]},"IP":{"Case":"Some","Fields":["5.255.96.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:164::99]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waphul227"]},"Identity":{"Case":"Some","Fields":["yHPZ2N88tqT5KwencZPxoTk2R38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPk8c0h5q8J3rqgh0BW4WqnKmt9Ql8GiOPiRToQAsI8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:23"]},"IP":{"Case":"Some","Fields":["38.132.178.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["newton"]},"Identity":{"Case":"Some","Fields":["yHHJFImIbV4ulME+oaX9xLbcUgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3SvDwWrZ2Fg6iz3mdIioBV7Ibc64zTAjH4jNSvir+pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:02"]},"IP":{"Case":"Some","Fields":["203.211.120.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WdTor3"]},"Identity":{"Case":"Some","Fields":["yHAJFqyhHGnpimmlOvEXpKvukQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6bhejdDn9NMHT7ptJNL/EJTHGFgf6LOLVVPoANuRR5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:52"]},"IP":{"Case":"Some","Fields":["54.37.136.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xkcd"]},"Identity":{"Case":"Some","Fields":["yG8PdLr5G/zeGAB3zZfDOdz2ryg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFbSHOep/Zh4ND5NERhwDJl5AzqWX40FICxqOjPEZj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:51"]},"IP":{"Case":"Some","Fields":["144.76.223.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:1e6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charon"]},"Identity":{"Case":"Some","Fields":["yGxTjvCiTgEDQvMNvKzCp+t8qDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWz+K/4Od8o3+2/QOnve86QnhSM1aYIRkXbb3EkgQuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:31"]},"IP":{"Case":"Some","Fields":["173.249.8.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:1074::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra66"]},"Identity":{"Case":"Some","Fields":["yFswqDVugmQYy5ASVLdZX+FDBhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p2IX/0xZpsIxk8nOyfQ3O4fG7x4GL1AQ1gweqD+Rm34"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:53"]},"IP":{"Case":"Some","Fields":["107.189.12.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["athenaharmony"]},"Identity":{"Case":"Some","Fields":["yE8kjTskZVzJbhezz0HguI0olH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IYr/jxbgG7Bq8L7SnhWdGGqJPIYIy8Weov6FgIxOsk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:15"]},"IP":{"Case":"Some","Fields":["95.147.65.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra74"]},"Identity":{"Case":"Some","Fields":["yDHP66JAfvSdkW9okPe5NnqotJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1KisQ/eWJRxoB9aJM6K9m4SLEsnwhH5mVMjukyRGEFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:46"]},"IP":{"Case":"Some","Fields":["185.82.126.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["yC9GE6Jvfihro9hc8ntgJ8Nf3yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KyQwj5ZY18iSiv/ws/jk8o7k7BYebNuqWu6aYly7eVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:36"]},"IP":{"Case":"Some","Fields":["5.45.98.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["yCmzxVfLZEpfq1mOjlcUmxFcSF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NZsaXrbjV0ljVUZteIwJcs8NAvSh1lDHZWh5BG5rorw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:00"]},"IP":{"Case":"Some","Fields":["77.68.75.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:d4::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["yB++tr+l0XzFcwMlwp+YrwDuzU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qG+W4Mw3x6Lhu80DW2rCNxUActiUOI6ZgthlnDP50Jw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:41"]},"IP":{"Case":"Some","Fields":["185.177.206.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::141]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Moonbird"]},"Identity":{"Case":"Some","Fields":["yA60txzotzssJXqmNHOab3ZVVhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jf0BR/p48x0rdhdDJhZ2UtzTtFpDwjJvmG8RM5ia+Qg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:04"]},"IP":{"Case":"Some","Fields":["198.98.59.243"]},"OnionRouterPort":{"Case":"Some","Fields":[7101]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MCdrKNe2"]},"Identity":{"Case":"Some","Fields":["x/9gbVnH9r7KijQdPPEbQj84LV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HOy5aPtgzZGQTNGMAlOHqKsbrxlCMsV8x3fEP0qVskE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:47"]},"IP":{"Case":"Some","Fields":["94.16.121.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OsamaBinError"]},"Identity":{"Case":"Some","Fields":["x+n4KiSlvwRiX65qT0sMWn9EG90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lejdaESR0jmdOqREAJ/cGeDSWTQ6HAjaAk/2bEaPEag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:29"]},"IP":{"Case":"Some","Fields":["95.216.140.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["x+SmNnA4SfEvn4Q4/vomtp/fJBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["12rG2yXJAujKCOsiAtzH+PJ7LF2Kv/dVStQolaO5pXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:14"]},"IP":{"Case":"Some","Fields":["45.132.158.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:4592::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lptr01ORFzF4Zq"]},"Identity":{"Case":"Some","Fields":["x9Bm1nJvD+oDY5kSL5/eSWh4qT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HfFCH6XQ3xnPVwQje/4tXCZx+iWKu0WF+mCrsiqaTok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:42"]},"IP":{"Case":"Some","Fields":["213.188.235.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["webhusoB1"]},"Identity":{"Case":"Some","Fields":["x8cGaUfrLhbJlO/633uwal8eXiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aM+mrcgrB5BMvbqHuaQDAZiPbaGbYr0+Sxpp4rkJn9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:10"]},"IP":{"Case":"Some","Fields":["89.58.42.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:fcf::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedAssange"]},"Identity":{"Case":"Some","Fields":["x6grRi7+9EZRx5nL0wYh/g9Io+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j86DRS8Ja2lB2ewtjA5V4eYmMq6WblygLQ0fZeURZdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:07"]},"IP":{"Case":"Some","Fields":["23.154.177.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stars2"]},"Identity":{"Case":"Some","Fields":["x6RshmuWP8D1wOnc43XIadQPI+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YNlnAVpD0oMoDsYEQoQYhYVU9//g56OvI5Cp013/fSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:50"]},"IP":{"Case":"Some","Fields":["158.69.204.36"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["x6AW4fhc991zkUrkD1W3GD0RuP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KF9zFsJUXI+zbtZsTlLatmZeIUjlmdvokG4clFzscF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:56"]},"IP":{"Case":"Some","Fields":["185.220.101.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["x51P5uyGhhI5btZs3ednj470Zqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8gAqqFt0GXFhORU91EpHVYYZZxOxvWJr/dCXZWXwqVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:03"]},"IP":{"Case":"Some","Fields":["198.98.57.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zeilentrafo"]},"Identity":{"Case":"Some","Fields":["x5gg8rNIWyWdQIUWRitwDpkASHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kSZ/QFAEeKLfIch12uW/cr+Gd8gKgMr41vBAE14Ge0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:12"]},"IP":{"Case":"Some","Fields":["94.199.214.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["t0adwarri0r"]},"Identity":{"Case":"Some","Fields":["x5RtmhkrvkTByKkmqLE1rEldZjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qqo2kkxKjjXDPsQl/u4/89z1G3LBW16RVCdNz1YnT9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:30"]},"IP":{"Case":"Some","Fields":["198.50.238.128"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xqw33ds"]},"Identity":{"Case":"Some","Fields":["x5AuOeQjz8SXEP3/HOELo0Zz0KA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJMgiB+FSzNhS92pbHtORph6OqzAHDytKrg78xdJhbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:57"]},"IP":{"Case":"Some","Fields":["172.105.109.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:91ff:fee0:ba5d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex46"]},"Identity":{"Case":"Some","Fields":["x4r/7uMg6g+GCWF2PmE/0vrIVfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLGIyYAprLfmRMp4bcMZ/AQpziWOuWVr49+8/m+Qnv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:31"]},"IP":{"Case":"Some","Fields":["199.249.230.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e645]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RealityNews"]},"Identity":{"Case":"Some","Fields":["x4ZdWO7+lrkjM+PIvjwKqqAADu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URGwMTuCT/vPggf9cTMEE53HJ9iCN0huEEU60DtoIpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:28"]},"IP":{"Case":"Some","Fields":["79.77.182.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1b62::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["busywatchman"]},"Identity":{"Case":"Some","Fields":["x4P7HMSq6NppSKzYoMBwTQrbpPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KInkIqCf/gGnBnmLOojhtYcsMHTUAdgcmPpnImmG/0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:09"]},"IP":{"Case":"Some","Fields":["195.230.22.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MINJUS"]},"Identity":{"Case":"Some","Fields":["x3jZJ2ahu04gand7FN3XJZ+x1zk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sFygM4RdE/88k7hWq3/HhCb5PF6LFRRDrj2JUX4v/9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:27"]},"IP":{"Case":"Some","Fields":["95.211.118.194"]},"OnionRouterPort":{"Case":"Some","Fields":[7002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tembi"]},"Identity":{"Case":"Some","Fields":["x3NfsDaQlO1jURMOgfPf7SXWf4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AeYtDp9YP3zBzUgWxbYpyyB8RFMvVORBa9A/51iqzS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:48"]},"IP":{"Case":"Some","Fields":["5.45.98.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:613:9872:48ff:fede:289d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["north"]},"Identity":{"Case":"Some","Fields":["x1jgNYfPHxeKx//T433MkdrHuYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cuGvuxGIxQ7bLHgbgeh0WSQgQRzino4/ho9x5QEE2W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:18"]},"IP":{"Case":"Some","Fields":["185.237.96.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["x1Q2b0bf+uqAw5SxvO0uzVbvsJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XyI+v+NgH1c88G4oDiXCfDS/rrai/JTDpquABto59pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:36"]},"IP":{"Case":"Some","Fields":["45.90.161.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::f05d:92ff:feb5:2932]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Midgard"]},"Identity":{"Case":"Some","Fields":["x0bxrEfyw0nkIJxeecJ+YDgJHjI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["avzZjf8S4r4vp6HWGHUdruUPC3v7N4VKv7OJNV5yuKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:32"]},"IP":{"Case":"Some","Fields":["83.137.158.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9023]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["xzljJd6QceWO71pC/Uh/gRF8/8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0hyXWSzYku83ULUyVpyw/jJu5y+JM6rZ24daIhRJXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:52"]},"IP":{"Case":"Some","Fields":["45.88.200.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:45:88:200:0:95]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt98345"]},"Identity":{"Case":"Some","Fields":["xzENc1F5occpfmg0qjTAT2ylPU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hunsDgYAaddXmMItMDG1xvLKOruQY3k13uaP6QfxwGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:09"]},"IP":{"Case":"Some","Fields":["185.245.60.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xypQYd1esinN8Wutp0CUPuru/lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SfRoW3I8TAVKTzg7tg7MzaKeAdyRppMlZ8aR+Z+UNmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:46"]},"IP":{"Case":"Some","Fields":["136.37.102.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[9930]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrh3W"]},"Identity":{"Case":"Some","Fields":["xyog/TP7Kh5ohJVoFIjDcVpmy6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MwVV3XMdYumzmhxConl26UshRpXbMuIndKALMIAjuIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:41"]},"IP":{"Case":"Some","Fields":["5.255.103.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:a34f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xxeEOR8dolYlDAP3rL1IAdA0S7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mS7w/SGqe47VXrfJFGy1BqqyClFSdUeZiSQnUraA6Mk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:58"]},"IP":{"Case":"Some","Fields":["5.45.98.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["xxBvDGp88PWSy6/3x5vYEVOxtfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k8CZJ2toAlPFJz4KIcSTbcY34tISki0euoUAdoulXTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:33"]},"IP":{"Case":"Some","Fields":["185.220.101.207"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::207]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PhilosofRelay"]},"Identity":{"Case":"Some","Fields":["xwJedc+JV3HEBpOhekRRxUKbx2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VMT2B8JOFi0aZ1jqpzrBFkS8w0WsNMP9g94MHAOHDM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:35"]},"IP":{"Case":"Some","Fields":["194.147.115.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1142"]},"Identity":{"Case":"Some","Fields":["xv+ywXBZ4Tw3NllRWYMwzUkGWwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wjY9j0LH0JbmF3KHwLuhKQXpBWbHwKLNNtm6OoP4PB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:18"]},"IP":{"Case":"Some","Fields":["185.220.101.142"]},"OnionRouterPort":{"Case":"Some","Fields":[11142]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::142]:11142"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobo"]},"Identity":{"Case":"Some","Fields":["xvRgnTDBEOvhj1h1JAZYQe79sTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYa1n2O96QY24yYaZYDqAHSytmeDGE+MWeoIO1C1HxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:34"]},"IP":{"Case":"Some","Fields":["195.43.142.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LSRodentNinjaRelay"]},"Identity":{"Case":"Some","Fields":["xu8RXZlzF6MseErA+ZRK4Fgco34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UoAn8N80LvtacPb0UxKdhhj5WRg9bFuz1j6ozkU3o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:44:04"]},"IP":{"Case":"Some","Fields":["52.47.91.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrankhul"]},"Identity":{"Case":"Some","Fields":["xu19N6o8yqWGsi4KMLOVpeWCRAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zux3EZlGCr7W+K6+v7x/5vhfQK5+eObg1oyl/vD/fBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:59"]},"IP":{"Case":"Some","Fields":["185.220.100.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:12::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl4tjdevde"]},"Identity":{"Case":"Some","Fields":["xuzPKsE5ISQlJq6URGE90+dZXaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1NsDg0sAcm6VQZUY4nkFGHsI1Nm5bzz/LGnQQdPZD10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:17"]},"IP":{"Case":"Some","Fields":["89.58.45.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange023gr"]},"Identity":{"Case":"Some","Fields":["xuORDLrcptLX6TKrMaA47dam+3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ml9TH7KFHYfrBPbUgJs3ca8Y/mlq/hh+neqN9Y/PAxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:59"]},"IP":{"Case":"Some","Fields":["185.4.134.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:110::2d49]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsten"]},"Identity":{"Case":"Some","Fields":["xuIzRenbUyW2KulWym6K5tq20b4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["18A44JcOAkdDgcjQIahEyXl/RZ64btd6IOc5Er2NZsE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:12"]},"IP":{"Case":"Some","Fields":["178.174.235.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xsLzOYNuKh7/ZLna/LAMGg1I1cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/yPNC/t7CJEk745d7FH/TVZJ9M8Tk5SzBzZqgzoUKKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:15"]},"IP":{"Case":"Some","Fields":["94.23.150.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0172"]},"Identity":{"Case":"Some","Fields":["xrR+Hw08dfNvoAz2Orq7mE3ROho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0hwn90ra6gVuTAcOM9U7ImGjL86ZoObTFYluEblkhLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:38"]},"IP":{"Case":"Some","Fields":["185.220.101.172"]},"OnionRouterPort":{"Case":"Some","Fields":[10172]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::172]:10172"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesutochuu"]},"Identity":{"Case":"Some","Fields":["xqx2J0A1VkmSvge20SCJmMZnorI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/WyOPl2N1cbVwC6uFKh5X2WkpiZ1N7jEeGrYq1XYjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:40"]},"IP":{"Case":"Some","Fields":["14.9.101.224"]},"OnionRouterPort":{"Case":"Some","Fields":[8351]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[240b:13:65e0:900:8557:7d07:ef6:9efe]:8351"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["T0NY"]},"Identity":{"Case":"Some","Fields":["xqlavtlW2VsBQ18ja+ZtFyhY+XQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wgKWW9yOvSrPtkLk+DPudaTaK0n9cjdMbYnthg/BYdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:12"]},"IP":{"Case":"Some","Fields":["45.15.141.162"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enigma"]},"Identity":{"Case":"Some","Fields":["xqWLxf4KSV6eMiwjVhAeJ9sVLZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XnlqQMAO1ZghBHogYrFXSfzZE+0t1ckUoe31lQ6R3XQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:03"]},"IP":{"Case":"Some","Fields":["193.214.214.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notolok3"]},"Identity":{"Case":"Some","Fields":["xpRpflrzl5Tfbs1+9qCzmXLYf2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2k96vnKXNqH37+WBybAlpTeoMxwvhgDM1ilCg9KUX3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:42"]},"IP":{"Case":"Some","Fields":["193.56.240.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipab"]},"Identity":{"Case":"Some","Fields":["xoiz75qwNU6yeUF0UZu57Z5kZ+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["08Si/2ibOdi7VBas4e0qsUkVn1ccrT21d26E3Ou2zSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:49"]},"IP":{"Case":"Some","Fields":["185.220.102.240"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::240]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE66"]},"Identity":{"Case":"Some","Fields":["xneolA68/JrS3SRp4jCuB9xT7Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WedrMX6d5KEGwwdaJiwOoHILax9ODDTQEoeNe4L29ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:25"]},"IP":{"Case":"Some","Fields":["37.221.66.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:107]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra33"]},"Identity":{"Case":"Some","Fields":["xnOv5c+cxJ5fhk8PgNX+KBSlIjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C4LJlXkxiNe57ljEn0Y4eeY6AXPrff018emCMHNr3Lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:24"]},"IP":{"Case":"Some","Fields":["104.244.75.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frxctxr"]},"Identity":{"Case":"Some","Fields":["xnKVvtW8PmaVBZFZ4fBLJq1Oh9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xR2ThRu4zw0bBu00KYTVz39XhYNDEuE62v5yfvfdOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:42"]},"IP":{"Case":"Some","Fields":["194.45.76.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:4002:600f::666:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Northpole"]},"Identity":{"Case":"Some","Fields":["xl67PuXEitIKH6xjozZa8S3zRvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vFG7d+f/YMNuLaj8IoWpxqew5Ot+TL+UkEucMe9K/LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:37"]},"IP":{"Case":"Some","Fields":["88.195.223.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theseekingchild"]},"Identity":{"Case":"Some","Fields":["xl3kpzgLrKyUeFYZWdxZ3R/14bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MiweFa3m8V1Gn01reH5i6nHa4+7+y4LivfhJ5HCNqhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:44"]},"IP":{"Case":"Some","Fields":["103.102.46.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xluagOpcb6MiUeqvppHfbcn6reE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wauvN5g9PQbvVH95wCxwssOvAR7WivI0GFaLiS2Bvy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:17"]},"IP":{"Case":"Some","Fields":["88.208.240.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:b1::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marcuse2"]},"Identity":{"Case":"Some","Fields":["xla0Gu+0ChQZZ+v0nW5pYDybShE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aLtQs/eaIdd/PceSFNfGXXQWX0kXCnh2jyrn6vxgtqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:05"]},"IP":{"Case":"Some","Fields":["178.20.55.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1b88:4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexrelayde1"]},"Identity":{"Case":"Some","Fields":["xk60VTqjCNj7wxTXO0QXjkyxHDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DkDETDX07s+6SRUfqP8WYEhY9FfN0Bn6LkIYlqvWakg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:42:12"]},"IP":{"Case":"Some","Fields":["148.251.183.205"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:cc::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc16"]},"Identity":{"Case":"Some","Fields":["xkgCs4tBqPIPiEkyhAQp1vYR3LM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEXNI00geDFpaVdG7KIkGxq4ZuyAl/4mkCdM4MyDREU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:45"]},"IP":{"Case":"Some","Fields":["185.100.85.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["xkNLo7kyJcb+2qMmPYUvkU+2YaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y/KSkDVR4l7FVtx5vgRQxvjIYeY+WhI4IokR4t+f35Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:07"]},"IP":{"Case":"Some","Fields":["159.223.217.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::13d8:4001]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lapras"]},"Identity":{"Case":"Some","Fields":["xjnfizjqLhrS9VDyYeW4AyzRRIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lj9toc2criTpTgXIBqIqwxZ9zsWbWEzLkagDHLr3ock"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:02"]},"IP":{"Case":"Some","Fields":["172.127.92.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["xjLHdLbYRgAj9mSMX1/rePYMwhw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q92cnxFZQlVbjXH1oYJacn8f9Isl4Pgr4ElqAfCP5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:26"]},"IP":{"Case":"Some","Fields":["23.128.248.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::18]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xiP5eFjdwg3IAJgmDf3wU8YxMck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cf+Xq5jcd/VpWZSxV+kugbCw7IXzxmWYNtV8t3NbUmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:52"]},"IP":{"Case":"Some","Fields":["188.68.49.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting24"]},"Identity":{"Case":"Some","Fields":["xh0b56Q0pXxgpnuY/JClVR395vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NmIPpa3Rxnky6AjXQ85ULxqbODz/Jcg1PBjNAlVkNhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:36"]},"IP":{"Case":"Some","Fields":["185.103.110.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sam"]},"Identity":{"Case":"Some","Fields":["xhlBEtvtjHmBrVxQXLJD0bqJUL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["84Uhcyh3TYQ78Lx5mkVNMNq+H3Aih1sTnjQwdwPqoyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:02"]},"IP":{"Case":"Some","Fields":["142.188.85.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FCKPTN"]},"Identity":{"Case":"Some","Fields":["xgHfqzMG7w9+3zlvt3IGF1L3b4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVMiat4z5k07Dy9+46omAEZIXXahoWBDQenCCMCEdks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:56"]},"IP":{"Case":"Some","Fields":["37.136.151.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlliumCepa"]},"Identity":{"Case":"Some","Fields":["xfIU9/nMvwkyTJqgMnYBUCQ6GWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNgp4e/hDqQRjCAu5p42YCfLsAmKlWSJ9Ri4KKueNFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:09"]},"IP":{"Case":"Some","Fields":["51.178.82.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HjelmEnterprises01"]},"Identity":{"Case":"Some","Fields":["xfBZGha9aOuIFw2SGw4zHxgOYks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xE0YhpSgqK1gOHqfSp52Zb30kXKXP+Are4OK/WhVhu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:22"]},"IP":{"Case":"Some","Fields":["192.121.108.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vigilance"]},"Identity":{"Case":"Some","Fields":["xfA+enmMojfnvdRAkb7+NfL1muE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p9tDV7qiIAdFAmJHWQ0F8vISKd8SXsFabRzetMqM5NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:19"]},"IP":{"Case":"Some","Fields":["87.236.197.123"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BridgeMcBoatee"]},"Identity":{"Case":"Some","Fields":["xewjsFjSdfjUjKFycninnifpzPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2NO9POtdZz9FusL9TlQBw5LhA7Ru2n72eymSWP+tycI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["142.132.171.253"]},"OnionRouterPort":{"Case":"Some","Fields":[7349]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:9d01::1]:7349"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xeunJOLRkhTp1ipHz0w/stuUYZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CiP3Z74q+BjPA7mbSJ7IGof2cnvhqjM/pDnP/D3NGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:38"]},"IP":{"Case":"Some","Fields":["93.95.230.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anoncicada"]},"Identity":{"Case":"Some","Fields":["xeoyctnrnZjnT0U4XdVSpHsGRvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DZHlZPUGuzLRCSGggf2t1DdGC6e+IVEMkfiykpF/scs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:27"]},"IP":{"Case":"Some","Fields":["51.79.71.20"]},"OnionRouterPort":{"Case":"Some","Fields":[3304]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TreeFiddy"]},"Identity":{"Case":"Some","Fields":["xeQg+vBWgO5ZBUKuchbHdgL+aNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wbOpmRIkXlUMShr/3FTIT01kEvrKY6WUekiGJMNHrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:25"]},"IP":{"Case":"Some","Fields":["64.223.229.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pudzian"]},"Identity":{"Case":"Some","Fields":["xeD/aE+kN7kF9TruRXSdqxho1dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wwbmvG4fjWqtNU60Y0/bt8JUriGhRT6VUGrAI/gctS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:43"]},"IP":{"Case":"Some","Fields":["144.24.163.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venusisland"]},"Identity":{"Case":"Some","Fields":["xd+guEq7AZA5IzzUo8f7kGJ+Y6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P2gSosogGsFwHl87KVpNhsx8Q8HLPy43zHnoa+bcOwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:37"]},"IP":{"Case":"Some","Fields":["47.242.236.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smortRley"]},"Identity":{"Case":"Some","Fields":["xd+Vq6Ypn5n1ApktRv6aZNqxjKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tVEnvasEPunkcit3aVzNuJmhLWKGWrmocKwj8J4v4Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:05"]},"IP":{"Case":"Some","Fields":["65.108.130.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:2e69::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aggie"]},"Identity":{"Case":"Some","Fields":["xdXmNdEVySHAYJKf2+oI8hQokZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["To2wiPntWBJPuV1BC2my18LsAfK+cMrzxO1gELdtqa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:21"]},"IP":{"Case":"Some","Fields":["107.170.219.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:1:20::24a0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohsally"]},"Identity":{"Case":"Some","Fields":["xdVdEfJsUqa/7o3SPCUFSKpn6aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ALtEfEqZGyeHU7S0BhPqdB0MqUCbpY0iNImfDdO4X9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:43"]},"IP":{"Case":"Some","Fields":["93.95.100.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoychev"]},"Identity":{"Case":"Some","Fields":["xb8nVg5LAHNl+6ltMvnnRhQhjI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91jDkKPEOCWsiTC+x1pk+OCnuwZDWkXTsZw0QxkmoWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:41"]},"IP":{"Case":"Some","Fields":["104.238.167.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste23"]},"Identity":{"Case":"Some","Fields":["xbj7wCN/SgTyBVEo8lff9unBRbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["agy7FNneA+QYSd3lf/IpHEuCs7xCJ3LPYOfUo5KHi0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:24"]},"IP":{"Case":"Some","Fields":["89.163.128.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::10cc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leshy"]},"Identity":{"Case":"Some","Fields":["xbYi5SZUtXCt/WVqxht0zIS77pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vZI2cZfLroYF1HYnMCU+KvNdv/ZIk5/RJ1NeL2D/AdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:25"]},"IP":{"Case":"Some","Fields":["159.69.12.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:75d8::1]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["xbBF1vyn1sSc5TOXWQzbw3OXj8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nh/4QjHfeBnYqjkePNRTuMCuj8QtqAatH+8b7MWz9hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:44"]},"IP":{"Case":"Some","Fields":["23.128.248.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::219]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jivin"]},"Identity":{"Case":"Some","Fields":["xab+5bw74Z9bnrCGypXa05PYpPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m375qp0pi3FK8blnFBzkgtkiYOnNdzCRPs3aTkLpMlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:50"]},"IP":{"Case":"Some","Fields":["103.28.52.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:df7:7400:c10d:216:3eff:fe79:59d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex17"]},"Identity":{"Case":"Some","Fields":["xaU7zBdO+P0NyyI+Sqkp+lV97bI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lHaIzSe+fnUFqDafjVgM7whTLqmDqv2l8d64utHIzvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:06"]},"IP":{"Case":"Some","Fields":["199.249.230.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::107]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC1"]},"Identity":{"Case":"Some","Fields":["xZ4HlDc0DjrRTmeFwKkaW28yhWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rvqPaojpuY2+oBaoABiqlUxqqk2ZMC7K9GXlEqbxbjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:21"]},"IP":{"Case":"Some","Fields":["204.85.191.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xZDzZkRWXrAM8ZZi/BE90WYMfoI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["czGTvZ0tygZ9n8ABXvDreKzR8I0tfDuK4ffdyWlO5Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:01"]},"IP":{"Case":"Some","Fields":["23.128.248.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::bc5c:57ff:fed7:5ad3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gopherHeaven"]},"Identity":{"Case":"Some","Fields":["xZCc8RfF/nidkmy3IeHBXA9ssyA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sM8Y/wViAv/Pmu/liFZiaFMfHcmcMTwIv1lh01C6nC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:03"]},"IP":{"Case":"Some","Fields":["206.212.229.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xW+RAiLSwfrZ+noVyptAP6ASj5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLrAXJa0dBp52C/r21CPCxp1nb5CmRCfXdmgrVT4rEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:22"]},"IP":{"Case":"Some","Fields":["185.194.141.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whocares"]},"Identity":{"Case":"Some","Fields":["xW6Y6TTtte76kyLV1IGOCTJfeoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IMy84ZSfecvyd2X6Jgmk7H8ddBIbu1vTvhmc8p30ji4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:31"]},"IP":{"Case":"Some","Fields":["92.205.17.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra56"]},"Identity":{"Case":"Some","Fields":["xVCfzO9yrIKDgod+zpMBGcX61iU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P8y9lYerQZjGwG5HftPyWkLcrnkuWazsONbPZj8VwuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:13"]},"IP":{"Case":"Some","Fields":["94.140.114.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DefCon"]},"Identity":{"Case":"Some","Fields":["xU6B6wR9fsHgWwrG5yO+G/XK9SA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bur2TAGtmCfLWzrFbG6NIQjw0LTpR9GUpEc+vDpT+Ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:03"]},"IP":{"Case":"Some","Fields":["84.61.79.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fedoriansRelayTor"]},"Identity":{"Case":"Some","Fields":["xUq388yrAbr2Gm9zN64fYNi7lA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsnIbMqdPywiGZlRJ+qiW7RFv7zzCDb7hzbMaa7uhUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:38"]},"IP":{"Case":"Some","Fields":["37.221.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:61b:85e:b6ff:fefa:8752]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["literalchaos"]},"Identity":{"Case":"Some","Fields":["xUpbCgxeLv9Lmxylyin/qVRbYm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5w/FT22hDnzkURjbRehMQxIOP1adAjRh52TwuzmoAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:43"]},"IP":{"Case":"Some","Fields":["202.61.193.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:58:9d2:88f:58ff:feca:3aaf]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["xUaHNLVrWAaqB27GHNAIIlNMJLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xjkv1hC8ssmKf8tlr5PrulIucMB6A1Gfle4grHb7Slg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:41"]},"IP":{"Case":"Some","Fields":["185.207.107.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dystopia3"]},"Identity":{"Case":"Some","Fields":["xUOw+fXargpAPDubd+fiQOvDxf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJ2x/NC947D65yvMol1RZbHgy4Nl+QEhk3tTMbZNO8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:25"]},"IP":{"Case":"Some","Fields":["65.21.106.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:bf0a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xS96AmSufGUJdhZuoTmCUB7IEM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATmvXSZqt5rltoHq4r9sGaPQaNltZaHjqAnVAq5rxYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:57"]},"IP":{"Case":"Some","Fields":["188.165.213.156"]},"OnionRouterPort":{"Case":"Some","Fields":[52743]},"DirectoryPort":{"Case":"Some","Fields":[52345]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:a09c::1]:52743"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["xSiyLUuiIGOfnc6GpQu5i90vz7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1erztvXzafHbnPF+w74V45gKTa334DVUgG6734xNX90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:33"]},"IP":{"Case":"Some","Fields":["185.241.208.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bazinga"]},"Identity":{"Case":"Some","Fields":["xRUDQevkLC386ZYxAFFLV3+jCmo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B6BUkb9kPVmmFaeXjrq4IzzN+t+T8PhUcoTvPCuands"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:10"]},"IP":{"Case":"Some","Fields":["172.106.19.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorStinkwuselBs"]},"Identity":{"Case":"Some","Fields":["xQ9SnqH2PHS5l9pV9+w+JtpwrWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NDJCFxcMos6oyOre/9ZreySLqMDAdfSwOki/SMJcImI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:31"]},"IP":{"Case":"Some","Fields":["178.2.30.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xQz4XL4KMn4y7noAEWHEe7s4znY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cd0QuSX61F3mFUbu+8wcb1rd/CiqlpfbE+QOBwepsfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:33"]},"IP":{"Case":"Some","Fields":["46.142.147.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra90"]},"Identity":{"Case":"Some","Fields":["xPfsmZfwSXl6+vWpQaGwlpM99/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyAcdClaDM5HzN2qdJH7GCYPFieBConeygfzowZVZDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:45"]},"IP":{"Case":"Some","Fields":["185.125.171.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["keepthenetfree"]},"Identity":{"Case":"Some","Fields":["xONRBdUS8QRRYaYaUjItdwLeSbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0pwBLnxN/gcaum8fWx4OBYWrotMmCpKJhssLj8SeZVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:05"]},"IP":{"Case":"Some","Fields":["93.200.77.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["xM5Uv3zzVUM/9unYAkAHD2W2uW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ni41RhUGwnRLAucYc18FDuQyFiaSkmsRZobMyYM0oVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:34"]},"IP":{"Case":"Some","Fields":["185.220.101.52"]},"OnionRouterPort":{"Case":"Some","Fields":[10052]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::52]:10052"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI26"]},"Identity":{"Case":"Some","Fields":["xMUb6fCHCX4UVk4F2Q5WScrwm5g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a9LT2q85cZf6dO05yOMYWu/5thXvmBpITimKKZvGoH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:25"]},"IP":{"Case":"Some","Fields":["171.25.193.235"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::235]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["s0yb3an"]},"Identity":{"Case":"Some","Fields":["xMRiUG1U7cjvyOiOMvSuAUdVA1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27jqC74VYhPzw8ZQcejQb7cB3HDzCfCAYYiQjohACZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:37"]},"IP":{"Case":"Some","Fields":["87.171.69.190"]},"OnionRouterPort":{"Case":"Some","Fields":[10222]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lenin"]},"Identity":{"Case":"Some","Fields":["xL2/0QSe4dT2l3xCSF+UzV+XupI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5m9s1iH0AUoxNjeuZ6TcROPdcL1Fi6dSiN1EgsGHIu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:54"]},"IP":{"Case":"Some","Fields":["95.216.12.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:c5c::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FOD87"]},"Identity":{"Case":"Some","Fields":["xLhUNFgt8yqV1CyVUrudP9nw7eQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TeyBR1cpE0yIDvT32tKiQhK0leEepiU1m3K3CJXZlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:59"]},"IP":{"Case":"Some","Fields":["67.219.182.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff36:2:666::666]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM11"]},"Identity":{"Case":"Some","Fields":["xKKXX+aEJrlCB0wFo8lpSVKxn3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r3OxSW8TFDsayenHhyJf8OWamGfyYPDrs5FOWO2cEGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:29"]},"IP":{"Case":"Some","Fields":["185.239.222.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange028usX"]},"Identity":{"Case":"Some","Fields":["xJ4+NFkRcqU0Ch035bTj0LkeDxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpOgtjA+4XYH+P9qSU6nM7h/YYB4fAXpxgSFsmuPxLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:09"]},"IP":{"Case":"Some","Fields":["185.196.2.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OzV8Bogan"]},"Identity":{"Case":"Some","Fields":["xJIH+9Uw+58wfGJvVb1QLaNiPqw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["39fH5yluHg7JyPkDNgmUmFMsCNNB3HmS/18UviLp0jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:59"]},"IP":{"Case":"Some","Fields":["175.34.246.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KaaTorRelay"]},"Identity":{"Case":"Some","Fields":["xG5nKZS1MZJzcUwrrgdBHLTvWh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/8OU2iZH6ZCvRcB/u/4mv5ddaRgi4cMzh0r+ILMyVno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:16"]},"IP":{"Case":"Some","Fields":["82.64.197.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5be:f320:5c7a:b8ff:fe7f:a026]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lamia"]},"Identity":{"Case":"Some","Fields":["xGVI1EwMpYVcF1zib1gX04+DPJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z+ApAeea3p65Z8WIyneUfJPWnzme3lrMpb+dgrD9lik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:25"]},"IP":{"Case":"Some","Fields":["135.148.149.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::b63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frozone"]},"Identity":{"Case":"Some","Fields":["xF/lxBrMN+TqRof/xUp08SRzna8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gv0c22tOako9//hql/DFbfNRrDNzQnmnBOXm1eQBYdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:38"]},"IP":{"Case":"Some","Fields":["144.76.166.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:428c::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EiH9W"]},"Identity":{"Case":"Some","Fields":["xEYedRwpz0sJSx45FTynZtYnJEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/KXPXlEz++jNNvfahIdYHMIe40bN7tJEM066bZBSrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:04"]},"IP":{"Case":"Some","Fields":["46.128.114.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv19"]},"Identity":{"Case":"Some","Fields":["xDFDs+rl+jZC8IKlKG2/9zQ3DJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pl+imZZgWQ5hXveRvWPBLHlUSYKLSEBAANRd6Gfp/5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:16"]},"IP":{"Case":"Some","Fields":["162.248.163.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["xDANPAO7QfX2K66Pxix4rA6Y0bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3nfD+UkJoxT4wxHYxGQ9kzCqGABQj6Da755efKNywS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:53:10"]},"IP":{"Case":"Some","Fields":["78.94.141.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["xCpU7C0twjaUIu0c+5Hj0eH7Dxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mm6fK9nUJDQHJ4HvMOwfD5aOCSO0Mj17p4x7bN0XxGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:33"]},"IP":{"Case":"Some","Fields":["91.211.91.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei13"]},"Identity":{"Case":"Some","Fields":["xAzgGM/rcGVHJxhEvuRxC106egw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SDtVbbHy4UByOO6/zBcgxyMBJQ30idBU2rmGtXrb8pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:13"]},"IP":{"Case":"Some","Fields":["185.162.251.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5dc:242e:cbff:fe4d:cb31]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HodlMonero"]},"Identity":{"Case":"Some","Fields":["xAoOee6+PdphH4qkfg++5S2M008"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XCxvcn+at0+D/QB3K86hMgh3NBwlF2E97dKMHhD01Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:58"]},"IP":{"Case":"Some","Fields":["185.236.231.142"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kul5"]},"Identity":{"Case":"Some","Fields":["w/w3phlP3XBTGg5GzhmEQd+qmS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imgDhCQnh1He/qH60N6/kaeet27e53Jz9X5IhKhXZbw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:01"]},"IP":{"Case":"Some","Fields":["89.34.18.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie4"]},"Identity":{"Case":"Some","Fields":["w/fz4eMqZLIrLwc058ejEvmT0QI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smKadwnD0z3GHNKiLIxMgc/utms017r62PMRGVC+RS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:36"]},"IP":{"Case":"Some","Fields":["65.108.136.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imherefortheparty"]},"Identity":{"Case":"Some","Fields":["w9+3vUCwcuttRlePG+Ah/dnWBxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O7ZW4X2DP4JSvElLMw6WrTNtBCUZfpkZUc68irywGUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:03"]},"IP":{"Case":"Some","Fields":["116.202.55.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:439b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mangtor"]},"Identity":{"Case":"Some","Fields":["w7vxQVHQ3b0+zdj7PyPO/JZ0P/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e4hR0sVt/Vctghi8WJFNiqs1OJQ++kPsr7ODjGNbyeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:16"]},"IP":{"Case":"Some","Fields":["207.229.65.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privexrelayfin1"]},"Identity":{"Case":"Some","Fields":["w6ywSSpkTielSbw83zt6EpGG478"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7nu/GguHeXmimf4VJBMLE7NahALLLKPwmwOs5NygZnU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:07"]},"IP":{"Case":"Some","Fields":["95.216.3.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:3d4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pataky"]},"Identity":{"Case":"Some","Fields":["w3+HwBJeJuas9UNm+iGYIJ6Far4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z4lVa7zSCcxOjXCflb9npbQPLoNCJ/YDhkGLu2W1rbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:42"]},"IP":{"Case":"Some","Fields":["185.80.222.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2498:f000:0:216:3eff:fea7:a0bf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cebollero"]},"Identity":{"Case":"Some","Fields":["w3r3i/ieaXlRysbf1eNSs2/laqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yx8OYkrypqc5IEquVYOTptg9Q1CXhV6ysTfD23Zfrfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:33"]},"IP":{"Case":"Some","Fields":["188.213.5.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torfan"]},"Identity":{"Case":"Some","Fields":["w3FPRBGKG9f8Vzlk7aqvU4th6ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l263LrcvrvHNzQM2jA6NIGjk5kBhn656E8IZrI6swqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:14"]},"IP":{"Case":"Some","Fields":["88.208.115.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev3c"]},"Identity":{"Case":"Some","Fields":["w2x2mSGYMpwNjzTgHQkr8qzgtrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["caUQQ9SKBcC0pcgv4w5fkuUSQTJYVc8dAhbY8sf4WMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:56"]},"IP":{"Case":"Some","Fields":["87.118.122.51"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:106:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jorcanada"]},"Identity":{"Case":"Some","Fields":["w2Y5HmeinOlZoVGT0M8vntlPNXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C/aSJP7ItUrahiQ5YFEu5Kyd4qx+hy30gCoV236negU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:01"]},"IP":{"Case":"Some","Fields":["216.197.207.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["w2HpGtYxx0vxCNIStjDr75th20c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLtHtlxx+KSYfmvLZTyXsGBjxOFRYRbr+s+dpdkrpEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["185.14.97.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:14:97:0:176]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themerrythoughts"]},"Identity":{"Case":"Some","Fields":["w1yfo/xQG9wiqD/AUQJzOVHjhtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdQjCudZe2EqNHgD09V/JIxE1qKYp1I4z0mxBC+/uEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:38"]},"IP":{"Case":"Some","Fields":["185.82.126.100"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::c0]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lachrymator"]},"Identity":{"Case":"Some","Fields":["w1A3cPRl2m9Un2Blr/e4z79iwiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fMkguHG3/VGae3/EM5VBYfJ6fKobakolDAhLmem6JQE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:03"]},"IP":{"Case":"Some","Fields":["71.79.166.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skibidibopmmdada"]},"Identity":{"Case":"Some","Fields":["w01qynzn9Uz+gzw3i62IcPWn+oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SrLnlR9nVn6NQVIXJ+qh99Mu7bOL55U3WGZJscx8ovk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:17"]},"IP":{"Case":"Some","Fields":["116.202.97.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:ba1d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLightSpecter"]},"Identity":{"Case":"Some","Fields":["w0OKt0BoL0byIWcpkb71EArqFDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HNHkdwFWN6xudfJl1vZ0CMb3xLZ4w5ziUI2q1kNd0iA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:00"]},"IP":{"Case":"Some","Fields":["146.70.80.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Cir0X"]},"Identity":{"Case":"Some","Fields":["wzs229V21N4UFEPSgSJXXaFZ0bM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TN3Wysey4am6i3xZ45GqSU45FL87QJvxKtwdJ0uNVl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:29"]},"IP":{"Case":"Some","Fields":["37.120.178.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mistersixt"]},"Identity":{"Case":"Some","Fields":["wzJQ09E96rsD/tzu71HPCXfy0Eg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5wfweLT6a2Z5DOR2Yn/AfQEymHApWali2hd8QXGkH+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:59"]},"IP":{"Case":"Some","Fields":["94.16.114.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:365::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RainbowBulls"]},"Identity":{"Case":"Some","Fields":["wy9LalCzVxtcs8fAEkIfcdzGL1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7szfh0MIy3/xwRR7uYG4wvLXsc8jGy9yBP+bY88axgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:53"]},"IP":{"Case":"Some","Fields":["107.181.136.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isekairelay"]},"Identity":{"Case":"Some","Fields":["wy7lPaT90Rm9mMLK1VYMvQ3561U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ePQ1xYKwdc9jWtxwHHuxpn8QjCXZ0Tmy9NryBKX2XI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:06"]},"IP":{"Case":"Some","Fields":["185.112.144.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FinkIT"]},"Identity":{"Case":"Some","Fields":["wy563gHskO9wF3FyJUKWb2xYdVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9KchFmK2xniDNqKLTXpJPDUQOvE9ou6YD1XAuOkbTtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:00"]},"IP":{"Case":"Some","Fields":["85.214.246.62"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43f6:7c00:7dc2:a993:e2ef:fea7]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["wykF0Y8rChBLA5oQ7UHD0MC98Do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRUMGEC7qvZe5LzMfg06/SlzMQwwcIgPHMJNhQKoYgA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:10"]},"IP":{"Case":"Some","Fields":["185.220.101.36"]},"OnionRouterPort":{"Case":"Some","Fields":[10136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::36]:10136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itrickl02"]},"Identity":{"Case":"Some","Fields":["wyd/vquUZnLUaOkKFrsCe0ysxTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t2mMGbi271Rsp6rEHanl6HK2oq/FHDRIF4i69GDuB1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:50"]},"IP":{"Case":"Some","Fields":["202.61.204.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5b:65a:6403:7cff:fecb:38b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor6"]},"Identity":{"Case":"Some","Fields":["wyY/S06SEnt80V6Pl0a0OCIzQko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i511tBCRTo+VF1N9krUbHobr50HVMUVKrw17cKHJogE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:14"]},"IP":{"Case":"Some","Fields":["51.15.91.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:819::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DicedOnions"]},"Identity":{"Case":"Some","Fields":["wyM7F0epcPcEPwkECfWJOpBk7eE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2NYMrfbu5JLx2Wtwy0y6ZjP1NeH/RCKylk09oT19mic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:16"]},"IP":{"Case":"Some","Fields":["209.141.51.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:2417::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x766c6164"]},"Identity":{"Case":"Some","Fields":["wxQTwyPbK9VbQ3Gl1GiA2evS+oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ws7nwTwDqVF6W8cdKiTEppwRVG8qHbGc6/owKHskiYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:15:24"]},"IP":{"Case":"Some","Fields":["86.127.196.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9161]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra42"]},"Identity":{"Case":"Some","Fields":["wxLEhaflWV2RfhkluhXVUPtxpvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OPkHBAAKEVfkvR50g2eF0YAIV2nxesKQycL30gJ1dOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:02"]},"IP":{"Case":"Some","Fields":["107.189.10.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission12"]},"Identity":{"Case":"Some","Fields":["wwMDj9zHKAWhYP9k6ZQzOkns2nE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZzATD9vkAKiEAvJQnDy6IjUJOo4Vq5QfAvpml4GJ8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:03"]},"IP":{"Case":"Some","Fields":["54.38.219.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheTorRelay"]},"Identity":{"Case":"Some","Fields":["wwFHMnVoViCoiF4dfzA/RV0CZf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzCUQW10j6de9IXNyk6NSDfhiHS5NrxImaoGmRygJ3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["89.58.43.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:d8f:d4aa:d2ff:feb8:b2bc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RocklinTorRelay"]},"Identity":{"Case":"Some","Fields":["wvs0bs6kj8mArUQrrbfNEOFOU6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZAPl3XDwDzDudCoTbWUVDgX0rjVAUTgf4UPBJgqyYs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:06"]},"IP":{"Case":"Some","Fields":["76.14.151.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bastard"]},"Identity":{"Case":"Some","Fields":["wu5A7oRR8nwjV+ix6h6Ob2Qic+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K/wdsCP/GBFkELt4luznuS+qLg1V/+EX2S2ZHjpY910"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:07"]},"IP":{"Case":"Some","Fields":["217.197.86.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dckdad"]},"Identity":{"Case":"Some","Fields":["wuZuGqIKYmP8MCkpbGQT1Xmg5o4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["giAf5quKrlTIUkqlm9zdVJhfDuyuC5JRidS+7P+9KuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:03"]},"IP":{"Case":"Some","Fields":["172.100.126.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["wuSysjFvGBJCRUe2W/u+TEYTeS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OBIHKSg/CZsNeFfg4azF4+k/L3rPUR8TyxYfjwyBDTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:01"]},"IP":{"Case":"Some","Fields":["23.128.248.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::51]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["wtWb88DMTyPXGqgLUCj/G2MRH6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YMoY8h9BOG5gZKgC54kdMwd4j8SJE0zCOYXk1Xxw6bI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:33"]},"IP":{"Case":"Some","Fields":["86.200.196.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spagh3tty"]},"Identity":{"Case":"Some","Fields":["wsTJwOH3LY7ujfQG+AeNzldstTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/O5BYDJYm8RNbwsD7NzUzWGN9PXfbYNRnkTDMxBh8hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:11"]},"IP":{"Case":"Some","Fields":["107.189.13.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["secondTryFFS"]},"Identity":{"Case":"Some","Fields":["wrr4PF9vt74SxK+BY5lpGnU46vc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c2h+B/rRxdft/nmfsjdud7Jd0CAaiy/rqWzNiVwuL2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:16"]},"IP":{"Case":"Some","Fields":["37.114.62.88"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thxFreedomboxTorApp"]},"Identity":{"Case":"Some","Fields":["wrhnh+rjMdBHBoLmsO7TkOkGN78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xlzBRCj7M6SffuTXvDX0+1xV3KCz9RkzG+q720q7pOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:26"]},"IP":{"Case":"Some","Fields":["82.64.75.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:8e:8b20::8210:82fb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["c0ca1eaf"]},"Identity":{"Case":"Some","Fields":["wrat9O/qc8ou+yeJ4rdMEDTB9fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LC5ahPHeRuTk8yCZDShF1SijzAM5sS4BHNmT5HmEkts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:18"]},"IP":{"Case":"Some","Fields":["45.91.77.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:4ac4:42::704:c0ca:1eaf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor2"]},"Identity":{"Case":"Some","Fields":["wrRRmfxvmOIb+v4IMzSPKI+jN+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3qqB3wHdaT1F0eTLAGt41GSGP/IU6mCNS4xRC0tEbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:06"]},"IP":{"Case":"Some","Fields":["51.15.39.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:e42::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["wp/vakBecw3gfsdMzwYj2V8NOk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yRk9XeAHCK7ghaQ42TAZvPDNWWDnGjIGOWQ+6FGbV6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:38"]},"IP":{"Case":"Some","Fields":["185.241.208.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stNet"]},"Identity":{"Case":"Some","Fields":["wosIAIb2zzJ/asPNN2M7uR6QkhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RQiMFFwD7hTaCXsa9wQ4uMoJmujSqDiNLsluAXOEMA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:57"]},"IP":{"Case":"Some","Fields":["89.163.178.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erbse"]},"Identity":{"Case":"Some","Fields":["woIkhZfRyFIqKnUl5hyLd7vDdhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mdpDrGeuaE6C0N2dI4iF3P5sbp6/sdtZ0rqN+iCCP2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:54"]},"IP":{"Case":"Some","Fields":["109.70.100.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["woCMrAiW0KxO+q1OzUZ/4kXM/fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dUUg4ZjSl1QAGD5FrQEyGPdMfjKWAw6hdJJpLg4/CV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:56"]},"IP":{"Case":"Some","Fields":["5.45.102.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheRun"]},"Identity":{"Case":"Some","Fields":["wmVRclcVSr0AOGHyuRTjULARquI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3l5lOYUsoeczXDlfPxbqDIO7FEbhixoV+D144oIxmtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:32"]},"IP":{"Case":"Some","Fields":["81.169.186.16"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:429c:9600:40e6:e961:9cf7:31d1]:29001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1131"]},"Identity":{"Case":"Some","Fields":["wmTPfAXozG3H0i0DktExGx9/XiU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bf6M/H0vzXNDeEW+orLlP3N9TYVa9/2bv6DogIyrdak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:31"]},"IP":{"Case":"Some","Fields":["185.220.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[11131]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::131]:11131"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KeffalsIsNotAWoman"]},"Identity":{"Case":"Some","Fields":["wlWGQqgfTsH2eedCpR540pYgUxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rUjB9WXFsRxij6R1blcTA7Sm8oxYvy0qbwIuZBMUER8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:40"]},"IP":{"Case":"Some","Fields":["194.76.137.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:803:2::18f4:a2fc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FaerieOnion"]},"Identity":{"Case":"Some","Fields":["wk8i1CnRZ2fokj34d7pogQqYOTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7T3PfnRwOK5OmcP8IqMH20wQjWkY2KbvEmRSjBMx6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:04"]},"IP":{"Case":"Some","Fields":["119.17.158.221"]},"OnionRouterPort":{"Case":"Some","Fields":[15151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra0"]},"Identity":{"Case":"Some","Fields":["wkb9nfHDlzCqZOMUylqknM4Ihx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0C0qOtzJ+zkNcEKt14YZIrkBCS6bKQzZSe0NE5dBdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:59"]},"IP":{"Case":"Some","Fields":["185.165.171.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShorTorExit"]},"Identity":{"Case":"Some","Fields":["wkUFr+Ra0CfYIFp+6izaNxdZ1f0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PV8kMucV5tupSh5MbmA+cJPiArlPP+N4S+VFtjpJCgs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:19"]},"IP":{"Case":"Some","Fields":["128.52.137.59"]},"OnionRouterPort":{"Case":"Some","Fields":[5101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["downstairsfull"]},"Identity":{"Case":"Some","Fields":["wj8TDrkbJF99tslLjasLUa5pCn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbdZ7oxxHP18gLUm0Il0QMY0kWrzCFWYNHozDatzwf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:45"]},"IP":{"Case":"Some","Fields":["23.137.249.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:212c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pacoCalienteRelay2"]},"Identity":{"Case":"Some","Fields":["wjc5LcEh31DGTHB8P7lQVeaLAMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uHguJkeeFLDQix9LDwO/xe7oZ1jvlMYP18t6vy+zGDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:57"]},"IP":{"Case":"Some","Fields":["51.15.242.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:654:1a2e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv11"]},"Identity":{"Case":"Some","Fields":["wjSZtikj0mOwy0DEyMRcPrJd0bQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wvyfOlMhsJHolrM4GTlcZoh5j5NmfTZ0kWPSmftONv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:47"]},"IP":{"Case":"Some","Fields":["162.248.163.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrankyThePooper"]},"Identity":{"Case":"Some","Fields":["wipZH/TuV3xAja/SbHUwJhXlFl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MP9zE3AI3RVF5my57QciNVaAhXCOmhrQkFMtw8QvVwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:52"]},"IP":{"Case":"Some","Fields":["82.223.23.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8188::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AwesomeTorRelay"]},"Identity":{"Case":"Some","Fields":["wicM4Vzi/8Yp4JIySSKbEN9OVR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lfyQKK9jXETMmc4HjPEqeA8TKElEYM0yavpO/Pp+hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:38"]},"IP":{"Case":"Some","Fields":["185.217.126.97"]},"OnionRouterPort":{"Case":"Some","Fields":[666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2069:6284::1]:666"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smortSmall"]},"Identity":{"Case":"Some","Fields":["wiTolwuy1E685RMcEaraNdgRzKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wuU15RLFKKFhDmrorXe0xK/5uhqZuK0pAt+Ws/iC48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:16"]},"IP":{"Case":"Some","Fields":["194.208.136.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["whipEM70PvXkufyfICan2jlY2fQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CZm2H7eu8pyobs9B+K7co2C0nO/qAvEqtLNiGEYaWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:35"]},"IP":{"Case":"Some","Fields":["185.220.101.46"]},"OnionRouterPort":{"Case":"Some","Fields":[10046]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::46]:10046"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreifunkIbbenbueren"]},"Identity":{"Case":"Some","Fields":["wg+j+smGfduMfAZyTN5hSqNkZGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n2w201lg4s6+aiQe+ktjvy8YI9Q2aacqWGuE6fWc+Rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:06"]},"IP":{"Case":"Some","Fields":["92.252.116.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ylxdzsw"]},"Identity":{"Case":"Some","Fields":["wf/yejjfjcizENB4wT4j8ICvKVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w1DleviF4u4ymafSJOJPN38PVCv7vgDFarbmsDVg6+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:11"]},"IP":{"Case":"Some","Fields":["207.180.198.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2028:9179::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["46620"]},"Identity":{"Case":"Some","Fields":["wfcpNbGjKarJIWEBua7wvIhdbkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n3AMX93w3Ka2BdZNFVXmOTAy8I/2cCId4ZhaYjp7Qdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:10"]},"IP":{"Case":"Some","Fields":["209.222.4.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["satfreaked"]},"Identity":{"Case":"Some","Fields":["wdzEcMgPbXAsXtEVFZNkRL06AlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnC2sL5v+ZlrBk6agLYf2I196Fp0doevCrww61BVn+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:12"]},"IP":{"Case":"Some","Fields":["86.86.173.62"]},"OnionRouterPort":{"Case":"Some","Fields":[15020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickodee02"]},"Identity":{"Case":"Some","Fields":["wdS2cOim5hQAPedc7M01q+fDmX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["41P3V0hTir5c8JSygUMi7n7X0DocT5UbTbdT9iBiK04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:28"]},"IP":{"Case":"Some","Fields":["195.230.23.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay14at5443"]},"Identity":{"Case":"Some","Fields":["wcpOYD8VLoyG6GT0+/EWKjv99Yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yUxHH9z6NpjLr7xwkJwl9zQ/SNUbpRKb//mA9rso0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:41"]},"IP":{"Case":"Some","Fields":["140.78.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gofasttwentytwenty"]},"Identity":{"Case":"Some","Fields":["wcpFeg4daeXJpLfruXYEOv8k57c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKsDObPw3ldFRfuBtcXI7LGzXw7q2NZN6qQ/JHDIofk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:40"]},"IP":{"Case":"Some","Fields":["94.140.114.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay654398"]},"Identity":{"Case":"Some","Fields":["wcomQKsncubdmOwAFgbu9J7BKxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m12ygkaT5wZhmWA6L1GVZznRjARabqWXrrVZmMSgwdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:59"]},"IP":{"Case":"Some","Fields":["85.195.214.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9842]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pros2"]},"Identity":{"Case":"Some","Fields":["wbtn0/vtaNS61ADRpJxbeezjll4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3WMX/8kd0tvGEW3MQ10uYmTJ9zSbnRGK8HFgO/8UzkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:44"]},"IP":{"Case":"Some","Fields":["45.58.154.219"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MapleCrew"]},"Identity":{"Case":"Some","Fields":["wbjGiHhnztJWRFQFj5CCMR+vGsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kz9ak49CvQYDj2iuJzWUR/ujORoSARISNsxD/w8OxKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:07"]},"IP":{"Case":"Some","Fields":["192.99.35.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenSepia"]},"Identity":{"Case":"Some","Fields":["wbav4YxvZWMaTvZ+GhkYtZMW9Z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lY8KUv1g60GLhTYXbWiK62Pu53VUy+QsvPg239QZpc0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:32"]},"IP":{"Case":"Some","Fields":["140.238.34.159"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a1]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FJB"]},"Identity":{"Case":"Some","Fields":["waIhJPxu+4sqQHky77bxljBgqFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JUbPsGTLlHMvJvTft4mnqLPE3Bhiavo8CDEgXQBEgE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:31"]},"IP":{"Case":"Some","Fields":["185.204.1.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTIWith3"]},"Identity":{"Case":"Some","Fields":["wZ+7wllT2qeviTQEi5ebkd7mTrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eEvRRkbUqT9Z5X59+sohaFoDaskV3E5f4zLY+yTHY0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:32"]},"IP":{"Case":"Some","Fields":["82.221.128.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaynig"]},"Identity":{"Case":"Some","Fields":["wZjUPD8y8u6icrvGjJKAPvmr7JY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kUE2lccsfUyqBXxehcFVFt/KR6K6LB7SopZBGxOyg5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:40"]},"IP":{"Case":"Some","Fields":["209.250.242.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5001:3498:5400:3ff:fee0:21f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Symbolic"]},"Identity":{"Case":"Some","Fields":["wZfZ+h4rYppd2C0mhhwD2he9Rp8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLQk33LMbCaZOei+Vt+eCjGbun+xm3oFsnqifZg6CRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:32"]},"IP":{"Case":"Some","Fields":["87.98.243.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay10L"]},"Identity":{"Case":"Some","Fields":["wZOdNmSd6YogJCljHY78cBKNX18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTZpdxjVRYPdE0ln4y8riOC3dhoJdRUrONJySImsfso"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:28"]},"IP":{"Case":"Some","Fields":["178.254.20.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AussieOnion"]},"Identity":{"Case":"Some","Fields":["wYQeS6fEoba6AS5DIFcKvvZtYLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/iG1ZqUOVSosrKjsCIQtemNjmkgCn6beIFFhdDVHXlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:41"]},"IP":{"Case":"Some","Fields":["124.170.32.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bwbtor1"]},"Identity":{"Case":"Some","Fields":["wXYoT7YezIdhoG/Oq0mNqEhRmxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAhGxSA16Ycv/SIjNPfyBloLljVInerkpKXXImadv6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:20"]},"IP":{"Case":"Some","Fields":["185.130.45.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:3:1ed::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UncleBobsRelay"]},"Identity":{"Case":"Some","Fields":["wWnlR7NVlwhQNbEc6KaeRDRagu4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MElkKwS9n45n5mM7k7elALtX+o/48LDb8yo57/VAijc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:33"]},"IP":{"Case":"Some","Fields":["24.230.61.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberdade"]},"Identity":{"Case":"Some","Fields":["wVxnQQG2arsW6GkT9oMHGmPX1tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hwwr9XAsWqYPVlSYYJhKoymPjZDWlYdUDc2XfiuVwNE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:32"]},"IP":{"Case":"Some","Fields":["20.206.84.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainyValbo"]},"Identity":{"Case":"Some","Fields":["wVqL5GoAJTccPEEkfPiRGtgqehw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kgj6nDLVmeI5SGSopRQe0+Axq+p+VUyjC9wbtSVU8o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:37"]},"IP":{"Case":"Some","Fields":["213.141.71.102"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNewRelay"]},"Identity":{"Case":"Some","Fields":["wUABbUnMtnOm5P4ZMpOxoK5EayM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O/vo+C7dedHqaVfheuaJuPXkeHCohOrDh2waomlzoPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:16"]},"IP":{"Case":"Some","Fields":["185.194.239.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::2f6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicTor3"]},"Identity":{"Case":"Some","Fields":["wTCg2MGCIuahCNZc24n4+z8pvD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HP64AC2LSEcmqGc9rXVEQ5ry8jJNpwqA3PQU31G58qM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:13"]},"IP":{"Case":"Some","Fields":["31.42.186.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jbktor"]},"Identity":{"Case":"Some","Fields":["wRxy9+C0m5K5xOrVIjrHQWPvuxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RkSqg9w5g7ojU6GnKmXFhf6emi7vY8/JLkzqjtwQVt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:38:04"]},"IP":{"Case":"Some","Fields":["93.181.1.9"]},"OnionRouterPort":{"Case":"Some","Fields":[62306]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["azbycx"]},"Identity":{"Case":"Some","Fields":["wRVKunnYlZW4YcnJeU+I5oOW12c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uilz6ub7uXRiANVYNSIMfy9RmlL0985P4IhJsBfsdmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:50"]},"IP":{"Case":"Some","Fields":["167.86.85.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2025:1163::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonobo"]},"Identity":{"Case":"Some","Fields":["wQSvmgfvN8y2K7BITSGSf9spR3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5NJPv+YMo4f6W5hn0RHlUjAu2jIE0xjx8lJX6dC9JZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:27"]},"IP":{"Case":"Some","Fields":["109.70.100.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GASERI"]},"Identity":{"Case":"Some","Fields":["wP3UOeeMPUuhQXMkfoS7aNB5ewU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/v9ohyvI9biJpNw0iyDE/IuqdW5l24fyIVtbQXgpWdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:37"]},"IP":{"Case":"Some","Fields":["51.158.166.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:39::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rittervg"]},"Identity":{"Case":"Some","Fields":["wO2wjXVA0d08ppgJ7RfZefUbZuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["soLGvWWq/KYuKR0V2Znt0Zzbd8AX1cpU/vH9EaH/r2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:11"]},"IP":{"Case":"Some","Fields":["97.107.139.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe96:d927]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["snowballer"]},"Identity":{"Case":"Some","Fields":["wOtZN+O4qi63GH6Rf75tphKjbPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L/DIuNISvOoEoKSrPqoIvtrkKhZoqTv/HOUhpqO1oAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:06"]},"IP":{"Case":"Some","Fields":["192.184.93.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cupleak"]},"Identity":{"Case":"Some","Fields":["wOpuwjeWXyLVdSECiLi66s6dVU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S5AosvyIEOp3ScFJEP5HZy8znqn7ozpW+8Vs8YXf4X8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:15"]},"IP":{"Case":"Some","Fields":["45.90.57.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9406::33]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ytm"]},"Identity":{"Case":"Some","Fields":["wOn+v0cEwdvvNsiXIFxg2FrCqPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ONF2bQIwuFdn62koeKVK0BdsASjEazYSo8YOBebtSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:57"]},"IP":{"Case":"Some","Fields":["194.36.89.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonbephomet"]},"Identity":{"Case":"Some","Fields":["wOczShgRhKvQdpjQStwZ4V4+4YQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHLs85ryiC4SJzRpC2V4NVOAqN3h4uH1pniONKAzTqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:59"]},"IP":{"Case":"Some","Fields":["185.220.100.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:12::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomForParrots2"]},"Identity":{"Case":"Some","Fields":["wOamZwZDhbnLWmhc6wa4Xt2mqgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kciVPmkkZI6rRmB3SyKKWcX/I4MH16+CAUqjtKw7huA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:08"]},"IP":{"Case":"Some","Fields":["77.123.155.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thauriiya"]},"Identity":{"Case":"Some","Fields":["wORGO1PzPT8m0RJ8iG7o/l41/Ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iKAMvqQfmjD8VX73UE82Vx4ZTLLCgLGmZY2sIqTvXBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:52:29"]},"IP":{"Case":"Some","Fields":["108.26.0.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mitsuha"]},"Identity":{"Case":"Some","Fields":["wNqq5e5GG74TlF/ktS8yq9xrw3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6bBmx2faqljDm9/xCloRYTiocQAbEn+Don0d9TopELE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:39"]},"IP":{"Case":"Some","Fields":["51.15.246.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47b0:1756::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinha"]},"Identity":{"Case":"Some","Fields":["wMiGSjf6aB7Gdw3cvP/v/+hUySQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fKiXf0Dr81Nlg4lYUmrx9cofsn1zFxEYL8A9ttjZK+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:00"]},"IP":{"Case":"Some","Fields":["15.204.141.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit2"]},"Identity":{"Case":"Some","Fields":["wMMAvC6EpQPU9Rpq1js/a/PhEsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hlmlFPstQWUvHAsosgF8a5prMVU9tAmHusOwx1hIHxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:59"]},"IP":{"Case":"Some","Fields":["185.129.61.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["wL2rZsCaMZMx1HPaDhK9XTUFCv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCjv52qfy1SeKqXEZMSjlnSDQ45U8DeNDuV6n6ZCS7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:03"]},"IP":{"Case":"Some","Fields":["142.44.203.139"]},"OnionRouterPort":{"Case":"Some","Fields":[19385]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twofish"]},"Identity":{"Case":"Some","Fields":["wLq5LdGP+D4xXMEUI49xz254LWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t6QVm0AmBiS54hbYXMwbPIooDUKypjBYVRx7/txspSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:53"]},"IP":{"Case":"Some","Fields":["164.160.129.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["wK6robVVGf5ThKpE0DEr6YIW2nE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P6AbVcRLa9EK8a6fGywEj6wwK/NSgMch3oIAcFjBdzA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:06"]},"IP":{"Case":"Some","Fields":["185.220.100.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:14::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["wKsyTaiS7WWAASxPpMJZov/HfpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uBx5+bfFca5byrfutd5cx+LYxnuerEX3fKqF7tokV/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:10"]},"IP":{"Case":"Some","Fields":["194.26.192.186"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber12"]},"Identity":{"Case":"Some","Fields":["wKhnCdSuOOh5QmVJZg4a0YzFAM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aVsUIkToBXuHEu07NfJwkvJ63+YVGSlPMwaJkiEVrbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:29"]},"IP":{"Case":"Some","Fields":["185.220.101.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::6]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YAVTR3"]},"Identity":{"Case":"Some","Fields":["wKLL3a7CsfygeczcYm56BQnnl8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lmr0TFsMsTChAT+1SQDVK7/wWFhpGDr2wsnCc4Rq3Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:54"]},"IP":{"Case":"Some","Fields":["45.83.233.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOnionRelay"]},"Identity":{"Case":"Some","Fields":["wIpbxQS51uzOKqLuUeaRJaOdBZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/7rXZ7b5iJ8z+SKdphxP0NEdRHHuLBybE89XuBvKFk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:54"]},"IP":{"Case":"Some","Fields":["176.123.1.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::3f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PCGG"]},"Identity":{"Case":"Some","Fields":["wISM96F9SRePcJOBKFIfCbwimEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/siHPVrOPF9S3HHE+7JHlhJLOMbjnFwLMiGrGY9a2Xw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:09"]},"IP":{"Case":"Some","Fields":["124.187.101.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hera"]},"Identity":{"Case":"Some","Fields":["wH3KCyMb4FVKtNV0rAV8dXK9bvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yt9UpunZ/iAHpj9G1XTnJ8m3SWA/f+HULjCAjveQoLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:09"]},"IP":{"Case":"Some","Fields":["185.232.68.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4e:c87::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmallStupidDonkey"]},"Identity":{"Case":"Some","Fields":["wHvW8gwqURDhXWPksWqY/1fQv78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7rByHopIGBurdbHX1pS6yiuAz0P0rcKAGMxuOb7PDKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:31"]},"IP":{"Case":"Some","Fields":["37.1.220.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["wHBE5Fl5N9U0OMtTm1jas4xrkQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pLtByoEwLtsH2INuyS97aChNzZ0FBgxEPAXU7KMBsV4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:47"]},"IP":{"Case":"Some","Fields":["212.192.246.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["wF3Mh9dmfQjuQ3DWzbjL624LQxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H/lSS1F89/BoQwXmYlzmUzlFAcab4g58/QC4fgTmTYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["185.14.97.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:14:97:0:176]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["endthefed"]},"Identity":{"Case":"Some","Fields":["wFbZiHyZno2dtDzzAOH3On4NHXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["exlQEt0eKUvbxlL2QkxBc13CwaHzawDia3xYGvS15sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:55"]},"IP":{"Case":"Some","Fields":["46.165.253.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["toritoinfinito"]},"Identity":{"Case":"Some","Fields":["wEFwccN1SIUpb0pZNawbwcq9vDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i5tV34VxRvG6XZEe5zW7E4CP45Eu/aNJduXevzVH3Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:36"]},"IP":{"Case":"Some","Fields":["187.207.96.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2806:106e:19:2f73:2ca:5aff:fe00:2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay36at5443"]},"Identity":{"Case":"Some","Fields":["wDYOtmQBe4Mf9z/ipBoVTOJk+sQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8RlQYc50PyUet7HToEWx5ZEQdtS2JDKvvS/g1LF/Z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:37"]},"IP":{"Case":"Some","Fields":["140.78.100.36"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobodysawmedoit"]},"Identity":{"Case":"Some","Fields":["wDOWg6qLzRGySY0Zf8frnQd1if4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DKdtxERSJFV/LnDA/3ZX43lrUHYUpAQTEyH9ss9RyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:48"]},"IP":{"Case":"Some","Fields":["82.196.8.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid4"]},"Identity":{"Case":"Some","Fields":["wDIJ9UvCmZJ8p1gRR0NPQ583yss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOaXwfcKQnNLsiOJiwwROGIn9Hyth3b1+wMb0zo9b7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:59"]},"IP":{"Case":"Some","Fields":["94.142.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::2]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["manipogo"]},"Identity":{"Case":"Some","Fields":["wBkv9D53clAIQXX05ZrBuiKQzjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9y29ZAh9ktmSSQwCi4tZlMYQrnenMI4lYndKfgd+eg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:20"]},"IP":{"Case":"Some","Fields":["192.160.102.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::9]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["striga"]},"Identity":{"Case":"Some","Fields":["wAySYSTJ3MZkeWSTG1a9h0uTHo0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["882lWeuzLmEFXyuX0w4lQkr3LVP8fPe6sy/9WanRkd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:37"]},"IP":{"Case":"Some","Fields":["23.250.14.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ufer"]},"Identity":{"Case":"Some","Fields":["v/c6X5AOl0n7opI6/ELagDokp8o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["etEDlaf/DWD6hgmk4/2VVA3e1M+ko/H7wznOUWLkyfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:23"]},"IP":{"Case":"Some","Fields":["45.35.85.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MazeParadise"]},"Identity":{"Case":"Some","Fields":["v+qovpBIRg6X3jg88Tlp0d+mML4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tRKViY1z5U7yTqxDrLP/we842nimPINXBVJTdR6esVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:02"]},"IP":{"Case":"Some","Fields":["176.126.70.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xangaen8"]},"Identity":{"Case":"Some","Fields":["v+QBQ7IsUPQmH8EHUGM/FzHuDEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ixqs/D3zRYikrigap6R2c3HVGyLEGB4oeUGrvi+5abU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:24"]},"IP":{"Case":"Some","Fields":["77.191.228.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["v83nxE3I8iIhaqz/RtPijXItMtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I2XnISSrM6d9SxNdPa4NPrqJ4o6byMCT1S7ha/9UDC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:30"]},"IP":{"Case":"Some","Fields":["62.80.227.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk12c"]},"Identity":{"Case":"Some","Fields":["v8bn8pjVgTRN/Olbt+6e3h/AdFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R51BPmzNeq0hh4tfNqfPsw3HYKINz31MkWmxRDgR+bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:58"]},"IP":{"Case":"Some","Fields":["163.172.182.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:63b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antifaang"]},"Identity":{"Case":"Some","Fields":["v8QEQRkIDYvucCGJeO6Dw/wWrno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XExWnanlxajrMikuuDazkx+++93y33ZeOp8BN1lgKBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:35"]},"IP":{"Case":"Some","Fields":["78.46.123.26"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:62d9::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ckaket1"]},"Identity":{"Case":"Some","Fields":["v8NGn6VX2nYX5nSKMeis5r2Rl9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zp7U3ArCzg8afwoZh6Im8Gpg8qnEZif/keYRv97vdcs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:16"]},"IP":{"Case":"Some","Fields":["85.239.55.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:10::28fc:a3c7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ncbanerelay"]},"Identity":{"Case":"Some","Fields":["v8EwXIs35RYcLjcTXfLU5TzDis4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bh91YjQsHFeRRO7FsfPY4lYQIEPBz/R4vgAufeuUis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:49"]},"IP":{"Case":"Some","Fields":["188.68.46.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:22:62::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["styx"]},"Identity":{"Case":"Some","Fields":["v7OZlN7nTSOx5p7OcCtxbOE7Qco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvWC+dWk8xptVPqmF2pKprP6qpauCncQMVOh6/1EjfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:56"]},"IP":{"Case":"Some","Fields":["130.149.14.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justSomeBoringRelay"]},"Identity":{"Case":"Some","Fields":["v6clgRr92Jw9DO7Ewjj5cugtFxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rpTUQV7wXEk4DTPBrCDAS4cWTHGXy0Tb4hEFOVILs4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:59"]},"IP":{"Case":"Some","Fields":["77.242.78.127"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chfarley"]},"Identity":{"Case":"Some","Fields":["v514EAQ+MlxPMRTipmtRmMRDn3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0MXJkK4y6PtxiT1h3TVQKj9VnX9L3so/FjxPwdwex0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:35"]},"IP":{"Case":"Some","Fields":["5.135.199.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["labaliseridicule"]},"Identity":{"Case":"Some","Fields":["v5NZQ4SgLedonE/YIeJjjaLNR5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3BBnQQHteMQOcKhkxcTqPAkjg5FLnrNHnJHWwywcxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:40"]},"IP":{"Case":"Some","Fields":["95.153.32.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["partybitsys"]},"Identity":{"Case":"Some","Fields":["v4Yc6Uo9I75MGdXfdX/goMiwivA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z0oaE1Ik0KrAvp5H6QCKUV5uVonEhzVo6DoXET4ZlwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:03"]},"IP":{"Case":"Some","Fields":["149.56.64.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:120:176:146::69]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff2"]},"Identity":{"Case":"Some","Fields":["v4MMaMt3CR/jcF0WSHBNCuORUqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kGUoc54klcOAmemqCpMhKXSkqLBGo7xTDQFnlp+hNvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:52"]},"IP":{"Case":"Some","Fields":["198.98.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["v4Ah0uyKjcck012VkPn+8lHwBtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EGCTaoGYjZEUPSHtnRpduI8NLRrNdCYyNqRQ9MPg4tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:21"]},"IP":{"Case":"Some","Fields":["104.244.78.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f046:56c4:177b:1cd3:5449]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iDIDeditheconfig"]},"Identity":{"Case":"Some","Fields":["v30QyB4aHlv15rA7FezGwp9moxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GDO2Qji1k5HUOaTHecHw2SesNX+0mkmg/1J1yMecXjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:10"]},"IP":{"Case":"Some","Fields":["85.234.221.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:578:85ef:f00:91fe:cafe:91fe:cafe]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["covfefe"]},"Identity":{"Case":"Some","Fields":["v3opxnsFAs8wgrEzK7+8q6rFUNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AcJwkL/Rmk5mKJ3oRaxJdKixh4Vqbe2uR/4zfXTrGDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:44"]},"IP":{"Case":"Some","Fields":["77.58.104.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:470:5179:1::233]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange018us"]},"Identity":{"Case":"Some","Fields":["v3FoYjrU/1QqnpQMTM9XXZvhYyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5oOPc+bMYSRAHVJg8R2e8MEEVEkX1c0I2eP4Fsh4x+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:38"]},"IP":{"Case":"Some","Fields":["193.160.32.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lenny"]},"Identity":{"Case":"Some","Fields":["v2+EFaVyWb+3yHjElWxon7fssko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9IvLq243hNYuKTHsJPOlxFGFc2FvB3m2Tz0GIOQEKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:47"]},"IP":{"Case":"Some","Fields":["91.67.204.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:810c:4040:20af:6749:9bc5:a9fa:c730]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["v1wMXTocZlT+ul/2awBzTfBz21A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["11iuQjy9GR/MNADKUKz03HTt80u+uLN4CqG3XNLHbZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:34"]},"IP":{"Case":"Some","Fields":["142.4.209.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:60:e1f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["v1bHOJTBPyHZjJzT5Zv2rZaOAds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["25K+5+3xCVtu1ULMIow5KCO69FLj3lxAIC8sbhsDdDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:57"]},"IP":{"Case":"Some","Fields":["95.214.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transliberation"]},"Identity":{"Case":"Some","Fields":["v1UnnnWgQbe87o4s5SZ7nMi9H6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gb6s3krrA+yI8I6syJZhNyApMYRJpUMJLQljNXMyLW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:42"]},"IP":{"Case":"Some","Fields":["46.226.104.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe97:4d5a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gesdm"]},"Identity":{"Case":"Some","Fields":["v1TuMZN1FIFXm6fMfY4d8KAa+zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pWoD+PfM7aHkuHPcbOekt6h2wfI1TjBvVidj08qVMwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:05"]},"IP":{"Case":"Some","Fields":["18.18.82.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LupusreginaBeta"]},"Identity":{"Case":"Some","Fields":["v1Dgnu0luChhz5XhqqQtz+9T5dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["THC8BvdOws/69/ysAdhLbcK71PmzBFQH3NAgDosgZ/s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:12"]},"IP":{"Case":"Some","Fields":["213.113.4.171"]},"OnionRouterPort":{"Case":"Some","Fields":[6881]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cordel"]},"Identity":{"Case":"Some","Fields":["v0N1Kp83U40E7FwyLVhX/kjl19Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AULA5PIjs3y1udhkV/HYnJibky3J2zoqsXTgEUIp9N0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:28"]},"IP":{"Case":"Some","Fields":["45.136.198.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgDE"]},"Identity":{"Case":"Some","Fields":["vz9vvbNcm4TxWKLKkW9ZZf4J2l4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ESpKMpDSsZ3WgxmM9FS2DHFga3jG77tDymwOYeXcJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:05"]},"IP":{"Case":"Some","Fields":["212.227.182.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WodRelay"]},"Identity":{"Case":"Some","Fields":["vz6bl9POQJn3OqS9cMoUtjX6POo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1G6AtDz6EqT3F3Upa/5pvJCjoOxcyqVBjqPevM2oawI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:35"]},"IP":{"Case":"Some","Fields":["70.120.126.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=98"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AkisTorNode"]},"Identity":{"Case":"Some","Fields":["vyVXkQAGAudKvi2pMgQdZNTtVlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYbs9xddbZiYiYjpwF3gUDIuQuutZ+1KsNXVitH8oeo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:49"]},"IP":{"Case":"Some","Fields":["31.19.81.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["34b666a42d0b46"]},"Identity":{"Case":"Some","Fields":["vx6+6gSgwNgIGLK0Z/28ah8KHsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AyvOrb2dyYAhiJJ81IsFE4cZWnhciyvp/kG2fGa6Reg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:57"]},"IP":{"Case":"Some","Fields":["78.47.62.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:317d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e2"]},"Identity":{"Case":"Some","Fields":["vxtmLR2k5V9wDBMKxYV0tH+3644"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3647N1kvzuHEEz0Q8/xVI2KRtOEADSrsOdQ3hkMMCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:02"]},"IP":{"Case":"Some","Fields":["195.176.3.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::19]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chimerazkp"]},"Identity":{"Case":"Some","Fields":["vxsb/5F7oOjXnkse4z5e+dGpmlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8lIR9iNKE5Cb0Oap1SgluBs0ia3xSs4RK0MaDB33Fhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:27"]},"IP":{"Case":"Some","Fields":["83.27.199.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erwinsrelay"]},"Identity":{"Case":"Some","Fields":["vxp3W3KC7DH8r444/JPR/sRDpWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1boEtIg9FlpsRu/+vI1N/aWrusZdIyBe8Ufu90iFc6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:40"]},"IP":{"Case":"Some","Fields":["82.77.238.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wolverine"]},"Identity":{"Case":"Some","Fields":["vxVc0uOKojBrcteJwZUsg3PEkOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJ2onvK9er9WG5wyZmW4XUsPg7/8l5UmMeV3j/STkDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:48"]},"IP":{"Case":"Some","Fields":["144.168.44.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quadhead"]},"Identity":{"Case":"Some","Fields":["vw+1guN/c4zTPDZREl8ncnBbuOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MeVgQyZXv66t6ddpTCY0zhgYf3F6zYEsBF6vofqgMSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:02"]},"IP":{"Case":"Some","Fields":["148.251.190.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:c68::2]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lwbghtwox"]},"Identity":{"Case":"Some","Fields":["vwD2KP3h8yDg2pR/Eye5o81ySNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JHxSrOwUVjpr4mVYCNRZXyAdDRuPMo1797tt3Vsqsgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:47"]},"IP":{"Case":"Some","Fields":["94.75.237.68"]},"OnionRouterPort":{"Case":"Some","Fields":[42842]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oranet2"]},"Identity":{"Case":"Some","Fields":["vvsAv6AHswOeiUONi6SimdCXjUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VOLU7KsJXdlrcTiue4xjsLfeI4NtO0/+3kcq1CzLdlU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:03"]},"IP":{"Case":"Some","Fields":["158.101.160.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman13"]},"Identity":{"Case":"Some","Fields":["vvmDHMCzn6lvYQrTpd590mqo9R0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L7Kz4XZbTdsFWAzgbyFnp5h4TRq1E06k3yEjsvbun7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:30"]},"IP":{"Case":"Some","Fields":["23.137.249.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:26c3::1]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OrbotRelay"]},"Identity":{"Case":"Some","Fields":["vvHjk5GPxNHTUIT/k3Lmylt4edE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqdIb7iepcOTSuvaj1XhwSH9Ye0Qd/yjl7OmskfpG3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:21"]},"IP":{"Case":"Some","Fields":["85.228.183.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["vu0obz5BYVX1y4vJ1ONLoijydLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fN6qpgu0WCdrSStZmPFPNTvABAM+SEB2JTZiNFzZqMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:46"]},"IP":{"Case":"Some","Fields":["70.52.10.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vuBx5SGkfHQMn2GE/rz3i/9fEnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8L2T7p6S8uQZ5iocBPkiWvbjaDAIJZfuQtw+BALD8Qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:32"]},"IP":{"Case":"Some","Fields":["185.220.101.34"]},"OnionRouterPort":{"Case":"Some","Fields":[10034]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::34]:10034"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Leg"]},"Identity":{"Case":"Some","Fields":["vttY24sjhh7zXL7DfGuO+3pxaXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r4jjF+3jtWisJ9WYvkQSHxKMHLaEpJGKFiGfUcBB5u8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:14"]},"IP":{"Case":"Some","Fields":["31.3.135.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["node1"]},"Identity":{"Case":"Some","Fields":["vssASvHncDT1qre3B0zohd1orO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dE9df1ePISDSUttR3SECFmsqbPst8LfXGd4uFnIAv+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:41"]},"IP":{"Case":"Some","Fields":["95.216.66.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9119]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:2c5::2]:9119"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["vshUJL1COXXhHtBb9P6rOnUmUQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m/q8FHxJD0G5EEvwToZQLhDDYzOb+EGPII+55XkRRrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:37"]},"IP":{"Case":"Some","Fields":["220.233.73.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3400:240:6d01:6db4:1a6:1f94:100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kwasikof"]},"Identity":{"Case":"Some","Fields":["vrw3CGsiUEwuquux3C6ERHpSVEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WD8WXUorLzwi+3bC/eMDfYYEXeYbw8pGwVx2sFW35c4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:27"]},"IP":{"Case":"Some","Fields":["83.150.4.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeAssangeSnowden"]},"Identity":{"Case":"Some","Fields":["vrjiR02NswdgfciwG1svPflUdFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mTNzC+Y1r2M6lYMhgdoBtbwmMAeF8U22RquJatPFrQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:34"]},"IP":{"Case":"Some","Fields":["104.167.241.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NootkaRose"]},"Identity":{"Case":"Some","Fields":["vp6lNKZm5rng9RBH8YyMkQ66dHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KjFT6Kl3/LBbJoc3vGzHG1ncq8UpEWdDF03VeF36w/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:31"]},"IP":{"Case":"Some","Fields":["99.199.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[55003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toroQQ"]},"Identity":{"Case":"Some","Fields":["vpe2ibbnqUEXeJ3Z+Q0ehML5EVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5BXST6BHXON24UX2stSBUKLLaR9M9r0tDj/htDgqjhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:42"]},"IP":{"Case":"Some","Fields":["96.22.210.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["vo8490GDr4xsX+MyWovntiJb8j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nqdukjp06QVhgnz8Yclnv3Ih68SIHepQpbgtQT5R6Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:22"]},"IP":{"Case":"Some","Fields":["74.208.37.237"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:31::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["supersingulardog"]},"Identity":{"Case":"Some","Fields":["vnvCeP354QY3ZM6FeyhyDE2O+bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4tXhiV6ski/pF3I8Tw+zOkwn9KsHVedFjTt2VV7xnfo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:00"]},"IP":{"Case":"Some","Fields":["209.59.144.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Sideswipe"]},"Identity":{"Case":"Some","Fields":["vnb7tfjRBx2/7XfFQxUMHJ2KIcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Ihot96fir2sdIIRthc3FdYA50pz7QZiRONACO5ziz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:47"]},"IP":{"Case":"Some","Fields":["213.171.214.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongHoldMonero"]},"Identity":{"Case":"Some","Fields":["vnDOIYG9OmgvxNre7mrHX7wWOoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cfj26BzvrhwrLvaRv/Ic5Vm3KpZ9GqvokWyUy89Qy04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:58"]},"IP":{"Case":"Some","Fields":["195.123.228.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubHorizon"]},"Identity":{"Case":"Some","Fields":["vk8y761ZGTKWOguocPkTo8v+3T4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o/WRajvrMZtAm75yq8AXVLSD7MrPA9mb4fdSF68k71Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:05"]},"IP":{"Case":"Some","Fields":["103.9.76.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ledgh53"]},"Identity":{"Case":"Some","Fields":["vk2OlfOPM1hAplA4MnH6imDLpYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+c1gvDKttOcq+gzcPp3xJ7p3LNwysdI86aYDlfUhvCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:45"]},"IP":{"Case":"Some","Fields":["188.68.57.225"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f832:38fc:feff:febb:5c26]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeeJin"]},"Identity":{"Case":"Some","Fields":["vjuQJKDrvnL/ISl5+2lfxhF+HvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8oxQW/AwxMQU/KEiZzIURbzBFu/kt0ZOrYLSDm44R5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:09"]},"IP":{"Case":"Some","Fields":["223.25.69.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NerdreichRelay1"]},"Identity":{"Case":"Some","Fields":["vitouLiL/DUzAjYNWKz5vZupgCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wKEkbrz/GoQW21RF0mZlRIfsh8DcxYGlfsKr3jNJ+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:53"]},"IP":{"Case":"Some","Fields":["89.58.3.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:e6a:d8cc:e3ff:fea6:f015]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MrOnion"]},"Identity":{"Case":"Some","Fields":["viYjWKkbeupWiT6B33a1IgTE9ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RuuOAb55nSF+ymr+ojVHJIqCxBdT9SqgEihv12bWQuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:42:47"]},"IP":{"Case":"Some","Fields":["134.122.27.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::21a9:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayDebianUK"]},"Identity":{"Case":"Some","Fields":["viX1KBUnpzkdU0TuLtkJUD5t7mE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R5pdG86z4eMkXIyyDYikxtq2CA9+2bXbnZ4samAT874"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:52"]},"IP":{"Case":"Some","Fields":["81.134.36.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justAnother"]},"Identity":{"Case":"Some","Fields":["vhEU0bQYlcLWfFlizjVq5onODNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["derd2peI9IIm4UtUBLZaw640F7H+QrEiFTduJULjiJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:08"]},"IP":{"Case":"Some","Fields":["135.148.54.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrgaVPS"]},"Identity":{"Case":"Some","Fields":["vgdSH2a8xDCDRFtqsWjt62u/SvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vYAHrCFpduir0nnbS4UNz1yr35eKlKrdDWKLLkHXJ0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:58"]},"IP":{"Case":"Some","Fields":["212.44.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["r4v3nrelay"]},"Identity":{"Case":"Some","Fields":["vdCdXbeCtgI3kdv/1G8QCx8COrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RS20mzcCvJ7eOSL86MeMfLRgX16ecWQt04smdNej23A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:12"]},"IP":{"Case":"Some","Fields":["198.98.59.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tungsten01"]},"Identity":{"Case":"Some","Fields":["vcj6qyLQ8llt9Aud8ilKlaTeCOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Iq+NyzVIWncTc8xb3qzMRIXikMAvuIPpgMZKnyMvmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:12"]},"IP":{"Case":"Some","Fields":["47.155.56.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GIZeStiC"]},"Identity":{"Case":"Some","Fields":["vcUm2igPoARLhMXrLcCmfJvhK6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L14T2ScHpKMsOCZ+U+TgN+C6mV4o35WRjohHaQX490A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:00"]},"IP":{"Case":"Some","Fields":["198.72.123.109"]},"OnionRouterPort":{"Case":"Some","Fields":[1220]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["cragg"]},"Identity":{"Case":"Some","Fields":["vcEXTHlLVWxHt8zmH/5l+xZye2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WRSDKHAxJTPpXjxu6nR1J0wTjcnmIpkxBSEbdPqe0V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:43"]},"IP":{"Case":"Some","Fields":["190.10.8.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiekoetter"]},"Identity":{"Case":"Some","Fields":["vb/tbornSgNuUTzYzWu/CZZlnAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cRtpndx/EwJ51jIRlwJc0/HkAo+dOmI9oq40tmYr7LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:40"]},"IP":{"Case":"Some","Fields":["95.223.37.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9002]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Skadi"]},"Identity":{"Case":"Some","Fields":["vZ75LgIBAzQZpxvWn17H6xgd/J8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZN5YbeatQl/vhvIutlhymvYRO87+ZMxaJLDnqBB3myA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:32"]},"IP":{"Case":"Some","Fields":["83.137.158.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay001"]},"Identity":{"Case":"Some","Fields":["vZdk7yY3pWgQddbv+Vzb6MhFGKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JnSWgOF1bEZxWXUvb20PQRjlJczuIbKnXb9QN84kZaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:35"]},"IP":{"Case":"Some","Fields":["87.98.240.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PiratesCatalunya2"]},"Identity":{"Case":"Some","Fields":["vZTz6P1MWzh7QsI5A3cjnDFChn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vXHfqlL4MbJYi5cH0A0ue5Tl1h/7g/LmawHvB5WQyYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:39"]},"IP":{"Case":"Some","Fields":["87.106.236.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frigg"]},"Identity":{"Case":"Some","Fields":["vYctC5tHrwD+tE3KIShiv4WtZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2N3Bqu/0cUyv/dLgB2vKnqx94KSUbqdsnX0oCfM9FNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:05"]},"IP":{"Case":"Some","Fields":["185.134.28.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["aprelay5"]},"Identity":{"Case":"Some","Fields":["vYa0Jk5S3hMuViJP2doh9MLyoh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfLiUTxaD8wybwCj3/gSpyyAIYEDWt8oxF6p+Oa4K24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:00"]},"IP":{"Case":"Some","Fields":["82.223.17.68"]},"OnionRouterPort":{"Case":"Some","Fields":[8054]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:809d::1]:8054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defconrelay2"]},"Identity":{"Case":"Some","Fields":["vYFck+nYf/syIGw1QL2FWQA9MyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GsTl5bSC89vtyjkJ+tIBa2VMJOCrYOaKtVxAAZE3dVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:38"]},"IP":{"Case":"Some","Fields":["50.230.231.84"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:327:231::84]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonjour2"]},"Identity":{"Case":"Some","Fields":["vW//GtWoio1Dhw1D7ERQCBtLK7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iy8s8G4EpU3yHrxF4NBgral8w7U0NYGvvY+3n7n+tnw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:33"]},"IP":{"Case":"Some","Fields":["188.138.33.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maatuska"]},"Identity":{"Case":"Some","Fields":["vWqCklXLCOZvvn03SDY1huRrOBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ppMLaS3SyQSNnjhKKYfUZRY0+llVDJMMUAOujHFgsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["171.25.193.9"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[443]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::9]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer03"]},"Identity":{"Case":"Some","Fields":["vWSGmcr+DsedSnonzJ58xabfiiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dJnUBw1ds87WQ4hBlfgv+S31ggKH/uELrmSGfXXBBzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:32"]},"IP":{"Case":"Some","Fields":["23.234.251.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HouseDimir"]},"Identity":{"Case":"Some","Fields":["vVahw2GW7paLKjRjzNZAGbTlJtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9b8neTxusBEgcBX8NDBAUf/AwzRO0o2tvRV/WFCU9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:42"]},"IP":{"Case":"Some","Fields":["86.115.32.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CuriousLoophole"]},"Identity":{"Case":"Some","Fields":["vU9WMAGkYRkxutZ0wYxINXcXxRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjDZPKwJLB5pp/+iuaKHcQXZAcIikAKspurtb3SkdOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:22"]},"IP":{"Case":"Some","Fields":["51.68.231.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["regar42"]},"Identity":{"Case":"Some","Fields":["vUxkdQgWL1nLROTfwcKyuKk4fMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZpWWUsGHtE1zYriQ6bDzwS+L6Cy/Hb5rG6YYAyGb2ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:30"]},"IP":{"Case":"Some","Fields":["62.210.244.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:3680:4242::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RealityNews3"]},"Identity":{"Case":"Some","Fields":["vUrzL+G0GbSlBJoysPwtg/1U30Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["89IEmvW+KlVp3MPg0EiQdJ+1+JSDTkdVa+VR9IzTZuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:48"]},"IP":{"Case":"Some","Fields":["79.77.182.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1b55::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra22"]},"Identity":{"Case":"Some","Fields":["vTPvGAsRGLAL3wc+J3EhDjvd2M0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YOwdfgS1NtLO1J/SEn2wUvKqwuHkB5Ry1GxDilqkvDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:30"]},"IP":{"Case":"Some","Fields":["51.178.86.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay654399"]},"Identity":{"Case":"Some","Fields":["vS4LW2k1Zk3/6DB84f8mnyq/qOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EBsLV6RPWp8ycQTdHjyEVY6QauejfBnFn+WxoNL9uDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:22"]},"IP":{"Case":"Some","Fields":["85.195.214.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9843]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blix"]},"Identity":{"Case":"Some","Fields":["vSvEFdXYrjw0Qw5w7ILPOwxhvd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3vPubBSgQWE9pVLG9YJKNkwMKZK6GrvLxFfxi06tk8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:31"]},"IP":{"Case":"Some","Fields":["185.177.126.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vSo0reTmA6Jy+q0jrvOJgBuyI7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCrahvppEfjZUlPpap70XBL8ULdMgHTJ+fKXoaCboa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:58"]},"IP":{"Case":"Some","Fields":["185.220.101.210"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::210]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz2"]},"Identity":{"Case":"Some","Fields":["vRyMphpTgmp8M4hadYb5+hPOeUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRV1BAwmY+2miAbN3ib4lroqYcALY4CJ1nuQ/qduStk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:10"]},"IP":{"Case":"Some","Fields":["195.201.63.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra44"]},"Identity":{"Case":"Some","Fields":["vRQHWBNaFWBZlszuO7+kEn+XsjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DN/3lGzwWFpFKsa2kGVfEYPBiCg4LxNxZ7pU7BaGEPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:27"]},"IP":{"Case":"Some","Fields":["104.244.72.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pluto"]},"Identity":{"Case":"Some","Fields":["vQINjts1XFNxmUIKryZJ+gRTbJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ZVgn0S+Cxs/3J3LK2A7V1A2Z8kq9iLE6PFfALxz/pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:34"]},"IP":{"Case":"Some","Fields":["167.86.127.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3004:406::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metricspace"]},"Identity":{"Case":"Some","Fields":["vP5UjqP/igs2EHecI4NQEkqO1t4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AN8okpjPky5nYo7szPnBPTtwfvjP1v6Mdh46c7cFxqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:05"]},"IP":{"Case":"Some","Fields":["74.106.232.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f11:617::10a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e1"]},"Identity":{"Case":"Some","Fields":["vPVfhl7m7xfiXv6vhRvEKfGQuF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["14bVRbTpqKTi2nNLM73u0YfUk90BV2wJreDDGo+QUoI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:37"]},"IP":{"Case":"Some","Fields":["195.176.3.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::23]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EldritchReaper"]},"Identity":{"Case":"Some","Fields":["vO+QgZWAXgPpLM/macSHOOVWucU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1DHq6tnjg3/vUn6qvwa8OZ3jf18NZaaBfNcrK2Hty4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:01"]},"IP":{"Case":"Some","Fields":["65.108.231.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:f500:0:d0d0:15:dead]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gurgle"]},"Identity":{"Case":"Some","Fields":["vO32wZOqaHrkcbiiLr9rxXwtKF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1nFNFBA5odOVYr+kYUzfZQPhlfxHeVUAJ1msGffWkMA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:40"]},"IP":{"Case":"Some","Fields":["198.96.155.3"]},"OnionRouterPort":{"Case":"Some","Fields":[5001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oenx"]},"Identity":{"Case":"Some","Fields":["vKNfcMsOelg/xuy4P3VbCD6eLfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GOA/nzt5wK4KkxN/4Ng7IgMoc0owCGmWkmqbSKysV9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:07"]},"IP":{"Case":"Some","Fields":["149.28.183.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5801:836:5400:1ff:fef8:30ea]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["vJJvjB8U5dyCf+RRvBiZuUth0n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6mnVkuN05EHNdqfOxgQX/VhxvYZJz213YmG7XfElEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:53"]},"IP":{"Case":"Some","Fields":["188.68.37.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["vIXObM9S1pFem84YI2iOC/41BlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/+aVzZQ8aIuRC9WkSTKC6ABr0WyAvHrUK40yboLTY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:11"]},"IP":{"Case":"Some","Fields":["185.241.208.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YagaTorRelay"]},"Identity":{"Case":"Some","Fields":["vHrPrASFTHcWfH1mt+RxMU7YxBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["keYro3Roe1sInH1MHNjHeLGAPWM95qhhQxP9Pe35o+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:28"]},"IP":{"Case":"Some","Fields":["116.203.140.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:e646::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay43at8443"]},"Identity":{"Case":"Some","Fields":["vG6AdEMU8WBUpk7g8jAvCCySmVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dker2vI3QGDbNyBDklzUc3dpiwb71kTxfDtfVeEOol0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:04"]},"IP":{"Case":"Some","Fields":["140.78.100.43"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv119"]},"Identity":{"Case":"Some","Fields":["vGRQNmTJC0qdqRNzbDYd6tMTsTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pcO55am6xb57p+9MOs0ha01yGzlHR6mg6MjcA2ug454"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:42"]},"IP":{"Case":"Some","Fields":["192.42.116.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5519]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["vGFjZUbtIaSf7ApTIGTblTj3xDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOMz0a7N175ijSePnTghi3swlPuKXW6DIrecgtWh3dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:31"]},"IP":{"Case":"Some","Fields":["51.15.138.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nognu2"]},"Identity":{"Case":"Some","Fields":["vEBZByMxKORt2bK79d3PJQhVr98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VJ0+Zfvk9bWEFOiVjh3+RHelPCcCtQeRnOb1ZaHNGgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:42"]},"IP":{"Case":"Some","Fields":["185.243.10.170"]},"OnionRouterPort":{"Case":"Some","Fields":[45531]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:bc7::2]:45531"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flexbit"]},"Identity":{"Case":"Some","Fields":["vDkkfGB/q4Y04eH7KfwE0jxj/ig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6WwuKSR1pnS9uXcug0V+1htpBGgig3Z2SEUABiPYgAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:50"]},"IP":{"Case":"Some","Fields":["193.233.203.125"]},"OnionRouterPort":{"Case":"Some","Fields":[123]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9203::190]:123"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h7nOq"]},"Identity":{"Case":"Some","Fields":["vCBmZYA9t8cwwloTFoiaTX57/wM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rhajvR6h4sF0XHBYb8KxvudSBFyL/yOblW91+H70I1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:45"]},"IP":{"Case":"Some","Fields":["85.143.214.143"]},"OnionRouterPort":{"Case":"Some","Fields":[20]},"DirectoryPort":{"Case":"Some","Fields":[21]},"Address":{"Case":"Some","Fields":["[2a04:ac00:1:8a99:5054:ff:fe01:3103]:20"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["razek"]},"Identity":{"Case":"Some","Fields":["vB6fZ/G5n0pSKHCW3aijJPP0v6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2cZla8pBL55mKz/IH/i2U4sIdI2YarxsXBcZ0Qnp+Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:21"]},"IP":{"Case":"Some","Fields":["181.43.104.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackMesaAG"]},"Identity":{"Case":"Some","Fields":["vBI9t/YenbMfI7N79ioW2qEBD8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OX07zxFa7raFN8seHvypbS5e1EVM92gKN90erH/34yI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:00"]},"IP":{"Case":"Some","Fields":["85.215.88.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["vAgKwNL3V4Y/Pj8UjCaOXIWE6K8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V1nswAkHGaoNUqlskRoIo6skuZR2w78jQat8QRUap5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:18"]},"IP":{"Case":"Some","Fields":["88.208.215.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:8162::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["vAakroR93CP9YwguOIuzCSTatLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YXI2cOJIIWGUBvV2GxPpzX1VKF5YMZDz37oj0MgQnS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:52"]},"IP":{"Case":"Some","Fields":["185.220.101.62"]},"OnionRouterPort":{"Case":"Some","Fields":[10062]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::62]:10062"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckwar"]},"Identity":{"Case":"Some","Fields":["u/h2PFUfh6HMy2ZSu8CsM2v66i8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuN57hIETCqsOu+xZW6U3nyfxqTX9HsBwqptBjLff3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:07"]},"IP":{"Case":"Some","Fields":["82.196.11.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["kator2"]},"Identity":{"Case":"Some","Fields":["u+1CgipJl+lOWyilH7ZDmqi4NPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uF2AnWVxO6b0RfZXpN9OGZKZFFZXInW4IMrbvbrcKYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:39"]},"IP":{"Case":"Some","Fields":["81.157.78.106"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberation"]},"Identity":{"Case":"Some","Fields":["u+r/JKnTQG3MlUhN6zt935ipmYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pv31k0F7HHwarZe1FIYO5cYhJODK15gdo1RsuoIj8nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:58:17"]},"IP":{"Case":"Some","Fields":["87.236.199.239"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wombat"]},"Identity":{"Case":"Some","Fields":["u+Hb9gCbYmevtN73ifYv2dipQKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1freMiQKCOzvqROQZ2ucOeyvJsZCAoHvkW9PIoooYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:07"]},"IP":{"Case":"Some","Fields":["109.70.100.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hanktor"]},"Identity":{"Case":"Some","Fields":["u94SwyD9HD/77BUgL0bVYg/BRE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoRidu5rDplbt6LgT14YNOixvKEXb9/bNj0kNAAY7sU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:54"]},"IP":{"Case":"Some","Fields":["178.17.174.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:cafe::a3f6:4721]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ambrosia"]},"Identity":{"Case":"Some","Fields":["u9lfOM+RxKYgD+CaOVHGi+EY/54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c0absO6Tjr/jadXBaVyJcM0fNB2bobp4eyV/sEGrdDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:10"]},"IP":{"Case":"Some","Fields":["45.134.238.190"]},"OnionRouterPort":{"Case":"Some","Fields":[4430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sprucegoose"]},"Identity":{"Case":"Some","Fields":["u9j034/1xppqmJ24we4sp63+B1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SCjUNAbCnJAW2BYfblyCRNmlQCDIctm1Lo3XdPZcUYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:32"]},"IP":{"Case":"Some","Fields":["66.206.4.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blazkowicz"]},"Identity":{"Case":"Some","Fields":["u9GxoiaVOWx13/M4qP96EoBKYHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbcw3M57hfFAzJphhy6A5fUOJR9wVpUsq6hw18YMsPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:42"]},"IP":{"Case":"Some","Fields":["178.162.194.210"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorIruka"]},"Identity":{"Case":"Some","Fields":["u8Ya0uGK/nDpvkJtCyKpglIAD7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hn3VPQoDGZmzi96OS2AHl8K68nkDvS8vhBrMNspSseI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:12"]},"IP":{"Case":"Some","Fields":["128.199.131.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::1a6:f001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["u8SiFVD7lXugPkp9Qb4gMEhST5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwaFeb/chCwZFTTNgLx3pJW1mpkw2PZPyXxXDIBBq/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:04"]},"IP":{"Case":"Some","Fields":["23.128.248.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::55]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["caligulasAquarium"]},"Identity":{"Case":"Some","Fields":["u74PlG418Ls8xIYF0xIC9f8cjzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mnrFkGfb6XUJ7kvek4WER45/3YtYmpsCq5k17F1PCIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:12"]},"IP":{"Case":"Some","Fields":["198.251.89.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f154:dece:a5ed:dece:a5ed]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["motor"]},"Identity":{"Case":"Some","Fields":["u7u61FMmPXhuw0q2igYhQoiRA0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t+wd3ji48OLk/g0z13FZyMUuKlxozczfF3TEhOIZdVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:52"]},"IP":{"Case":"Some","Fields":["84.172.112.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9321]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6020:b2c5:d84a:bbbb:bad4:5326:3d78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andrethemac"]},"Identity":{"Case":"Some","Fields":["u4kXpHJH3XW4OjmFsgdyxBPJyRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9zcDJ2s+BRzm8R6TisCtNiXK95a6Mr3FbptleTwxjqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:42"]},"IP":{"Case":"Some","Fields":["84.196.9.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde6"]},"Identity":{"Case":"Some","Fields":["u3cjvFqsqKiH4zrVRvGjRlDMW7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XLwxtHHXljcy7VBVnLq/9OY8JZFo45c2aKrAVDQK3M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:42"]},"IP":{"Case":"Some","Fields":["89.58.17.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:fb6:200::208]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porcupinemike"]},"Identity":{"Case":"Some","Fields":["u3ADyvs+SYalzP5xvUOeuJSeueM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oAToHormhN+CTXRAE5/nzezdwQ6b5WK3Gdqu6AfcEts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:22"]},"IP":{"Case":"Some","Fields":["109.250.88.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0rexxxpallas"]},"Identity":{"Case":"Some","Fields":["u24aeshwLsYk3/m7bcSvMJflfKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b5FdoF5r8Kgu+J2jrvRQS6MlfGVHOtDR5vS1qn0Bhnw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:44"]},"IP":{"Case":"Some","Fields":["213.252.245.153"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::35da:3bca]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HumanRights"]},"Identity":{"Case":"Some","Fields":["u2W12Imd5fj2AY4H4lfNcj2hMlM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ePIGzuLQZ97HsX7ojqBtzI+UrI8InMozkz2n/S7V+/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:51"]},"IP":{"Case":"Some","Fields":["107.189.28.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f67f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YonderYuccaN1NoExit"]},"Identity":{"Case":"Some","Fields":["u1+uULzlsTyBDNF6kxoEmORoHUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a1gPW4syOv9aA7qfM2RhWAZ1IMILX7nYqgsuRCFpiCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:37"]},"IP":{"Case":"Some","Fields":["212.51.136.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6a16:1130::31]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thefrenzylands"]},"Identity":{"Case":"Some","Fields":["u1rC7HiajDUlodGWfqTPPXtBQXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+AGK4AMQFRh2g9CNzqkyKqUtqXL3DIAWbVR6Lk0/nY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:00"]},"IP":{"Case":"Some","Fields":["158.247.225.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange010us"]},"Identity":{"Case":"Some","Fields":["u1YwlnYH2Ki2yoVK+VT+g3LRZio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtIl6+CYgiMZiN5gNPFZ5SL9LjhuYauCfDfk4uRHzhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:25"]},"IP":{"Case":"Some","Fields":["147.135.114.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::2d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soporific"]},"Identity":{"Case":"Some","Fields":["uy3XhvionbXL+1fhupmbNz+phA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AB0TBx8DTMoWCUjP6jwymM/ayBL1DT6UTL0Kng1vQRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:14"]},"IP":{"Case":"Some","Fields":["23.238.170.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeroPlayground"]},"Identity":{"Case":"Some","Fields":["uyr8F0v8/wLxVKnSSIZXXjJrd/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BeUFo7hXzxUiF5GxPFMUlaPY1w7TcbE+C2KhPEwf3BY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:06"]},"IP":{"Case":"Some","Fields":["77.68.102.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bruhrelaynyc"]},"Identity":{"Case":"Some","Fields":["ux0pEKSSaGrXIdzMFwwsOWfzqCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bl3ioAjuy04ZunKoBtY7nFo1DkM+N4/zSkY0047yCmU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:31"]},"IP":{"Case":"Some","Fields":["159.223.120.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::199b:2001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uwfpgj3nnOyakG7MjK3FamU1e+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcajfbKAbIFJPdKVtzBBquFHEewY2nzDPfXuiFbPCa4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:37"]},"IP":{"Case":"Some","Fields":["23.128.248.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::c047:adff:fe9b:8d65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckwar"]},"Identity":{"Case":"Some","Fields":["uwWaWuNUFBLdvM9JNWptSrCBfT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["68KIbV8nXwFZZiuuiKTPMj8Ny2nQk6BIlZ5P+RNO3Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:58"]},"IP":{"Case":"Some","Fields":["5.101.51.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip1b"]},"Identity":{"Case":"Some","Fields":["uwNMNO2eYPdwntk/tDKpuhKi8rY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frOuMa2/Gw11px9JvG1MfS+J7S/8nDoiNU/LtcjW0PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:59"]},"IP":{"Case":"Some","Fields":["185.220.102.248"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::248]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uwBMf0xcn65eABhkU3+JOIRE9XI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gX/2PhWT3N4ecDfcpXvFw8BG+mzQ3j0rFsZZbgdg3Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["37.191.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe4b:98c7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra85"]},"Identity":{"Case":"Some","Fields":["uwAFWPEMHXYNnIxWVao02qOGnK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w5y1UcACbHZdO41lrJIGThLE92t0mhTQBmSKA/Th7wU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:17"]},"IP":{"Case":"Some","Fields":["185.146.232.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darkwizard"]},"Identity":{"Case":"Some","Fields":["uvIj6d9i0yYfFnXGz8Tl1Q8V+lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VQUn8RZXPLiMJNOnOguEZoDaD9yyvSnj214JAm6vuI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:31"]},"IP":{"Case":"Some","Fields":["62.171.137.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amer02"]},"Identity":{"Case":"Some","Fields":["uu8x71fp+vOD0OcJn4yHliR5MBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6JoBP9NS3bfOJo/6ylM63OE8K++6DdnLozrxHhPjcKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:58"]},"IP":{"Case":"Some","Fields":["192.99.32.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uucLWmGxKj0x3ulOaXrx/ampuC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aykzNpFo9YHZYCwjsKyBMksNCrMs9YfWZaW3RGixYL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:44"]},"IP":{"Case":"Some","Fields":["96.224.58.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarknSpace"]},"Identity":{"Case":"Some","Fields":["usywdwWxur5cGxq0jiPZz5923us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Ke1fZERvrjTUj2HKupLBjsoIQuOuBa4Ypnd8oZI7Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:44"]},"IP":{"Case":"Some","Fields":["89.40.13.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:5928:dd9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip2b"]},"Identity":{"Case":"Some","Fields":["up1/uatO0PvKVpQdoiz3dwuhpLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ESP99P5UClggAQxy4Eo+0taxziTOZzOtf9nCpVpJeng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:52"]},"IP":{"Case":"Some","Fields":["185.220.102.249"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::249]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop3"]},"Identity":{"Case":"Some","Fields":["unw7la+nSgIdfSLIVvh+Kr/vybU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y86ALnfVZhnE4SQzJnbw/Egc5h7osQOBgB2XDuIXzQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:38"]},"IP":{"Case":"Some","Fields":["82.165.70.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["unhy+8lsxxA6zzpZgWZ0NFTWkKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rI5RIJLOaUS0Jeznkf48P7xCNm1h8WNWTSJ9NGnpqbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:39:02"]},"IP":{"Case":"Some","Fields":["146.19.173.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra86"]},"Identity":{"Case":"Some","Fields":["uncUm07adlQ2mPBRBPXCVH4wbXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ww/rXXBgj/FThJAi8PI/Dba6//Y8hNE83BrwWjXHzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:54"]},"IP":{"Case":"Some","Fields":["107.189.14.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwoone"]},"Identity":{"Case":"Some","Fields":["um4GRZa4avn1XwYDqCyQ6Vjobno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["49/q6/BKAe1GQkxK5wvqQECBFt+US3/bBSchvQiYEkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:34"]},"IP":{"Case":"Some","Fields":["135.148.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ContaboNixGut"]},"Identity":{"Case":"Some","Fields":["umcbcOaWqy+FrKPZmLgAjRRVZxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0a4hxKdAGV1yA3CN+20cZQFEO/B+EGiR8Zu2k+GJ8QA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:06"]},"IP":{"Case":"Some","Fields":["5.2.78.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:358::2bd7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["welcomehome"]},"Identity":{"Case":"Some","Fields":["umXLYfqYwOHKI/VCOO4P/snBHf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tfnQwWsf015q+XNNxCa9O+FwJK0Cv41vnXgr79H8gmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:23"]},"IP":{"Case":"Some","Fields":["102.132.130.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Echidna"]},"Identity":{"Case":"Some","Fields":["ulciKg7J7N8AOu1mXfsLEofqA50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3swJ4qtgGJrdgQVqz8DsS/YnB+1wBMhtXedyXIBy1Zo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:37"]},"IP":{"Case":"Some","Fields":["51.81.201.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::cd0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3raserRelay01"]},"Identity":{"Case":"Some","Fields":["ulOfMwFORrz3aNYbRiBNnd6hfkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SrLzlKFIvQu2YQNs1pWcoC2wTEjYv4whjEqUdn+XpuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:35"]},"IP":{"Case":"Some","Fields":["135.181.37.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:b3db::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fc3"]},"Identity":{"Case":"Some","Fields":["ulCQt4S0O8LRpBryumYw2nqZ+BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wpIVaO5PW33SHpekQnynfd4N+NDWVeRxvb/6mgzSjZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:20"]},"IP":{"Case":"Some","Fields":["136.37.16.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dattor"]},"Identity":{"Case":"Some","Fields":["ukgaPIBEfvtngRk43dObH3nhwG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8pCbxjSJIL8W2/d0bGdYgBj3VcdCvuoTX/W7CECXzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:38"]},"IP":{"Case":"Some","Fields":["137.193.65.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Serge"]},"Identity":{"Case":"Some","Fields":["ukSoieZLk/qisRTgLConmoVVxTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sG4ylP5agzXxxBPIZr468grEzj6LiOaKlve7cscR7F8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:28"]},"IP":{"Case":"Some","Fields":["66.111.2.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2610:1c0:0:5::131]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["At2lanxztaRelay"]},"Identity":{"Case":"Some","Fields":["ukPkvc5EmdvyJ6EBVWnhWzK0ADc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nu6ZTLcisGlxWoV3Lx3m7AOOYo86cpMWqwDSoQSVkMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:49"]},"IP":{"Case":"Some","Fields":["45.32.219.137"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5401:15c6:5400:4ff:fe23:bde8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7d9"]},"Identity":{"Case":"Some","Fields":["ukO8pbbM+GJ0+M3//3ppL1+Vt3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j6te5FzVPE1Xi6IP3MG25wL7a1MgTmUAPuX+4oVq1b0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:39"]},"IP":{"Case":"Some","Fields":["65.21.57.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting22"]},"Identity":{"Case":"Some","Fields":["ujqk82k7+nuuXwmZ9+Y5kFF74vI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/MdYqeKTE0jMp55XQDBh3GO65VIlpssnpq/ESoC9F8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:05"]},"IP":{"Case":"Some","Fields":["185.204.1.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WWW"]},"Identity":{"Case":"Some","Fields":["uiV1ueE+uhWP2RY5TFBGpr1vYZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xRV1BaihtV681+g/ytV8jhlh6JpOKcd2IaVIUcfVY4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["141.94.71.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:304:200::afec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blu3Sun"]},"Identity":{"Case":"Some","Fields":["uhP/OGH3iN8ZxUGIIKnZF9wmvhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HMi5IEst6Kvk4LPyxYS29r8XigOLKyp3MY5BdKiRy0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:03"]},"IP":{"Case":"Some","Fields":["185.130.44.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay10V6Rocks"]},"Identity":{"Case":"Some","Fields":["uhNMey5o7rNhJNrI6+lEzXL74HU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjcMdh24bkVsi6AjPt0nyUWDB0n5UKQAnTKoho9Ak+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:18"]},"IP":{"Case":"Some","Fields":["185.194.142.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:773::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeassange"]},"Identity":{"Case":"Some","Fields":["uhMyRxlIXcO1/yWMIWAyh/Gv/QY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCkgy+mgD7hfB7DRsw5aoNQH6kOxNbarejB1dEHKNFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:46"]},"IP":{"Case":"Some","Fields":["144.76.201.253"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:82ca::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schuehlein"]},"Identity":{"Case":"Some","Fields":["uhIz3BMuNYzPjYlaWFdDFpVCBnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P0chqSLyE1FYyMQhGgy/Subd9t1iZ6qO1ygXTgpFUeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:39"]},"IP":{"Case":"Some","Fields":["85.92.108.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["uhDtLdB5rfPuftUWreGqsI84D3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LO8Ap8/4DiUhV/SOPBZTUSqiZaO01N1Jk86diVQG52o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:34"]},"IP":{"Case":"Some","Fields":["23.128.248.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer02b"]},"Identity":{"Case":"Some","Fields":["ugU8cuR2weudBSN9DWoonBj76Oc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bgEZLd8rvX2JHOlpIOG14Pe14WdSb/g2WCATBgjMJrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:37"]},"IP":{"Case":"Some","Fields":["82.165.169.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vanbo"]},"Identity":{"Case":"Some","Fields":["ufafFE31vi/ZLdv55nxlnsxeU5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DxsEJOU71rxDqSkF2Ijr2T1pg30B23wJ5pTuEYrNvNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:07"]},"IP":{"Case":"Some","Fields":["178.63.3.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:44d3::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv26"]},"Identity":{"Case":"Some","Fields":["ufWnVl72dFZBkqwY1t6zAboKFaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jEr6TYE/kR8TYFjKVxRSI60Ly18rxSTqhdd4USY+GM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:25"]},"IP":{"Case":"Some","Fields":["45.62.224.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skiff63"]},"Identity":{"Case":"Some","Fields":["ubrMrt5wK4UnwGzRZRoDOVabrLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fapNnVZ3FthPECASuJnBKi6JGa6xx8syVYN4+idkD8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:56:46"]},"IP":{"Case":"Some","Fields":["45.94.107.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversdeFrissons"]},"Identity":{"Case":"Some","Fields":["uazjFvkx0J9c7yDHNxz9yGnWaHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["utC7ewz4R9vIXfM558qMh2oi3lWJCJusFcF8gUpS4yg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:48"]},"IP":{"Case":"Some","Fields":["190.103.179.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x0"]},"Identity":{"Case":"Some","Fields":["uahPYh/wTTs6lrsxTSfBS/pUptc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KUXLtEpi8PI+np0CfAcRBWr+rknmJS+t571iYi/5nXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:41"]},"IP":{"Case":"Some","Fields":["185.133.210.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:e880:1:f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uaXLLYTWV6TA0pBHhHIh9fuVH9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["foAd7R8nSKuBNjgWX0kj58a7u8XWuwRv7xuCmIpw53o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:05"]},"IP":{"Case":"Some","Fields":["217.70.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc08"]},"Identity":{"Case":"Some","Fields":["uZxot3rgbND9PBnm9VUocr4udgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdJd0iCbcrsY+x/cg+JqhC9JQJDb2lqcbxA/Xkw/QLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:37"]},"IP":{"Case":"Some","Fields":["185.100.85.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mobbingsyndromde"]},"Identity":{"Case":"Some","Fields":["uZYsGTrkMT1iXpv7lBXEMGIU0zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3BXqGrQtz6zpRC1E+4GGoMbU6S16mTOII6ElXWbsKuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:33"]},"IP":{"Case":"Some","Fields":["176.95.148.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRandomNodeWw2"]},"Identity":{"Case":"Some","Fields":["uZLToFdzHWHmDYIRbs6wMp18vrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V6h1wNZecFdgZ+PP586txnL4tSlBOdtHLe8fWUQTE7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:47"]},"IP":{"Case":"Some","Fields":["212.51.143.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8059]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uXiMRQsJ58Ls1mrXj2/DdZr67DA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TijONyIUJ/WgnL/E/yZ2LtHrCwpivlmTj0GZQK553nM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:57"]},"IP":{"Case":"Some","Fields":["23.128.248.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::9998]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay39at5443"]},"Identity":{"Case":"Some","Fields":["uXcVyKHucmecdEgPMBsRrAFbTFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bfEi0LC6hAmMVQBf54kJ4IB9ctdAkTRgrBaK1W3ZcTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.39"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gengi"]},"Identity":{"Case":"Some","Fields":["uXTwyBXHB/V/l80VmHR3BpK9p+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Qrs9NLJLGH6Z/iNMwfliOTax6bL8N3ODc0IkU3tTVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:23"]},"IP":{"Case":"Some","Fields":["42.191.75.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamster"]},"Identity":{"Case":"Some","Fields":["uXD3Il/X9gK5rptn7YtmgOjRTCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zNv1VEmc6eUED3PpJv1C9bbjTbuJw+rAPttTjQefLC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:29"]},"IP":{"Case":"Some","Fields":["5.95.167.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Guy1Relay"]},"Identity":{"Case":"Some","Fields":["uW3SABimZSYBa9SCGEKfdUxgf/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/flCXksghzRYX0JtzKBU8vB33AUnr19JTXHNyRe9Izk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:25"]},"IP":{"Case":"Some","Fields":["23.126.9.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc1"]},"Identity":{"Case":"Some","Fields":["uWot8cI9+RadcK3gmTvQAzEfUdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KSQgWd7cw+3UUedm+ob3pQVw49l/it80hHuRGf+1GYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:12"]},"IP":{"Case":"Some","Fields":["91.11.218.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hooyah"]},"Identity":{"Case":"Some","Fields":["uWmqFpjztwIK0ulxswBq0xmZbiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W8MItYzAjiTzANnwXmR5HJoKTsuIGooFK1hRAIT4vPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:09"]},"IP":{"Case":"Some","Fields":["68.6.151.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defconorg"]},"Identity":{"Case":"Some","Fields":["uVaoKpVZ1ILhrP6r2Jj9w/KZEAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JGsNnxtrAz2yqKaZp3J0LOtAUD80iEocVcFWjtbLCeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:07"]},"IP":{"Case":"Some","Fields":["50.230.231.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:559:327:231::84]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MightyMasturbator"]},"Identity":{"Case":"Some","Fields":["uU45RU2Ot+bcfI45+Mi43MoAM8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EDIIAVHgwjNVIvMGqRo0il0BJCc7sTAyy+qlm28GwkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["109.229.210.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay30L"]},"Identity":{"Case":"Some","Fields":["uTUD1FjZ/pfeXBLSEQgocdCPEoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4Y6ZMabKDqedAsqnOfqAhN25Jx4c+dkwLg8U5H4fm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:19"]},"IP":{"Case":"Some","Fields":["185.4.135.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:217::e528]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seth0r"]},"Identity":{"Case":"Some","Fields":["uSfpv2ZgPca5lrWKLCt6bXITrh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6gS/qL2OrDWiL6BwMBBa94g4QeiidXZ180OSitaiBIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:50"]},"IP":{"Case":"Some","Fields":["94.16.122.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["456f"]},"Identity":{"Case":"Some","Fields":["uSM1iJF8X2t9p3ERhwcJBZG8TIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oi6cXuKnea8/QMRjJ0TlZOJrgtvuz5Km7vwrFaL2Rpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:50"]},"IP":{"Case":"Some","Fields":["91.213.8.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bitplane"]},"Identity":{"Case":"Some","Fields":["uSG4uPkBTn0P5y3m5cQx+hu6GpE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yo2Ifg66VxokCdz9aP7R98uWT9rC/fQx70ggVPUKf4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:18"]},"IP":{"Case":"Some","Fields":["74.116.186.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2606:6d00:1ab:e701::235a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay16at8443"]},"Identity":{"Case":"Some","Fields":["uSCOrR5ojp7kOgUVms1GOOtN/Yo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUiEfNLXB1+fITIqt6Slx/t3XCCi0sVx+GvdrapPT/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:05"]},"IP":{"Case":"Some","Fields":["140.78.100.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange008fr2"]},"Identity":{"Case":"Some","Fields":["uRoesw5m1SAm780elr/A6WbIPm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5724z/OO5+/RAVz+rM/fhwNKCBs0/c9wNH4c6AnI9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:54"]},"IP":{"Case":"Some","Fields":["62.210.105.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gandi24325exit"]},"Identity":{"Case":"Some","Fields":["uRb6hz4AoaEITbpA3XZ/tlm+o2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0l9b5o2nO//6p5vBpGdxVDefmUpzR3yOF/S3N7CACcs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:13"]},"IP":{"Case":"Some","Fields":["188.68.42.230"]},"OnionRouterPort":{"Case":"Some","Fields":[24325]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:9d0:c8b0:10ff:fe6b:1cf8]:24325"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aplestia"]},"Identity":{"Case":"Some","Fields":["uPrk3jw03L9CV4UgVAigBLecaNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ye+8o9lmhYDajFHhetnd29vUAQSj7pquVdKqgnhNGgQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:33"]},"IP":{"Case":"Some","Fields":["199.195.249.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:bd4:a109:2316:1352:1488]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["uPLNoT5QgBvB4G/dHKmEredrz3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdvEFW6JxVzDSDoQX/AVLG6dICBvT72F0V09yQmMwTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:34"]},"IP":{"Case":"Some","Fields":["92.223.65.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:154::b9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MalfunctioningEddy"]},"Identity":{"Case":"Some","Fields":["uNxOrqmEYm3NUtoevQO+8TWrK8Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9rfp1dwLUNhlnJfCATsuyBtT2HoyUzaz7ShDnZVpmDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:11"]},"IP":{"Case":"Some","Fields":["71.192.152.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:558:6017:16b:e5cc:c5c0:daaa:dd12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soltor1"]},"Identity":{"Case":"Some","Fields":["uNjgdEjgQF9CdeUohO2c72P+5KM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v9yOSd+iAK1Ujl8SYPl8zgDeP8wFCikiPskk/IVl0Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:33"]},"IP":{"Case":"Some","Fields":["206.55.74.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["memcpy2"]},"Identity":{"Case":"Some","Fields":["uNReWONfYiAbkG7JJ3ldM2SawQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P6OlJwQ6I782M8Z/FGd+4JmX+qp/2ic76G6NFiGpHZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:52"]},"IP":{"Case":"Some","Fields":["141.148.237.212"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6eff:4be1:c987:15c:da63]:8081"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay40at8443"]},"Identity":{"Case":"Some","Fields":["uMnKepCi2UQGxtmJk0DraNpCZbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjsVpD28TsqVyrNzZsOHrhUCyW/eW1mjBhVUOpIWRvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.40"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange009de"]},"Identity":{"Case":"Some","Fields":["uMfVa36Hs5vQh4xdHWkTBZbQv60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["du0hc/qFv8yTAR3isRZAy2w0OP4Xo2Se4FdAbN4cIrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:14"]},"IP":{"Case":"Some","Fields":["173.212.239.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2031:2233::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pIetr0d1C4rB04711"]},"Identity":{"Case":"Some","Fields":["uLtAcC568tv+odH1xCU+qtOGmCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuvvnK8TGfr6Oh+JVHJSU2iyfHq16/a7N2++H3arJ8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:03"]},"IP":{"Case":"Some","Fields":["130.61.189.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["uKwlnUABcpl9CBILO9WkCQhBsG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n83w5AfUci2zv4UlDi+g9/GL1vd2/EW4J2Wn62V65Vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:59"]},"IP":{"Case":"Some","Fields":["185.220.101.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrolantor"]},"Identity":{"Case":"Some","Fields":["uJHLY3DPfFHG+yTYCUevt+1GPQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GKfdaYM9G94rkMdZd/44zpBvFbidjFlqrKKjOE10JRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:22"]},"IP":{"Case":"Some","Fields":["185.220.100.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:9::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uIi7r1lbufXxH0t71BOKwATfpfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M77fs9qGLYXJRbSsebJuLdPAhgHR72qWqARmf0C/es4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:26"]},"IP":{"Case":"Some","Fields":["161.97.67.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3006:3185::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["franksToeKnife2"]},"Identity":{"Case":"Some","Fields":["uIINTQnJHObehExaWCS9Hef9dKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZIkh1xMxsijcLWg/PJ6yLy3XpKAWE/cuXsuUS542eNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:13"]},"IP":{"Case":"Some","Fields":["72.182.120.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9923]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["who8USicebeer41"]},"Identity":{"Case":"Some","Fields":["uGt4XeQW2v6O1mscgpsOb1czRRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Kqol/jjB3/Hc419a9+YYMPn4W19lwpnWZWgCanOQqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:04"]},"IP":{"Case":"Some","Fields":["69.197.160.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8552]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy60"]},"Identity":{"Case":"Some","Fields":["uGE3rpaBcBkBxnIOVcFoBbRr2OM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bc3mdeqS8Z7gJCnfYX4c162SFVPbhSa6lpH/x0OCRUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:08"]},"IP":{"Case":"Some","Fields":["212.83.43.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:abba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mj2"]},"Identity":{"Case":"Some","Fields":["uEmCT4/NeusTDfNW9ZK6QMaGygg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EWyaOQsYD/jq/G2eXm1yafRiDAPw5ezqcob5yge5ozo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:57"]},"IP":{"Case":"Some","Fields":["93.115.86.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet3"]},"Identity":{"Case":"Some","Fields":["uD3BVY8NNDU7uZLvk6/q/bImpz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNiI1b/2zf+E2JsKMG/F5yMphfPEeWYiMJozIU9A2fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:41"]},"IP":{"Case":"Some","Fields":["193.11.114.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::101]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trustn00ne2"]},"Identity":{"Case":"Some","Fields":["uDeJRmkg/6qkG5IzM+I4OahI/BY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9o9bqXqllDQiqhN7G5i9KSwhCMm6DKsiMZgZXUp7+pA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:37"]},"IP":{"Case":"Some","Fields":["84.234.250.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheKrustyKrab"]},"Identity":{"Case":"Some","Fields":["uCX2FNZAKzbhuOjY9Pfhw60Mu2A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEXxx5/fESKQQR7K29NUzqUp/WFigv8s/BXcjafizuA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:05"]},"IP":{"Case":"Some","Fields":["70.173.175.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["respecttoall666"]},"Identity":{"Case":"Some","Fields":["uCQKTHFaJZXOVMgqsXXIAhR2i0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwBE75Kv2c6O0/vVp/CE7/H3q6vCNCtPtq1RfIdZWwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:27"]},"IP":{"Case":"Some","Fields":["83.35.162.197"]},"OnionRouterPort":{"Case":"Some","Fields":[12813]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harlock"]},"Identity":{"Case":"Some","Fields":["uBs4kCvwJr8lkcotc7mc7rA/CGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8h1w7rkmkwpD97ZIWU2NwWaAr7o1U1rPweSzRjXnXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:58"]},"IP":{"Case":"Some","Fields":["158.69.205.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::4dc0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["uBI1UL5qOf9+wtAVyGdVUXkHVX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nbqMHk/yrfeoOoDzucBhN2mg5H2Ppuy6mfj0K4wWh2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:07"]},"IP":{"Case":"Some","Fields":["188.95.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay3"]},"Identity":{"Case":"Some","Fields":["uAwGhT980LQ1/sv9Vyq4UEOf2gI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4lfKwWhCP4wcAJeifyLn33esnQeUTfW9A7MRhrnsCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:32"]},"IP":{"Case":"Some","Fields":["66.175.235.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GummyGooseberry"]},"Identity":{"Case":"Some","Fields":["t/kFKEjbd8C5ZyLppHruwlea3JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QqT9AFURE78Y68E6rzSBsSWxiyJ6qSFYu8uxMp7HBew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:49"]},"IP":{"Case":"Some","Fields":["99.199.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[55001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation56"]},"Identity":{"Case":"Some","Fields":["t/YKgXN85jXnUcW8pnv9INryYVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tEBi272jfkE2Fp0dgOnd0UqzFPrS9czigxvwhA3j4as"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:43"]},"IP":{"Case":"Some","Fields":["51.75.162.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex52"]},"Identity":{"Case":"Some","Fields":["t+zZxqkQoXC1UWV0IEnLzHd0lPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SSKRsoK02J/WhMke6h8gP+BzUi5Vh9+sjbUtn0d1yEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:12"]},"IP":{"Case":"Some","Fields":["199.249.230.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::141]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["t+mEnURvxX1L3tk3uOF/Oqzh+gY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkPpCEmouHbxgzyK+o2mLAbK+r4TeSwT+h1PrU+KfRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:55"]},"IP":{"Case":"Some","Fields":["185.220.101.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi2"]},"Identity":{"Case":"Some","Fields":["t+PxQviOK1XmB7ODKA4ePvbmKss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lm7ipuwv63HCgx9LIyVSL3y1F7c8y86iwNAeO30GgA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:21"]},"IP":{"Case":"Some","Fields":["193.31.116.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shibuya"]},"Identity":{"Case":"Some","Fields":["t9tJtE3ZM8lktHw5mlD11Q/fkYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofQrkM2/vaLSILxRxsa7+x6BxNaOq4X4HDY9J4MEDpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:42"]},"IP":{"Case":"Some","Fields":["82.197.199.203"]},"OnionRouterPort":{"Case":"Some","Fields":[48912]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["peep"]},"Identity":{"Case":"Some","Fields":["t9dz4hlttbQSnTwFDAY9sPjfkaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RLsbSCW4aQdQWfRHB7n6FDNJ9hH8XeJx3tdfwi9mSa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:46"]},"IP":{"Case":"Some","Fields":["195.201.94.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:6f8c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["t78C6FbyA7KODXEIjXHxgG0LatI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rGoHQfqGKvXmSPtb21T8hPmfF3O6d0RjisHay2BvtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:37"]},"IP":{"Case":"Some","Fields":["37.187.205.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BonoboDanada"]},"Identity":{"Case":"Some","Fields":["t7lEWP51uSGH2+waph6SjYKhySI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CAoSGwEaK8wmIUpUgNmg+BreDk+Dln07gwcoGulUz3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:16"]},"IP":{"Case":"Some","Fields":["173.71.120.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glowie"]},"Identity":{"Case":"Some","Fields":["t6nz2pL73kmJpHb26LnHC2EW0sU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkVKQJS58GYhgov1ZMYPFrHG1CIK+AFwwtdt4CY1qzw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:34"]},"IP":{"Case":"Some","Fields":["194.195.253.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:93ff:fe08:4486]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["t3a6FXOlVDRCFwpnvcjq1N5zHI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/YtiIF6roAnRn665ZI3HVWDR+VMHkrVUtyumbBfeJp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:49"]},"IP":{"Case":"Some","Fields":["158.69.225.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["movingdown"]},"Identity":{"Case":"Some","Fields":["t3GsjxPbHaGzU88FDEwiwhB7ymU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVvFMzINRftZGsuDlR7EyZoJNexfnLQKLBBmLkau1HU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:01"]},"IP":{"Case":"Some","Fields":["66.23.203.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fracturedcode01"]},"Identity":{"Case":"Some","Fields":["t1yOAU4gtqN1/j1bAdJVTNnOxK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jW5Zy/W59J1uNg53q0ZLOO9dxLxl3WKemsWir5roCZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:17"]},"IP":{"Case":"Some","Fields":["140.82.16.129"]},"OnionRouterPort":{"Case":"Some","Fields":[6910]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EliteZealot"]},"Identity":{"Case":"Some","Fields":["t1xDnzJnh5zi9vne41Wza0SFmWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UYJRJ8vuhZBSlRdrffss1Fyu0Jd2INpyz5APjCoH5sY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:53"]},"IP":{"Case":"Some","Fields":["78.107.239.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorSL"]},"Identity":{"Case":"Some","Fields":["t1JtoEYBDPCGaSdF6L0FKLA5w/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmgt+TDNV+czGKOI6OdNyuSYsmoCF5nlN55sLkJEPFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:02"]},"IP":{"Case":"Some","Fields":["213.128.141.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedomRelay"]},"Identity":{"Case":"Some","Fields":["tzf7bL9+UU3Y2LQyoUl7nb0MRdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ArLdX0tHlWC4WlaxcSqTAyYHBHJaeET3VHajR2RWe/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:46"]},"IP":{"Case":"Some","Fields":["135.125.55.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Maine"]},"Identity":{"Case":"Some","Fields":["tzJ7VZyhUx0YI4biG0ho/Lfw9FY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oq+K31MtdcxJ2LygpobCHx/J4t4cfwnJ8sB6hKB+Ggw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:07"]},"IP":{"Case":"Some","Fields":["107.174.138.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hastyfire"]},"Identity":{"Case":"Some","Fields":["tzJiFanPsTkmGIQfI6DZ95NasQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8kqEKuXAawXLsNy9My4hhT3od+ZUF8naKztGpvLvCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:52"]},"IP":{"Case":"Some","Fields":["91.203.5.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alien"]},"Identity":{"Case":"Some","Fields":["tx5oqAxRVnRd3ndB9t5eMgKr0JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ZRpIyQ0RoZ2T7k75Jct9qdt+NTOLJCJ90rWD+k6uXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:55"]},"IP":{"Case":"Some","Fields":["91.203.145.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mesrouilles"]},"Identity":{"Case":"Some","Fields":["txFySlvNfTBDcSHa972foljDjZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jRFFZv5/lMcvJhyTlNm5/7V1BKFPxingFy0EgIt7ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:58"]},"IP":{"Case":"Some","Fields":["109.24.157.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hdjfgsfkmNflnzjg"]},"Identity":{"Case":"Some","Fields":["twl4ijWO2DXvhgjSegL10dYy0jQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbECWPZYfNnY7hRdx6oiHF6xR7ftcYWeqWwPkOFlBHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:43"]},"IP":{"Case":"Some","Fields":["162.250.191.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WestonReed"]},"Identity":{"Case":"Some","Fields":["twfJhTspWMef/qm4EuVHtH7haDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PYvX9UjPTrxtHWU0MsnDvPnoUqWtmqh0axlV22SDkJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:05"]},"IP":{"Case":"Some","Fields":["23.134.136.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fb9f::dead:beef:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex11"]},"Identity":{"Case":"Some","Fields":["twR/venFPDkBHKhOXLKo41QwZtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hjze1dhBgWB5mPZ4J8724UztyUDZwdwWmIx2JUbctP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:20"]},"IP":{"Case":"Some","Fields":["199.249.230.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::101]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elhombre"]},"Identity":{"Case":"Some","Fields":["tv1e8oz0TYgmYMBC09q+dxSgWd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNhPPM+QKx+TML9w6nIp8dYSXTg18jRYMF1vH3pAeAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:47"]},"IP":{"Case":"Some","Fields":["185.151.242.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8081]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sliderzz"]},"Identity":{"Case":"Some","Fields":["tvERMwZ4fU9Y+qwnWa/wsutClEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gaFvHr+/KFZAsJZ927WkdUJeunqTJveQkpJhuKj3VqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:55"]},"IP":{"Case":"Some","Fields":["172.106.10.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HerthaGresham"]},"Identity":{"Case":"Some","Fields":["tu18Zvtnr9Bx00CpBAQbHiu6fM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["foHd0Yb77IHgXyqRdAO7Lw2AmWbeVtwIuJF0RuWwdmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:26"]},"IP":{"Case":"Some","Fields":["5.181.80.110"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Neyo"]},"Identity":{"Case":"Some","Fields":["tuQBZ76ELyebEbKg9ZRxg4eqdeU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/8IGT9ULDq2C+/96E2K0muuRvFgFe8mUlBX5y4fxEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:42"]},"IP":{"Case":"Some","Fields":["188.213.31.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:3c:a257::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ttgRCzS9QBrfhbetByXERcVetls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4fdvz8eXkU00Rv8qZtOvCdy9rQIUAw3vh/u6PtWaWFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:30"]},"IP":{"Case":"Some","Fields":["185.207.107.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PXArelay03"]},"Identity":{"Case":"Some","Fields":["ttSRapjZkCfaJdQtcNaG8LNmPzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSFJbGmiF91KvXHeNURvYueUgIny9kzHN/FJHQ4gUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:52:49"]},"IP":{"Case":"Some","Fields":["87.62.96.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["monetlemmon"]},"Identity":{"Case":"Some","Fields":["ttGq5n6Me7l2yojMSGnK6WA4aMI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnyT1d+AmawolBYn7fuAmeZY9xEZUsX9EhEfK1ldvGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:32"]},"IP":{"Case":"Some","Fields":["162.62.231.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0133"]},"Identity":{"Case":"Some","Fields":["trq5XDCyof91uAteKwiVuX/4fS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sT8LWiEygAngAGXf5Q0pj68DOkIMd8Xg73QcqD1RRII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:03"]},"IP":{"Case":"Some","Fields":["185.220.101.133"]},"OnionRouterPort":{"Case":"Some","Fields":[10133]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::133]:10133"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TerraDelta"]},"Identity":{"Case":"Some","Fields":["tp8eWdpsf9C2FGp2bqXmHYSTd48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["le48f5zb3ER7j//b6EIExTr5IZxSwYnzOA6zVVxI/Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:17"]},"IP":{"Case":"Some","Fields":["23.137.249.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:82fa::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode5"]},"Identity":{"Case":"Some","Fields":["tp8bx4q1eVpTEXyY1JBIOkkad5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAB5IpSU8zz71VkElxFVlfMSHY34CGm70Q4bbE8AwVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:27"]},"IP":{"Case":"Some","Fields":["193.26.159.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4c:fe8:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tpP/tP7G1a/EtEAQtRMFhTsM3As"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZFBZfLU2tdDEDjbLVhvOMJJLsG/edEmXn9xx4r+ow4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:55"]},"IP":{"Case":"Some","Fields":["5.45.102.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sauberesache"]},"Identity":{"Case":"Some","Fields":["tn6OSzf+AN/wKDqRrMSHIZf7S/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p0afuV6d0TeZXw/z2a++BKDMVArIS3GV61a3k+lHhDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:20"]},"IP":{"Case":"Some","Fields":["159.69.91.16"]},"OnionRouterPort":{"Case":"Some","Fields":[18732]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:26ee::1]:18732"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["tnxwObBEh4VBKaZrFvXuPP/LtJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WyWyj/C3Dvam9x5G7sdn6u3OTvp0C9Q0R4f1G35So9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:52"]},"IP":{"Case":"Some","Fields":["185.241.208.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["simpletorrelay"]},"Identity":{"Case":"Some","Fields":["tnnGuIRv7lNpzcGaDS0Db0EA9fo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+lGt1gwrG67gvFPl0NnvmPZSpG3qxYBdeYhHLZbU0o8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:57"]},"IP":{"Case":"Some","Fields":["93.135.92.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tnbo/sEQnNpCQmrqDG6/VJDbyFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["maPdiFReRT1I+8x5O9esLbtaHq67iGZCg5JwbDRw0Cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:02"]},"IP":{"Case":"Some","Fields":["37.221.198.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:26:6831:11ff:fe02:b39]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tnPyoBboajHtoXPPPMR7+3IbbLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lygOpbBRC14ly3Mo59TA2Q+GEw19g4QYocfcijWEpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:55:20"]},"IP":{"Case":"Some","Fields":["185.207.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["tnCwvhV8wqGbdvBDQbX46ZUNRVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l/bUt+bLbJT2XEF3iaDpQ7Y0ZQOt5kW6jhxq4AsmkZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:36"]},"IP":{"Case":"Some","Fields":["185.241.208.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay18at5443"]},"Identity":{"Case":"Some","Fields":["tl68jVlrvK0K9gksczwAhylZ/Wg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLF9q1Bch38GmhXMzxHfzjRRVrJaG4sdmeTSx+oDxeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:08"]},"IP":{"Case":"Some","Fields":["140.78.100.18"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vps2249555"]},"Identity":{"Case":"Some","Fields":["tlzpuA775GEziQavVh+HE2A1+Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3KZzwTvMbRgs+b5aCNo8BrOzwmRW0rUTbABQxW6pPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:55"]},"IP":{"Case":"Some","Fields":["93.186.200.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:e5c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["tknK6nygO8F4ImCpM9qyXDkfXBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i0h2ywsMJta7Dzi6ZPB8j5vivpNU9p+9lzX5xCdsMBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:05"]},"IP":{"Case":"Some","Fields":["185.220.101.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::194]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frell2"]},"Identity":{"Case":"Some","Fields":["tjj7wDIXTKqUCbg7XO/7SQbUNDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ktEL7/h0Oy28dPupBhBuQsbisA1LKNdPPELyzzWVnsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:13"]},"IP":{"Case":"Some","Fields":["85.10.240.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:282::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["tjZlw1fxDJz6xEicRDwmUcVgnvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BTzIclBddzYzE3VxDm94x+vmVonHbk7KFBcc1Q8Q19k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:49"]},"IP":{"Case":"Some","Fields":["83.97.20.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:54]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumaine"]},"Identity":{"Case":"Some","Fields":["tjYmo8pvBSGEeFPd7G1ARMgLkD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8RenAnVmGjMyILXc3OPIPu44qZEZYezeJC++SIJUzl4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:24"]},"IP":{"Case":"Some","Fields":["79.124.7.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN10"]},"Identity":{"Case":"Some","Fields":["tjIORKIwMCx7+TGeZ1l6m4eIIkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KKtV0dZT5JAWS0nP+rNn25IkdiYphErdPAu4hdrWeuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:10"]},"IP":{"Case":"Some","Fields":["199.249.230.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::e664]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["thrfpZ8gIw616jrLNwH9FXIE7IE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q89Yfm9xlj5nAdIBhnf+MH0rI8NwJzP4+Z96At1X1nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:55"]},"IP":{"Case":"Some","Fields":["89.247.198.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0167"]},"Identity":{"Case":"Some","Fields":["tguU/A/Y328tnGEfd/x+9mZGpFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n03rcXV38Ii3y9q/i+hWw1Pb3gonZ5yV827N512Jg9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:42"]},"IP":{"Case":"Some","Fields":["185.220.101.167"]},"OnionRouterPort":{"Case":"Some","Fields":[10167]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::167]:20167"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal4"]},"Identity":{"Case":"Some","Fields":["te2Z8DkfKXatq6zTmkUFQt/QIIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y78EQGfo1zgXtP35VIVE+ftN3/TFYs93AeyQimCQSKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:11"]},"IP":{"Case":"Some","Fields":["46.148.21.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sillyotter"]},"Identity":{"Case":"Some","Fields":["tew3trqDB10yYIFQxXlBpDU/d8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4hDXicZJL/R5E1z7c/VceTwF1Wu17Cr4DI6KLGg3nPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:32"]},"IP":{"Case":"Some","Fields":["99.89.238.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noname"]},"Identity":{"Case":"Some","Fields":["tecsT2IhF2cHV3kK1JqMNgokCSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AElfZvTyJOoH1uvEepGPWlLCz3IzdpgyKZiTIY4XJr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:10"]},"IP":{"Case":"Some","Fields":["158.69.123.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CharnoTorEntry"]},"Identity":{"Case":"Some","Fields":["teAbDaVQsViAvwl2r1S5CGnH2wg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IASlo0+XGAxahZVihcuJxqh8p33+2+jHFAXCmcaS3uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:19"]},"IP":{"Case":"Some","Fields":["212.51.149.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:5735:5::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uncle"]},"Identity":{"Case":"Some","Fields":["td6Cu+grCVCir7SI8dUeySvwpvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVs6Z9cHaO+72WTnFV7DvGbfQwSZ7StQ7dkf5sigAQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:24"]},"IP":{"Case":"Some","Fields":["176.126.253.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowdaash"]},"Identity":{"Case":"Some","Fields":["tdAbIKw9BNw1W27UtDCOXoHbX0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnRF26+cp5Dn3M8Zu5Hx3qsS3aWwroULfxqM67quy+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:34"]},"IP":{"Case":"Some","Fields":["179.43.182.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e1"]},"Identity":{"Case":"Some","Fields":["tc7Wg0vujjjSxi8AzLZxXwRA2iE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/FLk31djzeDkkhRT4oYSz+L7IRIsSSdUIQi+3OUn58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:02"]},"IP":{"Case":"Some","Fields":["195.176.3.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["C00010FFD00D"]},"Identity":{"Case":"Some","Fields":["tcl9eQKkjlNII3CAOw4By5L+sI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rlFvUfeeGLRMLIP4UGpwBb3KDh2+nwLN6EIeMnmBS2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:26"]},"IP":{"Case":"Some","Fields":["88.134.98.123"]},"OnionRouterPort":{"Case":"Some","Fields":[61000]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lagarennePIrelay"]},"Identity":{"Case":"Some","Fields":["tcY7OsMUFIpoXXz8rRJdMHXl1yU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Dvp5qXn4k8Od6UAoODgtXOoXHZmAhTJ5irxDB0S70BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:32"]},"IP":{"Case":"Some","Fields":["91.173.202.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:372:b0c0:5662:3d0c:6091:512b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maiden"]},"Identity":{"Case":"Some","Fields":["tcNCXI/g6aizPFQ5UeyLhXdSXIo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NldFw4QEL8a3L91DVOokcHN+HgXpHEgbbxN6SB7t+iw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:26"]},"IP":{"Case":"Some","Fields":["168.119.118.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:eff5::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["olanstra"]},"Identity":{"Case":"Some","Fields":["tcK16To4b1+LLljP5LmP0d66b1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlS/MNxNmdH6oHd/URy5TeRyJ94mVf36m1lvRrWXQ84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:35"]},"IP":{"Case":"Some","Fields":["193.56.240.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["taZbmXyJhYP5xMoW/mA7c0fIlYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQxPIJzgI4DMvrgeenQ6cumG9kdBM9T/8HtZorQ/U7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:18"]},"IP":{"Case":"Some","Fields":["185.241.208.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heaney"]},"Identity":{"Case":"Some","Fields":["tZTv3boqjxLe+Cff7mmSpusxCyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["in/C07Z9oOKp0ikaxUI7gP4Pp9gyDBaiKfI7+3nEcMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:17"]},"IP":{"Case":"Some","Fields":["93.115.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LasagnaCarbonara"]},"Identity":{"Case":"Some","Fields":["tY2DGTmzXELD5Hsff2ab3+Aao2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4BTMAzKFaSxk2V3dCX5eyqtEvnDa0zaTx5ca+V90BC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:07"]},"IP":{"Case":"Some","Fields":["89.208.105.235"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mwittig"]},"Identity":{"Case":"Some","Fields":["tYARGFW5xFLrIkynkytibijTwuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ciYJop5bOZk5ZdWCM5H8o75q2VwGQ6hEAJyZs/yNhgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:35"]},"IP":{"Case":"Some","Fields":["185.235.146.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:8a40:f313::29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Paphos"]},"Identity":{"Case":"Some","Fields":["tWuf6T+DtPppI0sXoGDoqOdEbRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/LrkC9yCvtQUzBZkY2YxIsjhNxKaE9huK6FkOvBpgVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:25"]},"IP":{"Case":"Some","Fields":["62.210.205.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oniontb"]},"Identity":{"Case":"Some","Fields":["tWK/Mgyb6JZSueFMVLULc4eqDAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PLCZNDjeRtL3IDHvFtzFK0JRF4kA/nrjSGvEMQ73aks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:25"]},"IP":{"Case":"Some","Fields":["5.255.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:9a1f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH101"]},"Identity":{"Case":"Some","Fields":["tVWM+nClMIWCsldnyWmObb5qkLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4+3POvM6JuuV1FbNiFBxHD3kUMTO70Q269KeW6Fl/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:01"]},"IP":{"Case":"Some","Fields":["51.15.150.228"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orion"]},"Identity":{"Case":"Some","Fields":["tUvA63z4If4rmm1xFr7nUhf87jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g9RY4qy3bBNFCTNMtz3Xj0XgvP7NQ2TCOa+vgWDRd4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:14"]},"IP":{"Case":"Some","Fields":["190.2.154.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["tUFYHLBZmjYmkZbvzG4j9nt1KFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iNlz7+fJ+btOLWT3yjmJ+v3saJnBLZrLlvpe9zlFeBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:03"]},"IP":{"Case":"Some","Fields":["5.45.96.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:669:582f:2eff:fea5:9474]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreamwriter"]},"Identity":{"Case":"Some","Fields":["tTa3Gh9VmcOfyLGRXS6+Og3rFAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JDerdENHrDNcY5XePgPqJ/ZhxkfaTyGxcRmcVNT58VU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:41"]},"IP":{"Case":"Some","Fields":["116.203.159.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstor"]},"Identity":{"Case":"Some","Fields":["tSEttoWioPz7rkJXOOR40SNhcQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9xXsK2aoNxkYpZH49Y8XflSiNQ1osu3TY0u6tmizL50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:46"]},"IP":{"Case":"Some","Fields":["93.115.97.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:75c0:36:2124::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay18L"]},"Identity":{"Case":"Some","Fields":["tRcZi4azhZwweFfFn2ZgooH8i0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vY3vtiDHFx/mHOq8yV+9gUdxqUV8aRVww+XcA61ssr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:32"]},"IP":{"Case":"Some","Fields":["185.82.127.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tQqYJnpjcT83MZ2JXqEVHEsnvk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/2mERqkGD+LYEgtvf7ZEoAwHkvhc9G+oJ7+P2eGasQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:42"]},"IP":{"Case":"Some","Fields":["82.128.229.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stephen304"]},"Identity":{"Case":"Some","Fields":["tQU6v/hFyWsd2PRdzzLmvh5j8Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y8tnfsv25tOdevvty2K6gillnjvgjRf+FcrgUFO3GJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:01"]},"IP":{"Case":"Some","Fields":["50.236.201.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["tOb8emEyKH3vHbqxL1KQ31RSQps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EFcHPHtsfAliYo9qSTJ1e8eeBykh7d/ReZJcZ14NwFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:35"]},"IP":{"Case":"Some","Fields":["23.128.248.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::67]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcRelay1"]},"Identity":{"Case":"Some","Fields":["tONUawWP62VabYaY2XwUWaLfjnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dIgEfKlKrEE51q+Xlho+ln+lZVAKveLXWQBNkM5PUDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:23"]},"IP":{"Case":"Some","Fields":["130.225.244.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:878:346:1cf9:446a:c4eb:4548:7061]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greek"]},"Identity":{"Case":"Some","Fields":["tNPdvIPjQvQLxaLplyIZ/ta8B8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/NjtKb87Cr+/c2iVatpPcWu0tChKif81+l7SfUZy5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:57"]},"IP":{"Case":"Some","Fields":["173.208.247.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netimanmu"]},"Identity":{"Case":"Some","Fields":["tMr9nL+zTsXarBRpINx9+v6R6iA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LQi/Pauj29KchRuFdH1D6OE56peOAxWf31fvOyDfWt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:52"]},"IP":{"Case":"Some","Fields":["212.47.233.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:630:194::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0162"]},"Identity":{"Case":"Some","Fields":["tMSYlmY4TECRQZenZ+HR0pnnNnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+5Q3o5RHBvQrDA4yFqKkNVYwdpislRKoc8BZ7Nen8fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:34"]},"IP":{"Case":"Some","Fields":["185.220.101.162"]},"OnionRouterPort":{"Case":"Some","Fields":[10162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::162]:20162"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luraleen2"]},"Identity":{"Case":"Some","Fields":["tMOa1GGyGqSNtPs3GwAdkaMEPAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uHwhTlSNeSdaYmiuZuWHpCNhU8NrIOuBp5z56sOrN14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:28"]},"IP":{"Case":"Some","Fields":["144.76.175.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:53cc::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tLublwx+v7AhBWwZLEM36ChVF8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ky3F4ZwzKfE2Gm3A3ZVBYIgtR0bSX8zjhXHbk6h6144"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:08"]},"IP":{"Case":"Some","Fields":["23.128.248.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::5853:f7ff:fe2e:8818]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VagueAnger"]},"Identity":{"Case":"Some","Fields":["tKIAgtofZrxMMg96YA5U+K7DuAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BNiUaXD8XrMoSz6p9abdgj/TSS2WYEsccn3UxULxAAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:06"]},"IP":{"Case":"Some","Fields":["185.67.45.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bagespottedtide"]},"Identity":{"Case":"Some","Fields":["tJ6q5GkOXOdi0d+LAP3gWXCIDq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HPSfBugCe7Hcrn2l+w+vB3I0RBODxkcrQrGAH6knz1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:29"]},"IP":{"Case":"Some","Fields":["103.253.41.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digineo3"]},"Identity":{"Case":"Some","Fields":["tJZJNAuqv3Tpyl1QFORRVTguChM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NaIbAGDLhe1M8ziKrlVs57dDbuaM26VvlCBVeJa3gJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:40"]},"IP":{"Case":"Some","Fields":["185.117.215.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:8781::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["samsrelay2"]},"Identity":{"Case":"Some","Fields":["tI8Cp20C+5HXiOpptm0qAps6inw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N0zJxHdgRJ2WOtnsCE5eHyAzGxx4aDTAJHfs+zFla+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:15"]},"IP":{"Case":"Some","Fields":["71.229.166.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PIAjpn2exit"]},"Identity":{"Case":"Some","Fields":["tFWXysHe2VgFaiNFirSvuOOKunU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQyGH/0vttRUM85V8JIkdoi98aRbN78QFe6d3I1ghXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:37"]},"IP":{"Case":"Some","Fields":["156.146.34.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["tEvBlMn/3qvxETwm22B+6x213j8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ThhHUQOtltFk8OQaBxyTgaKxFyDLSCDb2S+1oH3eEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:39"]},"IP":{"Case":"Some","Fields":["167.71.33.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firefly"]},"Identity":{"Case":"Some","Fields":["tCx5fMjNY8YPtkPoIKEdET309cg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esw3Mk0Zu3bn9t/FSvzelQ0k58uyDL9mJ3Ipn/ZgDAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:17"]},"IP":{"Case":"Some","Fields":["217.23.8.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["traktor"]},"Identity":{"Case":"Some","Fields":["tCa7WS4gAIt+2enXrFZR7YsOs54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["39k7dRUaqud51OO+gJdwTici5t1eX9/YqB+E89dE4fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:44"]},"IP":{"Case":"Some","Fields":["193.224.163.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:738:0:600:216:3eff:fe02:42]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blizzardpaw"]},"Identity":{"Case":"Some","Fields":["tCYK7Fbc7MMByJsRfXVMYFsPojE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58LjJzRjAwJ3/qoqtq7hCTODcoWnpLd6udbB3fbDRwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:13"]},"IP":{"Case":"Some","Fields":["185.7.33.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dipoli"]},"Identity":{"Case":"Some","Fields":["tCU8o4eq7wZB0Opr2uHF9Ga4kP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wK+ioBvneH01w1fDRBkcN3qaREa0PiRIsPMLybRf/CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:29"]},"IP":{"Case":"Some","Fields":["90.255.244.127"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diggers"]},"Identity":{"Case":"Some","Fields":["tBtnvLxUVWT0OmvxLRZV9tjAOoc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IR+hyJqcs+gZyjC7vgMefHv4shIcZh/dRQTxt7pCX10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:12"]},"IP":{"Case":"Some","Fields":["185.120.77.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transformatorbrand"]},"Identity":{"Case":"Some","Fields":["tBZF8KbvtUFvNc/gIsetRf03TTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TF/74p81mDUOxeznB/+/HPjmgUGB/9K8OnOQxg7NdAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:52"]},"IP":{"Case":"Some","Fields":["185.207.106.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7be:aef4:d6c6:923c:e658]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pulsetor"]},"Identity":{"Case":"Some","Fields":["tBECfJJqm//PfakePK8YVqMh7/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3Ty2gCNEcx2VYBcM0iaDa5eKtVYwfCRwmTmmNPSbh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:24"]},"IP":{"Case":"Some","Fields":["51.15.76.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1e42::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seeder"]},"Identity":{"Case":"Some","Fields":["tAKDJ1aaBZ0VbA2TuxYINKiwnPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMnHIcRJKGYxzRH34QnpyAynVq7TDAKdwegF/u53aFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:41"]},"IP":{"Case":"Some","Fields":["66.183.173.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["s/3XZ+7xXdddyNJeX2rpLZojU7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EuKiO1Rxkbss92AWi8SvShwmaS7MVnSYF0mHwWaY18g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["95.214.53.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra2"]},"Identity":{"Case":"Some","Fields":["s9hLIJRR1gioH16HGJznnj36h7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rp2awZQw8w6byyJFbAByx8U0vxEyf/pWYuXomcK6cKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:28"]},"IP":{"Case":"Some","Fields":["104.244.74.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geheimschreiber"]},"Identity":{"Case":"Some","Fields":["s9Yh4GAgqFigbDeDX9GaB9dID0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gqE5ryc88P2Uju5PF7FBKq3LmkW5dwn8AOmv73r2gc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:07"]},"IP":{"Case":"Some","Fields":["31.52.239.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["punkpop"]},"Identity":{"Case":"Some","Fields":["s9OYs4b68st4tEf7pGvyZIw/SM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6vaYs8GdMojLSRScQzXuF0B90aMwD1Ax+zWnjet6MBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:42"]},"IP":{"Case":"Some","Fields":["162.55.131.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:271:5d58::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theseekingchild"]},"Identity":{"Case":"Some","Fields":["s88I6d9w1Gu+tRZaQtCH2zUidd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eEz76KUlYSWQlBfZhXy7JWKULfo5E9wbmhc0GQCUjeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:32"]},"IP":{"Case":"Some","Fields":["180.150.226.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leaninglibertarian"]},"Identity":{"Case":"Some","Fields":["s8cvQtTIQBL5gawa4O7TYjezUrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G/Sp+HCGcE0Vy7KccWg4XtPLulKqvdYRsXGiNka3s4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:02"]},"IP":{"Case":"Some","Fields":["125.63.1.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AirElementX"]},"Identity":{"Case":"Some","Fields":["s7pZkklTxZkbA+qfxQhLs9tVRZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIGirBJ/5rQUx1gnaB8nIFusmkm7u3fJeo9XDL81eJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:48"]},"IP":{"Case":"Some","Fields":["194.15.115.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tarmac"]},"Identity":{"Case":"Some","Fields":["s5vcCkp8ge97PzUJfcQUnwkFa7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WKKaXEWTP9u96n1GwAYQUxeMk0wOyvcuQFGSlcLejYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:10"]},"IP":{"Case":"Some","Fields":["172.106.9.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["s4/nVNfl4Vy4p97fiWAN0HPaddQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["04f2QHItpF3riBydFZbOt/qZuo9QseYg28ws2pd40mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:46"]},"IP":{"Case":"Some","Fields":["185.220.101.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::197]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bonkers"]},"Identity":{"Case":"Some","Fields":["s00Hv8u/F5zW0PRAKToXd4iT63Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ABsPuiJASGD214d+nfH8w9P4rOhjPwt4faUdDQtiS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:54"]},"IP":{"Case":"Some","Fields":["198.24.164.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute12"]},"Identity":{"Case":"Some","Fields":["s0zJBWJQhH0ZgPCChbAc8LcYwLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hk4utaDVG7dWInvgW3ENZTiqfQ3M/PV+X5XE/rJmqQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:34"]},"IP":{"Case":"Some","Fields":["162.247.72.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rathergonaked"]},"Identity":{"Case":"Some","Fields":["s0g28gJ8FOQEBHh2iYa/6oJ7Rig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k3Cff4G46AYJDrtD+ygIk4fOCqIPwL5VkgF3huuAKvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:12"]},"IP":{"Case":"Some","Fields":["217.85.169.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ephemer4"]},"Identity":{"Case":"Some","Fields":["s0Djulh+NkYtjeRNrg98q2dI8GQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y56raFN5a46Pitgyjg0PouspFy/UiYKiy9At9aR83FA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:41"]},"IP":{"Case":"Some","Fields":["128.232.18.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:630:212:2a8:a6bf:1ff:fe25:b961]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalyptos1"]},"Identity":{"Case":"Some","Fields":["syy/1kHBrQGgQzEG/hOqpL2fPD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n+Z71U7+DOJU+/Ks9cA2WdCz2CwRv3FCwYrK2keWRe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:52"]},"IP":{"Case":"Some","Fields":["51.77.59.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RagnosystemNode1"]},"Identity":{"Case":"Some","Fields":["synP2kfKJDB2huBsURI5dWjqnyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TZnbGaQQ75oSEBVVZ8nslm4NJ4DhP1OD5riRcUCodaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:21"]},"IP":{"Case":"Some","Fields":["167.86.76.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toshiko"]},"Identity":{"Case":"Some","Fields":["syHONgVT1+Hp+hKajR5NbFNaaB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HXkPyonvUV2pI5NodowaMwhjUy7dBggl7WIgQcoXW9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:24"]},"IP":{"Case":"Some","Fields":["107.175.245.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["torflower"]},"Identity":{"Case":"Some","Fields":["sx2Jgj/KrDHT4hJ85eyiYopsGuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9pluqcU+to4RzxSTBgAz8UgrQaBIw/N+wy3ssWvfUB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:43"]},"IP":{"Case":"Some","Fields":["138.2.176.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion250"]},"Identity":{"Case":"Some","Fields":["sxpnenSkdiG8YHOsMgZvhfMDNZQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tekvgOVXLLHIU04wZKhShIZKrh0yP8591QamQPN/U+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:15"]},"IP":{"Case":"Some","Fields":["38.147.122.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["sxHzYvEFF2XalP54BInLDkhNejE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r9BpsRLouplu+xeYdeSuOYJ1o/4fnO+yixBcAtoxTq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:48"]},"IP":{"Case":"Some","Fields":["45.32.254.111"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LessIsMore"]},"Identity":{"Case":"Some","Fields":["sw02+6PdMA4RkWoIbXFmpr4xaf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+29q2AXY5wvXrVneOABNd739VVjuOkw6b41j2P7Hiz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:41"]},"IP":{"Case":"Some","Fields":["89.147.108.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9105]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorOnChene"]},"Identity":{"Case":"Some","Fields":["swoMl4V8kmOHngqP0mcoBPQ4ty4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ry9F/a7JRTnlVI/WGf9JTyPrmfC1rTwBKlg7lSDZn60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:30"]},"IP":{"Case":"Some","Fields":["77.57.20.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mangold"]},"Identity":{"Case":"Some","Fields":["svs6MCtW79vwygYehL5FmTBc5Hc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R7zO505wZJHgxHy/VgTWaSJ7zd2kI4B63GDa6sOz11E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:42"]},"IP":{"Case":"Some","Fields":["109.70.100.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::10]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveCalakmulII"]},"Identity":{"Case":"Some","Fields":["suDzOxp+cPIXRMPsN7R1+OwHEuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WLNI/yfeDrL+P3cuI2eyVXFDny0Yy9GLMKesU3RRPC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:52"]},"IP":{"Case":"Some","Fields":["65.49.20.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ecrehd2"]},"Identity":{"Case":"Some","Fields":["sthWC0w26IdFq6smNQzv9iKTp/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pdzJ+kbed6L/07rVeYVMyA0lR8SnTD5oFnAjcfzipiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:54"]},"IP":{"Case":"Some","Fields":["85.214.226.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomfoo"]},"Identity":{"Case":"Some","Fields":["sr1U3sKC3+XGMvofshlpoXwTgic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYy+AQRGIqxX9d8tQBEV98mGTqy0zsg1qttcq2Pz5qA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:53:33"]},"IP":{"Case":"Some","Fields":["91.232.37.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagaminesConfession"]},"Identity":{"Case":"Some","Fields":["sqve0KtR+uHX5oLLMYSf/xAwMLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GcxMcbn4cNqCcWyS5ttueBj+73scFjkbiBzN1eFUD8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:48"]},"IP":{"Case":"Some","Fields":["138.2.22.17"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a2]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["spY2rUyzk7m2sjuCDJmgUBeyqBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2eRW1XK9VnKBCvCSSY4W4qtVJwr6GCVVoLJ6wYl1fiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:32"]},"IP":{"Case":"Some","Fields":["46.4.176.48"]},"OnionRouterPort":{"Case":"Some","Fields":[44945]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionGhost"]},"Identity":{"Case":"Some","Fields":["sn8eh8KaxGTot48BzwtiuzpuDSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ov5HmYKED1randChcaZUdQJuP+xuzHe0bzCE+uyX06Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:21"]},"IP":{"Case":"Some","Fields":["79.41.231.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["radieschen"]},"Identity":{"Case":"Some","Fields":["snzx3O7NUPeZKwfXINf2vw7fnUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZBupcCr8gkdzdHmDPtc0BLQEsDrkXHc4Fjk3zbrYc+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:41"]},"IP":{"Case":"Some","Fields":["109.70.100.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChillOutZwiebel"]},"Identity":{"Case":"Some","Fields":["snSoAY9YDKWrGd4eXeZCXu4unA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqRZ3dFzwSNtRGMUM+2MPXYMurnaLisfQtC+YLDdWi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:24"]},"IP":{"Case":"Some","Fields":["82.165.20.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["snRZnNN/TVssQH3IHkeBNfMpfv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6X3kQGo3q8ovOwZekoRcmRuUBFwmCcInXwja1k8F7vQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:46"]},"IP":{"Case":"Some","Fields":["104.244.78.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f046:56c4:177b:1cd3:5449]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBaconaTOR"]},"Identity":{"Case":"Some","Fields":["snEVogsF1AcwpAIBRe+mM4HZ1Rs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ivk407iiJJgmjEQNJM5felF8QIy6q3CDU6mvbI3CwcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:01"]},"IP":{"Case":"Some","Fields":["38.68.135.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tsarm"]},"Identity":{"Case":"Some","Fields":["sm00XZlvuIAtsUKCv+GiSaQEnKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjlezLOkzRq+YAmdSJzJbPQjZ8uf55RkJzSr7kDm2o0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:55"]},"IP":{"Case":"Some","Fields":["84.239.46.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7d8d64935ed96451d1f"]},"Identity":{"Case":"Some","Fields":["sl4CATowaTVWSAJ0JAuLOSqwQXk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3lDnCtqOIX6Q3Ew4ARDCnjZc+7RP3PVE5TXosdSFhCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:51:57"]},"IP":{"Case":"Some","Fields":["82.149.227.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:50f:3::236]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["slLZR02LNvwSmfbbKchT1okAw5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IZDfKXxL+sirVJN7FVaqdshrLYwEW0AYfNSTH0Zt8RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:24"]},"IP":{"Case":"Some","Fields":["185.228.137.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz3"]},"Identity":{"Case":"Some","Fields":["sk47s/Xl/OuQkFTmgQFgk+YFFHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qbXOpHjnCrqyT46vhZr6VE2FJ0+5rXOUsupWuRcoMUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:49"]},"IP":{"Case":"Some","Fields":["178.63.41.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrwellExit"]},"Identity":{"Case":"Some","Fields":["skr7SfVjY9t0Fd6SY86hJFX0wUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LhHnjt6Ce5AgPblAlkGOHnF9DfPVlpLQyujXS5qwv7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:24"]},"IP":{"Case":"Some","Fields":["93.95.226.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amer03"]},"Identity":{"Case":"Some","Fields":["skiF/iGHTu50vCKMurivEPm3Yqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nD1QaUhhbl6yNweZW1jAMFGcFsoVhUndwj1TWHKSRnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:50"]},"IP":{"Case":"Some","Fields":["192.99.4.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labitat1"]},"Identity":{"Case":"Some","Fields":["sjgHBMU5R7HXLny802HnOQHvdEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NyCSFE1EpV4Ninx5P3RQw6v7lB+q5reUB0SZdQhGh1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:48"]},"IP":{"Case":"Some","Fields":["185.38.175.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::130]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion251"]},"Identity":{"Case":"Some","Fields":["sjJSNHwzaOw9QkSa/DFQK08AA3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L/DuY4cViHeXXIg4+bvArEyrumfbdvyjpPJEnzkA/hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:11"]},"IP":{"Case":"Some","Fields":["38.147.122.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beattyNetRelay"]},"Identity":{"Case":"Some","Fields":["siMqzTYtOGKTMORN7dDqyafTrOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7f4vGWZxkCpCWrNuO4lZ55BxGyQn/l9LCl9p1ok7adE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:54"]},"IP":{"Case":"Some","Fields":["50.64.108.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer21b"]},"Identity":{"Case":"Some","Fields":["siDxjwjMDnsEe8ZZlEDsCF+HGxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dNDhoxrbJ+8wb0tPAIcneEcBB0VWxbigA3eBs+dpIXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:54:14"]},"IP":{"Case":"Some","Fields":["173.208.190.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex41"]},"Identity":{"Case":"Some","Fields":["shl8I6T/XRxJ7kW6doi6i8zYmgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqfW1gN5JbMacub4hGq7B+SnK2BFuTxH2dC1nhfK6rY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:46"]},"IP":{"Case":"Some","Fields":["199.249.230.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e640]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sakura"]},"Identity":{"Case":"Some","Fields":["sg+mwbKw91SOyENKRvNhFwDAV70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wt8ukEPVPNKeRsuHhomzXeeoyqAilEhKuWkJmp5zDhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:01"]},"IP":{"Case":"Some","Fields":["49.212.166.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eskel"]},"Identity":{"Case":"Some","Fields":["sg8ImpSQLrQ/d2JtT00XrIiLihk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDDEHDL6IRWBgIVq8Tm50nNRE9xUzctzbf7rIRjabNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:21"]},"IP":{"Case":"Some","Fields":["107.189.7.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:b107:c02::dead:feed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hp"]},"Identity":{"Case":"Some","Fields":["sg5dnbUpHRdBFsJuCRemmu9jXV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HtAg/ogcwGgLwNF4ZKCOPevHMJ7ozwe46nt/PHKqGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:43"]},"IP":{"Case":"Some","Fields":["104.244.76.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8e8:b7c1:9d5e:ab59:545c]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hel"]},"Identity":{"Case":"Some","Fields":["sgrIzlxdF2Z1nDD2k2zu9Q4/HXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/VDrKepNeJUk1d8BXa9TbhVBCX1dySdYVTBMSsp6xYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:37"]},"IP":{"Case":"Some","Fields":["83.137.158.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cry"]},"Identity":{"Case":"Some","Fields":["sgTedbNwZO9qTGuvlVxXJFeNCzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dcTl/BeFOe598yhyikbfZrcaBxXTOd04AoUR5yr/Bgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:01"]},"IP":{"Case":"Some","Fields":["192.42.115.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:101]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev13b"]},"Identity":{"Case":"Some","Fields":["sfkm2jiVqJryiGI/Wk+ROXkpnFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["csKZ+3ILIeaAYZwN1GKMtFYPcnYCITdmlxy7eSzWqKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:58"]},"IP":{"Case":"Some","Fields":["51.15.59.15"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1419::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThankYouMrSnowden"]},"Identity":{"Case":"Some","Fields":["seN7eNWzVLmbaRk6m2zvbknfgiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["03CrioWK2eE/DXmPklQRli5PlzWJlIGZaLfN0CKN93A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:13"]},"IP":{"Case":"Some","Fields":["161.97.166.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:8483::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange033de2"]},"Identity":{"Case":"Some","Fields":["sc5LWnp/EuLQ8i9oNBAdr/ua5Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ljHSwkfy4OH8VZjkEIgCrUoTgbLw4JBICjLfNKB21LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:28"]},"IP":{"Case":"Some","Fields":["80.92.204.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neviem"]},"Identity":{"Case":"Some","Fields":["sc1X6gpjzEXM0U41YM/I9SesvY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m6TJL02GTUPQuFvEI26NqyFojFmWBAfAxiH6BnLSOfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:10"]},"IP":{"Case":"Some","Fields":["178.41.161.172"]},"OnionRouterPort":{"Case":"Some","Fields":[7149]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yetiready"]},"Identity":{"Case":"Some","Fields":["sbaHw8TvRiSdY43Od93HqqOfKZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tnhdvpmo9CYd2qQzvJy6I5G7/9bvlqQo+U70sEt1WqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:15"]},"IP":{"Case":"Some","Fields":["91.203.144.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenWoRd"]},"Identity":{"Case":"Some","Fields":["saDxFDeJRmqt1frllIyBOFSO7Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NWxg4bQ0S+1Wz0R73n7nDyZDC2B7BUneoJmkAa2SmxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:19"]},"IP":{"Case":"Some","Fields":["158.101.132.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::c1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bazinga"]},"Identity":{"Case":"Some","Fields":["sZjAtLjFUfF0+7hBoXJhbj2zEk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMDxNWVysc5564zSzkt7iVxW57DA6glhA/LqdOpy2tg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:23"]},"IP":{"Case":"Some","Fields":["93.180.157.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::2ae]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EGOTISTICALGIRAFFE"]},"Identity":{"Case":"Some","Fields":["sX1zxqwapdan769Th2i/NU8lR64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RFMXsExJTcnpF0d2vOO5xK6F/GwS03vWIM/tuqOLCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:43"]},"IP":{"Case":"Some","Fields":["65.21.54.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6abe::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["sXxHmIBmCete/wzsnFh2kNnpReo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZSyCcm10kq8rUW7jklBkK5ypJsTc9YLvP5bu+ApfsDo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:09"]},"IP":{"Case":"Some","Fields":["84.19.188.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wedontlikenotseas"]},"Identity":{"Case":"Some","Fields":["sXryY9KPcawE7W0Kfpel6C8t8k4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1R3hx3TWxsxRIgO5Ixmn8Vo4LwFneKJ1cORcFcZbC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:40"]},"IP":{"Case":"Some","Fields":["165.22.191.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["arthur"]},"Identity":{"Case":"Some","Fields":["sW46OXoHz+SiPmMPxusTaQCDcVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wml/dKSRiN4tVSNJ4ILzDVFPBdJQeK58zyVRuEl7v0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:41"]},"IP":{"Case":"Some","Fields":["185.44.81.4"]},"OnionRouterPort":{"Case":"Some","Fields":[20]},"DirectoryPort":{"Case":"Some","Fields":[21]},"Address":{"Case":"Some","Fields":["[2a0c:8881::e464:4bff:feb8:16c1]:20"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leSablier"]},"Identity":{"Case":"Some","Fields":["sWv+XF3S926rcuP9QaBicGkSsPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WzFJexVVBTbK78UE8fERY+uQ8y0GoofMNTtRz0FjDNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:40"]},"IP":{"Case":"Some","Fields":["46.165.253.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Loukanikos"]},"Identity":{"Case":"Some","Fields":["sWb+riOWzTpLlMfPBtFTnxcrpA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8NLVm6nuvEGJf1dZSwCZszTVuOtZGVPwUrLO7JElvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:58"]},"IP":{"Case":"Some","Fields":["146.0.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waka"]},"Identity":{"Case":"Some","Fields":["sWHgNq1D1/jSK6GPthIgDmphOKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xyln8AWliXSittPx4kmxErXn8z/EroDGrPtKUd4oC18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:21"]},"IP":{"Case":"Some","Fields":["109.251.55.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:d0:fc27:0:dea6:32ff:fe44:be84]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cytherea"]},"Identity":{"Case":"Some","Fields":["sVwAcer1CKruKdudB2B8hKot3rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MTqH8uavXrIgPw1IjpkCPecTjhwQQaGgxm2mfwWBhhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:50"]},"IP":{"Case":"Some","Fields":["141.105.67.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ASCII"]},"Identity":{"Case":"Some","Fields":["sUyiTX/GlN3h6NOy6xXQ0PhsEr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u2luIi9r4O9QOcYGkV+EudfLPRlEJCRTRjAXJ6GYxtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:17"]},"IP":{"Case":"Some","Fields":["81.170.128.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wardsback"]},"Identity":{"Case":"Some","Fields":["sUPUObctI5pBn43OB7io6xtIb6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1DMbNv90k9q9/wNIsmb/QEofQ98ZZmNAFSUFb3Djpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:47"]},"IP":{"Case":"Some","Fields":["212.129.62.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay19at5443"]},"Identity":{"Case":"Some","Fields":["sUM1lWDhkwNHgl1EGvkec3pLnfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiOfuRkBt2doi36eXC6aBi1Gu2dD1JzFAzGiqD0EFjI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:12"]},"IP":{"Case":"Some","Fields":["140.78.100.19"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porte"]},"Identity":{"Case":"Some","Fields":["sTwsVp8/0MUwt9luX/eTPfeg6DQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQYNtp45/fdz00XSOyZAXTnPHc2q784BAoCXsw2/XhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:08"]},"IP":{"Case":"Some","Fields":["85.208.144.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:8740:0:3::13:4008]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste51"]},"Identity":{"Case":"Some","Fields":["sSfeS9w8zoVkyErWt6S2RJuQpKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXso8OUo7zTwYHIrlQe7hRtR/lgiQ3LamZxBkwR40UM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:01"]},"IP":{"Case":"Some","Fields":["89.163.128.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::abba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra40"]},"Identity":{"Case":"Some","Fields":["sSU28vG7/gtH+q0NXQW/rsbC3p8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mbHCRUy/rt71CFlGF6jqkvGcS7DDYXRPsSZ1hXAphOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:33"]},"IP":{"Case":"Some","Fields":["107.189.30.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["sQG4Hzy3woSt3xnNu7zwSgUMYG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXFJ8XV2DsN5OIhGnMYu7CjF8UciFTeFmSrLfWRgBzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:59"]},"IP":{"Case":"Some","Fields":["23.128.248.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::80]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sPWm+b3iGu25Ku6lvJ0CHLlrfcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tip34R4lLT5TaOt6grtI9jgcILvrOsTGp/19E5qrFGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:57"]},"IP":{"Case":"Some","Fields":["185.244.192.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["root1Moh"]},"Identity":{"Case":"Some","Fields":["sPR5p3FOQw+v+jAHFiQ11qPB+mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RLdiSQ4fLEGcvJ9S+SDFMd5pWb7oJAKb3OKuuOnNNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:10"]},"IP":{"Case":"Some","Fields":["80.140.14.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sPHVRbmD5CaA9/Igpp15/4IcUOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jZXHPQMXhtGEFCQ60Az/Q5kazv26AN3FoNj14M3kLg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:37"]},"IP":{"Case":"Some","Fields":["5.45.106.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididntedittheconfig"]},"Identity":{"Case":"Some","Fields":["sPF6VvqGhsyzPT8wL8QPBvRjtK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubH3EZcC11c3lyrbUVhuk3jc3PGJakaIFaKIU7FANSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:28"]},"IP":{"Case":"Some","Fields":["142.93.169.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SkyLights"]},"Identity":{"Case":"Some","Fields":["sOk7EL2BclCoGKv39cJESvNk3Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59ulu0LGGNH7APw4r+AnxNTMHF77drkuVqYTSvDjuYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:16"]},"IP":{"Case":"Some","Fields":["173.237.206.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow005"]},"Identity":{"Case":"Some","Fields":["sN1Se+AYQtRgMCZfvZkoIXpwnyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ar0urT1GeLQAGcHIIdgxztuuw05d1vCvdBLW6AXZGJY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:37"]},"IP":{"Case":"Some","Fields":["185.195.71.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARDIS42"]},"Identity":{"Case":"Some","Fields":["sNsvFz8Ns2S6v3pGXXlrPASPHzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VtGuh+0C96nTDRxp1tPTTTwtpTrczMrOR6ZRNY1ZwT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:52"]},"IP":{"Case":"Some","Fields":["217.160.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:803a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["sM8xMagJf/r56bVFZvEqLG5WDEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8Hc8liUzHPNumyrt6eoCSOKY88AHuYjHhEZO641540"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:15"]},"IP":{"Case":"Some","Fields":["37.120.185.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexColinNSarah"]},"Identity":{"Case":"Some","Fields":["sM2fm1tgZRrcWRnA8eqofbodkkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DKRzDlEYDB6ZqNIfzjwt84/tEgawFTiRxVv8ejX9pqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:24"]},"IP":{"Case":"Some","Fields":["199.249.230.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::111]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EnjoyFreedom"]},"Identity":{"Case":"Some","Fields":["sMKsST+IBpIP6gBClTMpIwnuw58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXXxF62oXEuJmBnJ9cWSR/B/55vErXnNtueYUFIiIm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:48"]},"IP":{"Case":"Some","Fields":["79.41.84.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor70IPConnectinfo"]},"Identity":{"Case":"Some","Fields":["sLXfMkAW3N3iIKAfowlUXKYWTXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kA/C5FDx1+Cq8/ZLd7WzAAFQmKgPjLgVctyHSv3qL/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:58"]},"IP":{"Case":"Some","Fields":["194.5.96.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:67c:440:f240:194:5:96:70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast6"]},"Identity":{"Case":"Some","Fields":["sKE0yvRJSzkT4F20Y0djPZxKios"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCwYnhCplkjeZOJaTWwW7zKBAMsIzZG9iTbgEDmbMrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:12"]},"IP":{"Case":"Some","Fields":["45.142.213.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:7c43::70f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XFMRELAYS"]},"Identity":{"Case":"Some","Fields":["sJDGDM6OsHO4lxHfPZ5EVQjGaZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTNzN3qmSzxwYRCYBMzpR59j94yOPO37N7x209+UqHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:58"]},"IP":{"Case":"Some","Fields":["188.214.144.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9000::94]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit12"]},"Identity":{"Case":"Some","Fields":["sIm+1TnM/2ZgarbhIWolkBx+zm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ea74VKXrF+ky+fY2TNWP4tL00f8BW+o6SmCSjt7T8po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:08"]},"IP":{"Case":"Some","Fields":["37.252.254.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1b:aa2::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitMoldova"]},"Identity":{"Case":"Some","Fields":["sG8JOj1N+tPpI/TyinSQG9T3TrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["goRvR+5/jhm5+8egnJ1Ob5nJtdECPPOaU21W7AtpcGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:21"]},"IP":{"Case":"Some","Fields":["178.17.174.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:8b::5b9a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schwurbelingen"]},"Identity":{"Case":"Some","Fields":["sGMCumv7VQwug8wkmmQ3vzt9fWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ti253BzFXBCOTDkD9pl8kIfxqylpAv8ZBgQfEHUk+nU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:19"]},"IP":{"Case":"Some","Fields":["202.61.192.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coen"]},"Identity":{"Case":"Some","Fields":["sFtLtk/+U3Pik9LACHmPupyQi7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhkLa0wp8Ly9TTSOjqSTqmtIwEntXf4OatT+JDZOMyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:59"]},"IP":{"Case":"Some","Fields":["185.154.154.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a0e:b107:c03::dead:feed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipressedplay"]},"Identity":{"Case":"Some","Fields":["sFj73qaXdMKOrBER4We8CtSpBOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uzAAJgU3agoNb6hR3ManlOMSoO745mNGgSfiAVZgd8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:27"]},"IP":{"Case":"Some","Fields":["93.90.195.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:82ca::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoingNowhere"]},"Identity":{"Case":"Some","Fields":["sFXBf3mQRaVhyysKgaqRcnFY1Lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2zs2hpjFTVIceL9xGUGN2AH/n260uSApdL7zhgGVnvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:04"]},"IP":{"Case":"Some","Fields":["69.164.210.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiubel"]},"Identity":{"Case":"Some","Fields":["sFUxdarbBQHlph/GHOo5cL4TD/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/otTLGt+jWF8Jfw6weH5IqklrJ0ck5Xia6YZ0xsSZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:54"]},"IP":{"Case":"Some","Fields":["49.12.115.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:3bd0::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN9"]},"Identity":{"Case":"Some","Fields":["sChweWnY7YTm3qWXqIT3iq1HGXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["263xdkCTHBp1jBwSQcSgixYAyPfNS4fiD+KuvNP92ls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:41"]},"IP":{"Case":"Some","Fields":["199.249.230.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::123]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra50"]},"Identity":{"Case":"Some","Fields":["sAV50aI/H/sTog/WUOpg02fzZQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NO7PcsOxWQhbTjAGnySsbMvkTd9tRbf6pMfJQERrfDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:14"]},"IP":{"Case":"Some","Fields":["45.61.188.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yahta4ee"]},"Identity":{"Case":"Some","Fields":["r/0UfbzAZaXO9yWLwTZ8w1hVpDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MlCyquNanySMsfrv5eeB1NF9uSSqI2qLX1SkgnbIw90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:38"]},"IP":{"Case":"Some","Fields":["5.9.156.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sulaweyosrelay"]},"Identity":{"Case":"Some","Fields":["r/j01Y4qX+rSjR7Uo4+41g5AajM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kWOKm2sWMnLbgX5GGFxp624Donvk5oGiUZkbCzN3qzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:27"]},"IP":{"Case":"Some","Fields":["90.146.66.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["osterreich"]},"Identity":{"Case":"Some","Fields":["r+rzqeDbHYN76P8Zg7oMZaPnHXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPRCuKQqMIr5hC9m+iMbEDIUmE/14YdCKyTLp8d5b84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:41"]},"IP":{"Case":"Some","Fields":["172.106.167.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thicantor1"]},"Identity":{"Case":"Some","Fields":["r9hITw2E+V6qEdYtgidn/mOBqV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iuOFK+4YlUhReSdsmjZExrt3rllwC5fit5rZyHdyV+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:55"]},"IP":{"Case":"Some","Fields":["188.165.6.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:c513:0:dead:beaf:cafe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Saga"]},"Identity":{"Case":"Some","Fields":["r8DJ6uwdg01SAWZjuKpyI2jxtZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tbW8ZBtUlevBS40vhn79OxxmIYTei7I97XBYcgqPDg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:13"]},"IP":{"Case":"Some","Fields":["83.137.158.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WGL4Freedom"]},"Identity":{"Case":"Some","Fields":["r7ZSL51SmDC8cE6H4D44HlaTuUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJqdStf22I0wo4wd/UdQTaVw0TRvY7qum0TiSQ74dpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:23"]},"IP":{"Case":"Some","Fields":["212.227.148.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeerWienerInvader"]},"Identity":{"Case":"Some","Fields":["r5r5/CAY1ry7tXwvFBF1qlX+YhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYTGkDRcRhsrA70LMR/YYulSqCaQ5/UnnjlCS61z3Lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:55"]},"IP":{"Case":"Some","Fields":["138.201.247.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["notoloke"]},"Identity":{"Case":"Some","Fields":["r44thYWWV5vozEhZXBqwmOW4Pnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6FuCDMEzXUd00ZJOVZfZ5DTrK+VVRVN9mcxtvCKYFy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:48"]},"IP":{"Case":"Some","Fields":["94.140.112.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NLfreedom1"]},"Identity":{"Case":"Some","Fields":["r42ydZYCebh/CYsWzJx4CS4RjbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jvJf43X2J/mw/X5pmfY1aqwt9qAoBOiMLxPeNIYfqTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:49"]},"IP":{"Case":"Some","Fields":["103.251.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tashbacca"]},"Identity":{"Case":"Some","Fields":["r3gbx2yX1jcmgL3GdaK+i+51vTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Miuz0hfNTn9PfmuyAVIPWtmaJNqD1lcxYyppkTMLyMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:57"]},"IP":{"Case":"Some","Fields":["5.255.98.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:234b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev10"]},"Identity":{"Case":"Some","Fields":["r3CUtihk3pQdzYii8Nuv7POZfkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d+LxcgFqt6NoSkBGAnzB5UU2mHotTTfZlpXPC1Zd4ws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:35"]},"IP":{"Case":"Some","Fields":["185.170.114.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:928:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousNamespace"]},"Identity":{"Case":"Some","Fields":["r3B5DB5qNSFA6wOcFsqm+Z06Wfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jHl1SgWjGhbPbp1eLVC19lQhittuL1AVAp7H3q7pO/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:15"]},"IP":{"Case":"Some","Fields":["79.116.25.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5a80:1210:a800:6af7:28ff:fee5:6b3a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cerberus"]},"Identity":{"Case":"Some","Fields":["r2v9EBwNtXV2x2fkinz911CQZyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i+tFfQrZnbiW3dLaYfW8apHm2qGcm2XFSyf33ijUUyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:30"]},"IP":{"Case":"Some","Fields":["193.1.12.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:770:21:193:ca1f:66ff:fec7:9862]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex97"]},"Identity":{"Case":"Some","Fields":["r1cnXQZ6zx6t5R4yhgyOVpGQuyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tDDKMFIdnQd5DnR/+0NHP7iP2MXF0i6sIINCnouWaXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:16"]},"IP":{"Case":"Some","Fields":["199.249.230.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::186]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DuckYou"]},"Identity":{"Case":"Some","Fields":["r0mXc44M/AFM0E+wmmcNLF8eeaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qDzUzfxFnEJ7ObH35hCL3rwJMtoCzObZSUbBzXbZhx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:24:34"]},"IP":{"Case":"Some","Fields":["185.191.204.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra31"]},"Identity":{"Case":"Some","Fields":["rzUR+otBjHVr26l6bt6XDR908n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQ364sEFCSObMzJXQXCwJkYQC/5GKeqCLswSrPtItmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:24"]},"IP":{"Case":"Some","Fields":["107.189.11.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saturna"]},"Identity":{"Case":"Some","Fields":["ry5g3uqZcfaVakbOC2vJTvVYJA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbDJVvOEqz1fFpCsIbK6uw6C7dTfkI13yB8z8Ep/8xw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:36"]},"IP":{"Case":"Some","Fields":["158.255.215.41"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justinjoker"]},"Identity":{"Case":"Some","Fields":["rysBTL6Y0uZrKIMjtH8ujd3ZkE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cUC3EhzOZgVBmS9HNDnMZBF65+lrwme9xOoJO2ocuLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:39"]},"IP":{"Case":"Some","Fields":["144.76.166.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:42c6::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["duchin"]},"Identity":{"Case":"Some","Fields":["rx8VgZrHZtZQiisF2piematRH58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FIp0i4K4COiUaeNX20tcLL2D1Gfy4gW3OgOvoJZTxHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:49"]},"IP":{"Case":"Some","Fields":["91.203.5.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zebra"]},"Identity":{"Case":"Some","Fields":["rx6IsAWCzYLqtoxQIR3qR0KdXos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNDjYg7xpj/4x0JJ5xZbgYJ5ouwkbiC/YLxDwqjMKJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:41"]},"IP":{"Case":"Some","Fields":["109.70.100.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::70]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lonninator01"]},"Identity":{"Case":"Some","Fields":["rxhSqs9JB1XtAKJFRhjIyNFy0wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R60j/VBCqTwgqp10Id4tousJzvMTCVCrPG0Hj+RpUX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:07"]},"IP":{"Case":"Some","Fields":["84.61.104.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MidwayStation"]},"Identity":{"Case":"Some","Fields":["rvbB+6D8FvSTFji/BlCFuXTT6Q8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mhhPYQ5YGta7UovN2hnl+mfRGoXskPBaNDdEIyiFibQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:26"]},"IP":{"Case":"Some","Fields":["178.32.233.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:5377::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glxbltrelay"]},"Identity":{"Case":"Some","Fields":["rupdjLLqGb0XrnBaaOKUqybyeaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AKGyZ9uqcY6moyTdvaMDV2Z8xCyNSKMba9gQNsavWiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:07"]},"IP":{"Case":"Some","Fields":["45.15.16.171"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1c80:1:1042::1009]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["str3DEicebeer64"]},"Identity":{"Case":"Some","Fields":["rt8fzmoc5/qpJQRjdXt2hgrlgmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5DTd8cP8ypjdyBpf8laEyIWraSUAlpFVwGTgRDbgZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:51"]},"IP":{"Case":"Some","Fields":["85.214.199.51"]},"OnionRouterPort":{"Case":"Some","Fields":[8064]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:436f:5800:c550:adf7:932:c52]:8064"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["linss"]},"Identity":{"Case":"Some","Fields":["rtrHCBrhS40kHs8P8XooWKtDg9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3j/6Wybp8otVD+sHD5AVW8v0rVH5P/8jzi0OlLAz4pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:06"]},"IP":{"Case":"Some","Fields":["45.79.108.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01:e000:131::8000:0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra91"]},"Identity":{"Case":"Some","Fields":["rsjVRd3twDEfp/n5qIXWdNHxwv8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oOP5C3lg8GbM3xD/hqKdoVR9q408YEX8X6wdy7ZWTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:51"]},"IP":{"Case":"Some","Fields":["185.125.171.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mustang"]},"Identity":{"Case":"Some","Fields":["rsMub1oM9DG1m7PqGJ0Igr916j4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nZBjJAvc5jP+Ic+6wD+WPlkz89o8hPfX2a6ffnI1iUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:49"]},"IP":{"Case":"Some","Fields":["45.135.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM07"]},"Identity":{"Case":"Some","Fields":["rsB0B+cwcbhung7NwTwD9aOswb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m6tfiEAkuevK0NZzVqzmjRKbP4mBQrBS2GLLo9pJ/98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:35"]},"IP":{"Case":"Some","Fields":["185.239.222.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["rq5M4vsMtz4Hqu05o92O0Y3iK5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t7i16PfHTn7SRcgcfndPY+mqlBy84Jlsl9J5W4/q3pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:15"]},"IP":{"Case":"Some","Fields":["23.128.248.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::56]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rpW9o3pbtGhf67fwZknWzpSbUxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I7U48BsdQhbr6MxQMtvWpvTxN3634kviC+Fkp9zCdWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:35"]},"IP":{"Case":"Some","Fields":["176.31.229.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rnol5rZWpiUNn+02LlSNXzPmud8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thzj0F0t3Bs4sxr6x02dFYsfOVqjqrE2BBtccXCi6W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:19:20"]},"IP":{"Case":"Some","Fields":["59.106.211.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1blu2DEicebeer73"]},"Identity":{"Case":"Some","Fields":["rmzitALCkw669ZphboCtQ/erEjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oBqsEO73/c0el8WaXzYhk3rJIyHFcscx3UTFJSAb+Sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:56"]},"IP":{"Case":"Some","Fields":["178.254.44.176"]},"OnionRouterPort":{"Case":"Some","Fields":[8173]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel21"]},"Identity":{"Case":"Some","Fields":["rmqMGOdJm1hs02JGrEvK/7v5OrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X1wQTWQ+hSSJv4qyUF4S3sACpAoXdPQCFHSoxda1qhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:12"]},"IP":{"Case":"Some","Fields":["89.163.128.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::10cc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sc1ptk1dd13"]},"Identity":{"Case":"Some","Fields":["rlv9LPo/73uRBnvh/LILYs07a+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fq5ikX85o+E+G5k29ggICB2DwtRuN/NgygltoE3JR5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:40"]},"IP":{"Case":"Some","Fields":["95.216.5.245"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:60a::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tadpole5643"]},"Identity":{"Case":"Some","Fields":["rlQdBrff/UwqJUIDz8QbnL50sFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+hJNbgumQ881tGL/2V26pMipjHfjaH4bbpSvLBGD4kM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:04"]},"IP":{"Case":"Some","Fields":["107.191.39.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5:53f6:5400:4ff:fe11:b4b2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["sinkrlogin"]},"Identity":{"Case":"Some","Fields":["rk+uLrXcXQeEWPD8vys39dc/CGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HUFD8rOaITd0O7Wsk/AaoRjTOgz4jmtkBWPKjcEp3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:32"]},"IP":{"Case":"Some","Fields":["95.216.198.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["umbriel"]},"Identity":{"Case":"Some","Fields":["rkB1Nd2Qj/w8eg+EKM4xUZYlRBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIay5e2j2Hi8UyHG4LdIAqtRJ75+4h5UrnLLlDC47uM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:36"]},"IP":{"Case":"Some","Fields":["185.243.218.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange005nl"]},"Identity":{"Case":"Some","Fields":["rjw7cWW5EuGqXsTxd8qOTafI7Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KmTBlacjJrhxLenJLa4ivs1r7n/ASSuYGfX/LlLzOt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:14"]},"IP":{"Case":"Some","Fields":["51.15.4.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["south"]},"Identity":{"Case":"Some","Fields":["rjN86UXQaZZP14qU4dMqqUzX2sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QGFI8EbTDBshVeQsDkjh7kMbSjwguQtHsxRGjFMABCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:28:05"]},"IP":{"Case":"Some","Fields":["83.229.71.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6329cogwheel"]},"Identity":{"Case":"Some","Fields":["rh0+zLkn8P8e31nqCrmU/nUcVYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVCKTRqTl0urn77u5j0onLBq4998lUzHyUlxCdpHVOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:07"]},"IP":{"Case":"Some","Fields":["114.34.165.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gayming01"]},"Identity":{"Case":"Some","Fields":["rh04a8rVcEu4cwCFCUAsRXmByPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w8DD9huyRsyIKbfDCBwTFwjtlfYYTWKW5Kt8JKfqpfM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:38"]},"IP":{"Case":"Some","Fields":["74.208.203.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:229::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockstars2"]},"Identity":{"Case":"Some","Fields":["rhsam0Tch4IdafBNxJM97MVV5TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEKL4aksiZzYmPjaQkf0p2YMBjjSGGm2ZHCIUzBCo88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:58"]},"IP":{"Case":"Some","Fields":["174.128.250.163"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnR30L2"]},"Identity":{"Case":"Some","Fields":["rfmhauhHjN0gPKNmSpuMo+OLd64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["crkfJYos80mOHkJomxMH01BbVxpqSd1SgyYhCQF3KNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:45"]},"IP":{"Case":"Some","Fields":["185.4.135.157"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:217::e528]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["rfDVGUbaMpTB8kKwrK3JH/XwWO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kv1B7lXkYQtR6OJZYc+PIx03qlSrSc0plrK5qosnIoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:53"]},"IP":{"Case":"Some","Fields":["185.220.101.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::206]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MichaelAngelo"]},"Identity":{"Case":"Some","Fields":["reo9Vgn87B7y9EJsSTE+uC3+Pms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ySiagQ1Fqwqp7FsBhO1M12v/rpetjqPxqMHuV3ufi4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:27"]},"IP":{"Case":"Some","Fields":["178.63.40.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:205b::2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l0bst3r"]},"Identity":{"Case":"Some","Fields":["reHP1ppvu3rClw195OQCu1Kc9i0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6/DhB7927kuA/xWT0ZjGXQiO9+SuDnDbwKH49vB6doA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:10"]},"IP":{"Case":"Some","Fields":["46.249.49.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1ca8:2e::c80:519b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vaN1ph06"]},"Identity":{"Case":"Some","Fields":["rbuImo3LLmDwAcyerLw3rdhEw1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5aQeRuucSnS6qFMvgZB0AXraSQWkhQClL5YbS0ZYkrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:44"]},"IP":{"Case":"Some","Fields":["88.214.35.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange008fr"]},"Identity":{"Case":"Some","Fields":["rbmLJ9ej+1cyBo/SNgKhvLO+nzg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gryDaI25962BzoHG/Vh0telRpE9XzZp5gngW3Idquyw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:19"]},"IP":{"Case":"Some","Fields":["62.210.105.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BerlinSpechtpark"]},"Identity":{"Case":"Some","Fields":["raqwD3E82RM+tltKr0tV0u5qPMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OEEtwmazkIALt+HADCWnW0TT2ec12YG5YRlevWBhA30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:40"]},"IP":{"Case":"Some","Fields":["80.144.172.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ralMSPLZoO0K62UxHA0dXLOOE+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RzWQxN6XMDAj/HbAiWt1Tvw5lvxw7H09Cx3i8ZflyuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:59"]},"IP":{"Case":"Some","Fields":["185.220.101.35"]},"OnionRouterPort":{"Case":"Some","Fields":[10135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::35]:10135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv04"]},"Identity":{"Case":"Some","Fields":["rZsiQ7gSP3OtBbBd1D1UImdW9Kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/t2IVl5hVuTTPUVo+fBRmARp0mOrQ7ZG32Iz+guFrwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:51"]},"IP":{"Case":"Some","Fields":["162.248.163.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor1e2"]},"Identity":{"Case":"Some","Fields":["rYbNGklXPVKntvSjV1DxYarYnIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fVwMeziMb0cNGOryhLvc47xaYTggecc3a6xb+SXe3Mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:44"]},"IP":{"Case":"Some","Fields":["185.195.71.244"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["rWREwCgP+8UeCIsqfGi2P5EXytI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJVVmWTwc1igJ2F4IplnOO/nBU1LYu9djs7acEO+UGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:22"]},"IP":{"Case":"Some","Fields":["5.183.87.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNickName2"]},"Identity":{"Case":"Some","Fields":["rVZVXDzM6epJhylnsMkPFp5+t1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdrPHjCJpcJ5MVGmhgBgCLWLCKD7fE22vQrRwoCxNVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:43"]},"IP":{"Case":"Some","Fields":["176.98.22.123"]},"OnionRouterPort":{"Case":"Some","Fields":[55555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sputnik"]},"Identity":{"Case":"Some","Fields":["rRlJDH27JtOmjvyCT2fmmwqW5gE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i4YXGQM2leJaeFAMM3t0X+I0VTx4nlqFDdOLP5LyDJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:58"]},"IP":{"Case":"Some","Fields":["188.40.128.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:1ac1:dead:beef:7005:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["rRR5htAz351GmEYmISqyUQ2WNNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["33X/jzIxPkAsWRqJFyaM8Rq/Lw2ZOX7bgCpfmGGONmw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:03"]},"IP":{"Case":"Some","Fields":["67.198.37.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen"]},"Identity":{"Case":"Some","Fields":["rQ/P2D6kiZ2zRzXlmXAVkt6hNpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H8RF0kORZLDwELk7RjVxCPmx0sMoIfcT69OXp25apCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:16"]},"IP":{"Case":"Some","Fields":["202.61.197.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LutziLebt"]},"Identity":{"Case":"Some","Fields":["rQ12GLbnpNElq7B7U+rLIUb/yNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDYTxp0u4CkA3amG7szE0lMma1t3IZ5sdRm4T1afBuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:01"]},"IP":{"Case":"Some","Fields":["128.0.64.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetherStar64"]},"Identity":{"Case":"Some","Fields":["rQ1QhpR1o6I26nq4UsIVvhGlx3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hk+loM3R7vMp02jIEc+vLy8THveePCDHq0eznkYxTBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:37"]},"IP":{"Case":"Some","Fields":["217.93.80.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["rQhYSsaipCHa7fIn2m8N5T3+QLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+MHZ1bSii96IGTpRhHpChcud2nMAwAXLwp6UTMu/Zec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:07"]},"IP":{"Case":"Some","Fields":["179.43.159.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raphanus"]},"Identity":{"Case":"Some","Fields":["rQZS72MfnJnOfOIfGhVq108n7VY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y7VRs06eSspR8Iseh9KmPU2puYAA7OYEjrlOyJOvSgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:17"]},"IP":{"Case":"Some","Fields":["164.215.1.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alexandra"]},"Identity":{"Case":"Some","Fields":["rProWJcXs/EXZvDegmQn6PpAWL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GHwo8qqgGvet6SXNbbDZtiMz69lWV7ah/v1Fdaxab0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:31"]},"IP":{"Case":"Some","Fields":["189.147.190.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mmagtech"]},"Identity":{"Case":"Some","Fields":["rPrA6+c6oFjqFnUaFp8UpQLjbXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9LU6hRUcF0WqN/tnfT6zSZIxr1aNw2x7tfYGzfh6T3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:00"]},"IP":{"Case":"Some","Fields":["99.43.23.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDiversity"]},"Identity":{"Case":"Some","Fields":["rPj8bBQDKgRbRPa5hSXuXARy3VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0ik7cgZzB85NZ1hoHukoWVvcgiIaaL+Ee4kCoeIqf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:28"]},"IP":{"Case":"Some","Fields":["91.208.184.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["rPiwecBaMTpRINVk3q7/LXU7GRY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aG/2deUjBRuvVRJz3uoBIV6FZFw2uIbpqPWbzm7AKZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:47"]},"IP":{"Case":"Some","Fields":["188.166.76.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["laukur3000"]},"Identity":{"Case":"Some","Fields":["rPf9W3NoG8AbvoF2xj5GdbJ0ER0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbwtKdwKnUskDCOlh+j1aMCgo0hEEcYk7DCz7NbrfUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:56"]},"IP":{"Case":"Some","Fields":["139.162.63.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:91ff:feb1:8ece]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qwertz1"]},"Identity":{"Case":"Some","Fields":["rOQghyrx+KfgZEA9kmadFMXOdK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y2/ZAg8MineVa1oXKH7zRh+HzYlEJTwcJuiRv5GEcUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:43"]},"IP":{"Case":"Some","Fields":["116.202.233.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kulcosictor"]},"Identity":{"Case":"Some","Fields":["rMh0rW1NOsMIy2wERiChWaESMZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PPxgU62RDMX+Du0nCwuM3St4oCDlL+ZjrhtV2rebmu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["193.190.168.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["centorLyon"]},"Identity":{"Case":"Some","Fields":["rL89UEz/PXTRmRr99qwHBgYjKxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xm1uvBbrCW1oy2HH5IM6CvgZVwjyxMmrbViBBAyH4Do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:25"]},"IP":{"Case":"Some","Fields":["82.64.20.171"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[59002]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shadowfighter0"]},"Identity":{"Case":"Some","Fields":["rL56IiUZTgXCAFGylI0GmpeUgC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qWHh6X1n0sBDqRQ6fku+E2hB6UmqCdpVnJtWCyF+TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:43"]},"IP":{"Case":"Some","Fields":["84.148.245.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire62"]},"Identity":{"Case":"Some","Fields":["rLu0Js4dBkGlkL8fwc8FQW/A/28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uUitGUqhl/sG7KBXa28Hwu3IZM9dqaigSSrgIVKqjm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:52"]},"IP":{"Case":"Some","Fields":["91.143.80.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torgate"]},"Identity":{"Case":"Some","Fields":["rLWczYg0AK5QVsI1G4ZRaj8wWIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hNB4g8jgMICusOkjvqg//MiIq5S9pta/IPEzm+Jm/DE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:38:50"]},"IP":{"Case":"Some","Fields":["85.214.235.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryMay0"]},"Identity":{"Case":"Some","Fields":["rKrhcIFE9khar/1Zw8bqoepKqrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W1PxoPpsyTUNZpweIREnnd89bWAUzLHNwc5JbKIt2DA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:00"]},"IP":{"Case":"Some","Fields":["46.4.32.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:3641::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["rIfbHZZTYvvLn8i6MphnGNPsarY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["etB/vQoldARlDZ9QYh6hm+JCIFkw4VojVpxsmEhlLko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:47"]},"IP":{"Case":"Some","Fields":["185.243.216.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:216:0:91]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["churrodawg"]},"Identity":{"Case":"Some","Fields":["rHyI1nM5uQ8sEP97cC3LHvO41mM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CCnry9xXklDXOVHBLk3VP+W1pT4q/+onmriVb6kTpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:38"]},"IP":{"Case":"Some","Fields":["138.201.196.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:3e99::2]:9993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcRelay2"]},"Identity":{"Case":"Some","Fields":["rHwPnVfa2tXY9FaO4VQ+8+IqR84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yqp2qqq3DagM0ljPHMD41FyjkRmLBXfdQ6lnqM95tWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:57"]},"IP":{"Case":"Some","Fields":["130.225.244.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:878:346:1cf9:446a:c4eb:4548:7062]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SODrelay"]},"Identity":{"Case":"Some","Fields":["rGM8kOEm4LypbxTs5dIitYb6DVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P4ub4q0CkFlgbHiYp5saq7V5OD6yVt8Km7kvh0YCY4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:51"]},"IP":{"Case":"Some","Fields":["157.90.92.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:252:3df0::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortempel2"]},"Identity":{"Case":"Some","Fields":["rFrKptkbcXLIgM/Ew8JrYta6Jn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXBSrtJndHty8Q+bvBrX+ZwAn6fCEopvhRCZhVeOoHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:14"]},"IP":{"Case":"Some","Fields":["178.254.31.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9596]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benignrelay"]},"Identity":{"Case":"Some","Fields":["rFcZzm8icWYXwKV7m5gBMby2BfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IolvT69CAEMjuse3LQo/qRWh0bLLQ0qrnLt2Kd3VdkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:21"]},"IP":{"Case":"Some","Fields":["118.99.13.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["rEGj8y1faTcGuSBDGBYZkKxRaI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J7lvPG6B8AikQBX99KQ0F7r0ppTqPA4eldwDlytjmmg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:33"]},"IP":{"Case":"Some","Fields":["23.128.248.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::33]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schokomilch"]},"Identity":{"Case":"Some","Fields":["rCvt0LrHKDjqfm8RP4VsToAYrNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlS/DS+hvGww8QlMkU58UET2GRqmrWnFhebONiBdKEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:37"]},"IP":{"Case":"Some","Fields":["176.10.107.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torcz"]},"Identity":{"Case":"Some","Fields":["rCceczBaCdcrkCWii/eO3DM9yFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["69EsB1Tz6jikiOU1Z52FntJrKkVfFIfnjrlNmMl6Ks0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:10"]},"IP":{"Case":"Some","Fields":["213.211.43.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["rCScVsEf3fqejeVrGCsTrIpGcr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QG05eNVxwYXNjXqYxlZYB6GOZf8rS/ojzF+KfCZSWzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:36"]},"IP":{"Case":"Some","Fields":["188.68.51.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["q+bGW2cdDmDso88sOw/+vVImTwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cdVKe2YvpyvNJFcrCchF2wQZOJ91KG+kWIH2N8BPnGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:02"]},"IP":{"Case":"Some","Fields":["185.220.101.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["millemille"]},"Identity":{"Case":"Some","Fields":["q90lo9b80QTxPwWgrrYCfOMrehk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HPW4GXZsSt7KruDdgjq8ZStc0k0UiMwd5P5Q6Ba2Fk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:55"]},"IP":{"Case":"Some","Fields":["178.254.41.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["q9wlIF5HKAnVQCfpysRniyvPIz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PeqAxaOLAreLl0P5s37as3UKrwLHz//HtS+qafRq+kM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:02"]},"IP":{"Case":"Some","Fields":["193.178.169.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc01"]},"Identity":{"Case":"Some","Fields":["q9nUbDwCbPa4hXSgcH0L91oGeZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IKsycsQfkAyzetV5j/wwF0zXNTS0bBKMYXzexPukN24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:18"]},"IP":{"Case":"Some","Fields":["185.100.87.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLicebeer26b"]},"Identity":{"Case":"Some","Fields":["q9Y3xPqFykrybgnKhPcLOWYD/zw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ktn+lGswnpSPperB/0h3Kh0Xv6VVKh5dtkwx6E1q6LY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:11"]},"IP":{"Case":"Some","Fields":["95.214.54.94"]},"OnionRouterPort":{"Case":"Some","Fields":[8170]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myQWERTY12345Relay"]},"Identity":{"Case":"Some","Fields":["q8vhiUStPErKgx7SSOtsZtN5Jrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WZRVt0J2S6GWzKQzovhs8EGQYIHtTScJOPshgicFRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:48:16"]},"IP":{"Case":"Some","Fields":["83.78.178.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Playstar02"]},"Identity":{"Case":"Some","Fields":["q8WnptXGCVEvXXzStJDOc2bwDWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dF7czDcq3jQsiv9o1T6CcHKcgxjyVbh4URKdxrgW16A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:53"]},"IP":{"Case":"Some","Fields":["192.121.44.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2af8:0:c4c9:3dff:fea3:f4fa]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bergjuden"]},"Identity":{"Case":"Some","Fields":["q75LTB7wGzwXZe+g3sETyoMZRvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtvPvcvzHkPCrEbHR/GX9rIN26Quy+/7M4W+COQuYpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:03"]},"IP":{"Case":"Some","Fields":["88.198.71.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:151:52a1::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CzRelayFuckPutin"]},"Identity":{"Case":"Some","Fields":["q5r6B8MSwJiaFa5j3FoA8sypCuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7DhUJbzkKCjp8i9K/nuRvEmfWnS+5m1S1n+rSgNoxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:31"]},"IP":{"Case":"Some","Fields":["149.202.124.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv24"]},"Identity":{"Case":"Some","Fields":["q4uPZuEpizvlF2eJoQOLk4Kw/Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYzTSCop1gcQVmWm74c/6EyOUfmmQbPvqT4WGu5hzj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:21"]},"IP":{"Case":"Some","Fields":["45.62.224.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bunnyriot"]},"Identity":{"Case":"Some","Fields":["q4cM8dwwUM7Uma/ACLv8J1ZLM8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X5R7QGxloarQRFs9w69OLMyoZ32IOpUHpEwGbqos5Ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:50"]},"IP":{"Case":"Some","Fields":["217.233.71.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["q3NmklxEZCTn7jMXm+q0sS2GlrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+p8GlMCssWHiEJlyE+iK4jq3B4Ne7MwGc5gOVRfQGVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:25"]},"IP":{"Case":"Some","Fields":["188.68.49.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YoloRelay"]},"Identity":{"Case":"Some","Fields":["q3HytqFSh7idJ6UrR9EQaQy3I9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NO/eCFt6CRveM610P173yOCogz8XCdlj5bblNcJuoqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:01"]},"IP":{"Case":"Some","Fields":["82.65.148.75"]},"OnionRouterPort":{"Case":"Some","Fields":[39185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:438:9850:4ecc:6aff:fe3c:b8ec]:35433"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neuronMail"]},"Identity":{"Case":"Some","Fields":["q2aQqvRfU/fzvIQuI3efJMk0bfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R0ga3k1RAilU7EZsrD9AizNtpO8FNGlKt2KbaI3DsPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:35"]},"IP":{"Case":"Some","Fields":["45.79.76.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mikoshi2"]},"Identity":{"Case":"Some","Fields":["q2aMtPKVPYecKxre9bbPsyZ7gls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5A5lM8BslF+wHnnWSr1hftVcVqxieX/zTsGO0B9vK9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:10"]},"IP":{"Case":"Some","Fields":["84.157.61.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AaronSwartz"]},"Identity":{"Case":"Some","Fields":["q2ByFmNmwuJF+VkFMQQxNXtYH5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1mkBhGhxjqO7416NXvuwYX+IV7WG8h31sDjeXGUnelg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:43"]},"IP":{"Case":"Some","Fields":["104.178.168.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:c0:5678::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gaciiz1seish"]},"Identity":{"Case":"Some","Fields":["q17/+ajmyMLveNX2UH3bInjKn8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVex0IRdT+fR/rKLR09z3BgI0L0TJe371nhMIjwjmBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:49"]},"IP":{"Case":"Some","Fields":["205.185.119.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xXxsussybakaxXx"]},"Identity":{"Case":"Some","Fields":["q06Fb9/7qI8rV5wRhIbn6Q7N8UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lV8Me22Y79b/uP3iGdo32IUsIJQhcOdKvM+qLHYA0xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:54"]},"IP":{"Case":"Some","Fields":["129.146.138.146"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv118"]},"Identity":{"Case":"Some","Fields":["q0dh4jr1EegwbpXnj36C93suSH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HbHRz8kFedkbwOsgFUTJeBT13evtWhABtR1Hw6Q2QfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:02"]},"IP":{"Case":"Some","Fields":["192.42.116.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5518]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eva"]},"Identity":{"Case":"Some","Fields":["q0D9eNik3lMPseA1XnTYA2d4Rhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q9zKDAXORuqqik2X7T2mCH4h/ZLOAGAdHCMzF8trWq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:57"]},"IP":{"Case":"Some","Fields":["31.164.230.2"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[42069]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luxurywood"]},"Identity":{"Case":"Some","Fields":["qzIn20cLF4g9JNgw6oTr+9x9WBU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtcWQ/xrdIYdES3YauAZvSXHMJWE+yxrN9GdXJrRUco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:09:43"]},"IP":{"Case":"Some","Fields":["206.192.255.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b:26a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["qx/r9pgi9KoULHAxkk3QhJbL/uo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g7/1wfa1V99b7Q5ahiGDVkhKVUVKXMnp4CJnkES46lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:51"]},"IP":{"Case":"Some","Fields":["213.238.182.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r1"]},"Identity":{"Case":"Some","Fields":["qxgQOKfPghbga8yIvULng9W8C0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nw4tJBzon39hlyUwf4A/NOzgJDav/BTnDyOi4+TSE8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:11"]},"IP":{"Case":"Some","Fields":["108.175.14.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelloPerson"]},"Identity":{"Case":"Some","Fields":["qwj2YkS5O5Xf8gmOpoh/+JZExlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l3uzHT3AetOGFLbUbzypPoCKI1Q1MjDIyUz8XkO12hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:30"]},"IP":{"Case":"Some","Fields":["51.38.176.84"]},"OnionRouterPort":{"Case":"Some","Fields":[13373]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onemoretorserver1"]},"Identity":{"Case":"Some","Fields":["qv+mirYSOPkES27Lpi4lJkET64g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6PCU0faNrWdoU9DazS20B8tKROXIy4/fx7gUj3r+eA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:22"]},"IP":{"Case":"Some","Fields":["164.68.106.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3005:1808::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jceaonline"]},"Identity":{"Case":"Some","Fields":["qv9KmXVD2w2IH08RY4SFt9Rx/s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLLekP8bXyCV0IPSWmL9y45vBuJkZt5ntyBRXn+2QNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:15"]},"IP":{"Case":"Some","Fields":["51.159.34.131"]},"OnionRouterPort":{"Case":"Some","Fields":[47168]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2ecd:caed:746f:7200:746f:7200]:47168"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noob"]},"Identity":{"Case":"Some","Fields":["quhTTSEuelzw+ZeTqPZa2RtSmSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YxGl6gDUPJL9rK2sXZVbCKU/UeY1ge0JyauZFiPqqZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:44"]},"IP":{"Case":"Some","Fields":["96.234.41.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strator"]},"Identity":{"Case":"Some","Fields":["quAVxvE88G3o/SjbkDcr5VyKowc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCIQmaQH8yl9kQfuOKP+502eziyBzNW0GP8faadulxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:41"]},"IP":{"Case":"Some","Fields":["81.169.240.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43de:1a00:7fbf:f902:d7a7:4f2c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NicerDicer"]},"Identity":{"Case":"Some","Fields":["qtH/5EQ1J3tsC9xlaEqDb6NY8nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QjvGZVLAUL4jZrjd625A1GPBl642Dm6w+w0ibZdQZYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:56"]},"IP":{"Case":"Some","Fields":["87.181.29.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber28"]},"Identity":{"Case":"Some","Fields":["qs1OCeZboYyvNfvIVe9llQWzbp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rMV7BS6TBOVBBB5QJzqoFAispbOa+8rOmadd5S/T7Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:31"]},"IP":{"Case":"Some","Fields":["185.220.101.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::14]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pi4TorRelaySlow"]},"Identity":{"Case":"Some","Fields":["qsqHfodovQdXwYkVBqIAPhPS4Q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9ltIzrxUX1tqLCglYflj810SxWv63fi1nAcBhVLQv50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:20"]},"IP":{"Case":"Some","Fields":["73.41.140.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tonyTOR"]},"Identity":{"Case":"Some","Fields":["qrb4sDvOL3wYU+iv++uzOSoUO/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yMqrOPr4jpxUrxzCzdVD6WeE39pWZQ1+AlhmEL5ytBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:53"]},"IP":{"Case":"Some","Fields":["193.226.78.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["qqslGcJ+9ofjIW1YjMLGrMOwUaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2a0o7hXYj9BrR3L2z4p6YH3Q/YzsEO6kMkZD3U8KM1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["95.214.53.221"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d9]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WorldGate"]},"Identity":{"Case":"Some","Fields":["qqRN4PaRrJp25xHirvs8hL2Sf04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QyzP9AYTASadlcOfrEwWk49asq3AMLHCFnq2ijIGQu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:30"]},"IP":{"Case":"Some","Fields":["86.202.188.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:b8:df00::19fc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["larrabee"]},"Identity":{"Case":"Some","Fields":["qo61rT9uiX+fKDsZn4VKyk7vgxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPqtonCnc8s4/rUB7BUEP1W6h/HzD4kWigUj5J4UoKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:44"]},"IP":{"Case":"Some","Fields":["110.4.47.139"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["indawoodz"]},"Identity":{"Case":"Some","Fields":["qojU9bBbTnsgDiniOlrhpvwsen8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XATV0jA7W0xXSmOJ8i9XhWcrFoRrxXFjdsDUCvJWQXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:29"]},"IP":{"Case":"Some","Fields":["76.65.151.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Magicland"]},"Identity":{"Case":"Some","Fields":["qof0UqIQZDwcEupsExI4v7M926Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6p8uqoWXrJbsazJD8Yz3bMuGuzS+i35ISYHw2AaaAf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:27"]},"IP":{"Case":"Some","Fields":["185.215.185.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cryptornite1"]},"Identity":{"Case":"Some","Fields":["qoXU4nQy7PXDT2SvNbMjat5lOP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JCBHubLeRyKoSK6OlgBDowVKHXCRbjbn8WRNbuSNzqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:59"]},"IP":{"Case":"Some","Fields":["92.116.129.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["R1lyeh"]},"Identity":{"Case":"Some","Fields":["qoGq6toS2OD1iou+1c0B1xxOhOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZ0aPoFSssEoQ0zwwcV0l0FtlNOA0+erk08YH/16ms4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:48"]},"IP":{"Case":"Some","Fields":["5.255.98.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:2e34::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbaddie"]},"Identity":{"Case":"Some","Fields":["qn8oSBPX1dZzZ7p4ujO33HTweu4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p0aJE2QNebJPZ8/zvs42idwxmgxrJf9utMNTXGEyB00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:58"]},"IP":{"Case":"Some","Fields":["45.61.185.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JustSomeRelay"]},"Identity":{"Case":"Some","Fields":["qn1WnFL6RNeSG7gRS1AEToDRefg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+AnhM4CjgE0jiM7uYlwleU04YD7FesZf68nc5hHO83E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:16"]},"IP":{"Case":"Some","Fields":["73.90.7.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skid"]},"Identity":{"Case":"Some","Fields":["qmtY+f1R+TLhT3vYezs5QwNr74k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nWvTD6xcvlB6r+T1N1HQG5oRXA3ESsjNQfoC8B4/iw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:43"]},"IP":{"Case":"Some","Fields":["91.90.120.195"]},"OnionRouterPort":{"Case":"Some","Fields":[37187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roTor"]},"Identity":{"Case":"Some","Fields":["qmFjFbqXcp6kfa2HGPpZJpxyKec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1KgSgxrOmnseECjwJ/A/aPqTZdYk2s6iROZCd4ySQOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:26"]},"IP":{"Case":"Some","Fields":["94.105.123.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:578:853f:1500:ae1f:6bff:fe45:cae8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["opix"]},"Identity":{"Case":"Some","Fields":["ql1KrSfyVHVhG3Mi6gckofFzn4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UCbk2y7ZPdn0+teg+kl1j6cEY1TjkG784+tpvv/9CY8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:44"]},"IP":{"Case":"Some","Fields":["94.19.200.5"]},"OnionRouterPort":{"Case":"Some","Fields":[44040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:3580:2e1f:900:f402:5eff:fe33:d21a]:44040"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qln7T7KnQQ7MdlilhInJ1R1xhnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ndgAbRV2HdmlerPFS794vjhaH1NlyjEz0Lspha5yszo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:08"]},"IP":{"Case":"Some","Fields":["82.168.132.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DadaRecipes"]},"Identity":{"Case":"Some","Fields":["qlHDVTR8ZxzGauiDiCN3LEPsLl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KInfhJHxiHZr9ZtN6+aN6hRdryRT5fNz1DMxplz5gRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:10"]},"IP":{"Case":"Some","Fields":["38.97.116.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipda"]},"Identity":{"Case":"Some","Fields":["qkryfWpXOw7rI0rviXUMpuYUHA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EN/Lo+HqEmH5k15wxtyrCCMV48Znzw0i8kIbW6YYA2Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:56"]},"IP":{"Case":"Some","Fields":["185.220.102.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::243]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["qkZE8OxYnuovUBu4Z+MuWZ+Bado"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KN41fxTa5TPXrm3qv+OB+cC3AfI0Ycvh1hGkaHBME9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:33"]},"IP":{"Case":"Some","Fields":["5.45.104.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fl0"]},"Identity":{"Case":"Some","Fields":["qkDW/BCAtVzjoXGWWEKzwv1WAuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xCGQrneD2vjdYRPowo2HaYqWhzZKsXJcM0/raRvIZZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:05"]},"IP":{"Case":"Some","Fields":["188.80.195.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTorRelay4321"]},"Identity":{"Case":"Some","Fields":["qjXmo49x8yTb9j6NQ9+D0N0MNTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ywzTWMgGh/kk0B1tuQzAYQlxXpp5S/N5cNOrh3PEF0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:00"]},"IP":{"Case":"Some","Fields":["190.89.104.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontstopmenow"]},"Identity":{"Case":"Some","Fields":["qia5e2ynV79jMo7pZwUSBgnPSq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/Nvaiy9UfDe6NTZ3GZ5VzNeDU0cQd+lgm0Y++4uSOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:19"]},"IP":{"Case":"Some","Fields":["173.212.200.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:935::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoSoul"]},"Identity":{"Case":"Some","Fields":["qh5YQlH8t8Yv7j6rSApfyQmkSTw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xbkRtq03At4h7jWN1MMICVUKU5y/c+9ziWSSNWjk9nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:06"]},"IP":{"Case":"Some","Fields":["217.92.175.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qhsCbuDIqVjinGfH2Ihf8nVyJp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3psQt2bsPpcuez3ppBadApftkKmWFf04TJXX85hK8gM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:12"]},"IP":{"Case":"Some","Fields":["212.129.4.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionSherpa"]},"Identity":{"Case":"Some","Fields":["qg+DxaN+Ql0NM5mGgy+3RbpK9Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QCbhqN2ehFidd4g3OPBoFh2YKvwoiQwUnQE+grChU1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:52"]},"IP":{"Case":"Some","Fields":["199.195.249.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PERLURGroupCZKO"]},"Identity":{"Case":"Some","Fields":["qg1KJ14/HN/6z3N0cPzpypDU1P8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xpv6hXyqXFF4tIpyU9r25atJ4LlrfOPV8GGHlmHriiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T17:54:43"]},"IP":{"Case":"Some","Fields":["82.209.54.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["damita"]},"Identity":{"Case":"Some","Fields":["qfcYVJnFeE41tcJXRO1Kt1Q3zl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqUrmftrHnOvFladjiWx69dT3FDsgbBUIr6WXU+9MOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:26"]},"IP":{"Case":"Some","Fields":["91.229.76.124"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ethe"]},"Identity":{"Case":"Some","Fields":["qfYhunjN8ydsp3kyrkfKsKyKJuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8VagYM4YwoNX4Sm/F8q3Z8B6+WqaPc7BTtSrm4Im+8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:36"]},"IP":{"Case":"Some","Fields":["139.59.92.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torthias"]},"Identity":{"Case":"Some","Fields":["qeQ0Me9HO+7w7smNvd0bjD4/sHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2lvDLbQoVGbdL0axfRf3JooIld40KHCeY8WHd2Jb2Bw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:10"]},"IP":{"Case":"Some","Fields":["94.130.185.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:453a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnappyL"]},"Identity":{"Case":"Some","Fields":["qeBqRpwpQjpIzBLz08UhRyFIv8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jKy7W4nxMohazg0FW0jlN+/uj+NWbOqAcX4raLT/J+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:39"]},"IP":{"Case":"Some","Fields":["24.124.18.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AMSRelay"]},"Identity":{"Case":"Some","Fields":["qdpzXJ3nyJG57da0M7RY92h+gps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHToI5UCeAOiEX1CRRjm8kNxQCj0LPdCf3tRc1zM4w8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:54"]},"IP":{"Case":"Some","Fields":["146.190.22.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockerObfs4Bridge"]},"Identity":{"Case":"Some","Fields":["qdUsSqhVa0mUHseWy8lIOfDaVPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfWI9CTFpGd/X+qarofsQIrluhG3TRZaPCSkwQl+OcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:49"]},"IP":{"Case":"Some","Fields":["212.8.253.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viola"]},"Identity":{"Case":"Some","Fields":["qdGobnimMO2GAPtJSu3L9hsg6xg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["onmIb5Ta8tDXwBtZSebPlqtRX4HRxvsKC81tBolJ5p0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:12"]},"IP":{"Case":"Some","Fields":["69.40.113.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu3"]},"Identity":{"Case":"Some","Fields":["qb6i4GmdH2BSHIoRZzQJRaQZ0QI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DaOWXNl4l39hNGAZJ0yPYVH8OtsGiCKnne0il6R7DJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:13"]},"IP":{"Case":"Some","Fields":["104.244.72.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fb5a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BWV639"]},"Identity":{"Case":"Some","Fields":["qa4gooeyFe4EnAA3PJUvQ/CAvMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gcWknCzqUD7vWZetzBXNhP+w1+dbnK7DgreqYlnubqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:38"]},"IP":{"Case":"Some","Fields":["173.230.137.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fedf:a49f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["u698id1147"]},"Identity":{"Case":"Some","Fields":["qaQhPqPXB4VzaMaD8iCMg7h1XYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wzeX1CC1498aFKDn1SOoRn4C84JMh1Zs9B+sM9iXi/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:43"]},"IP":{"Case":"Some","Fields":["91.233.116.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buttercup"]},"Identity":{"Case":"Some","Fields":["qZsNnl/VvDyPLQBuyR+Mf0DgnLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVkKdpDxWKhqg9Uvm9Szum0i9W70EKtiHHQ2/LhmWqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:53"]},"IP":{"Case":"Some","Fields":["46.4.78.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bolar"]},"Identity":{"Case":"Some","Fields":["qY9JL2UxrjoGjdNTlcqfW+jwNVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQep1heJ/MYsp38Rc1seCQmjYjeyKwRyHo7e4KqP2G8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:41"]},"IP":{"Case":"Some","Fields":["84.212.255.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kuba4697"]},"Identity":{"Case":"Some","Fields":["qX3LHkhgBNbzJljf34DCIafBJzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LJ5yAonYEgo5rVOA+nUoNtEo6TH/MyWtdNjTbjHZsXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:26"]},"IP":{"Case":"Some","Fields":["77.253.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1148"]},"Identity":{"Case":"Some","Fields":["qXNM+V+kPhTDdX2yHPxsyW4gB/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UTNGVUnpY+kFvp8PS92aXH4D2zJuPBDD7iRSEYgPIx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:31"]},"IP":{"Case":"Some","Fields":["185.220.101.148"]},"OnionRouterPort":{"Case":"Some","Fields":[11148]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::148]:11148"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH106"]},"Identity":{"Case":"Some","Fields":["qXA2JkBSuBh/kBfjF8NO/adBJes"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/MAUR4Flju9fRFMQPp5vh4QbQcHv8yYCpcjyjIomqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:07"]},"IP":{"Case":"Some","Fields":["192.42.116.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowflakeMentality"]},"Identity":{"Case":"Some","Fields":["qW/I3/MqwX6DlANUg662ErRiTVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVQRqxT9IYYYm4l1pVkNf4e9yaA74g/KkywkSSEXaaM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:17"]},"IP":{"Case":"Some","Fields":["24.246.29.240"]},"OnionRouterPort":{"Case":"Some","Fields":[5190]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NerdyBloke"]},"Identity":{"Case":"Some","Fields":["qW8Qgo9dO6QqyJJ/A23r2ZTvBL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MrK/UFUsQ7F4E5FmT6hflU8LpNm/nNqFNb7ZeBtljTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:46"]},"IP":{"Case":"Some","Fields":["212.159.177.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f09:d10::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["qWP0z7VjX8m1gy4rwfvNO9T/lz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0kfgDwq1gDqS3R1HWw5UAPCyygg7woM4haNtOgnUekM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:08"]},"IP":{"Case":"Some","Fields":["95.214.53.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qUo0HrmABsVEFn5GvNzxcAhAbqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["liuDvxhkWW0UWBGOOiw86ARVPAuCsYIZsTY+ROnUMm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:35"]},"IP":{"Case":"Some","Fields":["136.244.109.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ullr"]},"Identity":{"Case":"Some","Fields":["qTwKCKnznUjGE6SXJGqzIfRKdTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uELzLaNbcfWxUXkafVZG41eCDGzj+F9rgIW5eSI+yKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:08"]},"IP":{"Case":"Some","Fields":["83.137.158.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9013]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation55"]},"Identity":{"Case":"Some","Fields":["qTL1b2nSSpagy8TzKSKmLe/SjHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjNLn+M7+muf+CkjN6+BXNU6eXgfN8XUAWBv9uQIpTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:37"]},"IP":{"Case":"Some","Fields":["51.89.143.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wideBus"]},"Identity":{"Case":"Some","Fields":["qSIk9qgursgamrNVrs/mZPR2Er4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PbzbFl68qxvJbCam6ggeAYnA53n0JOlnsjVnnkL9kw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:25"]},"IP":{"Case":"Some","Fields":["172.106.167.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex81"]},"Identity":{"Case":"Some","Fields":["qR8+TSzNgfXIZeFDUl+Sp5DN8X4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RPmMmFb+iL+LSbDgno4O/gtVU7OSr1hGGhcWXm/Hhw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:50"]},"IP":{"Case":"Some","Fields":["199.249.230.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::170]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["qQRLmuA7yjLe7LcKlz40wC9yz8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vEjoKIFE6tQhJRxrmDZoPP+LIPmLDTR8H3AfXk7UTbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:49"]},"IP":{"Case":"Some","Fields":["185.207.105.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R5SK1"]},"Identity":{"Case":"Some","Fields":["qPtz2Re3wrhRo1hyk1nhPrpZePo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c4qV+5TlZ1GjxNY8CEL/lgfUKcQP2+aW95CepyJQHbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:14"]},"IP":{"Case":"Some","Fields":["132.145.22.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:c007:cab:5235:2d:534b:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingpins1"]},"Identity":{"Case":"Some","Fields":["qOtwmDzC/D4skUGehOvNRyJlR0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oajTfg0FzjCxLl72nh1yX160ospaoz1rpfQZkZtHRoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:35"]},"IP":{"Case":"Some","Fields":["45.58.156.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vidaloca"]},"Identity":{"Case":"Some","Fields":["qNNMoE3e+rePbVNBsd4AxdTX2Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75p3zk3YWPGUfU1lKxHW0BvhHHqWnJvW9cHYFMtxKjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:18"]},"IP":{"Case":"Some","Fields":["162.251.117.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fcd5:8:0:1602:ecff:fe6f:1e94]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["qMjOIp4vAA7Ko944N1F/2GDqUP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3PCcuGpgUujOkaNL+G+Z5/E2tolKRZCIBxafI2s+A3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:54"]},"IP":{"Case":"Some","Fields":["151.80.47.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raphanus"]},"Identity":{"Case":"Some","Fields":["qMgiIKEZblKiFAz06J359nL9mwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CdBg/CD3/LdX/JhO+3R771lkBCakhXl8tK3IyDNqHoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:04"]},"IP":{"Case":"Some","Fields":["149.28.247.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Madeleine"]},"Identity":{"Case":"Some","Fields":["qMWKd2khuJyE4ITWVn8aKwOYBeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PncyC9B5fjNoyE+LSSGGfQu63lE1FQ4H8Fk11NKPogs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:49"]},"IP":{"Case":"Some","Fields":["82.66.192.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:173:7840:216:3eff:fe7b:d385]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex88"]},"Identity":{"Case":"Some","Fields":["qL6xUPS61RvGMJ7ZO/1AAipyphg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Y3h/+wnbjckfuJCFKHV7lFk1vxSgNOC6pZFMzoYSWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:43"]},"IP":{"Case":"Some","Fields":["199.249.230.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::177]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex83"]},"Identity":{"Case":"Some","Fields":["qLiHs9yLhk4vC1j5KwwQ1JO1r/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qjd2iH//VRMhqMUQHvX0gbiBUWKgLST7DyLvVRZQW24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:35"]},"IP":{"Case":"Some","Fields":["199.249.230.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::172]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex70"]},"Identity":{"Case":"Some","Fields":["qKxcG6CduUEj4ruZCYS4qJ4olrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzOJmC1VwQbuGdAc26TjXKYCXJnrMfSSpLzzdpBRlLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:45"]},"IP":{"Case":"Some","Fields":["199.249.230.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::159]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["qKdL2IUWKyP7pdti+/HWkZxhq1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3a3OVyWrEkokbjx89NVG/O1M8iiElYB+89U8By1aUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.63"]},"OnionRouterPort":{"Case":"Some","Fields":[10063]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::63]:10063"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["computel"]},"Identity":{"Case":"Some","Fields":["qIdOLEX0RdukYqkU7Y068EVzT/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7h98HNBvEGcDgBu1rbovgTAJJ42n6O7uDryGmH5oKe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:59"]},"IP":{"Case":"Some","Fields":["109.190.177.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saltishimporter"]},"Identity":{"Case":"Some","Fields":["qH6uLwlQlVaPz06D/DwOVPlGwzA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u6Qm8SFHfcPi0/6HQkzHVrEpGDfqj1TJicM+O9Yt2mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:38"]},"IP":{"Case":"Some","Fields":["37.123.143.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM08"]},"Identity":{"Case":"Some","Fields":["qHW/uDvYkfkuruAuxPxDVgP+j1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S37iB4yIq6bzu3HcqEikCJwpkRR1ASI9QaoNIYW3V1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:29"]},"IP":{"Case":"Some","Fields":["185.239.222.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM16"]},"Identity":{"Case":"Some","Fields":["qHJNPb07Ni/iWlX9gToVJh0GHVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3qQ6hDYCzoqY0g7QzpaA1pqiWMu4efzPRcnGggBL0Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:07"]},"IP":{"Case":"Some","Fields":["185.239.222.255"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex51"]},"Identity":{"Case":"Some","Fields":["qGgwMSaYeQLVHytvBt2QA4xFsRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/viDJjfaXvHNZXUhQ8c8ZN4OVPacGAfuS04Mw99zr3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::140]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glacial"]},"Identity":{"Case":"Some","Fields":["qFfajzco3kR1v82G2RNR9eMCs98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9rkfUt4knDTmzz9/0wNIykZiSHLOZtRTBIquxcD5jks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:24"]},"IP":{"Case":"Some","Fields":["62.112.10.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TransRights"]},"Identity":{"Case":"Some","Fields":["qFA5A/l/8n9dHDyjiBcyn1gZJeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QSAHuTbXiq60sSuGTBflMQP4v8knGODkRE5R/FB0lhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:11"]},"IP":{"Case":"Some","Fields":["82.64.238.84"]},"OnionRouterPort":{"Case":"Some","Fields":[1930]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5e4:1d0::acab]:1930"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorStar"]},"Identity":{"Case":"Some","Fields":["qDgpa58BqeJIe8OiXV5fL7ipefo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ETKjShpFZB1NOu+RWw/XLmHIqvfuG9GuKLBtsob1kE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:36"]},"IP":{"Case":"Some","Fields":["151.20.222.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pilpur"]},"Identity":{"Case":"Some","Fields":["qCx5KF2xLoKGSx86QmOarhEDB8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vxtckkem7qR4h9Sh+mM5pWqsFAiUQUo5CDxCNFtRq80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:56"]},"IP":{"Case":"Some","Fields":["176.31.151.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jbrelay0"]},"Identity":{"Case":"Some","Fields":["qCxOejPcQT7GMKsGqubz3NqX8UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8YlTU/yANs8NwH6qdL6ps5ojUsnh8sJqZcP6uUOESs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:24"]},"IP":{"Case":"Some","Fields":["79.254.119.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowFunPark"]},"Identity":{"Case":"Some","Fields":["qCrzQtVI+kAARi4MIjAHQhD7ypo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NGvoHmlY1U7J3XaWjRgVrFQwZrSBIEF31YRyWms9zGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:29"]},"IP":{"Case":"Some","Fields":["103.234.220.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["STSLin"]},"Identity":{"Case":"Some","Fields":["qCTo7ZNGDjK6rIFVvgzKQ+BAi/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Svn2O0k5reqtUbuNmUUPTof0bRJe61lhDuwYJ84boJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:31"]},"IP":{"Case":"Some","Fields":["188.166.186.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::1063:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oszkugay"]},"Identity":{"Case":"Some","Fields":["qB30uwtfhgYb6/wt6URkA5SZQ+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DlvYrUiWvQhb2csv5ig6WqqPZC1G6gki3QDs7v/I9/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:13"]},"IP":{"Case":"Some","Fields":["83.230.40.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["huebing"]},"Identity":{"Case":"Some","Fields":["qBD/Hlx5g9Q7NRdQZHknS12lrHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hXPbqAK/VRj6E8IVpWc1Lxb+fchBMuJwU6JIQIBdTow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:14"]},"IP":{"Case":"Some","Fields":["185.227.82.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WooptThereItIs"]},"Identity":{"Case":"Some","Fields":["p/gKt+BMAATo3goAN/jtVCkkWL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2AWowAMmhq4rZ8TYFlMzOTqlPGMTUoBRjwSV1LSpWsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:25"]},"IP":{"Case":"Some","Fields":["149.154.157.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ted"]},"Identity":{"Case":"Some","Fields":["p9F1l6Z/CtZO4fOkFKCtygCAF0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0+Rq21zrcIyKeB+Pfr976XPYD2xkcSB0OkkIFNNcCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:04:36"]},"IP":{"Case":"Some","Fields":["185.217.0.85"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute13"]},"Identity":{"Case":"Some","Fields":["p8frKg37Lj//wSt3VnB0M91VD54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gdw9gPJAiHqnOSbavkRgxxnnHEzSpt34DOWhENsiMtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:46"]},"IP":{"Case":"Some","Fields":["162.247.74.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor05"]},"Identity":{"Case":"Some","Fields":["p8W0DsD7UXXohAdd3IdTHTU/Z5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0LidNflSyzw0oo2JRS6BBdU8or3+vqLGYvciLCgN9+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:44"]},"IP":{"Case":"Some","Fields":["178.63.19.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IceMateria"]},"Identity":{"Case":"Some","Fields":["p61ZlGiWi/Nhi3aTDhSoe0gXODc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FC8oiJfPNc2Zjx2YQe7NsSp6azF5zne8IJD++Efp3xM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:20"]},"IP":{"Case":"Some","Fields":["194.76.227.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dominos"]},"Identity":{"Case":"Some","Fields":["p6oyyhDhvtoel2pln9lsqZwthv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMWKYvSylrwvqEa5+VbyoRXydQoLQ9h1TljD/v+rmeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:46"]},"IP":{"Case":"Some","Fields":["5.254.118.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andrewhack"]},"Identity":{"Case":"Some","Fields":["p6h+wBAUyi+X/0lkXcMa0drr/SM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EE9Z1GXC+GA4i4TAFWm9vy0dhSO4YAWcQx2mbePJpSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:47"]},"IP":{"Case":"Some","Fields":["195.34.103.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Beppo"]},"Identity":{"Case":"Some","Fields":["p5n99f8T0fZV0VOmuoaezUP11ws"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmoehTFrlizZMN/ixZCg5RqMFzQ629WY7WeG8AFEFKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:45"]},"IP":{"Case":"Some","Fields":["79.209.169.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HefeweizeIstGut"]},"Identity":{"Case":"Some","Fields":["p4mkj8sng2qWUsZm+UBUVhA0RyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ZlFgQEAGe5Up81X4xyNN4If2Wm5g3VGa7fxRLtdfMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:06"]},"IP":{"Case":"Some","Fields":["80.255.0.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.4-rc"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["laeviculus"]},"Identity":{"Case":"Some","Fields":["p4Ny7GnWCHerNPQSj+NJmljdLDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yCNwUje+kogLbIozXyPoBjp3i6CmYl3EShDLSV+tWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:30"]},"IP":{"Case":"Some","Fields":["51.15.77.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZwiebelRouter01"]},"Identity":{"Case":"Some","Fields":["p4Kk+srTzqvetRq+Q4W78CP3Od8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3W2bdV4ujDnuZBvf3ochxntOPxt4orJQgNRIxPfbkuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:21"]},"IP":{"Case":"Some","Fields":["212.227.148.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:190::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doboz"]},"Identity":{"Case":"Some","Fields":["p38WprMTHq211R3i+NCRT3Aq01c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJo83umIjtAmmID1+yMqC82ql69hK14lMhwYX5w69ps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:39"]},"IP":{"Case":"Some","Fields":["83.255.155.80"]},"OnionRouterPort":{"Case":"Some","Fields":[49030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jugendhackerassange"]},"Identity":{"Case":"Some","Fields":["p2uDmCk94Y73ZsediY2rHelYlJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RUngmDetga/yHblRjqse4fw4ApEYLze8DvxqL9VC8qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:09"]},"IP":{"Case":"Some","Fields":["89.58.0.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:fab::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["p1lt3cVw75nYAH9stj4+4mw/rOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1hAu2pukk0fwEZuDF5Wr4NmzR9hK4bP31NgBCB8iRGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:24"]},"IP":{"Case":"Some","Fields":["194.32.107.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:172]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["p1K4OsiHRXXz6qrnrOzQGp5ebtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kQub62EI3k+DodAHy7zMig49uIqvNfIGpijhtyw1gVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:51"]},"IP":{"Case":"Some","Fields":["23.128.248.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["p1HYvuIiVkt7plf3S2ZYg2/xruo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAocgKTyJUmVcczucRmFK81u1TlQ9la6PaepZ28ntlw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:53"]},"IP":{"Case":"Some","Fields":["185.220.101.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raptoractual3"]},"Identity":{"Case":"Some","Fields":["p07Otd68R0EmpdH+7kHML6o2WpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w+qUjTHFHrkZGzbda5QYB77r8nDoqs5o+AtFhLqnCUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:41"]},"IP":{"Case":"Some","Fields":["192.184.162.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AktionNordost"]},"Identity":{"Case":"Some","Fields":["pz5PnaCSgBenHLH/3yBGNq+aGI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EXC+Vmc1OoD8W/8+dnqpoNX1X2z/+jLQxtrH1PSUMsE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:13"]},"IP":{"Case":"Some","Fields":["95.217.121.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:3656::706]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv125"]},"Identity":{"Case":"Some","Fields":["pzeKIVSDxq2ZaK1QXaFFT34pR5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwD2AHwAfCl5A9TTHtSrtvzjSfZNoUzICHse6c8U6VY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["192.42.116.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5525]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei12"]},"Identity":{"Case":"Some","Fields":["pzF2c7kjtZEGYgT/0pmrLEFQtr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZHPeYg1p0Ox934KdKj8M/m55P+EulA9tIv4voeTGWqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:25"]},"IP":{"Case":"Some","Fields":["37.120.184.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:512:8475:54ff:fefe:912d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maibrunn"]},"Identity":{"Case":"Some","Fields":["pyzXF72gN0JTfo5DGYC8GG3lZ3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmjaobSsigKpr9Sm3Zhq/l0X6wuxbyYVO/JccXkGnu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:02"]},"IP":{"Case":"Some","Fields":["179.43.188.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0d9d82df278e4"]},"Identity":{"Case":"Some","Fields":["pywROmRsMmqbBuwGF1EFYjpOR6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uggAN0RQptJR6gARpIVqPNr05AcRDs6UToYNtEX+TA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:20"]},"IP":{"Case":"Some","Fields":["95.216.184.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:22bd::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DockerTorRelay"]},"Identity":{"Case":"Some","Fields":["pyW0Ibn0z+5obgVrgaay+Z/1Opg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wAfpHbB2WZRTjXBU3cb3QVtqw8RvFYOKfad0D7Ji4U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:42"]},"IP":{"Case":"Some","Fields":["158.101.173.50"]},"OnionRouterPort":{"Case":"Some","Fields":[1234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedEllsberg"]},"Identity":{"Case":"Some","Fields":["pv/RAbluhtlbTM8duZ0jG/fNFss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mOv01Jd24+z30vCh/DfmslN/F8op1dup1JcP2G7gRLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:56"]},"IP":{"Case":"Some","Fields":["23.154.177.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenVonMecklenburg"]},"Identity":{"Case":"Some","Fields":["pvDpaeRhkcq8ZXfUCWTu/0n2RuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dh/2J317yxIBlTFWL34hpAGaYupApp9lzVpt17Kvxrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:10"]},"IP":{"Case":"Some","Fields":["31.19.10.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8109:8900:21a8:42b0:34ff:fe36:d87]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dewebit"]},"Identity":{"Case":"Some","Fields":["puOjxs6WLpF6EuWGrnUIBYmcEXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRtFkkPDFqgm2CyOqyZpCCa/1myPM5Oelv3iroH/Jes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:57"]},"IP":{"Case":"Some","Fields":["194.59.46.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["severepactrend"]},"Identity":{"Case":"Some","Fields":["pt7HW3qMSFcvUjzp+yWgceBqLjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BOyEDJsqMj1BF+Bx2Z7dDLRwnMgTwwWYcW1oAQVk8g0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:45"]},"IP":{"Case":"Some","Fields":["142.132.151.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:27e5::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["formia"]},"Identity":{"Case":"Some","Fields":["psjzWvE8ZH3KhCDzhAPf3diFVv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1thgzgow6GYX+1EsLzOLRJ2d6GeveTPjtJvevM8TOXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:46"]},"IP":{"Case":"Some","Fields":["95.216.184.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:288e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["OwlRelay"]},"Identity":{"Case":"Some","Fields":["psO2TsjuINd5h+vF6JTKbM5LUpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BX2cvE9eQAnKG+e4B8RrwNquqUSg2dzuqw13eXg8L9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:22"]},"IP":{"Case":"Some","Fields":["45.132.245.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:48:57a:a875:45ff:feb5:8541]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATLANTIS"]},"Identity":{"Case":"Some","Fields":["prvTNpWk48RUW6NwYFpNzYfZi+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8o1dqKToCWO2+/FcUcp7l4CK37uEJbU1fa8QKJdMrVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:17"]},"IP":{"Case":"Some","Fields":["188.68.224.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HatOfTin"]},"Identity":{"Case":"Some","Fields":["prkwKG7ZtyM/lhsdsOD1ye2Un3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WIpjJZzPoKIChe2GvgBORYzvUQZ1gRvkC5Id+pp1HqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:06"]},"IP":{"Case":"Some","Fields":["185.119.119.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:14:63::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["apx2"]},"Identity":{"Case":"Some","Fields":["prBSHEwfuR+2Y5iq1SOtdz6C534"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAiKjEIgWqW886hiBs2Sx/gs19C+KHfBhQhN3TaTp6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:54"]},"IP":{"Case":"Some","Fields":["185.107.47.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk6"]},"Identity":{"Case":"Some","Fields":["pqqUtAB6DikZstqOzyz6PKF2GhM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["juE+age3/aMrbKDA71HSgAN7Wqs/9zYwdvmtnTgLUxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:36"]},"IP":{"Case":"Some","Fields":["62.141.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:32:4104:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thor"]},"Identity":{"Case":"Some","Fields":["pqRaB8OvTzf2ra+1vO5+QtRKOJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b29eUyzqQDDZyQGm/sjvbqIv54V3LQ8RQqHMbIWs1TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:54"]},"IP":{"Case":"Some","Fields":["83.137.158.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft8"]},"Identity":{"Case":"Some","Fields":["pqNhwMwAMQOpQ+MwSyEgNfWjj9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E+B7I6lNcNFJOtgRhdJYaZQnkYe4xrrgRFCSHyryxSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:56"]},"IP":{"Case":"Some","Fields":["157.90.246.152"]},"OnionRouterPort":{"Case":"Some","Fields":[445]},"DirectoryPort":{"Case":"Some","Fields":[82]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:5fdf::1]:445"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["H3rmi"]},"Identity":{"Case":"Some","Fields":["ppDGqoECwCfSl680Ab/haRjM96Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zIKwqJ1pXmO8VpIbYVPuMp6F4sPeErWc52IKqHGxkKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:54:50"]},"IP":{"Case":"Some","Fields":["91.45.176.132"]},"OnionRouterPort":{"Case":"Some","Fields":[23]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange033de"]},"Identity":{"Case":"Some","Fields":["ppAj9d7KUxG0CO1eoe6GEKHuimE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1azyp9HnDue/SUt1W9u9BTjNoI4WlN84hVnwbaCDyEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:51"]},"IP":{"Case":"Some","Fields":["80.92.204.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["olabobamanmu"]},"Identity":{"Case":"Some","Fields":["poCX/pfTBlsab0znGH11P4uFE/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["80Nwzjzk++/jMySL3srr0dC4hSiW5cgLo8+TbSNNETM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:35"]},"IP":{"Case":"Some","Fields":["51.15.40.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:25d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["pn4ELTldVOC/ARKjvJCSQDa+KWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ow2DmSn9p0C+OFk6mFaMMQeuvOGpg0fWUhr7LlZJg+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:46"]},"IP":{"Case":"Some","Fields":["185.220.101.198"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::198]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu2"]},"Identity":{"Case":"Some","Fields":["pm5Xgv5gl9KCQERGZ3b+kSrv2Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZJFXGl5Rngwb5zwQZQtrexrvCbBOkkh4zwNtgD3mjLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:02"]},"IP":{"Case":"Some","Fields":["209.141.54.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:274::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4punk7r1"]},"Identity":{"Case":"Some","Fields":["plnqOnpTqnOgzM2gqb0t2VL/CLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Sb1MPaFMHKn5kjeVif4QQUgvj2qoxgdvdnaYbi/NDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:35"]},"IP":{"Case":"Some","Fields":["185.207.107.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnotherGate"]},"Identity":{"Case":"Some","Fields":["plkdYPFBHAKt+arIxB9JCA2zNus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o1c4AP2GKJYDuJYdhz1S8FyCUZZBFPwoNDasKgOuOuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:14"]},"IP":{"Case":"Some","Fields":["51.91.58.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::4902]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra65"]},"Identity":{"Case":"Some","Fields":["pi2Pd3Kmx23Qf0MYEM5oaC3N0tw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/m/FQKTB4FphxhY7drgarOeIeDCvVhZchMGTfMnGwOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:08"]},"IP":{"Case":"Some","Fields":["104.244.76.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elias"]},"Identity":{"Case":"Some","Fields":["phtWpQ0T3CnbsjxqAz+j8MV0IM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iniqyiVY+5OWexbfzSPYKUU2LgbB6pxHxo/3hw7SVO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:00"]},"IP":{"Case":"Some","Fields":["144.217.80.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["comasmr"]},"Identity":{"Case":"Some","Fields":["phnlq/CrBTOSEYeKKJz5OSIzwkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RwOnbcGI83oUg2TOsEqpSIpokI5nUv937GpFuWy4OQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:00"]},"IP":{"Case":"Some","Fields":["66.85.157.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Montreal"]},"Identity":{"Case":"Some","Fields":["phiy6VCTomg6ZmNje36tDVgK6uU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xqFNz7SiUxP4og/ooVgQX3KQmTS07CKsLGh5b6A+s7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:34"]},"IP":{"Case":"Some","Fields":["104.152.211.147"]},"OnionRouterPort":{"Case":"Some","Fields":[4128]},"DirectoryPort":{"Case":"Some","Fields":[41289]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:1c6::1]:4128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boing"]},"Identity":{"Case":"Some","Fields":["phJOl4fydRTPiNAVuJXVaPsUmXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntgAWI+q7XYNr3onKV+C+SACC9k2KHmitaqnT3wYnnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:17"]},"IP":{"Case":"Some","Fields":["13.58.202.28"]},"OnionRouterPort":{"Case":"Some","Fields":[25555]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["phGvJszRDbQ0InXihL++qBOEIWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tYjtJGrvIfLJOWeizJKX04pNWShhzE9O2GPYt8GKI7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:46"]},"IP":{"Case":"Some","Fields":["176.129.156.18"]},"OnionRouterPort":{"Case":"Some","Fields":[10221]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adlon"]},"Identity":{"Case":"Some","Fields":["pgr6b/su645KTFMfump4r1hqrLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g5MbVs0M5SD58DIS89mBIDgIJRl3ue5hVGWjCcDGug0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:25"]},"IP":{"Case":"Some","Fields":["185.73.240.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4740:10f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk2"]},"Identity":{"Case":"Some","Fields":["pgaX/zg+7uLohQXdTjBcB78yaxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a4+1cBSdywqrK7ZSVvAqH1eaBCHQkr7ADrs3b3ksPtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:02"]},"IP":{"Case":"Some","Fields":["80.147.33.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt31142"]},"Identity":{"Case":"Some","Fields":["pgVlOBZsXrUOEnTK0glN/n4sGno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KnYFEyIXr9IHy6JDatiw4Kn/duBOCuBsLPu0XPBc9i4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:32"]},"IP":{"Case":"Some","Fields":["185.245.60.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9rain"]},"Identity":{"Case":"Some","Fields":["pgQIbq6Dh3T4CYEZJaIj3P27HRc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XStLTsWfuOug9na/1Dgz71So6LcYkM7b3WmCeZhIPFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:26"]},"IP":{"Case":"Some","Fields":["5.9.56.12"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse09"]},"Identity":{"Case":"Some","Fields":["pf9gzqyBVMhRrv2tQLQhz8lyl6Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EO/Fgioj1hwjm15LVqB45nhHsavIrudVW71dFnZZXUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:19"]},"IP":{"Case":"Some","Fields":["46.167.244.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["peQvGjr6lIp/L9sZVKTPbGSJ1Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUdtnErbaF35GH8OdiyvDjg2wpgE7RrGy0hiH/bbwbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.243.218.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NiceRelayGuys"]},"Identity":{"Case":"Some","Fields":["pdqR4KGhHJgWWt4PxttdZ8wod2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/xbAvu9aWT8fh6pedg6E6w5ohxpfpdACThjlOfNR00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:44"]},"IP":{"Case":"Some","Fields":["65.21.122.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:4ae2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pddPb19wT75qJag3D9u126JY9z0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kOMQWC8U5XXm4u7bkvMY+oVP6yrQ9M/KKAJ68G7yr60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:05"]},"IP":{"Case":"Some","Fields":["23.128.248.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::f477:54ff:fefd:dcf6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pdKMuHyT0xyq7crmT2+mPfQaFTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c46+bD53lNCi9OL1vglhGhjUNEmzeHLsEoz3xvm841c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:42:46"]},"IP":{"Case":"Some","Fields":["51.68.143.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5126]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["pdIvZrXr5mDUyB+BqVYCLWUMjL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a8GmhCHa48OzsOU6tVohXvLzNqo/HE4H5D25loGNkyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:44"]},"IP":{"Case":"Some","Fields":["23.128.248.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::52]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH104"]},"Identity":{"Case":"Some","Fields":["pcWtxs6bUr6GDSVy/0hWncniTGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OALuB6Mlr152W2t7cBqR6WEjSgyDlo+/k6Xbligmr9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:30"]},"IP":{"Case":"Some","Fields":["192.42.116.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["pbvCxhsfawkJcBHEzla75X3lrJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xy8yWwPYqhdzH0MWY8fxrBgqb8ulYjVIx/0JBdObG88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:44"]},"IP":{"Case":"Some","Fields":["5.45.102.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demonteal"]},"Identity":{"Case":"Some","Fields":["pbFdWQwgdEa/tvc5/KZ96MF29DE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mEomqMusb18H6Tbbl5DZE3cSgUoKxmAsTDZ+qVRewU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:15"]},"IP":{"Case":"Some","Fields":["138.59.18.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thesistersofmercy"]},"Identity":{"Case":"Some","Fields":["pZv0rtI9WhFMxWSIJtWMUUe2LR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6VEFyp2saN9tBEKyyxHQZi22H77hhpjBtytNAhrhCIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:45"]},"IP":{"Case":"Some","Fields":["37.252.191.190"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:10:190::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TARDIS42"]},"Identity":{"Case":"Some","Fields":["pZrYT5Ky5aduv+O+YtOyivm/0Sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GciOyO1BBKjcPjFAdb3HI8kvZw/0ZkTt4k5BrgJvQC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:46"]},"IP":{"Case":"Some","Fields":["217.160.255.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:28d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p20sfme"]},"Identity":{"Case":"Some","Fields":["pYxRe1Sidl3pAI4PJGypYUBkpD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RovJ2vXvmlUxAuteO7SUHn1/G9jn+w76R1mB60qfivU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:18"]},"IP":{"Case":"Some","Fields":["91.244.14.219"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torment"]},"Identity":{"Case":"Some","Fields":["pYS6bdOPc9ugcwAYz3imXuH31JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ExSU5fnMGybLLsbk/mDldhAOLciSStcuTkdlsMYG2vc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:39"]},"IP":{"Case":"Some","Fields":["185.182.194.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FarleyHD"]},"Identity":{"Case":"Some","Fields":["pXhZTsby2elnmcVI38CJ2rPC+50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sqiSKHPeIMhl5H1knmAR+BOvcx0wf9C+ojg01JHBs84"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:51"]},"IP":{"Case":"Some","Fields":["102.130.119.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt35265"]},"Identity":{"Case":"Some","Fields":["pXb0GAbi0cOE1h/60Y5d0nj3xBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DVp5Z4R5sI+L7gnrZZ5oUlFcsFnoVyv4dVoCpiyQ/HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:51:36"]},"IP":{"Case":"Some","Fields":["185.245.60.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r4"]},"Identity":{"Case":"Some","Fields":["pWs4RdKQeRyya86J/kzgjPfciiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0A5ymrwlDT1lhN1g/i3w749Tr663PcpYQ2Hl0xaGB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:02"]},"IP":{"Case":"Some","Fields":["216.250.119.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["pWoBIKIVV4MgANXGj8194I6Co7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l1t9fzMBjuhPzzwzV3CruetGlJHDqf9n9C6fgNtT/Ug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:26"]},"IP":{"Case":"Some","Fields":["37.191.201.85"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe01:344d]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit2"]},"Identity":{"Case":"Some","Fields":["pWUooMAq0nk7a5zF498gHQLsIVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1SXAKL6c90YjnRwODH/++wCg8/CdSItrEb3bk+SMqkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:39"]},"IP":{"Case":"Some","Fields":["173.208.163.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3:223:8bff:fe8a:8e0a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lc59relay"]},"Identity":{"Case":"Some","Fields":["pWIFHdEz+KoKy1y4t8oC2+qUBbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wl18Tg/WKlkfI48sczdIaHl29lAQFsm5XeFJqHoKH7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:08"]},"IP":{"Case":"Some","Fields":["97.119.224.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra77"]},"Identity":{"Case":"Some","Fields":["pUv1DFdK7v4O4+fTsrDx+qaVQUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qpvUPPK/nflB1JUwrGtg/CKq2ilfbq31x8P90f8xGLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:25"]},"IP":{"Case":"Some","Fields":["37.228.129.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["pUnlf8KgYPogBRU35nOLPtW5hGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUGOV+crJIvucfhsG2XxjNfAl3QAirVm7bw93N75oCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["45.154.98.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waglula"]},"Identity":{"Case":"Some","Fields":["pUfRceLk1LVwFB9MnO8bKnOJ6tA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZuSt7fP16nKdADP2LtfpSUkJjMjLNzTlSHlfOiERSrU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:39"]},"IP":{"Case":"Some","Fields":["92.243.20.101"]},"OnionRouterPort":{"Case":"Some","Fields":[403]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:45:216:3eff:feb7:79bc]:403"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bkjk"]},"Identity":{"Case":"Some","Fields":["pUJN7t1akTFG5xd6ee5I+vfLhho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7sNH7zt3+oX4ks+1lfDCyVOdAP9onxTkGcEBp1Rt014"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:50"]},"IP":{"Case":"Some","Fields":["23.82.136.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alittlehelper"]},"Identity":{"Case":"Some","Fields":["pUJD9jbk/LL/WjIRLxJvvznQvWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xkz1GaWkTGsSi71LI1diMFXwq/M9bOHVETCC01A8o3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:53"]},"IP":{"Case":"Some","Fields":["79.205.254.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["pTclpgyaUFoGZSX0M/ivQvrMRP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KqQMTVWcvl9D00fqnKJUnJrhhtnwwR4w4wC3iElkyyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:07"]},"IP":{"Case":"Some","Fields":["185.177.206.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::131]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA02"]},"Identity":{"Case":"Some","Fields":["pTVpyzM+mJWkSVRwDMB9ITWAFRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XRv+od6SGItCwSeyEY9XPKVsCDWiTP1pVs8NgQ+7UhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:40"]},"IP":{"Case":"Some","Fields":["2.56.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9006]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weirdoo"]},"Identity":{"Case":"Some","Fields":["pQ8CCdDGhcjnfJJEuN744wzM2fU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/BBjv3uLe0tfHR5YMtFqLzRqdy5KoqZwZLUbU7ow7RA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:43"]},"IP":{"Case":"Some","Fields":["80.71.138.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yayarea"]},"Identity":{"Case":"Some","Fields":["pQz6ByWOPOp7BvybYkiiV1ZSh/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9r5mgdWV3OH8IEQlxKMJ36mYsyV/nVVmQDrWe/aS7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:35"]},"IP":{"Case":"Some","Fields":["64.4.175.33"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f598:f001::33]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOneRelay"]},"Identity":{"Case":"Some","Fields":["pQvFjDLTcWjAQLUL6Xf3903YFIA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UHpVhNPbBE5UrKqorZmzVrqal3wInspv38ISbLZXzB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:10"]},"IP":{"Case":"Some","Fields":["152.70.175.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0168"]},"Identity":{"Case":"Some","Fields":["pP6aH2p+tqACofPfoxOkM5DiLG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiFIil6iu7kxy7J8GxJ65jbNBxGcf73zgo9fxkN4I1Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:37"]},"IP":{"Case":"Some","Fields":["185.220.101.168"]},"OnionRouterPort":{"Case":"Some","Fields":[10168]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::168]:10168"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["pPQq5l8RY0xCo/OVLnGfRwkb028"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ev94QSA5qgF4PtaAQ1GR24sXqHh0H6vpxbeFEGeGjDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:55"]},"IP":{"Case":"Some","Fields":["188.68.32.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:42:896:37ff:fe75:d532]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrocks"]},"Identity":{"Case":"Some","Fields":["pPEdaT+rbpSbK3wYFTw/eYmJYAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2gHSV09wRgUKrG37jpc3IOzAnKeOrVBpjYrfUv/0uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:36"]},"IP":{"Case":"Some","Fields":["194.55.13.49"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[587]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nashorn"]},"Identity":{"Case":"Some","Fields":["pPD1Fsg94RspA4S5tKTJKKeO06U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/8TSpuoP1hu0F1BZ+R9JtQsgr90c9mP2jrmQjzakGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:18"]},"IP":{"Case":"Some","Fields":["109.70.100.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::67]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torototela"]},"Identity":{"Case":"Some","Fields":["pOdEENg3Be7/JLwmXeKy/zm9pW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdSEhoWi49AqgYGo0JObKwA1+4NXLG3k+PGq0y8dWU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:22"]},"IP":{"Case":"Some","Fields":["79.21.93.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit7"]},"Identity":{"Case":"Some","Fields":["pOZfKUle0REaaaEZM+jspwsBZ5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlCMehbC8Aycc1/2C5PG5U0CGbfz4kLnbYJrbWinoTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:31"]},"IP":{"Case":"Some","Fields":["185.129.61.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer06"]},"Identity":{"Case":"Some","Fields":["pOR/CLjVZCjfdrF+3Wc4vLw/Xvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rmEev+VCQYTsctaLB0DGF472nUQMC+v2UwAqqnlvGck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:15"]},"IP":{"Case":"Some","Fields":["82.165.185.89"]},"OnionRouterPort":{"Case":"Some","Fields":[4492]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse12"]},"Identity":{"Case":"Some","Fields":["pN4/wazsN2f1xASbzvVzF+ewWDw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dfAEZHz+jRPKlykdQJQXs47KTcUNlXbhBEgmdypFCXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:56"]},"IP":{"Case":"Some","Fields":["82.220.38.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kiwirelay"]},"Identity":{"Case":"Some","Fields":["pMg8K+tPGzHUDoDVUkxmoRfXfFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W9lF/h4kvDz5d80V3Gd3GhxQScGrcooCbW8LwFbKQxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:41"]},"IP":{"Case":"Some","Fields":["51.81.209.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::a02]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lickitung"]},"Identity":{"Case":"Some","Fields":["pLLypR9z1AhTD6bIr2On+v/aoPw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MUx1gaE1vvfHya89BM3/aan9ewYpwdPBKUWvRKUQ/9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:25"]},"IP":{"Case":"Some","Fields":["102.130.113.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["pKeeK4KUqiVytGxcdy4Un4T692M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YWty7eeGHWwNSFHG+apfmIBogxzVKDjgtB23Nc0wTj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:09"]},"IP":{"Case":"Some","Fields":["104.152.209.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal4"]},"Identity":{"Case":"Some","Fields":["pKYUF32JyZMmw5VT97f6WQm6Sx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QA8ATFRHXrqPQoF5QChQqo3BWH6nd7MhUXx1tMF8toA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:29"]},"IP":{"Case":"Some","Fields":["141.147.4.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8003:db00::705]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex44"]},"Identity":{"Case":"Some","Fields":["pKOT/vSGQJYarOktBBk0tVNIzvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZxmBKYVHEGVsDWjV6yHU+l/QoWRFcLZnVBmhbOuSy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:39"]},"IP":{"Case":"Some","Fields":["199.249.230.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e643]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plan9rijk"]},"Identity":{"Case":"Some","Fields":["pKJe2riA/0IA9MITFvO54HLJ9GY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vf6hv7Rdoju0e68HCmeZj2TyYLG37SXrjeRYjKAmpsc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:19"]},"IP":{"Case":"Some","Fields":["194.126.175.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["pJ+orx4U4yOa1+MQvvb+KHXM+wU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMEmumlvY+QoWuS8yt4fufDoNNoP0Y0WGWu+8OItSlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["173.82.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hp"]},"Identity":{"Case":"Some","Fields":["pJFRCDKXqWbFGIBSt7iuvSDzHS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTBlMzWegRKtfpuhkWu//Z1uffWxqbZhxUk7eOkYdgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:25"]},"IP":{"Case":"Some","Fields":["104.244.74.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f625:20:20:0:2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trurangers2"]},"Identity":{"Case":"Some","Fields":["pInTcHClCB2BTB8RITnu8N3AOkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7+7abmo6cPBVSiEfXfxz88FWh94au8MvPtBYOJYcdmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:47:09"]},"IP":{"Case":"Some","Fields":["185.175.158.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipenburg"]},"Identity":{"Case":"Some","Fields":["pIDYyfmxES5Hwk4z2sBBnK8agho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bddW8pkG5NIiiX2PJ3US7UbABFF8nh3W1l+FA4uOkI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:05"]},"IP":{"Case":"Some","Fields":["77.174.164.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:a46c:5d12:1:7e10:c9ff:feb9:ebc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xcc"]},"Identity":{"Case":"Some","Fields":["pHyODWTnM+3Iy0QJveB9s8DtKKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HxiYU2qkmdKqHI2/lFMbCk2iEdoqKgO7mka1fj8i+VI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:51:03"]},"IP":{"Case":"Some","Fields":["185.183.159.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:3d:1827:b1ff:feec:f6b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["testtesttest"]},"Identity":{"Case":"Some","Fields":["pHRGr/eIts6Qo5UJwjpbTjpzIMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jUn6Rk5iftqT3eGoKNQGLgVBJwQja6afszd9TuAhYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:09"]},"IP":{"Case":"Some","Fields":["46.41.148.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman1"]},"Identity":{"Case":"Some","Fields":["pFfkL/B+wXr4wpijQKh0NKgC7ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HzmTl6zq0X4HNJtBlPDiXTx2zHgUZftYY2R0sQtfi0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:40"]},"IP":{"Case":"Some","Fields":["85.204.116.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:204:c66e:a519:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["pFZDP1QTw0nNi82VaxCRLqbE4F4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hS+nhBUZa9oIYeV9YL7PtLnaUE69Pe/14cm7i0D2h2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:06"]},"IP":{"Case":"Some","Fields":["74.208.33.181"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vrienden"]},"Identity":{"Case":"Some","Fields":["pENucLjX58VILvzFXVPTnsaukF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJcAolnNyN7WiGJ32Av8baNuIsJYrXZnzwZFr15htf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:27"]},"IP":{"Case":"Some","Fields":["51.81.56.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thepastatorrelay"]},"Identity":{"Case":"Some","Fields":["pBjZGVZR2iSw9R4o5Ukj2uK5wwQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XKfJkaBQ5c2CzgaJ/HNb3pvD4inEyV1aUKoff80gcvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:14"]},"IP":{"Case":"Some","Fields":["164.90.148.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mcnulty"]},"Identity":{"Case":"Some","Fields":["pADPg22jUa3a2bo1DBq6NQJkpOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdVCftwHALxURGpRq01JaidyDNuTe5cRWV3Yc5+vmII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:57:37"]},"IP":{"Case":"Some","Fields":["51.158.165.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:2202::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oranet1"]},"Identity":{"Case":"Some","Fields":["o/UeFg/3jpw8TRJ7XLQ2gIPQ/pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kq72wnN0sKPWhrkOXryrcEly1fgdPc1lpx6HB8XXqzg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:50"]},"IP":{"Case":"Some","Fields":["132.226.217.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crabshack"]},"Identity":{"Case":"Some","Fields":["o91As0inXzlMja8RrKEG7PcxaOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["grNPBvbREShVnJksHxHk4RyA8G9RJ1w58a3eo/XhrZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:25"]},"IP":{"Case":"Some","Fields":["83.171.236.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2mproc"]},"Identity":{"Case":"Some","Fields":["o8L4gcO2dNPUD9KSC7HeSVuOw+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/DsPomlpY3hTaTrUwlHRKHqloNQlGG72dY/5xGP1/vM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:21"]},"IP":{"Case":"Some","Fields":["173.48.193.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["o73Orhjb/1k8w9ovIlVQfax2jzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hgnq64PSuIWmXzqtuy+PGlSwRyT6V64VKklDwO7L97c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:23"]},"IP":{"Case":"Some","Fields":["45.55.141.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::14:8001]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["o7USKkU35NDw2FKXry6zEV96FII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5h5XC9YMoV3HnUNKdIWwkbHECI200bWrywXhTRP1kJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:13"]},"IP":{"Case":"Some","Fields":["151.115.48.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isthisthereallife"]},"Identity":{"Case":"Some","Fields":["o6+97jAjjkSJnJ+LdmbRKwnI7jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RAQ1RdzKs9pQsN28JkmV5Bghud8oQRMaWsv1LQ/Yvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:47"]},"IP":{"Case":"Some","Fields":["81.6.46.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:169:4918::666]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["o5gICmpy+CjcRHbeReKMWJLKEHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXYUAepDkpeQh2IQrHLySOqDoVJot47C9i5HTYIJuXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:35"]},"IP":{"Case":"Some","Fields":["185.220.101.49"]},"OnionRouterPort":{"Case":"Some","Fields":[10049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::49]:10049"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sighif1relay1"]},"Identity":{"Case":"Some","Fields":["o5RZHogOs2EOCdJAq2OYhJGET7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ttwqsSh5PCft6O4x0qjydpv51lvGQbAPhSwzOwfM3Lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:21"]},"IP":{"Case":"Some","Fields":["46.101.165.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::dd:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex59"]},"Identity":{"Case":"Some","Fields":["o4nFI747KepZx1rFV79c+2lYbcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aT2fSk0qWpONjSs/nMeQzjvRwpqCVdvaJIIpM9cVu0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:36"]},"IP":{"Case":"Some","Fields":["199.249.230.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::148]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayLama"]},"Identity":{"Case":"Some","Fields":["o4eMPmreJ3Nb+kFXvohNgpL/diQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQhwhv+LC/8O0SONuzmixYWAVzGly3YaQUzbKlpdID4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:07"]},"IP":{"Case":"Some","Fields":["51.195.121.102"]},"OnionRouterPort":{"Case":"Some","Fields":[6672]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fibonacci"]},"Identity":{"Case":"Some","Fields":["o4MXzvBEDiVPtoSBOVcggmGqsPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZZeU5HNJIqGXyhqQ6yJR9ow9cfSKaTB2QHZReSoHa/A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:49"]},"IP":{"Case":"Some","Fields":["94.134.50.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9e8:1537:df00:e65f:1ff:fe25:1a75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["junker666"]},"Identity":{"Case":"Some","Fields":["o3fmMlgK5KIORH5doVOq7DRtogo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rogibi+TnAjIfSvNZkW1GtCwlYzkcuNkoo4ushuD8L4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:36"]},"IP":{"Case":"Some","Fields":["45.15.16.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nss"]},"Identity":{"Case":"Some","Fields":["o3IfxUnNX1Iv7gSaivGL80UGiHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R7DNDjvsjCAk9MEaGiplyiT5bcyftzZwlIO3naUz0cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:26"]},"IP":{"Case":"Some","Fields":["64.251.255.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorion"]},"Identity":{"Case":"Some","Fields":["o20TA2dQ5HfgxWKKW+T+y2MobYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lve1cfZIeRgspX0yfj5XIuLDBE6R8iPTGvRIiHaq9O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:36"]},"IP":{"Case":"Some","Fields":["45.91.101.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GenericRelay"]},"Identity":{"Case":"Some","Fields":["oxaNCrU7hwkWD3clc5FG3kZoKDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+z/hekE+9zZdNTaKKIBmTmwUneYzKW0tugZIlahGB3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:31"]},"IP":{"Case":"Some","Fields":["185.207.105.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:714:8411:92ff:fe73:f0fc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deviant"]},"Identity":{"Case":"Some","Fields":["ovuHUjUNDcAxKVZuGX39fEsyBao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q/rIt8BV1IinqKUHknP7S5gwH0g1qpBot/57VxFlpdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:55"]},"IP":{"Case":"Some","Fields":["87.173.24.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor99connect"]},"Identity":{"Case":"Some","Fields":["ovXfFjEyz4/8H2NDE10zl8qFz4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0vKPtuSdxWqawcmFPJPhRj6k/D/mpQS8u4tcp4vjE/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:05"]},"IP":{"Case":"Some","Fields":["87.54.90.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy62"]},"Identity":{"Case":"Some","Fields":["oua7XDkc1Gs4xVtDKcNTBFQHcfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YI4h3MHJSBZZal4dXu9pcs5X/uqxHOvBqiYW3t3E/QU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:04"]},"IP":{"Case":"Some","Fields":["212.83.43.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["ouLHjhngLoAyMoZuhKBFUrdwK9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["62wqrD/P9qGmnxyF38PMZi5AaO+5afn+wXg5EAn8UkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:24"]},"IP":{"Case":"Some","Fields":["51.158.122.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip3a"]},"Identity":{"Case":"Some","Fields":["ot0O8xgT6bf220NVBKQG4a0rdqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2/6hCC2Bk18dy1Opgn5IRXJLHZcTgt1x4yqVqzOBdlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:11"]},"IP":{"Case":"Some","Fields":["185.220.102.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::250]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RSFPressFreedom"]},"Identity":{"Case":"Some","Fields":["otspP/xadqcYhjvxrtvI37HLEJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DBCTzbMP0HTF/dQlBr1x/OINn4gPEkurk4M0QaKQEBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:05"]},"IP":{"Case":"Some","Fields":["185.220.102.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RenderLab"]},"Identity":{"Case":"Some","Fields":["os4dN0QUcZiiMSc6+SDTjmbnoM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DK2o8cn0Ecfd7792SEYURm2bLvu1arTaEW+stmLI7p4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:31"]},"IP":{"Case":"Some","Fields":["68.148.242.19"]},"OnionRouterPort":{"Case":"Some","Fields":[44444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa0"]},"Identity":{"Case":"Some","Fields":["os0y2dBmjbdkrWjHRc4paTyoUbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ky0fyT8CCGIVBiEaxHeVblzrFv/SNHwR07fQivkwrm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:54"]},"IP":{"Case":"Some","Fields":["95.217.112.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pogRelay"]},"Identity":{"Case":"Some","Fields":["osxt54F2q1MdLn6oeukD2hXzdBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DnaE1+TRQQeKe/zNuuZ1qCjIzc691pU145xlGaFrq5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:27"]},"IP":{"Case":"Some","Fields":["136.49.10.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tournament"]},"Identity":{"Case":"Some","Fields":["oshdtsPWTXF40khI/YoOWTR/Lm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2qBhu0+vBAtWRPJLH17ApYFqjU/vdb++fqDc0iOfQFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:45:01"]},"IP":{"Case":"Some","Fields":["74.123.98.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex94"]},"Identity":{"Case":"Some","Fields":["osPLFSDHW+2yEkT9HfHDccJulZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIWiqYE4/l1OXdw1ds9JnN0TrL3bG/JbF5OFeh52j/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:01"]},"IP":{"Case":"Some","Fields":["199.249.230.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::183]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nordtor"]},"Identity":{"Case":"Some","Fields":["or/afrSscRM25w8F1BQL1V0CgQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tnu/ZtFYNLcKMuFcSVX4kb+SbpptwCezEJG6c99Lmv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:00"]},"IP":{"Case":"Some","Fields":["89.58.13.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:60:e0c:447f:e3ff:fe70:dcae]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversdeFrissons2"]},"Identity":{"Case":"Some","Fields":["orAwIlQXQSBl1Z403W8QRgutKng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jq+0DhfT/hWys/vGNIf4qoUeLW0yvEKKc2bNl9F+fCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:13"]},"IP":{"Case":"Some","Fields":["190.103.179.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RoteServerPaul"]},"Identity":{"Case":"Some","Fields":["op0qeKipVIGeIgzvvrzpXS/PpU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vS47OUbeuocxIQDYkHJDCUdrWzNI61H9hRaKbsM2/Cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:55"]},"IP":{"Case":"Some","Fields":["87.128.3.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IOT"]},"Identity":{"Case":"Some","Fields":["oo8M7kpanqdaOoEZL622GnSHVyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TjG5zO77FgiGu1dM+EpzKQPJBuXMfQdFUY8bkVAS6+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:12"]},"IP":{"Case":"Some","Fields":["188.40.220.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE64"]},"Identity":{"Case":"Some","Fields":["oo1sC6qe69KIcTNXxGz27wge9nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zuMarEBNgjlMZj1hyWVJDCKEHzWMy1K7hlHQD/TQCW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:28"]},"IP":{"Case":"Some","Fields":["37.221.66.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:105]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamuelFireman"]},"Identity":{"Case":"Some","Fields":["ootQEABAAJ1tla28rZbmzitsGCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3siekV4CipBrdIhIhTJAKcsitibUJnPLAdct4eaiUL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:08"]},"IP":{"Case":"Some","Fields":["176.123.5.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sabaroff"]},"Identity":{"Case":"Some","Fields":["ooDm5T25si4djAatVx5W00KPZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OXeY8hP0qgNCNB2SoWdcQfk3o/rZ0ujXoF7wDJQcM68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:04"]},"IP":{"Case":"Some","Fields":["50.7.179.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MPW"]},"Identity":{"Case":"Some","Fields":["onGkjNyi9igvFAXkte2eA8URt+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E54FJ4bY/WMAKvc03DE9Z/vxzhgYs0V1b5QMc7QThzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:26"]},"IP":{"Case":"Some","Fields":["193.200.241.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3007:4389::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM13"]},"Identity":{"Case":"Some","Fields":["omwifMll26v4ZQjhhoyQdJiqPRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n7inGA9x7SJIpDYK/kd8QZ1ESxRizGxhRShG3R2Az6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:26"]},"IP":{"Case":"Some","Fields":["185.239.222.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idoediteverything"]},"Identity":{"Case":"Some","Fields":["omkapcyK3kRNh8orMFUu+yPPu/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtHUhHDGa5kpFtUvGt82CELg6l/00jfcxPtWarbGWSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:22"]},"IP":{"Case":"Some","Fields":["193.200.17.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:8::96c2:69f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LawyersGunsAndMoney"]},"Identity":{"Case":"Some","Fields":["ol9r3m5eRVVeL8zE9QRgplVE1h8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XZLRavaO5PuKw4cSEpWMHVhCDIggz4VynbIO++sVc94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:48"]},"IP":{"Case":"Some","Fields":["208.94.242.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange007uk2"]},"Identity":{"Case":"Some","Fields":["oljXD4udtDrlNgnAlU1WJJ9GY0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pn+rSSolYMlu+nto1NQGJhDtv125kzF3nAYRwSIPBNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:22:51"]},"IP":{"Case":"Some","Fields":["77.68.30.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iVPN"]},"Identity":{"Case":"Some","Fields":["olNO8jOQyuB5sVhvD9+c4R9VYGI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NPY6fMXrbQnLhOS+NXfkUB1XA39JrxmuyerYdTB/4+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:53"]},"IP":{"Case":"Some","Fields":["185.220.102.6"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::6]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ok6cTpTwCOA+JKIMPtQKbZPznJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["57MgwUEkTt0V+NCBok7vcBPNYfPm7Qc+8h5+RLYdCI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:12"]},"IP":{"Case":"Some","Fields":["194.32.107.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:171]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemOCI3"]},"Identity":{"Case":"Some","Fields":["ok4c9+1hmL2Q3/ClmPLRskMnU6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bKXt44s65koSwTt0Yftn25qMczbB1yWRSE0oPHnYZuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:59"]},"IP":{"Case":"Some","Fields":["130.162.45.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["okEXnUl/yzDG6zu1mHysXALoI/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cT0VW+vs/AFDXrKqb0epyyzIUu12ViiyaoOhpppn0Q4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:23"]},"IP":{"Case":"Some","Fields":["167.86.112.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Init6TorRelay"]},"Identity":{"Case":"Some","Fields":["oiscLvIlWYf4q4qgsajiP1Aj7rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EcANdFv//GJSqu+q/ga0+nOyunbRAycfsa5lBsBFVfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:12"]},"IP":{"Case":"Some","Fields":["65.21.85.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3a:271f:3::64]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwotwo"]},"Identity":{"Case":"Some","Fields":["oiEb7AzrcMJjT0JSAMgrid/7mSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbV9FbOZDEcGxC3OjVbTo6NTDbXe+ldrvQQA1vU/sAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:36"]},"IP":{"Case":"Some","Fields":["135.148.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Galactica"]},"Identity":{"Case":"Some","Fields":["ofyOQkFnrXC2+klT2TSLzYLOt4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tGRPYDBhbWoM2VzLTmw56Kw3a/r7HOUvj6A0S5MF6eI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:23"]},"IP":{"Case":"Some","Fields":["185.217.95.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nutellabr0t03"]},"Identity":{"Case":"Some","Fields":["ofrG4EHuuuKFefom4k5RLY6QD3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+kSZ1FOCTUPTBXKqUO/BKYP9XOPATxC6PdqP8Tbw80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:13"]},"IP":{"Case":"Some","Fields":["82.223.10.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daeyang"]},"Identity":{"Case":"Some","Fields":["ofDOeWVEmHMvEAklIwvp5IAd+7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ewgA2Z70fEaFmdJoq1qS0nLQCEXyEQ+fxY2/5/k9SU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:53"]},"IP":{"Case":"Some","Fields":["172.106.112.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid2"]},"Identity":{"Case":"Some","Fields":["oewNCGGvdt9ardwXrRjdyPQoH+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AsGxwabPECEbLB11jkAjgtok4NHMoCoRaYgVKEifkxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:08"]},"IP":{"Case":"Some","Fields":["94.142.244.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lilonionboi"]},"Identity":{"Case":"Some","Fields":["ocUVQy72vy5pmmGE7XjfC5pZVlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VXUqacyZN29B8CmpysdJ9I6p/ArL5IdKTw+6YH4HQZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:28"]},"IP":{"Case":"Some","Fields":["192.183.199.139"]},"OnionRouterPort":{"Case":"Some","Fields":[59090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["obofFTC9rawTRYo0jdMbt/RVHd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOubce1JMpcndAuMfR5B91qwnl75VllaItndwS0XASw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:52"]},"IP":{"Case":"Some","Fields":["160.251.82.247"]},"OnionRouterPort":{"Case":"Some","Fields":[44300]},"DirectoryPort":{"Case":"Some","Fields":[10080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1186"]},"Identity":{"Case":"Some","Fields":["obh+BaCUvxMCWA90ZdquARUW80U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QVz+IUpCvkNeifC5bh0+tVEmOOGG3PnRrXqt/3VlXsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:29"]},"IP":{"Case":"Some","Fields":["185.220.101.186"]},"OnionRouterPort":{"Case":"Some","Fields":[11186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::186]:11186"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arnall"]},"Identity":{"Case":"Some","Fields":["obfB+D5dpDdv0uHbp6wopxqzMq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VypuYcGdVhc1FaCyWYXqTsnF2kXnRNec+KH5033ai3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:36"]},"IP":{"Case":"Some","Fields":["82.103.140.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["omue"]},"Identity":{"Case":"Some","Fields":["obLjLkJvcA033/FCKOG5V6Is8KQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NHyRNsvltVMU519uQ6GU8oyxVp81/idKRE6wv3gOGvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:09"]},"IP":{"Case":"Some","Fields":["94.134.7.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["camouflage"]},"Identity":{"Case":"Some","Fields":["obFupyxd8jNGs4FlgaMJN7Xq/JM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tw85bJvq4EgHG022GeVO9twe1KzQVDcA9ThgPy4K4Wc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:30"]},"IP":{"Case":"Some","Fields":["185.26.156.186"]},"OnionRouterPort":{"Case":"Some","Fields":[46523]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:d0c0:200:0:b9:1a:9c:8c]:46523"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oasTQSP59TTH4JtoQafsr9AoIkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LM9ZkZUHdKF2sPvE3X/RFMUf+Gn/FTxtpBSwgPapJTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:03"]},"IP":{"Case":"Some","Fields":["188.68.56.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sandstorm"]},"Identity":{"Case":"Some","Fields":["oaKSQVgZhZLD6Iyw3yPBTZ/mQyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAUOwj4llHLdK1XKCwAYRH9Pt5PUGmBZO0tPcJNj3O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:11"]},"IP":{"Case":"Some","Fields":["51.81.56.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1189"]},"Identity":{"Case":"Some","Fields":["oZgfaYCsGvl1aUBmAmfAHRHhWwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["owSaklYht+1s3jR9W8gv1e9kQAssUfZqccoeuSCFMpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:21"]},"IP":{"Case":"Some","Fields":["185.220.101.189"]},"OnionRouterPort":{"Case":"Some","Fields":[11189]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::189]:11189"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed42"]},"Identity":{"Case":"Some","Fields":["oZO82VlC3NJUGDW2PlzhcQeI5IU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yaru01cM+g01rDGG/lGcrROEt9yqpsiPfJbItR2NB8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:10"]},"IP":{"Case":"Some","Fields":["213.138.102.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41c8:51:194:feff:ff:fe00:352]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["lspooner"]},"Identity":{"Case":"Some","Fields":["oYs/1uKwWBhZ1HttjFpymSoGDgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXBh/D2H/6cS/h1ZNAYsg7b7quCs6Wkv7RKAiVj+Fko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:04"]},"IP":{"Case":"Some","Fields":["185.125.171.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mephistopheles"]},"Identity":{"Case":"Some","Fields":["oXH4MyqgN6KFXDkEiPjv39Q4quY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rwCdvosXWa8AadAdrW+TtBjIN52ttNmPwjoYN6WUWJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:32"]},"IP":{"Case":"Some","Fields":["185.163.45.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2db8:7::a6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yournicerelay"]},"Identity":{"Case":"Some","Fields":["oXAVO/Y6nS4vvKP82GcoasO4DOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qWLchuHWLAvIriGYMjnpcUXb+JWj2IugV7+afHFrpPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:18"]},"IP":{"Case":"Some","Fields":["31.165.21.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hulahula"]},"Identity":{"Case":"Some","Fields":["oWuPKqw+oOpjr8/FZlOUZpNNOD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["shiBjTLKHXUNXruHIn5A050rALPclTwWAWmq+kuKIAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:13"]},"IP":{"Case":"Some","Fields":["78.43.210.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["oWimlyNeXjfvFYTOHbP86ZOnOD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3oZGE1vdd7EEXvzFWncQ5kI6gAP/Hoa3uyjLVHGhq60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:18"]},"IP":{"Case":"Some","Fields":["146.59.234.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatnick2"]},"Identity":{"Case":"Some","Fields":["oWiJcuSqTyTEyaojcs04e4KDTEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XhUD+zfCq9uOhKEFCcLJfSWxG4cpsXqgIZaqWgY8OYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:49"]},"IP":{"Case":"Some","Fields":["78.47.14.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:13aa::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reeses2"]},"Identity":{"Case":"Some","Fields":["oWKrM6dQlqeAzY0VpH3J7Gq9xMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3A8eAT6d97hCRcSiwS7H50mBvUU42z33zaKuCezQzSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:17"]},"IP":{"Case":"Some","Fields":["172.106.112.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oVZ29fDyunscpURG3bRr7m9pmpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bc9aIUvqK1xs6eg1CAKMGiyJKXCt/xtFngb0jzbOUAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:38"]},"IP":{"Case":"Some","Fields":["188.68.49.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bornhack4thewin"]},"Identity":{"Case":"Some","Fields":["oVJt0LrMRJkQGuWVhimN/VXSU0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uOqEJgXtytaF1o6WBZamSMAQmnwRHA2YvONbVpMg0TE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:44"]},"IP":{"Case":"Some","Fields":["185.38.175.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4262:1ab:ffff::133]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams01"]},"Identity":{"Case":"Some","Fields":["oU2W5sTDpa89flesCoWugr37D0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qDj1aoXoCB/kjiDgI21WkFBl8FhtTQahVeiJdBTaF5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:17"]},"IP":{"Case":"Some","Fields":["45.151.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::a]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anion"]},"Identity":{"Case":"Some","Fields":["oURj98Y4wCfiOCnsu2effiLvJis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LHSzjN3r8OfVszDY0CqUXLUyHFlfhY6WwJqPerSnY08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:52"]},"IP":{"Case":"Some","Fields":["193.30.123.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VaticanRelay"]},"Identity":{"Case":"Some","Fields":["oTxl6XHZbiXJXtTbKWa5rLpUzr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEKsGyPIElO87uSbEzAgXl5npOXy6FeIL6j1+SR1PcU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:29"]},"IP":{"Case":"Some","Fields":["64.83.167.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SydDornexzyRelay"]},"Identity":{"Case":"Some","Fields":["oTKcCmnPWbhvjI6hgVPtTr96Mwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s/hqB+H2xzvIlXReGYxlInO7jNx+jmkItW9y+Q/JnY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:13"]},"IP":{"Case":"Some","Fields":["45.76.123.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5801:98b:5400:4ff:fe23:18c4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Desperado"]},"Identity":{"Case":"Some","Fields":["oTKB29j45ITpXdJzs+5/wUwbCno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3dvfAUjGwIfIOZxIPdRskMXN/fvcpK+UE1kmzoJucT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:38"]},"IP":{"Case":"Some","Fields":["78.47.134.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2b00::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer78"]},"Identity":{"Case":"Some","Fields":["oSeyUMkgeYHinBiqi6MRt0/FgbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q1ZpkiniUgxV6AJl5eqyKxa/RQGksE0xN24yLE/XEhw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:34"]},"IP":{"Case":"Some","Fields":["95.214.52.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["assange710703"]},"Identity":{"Case":"Some","Fields":["oR7nRxkc9IjreywSlSYPziYkvW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LzafY17EJ5WWuzo70+WtEbFo6IdQJfYNHrk1J6TxBD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:14"]},"IP":{"Case":"Some","Fields":["95.214.55.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zighinettohome"]},"Identity":{"Case":"Some","Fields":["oRMSSiLLzQwRQ+o+D4V+xB3QZr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P0wxjYY6VPneEOf8pswwvSymO/biwUN5Xu6GZGvnrHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:01"]},"IP":{"Case":"Some","Fields":["95.235.188.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kryptonit01"]},"Identity":{"Case":"Some","Fields":["oP44SG0ydRl0OpRFNsPOrjhJsZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TKzqG5znTajuB7D9h7JaNEZ/EMcbJcMClQrhMG5jBMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:35"]},"IP":{"Case":"Some","Fields":["37.75.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9091]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dhalgren"]},"Identity":{"Case":"Some","Fields":["oPBsL634jTo5qjBytAbwnXCVrJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xz6Q9GnNE4x3L0hJs1JY2QV0+mCLFs5N4kzoo7iC7rI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:01"]},"IP":{"Case":"Some","Fields":["46.165.230.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YeJunPeacemist"]},"Identity":{"Case":"Some","Fields":["oO29qPJHV0KdrIKJEYHZaHBiPE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1xh6EEEPyv03V1u5qRch3cY/wgW0KnC/wEPmiUfGzFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:28"]},"IP":{"Case":"Some","Fields":["51.75.71.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::264d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["oOPTkbg87S8mTNbTlSXjd3XqHus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sVncVoEfd5o/eg/ZAia/2mEvR2hNUH7HxvDx0IUWxkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:15"]},"IP":{"Case":"Some","Fields":["185.244.194.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isprjr0"]},"Identity":{"Case":"Some","Fields":["oN+zEjHHGIKfoY6rTQzVHe264Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLjbC2VK787ibGdXPz20KvBAZ2Q9TD4nEvlgg2/4eUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:52"]},"IP":{"Case":"Some","Fields":["163.172.151.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN29"]},"Identity":{"Case":"Some","Fields":["oNuCD+yHwEBfe/Bd7l5K3tK7mQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pCSX94QxuzmrOHC3e0QvdIkuVHMWFYN6WxQdKYU5YQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:30"]},"IP":{"Case":"Some","Fields":["199.249.230.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e652]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OmegaRelay"]},"Identity":{"Case":"Some","Fields":["oNIXHPrseAspMOBZ4DUF15kpJ5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q217YrygCGwdMbCQAejCzUS0WWmQhxv8VX4f+8ilzV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:35:12"]},"IP":{"Case":"Some","Fields":["104.244.72.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TerminaTor"]},"Identity":{"Case":"Some","Fields":["oMWUELkDCsE4XEykTI2/4Tr0vJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["duC8wVI7WC6Eq6yAWaBrX3sv4shuYVs5jRehkefd9Fk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:38"]},"IP":{"Case":"Some","Fields":["62.171.142.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2034:5805::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Strelnikov"]},"Identity":{"Case":"Some","Fields":["oL0QTjXTb1YwsB61NwWX6wkgTJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Md18m4LR+Sp+PV1M1X6bhMWdRWCVJnQxFHPrvdNJsCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:37"]},"IP":{"Case":"Some","Fields":["98.128.172.245"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra27"]},"Identity":{"Case":"Some","Fields":["oKkZZwRvepvDFUx7PD/eNMArEBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h3V+JitPdnNp1lxYWzkraUyPp32RjqbK6lx8UlaOi5o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["104.244.75.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluediamond"]},"Identity":{"Case":"Some","Fields":["oKHaxBzkyQppqgskgLvaZnpgf7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CzP2ABobXFKSn/w3uPjyCIx+Xb+D1bwkBRQplu+kt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:08"]},"IP":{"Case":"Some","Fields":["45.79.222.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inhonourofecho"]},"Identity":{"Case":"Some","Fields":["oJ2qrRbj93wu0aASvYoY/8v+tCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZ4xovbP+w2kDKy/cPjVcSdbgrnSFBwMgCbFOEM+r3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:25"]},"IP":{"Case":"Some","Fields":["88.91.65.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4610:a:4d::30ed]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Applejack"]},"Identity":{"Case":"Some","Fields":["oJ0g2F0KopxHyQq+r9trekv3/Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mVy6qOLFWm5AFvsjXtmHi5IlzfpgdpaSJZTbxiNaGDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:01"]},"IP":{"Case":"Some","Fields":["78.46.177.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c17:420c:c21c:f5f6:5559:d7c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["oIOXCQ43N6a0QjqICYLJWEmBKtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A9Hsg2C/eJz4AtJtaoS6nfEasGTbo1PWoGiSBAeuXLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:56"]},"IP":{"Case":"Some","Fields":["23.128.248.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Punggol"]},"Identity":{"Case":"Some","Fields":["oIHUNxJBSdBkWsqhJ7pMYIKJuE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iF2f8gkOyL4hJhY0sfcwIY+2QVNgbioUuVPIaN0jtAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:11"]},"IP":{"Case":"Some","Fields":["194.233.75.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ddfkmuaxgt"]},"Identity":{"Case":"Some","Fields":["oHF0pVifAR3HKi4FhfJn5MRrAU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s811yVoziOnbX3PBo62Zdd8t9ZuuczFsCe4l4c+m7lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:36"]},"IP":{"Case":"Some","Fields":["193.32.127.233"]},"OnionRouterPort":{"Case":"Some","Fields":[55509]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["violin"]},"Identity":{"Case":"Some","Fields":["oGzaeSLiUiutN6q9tRvJU8xBvrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntRzZkY63MsAFwNHK9dL/iGvd3gMY2/wHNy0ifjXVcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:22"]},"IP":{"Case":"Some","Fields":["135.148.150.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vlado"]},"Identity":{"Case":"Some","Fields":["oGbnmDdYx8wAl+Fqz097cbr6ROk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hqT+uPzndz5a1s03OanpyDZM0MvI4DMtYD+rihx0VMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:40"]},"IP":{"Case":"Some","Fields":["104.244.76.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapFRA"]},"Identity":{"Case":"Some","Fields":["oGVqAIGQLYYKc8QMTxDVtA2aLl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D6M7twqsewMW1w7mT9tSd4DxCYnoRPWVH1AM+MzEeac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:10"]},"IP":{"Case":"Some","Fields":["165.22.81.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:d0::136f:3001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetMini"]},"Identity":{"Case":"Some","Fields":["oEjSNoH+xrBzbneJvT54X5aEw+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Pv/jBaLIuWmaGDp+Pev00WEM3urBIrhqxsAPEN7Wz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:23"]},"IP":{"Case":"Some","Fields":["211.194.185.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["oClt3J7FCqQu2dR31R3UYH14dtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bJg4zuhapgelIN5C+YatyYAlvjLS8qgnV0v/SL7L1WE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:18"]},"IP":{"Case":"Some","Fields":["213.32.104.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SunnyDayz"]},"Identity":{"Case":"Some","Fields":["oBwE+gDhc9G9ACeYpv78rTfzQmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqBC5xWu0yyLEYfrFT3/q2kgcjY2GKARKQQQ7+jl5io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:24"]},"IP":{"Case":"Some","Fields":["74.208.212.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:225::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firefusion"]},"Identity":{"Case":"Some","Fields":["oBm4E+f8UZko53savqDxjnShQ0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BqlY3RZrZ8yxKkvXAKJaIBy8U9+igZxBz7mcaM4YH7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:19"]},"IP":{"Case":"Some","Fields":["62.158.24.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["siffeurattex"]},"Identity":{"Case":"Some","Fields":["oBO78ukxp9WKNwfIR2Gz9qqrJdU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7U+TuHyoxpERkzT2nembbghywdViX2WJbVWP3tR+D3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:36"]},"IP":{"Case":"Some","Fields":["45.142.100.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode5"]},"Identity":{"Case":"Some","Fields":["oA6QBTTf92NxBkwDcUdT6vi4iCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zhYftn3+TC/HVuSt7LH4h08SngPvHlnMck80mbQd26Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:38"]},"IP":{"Case":"Some","Fields":["198.98.57.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:449:d588:761:3910:8268]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Grexit"]},"Identity":{"Case":"Some","Fields":["oAVuDzdz3ZnB7SmLlWoqzuG/tf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vhLgNL0SClDqDsGwCXHv8uQo47PhkMk45LDLJwRS0mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:12"]},"IP":{"Case":"Some","Fields":["185.4.132.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarmokAndJalad1684"]},"Identity":{"Case":"Some","Fields":["n/oe5/5lP52gc5Jb3imadNysdZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["clfKQ1AryhjacRNpDxB/3i2J6KFuX74D5AKt04GalbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:33"]},"IP":{"Case":"Some","Fields":["107.189.14.43"]},"OnionRouterPort":{"Case":"Some","Fields":[26453]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8da:2b2:a293:30ad:506d]:26453"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE52"]},"Identity":{"Case":"Some","Fields":["n+ltLsJcqEHWmgq9BA1FNEMiofk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkXYqi/Yyd2z8C9qnfBNkC1YOr2BjGWdIpH7QrB6bxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:37"]},"IP":{"Case":"Some","Fields":["170.231.236.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber35"]},"Identity":{"Case":"Some","Fields":["n+jLSxUtX9NAqiswc1ZWCj2v4N0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9BKfMRpbywNX4zeGl9hXhwKwuCC6NAcleHSsroRefqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:33"]},"IP":{"Case":"Some","Fields":["185.220.101.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::18]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HighEndAdatikrit"]},"Identity":{"Case":"Some","Fields":["n9xzHO59Cm6qoBfowA2MjyydIrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d6I4Qb0s1UtCqcZtF6qhfDaONtQ4MkyXN8ZMwMFyO6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:40"]},"IP":{"Case":"Some","Fields":["51.195.166.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809tss"]},"Identity":{"Case":"Some","Fields":["n7d6XeEeTJtIHMT7RONFDWfWksY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5VMPqmEtyBpmd5LYzOnKFeCSgZve/N8pmeeYuAX94uY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:03"]},"IP":{"Case":"Some","Fields":["178.175.136.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:3352::12]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG6"]},"Identity":{"Case":"Some","Fields":["n6ihYWP7a98ijkXjKbDlrO29gwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t/9AhMot5b92WAa8nTReJRjnE45dHAmM30hlUHdU0GA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:50"]},"IP":{"Case":"Some","Fields":["193.189.100.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::199]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MasterTF2"]},"Identity":{"Case":"Some","Fields":["n6ERuIBUDiz3WwnDUwEaBP+31IA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4QYiP+RBODzsKK8Ov4JeRyevH0/6hd9zEl0imoqz6JQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:24"]},"IP":{"Case":"Some","Fields":["198.98.59.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra71"]},"Identity":{"Case":"Some","Fields":["n5XGiqy2fmJY7HprqUBsInq60/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AuFMuY7HOUxoqQMKlH65lq5oJiT83LsZHx92Q/+YNIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:08"]},"IP":{"Case":"Some","Fields":["51.75.161.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noa"]},"Identity":{"Case":"Some","Fields":["n5B4OmcgFdTUDyKQKWS5KtDqDBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q4Dq7zT1uRWcwxzm+kn7AkBRYg3CwJqm868yX+5xoqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:09"]},"IP":{"Case":"Some","Fields":["149.154.154.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:149:154:154:155:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nivrim"]},"Identity":{"Case":"Some","Fields":["n31uZCAYPCt2086ZYk68mKIaln4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RCqAJGS5x/ZeXn2zC8NYiIidSeaBCmfk4nepXd7lxWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:45"]},"IP":{"Case":"Some","Fields":["46.28.110.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XORJSRFL"]},"Identity":{"Case":"Some","Fields":["n3SnfrnXby/M5ZHImibg/b0RCrg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ciwrlRUf2XymyiTxqjFRrAWuTrsZWsX6/ecnykxDNd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:45"]},"IP":{"Case":"Some","Fields":["46.165.252.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sn00z"]},"Identity":{"Case":"Some","Fields":["n15/Wk1dgIuBHfxtg0g/2SUIVpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yEuN0Hn+xRAsDdZi1HkzDqAIGOH/TaIwRULweM6ffmQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:51"]},"IP":{"Case":"Some","Fields":["37.187.179.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:404:200::4b3c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel26"]},"Identity":{"Case":"Some","Fields":["n1BoMQgY7XxwsLxAh6tVyxLLQ3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9lRDI7LTdNspVzCTSwG/++tMLCG+31QWZCS5CgAO6Vg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:15"]},"IP":{"Case":"Some","Fields":["89.163.128.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::cafe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ripley"]},"Identity":{"Case":"Some","Fields":["n07qZBNJ9nUzXwbz9XDRSuOQenQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XM+BdCzmgkAb9OZO65KKjbkDs9lNhEwDEENMq3gT24s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:58"]},"IP":{"Case":"Some","Fields":["216.210.83.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickenlegs"]},"Identity":{"Case":"Some","Fields":["n0rzB1H3RqAAC7d8pghYyzan0Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oQ7ONaNA50cMtegfL4A3wspgaL+ltjdWkF0xCqqoHXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:43"]},"IP":{"Case":"Some","Fields":["103.227.99.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infinity2"]},"Identity":{"Case":"Some","Fields":["n0WdR1aqYdftBdAA6kx1f6GaxAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HkGfBQBWWUpeizqfGy2WIqL3VDydPRHyB9kRQLoG72M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:47"]},"IP":{"Case":"Some","Fields":["89.58.37.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ukna"]},"Identity":{"Case":"Some","Fields":["nzU03aSGXAqI8++Eu18ebDWFQ3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HxoVeh7jg/nJHDrDuWOO2OYgc/w3mIRprz6qQA3EqRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:45"]},"IP":{"Case":"Some","Fields":["123.253.34.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber45"]},"Identity":{"Case":"Some","Fields":["nyzyqCIf3kvimmd+pasn8uouoks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WFohNIWl6z2zRnoyBnGS33DfMMnPMhFxUrl5VgSLExo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:10"]},"IP":{"Case":"Some","Fields":["185.220.101.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::23]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex15"]},"Identity":{"Case":"Some","Fields":["nyhW9tK4mtTvbVcj+rFn21pTUZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1jnmpO4EOapSqA/+sjNK8DmyllK7aF4I/6ahzOUJBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:57"]},"IP":{"Case":"Some","Fields":["199.249.230.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::105]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["biber"]},"Identity":{"Case":"Some","Fields":["nwTtwk8XMbYd/4CggQFQc3pHhxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8IVNBt++9X+nPV0ERzyY2Uvz1N0wQCOcVcUrwi82EI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:26"]},"IP":{"Case":"Some","Fields":["109.70.100.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["nvSaB1p59ldwj17gCwXOewt52jU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6O4SKq8icjNVQ0Gu0dEUiQXkzSuCFUFzxqLt+8sdtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:13"]},"IP":{"Case":"Some","Fields":["45.154.98.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NixOS"]},"Identity":{"Case":"Some","Fields":["nu6GHNil/iah8naHkyMXL1uRCCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sRNg853hwS/Lf4y2w8lVa5bzM3V6RI+Mr/KiecUTQCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:58"]},"IP":{"Case":"Some","Fields":["176.9.161.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trainmaster"]},"Identity":{"Case":"Some","Fields":["nuqgLjOM31kZ+YPzJFqpWnkLm2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g8lvL9YyT87JsOv42eHQAQXOdacDVWrJNG3NhotALrA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:06"]},"IP":{"Case":"Some","Fields":["89.46.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse04"]},"Identity":{"Case":"Some","Fields":["nuY5hw/efUCmD34cm5Epd9Gu1xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsEsDECW412wY0WiNY36j9gdWDBvJwiK5Yh65aFyCrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:55"]},"IP":{"Case":"Some","Fields":["77.68.88.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr167"]},"Identity":{"Case":"Some","Fields":["ntjkXSxmbwGcF/I/9Wfp6x59rbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MPdiQFSfys607JRXf4Z5hp0Yre/ocPCRavNl/scnI5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:44"]},"IP":{"Case":"Some","Fields":["85.208.97.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Password"]},"Identity":{"Case":"Some","Fields":["nsT/rxVrnYk1XAcJFmRAfvnJ50E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6KSPNrIpGHw+ui9ZjpaxXb8XHuJbT+BLIktvRGKSIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:08"]},"IP":{"Case":"Some","Fields":["185.100.87.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nsPcEuwiLRcSH3wEvkJgNhV+GfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UbI7a91SxGqNLYrM52Q1UHz+DBT7kru1QtEUjjUNbec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["80.162.238.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["blindschleiche"]},"Identity":{"Case":"Some","Fields":["nsJL0Ncdl/K7/Dlo3Jxbu1UY6cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aOC9OYLTeWFON9Uzqo8/vJjQz3ru2HwxrZvB+VP+4Ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:18"]},"IP":{"Case":"Some","Fields":["109.70.100.77"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::77]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fa11en3"]},"Identity":{"Case":"Some","Fields":["nrWBms2l2pTM4EJEczXQBtwlY+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4s7ZN2QZAZ3+5ErDitsGPySmsybmiDcukgdtziCFclE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:05"]},"IP":{"Case":"Some","Fields":["51.15.227.109"]},"OnionRouterPort":{"Case":"Some","Fields":[7890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:67e::1]:7890"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatconfig"]},"Identity":{"Case":"Some","Fields":["nrP9hAZeViKlfv7xTkGgG1uZoCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vvA68YVu71EKKpcDgdpVSOmtlRppllTa3Nr9MwSOJCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:13"]},"IP":{"Case":"Some","Fields":["213.206.184.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:beef:2011::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedWikiLeaks"]},"Identity":{"Case":"Some","Fields":["nqxhy070RqAMWg+NLBgF0nrdhfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QHsBBQMmX+YXpkp+/cAeEUJyR4REEHtX++ogLJg/dIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:02"]},"IP":{"Case":"Some","Fields":["23.154.177.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lumiRelay"]},"Identity":{"Case":"Some","Fields":["nqZdG7YHraS5prKli6oslg34veo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PYNWAM+/7tC8urgCUGKruLZWX9EkBFNInorCC0r8bas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:57"]},"IP":{"Case":"Some","Fields":["140.238.168.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OldCup"]},"Identity":{"Case":"Some","Fields":["nqDfDgRubvngHmXQS0hc+ylvjDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["737SCJlJQxW3ZbrVAlAFVX4g4qU8EW6a8GRTFBcsmKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:18"]},"IP":{"Case":"Some","Fields":["139.162.251.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:92ff:fe8d:d119]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["npoTVbcN5nW3TE4UuOzfcuQdi/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t6BUDEq1ixofcwkeoY7vnoSwnSv7EqsRe8ypS1tOKR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["167.235.229.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:fc5d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Gentoo"]},"Identity":{"Case":"Some","Fields":["nplz3PcIB94ZKwLBBcXobGAgIDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qN8Q730OSu1FuBVZFo0USXVYd9qPpcPnt7v/cOAK51s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:46"]},"IP":{"Case":"Some","Fields":["60.241.48.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:6e::5eed]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["colagioia"]},"Identity":{"Case":"Some","Fields":["nojHxQ2gY5QkpkHhQ6YAAQiYoRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OF6JgsO1zlJkNXHbCDT0uDwYkgUP46Yzo3j5AQzmR1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:15"]},"IP":{"Case":"Some","Fields":["72.14.179.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fe96:1cd9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["UntilNoEnd"]},"Identity":{"Case":"Some","Fields":["nmJ5KN/l3V5RikUqUD1AiAEV36E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["15eVtSuXFGUFQyekTWPWuyDztZiCGxYmdaB9cWGvY58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:16"]},"IP":{"Case":"Some","Fields":["65.21.1.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:1c3::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv127"]},"Identity":{"Case":"Some","Fields":["nmJODl66MVa/2piscDvP+V6aL/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G8Hg055DG1K9nqR0h6e08zRqtiKlh2LaN3Moch0fav0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:50"]},"IP":{"Case":"Some","Fields":["192.42.116.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5527]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber55"]},"Identity":{"Case":"Some","Fields":["nlaAs/XCynaPKCyF26oRcy10VtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6JsEjy3rE7W9aY/JC7lbIIyByxP0G9Yw5Qxb3Owk4mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:31"]},"IP":{"Case":"Some","Fields":["185.220.101.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::28]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trycs"]},"Identity":{"Case":"Some","Fields":["nk0Xcs7JhsdSYGVziLvFfVg+uB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMMN7SxlqWaELK5WFaU+GT7UHBAWDLgiUgdP5xdWthM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:20"]},"IP":{"Case":"Some","Fields":["176.9.42.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marla"]},"Identity":{"Case":"Some","Fields":["nkzGTE+Uw1nUPFugkJQyP9vv2XU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqBEZpm3gQ5IRPz6qGiFKdPiUxTgzrweoW6wbzKcW5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:28"]},"IP":{"Case":"Some","Fields":["185.117.82.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:21bc:1e::f00f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["nkM0U9M/hbcmqrrQQ93QDhcTKcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vBef6VWKaVZpvuyo0hz/inFO+2mbbQhMY/jbgaXLqyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:08"]},"IP":{"Case":"Some","Fields":["176.58.110.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe33:3c13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["equinox"]},"Identity":{"Case":"Some","Fields":["njk8lWBdlvBk26EJTfOQCcAU/V0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7YrFtJ+uWW9OawHJe6Ki94LSUY9cnZ3k1acOBHTKB5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:03"]},"IP":{"Case":"Some","Fields":["5.254.118.150"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP07"]},"Identity":{"Case":"Some","Fields":["njY0I5JOzDclqdTUd3JCEZijqEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OKuJuSdf4IWkxVxNxGop9YIwF+yZxj9xjzLMfiRPGl4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:15"]},"IP":{"Case":"Some","Fields":["15.235.29.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex47"]},"Identity":{"Case":"Some","Fields":["ni18aYEmlASqGXC1OJFwGiBCTvg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hQV4bycwPvfxDmGFVKtsmmhytm6mbz757yeQb23LRTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:40"]},"IP":{"Case":"Some","Fields":["199.249.230.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e646]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WomTor"]},"Identity":{"Case":"Some","Fields":["nipLGud3EALbDMmg56BnrCLloSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PpoUTtJamNyxrwSjxlugFbE6aGOnRV/e80HNnKg1jgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:52"]},"IP":{"Case":"Some","Fields":["51.15.49.143"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nh4Di2JCwbcGEpD0YQjQQYtEuaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbmxY6Oh/52DeWhnJ91KtC85grLq66rpuNq2HEkOY3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:22"]},"IP":{"Case":"Some","Fields":["23.128.248.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::c9d:f5ff:fef5:272a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv114"]},"Identity":{"Case":"Some","Fields":["ngBYMAQB9mh+rln5/oLbiSMDRME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HIbTPgKOmT1gaqsGcu3jXI9oe9WjNXUbI2SIZDNJB1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:05"]},"IP":{"Case":"Some","Fields":["192.42.116.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5514]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nfHC1LYYLy97Lesa/EsnFRDQ4/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CxGjMOyF4vH8vxM8F7BEPO69G07rgEVC2DSOHEC6XNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:14"]},"IP":{"Case":"Some","Fields":["23.128.248.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::36]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ne2XGY37bHpxJ3GY1EiGbzb01Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXd6VxwjF31CDOv/FzKsI9m6n2FRh+nIMllBE7RGVvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:54"]},"IP":{"Case":"Some","Fields":["136.175.8.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit5"]},"Identity":{"Case":"Some","Fields":["nep7ZTG0RuoauQietZ8E51xST8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1eQv2C8szGflsu3ZVXSZb7pzcewwtb+4UEJfntL8lP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:01"]},"IP":{"Case":"Some","Fields":["185.129.61.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myHome"]},"Identity":{"Case":"Some","Fields":["ndlp5paY4sdPv2YvmGuqYaoKxVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnPXPdOOrEujuZTCjq12UyeD5csqEoZF6P6RybzGNsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:56"]},"IP":{"Case":"Some","Fields":["79.223.122.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["akira"]},"Identity":{"Case":"Some","Fields":["nciwKCqNPEUhIWfEVLUDJDvJOVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EeOU+Zt40qoB9DtqxgZaQ8UxBu9ORASM3oMxNJrAdgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:33:46"]},"IP":{"Case":"Some","Fields":["193.105.73.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["philotes2"]},"Identity":{"Case":"Some","Fields":["nba83BCu+ywDKFfhFK9YWiUunPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mFatIpxH3AwUKi6eDd5gWsLD/J0pKq/30ppghQ+tRvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:07"]},"IP":{"Case":"Some","Fields":["94.16.118.250"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMeDaddy"]},"Identity":{"Case":"Some","Fields":["nbZv0cQUmDgGh6zLiJfhx8g4800"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dq0V21B7ZIbdfPp690mgI/jO3FDS4MP6LkvgF6YaEvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:24:04"]},"IP":{"Case":"Some","Fields":["97.115.184.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HungryTREX"]},"Identity":{"Case":"Some","Fields":["nafvnp1gcM2LcFm4qMxbQc7AJyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xXoNZleV34KzE4HGlLT77L8gbe+S3Tv0BXdXVPNpj4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:24"]},"IP":{"Case":"Some","Fields":["192.99.151.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bifrost"]},"Identity":{"Case":"Some","Fields":["naUoSlECGnEeyqZ3yB5UCCIrnyo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLNKcgyzw0nXdC5rOTCW2RVYeGM4I/QTuoSm9yo5TLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:11"]},"IP":{"Case":"Some","Fields":["90.129.255.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay18at8443"]},"Identity":{"Case":"Some","Fields":["nZf4LxYK7z/9egqyv7aLaREhyxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w+N7XvYGOsHMzJfZybPmlh6lU3skG/ky0aYghpYiNgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:32"]},"IP":{"Case":"Some","Fields":["140.78.100.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay42at5443"]},"Identity":{"Case":"Some","Fields":["nZcLf7rDU9j2BJrU4M7ga73k4X4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNVyeIB6BmngZN9ma8SXsinVPVxvgbVyJdP+mRrITC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:57"]},"IP":{"Case":"Some","Fields":["140.78.100.42"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diale0"]},"Identity":{"Case":"Some","Fields":["nYQcpzmTCJTSNWn6WLZjIkpEDMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b1ltSDqDGNgSkDjqIjViooYDLPz4+0Qpn5hUqwBU8lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:53"]},"IP":{"Case":"Some","Fields":["95.33.88.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nYGKKwmW+7UwD7l73YpxvXedGT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJbAFnTnfrY+hK+T06f9TBybZKbY3UbLOvw7A52snf8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:11"]},"IP":{"Case":"Some","Fields":["23.128.248.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::86]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who10icebeer46"]},"Identity":{"Case":"Some","Fields":["nWbsrtOOVNeEzVcXcD34MCL7ZPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P08LP3DdPFr1T0lVsOWhydC3OmQ18j3iM4LmDSw3Fvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:36"]},"IP":{"Case":"Some","Fields":["63.141.233.118"]},"OnionRouterPort":{"Case":"Some","Fields":[8224]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aib9ushiekee"]},"Identity":{"Case":"Some","Fields":["nWPZlTWhKlylOSx5an8OLVN8JJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLFKiiH/bAATXekOaAAecrJQHxggP7oBcoxbPRqZfZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:21"]},"IP":{"Case":"Some","Fields":["107.189.8.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lptr02ORFzF4Za"]},"Identity":{"Case":"Some","Fields":["nWF6wXSnheHQNNIG1orzSoeloLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4D1M4ElwOraahaZgna576UWma+SbZAft2sQIRnjQ92c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:53"]},"IP":{"Case":"Some","Fields":["173.212.242.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2013:844::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShayughulRelay"]},"Identity":{"Case":"Some","Fields":["nV1V476J1hLXH9X8XtUmlQeC/00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2pKnJcFmgGxC+LkzaV9RXmjy03YmWZRmZNpQx/81eQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:37"]},"IP":{"Case":"Some","Fields":["216.221.110.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["nVp6gbxhlFVc51H3X7GW5KOYLMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+s4q+VauZ5FJ11aklj9FMTZWgWnRgo2A2MboUMi47WI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:33"]},"IP":{"Case":"Some","Fields":["185.220.100.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:13::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nUt69fdXjrpfYRKvlzf4XULCMhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJOsjPk6epSEfGc60IWHCWWVSFD4rpVaHFnTdrPcWH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:35"]},"IP":{"Case":"Some","Fields":["23.128.248.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BenjaminDover"]},"Identity":{"Case":"Some","Fields":["nT+qLM1I4IeVpyQYRpF0SRczhik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1osu9B3+6xtGrR1+5DIkXSFhtWUxioydENiJDcg+is"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:02"]},"IP":{"Case":"Some","Fields":["178.200.140.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:1082:4b10::b002]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal3"]},"Identity":{"Case":"Some","Fields":["nTBflZFIw7jOELbAzhaJqxfXAUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o7csanNB33hqTmuFP3aJT03oTI3AaN2gAFCHz+GwhPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:19"]},"IP":{"Case":"Some","Fields":["51.79.156.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8000:800::e5b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeworld"]},"Identity":{"Case":"Some","Fields":["nSyigc5d8cyCHqBkbC2uOyya1lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tjFWZlX6n96OBNNwxqfKC3Rk4RpNg3fdNjWe4t1iD+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:47"]},"IP":{"Case":"Some","Fields":["186.190.208.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex16"]},"Identity":{"Case":"Some","Fields":["nSHwNMO/9OdzfQjPd13BdFcGgB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YpaaGDw7Oxkyk+L0qSe6uZOWtLHqkeDQFLcoFfe1YhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:39"]},"IP":{"Case":"Some","Fields":["199.249.230.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::106]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["nQ9kDmuNdVKuv7+mSBtENQePM7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["395nNkEGAdD6WWtw/vOrDji897kVwgKpdeXLZDmgbog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:51"]},"IP":{"Case":"Some","Fields":["23.128.248.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::15]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE70"]},"Identity":{"Case":"Some","Fields":["nPf0JADpb0lpe8a0j/pBdtWreF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvHPsgGKrVKLJQsXP9n4uroaXqq/ytFzFCFkWY/OuWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:45"]},"IP":{"Case":"Some","Fields":["37.221.66.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:10b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R3S6"]},"Identity":{"Case":"Some","Fields":["nPfoTUA3GcvQsjgauBDwr52tJ5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pJ+Xv9L9wbwQOPTWHFeRfzJHZKENKMudgKXT/31m0os"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:55"]},"IP":{"Case":"Some","Fields":["185.146.232.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:164:0:5233:2d:5336]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoGodsNoMastersDE"]},"Identity":{"Case":"Some","Fields":["nOE3q1gk22fyTlRAbpCfaYygPm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oYp1LV1qO2ay5io6gepWKs6DnHnQpGdBx/kdF300szs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:17"]},"IP":{"Case":"Some","Fields":["78.55.245.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra47"]},"Identity":{"Case":"Some","Fields":["nNOGu4BPub7pL6EeYOkkFVXMt5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aK3h3VEI3cgmmWQCFaX3YyOo1tT+eApM5dn4epdLEX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:27"]},"IP":{"Case":"Some","Fields":["193.218.118.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::147]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse08"]},"Identity":{"Case":"Some","Fields":["nNEqqKPIwePxZF04wwmM0icMVug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiEMOOk7FQJHUZXxkixEx6qxFZ/wUrOGu4X6MFU8NIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:50"]},"IP":{"Case":"Some","Fields":["195.133.52.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Saturn"]},"Identity":{"Case":"Some","Fields":["nMzvhegk5AT56rhP/MeseaVDMZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QoLRSVu9tC1TZISOTyngcgRb0LjQpXvWuQzkZOs8D98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:03"]},"IP":{"Case":"Some","Fields":["23.129.32.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fed2:fc0:d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigDaddy"]},"Identity":{"Case":"Some","Fields":["nMPpwfQZbU8R8rgV+OoLYwofzIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YZIO8sVVvT5xw+1baM4rJyT/y730jmBe6LDGVKx6PSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:08"]},"IP":{"Case":"Some","Fields":["185.21.217.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10041]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorA"]},"Identity":{"Case":"Some","Fields":["nL6MBvIORuR4DdvITyFhXcVCs0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ADFaJWoDFuw786blGGR4+uuifR2yi9efSi1zNxtp/ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:20"]},"IP":{"Case":"Some","Fields":["85.195.232.50"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:ad8b:50::a]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NightRelay"]},"Identity":{"Case":"Some","Fields":["nL1JNxvbiPuPsnjCWuip8d4UmOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mAZUsQ5TOJGe32KNUH2fMP50swdO05nbSpnDWMyo78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:14"]},"IP":{"Case":"Some","Fields":["185.101.139.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enif"]},"Identity":{"Case":"Some","Fields":["nK04Aoj8CG5oBqWenEByzXXyYiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zW4prxl2zJU0eIYeonWee80DfDpJk52XU3EgmKlQgeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:54"]},"IP":{"Case":"Some","Fields":["144.76.50.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nKSrKwQsFzrFZHnGn19Dbp8eD5Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kFYmsUlZ1kFaDBAKgaPNhjAkHeYSX7/W8GPjmWKYsQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:50"]},"IP":{"Case":"Some","Fields":["46.227.67.92"]},"OnionRouterPort":{"Case":"Some","Fields":[51505]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["protesilaus"]},"Identity":{"Case":"Some","Fields":["nJflhAV4aXAwq/x3hEQuMu/Y6R0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7hDFp0AHp7CWiBUqaVDHyEqwCeJHTKXu8Yo9BrkXMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:44"]},"IP":{"Case":"Some","Fields":["132.145.245.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8000:6a00:1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bledo"]},"Identity":{"Case":"Some","Fields":["nJepqDLOgqvncQJRuCcj7qCRRqw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OHynU/JRwn+MZkAbebYFK7pOA4EnW1+GogMWyZIo3Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:52"]},"IP":{"Case":"Some","Fields":["92.176.200.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay14at8443"]},"Identity":{"Case":"Some","Fields":["nJeTn9cup6MBGV5B3NqQfkSUqbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7tp67ymmtsG5/dseYhBg5zihsBM02PeQ3M7xt3TXuWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:18"]},"IP":{"Case":"Some","Fields":["140.78.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RAPTOR"]},"Identity":{"Case":"Some","Fields":["nJaZAxler2g9oTAC7NW7O0D8sO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QwmXVBFBuGLR8insLNleNGtPI4LtuPKaEA/T5a65zr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:14"]},"IP":{"Case":"Some","Fields":["205.185.124.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:789:a7fc:5e5:7f84:de31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["santaclaus"]},"Identity":{"Case":"Some","Fields":["nJYq75eElmEsUh0JYy5Z7QVdU+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UdXlPDF9roEGZC1cVIRwYAZ4Uis2awBLoTiqSrgvdVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:08"]},"IP":{"Case":"Some","Fields":["178.17.170.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstor2"]},"Identity":{"Case":"Some","Fields":["nJAKf29d0DTP/RktrsnMqoE9sCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COkQW+8AgAewpDVK2rYnUjrdst6zuHelO+9kff0GQpA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:52"]},"IP":{"Case":"Some","Fields":["86.105.212.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:75c0:29:39e6::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torntgonl"]},"Identity":{"Case":"Some","Fields":["nIqw1f7yQoHfzblHhKauTxuilo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fm7rsc9qlEDXuZMrKjah0vTpzGD+VIdwXn74cINX81k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:06"]},"IP":{"Case":"Some","Fields":["95.217.129.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6a56::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bashfulbear"]},"Identity":{"Case":"Some","Fields":["nIT/HxO3OOy1OA91yUM6sqGCdGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvHQIBnLv2GPfScKqg3VX1r7az+ucc/FiUhXMuId4uE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:09"]},"IP":{"Case":"Some","Fields":["31.171.155.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["nGzeyDbbU5ELivUJsXgeFA+mnFQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KHgN2+A4x2zP3EavS9/dpZKpURHjbrez4IsXJXy5bBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:03"]},"IP":{"Case":"Some","Fields":["148.251.50.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:1015::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e2"]},"Identity":{"Case":"Some","Fields":["nGH8CgFAHt9xxASGZeU5aOgTUfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4qxzLNRtdxXQQNMUqCEWRiQmkXcpOjGTlAKEM6JMrxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:32"]},"IP":{"Case":"Some","Fields":["195.176.3.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::23]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coffswifi4"]},"Identity":{"Case":"Some","Fields":["nFr9Sark4CcrrXgMbdcc4aNgEqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ugubOemkNFDGLO0BETo3SzIVgNztD4mxaOjoZ6BPxpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:29"]},"IP":{"Case":"Some","Fields":["82.223.14.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:91::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay27at5443"]},"Identity":{"Case":"Some","Fields":["nEzTIb/qeWzocfGGd2AB+++IZCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gcTcAUwXmNjGop1K+hsuL2xJAuz53aZHhGlkaz2NjQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:47"]},"IP":{"Case":"Some","Fields":["140.78.100.27"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim04"]},"Identity":{"Case":"Some","Fields":["nDBbwJhSx8ti6aQfnsoQi7+yNSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ERfb1T27IGoVty/Fe9w2HF3Sp7uHsHXI24t2RkhIaeo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:55"]},"IP":{"Case":"Some","Fields":["178.27.85.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepGreenResistance"]},"Identity":{"Case":"Some","Fields":["nCv5seMOuxo4NvoEvu6MwZLMHls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8zFa8R+xhRsHVhYqGsy7HOTMm87MucNeLHvcUVqak4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:41"]},"IP":{"Case":"Some","Fields":["185.165.169.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clan"]},"Identity":{"Case":"Some","Fields":["nCSkQQAOZjbUBB//1mnI3RZnLLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rWZ/mSVZhTDhuE/ogJ6oL+zzJCg7atoODGASOgxhzvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:58"]},"IP":{"Case":"Some","Fields":["205.185.123.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trimblelink"]},"Identity":{"Case":"Some","Fields":["nCLAFTLQMMJJ3joxVcbjorwzs2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hipuAQlTgUkfJJdMa4B3cVWDWuKoXsjKEDaTNpQET7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:37"]},"IP":{"Case":"Some","Fields":["46.246.126.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex95"]},"Identity":{"Case":"Some","Fields":["nCIyrezOxq4MRX0u065jQlVAxZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6W97zV30w1PxmxquObaid6KJ9UOKpMOl6XOuS4+PIVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:11:43"]},"IP":{"Case":"Some","Fields":["199.249.230.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::184]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN21"]},"Identity":{"Case":"Some","Fields":["nB59khFdQxOFuMrqanwV+4nOI2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0IhZdg42QPrjMabmN7MjQnta0dcpkBtXcSzPrGQsA5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:35"]},"IP":{"Case":"Some","Fields":["199.249.230.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64a]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei04"]},"Identity":{"Case":"Some","Fields":["nB5H/yBfNJ1p1WmuftFTZqVVSkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7GTQqYrb/ZVl+PFj4l1XKGfSFQZpvfQA8ZrLl6qNwn8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:34"]},"IP":{"Case":"Some","Fields":["185.162.251.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5de:6489:b7ff:fe8f:8434]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JanKuciak"]},"Identity":{"Case":"Some","Fields":["nBVZxGrQJ57vb9GH4bJ9k5wwMIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yjxf0AoXEuq2jvkO9x8ysOC4GBoNKk1Je1C+Hh/y8fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:29"]},"IP":{"Case":"Some","Fields":["217.79.178.53"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:5bf::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra52"]},"Identity":{"Case":"Some","Fields":["m/YA1sBqP74oIWxYzSQaiZMcvn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F3F6tdajJ6Pwmo4qKdr7FXXG6HyWqwbz0durh7gGYvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:25"]},"IP":{"Case":"Some","Fields":["51.79.204.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LonelyNeutrino"]},"Identity":{"Case":"Some","Fields":["m/ShNzB3SGXvbdcQLZivGjPlTgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zTgJeOubCBxo13liaqY3jOFIY9FiqFnq55NK5yDqJQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:04"]},"IP":{"Case":"Some","Fields":["46.4.183.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["saturn"]},"Identity":{"Case":"Some","Fields":["m/Gqu4t4ZC3BJB6GoqdYi4SWxo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdVZKM/QPRbXYGL/Pxnab1FZ5xLTU5K/urnkNz+Yxe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:17"]},"IP":{"Case":"Some","Fields":["183.88.130.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wendigo"]},"Identity":{"Case":"Some","Fields":["m+wiKbo+MOmFeSCe/KQoFYYR1X0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tewiIoPs8LfvscMCYewipPxBPDeOgpgJEu4Sf3e/4Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:31"]},"IP":{"Case":"Some","Fields":["65.108.82.81"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:82e4::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["LandShrimp"]},"Identity":{"Case":"Some","Fields":["m9Z2UIbo9LFdF/Fm9BkRSU7Xi94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Eeb5cgI4W67bRxpLWfaVSi6KY5z2uE3Ibzoj2BRTO0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:44"]},"IP":{"Case":"Some","Fields":["95.216.22.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:1669::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4mnesia"]},"Identity":{"Case":"Some","Fields":["m9DuebuYeN1tjY6ioojV4wHlwTY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tER2UUt7tudxMkGdqkLwDjL5NXlB52oW/NQ7Gsk7Cyg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:56"]},"IP":{"Case":"Some","Fields":["88.99.2.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:173:2953::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lavaeolous"]},"Identity":{"Case":"Some","Fields":["m8new3HRcZDwGF182kLzCmF7an8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bb+jky3nfld2oaLaNYgZiA5hGsyiwBpw/KJUjle1lzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:28"]},"IP":{"Case":"Some","Fields":["37.48.120.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1af8:4700:a114:6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fogelholk"]},"Identity":{"Case":"Some","Fields":["m7t4g6vRi2hHDoII3rWqSyrjkLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Js8LSuShrdQ4go2GSwEJ9U/WB3922C8gEUSWuxgXbCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:27"]},"IP":{"Case":"Some","Fields":["31.208.128.22"]},"OnionRouterPort":{"Case":"Some","Fields":[990]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OasisWorld"]},"Identity":{"Case":"Some","Fields":["m7n5OORC9XqPUJy7qWP8gNC7mWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9UpZhcflwjyn0PbZm9HOGyLrbNUj7XX9xm0C5jTkaOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:35"]},"IP":{"Case":"Some","Fields":["193.124.176.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pellirin"]},"Identity":{"Case":"Some","Fields":["m7a2hVv/t7LGKLTIYRyHqbbPjnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s3BQxVHtBxRi/BwGWtBLdaMsB1t+9Mk4g8tobb1BuhY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:46"]},"IP":{"Case":"Some","Fields":["179.43.141.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iamnordischerring"]},"Identity":{"Case":"Some","Fields":["m7ZrPmBVPl/rek27Upn+v0XmBbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8zBDZwQYfi14kDQSENR7CvdlBijYcnxmGgOViocqMBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:58"]},"IP":{"Case":"Some","Fields":["2.205.237.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["calator"]},"Identity":{"Case":"Some","Fields":["m6qpy6MQnCyAfy6E1cnAyMFH3OY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/i5evaZ7r8o5RVMOgmeQVgk1CN0x/inktiyTgKUDm3M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:03"]},"IP":{"Case":"Some","Fields":["178.17.174.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:73::d735]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FASHIONCLEFT"]},"Identity":{"Case":"Some","Fields":["m6kzTadpp8ltRk+eo4qXAIi2/ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kWQphYC4LwIpcXD1YrKL7HACqa8d+4XnJ5416c7GW+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:51"]},"IP":{"Case":"Some","Fields":["95.217.223.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9ed2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ekumen"]},"Identity":{"Case":"Some","Fields":["m6hOjJAINnb4bHQnyNEFkl8TcWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["honaJjm5br0kSFfKD5RnPsg7j3Lu7YrUYepjUbNhbPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:50"]},"IP":{"Case":"Some","Fields":["95.142.161.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:47:216:3eff:fe3d:888c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pivo"]},"Identity":{"Case":"Some","Fields":["m6EonNz9kHuNQKirEvNr5iDdQIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T7GYRlA5lUhvSBZpuigkqVDn2YiFQRu0FHjnIA5sIFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:11"]},"IP":{"Case":"Some","Fields":["207.180.216.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3003:1052::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation59"]},"Identity":{"Case":"Some","Fields":["m40IJ1yFKmd+jGXh3adEMb5Qm0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jXElPlVPZAWn2CGQTnoUBIfQR3a7VLwy/AOVv4HLI8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:21"]},"IP":{"Case":"Some","Fields":["51.89.143.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["m3uuMl69rYWYaNLGC/ZYjKWUkDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzUa9NrUqcMno63wHY4UfpG7T05xhp0OJKorkLRwlxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:04"]},"IP":{"Case":"Some","Fields":["83.136.106.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:3abf:d9e5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThinkPad"]},"Identity":{"Case":"Some","Fields":["m3NP8W9XeFAJFv4kOxxG2TI54bY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a01J+97HcSanmhTLbfF6MHZXWuZt6M3RgpZyhgY6JoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:11"]},"IP":{"Case":"Some","Fields":["152.86.13.206"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fleischgewehr"]},"Identity":{"Case":"Some","Fields":["m17TNw4AKuuyqbJeMhPBgXzNLYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DnJRC4rVPqlU5ge2wEy2S+PRKyPdS7qMMt2WN0aXq6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:51"]},"IP":{"Case":"Some","Fields":["51.15.65.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:180b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5gnPr4VhxQm2zHcHQcm"]},"Identity":{"Case":"Some","Fields":["m1Cb6Dh8poddPXzaR3i/keHPcdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RXsZ5+S87mV8kEpVCuNdkXTg6LlGTU2nplikUapVlxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:38"]},"IP":{"Case":"Some","Fields":["61.197.78.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:24:337:21a:92ff:fe22:c7b3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scamtown"]},"Identity":{"Case":"Some","Fields":["m0R7eHj38YnQfTJuzDmTt6DF3BA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2f42nizlZcME1PcLStK5elYOA/9Cl06MWAjJdwwIoGs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:52"]},"IP":{"Case":"Some","Fields":["206.189.110.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scaletoer"]},"Identity":{"Case":"Some","Fields":["mz56CtmgVJhMyH58qdXBFyAtRdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NuKmZ4U4wv0vTyqYDDj05oyobOoK4aT6/iG2Y/A1sxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:49:28"]},"IP":{"Case":"Some","Fields":["51.15.36.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:bc8:1830:e12::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitFinland"]},"Identity":{"Case":"Some","Fields":["mzHx8cFVT5/7NFWRH4LoGO98eIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zHSyemm2QAAi42rl+DWhrC70+hyeUrKfS3fblrzPYAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:22"]},"IP":{"Case":"Some","Fields":["185.100.86.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:1::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MIGHTYWANG"]},"Identity":{"Case":"Some","Fields":["myvH79ZhByr63FM76NzxwZ2MLcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaXbHZk4mVn+xOBsYlajcitBy6C4lQE3G7oFwzaiXtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:06"]},"IP":{"Case":"Some","Fields":["188.127.69.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29d0:8008:c0de:bad:beef::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Agafa"]},"Identity":{"Case":"Some","Fields":["mynk9J4XEI/koZG8bOnFn/uocnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b6uPylZlxjne4+49sELWV+R2vZ4xauFy60KvPoyXlDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:57"]},"IP":{"Case":"Some","Fields":["95.211.120.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde8"]},"Identity":{"Case":"Some","Fields":["mySyFJYxFncENi4HNWqem/wfDwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d430t3AUc3+cX1g+ybjyxiq+p39p98Hb36AJyMDMrZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:33"]},"IP":{"Case":"Some","Fields":["95.216.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:3d9:200::201]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["horriblefarmhouse"]},"Identity":{"Case":"Some","Fields":["myJYZZlGoHhZWZ99NhEpxPkSgk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sAKQ3zK3H5R30qGbgtnIYheLK9JR3WprwFZqwgWAHcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:22"]},"IP":{"Case":"Some","Fields":["84.168.126.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay"]},"Identity":{"Case":"Some","Fields":["myJUK6CF+OzMi20PiJe42xxubWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vuMrELDFjAHUFKtx3oQIjnvUX2+s95LexmSS7tBEqGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:35"]},"IP":{"Case":"Some","Fields":["139.162.142.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe08:e487]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer86"]},"Identity":{"Case":"Some","Fields":["mxwP4A/Z1Fvh+bCLXZITQweeNHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+9FDFBrSOrb9C+hM3iwPqQQ55G+wnDre7Bm+YuRXFuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:03"]},"IP":{"Case":"Some","Fields":["95.214.54.101"]},"OnionRouterPort":{"Case":"Some","Fields":[8186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM04"]},"Identity":{"Case":"Some","Fields":["mxLA1aNDUATz3hSfg+dS5EUi4pc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dGS6nAhN+0XruP4ywtGd5hDMYOnGfC5oVGLV31I2/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:40"]},"IP":{"Case":"Some","Fields":["185.239.222.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mwcKBL48k2TH4NlhuzVpwzRmPKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSw/xWO6y7myt9ncYOTdchIrMyNYvu/yFT/gEBtcJvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:35"]},"IP":{"Case":"Some","Fields":["185.220.101.50"]},"OnionRouterPort":{"Case":"Some","Fields":[10050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::50]:10050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torrible"]},"Identity":{"Case":"Some","Fields":["mu03O9lBXoO9z8c1/KKIF4gpRZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L6WsWliLbRg2l61ER7vrfAeXXtYI+8JdIq8mgeS0Vfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:17"]},"IP":{"Case":"Some","Fields":["45.79.218.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fed5:bb1f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1190"]},"Identity":{"Case":"Some","Fields":["muj1TtSAK5K4bsCFwq9XopzYlEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwWJmQKvROmG3vhtIVAGnx/uwgu3ZJZAylL4qY91+Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:11"]},"IP":{"Case":"Some","Fields":["185.220.101.190"]},"OnionRouterPort":{"Case":"Some","Fields":[11190]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::190]:11190"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["muQ8va6XeRGTbIr3+24rqxlaGDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gn0C3n21RPElEHF9sFRftfJ/nSOsWp3HDASMglMwvmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:33"]},"IP":{"Case":"Some","Fields":["65.21.53.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c012:66a0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay1"]},"Identity":{"Case":"Some","Fields":["muOJZCWoU5iVJGckow8t0QhbO08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LKgy4roqGcB/uY/iJh/gHWcgY5nr7VKXJoddy2gL9Tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:01"]},"IP":{"Case":"Some","Fields":["74.208.140.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fokaia"]},"Identity":{"Case":"Some","Fields":["mttD2EKFL03gOzUC+pDLq58ECpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ifgWrEV3mJ+OHjWmtMed8WjI7dhADNUE8Q30gWPS7IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:28"]},"IP":{"Case":"Some","Fields":["37.221.192.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:69a:74ab:8fff:fe06:a47a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip5a"]},"Identity":{"Case":"Some","Fields":["mtkDF92i+JjrCuDyCXbql+evkBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Fjqctq3sa5NV/BdFKwU/IFBKgfyhlTvsV+QAIjm1do"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:34"]},"IP":{"Case":"Some","Fields":["185.220.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::252]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rand0mByte"]},"Identity":{"Case":"Some","Fields":["mtKFRNrlepipEeJb/yTflIRgZxM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d8K2UZcZjk2ydmJHknhuAQt2hP4lcMe/QrfcEC+pHDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:21"]},"IP":{"Case":"Some","Fields":["212.227.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["YonderYuccaN2NoExit"]},"Identity":{"Case":"Some","Fields":["ms0haAzL5lpdWmONhag4ioXW7gU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+MBDqP4sZeSkj6aWyvFCWuUtkbJ5p7FcYj6/lKhBIDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:31"]},"IP":{"Case":"Some","Fields":["212.51.136.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6a16:1130::2:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=76000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ingmar"]},"Identity":{"Case":"Some","Fields":["msHm1tZdgDakLz9riK3Cvr3hfxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5q2G0tQPJuyRU8iRaJCCiaLXyWg06HCyZJ3WToyuLNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:17"]},"IP":{"Case":"Some","Fields":["93.95.100.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atomcats"]},"Identity":{"Case":"Some","Fields":["mrk7VCIUnl3/S+ajgU4vbZZI22o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkKYRJxYg0/K7d+Cj8hjjMe/kiy7rM2XAVVC86UcFj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:38"]},"IP":{"Case":"Some","Fields":["51.68.204.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:800:158b::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["instrdayRelay"]},"Identity":{"Case":"Some","Fields":["mrjeNizVPvAv6HptDnWINdIlais"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28jxN2hClABsGdJkFk862Lgr2Ks+fNrcaxl/o6Dp9rM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:14"]},"IP":{"Case":"Some","Fields":["76.219.192.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torexitnode38"]},"Identity":{"Case":"Some","Fields":["mrLvIinvDTZIz1+hSR3QJnILrTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ8pUNWIJR3YFFhTlNhSOHDvpUeDnVj6v+vlxLFU/TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:29"]},"IP":{"Case":"Some","Fields":["50.215.11.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:3024:1c3a::81b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1178"]},"Identity":{"Case":"Some","Fields":["mqvfWo5dVGZjqReI7P2cSEdA12E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W1aTVpTwZCCoRUHAN4TI8HPoWnCMfevBMezXQ7UzL6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:33"]},"IP":{"Case":"Some","Fields":["185.220.101.178"]},"OnionRouterPort":{"Case":"Some","Fields":[11178]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::178]:11178"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eniac"]},"Identity":{"Case":"Some","Fields":["mqsmiLyTNMcqoZ7L6uceNGqJZWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5x0NwtZSKSe1exTYTL2lb5ge9KKMD/DdUg1wj7tN3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:12"]},"IP":{"Case":"Some","Fields":["51.81.56.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flurry"]},"Identity":{"Case":"Some","Fields":["mqaS/ptq4zmxZbawNNt2kHIwXcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J63VAIr6UxQ2V2Vyccr6zL64HAO8+mcRvI6YB8fM//k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:30"]},"IP":{"Case":"Some","Fields":["51.15.73.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.12"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e1"]},"Identity":{"Case":"Some","Fields":["mqP/NeelSdIzfpYjM9Nm4QL+TVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wk1in6OAUBsUKyxIbdkk2HpeN/BFNifueSL60/m4cOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:00"]},"IP":{"Case":"Some","Fields":["94.230.208.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::147]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FromSwedenWithLove"]},"Identity":{"Case":"Some","Fields":["mqPsO9M0yJmHYs81h2EWTSJIHrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b7wBwTjP6Yo8Rvave9D1ZSTRoeI4BupeOtPFFnGN79A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:54"]},"IP":{"Case":"Some","Fields":["46.246.44.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:752:0:18::17c2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv123"]},"Identity":{"Case":"Some","Fields":["mozZzWKynbBUnioRfrLwFPWv/vE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bplP7RjUsa2GBjk4m2H/WGbEmTD680wWYl1d+wRQZhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:52"]},"IP":{"Case":"Some","Fields":["192.42.116.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5523]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["mokCuYXi9YvHQGcQQOcWWskE3UA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f5lKRfu3AOkXVkO6Aj8CriGtoLyb5zYXo/W+85wfnwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:09"]},"IP":{"Case":"Some","Fields":["185.241.208.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["naruto"]},"Identity":{"Case":"Some","Fields":["moIRT3Z9Ci5ag/9ggVtkBErCJLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOki9glWK8PgxcJJppC0ymxL8SJZgeU7VSE2pxjxtZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:48"]},"IP":{"Case":"Some","Fields":["162.251.116.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fqglu70q6"]},"Identity":{"Case":"Some","Fields":["moDLhEM6rpay9q3EBbVm4YuenQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rn8vu3pD1ExKiUuxqkI9VLIVyjJilZC9NTYn6DUmGfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:13"]},"IP":{"Case":"Some","Fields":["82.66.185.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipga"]},"Identity":{"Case":"Some","Fields":["mng8qp2roXjZhkRx6ShwRcv9xyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Syhbsa8lobSIQf0xct8iQvD3fJ9UnX8PYrr1x/PsR0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:39"]},"IP":{"Case":"Some","Fields":["185.220.102.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::246]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["D3S4RS1"]},"Identity":{"Case":"Some","Fields":["mnXMAFyg2S/9P5YAOyUkwgsFPig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MRNltQH+8KK2DdyjDoI7P6fhBJWGP+j/ZnriQN0rtLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:11"]},"IP":{"Case":"Some","Fields":["78.47.43.253"]},"OnionRouterPort":{"Case":"Some","Fields":[6080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mmZxilT79XUadBZQK6RzjO+kgj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b0WRn2/2OO3SJESr89xdYUYQQYFNGqQ75yoI1Efqtho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:52"]},"IP":{"Case":"Some","Fields":["185.220.101.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::192]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frodo"]},"Identity":{"Case":"Some","Fields":["mmMYUmoRv0DF5thvlpKILLA0eLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcBVuypfy0jPSuTf5iGV1KnFOiSieVDU2Pr1YH3zhdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:47"]},"IP":{"Case":"Some","Fields":["185.170.113.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presaultboubd8"]},"Identity":{"Case":"Some","Fields":["mkusbWsUVvs/jAkkBJ1Icumxr5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SBtpP9CptR+iKaxpemIzQc77R6KmbgK9XBRpeBX7RZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:01"]},"IP":{"Case":"Some","Fields":["193.46.254.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raktentechnik01"]},"Identity":{"Case":"Some","Fields":["mjnnOUKdvEzlmLcSV2TWwm3HP8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wvpRijboVWohaueuk1MxDLtT/wNSN4SdZVslkb/Mew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:57"]},"IP":{"Case":"Some","Fields":["144.91.124.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dcon"]},"Identity":{"Case":"Some","Fields":["mjmwt1cJ3XR/XZSn8kxr/YC8WHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zpGvn5vAubBHnosquND/uOIycZmrnREyZxQ7qaHzXI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:48"]},"IP":{"Case":"Some","Fields":["92.204.40.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["mjOPOExf06NgTjJQzPX192Kddxc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w73U6Cgyl5laX1vUaohhrBzzzp9BsPpOW6UT4EhSYQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:58"]},"IP":{"Case":"Some","Fields":["185.220.101.202"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::202]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber40"]},"Identity":{"Case":"Some","Fields":["mjB2xeuNhRULbKargfnTV5CRZZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3VswIt7YJC/51fd0HdzzoTzjo9NpUhm9lIwGXAvA3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:29:44"]},"IP":{"Case":"Some","Fields":["185.220.101.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::20]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Todry542"]},"Identity":{"Case":"Some","Fields":["mip+Vcwh3yxhcQaP2d9rNatQQTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YrkMGdtMOGNDYBMaJmI7atZpHxkEIUx8sKxrhQGvkok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:09"]},"IP":{"Case":"Some","Fields":["92.141.40.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9393]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigBob"]},"Identity":{"Case":"Some","Fields":["miDbvGWSiSFYy7GbaFwrd0UPX7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hA12ieDqR1EQR8mY8W521tHomPTuxKE0d3+dpWUx5N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:01"]},"IP":{"Case":"Some","Fields":["194.113.58.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mhOaQYgcIHRrJYpNeLQ+wcv7qdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Esu6yHVuyuegVO0n6knZRBHzcyeWl+Vn9KmQrvm/sac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:08"]},"IP":{"Case":"Some","Fields":["23.128.248.92"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::ec53:d3ff:fe97:298a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lnag"]},"Identity":{"Case":"Some","Fields":["mgqvLkO+N0TNHWzVMshh9aVo96k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ObcPbPhMgIgck2VsJL6Vu3EmO98CY78MwEWajcjC9gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:49"]},"IP":{"Case":"Some","Fields":["160.119.249.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThisNodeDontGlow"]},"Identity":{"Case":"Some","Fields":["mfeFEnhfRSNqNTIqFkOqCNxjmbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2WJOIwuGv3CoccLdccZUUu0HjibfmOJfOowO1ObdPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:52"]},"IP":{"Case":"Some","Fields":["146.19.213.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9114::149]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masterchief"]},"Identity":{"Case":"Some","Fields":["mexk/p7w4OzsPhJaIyfCd5weeUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZsW8Qi3Nzt3953URZuDXl09/cI6Q8lbC/Wyp4SLSrLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:30"]},"IP":{"Case":"Some","Fields":["46.4.66.188"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:244f::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["meunK6CO+Zo+CuTb/SeSvyoYxGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xviLKeXNIHi2PuXlxHaa6HHTceIns+lJu1bWggWCj4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.35"]},"OnionRouterPort":{"Case":"Some","Fields":[10035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::35]:10035"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["meY/Lrhgkh3544jaMOz1JFUdk8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["22iN/e8q0YMXmv9WTTWVvAVwVgEHkdWhUJFG/MCzE20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:22"]},"IP":{"Case":"Some","Fields":["180.150.77.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViDiSrv"]},"Identity":{"Case":"Some","Fields":["meJG20gLMTowErwzYwk8wmzSCcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rUS74iF6iT82lbThV/V3n7dOzSeHqO5iuohMn/riIpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:30"]},"IP":{"Case":"Some","Fields":["173.212.254.192"]},"OnionRouterPort":{"Case":"Some","Fields":[31337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:3972::1]:31337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber06"]},"Identity":{"Case":"Some","Fields":["meFSzbEvWrvgjAoupbEmzT8frF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xBMhlCiYb0v4INfFBB7sr3Gn0Tx7YmKrLV9/GchpcPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:05"]},"IP":{"Case":"Some","Fields":["185.220.101.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis65"]},"Identity":{"Case":"Some","Fields":["mduZ3yLuUrmzoydJwS7ep48Waz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nimdbCU1Di2L/WADpxAdZU0sSXLAnnRxLbAVMflGOjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:13"]},"IP":{"Case":"Some","Fields":["91.208.197.112"]},"OnionRouterPort":{"Case":"Some","Fields":[4620]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5120::5e]:4620"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyStIC"]},"Identity":{"Case":"Some","Fields":["mdq/98KOmKwIzzKEhHJMjcQjvfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G6T3MRKicUjFVXX6VAAoG60aaPmmV1FhnpUq6UAtu1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:20"]},"IP":{"Case":"Some","Fields":["116.240.187.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie0"]},"Identity":{"Case":"Some","Fields":["mdXJpacjiYbR6h13cc+BtKGSxNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["77jI1TDRbwxchwvnnUv5hmn5Nu3RakXKZ7RqMWsMLf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:46"]},"IP":{"Case":"Some","Fields":["65.108.136.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frikadellenbude"]},"Identity":{"Case":"Some","Fields":["mcyeHEv1wR1/yc8kndfgQ14FddI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bheOzhkiS+Aybz/KeK10a3E1tSxlJOnvhMKYDSWZUog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:40"]},"IP":{"Case":"Some","Fields":["65.108.135.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:32ca::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prayerfortibet"]},"Identity":{"Case":"Some","Fields":["mcWs71rI49PE3nkATzrGSbN1iRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9PaNUCEjv+SWvvZNlfQkv0lzy1XISgQcrDJb1UKB6Ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:58"]},"IP":{"Case":"Some","Fields":["91.244.181.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isis"]},"Identity":{"Case":"Some","Fields":["mbLL9u/YCs0wPoCJZWZo7yNgFc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xVmaZFtbXj/zXveQ37AUMeS+7zDVi1O8wPdN/ZdDRWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:55"]},"IP":{"Case":"Some","Fields":["188.40.159.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast"]},"Identity":{"Case":"Some","Fields":["mabt7ET3M6yvJTmzUxGPNtJzIuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqr3xjOLO1n8DO3wRV+3gmgNJLi/9+a1sz9xIQb8TOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:21"]},"IP":{"Case":"Some","Fields":["85.31.46.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NjordSkadi"]},"Identity":{"Case":"Some","Fields":["mZtKn4N6NF6qa8EcLx9wHF0R49w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4upKXkaa0NcKkIx7ueErKdOpxBJ+vLZMjsENr81exVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:46"]},"IP":{"Case":"Some","Fields":["185.25.51.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::f1a2:de3f]:5005"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["udeserveprivacy"]},"Identity":{"Case":"Some","Fields":["mZKQQAVOwe8JJ0Z+RYijeHmJHJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQkrvtoVQwmsru/ZPTvDGkXdlIru0neNQCy/IjknWRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:03"]},"IP":{"Case":"Some","Fields":["51.68.197.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plugrlogin"]},"Identity":{"Case":"Some","Fields":["mYagumWqCdtecNxwgc/Kcs9+1Os"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gU6B5zvngdcTzGU4pyx34WqEWruAbqeUyNYd6UKS1XI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:45"]},"IP":{"Case":"Some","Fields":["172.245.134.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mXPh6XMKWP26nhEtKzNC0sDZIbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jGPUDqNOq1EjR4z3gTqe3zjRUzwK848RsufHEZheWVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:59"]},"IP":{"Case":"Some","Fields":["185.220.100.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:3::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mXH1GjJ0dYtcWeHWWA7SwT4Ty+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bd6oG8+cfxNBNhrNVA6BSI8u+tPVACEye5A50cixRHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:11"]},"IP":{"Case":"Some","Fields":["185.220.100.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:2::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reeses1"]},"Identity":{"Case":"Some","Fields":["mW9M/XgTAgO4DoVKTvbKI1XGxyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TlpxUDMPgmFCZm0xcQ9ZF8fcf08iOvBziGGq8vEQ8Xc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:36"]},"IP":{"Case":"Some","Fields":["172.106.112.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mWvI8u6eFbOotla8FNPNJQvcVW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IusutdXar8j+m/3RKViy0+D4Px7/ZnOtwQuNoveO88o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:34"]},"IP":{"Case":"Some","Fields":["81.169.173.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42ce:4d00:9ee8:333a:7b86:8014]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mWaetxaJW9uyv0eh+r37/+sebcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWAfsm77XEe7V6iVmfflhfHQ4QBo+OP8G7uq/s2FY4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:16"]},"IP":{"Case":"Some","Fields":["161.35.2.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mVjslJIvElLh4dp0il7jiJzjy4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VMZCbR5QPPayvSz/9k5CBqv8PIhvbVTgK6zkNivz4nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:10"]},"IP":{"Case":"Some","Fields":["65.21.56.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bassblitzed"]},"Identity":{"Case":"Some","Fields":["mVNiwE6vshS8lr6djw8LcS07t2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ERhARU23ERpPonbl0lI1Mnz+I2tSZpezRw65RVMhhc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:53"]},"IP":{"Case":"Some","Fields":["192.24.210.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0184"]},"Identity":{"Case":"Some","Fields":["mT0x3dcu/4w/vFpImd+F4GLk4Mo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DE3Uz7qVbjeg8b89d/aDwSV2BBJOiD7KtHpnjMVaGV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:07"]},"IP":{"Case":"Some","Fields":["185.220.101.184"]},"OnionRouterPort":{"Case":"Some","Fields":[10184]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::184]:10184"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WalkAway"]},"Identity":{"Case":"Some","Fields":["mTjjqsZM6dVrdD7NiyyiNa+533Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jv/2rkeGfc/8bNmL3RJYb+5IvuJ0EVhp2MMJmTrQaOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:50"]},"IP":{"Case":"Some","Fields":["31.43.153.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["mTOfPmi8zBORvxTIIdgHZv4MWVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7TVJxcbQjNF3o+0r5z4t+hEmtxgow6Wib9AtZ2xVITQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:56"]},"IP":{"Case":"Some","Fields":["54.36.166.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WaldoTOR"]},"Identity":{"Case":"Some","Fields":["mSIUcwCA7JEG7mkS5dfYlvo0hic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ULxCniCwz/XCsZ4hwYarmJbGuO5W6SMESLULtNWsacg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:11"]},"IP":{"Case":"Some","Fields":["69.174.143.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda2"]},"Identity":{"Case":"Some","Fields":["mPt1dJMtvW/p51FpmC7fulD4YXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2IDklm/Kpm/Uf7E1a49I1wh83Sn+6Sh38dmuTQ+Wuno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:51"]},"IP":{"Case":"Some","Fields":["78.47.117.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:1c57::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["mPeTxzIM48FaRTU6/MFldHpANm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28mYJxLrJvVgfkajAWg99K2+NfGLplqqc3tLQldQnTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:51"]},"IP":{"Case":"Some","Fields":["185.220.100.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:1::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hkff3"]},"Identity":{"Case":"Some","Fields":["mPFiB6UhHQfkeXbkv0rEKWOegjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KJYZseNSEEsTpyjJrnq1R1YxiU0Kh0R/9LRjRzo9vjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:48"]},"IP":{"Case":"Some","Fields":["198.98.61.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["agrajag"]},"Identity":{"Case":"Some","Fields":["mO85gfdm+fh9fDmebdD/w4Z3Ea8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3TSZbt/w1tsw8DnTSv+UdDNnOJvOgFaQeZMcT99Ap8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:32"]},"IP":{"Case":"Some","Fields":["46.252.5.19"]},"OnionRouterPort":{"Case":"Some","Fields":[11311]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:deb8:a5::2]:11311"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpectacularFogNode"]},"Identity":{"Case":"Some","Fields":["mO4HwBk44BTDhkC2W1khYUOgUqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tDUqncH/JECeVvBwIo/uXekFqqLKqXTHLD/2NU36CF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:56"]},"IP":{"Case":"Some","Fields":["5.255.100.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:78fc::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["OMICRON"]},"Identity":{"Case":"Some","Fields":["mM3a92QZxdvLz1Eth+P5m6XyJ3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UmMkXMkiVvQjgCf7VTlZIS3tlm604WMSdPfKKD4xFhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:15"]},"IP":{"Case":"Some","Fields":["185.142.239.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["roffelpoff"]},"Identity":{"Case":"Some","Fields":["mL1HE6bR4PTHqujDTOfYQ1dtPw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aG6IPbZC/FU5nTckcELGCmuJUfvsBoP8rgc91DrnuF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:06"]},"IP":{"Case":"Some","Fields":["87.106.229.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:f6::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTITor4"]},"Identity":{"Case":"Some","Fields":["mLSSO8Y2vyERwQD2ky7jOguTfrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dwWreyPRR8UA/dSrk5PCK8dcMIGbKJwIVH9PYAxnF64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:40"]},"IP":{"Case":"Some","Fields":["82.221.128.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PerplesTorRelay"]},"Identity":{"Case":"Some","Fields":["mK5H2FHXd96DLNyiiBcGOonSFo4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wubGskOhy7NpbAGUbQUq0f5WVB2Ht56lGR3PFmdAq8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:40:27"]},"IP":{"Case":"Some","Fields":["149.248.12.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:38d4:5400:3ff:fe8b:65f6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortare"]},"Identity":{"Case":"Some","Fields":["mK4GqbssZRd4hP0Rd0r1DhtyHY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/D8dWJIdwIdVtXynGMdNLkKlO0XUt8aIEnh3qawCRCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:25"]},"IP":{"Case":"Some","Fields":["188.241.106.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maplefire"]},"Identity":{"Case":"Some","Fields":["mKYCLTndJZAtdyi2W+KOVVf1uRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u3yGDYbH0obgxT6NqvI6CmJVAPEa9U95GBNoqvMcYaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:19"]},"IP":{"Case":"Some","Fields":["116.12.180.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wild"]},"Identity":{"Case":"Some","Fields":["mJdvhNRflfiDBTBJ33ihSrYF25M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jb88ep8aXeNWjngBC0kcRF0IhAPetBQ0aDb0vPSQdwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:04"]},"IP":{"Case":"Some","Fields":["77.91.102.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei03"]},"Identity":{"Case":"Some","Fields":["mIZ/UkJQWi3VgchbHOJWCQuH8Tg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OSD07c/ONjyUCGJV1Jc+gQnFIlVD/72fnbJZjOhgKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:54"]},"IP":{"Case":"Some","Fields":["188.68.43.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:688:b854:7ff:fe48:bdcb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedominsteadofnsa"]},"Identity":{"Case":"Some","Fields":["mIBj3w+9Pbc6j+H1ggcSuV0kjHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CgA5alV8UT3YTKoT6spmGAPdcm+50Hm/sRLm3hCuoVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:57"]},"IP":{"Case":"Some","Fields":["136.243.102.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bolard"]},"Identity":{"Case":"Some","Fields":["mH0HBtQgcPHiFCqfzLVrOIeAjTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ThAsBesVLMv/EfIlb7M7tTuQvxLn5tF5HDgl8bwBe14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:16"]},"IP":{"Case":"Some","Fields":["31.131.2.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubPhantom"]},"Identity":{"Case":"Some","Fields":["mHz8Vv174rlAuR0IfIj4I4ZFNmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["evQYQWcN0AVLJiC8bAIRXC3AxZTW0Yb2RUKXMKLIH0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:24"]},"IP":{"Case":"Some","Fields":["84.239.46.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontsnoopmepls"]},"Identity":{"Case":"Some","Fields":["mHtRQACvGpQ2t6k7+bE1nFG+xjM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zh9wzWLRWstgkG1au2YA2xNI4M2yE2dvN0wj1sR0X78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:47"]},"IP":{"Case":"Some","Fields":["119.18.21.202"]},"OnionRouterPort":{"Case":"Some","Fields":[12760]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chad2"]},"Identity":{"Case":"Some","Fields":["mGEyq7XVEvr0DmN3W2wHInqKnLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x96TWWs0Fath0bPUFAFVbQ1dhlZPAvpnO2OPZG7EC68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:28"]},"IP":{"Case":"Some","Fields":["132.145.38.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilgrimgreyreborn"]},"Identity":{"Case":"Some","Fields":["mF/eh2ivFR+1dgGxd9I7XChaoS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLCw9YEK1G8daV4H6R8uiAooAJNNg+1+zYkaQzEBjMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:42:04"]},"IP":{"Case":"Some","Fields":["174.110.108.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KruemelFreedomRelay"]},"Identity":{"Case":"Some","Fields":["mFeaYNzJGdWccTbGsGzcj+OuVxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DudZ7tS1sMFaxLGNcTqz/ENyBkyRvp7Vh8OJZUQOPEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:05"]},"IP":{"Case":"Some","Fields":["130.61.48.162"]},"OnionRouterPort":{"Case":"Some","Fields":[3456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8002:5100:4d56:ebac:3c5d:a65b]:3456"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelayepsom"]},"Identity":{"Case":"Some","Fields":["mFGPdHAiFgSSgzNZmLZtxmQEwEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2SZ8HwKZygOZlixG1mCGzAGbXRVLFG5KcInEvFflgbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:38"]},"IP":{"Case":"Some","Fields":["82.39.132.97"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athena"]},"Identity":{"Case":"Some","Fields":["mE0iRNfaVDxBkVvt8dgCZDCrZr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JwRylgUVbMddgJz4p2bENFqFfg+NJmL8CdNrr5n5oZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:31"]},"IP":{"Case":"Some","Fields":["5.135.163.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e6bb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ppebBSDRelay"]},"Identity":{"Case":"Some","Fields":["mEis5lRtxBcvcOWwP9r6TuwuKnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k1z/New6TPH6yHWJGhEdL/n2PKxoO//H4Kau8Uy5TPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:48:58"]},"IP":{"Case":"Some","Fields":["97.99.232.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LadyTremaine1"]},"Identity":{"Case":"Some","Fields":["mDXVDVbHhxo8G6HIqGhl1IEM3HA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZEM5Bf4BYUP+5xgeP18ZSSEua6/SFQ9CN5qdPMXuk10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:52"]},"IP":{"Case":"Some","Fields":["212.51.141.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["mC8mHsXS19uJ19AyAAngLnUt/mk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ObwG6gBOCMMcWuS2BEwpolJo4SztfGKbzBMny6gVPug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:03"]},"IP":{"Case":"Some","Fields":["185.207.104.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809eff"]},"Identity":{"Case":"Some","Fields":["mB34goQiB6dZ+sjOV2UbjeiiHMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OkwdgOsQUMp8+K8tS/LY25vG6MbsFJox5ZVgPpBeTlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:34"]},"IP":{"Case":"Some","Fields":["74.91.26.170"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3e9::170]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission09"]},"Identity":{"Case":"Some","Fields":["mBON/T4sjInY9asR75tr/yctg7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ECxKpIi1x/VI0FqYuRrNDOzeeSOraCKT3Ooq86r2tNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:25"]},"IP":{"Case":"Some","Fields":["54.38.219.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myOnionBox"]},"Identity":{"Case":"Some","Fields":["l/wCggkSRBvC3+Os9DPkVXFLCvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0GKkG4vr43+zps5Fu83kRGYGkVwaeN+O5ewc8HT7kZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:15"]},"IP":{"Case":"Some","Fields":["89.247.206.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip1a"]},"Identity":{"Case":"Some","Fields":["l/Ua9nka0zmBziXceiYYQp8ls7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xECuRbgaRdrWwhcKvgBtRB93cqh4rSxn2GHaKpGQL9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:02"]},"IP":{"Case":"Some","Fields":["185.220.102.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::248]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nil"]},"Identity":{"Case":"Some","Fields":["l+agCRhfzypY2IRUXk4Y/2ErewY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kwhqh4b42ieAEe4pXZyoqwyhGxN4J+w4po2roWxVLww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:49"]},"IP":{"Case":"Some","Fields":["92.244.31.5"]},"OnionRouterPort":{"Case":"Some","Fields":[59001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["l+PN/cxy0xQjKKJTrZTHQjweiMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SepnCpjPqRpzv/r85OVN2sPB59EE10ZxXnfPwO+jNLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:00"]},"IP":{"Case":"Some","Fields":["23.128.248.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::8832:85ff:fe5b:13b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay21at8443"]},"Identity":{"Case":"Some","Fields":["l+NIznj5UleX2kgn/K6UwV/f+ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MAfwLEs821vWBO9RXKKemVWdvlqmijDLluB6oNR7iFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:37"]},"IP":{"Case":"Some","Fields":["140.78.100.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["l9gJ30CltBAvLElWp9t+cJthGDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0XaoK3QfjTU5jhwPoxf9LrCYHa2DznX1u96YP5b1Pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:53"]},"IP":{"Case":"Some","Fields":["185.207.104.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erasmus"]},"Identity":{"Case":"Some","Fields":["l9cQjQsC9Zr7lMOqIjDxyDSllVM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVni08wC1Y5mywi8+skbksP5mn4ALxw3ec4LdORYvpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:12"]},"IP":{"Case":"Some","Fields":["198.74.58.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe73:8ad1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi3"]},"Identity":{"Case":"Some","Fields":["l9PYP0LQzQYE3zvJvZTPyup0yCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6zbLOVzNeHn4aX2N1vq6t/88NIOIVIzZrTdxWhT8c0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:30"]},"IP":{"Case":"Some","Fields":["46.28.107.15"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldfoil"]},"Identity":{"Case":"Some","Fields":["l81Mz3avzXU0A7JBSfSa460/DCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VIqfu9/SKsz1IYYQ3aJPmm7QeGkbZk/apTAnDWRx6yw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:52"]},"IP":{"Case":"Some","Fields":["142.202.48.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeezNodesNo1"]},"Identity":{"Case":"Some","Fields":["l7xqR0c2kEiIm4QqWfkhsGAyens"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["osWKbKSpQ8eJ/29ONH0Kb/Au6FYNGRV+NiYOejM1Bb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:19"]},"IP":{"Case":"Some","Fields":["88.88.16.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["l6XAo1Uhnu7cjCv/snymmVsm9ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VFRC25Oa5BV+csuegzrSt/LcLgmgMs6fA5Xii4x1O70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:33"]},"IP":{"Case":"Some","Fields":["95.214.52.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Octogon"]},"Identity":{"Case":"Some","Fields":["l5suZ39tlIIM2NZFYm7Xdtyxy2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDmZtlt5swU2zwb8XlzH6sXEUjOIIzFomXUmDqFYjkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:23"]},"IP":{"Case":"Some","Fields":["131.203.32.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["l5QLlCZGTCS8q3B5cRwqllgA5Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mx40qukW0SkGaNwmepRAsxZCE339jiqwFIhl7tKRONY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:06"]},"IP":{"Case":"Some","Fields":["23.128.248.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::228]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["l4Gw7oHpWUEHOvo3VCs27XEBjUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7rm1F0SRzgMM4CprxdDh2uIl2+E0juCPVCcDRfaRYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:04"]},"IP":{"Case":"Some","Fields":["136.37.102.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["l3576rOCvZ4SxuC4uhXjhrFbx/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Ls+VuTbgBctenDbRKqOVYq/6iuwqS2KjdT4PZ15GjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:08"]},"IP":{"Case":"Some","Fields":["5.45.98.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:20:3467:a5ff:fe26:453e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sidereal"]},"Identity":{"Case":"Some","Fields":["l3dbVgdJwNidh5PbgtP/3g8fJM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tVKS1rnfvxcCpC6yfZpu8fz/XfEQy2TlPhqEz51XhW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:56"]},"IP":{"Case":"Some","Fields":["167.179.187.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:580b:bbcd:0:4f91:ccc9:dec9:8227]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet3"]},"Identity":{"Case":"Some","Fields":["l3VUVefcTpXw8u5mD88Rcmtr9po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xXhb433SCIV8uNnVxp5Zzrn4igrdxiQZ5Ap92mhoiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:34"]},"IP":{"Case":"Some","Fields":["94.16.122.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:4b7::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallsweatnode"]},"Identity":{"Case":"Some","Fields":["l3LvtTU5fJQsOriAT7Nc/60BJDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i2Kxjeic42Kho9G2I4r9gRKheGj98ycH10nYArn6dFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:00"]},"IP":{"Case":"Some","Fields":["37.153.1.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nopejustnope"]},"Identity":{"Case":"Some","Fields":["l21iN0D5EO/m+X5ULozoVqgs7YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ISwxg3gYx9bGZclJTzoGj89PZQ1m7227vXfwV73jTfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:25"]},"IP":{"Case":"Some","Fields":["45.33.99.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arknet"]},"Identity":{"Case":"Some","Fields":["l10TjghRwG0q1SDffyRmCAKXDKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D5UXyR8yLezMxcPUpgmPu8BI4vr2zCTGmRtXzbKhZEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:30"]},"IP":{"Case":"Some","Fields":["75.10.170.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["astolfo"]},"Identity":{"Case":"Some","Fields":["lzj49cOGza9XB9Dc7UKPKBPKKF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P1U32J4SoM4svI5wrI0k2g2QdprzQfL2RY2TkkwSIuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:55"]},"IP":{"Case":"Some","Fields":["78.46.85.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:1381::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atoratvm"]},"Identity":{"Case":"Some","Fields":["lze+sC25/mqJ8qAiCB+33ax1Gus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYUfKuYTBXXFbhNl+WtbzYYiSyeKf8sYlcIUUXzFsxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:30"]},"IP":{"Case":"Some","Fields":["37.218.242.84"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c6c0:0:151:3::84]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eddy"]},"Identity":{"Case":"Some","Fields":["lzYHUmvpyP2gPruvUn1nrm/9Zd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qfhk0AVhs5DuZpaUuXCuzvcVsyOmY0xNH5qn1OoN3qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:47"]},"IP":{"Case":"Some","Fields":["109.201.133.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Karazhan"]},"Identity":{"Case":"Some","Fields":["lzKiMF9KtYlxp4PsVtcLMN/sMQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JolENc+WAVR21PRQdm/+mQ6I25nm4To4lprXAmKK0w8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:06"]},"IP":{"Case":"Some","Fields":["188.25.224.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2f0a:c209:1700:dea6:32ff:fe77:532e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["defaultconfig"]},"Identity":{"Case":"Some","Fields":["lym0oc/oxiPiKqIvPFBPnCCpEgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AekiWoMaXUfGQX6T8f7olXapyx5yYjZjtAlpoZD1Q4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:15"]},"IP":{"Case":"Some","Fields":["51.195.166.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["memcpy1"]},"Identity":{"Case":"Some","Fields":["lx3ePD6KxNQk5UHEVPNZ8cd2qsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nu21S+wI9LJfdEnGG2F3I7YkQp6DRGDB+hw8lPMi8ZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:32"]},"IP":{"Case":"Some","Fields":["95.216.2.172"]},"OnionRouterPort":{"Case":"Some","Fields":[8081]},"DirectoryPort":{"Case":"Some","Fields":[8082]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["csailmitnoexit"]},"Identity":{"Case":"Some","Fields":["lxXIG6jFsMaYiCA191xn1tZD2+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E4jj1wx+n9U5BFnsl2KUpv/HYtlrFvzrauspWecaQ9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:33"]},"IP":{"Case":"Some","Fields":["128.31.0.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0189"]},"Identity":{"Case":"Some","Fields":["lwqIMrrs3M9futSS+NZcPAhLbxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8bzX1YgFfgFkhth/n4PKyHwGnyVij+rKK7ppnUyQS/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:57"]},"IP":{"Case":"Some","Fields":["185.220.101.189"]},"OnionRouterPort":{"Case":"Some","Fields":[10189]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::189]:10189"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RatchetR"]},"Identity":{"Case":"Some","Fields":["lwM+0c9mVi7H6de/zr7dcWhAwjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iR5orBncTJ8qEpApZjp/fXZQw6Tuq6/PW8vNn3SePjQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:58"]},"IP":{"Case":"Some","Fields":["185.117.118.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["lusjjzuTd1SUui3KLjJoLr88mYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xHQLjVkjH8scjQCbbNoDW0Gv2z2jXznfNCwFxUBjb+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:47"]},"IP":{"Case":"Some","Fields":["23.128.248.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::220]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["karfiol"]},"Identity":{"Case":"Some","Fields":["luCV1c2/w5iN63COwVU0ZHJALDI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BrM/IQABkoG/gwLcMDpa7utZJ3XvIc0yUyf4+GO3KYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:49"]},"IP":{"Case":"Some","Fields":["109.70.100.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueLightning"]},"Identity":{"Case":"Some","Fields":["ltZWOEVZkQg0z9sSjYQ/gZ1dL9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tnx0xsy+2fqaVg2horDXPv7o/uqErXNAZucUI6zMKdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:45:50"]},"IP":{"Case":"Some","Fields":["152.89.105.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:39:604:9866:92ff:fe56:17a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yopro"]},"Identity":{"Case":"Some","Fields":["ltP5ShZ/XglTt8jlmcS0fVLQlPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9XQACRid2BJHr4pLCjnycgIkYQ1e/djHKZiAwn4epU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:21"]},"IP":{"Case":"Some","Fields":["45.136.199.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay01"]},"Identity":{"Case":"Some","Fields":["lsqpF/ZbzWLOzSNvZ2Ur/Xxp5S4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EyZ/fMJN/V0I1KdgzKrLRiLRMszPWF5V4S7+jEqqpjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:18"]},"IP":{"Case":"Some","Fields":["104.37.193.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["lrfkqPYz/BBa9gMtEyEeXVdqRNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S/Yu6eJ4kG+p0Y1NCzjN/xcolyMUGlUq1EasNsU0aGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:32"]},"IP":{"Case":"Some","Fields":["188.68.52.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Florian"]},"Identity":{"Case":"Some","Fields":["lrGl3vlBFWERvFLWGsmRr9vQmx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["omxU/njtgZkaHyERZ5CApiufrLdbDbC8p2+JXYA1oOA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:31"]},"IP":{"Case":"Some","Fields":["185.248.151.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigFat"]},"Identity":{"Case":"Some","Fields":["lqBuYbkOkiko7f4Tg/5Zrv+YLcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/RKvK+hOpDmwKhCHIAQaN7qJk5Y44mcsXue6Olk8oE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:22"]},"IP":{"Case":"Some","Fields":["5.45.86.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moria1"]},"Identity":{"Case":"Some","Fields":["lpXfw1/+uGEym58asExGOXAgzjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7lffo694USblbCXQaJvFMlYKpvOMCZdHkT4K6IU8QKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:25"]},"IP":{"Case":"Some","Fields":["128.31.0.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9131]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=1-2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowville"]},"Identity":{"Case":"Some","Fields":["loq9pNnphLy3TB77JpeyAgXgk60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DJt8+hKSIVFGTwGz7QGhU9VTVq9VH7FnkwCJdoGGmhg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:31"]},"IP":{"Case":"Some","Fields":["62.133.45.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedRiderCarbid"]},"Identity":{"Case":"Some","Fields":["lnM99Sn1CmnfWS5PzBFtyTgyyR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wd2qvm4N51Yde3uHBe/WI9aanx0yrR9rWwIZS5jHdKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:54"]},"IP":{"Case":"Some","Fields":["87.120.37.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange038bg"]},"Identity":{"Case":"Some","Fields":["lmWhpuubmMV+RGpIPnXgXwU5tBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cmb3Ee9/+EtgNxkmvtn0UHCWeycC7t6Y9jMmb5LiSaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:15"]},"IP":{"Case":"Some","Fields":["185.82.217.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erdapfel"]},"Identity":{"Case":"Some","Fields":["lmGslXF3mIhPPjcn02DdmNZnJ8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GxKV3xx8ZktwsCIYtMAiL3vE3P3ArViDUCygA9lC0xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:55"]},"IP":{"Case":"Some","Fields":["109.70.100.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myfancytorrelay"]},"Identity":{"Case":"Some","Fields":["ll5bRmBZgEVbV31odecV3RziT1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PhQqOnBmkwKDKkidQMGT2FSWQl/uX16j62qXyoeqQ9I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:42"]},"IP":{"Case":"Some","Fields":["84.134.208.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r2"]},"Identity":{"Case":"Some","Fields":["llxmdUH4ih+R82BjkLHa7TZqAbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CiOqmOcO8vgEYBeqtgM4xcisLsTsZ02fgdSxjY70Q+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:13"]},"IP":{"Case":"Some","Fields":["74.208.136.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman10"]},"Identity":{"Case":"Some","Fields":["llHIAz5Rm75V5KW4wfdQTXLQkxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zo5MFRPmpu3D/uxbRamdomtH7ZQfwFzMArTY5mEeFFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:24"]},"IP":{"Case":"Some","Fields":["23.137.249.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:66c4::1]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MHcXthX9Eb34WYyEN7H"]},"Identity":{"Case":"Some","Fields":["lktOinUmOml2lUHydkVj2r3ZldI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vK6kDgLEkLWKbMxt9BEupiJcBTQvv1NmIqmlPHOHLVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:17"]},"IP":{"Case":"Some","Fields":["68.67.32.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sichermannac"]},"Identity":{"Case":"Some","Fields":["lkQAvXL4Xk7zVB3YV46RMepijdg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+URf/W4OXvV5qaNOc+Sg+KyikX1O6zL8Ezu11ZEZ/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:49:32"]},"IP":{"Case":"Some","Fields":["46.142.133.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoandtwothree"]},"Identity":{"Case":"Some","Fields":["lkODgxO9G+sc3IRMA3mnddxEv50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["we6JT+lKo5+bkj3AUL/n3zhs58A8iH8yGPXJhbPfIEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:53"]},"IP":{"Case":"Some","Fields":["135.148.52.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["93227a015ed992"]},"Identity":{"Case":"Some","Fields":["lja9T4LBHCsGhaAhXxQJnG4e4+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zf5oQy6YdXyI/Z8RRDOVM/oCufPmk+skoOJ4PIt+Z5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:50"]},"IP":{"Case":"Some","Fields":["95.216.203.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3b00::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kristallwand"]},"Identity":{"Case":"Some","Fields":["liitt1CGL5ztND3PwdAzHqAG3o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fiW3UkF71cSSDWrAI6DxN2JAYZ9sX5uW5DcE5puAEeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:38"]},"IP":{"Case":"Some","Fields":["213.156.137.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nx1tor"]},"Identity":{"Case":"Some","Fields":["lihD+/hRP1fhGQ/Uwt3wg6AMeGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R84LornOjeCJnh6Gmd3rM7Z1rPBTiQKEyE2cCDNPy5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:05"]},"IP":{"Case":"Some","Fields":["64.5.123.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:59:a000:9666:216:3eff:fe7d:dae8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange015lt"]},"Identity":{"Case":"Some","Fields":["lidZIRBdwtQbea11gEowFzi1Hkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTK9Rpw9WeFNSzl+vx4D5kE8uGVbrFtU5EEGF3+NbBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:45"]},"IP":{"Case":"Some","Fields":["213.252.245.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:2180:0:1::e308:9180]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["upsuperRelay2"]},"Identity":{"Case":"Some","Fields":["lgcGmHFNwHris3eGRiW372TjO/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NMXwunKfKWPfvtW5FP/7J5iTC22Ay6tsbftO6J3zYOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:57"]},"IP":{"Case":"Some","Fields":["212.24.100.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:d418:648a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flowjob01"]},"Identity":{"Case":"Some","Fields":["lfp1hxfRhcvB1e6ZKq4IStBBkn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gnn4Ng3GpLvOf8ii6yVrYVDPB00+G39aSP7LcOEGp4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:15"]},"IP":{"Case":"Some","Fields":["152.89.104.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:39:e7:98ab:ff:fe95:7778]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debaze"]},"Identity":{"Case":"Some","Fields":["lfIqEp/R7lv/lSGN26g4v2272n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sD3lIIQ9Ia7NdbqTDclpQGpxWEB/CdJkfR6U5f3F6Rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:05"]},"IP":{"Case":"Some","Fields":["92.243.0.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:fed6:a283]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["matimbo420"]},"Identity":{"Case":"Some","Fields":["lej4R++HmKYKgYcoH5OBMkXYDio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L+5oxorAgNDCifioqH2G4HtfddiLLIoypmZKvJHMOLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:08"]},"IP":{"Case":"Some","Fields":["130.61.161.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:697e:954b:e582:cfdf:9743]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay5"]},"Identity":{"Case":"Some","Fields":["leHxwQ6Tg8MpW8UXDf+yTTE1T/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hpd8UyossBd92zLo+OuqDDM+3z79tEoxVM2DJ6JlXkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:38"]},"IP":{"Case":"Some","Fields":["89.58.39.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:c7a:4439:2ff:fe4c:a26c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boomshop1"]},"Identity":{"Case":"Some","Fields":["ldCzRezIT9K/J6M7J2XfXgd6zb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oH1VFPFuJErWIt5FIE9+8QixIrsvCN8MVfCoVo6KbwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:01"]},"IP":{"Case":"Some","Fields":["176.9.50.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:70e6::2]:9901"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flogginet"]},"Identity":{"Case":"Some","Fields":["lbla38/t1fqm93OfI2SO0s6K3JQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f3oRA6M54055EZKfBLnRAdPiXqctkUmOuVwiaXNnvvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:27"]},"IP":{"Case":"Some","Fields":["185.100.87.202"]},"OnionRouterPort":{"Case":"Some","Fields":[31622]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["lba76CLYg6+DBYOAi91M+cQcaxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c8+mJZu8LkHriw6gMvcROAHnjy1RN8CSKyQ3Zld9yhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:14"]},"IP":{"Case":"Some","Fields":["88.208.240.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:b1::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireOfRing"]},"Identity":{"Case":"Some","Fields":["laocLkmFCyWv+S4I4fbJOtFinDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vOvWosQFhNseTdJAxCLFPMVkHyJyGof0QDgyDRmzVZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:00"]},"IP":{"Case":"Some","Fields":["5.255.98.81"]},"OnionRouterPort":{"Case":"Some","Fields":[127]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:c5a4::1]:127"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["KejeonFFM"]},"Identity":{"Case":"Some","Fields":["lYTCKErv1L2pDLl7zfLmnjv3bWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dH2mZwCPCq6R5AsvXQn6qBdPbfnDLBkLWWlbtEj1XoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:00"]},"IP":{"Case":"Some","Fields":["95.222.114.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1136"]},"Identity":{"Case":"Some","Fields":["lX+ATtXu4/vspSX8oirhUnrFa/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4uG42wtsobS1r9S7gKbpV/NG9G/u4zSYou504funsQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:14:25"]},"IP":{"Case":"Some","Fields":["185.220.101.136"]},"OnionRouterPort":{"Case":"Some","Fields":[11136]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::136]:11136"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jeissbock"]},"Identity":{"Case":"Some","Fields":["lXte8+bKg7K/ZANlVoLuLHBNq2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XmRo0Z7W2OQVyZyLhU28uiVRxdTzwEsg3wNQC97yW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:40"]},"IP":{"Case":"Some","Fields":["195.128.100.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueMonkey"]},"Identity":{"Case":"Some","Fields":["lWzVM7fDMcZ10wpQkAoul3fUJ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VwJqp2QetfmhXN/ri38vj6pP349ZnyNlz4zCR914b1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:59"]},"IP":{"Case":"Some","Fields":["13.211.32.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SDRHausSEA1"]},"Identity":{"Case":"Some","Fields":["lWsNCAJGOfnX8/MzKD7USAuAfY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mFb2xHqIdEb6CsHsRlj7Gy0vX/qPLE6pieyTxCvRGRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:51"]},"IP":{"Case":"Some","Fields":["64.42.176.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:9f80:2000:83::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["STRelay"]},"Identity":{"Case":"Some","Fields":["lWcqPT7ArpfyCKF+IS3gIRCmUI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yBFH1Ux7V5YL7DFDlnzISwQmJBqrLm8/9E5axzDqDUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:44"]},"IP":{"Case":"Some","Fields":["180.183.117.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FiveBoxingWizards"]},"Identity":{"Case":"Some","Fields":["lVT8DPmlIAVC4zdciuTpOcRZQig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VA0L1keWztvAoGYLMtPOoa6s93GdPCG9YgFmfZc0hUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:19"]},"IP":{"Case":"Some","Fields":["83.44.171.172"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[81]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["lVRcunGtIRNsQMkn8ZwGf/EoB48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dREfiWmROGSn8CpYBdBJ8lG4Mv5tOtOQM0P+Mk7Wwd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:57"]},"IP":{"Case":"Some","Fields":["95.214.53.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3561]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lUsiHP3D9WoV/jwp+F1f40uxRLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mOWoNOG7/9F+wlkEEFs9Jc4AL4xLkDc4A75uSjNzBpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:14"]},"IP":{"Case":"Some","Fields":["50.116.47.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notabitologist"]},"Identity":{"Case":"Some","Fields":["lUMpH6nN7ITZBX3sPfLSrvA/NWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WvtlFRSEskHeLVVXwnBImBHpu/4x0b4P+O0QRaVQZPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:53"]},"IP":{"Case":"Some","Fields":["5.255.103.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:4b9e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["procrelay"]},"Identity":{"Case":"Some","Fields":["lUL4/7Yn+hN5LhXnH4ZSwmgU5S8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5WQjtjiK17OBkroSN9Sl6nDla/6l2kpAAOU03VqRwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:55"]},"IP":{"Case":"Some","Fields":["54.39.86.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:7792:1f0c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chopin"]},"Identity":{"Case":"Some","Fields":["lT23CfKi3syNdWBmH5NOZEEURPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yVc/yHO0XImazjEusb94ySILXx8Krdmc7ys4QDidDW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:14"]},"IP":{"Case":"Some","Fields":["93.115.96.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:35:5488::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lTff8fNaI+9bAhtVFuPHa3cmMTE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVKwZp7h2Dc1Ib/5kOK2ddQAX5abVztYyuodPY0lTXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:12"]},"IP":{"Case":"Some","Fields":["23.128.248.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::64]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BuNGOfAr"]},"Identity":{"Case":"Some","Fields":["lTM9hiQPZAJlbS65ZxYlVjT2wAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVY3OYKcvGLjttMwrpX6qEjlr9IdmavF70t2KlgbNMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:57"]},"IP":{"Case":"Some","Fields":["185.66.91.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firestarter"]},"Identity":{"Case":"Some","Fields":["lTFzBLdIyvwl+I+4nOB7yjlVfSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8iyuXaKe9mhySCGqhcBQlZWNj9oK7y66rVB1a+ctKWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:13"]},"IP":{"Case":"Some","Fields":["71.60.169.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bugabuga"]},"Identity":{"Case":"Some","Fields":["lRHmBp3XzgKL+U1B6P9UHCTD8U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l7MvbopmIK/k87QmfF2Kmez79tzYvZJtPmF76c0m00o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:14"]},"IP":{"Case":"Some","Fields":["194.163.128.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cello"]},"Identity":{"Case":"Some","Fields":["lQ4C2zJtKBAeKShgRMVxSiBPMiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJrlEt34w5Pp8YeD0diG/jaYbPm/Dcv2M0LieJKxNr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:58"]},"IP":{"Case":"Some","Fields":["135.148.150.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FakeVolleyball"]},"Identity":{"Case":"Some","Fields":["lQE09KujKR7uTnovJlRttwcHdqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lBdOI7P64q49rju4sydAkSniWqmMxsSjv00wddefYrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:30"]},"IP":{"Case":"Some","Fields":["195.123.212.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27ac::245]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torRelayTaledoCorp"]},"Identity":{"Case":"Some","Fields":["lPakiTqAFJru63UJvvzboa5NWJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5akA1ae4HRsFYGyYzibuBMWl5RrBsWY6OHN0A2jYOHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:16"]},"IP":{"Case":"Some","Fields":["51.83.132.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::5a7f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kuro"]},"Identity":{"Case":"Some","Fields":["lPVimuXy3ECc1EZoF2WX/0gpa6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuL6zM8qFsV+2A9pt9dKNci+/xLDxqx49trWBTtLidc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:38"]},"IP":{"Case":"Some","Fields":["148.251.83.53"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:5368::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeZion"]},"Identity":{"Case":"Some","Fields":["lPNnoTApbJ65K+MuJarrfyJ94NY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VvB3P8YZXRG70SVSeMsKFQ4nKRQgdUX78KMGyJUGTCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:53"]},"IP":{"Case":"Some","Fields":["82.50.42.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["happyfunpark"]},"Identity":{"Case":"Some","Fields":["lPJTP2wc3bhf0AOPVCCbizUMObU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i9v2me0Y/pYtl3CxRhWRecanXGO2u6mcdqI7JOjBkH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:04"]},"IP":{"Case":"Some","Fields":["149.202.4.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarinaOvsyannikova"]},"Identity":{"Case":"Some","Fields":["lPFtor3boJKVT/jsKfkjSmmUlAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2+rOMl11iN+EseQOfX6eVDe19FORBhm8bKPRjqRj5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:55"]},"IP":{"Case":"Some","Fields":["77.162.229.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a446:5ef1:1:d072:53ff:fef4:ea59]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThirdMusqeteer"]},"Identity":{"Case":"Some","Fields":["lO/naSA2TZrPqLoVfHyBSE8Ky/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fyG/druRAWWQ9yrUQs36ji8mrkVU6/FsAV3CTJ80qvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:25"]},"IP":{"Case":"Some","Fields":["45.8.144.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unix4lyfe"]},"Identity":{"Case":"Some","Fields":["lOw0uHGTZQS+cGcbRHYLyZJC4fM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qdustKcCxvRBUkT4zygS/zH9TM3RCdTpdNqwNefifqg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:49"]},"IP":{"Case":"Some","Fields":["71.19.155.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:17:a800:ff:fe3e:bcf8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schweren"]},"Identity":{"Case":"Some","Fields":["lObabDeTvRbRVV2W93z7a51h5aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4niNA1/EXvhtIZH7BAUIuNz64UuL89fSb40oXX24Eoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:44"]},"IP":{"Case":"Some","Fields":["202.61.202.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lNEt91m83PlU0ZQwd2yP9Vzdk3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xm4lIGvwvnjdkKtjQwcjH+2SM0nFIPP7CcMMxQICcv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:38"]},"IP":{"Case":"Some","Fields":["23.128.248.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::34]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BostonUCompSci"]},"Identity":{"Case":"Some","Fields":["lMS3uMUMhqkraiAQdTnuJnjPmig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnX7vmfHC7X/0uQrHN7ErZRH7dpScnmTalUgWyn9++k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:47"]},"IP":{"Case":"Some","Fields":["204.8.156.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["lLcQxBuej7WS0JFucbWon/SZWZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEbgKM9R3otWmNOOAXTqg5zIWkn/HMLFKuZX+b1zwZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:56"]},"IP":{"Case":"Some","Fields":["138.201.35.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:369a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bertha"]},"Identity":{"Case":"Some","Fields":["lLLal6erpd8uBlau3BBodkdeZy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a95TOBAgbvwgxyKm1IGcd0DVbTP9n74qtD5Qd2B+1+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:14"]},"IP":{"Case":"Some","Fields":["89.58.13.214"]},"OnionRouterPort":{"Case":"Some","Fields":[3920]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SupportScihub06"]},"Identity":{"Case":"Some","Fields":["lKiXbgDGjtI2ldBmjYez5/Emr2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gDa/VKqbBqCcc3BeX+94o6d4IfKpDDx36I/BkEZKB6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:11:39"]},"IP":{"Case":"Some","Fields":["155.248.213.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["avega"]},"Identity":{"Case":"Some","Fields":["lKMPKXWx+WxmzfvzyOcsXEkyXFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W0ZQ8ZD10tpQ75oVKAi/CjZ4+Bir+VDb/A+D7nyigD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:34"]},"IP":{"Case":"Some","Fields":["185.173.235.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:b7c4:1:141f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Telinnor"]},"Identity":{"Case":"Some","Fields":["lJuWjRuNPMCX2SGBq7OMaThhKX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mkz+FBqPbk/dsjlrgyvaLwKdaub147aCuoFeAgfi4KQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:21"]},"IP":{"Case":"Some","Fields":["178.254.2.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SPFCFutebol"]},"Identity":{"Case":"Some","Fields":["lH//RWz8713KsJQi4ZRajSGu7GI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZTVrfx6+UoTXX86DJCPoq0ott5/Oj7YHN/rc4lToWxg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:08"]},"IP":{"Case":"Some","Fields":["81.17.60.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lHYvV9hoTAXrulKpTesIdG60qAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["izV4n3fftwRqDmPHL6ldCNh7VZho42cb3JmTQWfJs2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:45"]},"IP":{"Case":"Some","Fields":["165.232.148.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::a6:5000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lGHn9Pk8lykJFSs/9eSOzUX5G5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U1vko3YFPSLQdGTb9Lk/mT77utkUfYbzkY4v5q4ykIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:34"]},"IP":{"Case":"Some","Fields":["145.239.81.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["lGC9D80Q9eWKCppn+cIEGKEgrmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mebip/99byPP3eX9UgXOeUhQEx4WgRAut1MzTL3EvCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:53"]},"IP":{"Case":"Some","Fields":["194.32.107.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:171]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollon"]},"Identity":{"Case":"Some","Fields":["lF/EwkRhN5yTxRGcDc3XNd3ZQ6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["78BGtnsXb4t9qWvvFegfFyN2MgCcftRB5LhvDC8kFSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:33"]},"IP":{"Case":"Some","Fields":["212.147.124.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["lFqi9sLsZEtTPQSMeeA1ps8JLE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j5CH2OXsvtO4Q4ra9BHbPV0RUOC4b39cQQvcajTI+LI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:43"]},"IP":{"Case":"Some","Fields":["51.255.39.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:302:2100::78f3]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["lFT4LUfroMsMKkv+eWYYHb8QgUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AFMxLCsCvFXZQdiJUCJ2BAaL8tKd8QdXcqyrEeAsomM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:31"]},"IP":{"Case":"Some","Fields":["185.220.100.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:14::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perch"]},"Identity":{"Case":"Some","Fields":["lE6UfKgNHPiy6+PDJHssEZMUOLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KpQUXKZpJZ2skxZoRFoEOMzhws8+v///OTLHzCJjZx8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:38"]},"IP":{"Case":"Some","Fields":["130.162.218.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbrother23470"]},"Identity":{"Case":"Some","Fields":["lEA/+OhO/Z7urAx2A7CDS1worgc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Im/ViOzOW7RaX3M9IQTpdzERwDzc7qqr/iZfYOdHPFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:15"]},"IP":{"Case":"Some","Fields":["82.66.10.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rs1"]},"Identity":{"Case":"Some","Fields":["lDSUs4z3T73THSbZLWbVNYJFTis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MKaFCEQOKA3y61TSpyusjPFRO0cgy3vSB6i2DxwdiPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:34"]},"IP":{"Case":"Some","Fields":["37.35.107.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:2040:1:533:e23f:49ff:fe6e:1004]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["byrdeman"]},"Identity":{"Case":"Some","Fields":["lDGMwimaOCbYGJnrI8JaK31rH/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CHR9JTpvZ9venRDB7AmombKVnmSoYC4BBLHGkJzeNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:58"]},"IP":{"Case":"Some","Fields":["213.227.133.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["lCOnK7yLXGrJ3p9Xc16ysI5BVug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByO/1uP41mBFV1d9KgQm5eL7YtrcDwzrG9VtTmrFD2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:54"]},"IP":{"Case":"Some","Fields":["185.220.101.211"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::211]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["lBuoOjVB07LA6cvlsMkka1UUmR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HHwviYPvKClDZIl6oVi9t24nRu4dQRdzSEAhXSzyZak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:43"]},"IP":{"Case":"Some","Fields":["23.128.248.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::58]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kogis"]},"Identity":{"Case":"Some","Fields":["lBmFzeLcnWf+wHA6j/0GHjtLqKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdoE2fejg9Xb3Zx2pbosnh5kA2snBz0Zeeuj3Gm7Iso"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:08"]},"IP":{"Case":"Some","Fields":["188.165.236.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:b712::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Extratorrestrial"]},"Identity":{"Case":"Some","Fields":["lAdZvtpFhK2LDonY78sOtUD3ouQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["daV/Cg1cSMvQJ2mZBlbk1vxmuhcRiFG52Nu6HpEqGf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:00"]},"IP":{"Case":"Some","Fields":["67.219.105.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["test1111"]},"Identity":{"Case":"Some","Fields":["lAcEtlquXgaON7+wjS0HLgHPbmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BplKcnRd7+9Lo8g8JhdI9sKN6pIB7BaQnB2goX14GKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:11"]},"IP":{"Case":"Some","Fields":["79.219.250.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM03"]},"Identity":{"Case":"Some","Fields":["lACvUuwpKdpB5t3TtoTyNkO8MWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWYdWNCxZLUZU/wwLi14dFOiMJMTDaYOIOa2WdYyIJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:20"]},"IP":{"Case":"Some","Fields":["185.239.222.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["k+/VonQDqH5Ei14NjCcyn9bmgp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["swr3L8Eq241vVE4mgri/CWF5L78uojp722snp0Wn2ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:53"]},"IP":{"Case":"Some","Fields":["185.220.101.193"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::193]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes1"]},"Identity":{"Case":"Some","Fields":["k9O1CIpoE/Z5pCYyOuASX7T+dyg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JP2i66UkBXyqy4nzl+K0YB5DfRn5UnLZcCxReigykcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:53:04"]},"IP":{"Case":"Some","Fields":["104.244.75.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["k8DwjmYYVOedYXjI9kRpHmvVMYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3tBfb+GdJbkO7g0tAF7o94jC8C24nFUplcWGL91Jvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:17"]},"IP":{"Case":"Some","Fields":["91.223.3.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORo"]},"Identity":{"Case":"Some","Fields":["k7/D7AJav2RweavupeUQ7dz72sY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJsceYpVPyXs1bz/et3I5oiBiWGwtBKWKambKARA2qU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:46"]},"IP":{"Case":"Some","Fields":["185.101.105.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop4"]},"Identity":{"Case":"Some","Fields":["k5+z5UaRg55EnxcBMQHYrafwAG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzgKxvX7mF866kWNTVLvnhPteHRWjy7jQuOgHT7gL48"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:06"]},"IP":{"Case":"Some","Fields":["82.165.108.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["k5Em6k0lyyEqeXRsEzGU+KJMQ1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1erjJDn6A3neP26mzTKwSjEqG8gEhBBHIyEN4C05uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:20"]},"IP":{"Case":"Some","Fields":["185.220.100.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:3::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RingGate"]},"Identity":{"Case":"Some","Fields":["k5B8oltsJz9nmVns5HGXjHEtzZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1VJUDJU3og2uUVHlQi+dPiPfJVUhuIUb77uLMxzIPMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:11"]},"IP":{"Case":"Some","Fields":["108.56.237.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["k4+/1Bcvu8QkVjexnhWBymMz8X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1dddyPpl/9qEpDWCUf/ycskO2rNsVT1W6VpK2j/80SU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:05"]},"IP":{"Case":"Some","Fields":["23.128.248.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::21]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay25at8443"]},"Identity":{"Case":"Some","Fields":["k4X/E9njurk0q8umHuY+EDRuNnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gTbUW36oYnrOtpDrxOMi2xQeuPmlYf2IDD1NU2rv29Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:55"]},"IP":{"Case":"Some","Fields":["140.78.100.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perun1in1"]},"Identity":{"Case":"Some","Fields":["k4WI36DKFwLEv++IiGkYyUTUlKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+q3ch++HDiULLf0cc/RaSNxemPdhLKiy10lxkcX7urU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:25"]},"IP":{"Case":"Some","Fields":["157.90.148.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:14cb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission02"]},"Identity":{"Case":"Some","Fields":["k38gHSeXMUlT8mjSUvXJjT+p9x4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpXGUKgRfhovMna3IuncqpDQlvUNZGT3rOXd7QMuIeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:53"]},"IP":{"Case":"Some","Fields":["149.56.94.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["k3akNpXLtmwlbcyHky7oheqa9ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNL6XSOro6oPE1C20ZmWnLDEALJGRg3hU741ypFxZao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:48"]},"IP":{"Case":"Some","Fields":["188.68.35.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex72"]},"Identity":{"Case":"Some","Fields":["k3D1XUu/cvvfE8QdZci4FLQwDMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Ed1FW3ChuGS/6lFD5YMO+mkQxof9kh1zRfUWAwD4gs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:32"]},"IP":{"Case":"Some","Fields":["199.249.230.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::161]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["telephonetoughguy"]},"Identity":{"Case":"Some","Fields":["k28BNn1OW/jOH+5tUUKDztEBRaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w3xCmn/yod2eBr4uXK2WKuBroyBZmsGyWXVnCsFF39k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:08"]},"IP":{"Case":"Some","Fields":["172.241.227.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PremiumTorExit"]},"Identity":{"Case":"Some","Fields":["k2YYW07LHMNjT0ddIP3f56MCuvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnLh0JM60aTajlsL4xQ1xfSihWJz4lb5f9iA3iYRc8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:53"]},"IP":{"Case":"Some","Fields":["185.100.87.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["k1tu8L+Vf0Y7hM+KeududfxzJc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["225pVlvb7iGlDxw9Js2mhGHV15CubQG7EEIKJR+KrrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:01"]},"IP":{"Case":"Some","Fields":["185.241.208.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["k0QDswWYlVxBYCMSKZQjqAC+Ax0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W6o3m0oTL7t0cEmstbOtWtVoB21OrbLZ6eOTouYLHPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:14"]},"IP":{"Case":"Some","Fields":["23.128.248.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::25]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1130"]},"Identity":{"Case":"Some","Fields":["k0JUYA7tDq9hwkL6bsuSvwE44XI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y2ZN+a4xPNokRE5nbQB5eVxsGPsTL+KqMMXZXjq/EHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:16"]},"IP":{"Case":"Some","Fields":["185.220.101.130"]},"OnionRouterPort":{"Case":"Some","Fields":[11130]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::130]:1130"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClubElectric"]},"Identity":{"Case":"Some","Fields":["kzwenFq4AT4wBDikHERZ3v4nhJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pma2/t9lV2pRhvTgTMNbGa4InP7r/Lcqla9klT+9Ezk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:06"]},"IP":{"Case":"Some","Fields":["50.7.1.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BouvierPrivacy"]},"Identity":{"Case":"Some","Fields":["kzt0/551Y+WuPWR2f/RYLiNHItE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1NyOy0TSw509nl7UHnl5htnwyeyCFrDkylg1UlvUKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:01"]},"IP":{"Case":"Some","Fields":["62.210.189.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aRowdyRelay"]},"Identity":{"Case":"Some","Fields":["kzbZ/VWNCeIchVpS4B2m4Hu2qtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Npq5/YiNt3HQRda0YXf381xC0mHcDZrWN9Yxl1SFyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:29"]},"IP":{"Case":"Some","Fields":["172.221.117.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["kx45+D2vDB8TqqY3LVmy1x3UzaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zmeg7H5GF1Rc/eSpZgKlKCuoTLgThgX6K0DPXpAD6s0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:18"]},"IP":{"Case":"Some","Fields":["151.15.113.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLeonardNimoy"]},"Identity":{"Case":"Some","Fields":["kxx2LfpxzgUXasHzQC2GayoMke4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l6u0WxO7ufMNGRhr2dXIL/wciHg1bo5ou1yHvDZsByY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:14"]},"IP":{"Case":"Some","Fields":["198.74.61.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay35L"]},"Identity":{"Case":"Some","Fields":["kxwW6D3jZoUgcpEsd1YxEtGyseY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXfrsBnWTthZx4CgOaF7jXEjABE6UnU8UfX0Mf07bxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:11"]},"IP":{"Case":"Some","Fields":["85.239.40.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:5cc0:1:1::de78:1017]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ArcaneGA"]},"Identity":{"Case":"Some","Fields":["kxYX+yFJTtJInUgFT4ziavbXeKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZlP+mxq9DNfQJrAJ1LaQh/dDI922/b9JRbKop2ljANk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:39"]},"IP":{"Case":"Some","Fields":["37.120.167.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:4424:1482:57ff:fe2d:edb7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex50"]},"Identity":{"Case":"Some","Fields":["kxS9lQO5AUJhplwiHXflc4nbzME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LCgBxoCIbrzhCcDO9QcfAU+n86seFZ6hzr5bKJLkN0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:24"]},"IP":{"Case":"Some","Fields":["199.249.230.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e649]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrashcanPercs"]},"Identity":{"Case":"Some","Fields":["kwwyRm0P0t4zPp08PsH9NaBs9Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EkXCxvSOCDn9W6EHVMDwCPWcojyC6SE14wK1i5zyAp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:45"]},"IP":{"Case":"Some","Fields":["185.72.86.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["popular2"]},"Identity":{"Case":"Some","Fields":["kwMNY1qbdnHyfd7SjksXpuyiELI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["frs9FtKn8ltQeCgsrxbcSVF2MCWEDfBpzs6bJCkP0og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:18:08"]},"IP":{"Case":"Some","Fields":["45.58.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgravia"]},"Identity":{"Case":"Some","Fields":["kwMMIB4lHcqbYyFC3WeLjmPqybU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V33NSbzuvSmAXSFMrzkA4w9Pf46n0cKFZrdD5yn8ypI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:53"]},"IP":{"Case":"Some","Fields":["65.109.16.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thesergeant"]},"Identity":{"Case":"Some","Fields":["kv2nZHtDHjZbimSYUcNULnoMooA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TCDocSrlh1skEKmu5m2z+1FimbzfcabgzkHNkrNng8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:31"]},"IP":{"Case":"Some","Fields":["194.13.81.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:43:216:5443:2bff:fe16:c6b5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop2"]},"Identity":{"Case":"Some","Fields":["kvyHbIna+Kx+kNGomKT+PAbDLPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KWpAeQOgXtsvqusEDasWw2bycUxDcJ8lBlIAY+Q174E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:54"]},"IP":{"Case":"Some","Fields":["217.160.50.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv05"]},"Identity":{"Case":"Some","Fields":["kuTUkAuE5PsRp3HDfuuqCTHPi0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bg6vb2vP0dEeibrepo/PuUigxIIItgBA82S+PdZPRuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:28"]},"IP":{"Case":"Some","Fields":["162.248.163.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rulers1"]},"Identity":{"Case":"Some","Fields":["ktuTrhzXT0ECSiaFpHW79cSXsLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Q8Myev2Ue2da8ygFT/FlSMCwQz2fthUC7lGqJ9SgRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:05"]},"IP":{"Case":"Some","Fields":["45.58.156.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qki"]},"Identity":{"Case":"Some","Fields":["ktHcNtXQR6Two8j3vGp7uaU8xNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+9f1bjwbZGY0HsaPeWZnCCSUHt1H/VnHUTIF9CgbanE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:24"]},"IP":{"Case":"Some","Fields":["74.207.234.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fe2d:54c3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relaytor"]},"Identity":{"Case":"Some","Fields":["krijDB7xi1uMymuT5ysf5eWxjAM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["okcOIr0Q7d8EGQ1MOSfCrC+0hD5zdO4XF87NZ35M7lI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:05"]},"IP":{"Case":"Some","Fields":["54.37.75.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::8596]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0164"]},"Identity":{"Case":"Some","Fields":["krFjSn0cNd3Os04PwSKWAtCu37Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cp+yYX3ilUuefQx2GOblKQyrnHf4hUmQ+yRww2ip5O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:52"]},"IP":{"Case":"Some","Fields":["185.220.101.164"]},"OnionRouterPort":{"Case":"Some","Fields":[10164]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::164]:10164"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809ffs"]},"Identity":{"Case":"Some","Fields":["kqknko4xQzhv7LWpS9qvXJr3WeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RfHlEoa5dZFBiZVitulUOz8A1ZmlXgeMQVw+lfTPsPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:27"]},"IP":{"Case":"Some","Fields":["199.168.103.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:8e::138]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mpan11"]},"Identity":{"Case":"Some","Fields":["kqEluatJGvwITkJXtVLQ+1YJDLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xmIgzGzB9YpTkesNp6ccKoUVB63JJmBP9qSYiC1yCK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:42"]},"IP":{"Case":"Some","Fields":["89.74.86.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XoaseRelay"]},"Identity":{"Case":"Some","Fields":["kqAQOJcvNoIAsD3A0ZSyF7pEHVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g8b9kB89omnkgwr7nxCyuH2MM7PsR8vFpPJXxAoUxfw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:32"]},"IP":{"Case":"Some","Fields":["89.185.109.216"]},"OnionRouterPort":{"Case":"Some","Fields":[18360]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1ad0:c4fe:504::11]:18360"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot65"]},"Identity":{"Case":"Some","Fields":["kpvzfGV9T2nHYyTl/qdgpiSDgTs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jAKrB9KmTZALkV+/r63AtKSAYr65SeRdouWoHBMbX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:15"]},"IP":{"Case":"Some","Fields":["193.108.118.228"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:b1b1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission11"]},"Identity":{"Case":"Some","Fields":["kpu4SmgZjONeLygogShAr1wsvEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["190A8AFyR+f9M8PR+Ro90MG3uJI4lzN0DiuKjc5uBpI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:32"]},"IP":{"Case":"Some","Fields":["54.38.219.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1166"]},"Identity":{"Case":"Some","Fields":["ko86Mc5yZFHa0yMW3pHV+2+MENU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8FoWK3UzWecOloPHtxeWSHTtxZB6XSVGPgCxKLC0Vk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:55"]},"IP":{"Case":"Some","Fields":["185.220.101.166"]},"OnionRouterPort":{"Case":"Some","Fields":[11166]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::166]:11166"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BexleyRecipes"]},"Identity":{"Case":"Some","Fields":["koxHCeZjsP8VL9Hxy91qr6O1SNk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYwfpiqY5FyiTdFQDQGrv+VZ7d5vOwbkeNG3b+9Sj1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:26"]},"IP":{"Case":"Some","Fields":["38.97.116.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay9L"]},"Identity":{"Case":"Some","Fields":["koi3W1/4hh7/Mqa+iCXMOKT5+MI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Np73LU+G+inFPvQos0moazgQLBxsGk3VRJJ5BR2ctHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:35"]},"IP":{"Case":"Some","Fields":["107.189.2.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f825::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH112"]},"Identity":{"Case":"Some","Fields":["koJ1qXMGxJSyAIdqH4XR0huZmD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r12oZCPbABxEMtn6mApgiUjf8Pi8ufY6R2dQWYauxQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:37"]},"IP":{"Case":"Some","Fields":["192.42.116.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:212]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["knnwDUw83F0/RuqDf2z1N7wYbNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f8iwxcgC9OPjn0rWOUdGNzNLbw2IpX3+8epF0QmehUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:39"]},"IP":{"Case":"Some","Fields":["185.112.144.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["kmXFHSdp4lPEe6VUZ1JwoP57J3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XIKiiJsWofPhNWF4ngu7Epl8oWosagMkF0UK/OJK5fY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["185.125.168.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:42]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NSDFreedom"]},"Identity":{"Case":"Some","Fields":["kkskr6fwddBZ6O6yhMxACzPT0DY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+CdwxrvmFSUmP6f9ugIjM6Eg4lHrPX1BJ/ZcHirJDEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:27"]},"IP":{"Case":"Some","Fields":["96.253.78.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kke1Tc1JF029gXqnP9begE3+wsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F4XWVJhkrra5uwct7BklL3LYr1Z6MmcQVDN0krXX2Nk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:38"]},"IP":{"Case":"Some","Fields":["185.207.107.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atapihidden"]},"Identity":{"Case":"Some","Fields":["kiU69kDy+eLhLMA5Kygey/8UL+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thFaLNQMorLWSQesSn9uyaP150v6yRZ0I4/YZsH2+y4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:57"]},"IP":{"Case":"Some","Fields":["178.255.47.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["khBUjbSYo/jgzuYUKUwRWsTa0a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2OAfzqDwi9Roq2dTLFeTkNDGKGyY8zINATG14FZLdaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:02"]},"IP":{"Case":"Some","Fields":["185.220.101.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::193]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oOoOoOo"]},"Identity":{"Case":"Some","Fields":["kg/wkNioU5RuQHJBkW9srokL9iU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8gNENNIg6NMaIB5v4OxAmOLnxIZIZff7D15NAtBBsuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:16"]},"IP":{"Case":"Some","Fields":["89.39.104.175"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libre"]},"Identity":{"Case":"Some","Fields":["kgmQVuy0qPWlxH+ryfp4zvQ9oqo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QjGOF8c1XBwphJXxq/NofepRbX7zIKYOHBNXpPOnlxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:43"]},"IP":{"Case":"Some","Fields":["89.58.8.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Krishaw"]},"Identity":{"Case":"Some","Fields":["kgfwCWMoJc+4H20yOAZ8LJ9o8C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4XtOgqchFamxmYbxG+aBxBhSEqygwCqB5y4xotrA2og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:32"]},"IP":{"Case":"Some","Fields":["151.56.176.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["kgYos3wFuCswWOO+d4phygTwNho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HE2qEygiN4adrWC6hTzjMWGAZdHcbLMUduuPDkpK2pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:44"]},"IP":{"Case":"Some","Fields":["185.229.91.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:36c::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lowFog"]},"Identity":{"Case":"Some","Fields":["kgS8B2S9tA3o3kpWsMSux8K0nYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VhwdRqV8Nf3lbxVF27TzAi8O5rqBzXIGdjMPOUN3tAc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:56"]},"IP":{"Case":"Some","Fields":["147.135.16.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission06"]},"Identity":{"Case":"Some","Fields":["kefKa40KrXfHz7j+olv09G2hBCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o/p+tej3HLpJQn1j8S7IeQ/2ROXlGd55uTOTJ5tCbW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:06"]},"IP":{"Case":"Some","Fields":["37.59.76.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CryptoHouse"]},"Identity":{"Case":"Some","Fields":["kbq1TGkjRU9OXtxZMTxFACsjhmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9EZdrC8aONjkJoZnH/ThuvzzKiHhUkdYPkl4TKwTLq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:00"]},"IP":{"Case":"Some","Fields":["185.228.138.252"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:409:748d:52ff:fe41:cdcc]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ka3N/KgwobutOhA3eyXWlakr8lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6t8+qhCqsh/pJEan/aBmX7eQdICAf/R6gZZjEoUbPHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:48"]},"IP":{"Case":"Some","Fields":["145.239.158.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TeutatesTOR"]},"Identity":{"Case":"Some","Fields":["kas3qcK/78kWGkhvcXkUMWCRf60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rnzS8nMljNrBrsRpm2beVuQQFY6s/MqJTwfFYCU0oWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:20"]},"IP":{"Case":"Some","Fields":["78.194.2.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eficommander"]},"Identity":{"Case":"Some","Fields":["kZWCfqT9z7fQBB0sn75Vr1sfOj8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m0I5qgln36wtGDCviNDv7ui3rJjkyJ8bRX7pd6E449E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["54.213.206.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Kenrelay2"]},"Identity":{"Case":"Some","Fields":["kY5x4tQ5YeciIZc3jH/unhUYsuU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wcI1ZNvAJsopv2HJMwLYF/mwohuibJ9rTBcROnjvuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:31"]},"IP":{"Case":"Some","Fields":["178.17.171.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:61::8695]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chooThaineha"]},"Identity":{"Case":"Some","Fields":["kYknIPkmLLN7kacXbT0igPevFL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oqjtA7H33ltagMSR9NeAzpz7GEv/xKgoHLAdhBHdJ24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:40"]},"IP":{"Case":"Some","Fields":["46.4.66.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:2459::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oldePika"]},"Identity":{"Case":"Some","Fields":["kXHhXr9mV2j4764icdR9kixO7UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Uc8pOToH8dJpEPCHt6j0SCN3wCUQDoTQCjQQp9OkZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:47"]},"IP":{"Case":"Some","Fields":["51.15.135.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:1b36::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier1"]},"Identity":{"Case":"Some","Fields":["kXEQHnCa3liB9eLKEQDUBEtEJj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2alpMYPxIRBfObNqfw7KgSOQDoazHt4XD0kplkDDwWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:40"]},"IP":{"Case":"Some","Fields":["95.211.138.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["defcon777"]},"Identity":{"Case":"Some","Fields":["kW3DGZ9jkWjNIK7E1FlpJo6Adpk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oZIGPZQLAVF5ga5Jv11YuH31jx7w+UcSQ1T2jh4kQzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:34"]},"IP":{"Case":"Some","Fields":["148.251.136.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:210:400f::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp3"]},"Identity":{"Case":"Some","Fields":["kWQkj5yaYv8iyTaF02XqdHigASM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOXJq3Z/TengG34GDD8R6E11KhYSZ/N+UdInSRkhq7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:21"]},"IP":{"Case":"Some","Fields":["185.220.103.119"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay39L"]},"Identity":{"Case":"Some","Fields":["kWDTtizdeBQqsL+kJ24XQJV18+Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4HTcVVdbqVe/qgtDebCR0ugmu+ijeOm4c4hAtfdyxJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:37"]},"IP":{"Case":"Some","Fields":["45.90.58.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9406::155]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pikachu"]},"Identity":{"Case":"Some","Fields":["kWCl2pAhP+uJnqvTokp4xM3KXeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDFrImMS9C+8vmapVuI0CjWh1lCYDB4d/6RMeuvo75s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:30"]},"IP":{"Case":"Some","Fields":["133.167.74.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:3a00:202:190e:133:167:74:94]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD3"]},"Identity":{"Case":"Some","Fields":["kUxD0oz+TXglhKfRCJpQiy+SGLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFv8i+7XMKdqxdZX+y1zKAJAh1E8gZrF4eCC/K8eOOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:10"]},"IP":{"Case":"Some","Fields":["185.104.120.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::30]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0146"]},"Identity":{"Case":"Some","Fields":["kUs6s/zznOvhX/90PArBYUWR6WY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8rjNG+p2UBYkGPj5LoiB+f3d/Df5NVKIkXOtxdJ32ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:26"]},"IP":{"Case":"Some","Fields":["185.220.101.146"]},"OnionRouterPort":{"Case":"Some","Fields":[10146]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::146]:10146"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP06"]},"Identity":{"Case":"Some","Fields":["kUkKB928O53RRiKJlb3/o1VSuig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3CAFqEcw2ot9F3sb0PcPU/GFFx9968y7TX082lK6ZAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:50"]},"IP":{"Case":"Some","Fields":["15.235.29.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::36ee]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TomatoSauce"]},"Identity":{"Case":"Some","Fields":["kT17aZIw9yaB5WJqlKyvb7xs40Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XsOxmXUTsqfUAv4YhO91y8+7Vy7ECWvHivJMGvsDG8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:49"]},"IP":{"Case":"Some","Fields":["104.217.251.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dakkartor"]},"Identity":{"Case":"Some","Fields":["kTkx7F8fnMuWTX6sGt2YaWhEpSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/JeL3Jfq3XH9AG84p7QNvd/gGvCUmY5AvJ/kYtAnnVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:22"]},"IP":{"Case":"Some","Fields":["178.162.154.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchyLinode"]},"Identity":{"Case":"Some","Fields":["kTOVUOIt6m4U3Ywz3syHAuUAxmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3krYbKna4VIEHTbiIKpTAjDDj06tvF7q7TVIaWWRe/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:43"]},"IP":{"Case":"Some","Fields":["172.105.93.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:92ff:fe9a:1f81]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Myrtille"]},"Identity":{"Case":"Some","Fields":["kQzhRCmIdIY5GeT25Y/SZ8H+rnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZtlLQJzjHPGrDNzFgM3rdkr1Ri4UXtr6XwpxHT3DH5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:23"]},"IP":{"Case":"Some","Fields":["212.227.206.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:1f1::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1fdaf44b188706"]},"Identity":{"Case":"Some","Fields":["kQc0wwfhvQQPOChRS+VzRiR6dYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VS0eZvU1CYYb9O9jPKmQGhL0QHvoaQC9y/Rp2+0J1rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:27"]},"IP":{"Case":"Some","Fields":["65.108.248.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:b0ec::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marylou2"]},"Identity":{"Case":"Some","Fields":["kP2DDDV6UQmrPFBSh3E/GsgRF0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XdoLB1Gh+IUM515uiNpu+VmYYd1kkXAzh4w2EqL5PM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:39"]},"IP":{"Case":"Some","Fields":["89.234.157.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2608::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moukari"]},"Identity":{"Case":"Some","Fields":["kOUKsF2UWG0P7SRrAdYyx5y3YRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CTlfTXcokszElChj26NixOo9zvAb6Q/uMSB0yGeG6Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:01"]},"IP":{"Case":"Some","Fields":["84.249.29.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AkashaShrooms"]},"Identity":{"Case":"Some","Fields":["kMIAAYDZWIx2QehlpEirwU9AVH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aK0OqiXh7cCxtcq5gyy/yHzKG0o9/a1FhUUVYnP7Krk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:19"]},"IP":{"Case":"Some","Fields":["37.187.104.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:386f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coTor"]},"Identity":{"Case":"Some","Fields":["kMHo3dM+retnraiMDhNpj/h4rlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JGryiLDcswo6w5jv9YqghaWEalx0Rpme3nUEvMl60OA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:16:38"]},"IP":{"Case":"Some","Fields":["95.179.247.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MegaRobotMecha"]},"Identity":{"Case":"Some","Fields":["kMG8EN8IGgHVDjgtcnGVXgH89sk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BR4SLahHBKShfHWtJgZSuEHSJ9DwP3ace46KSF46vkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:46"]},"IP":{"Case":"Some","Fields":["45.79.92.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:febb:6d1a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex69"]},"Identity":{"Case":"Some","Fields":["kL9xR7Qiobq++lA2VuvReYdCREE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hnUY7fgpu+yha7CaSyang3vQRbC0gdHBlb3EshzNsd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:20"]},"IP":{"Case":"Some","Fields":["199.249.230.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::158]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowball"]},"Identity":{"Case":"Some","Fields":["kLy/c3B5u1BHyyrq5J+8G6kbXts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LiFFNvEx+hXIeVXFx2WRqYoJP2Ex21FIGZIlx7u0BZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:09"]},"IP":{"Case":"Some","Fields":["95.216.13.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:d54::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["kLv48wiFeUCFH1Skw9Xb+UnVJjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UTlAqpSsszMSeGYQzcqv/aVgdHL0AzsEqvaOx3Dxzgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:26"]},"IP":{"Case":"Some","Fields":["188.254.194.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Uranium"]},"Identity":{"Case":"Some","Fields":["kLgYkC1CgApeXzGiwNmisLMerF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXFHQLJoJjooz171kweQ1SGEUxiOvGyRz8JbWkOVca4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:18"]},"IP":{"Case":"Some","Fields":["185.36.81.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Haxalicious"]},"Identity":{"Case":"Some","Fields":["kKrGJFOIqanscFCBB3VQMAT+QL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HM29HHnCieSoh3d6eV6evTNpNa4NfBqzUouNawRrZpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:36"]},"IP":{"Case":"Some","Fields":["23.88.131.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kKg9Om1TYZIRkJ6W7cMMkQZ2oys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GzU4YN8sMsCEFs5uhBVHroSnyAvLKvLxMr2hbCuoxuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:13"]},"IP":{"Case":"Some","Fields":["37.120.165.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor09"]},"Identity":{"Case":"Some","Fields":["kKXRNVxLWEDpUOth5nOGOmrjrKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iQcm3NRhkR1NUddlsCuBMsC+Y05A8nnCVuxvWufxVJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:36"]},"IP":{"Case":"Some","Fields":["54.37.139.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1b8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleTorRelay"]},"Identity":{"Case":"Some","Fields":["kI1QsXyBrXlKP7EkNzxtRYQ3xn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m50fpIxgjpWcGS/QAu5n2Dlm5uyDWLSsDrUAR1EfejI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:54"]},"IP":{"Case":"Some","Fields":["130.255.78.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kekw"]},"Identity":{"Case":"Some","Fields":["kIWjB4P7s436ls4CTtxaD59fqiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mIhjLkvoprVPC9ecS15k8QORSWlWLYIlX5rjdauU57U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:25"]},"IP":{"Case":"Some","Fields":["209.141.37.233"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["kIV+C1kSBjr4dw0MJEIkaXxb2Hc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EagLabydu30lRmQR8OdiiRVdNjBPRxFLH54w8pXEyZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:32"]},"IP":{"Case":"Some","Fields":["199.195.252.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["binrlogin"]},"Identity":{"Case":"Some","Fields":["kG80DCl6Zvyf813cki9dW5cSyXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K1MhcrdSPYFWQ9rQ2xq6V9ZkgxArRsFlND/GuNI/O80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:38"]},"IP":{"Case":"Some","Fields":["23.94.134.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deeno"]},"Identity":{"Case":"Some","Fields":["kG7RAX7QRJsC4RXxe3QFso8gr9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5RIcMNrnuNf9ReHn/fUyVy7u65yGwI9NgZZvnoll/5M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:45"]},"IP":{"Case":"Some","Fields":["193.203.202.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thanosdidnowrong"]},"Identity":{"Case":"Some","Fields":["kGpC3YgKLL7dUvPyj+n5Qqhl9xU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+SysLgsWW5TYQyCPSZ9AI+FhxBr4DR7It8jX2VJjPQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:49"]},"IP":{"Case":"Some","Fields":["173.255.250.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeoR"]},"Identity":{"Case":"Some","Fields":["kF63emOFfm788E1zSlR7CZXYXDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2xYuYIFOr6YYbW46WtR0/bQTP9NQLuExtRkikvvRzUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:13"]},"IP":{"Case":"Some","Fields":["3.225.115.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun03"]},"Identity":{"Case":"Some","Fields":["kE8256/mNG9dHWaXH5IP/MR98SA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy7KN6vGx4ydo/nAudW337M44ROn6XJjsio8KSvAboM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:26"]},"IP":{"Case":"Some","Fields":["94.46.171.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buenoairs"]},"Identity":{"Case":"Some","Fields":["kEmSg2qs3nL17dVsKFT1/0GaDto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["djiBAdVVu5jP/L9j7ZmUTKUNbAzXjDnjYhCXirFkXm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:39"]},"IP":{"Case":"Some","Fields":["190.103.176.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nottryingtobelame"]},"Identity":{"Case":"Some","Fields":["kDymfQ3rdM+7AUMoQKJsuMbBj98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eGjJ+VrfxzY7Nsho/ivBV6h9mtXmSnN6oznxIsudvkA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:49"]},"IP":{"Case":"Some","Fields":["72.23.65.169"]},"OnionRouterPort":{"Case":"Some","Fields":[8503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torelka"]},"Identity":{"Case":"Some","Fields":["kDoqeZHIOOcP9aWGzTh3SbNYlmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6K+yf4SAZVr7gC8W812o9J0UZjbSnduoG6TbkyFL/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:36"]},"IP":{"Case":"Some","Fields":["51.15.219.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a4:1b34::1]:9111"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zebala"]},"Identity":{"Case":"Some","Fields":["kDM8198mAb5zVXdT3um0yERLXko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zpbigbOaf8NIlFUVBMsDjqAIFmBo08LGO7zT/dJIi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:30"]},"IP":{"Case":"Some","Fields":["95.211.208.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip5b"]},"Identity":{"Case":"Some","Fields":["kCoTOZ8U/8fikSRjMAx4olwfdrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ON3f08to1BtGtldcV249JdLHJYcnLfe9+mmzQab6SNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["185.220.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::252]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catan"]},"Identity":{"Case":"Some","Fields":["kCdz44FiC3PTeb7OkZtsL7rCvi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFC1W4GuHv9vaACh2sbeBxsE5TkmXg3NV6Eq/VqaXgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:14"]},"IP":{"Case":"Some","Fields":["185.10.68.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Gilgamesh"]},"Identity":{"Case":"Some","Fields":["kCHJZ/k7VpirH1OQf30Plqn7IGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+fRRFYU0YfSrrI6B8/1OAUjUFN4DiiUthidZLWM5VC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:15"]},"IP":{"Case":"Some","Fields":["94.23.121.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:4251::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp9"]},"Identity":{"Case":"Some","Fields":["kB45sYzFm8sYq8l91j3Enz33QBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7A+j+TqI13PPWk9ZA0zeifBJE86NAcVUXiamclcR7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:41:36"]},"IP":{"Case":"Some","Fields":["185.220.103.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DonateMoneroi2pd"]},"Identity":{"Case":"Some","Fields":["kBON2yXB4RkAeu7Af2lVB0qhfa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mzbpPAZjjdf727S5/zeXshPAZFbmMIUje1l1ZU+ixg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:15"]},"IP":{"Case":"Some","Fields":["185.123.53.75"]},"OnionRouterPort":{"Case":"Some","Fields":[896]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra89"]},"Identity":{"Case":"Some","Fields":["kA9UsdSDpmiVnpdvN+MnwRIuyBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83WEE9GeHhed5MabVTq2J/k2Z6oQTYaU8DLED6HzLbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:42"]},"IP":{"Case":"Some","Fields":["185.125.168.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:210]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["j94mWIeqdB9HjcnqP0AmJXcNna8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8oAT5T5BjN/hchEZZkQvAUUOtziG7W0rXFQVb2nrAHg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:40"]},"IP":{"Case":"Some","Fields":["88.208.215.96"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1ee::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xeracition"]},"Identity":{"Case":"Some","Fields":["j94HN5j/N48w2VJNPFvvX2nL3tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+OXJTBpf5EE5bRbc4q29QNauxgObiTgAauAsVZ3LMq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:57"]},"IP":{"Case":"Some","Fields":["212.227.115.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN02a"]},"Identity":{"Case":"Some","Fields":["j9O69eFOvhEk1iU9WYgq/hwrm44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RQqbjOXOrZQtgPLTvpI0NZB+gX9RwgQVbR3dHHH5/p0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:07"]},"IP":{"Case":"Some","Fields":["217.182.196.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["salope7"]},"Identity":{"Case":"Some","Fields":["j7DC23kTI2TKbn9ty+PkDDJ7sz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["epM3bpKv+Bg0T+zqi+sXCzkHVLIEx+ldo6e9E/nndMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:38"]},"IP":{"Case":"Some","Fields":["68.183.150.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD2"]},"Identity":{"Case":"Some","Fields":["j6hWTo5RyxB79IetKNdwA0sC34U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7vodW6ymYOe7bM+jDiRVLbHEVjttuWSn6XUVD8hO4js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:48"]},"IP":{"Case":"Some","Fields":["185.104.120.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel22"]},"Identity":{"Case":"Some","Fields":["j6N7kzlwFbK8WlJckISFJgvp9CI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ydUeZHlh8FxAJRTQUMZBgZ3gjXERYvH76aaOdqH61Zo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:16"]},"IP":{"Case":"Some","Fields":["89.163.128.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::abba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortenheberxx61xx"]},"Identity":{"Case":"Some","Fields":["j6C+sB+levKe9twVLVSZeSY5CjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/M1nLywvG9OGkPgLN4JKZKuMf1uv8l5UAbEEbmscAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:20"]},"IP":{"Case":"Some","Fields":["93.218.76.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9361]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shevchenko"]},"Identity":{"Case":"Some","Fields":["j51YabTFm/pdmCu9qaecSR4sAm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yEPnS+8nRBew6LOkR7z/xblb4gsHIJh8RITM/4sOHrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:49"]},"IP":{"Case":"Some","Fields":["185.246.188.67"]},"OnionRouterPort":{"Case":"Some","Fields":[46711]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GTUniversdeMagie"]},"Identity":{"Case":"Some","Fields":["j5zZN9AXe+isnifRhgT5Mhbfpqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uwCpAiYFMYVZzPG9dGlvLpEZ+jYwjSqYPw/dkmK0+pk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:32"]},"IP":{"Case":"Some","Fields":["78.159.117.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PT1TestRelay"]},"Identity":{"Case":"Some","Fields":["j5VQylWFsDdrqYMR5bad7cbpDMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6gufW/j7a0QbNhX4bAru4T9KTTlg+KpkpW0+l2408dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:15"]},"IP":{"Case":"Some","Fields":["124.121.123.12"]},"OnionRouterPort":{"Case":"Some","Fields":[15923]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jdtr"]},"Identity":{"Case":"Some","Fields":["j4uureFCh0IhL/UNwPbRO11GwH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mDA7uPDnpIGeb7od+ZGhuHWRpbG/i101SMD/hv3r5JQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:29"]},"IP":{"Case":"Some","Fields":["213.188.119.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b98:f181:1f2b:ba27:ebff:feb7:f806]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SygmaGuard"]},"Identity":{"Case":"Some","Fields":["j4nQM290RL48/7hEhLMhxIO5bCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MZzE7TyrUN4Ub7BP/Lrpv8Fr6R52+XFhrkhMPs9m6LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:27"]},"IP":{"Case":"Some","Fields":["82.64.223.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:2eb:8171:7877:c6ff:fe8f:58f8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoohBear18645"]},"Identity":{"Case":"Some","Fields":["j4krvEcVqiAc7Mj+Yxav9a1AwfI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzK6wjNnOJL/9MoF+GGEVvnDNTpfABIeYCtoHRPD6y0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:19"]},"IP":{"Case":"Some","Fields":["205.185.117.232"]},"OnionRouterPort":{"Case":"Some","Fields":[15698]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:19cb:dd92:af73:5b09:3e0a]:15698"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["count0TorRelay"]},"Identity":{"Case":"Some","Fields":["j4WeS1o7W8VSQnx4JPBM7aWNzkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X2w1tB8mV4STiRuoHWIKb/SABY+SmGtPdTxHBFgBUjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:08"]},"IP":{"Case":"Some","Fields":["188.126.189.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilaDortmund"]},"Identity":{"Case":"Some","Fields":["j34SDB1Dcf6hnjwVjBgNfeTuUFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k1/+PRQmlJJi296hJC/rFDtgupQZXCUIVn9Ntxuurcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:30"]},"IP":{"Case":"Some","Fields":["91.204.6.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigbrother23470"]},"Identity":{"Case":"Some","Fields":["j3UhztqatwWkIlTh6Ckmje9Xxw4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rDF254SkLsVSJxjFkeHERIoGR72iTNX2nJm24yVlI4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:03"]},"IP":{"Case":"Some","Fields":["82.66.10.17"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber01"]},"Identity":{"Case":"Some","Fields":["j3RGBRmedcJvdOgYveUNmnMl7JQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qMll9oIk8TfWAMA9JHCAHjZo83mySyiYlTvtJ0Ht5Bo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:44"]},"IP":{"Case":"Some","Fields":["185.220.101.1"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Logforme3"]},"Identity":{"Case":"Some","Fields":["j2p4seqRfyvyIeh9FDYcBQpwzMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9chFUoIMk7p8wP/Olp9pZM74op5OKAYfsXKBeygKgoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:07"]},"IP":{"Case":"Some","Fields":["81.225.229.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["j2US/iVfuRKnW6/RhqoThMTfSpw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9HylzbXuqzNixOe7jSil7rCTkMUeclBALsEMvjD3Jmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:01"]},"IP":{"Case":"Some","Fields":["161.35.225.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::51:e000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Martell"]},"Identity":{"Case":"Some","Fields":["j1rLQLQmKARebYykyxA82usRKj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FKasgnqDGAl208qXVPX3smVovFd6vj62QvtZ4bBPNCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:30"]},"IP":{"Case":"Some","Fields":["3.121.167.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gooserider"]},"Identity":{"Case":"Some","Fields":["j1nBtVOTKNEey9wi/uCO07vmvEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TCkzyAf0HOCw18H25Th/hxdtTRpGWP5OivfzJreXxdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:06"]},"IP":{"Case":"Some","Fields":["94.103.188.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5160::343]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["phosphr"]},"Identity":{"Case":"Some","Fields":["j1lzEpjKkjnAeijulUeU/TDwZHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5tmc/daLdmOMcY9NTYTM5wQdMSwmvExYuub4FRJF+4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:19"]},"IP":{"Case":"Some","Fields":["160.3.172.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1154"]},"Identity":{"Case":"Some","Fields":["j1LgF3rTX1kMW4OWCqEe0A9yYpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hBT92iM+7mb7zVx7wDgZY1VOimxWlukWLY2vy5E5PKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:47"]},"IP":{"Case":"Some","Fields":["185.220.101.154"]},"OnionRouterPort":{"Case":"Some","Fields":[11154]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::154]:11154"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KerckhoffsRelay"]},"Identity":{"Case":"Some","Fields":["j0SRLpN/bmSWNbbkAMljNvVJjcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pwVhe3sdwpiifhWonFQrbYAAZxf4Djj+IGQ4u78BuFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:07:48"]},"IP":{"Case":"Some","Fields":["79.250.151.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashDuck"]},"Identity":{"Case":"Some","Fields":["jzTmTliYnmQyfAjP17Gwx8T88zY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rIDEkknpN1IPgQldsQsFiCnfgKja5BYfu6CA47MvNXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:29"]},"IP":{"Case":"Some","Fields":["5.181.80.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["futrelay"]},"Identity":{"Case":"Some","Fields":["jzAVw/NwuidNPElg6kzI4UNIpSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cGkz3JreRIcJJshpFmEg4ucctbLpsbXm2it6LWTL8bU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:17"]},"IP":{"Case":"Some","Fields":["83.22.195.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["njo1017"]},"Identity":{"Case":"Some","Fields":["jyvwFknbIBXJKGirV4g9EyEeNQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nSRqHo8byP4K7Bo/3EpH3ZJ71qTXiiO+2ydd1brbwk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:43"]},"IP":{"Case":"Some","Fields":["80.142.187.122"]},"OnionRouterPort":{"Case":"Some","Fields":[31107]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra24"]},"Identity":{"Case":"Some","Fields":["jyk6ZISglzFnsVxJl6ufJMIRQ/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iu25qPMI3yCcg2bs3wU1FelQyjm0pThJgas1dVQx+A8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:58"]},"IP":{"Case":"Some","Fields":["51.83.131.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jay"]},"Identity":{"Case":"Some","Fields":["jx1w3kLHISDOjkkodBTfz5T/8fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w0UCtIdT/IWkVy9w+AsQz5Ue09he37Qq8rmlFAmdQYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:19"]},"IP":{"Case":"Some","Fields":["94.217.169.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pointderupture"]},"Identity":{"Case":"Some","Fields":["jxYinVQld03KVm13N1lheBU9uDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPU1J4n/6aGeQg8k77qoAeRs8vBTYs3OVI7kEoRjGQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:31"]},"IP":{"Case":"Some","Fields":["195.80.151.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortals2"]},"Identity":{"Case":"Some","Fields":["jxSBX7YLuyPkvEbhYuN8FCjqHM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VrKafNt1CRXF9cT3AIyKej/AGkGuGOu3juf0s0tNayE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:00"]},"IP":{"Case":"Some","Fields":["45.58.156.78"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor6"]},"Identity":{"Case":"Some","Fields":["jxOANibzkFOTHKf3+Ud4wL+Iqfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdeCcv9Jt+KLVDnKTf0e/yVxyv97EgcpI0qv1Wl/2DY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:21"]},"IP":{"Case":"Some","Fields":["193.56.240.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["jxGy4lPOxMXEY784qxymRbcpTVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YD/UIAL3OaZjUGZVowCYBlMJIh/tDu1ZMNuCfCPjw54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:00"]},"IP":{"Case":"Some","Fields":["185.220.101.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::203]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TormyyrFI"]},"Identity":{"Case":"Some","Fields":["jvdI/M8aniuWUdxqvZIfjusk+nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6D17Az7ZurAHACLXw+ILImqdXl2YwNU8wGm+GTQsBJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:09"]},"IP":{"Case":"Some","Fields":["91.221.66.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nels94"]},"Identity":{"Case":"Some","Fields":["jvBSAzMJ2FTWIGpMMPF60nyHiT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gyPo32d0UsimN015FiJOcO+HAQBjNkvyF0sSrY/oUo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:31"]},"IP":{"Case":"Some","Fields":["91.155.241.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ju2jTObW5gXtMXknj0WIJlSSMoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ih2cOxYT3uOEhXLBLZmqX/2B8MHuc3qR3j4Ns+Nf/Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:03"]},"IP":{"Case":"Some","Fields":["77.68.26.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:31b::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["juRHF/pVcFwSCG8+zR+NnIZ2/QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ENZ2WZZXFOOfgL4hOhvYOmdZgHf5ukj/2Ix8yXouB8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:55"]},"IP":{"Case":"Some","Fields":["185.220.101.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thalassa"]},"Identity":{"Case":"Some","Fields":["juKOrwh0r5sD6715tetQWeJUc1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rS/nFPiwHhgj7uXjPQID/9LtS1wXqRJIJy3bs7A1KHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:46"]},"IP":{"Case":"Some","Fields":["198.16.70.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kauwerkoud1r"]},"Identity":{"Case":"Some","Fields":["juDd5LSMBwuNi+VFKwwbyHsOsCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["woSTY+ooSr5kRMp20Orlemxu+frC0m83/IQ66xp+lOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:37"]},"IP":{"Case":"Some","Fields":["85.146.181.175"]},"OnionRouterPort":{"Case":"Some","Fields":[42219]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZeeckaRelay"]},"Identity":{"Case":"Some","Fields":["jsuIKbLuJST5or4+GGy2kPpeVXA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YQKqbZqH2nYFiVThfqMC4rwrBbqO9uyu6WNK09UHa8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:36"]},"IP":{"Case":"Some","Fields":["51.68.124.47"]},"OnionRouterPort":{"Case":"Some","Fields":[22443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jspAJbrpOS6TGIVZEqjnHtXdKZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DBswn6lGcCrOFzKmzuVEz0mDZZnCsYmNNZubLRZpPJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:08"]},"IP":{"Case":"Some","Fields":["23.128.248.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::87]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ingwer"]},"Identity":{"Case":"Some","Fields":["jscgvjO39tWaNJW0AL823qa5fSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0tyVlQfrSimZvEKL7O/ogmzgBYIoV45shDh53HFFccA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:41"]},"IP":{"Case":"Some","Fields":["109.70.100.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::9]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hogman3"]},"Identity":{"Case":"Some","Fields":["jrUU9U9JqyPisK6C7U7ynyzSgIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SAvXZwxtWneydqdcvqt6unSfSUWy1l1sogRi/E0Nc5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:30"]},"IP":{"Case":"Some","Fields":["85.204.116.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:13f0:8100:6:334:4dd:f2de:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeusExMachina"]},"Identity":{"Case":"Some","Fields":["jqyPFhfwdvhGXWTZ3IKNw5feyuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y3kbKLBp9QjMdDnjGubzDfo4buy4+s78MKuFnOTcFKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:27"]},"IP":{"Case":"Some","Fields":["107.175.44.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jqtZq4ZsuPNPH4a2c2hgxMumOz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8MHrPnyB9DQENgpot8WEnFOo9CYdmCGm6vT1p2F7T0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:10"]},"IP":{"Case":"Some","Fields":["23.128.248.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["True"]},"Identity":{"Case":"Some","Fields":["jpsLjhs+5ya9Ij3B42yXIJOt170"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2sozE77POJKr1KVKOMdIWjCy3qvmSoPwOdIkb6mKz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:50"]},"IP":{"Case":"Some","Fields":["81.169.195.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:43ed:6f00:8cb4:c347:72f5:6772]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["itsnotjesse"]},"Identity":{"Case":"Some","Fields":["jpep/bwmKi2xyHtT8Szxklhm81U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NIYq0wYekx5xickv10jfoIvYVMQpCzBEl52p6fOZjmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:16"]},"IP":{"Case":"Some","Fields":["85.239.34.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:7410::12e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lightblue"]},"Identity":{"Case":"Some","Fields":["jnrK2Hi71hCXwODVVxYPXVm85co"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ylrMam3N8Fx6tnKVknAu6c3p4NfCKAn5wD6tiU47zRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:04"]},"IP":{"Case":"Some","Fields":["178.254.45.64"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JimmyBulanik"]},"Identity":{"Case":"Some","Fields":["jnbx9uhJnM6XXEUVYFhqX4vwv9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wxyE9pcciMHYwqOJsYnFHCOn6NA8J4DdCC9U90wLy8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:56"]},"IP":{"Case":"Some","Fields":["185.86.150.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::eb42:8ae9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlGrothendieck"]},"Identity":{"Case":"Some","Fields":["jm7aeNjjq6iNh3w+N9bU8JOMe58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qNmn6y+P2rI+7Y+R9bzP3SW+vw9knEUB7OmFxT5z3WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:14"]},"IP":{"Case":"Some","Fields":["80.67.172.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:910:1400:107::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["jm582s4kGCVKhT1pUeyXhB5bB/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oW76glaA+4ngtKkUR2J4NGxQaDQenQRFNTD3kKfUyfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:51"]},"IP":{"Case":"Some","Fields":["185.181.62.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::fefe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skaalz"]},"Identity":{"Case":"Some","Fields":["jmIlvIp3DfY7IKL9rBq815WhiYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FWgTpJWhIDgmMQyx5Z50JkUjyPM6tSIHqvcYDN1DF6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:53"]},"IP":{"Case":"Some","Fields":["193.56.240.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingyetwewillsee7"]},"Identity":{"Case":"Some","Fields":["jl6pCijoiNMG+kO5IQoelGe6OuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IrQt+jsiwnUqrY0X/4cVTf4E5JtLQDkbIWIYKDumGS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:43"]},"IP":{"Case":"Some","Fields":["178.62.24.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::284:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flachmon"]},"Identity":{"Case":"Some","Fields":["jlsTJvWA0C5Tn9qr+Zo73hB3JS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vEADoFHOiNvrgt0gmfOEFN0U0q0pk3rg++5UvZD6Ur8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:02"]},"IP":{"Case":"Some","Fields":["192.196.200.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["jkd3WFR/YSZZvShkyR1kFFKDM2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4hsho0hw3HYBb7UpYt25L+Hmjs6C99Sre1e+kll8EY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:17"]},"IP":{"Case":"Some","Fields":["188.68.40.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jkCfMSd/g0MfW5ohTXrRTR6lPCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wOFrzsNusmqezcBwbs42+pnMlIqVgV9501P5HNsB4zc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:22"]},"IP":{"Case":"Some","Fields":["176.36.150.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debianRelay"]},"Identity":{"Case":"Some","Fields":["jjrbj19Ur30edP1OuZErlqz6LAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVedjgooF2kmOOLGJQHjt3z0YAg47Q4rMHf0aBrAy7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:35"]},"IP":{"Case":"Some","Fields":["138.68.9.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::218c:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["jjixHoSTNtYqtiZPuumwPHDweGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LStJvN28NB3w6Pi11LWxP3IVkr5qSdmKn3NVOV3UX6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:27"]},"IP":{"Case":"Some","Fields":["185.220.100.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:16::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gandalf"]},"Identity":{"Case":"Some","Fields":["jjgsBsogpnpbEdaOqD334IvnGPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CQOS7lqQFHibnImFhgBafXF9SPtUQDCDVh+q8zBvVXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:13:19"]},"IP":{"Case":"Some","Fields":["193.218.118.117"]},"OnionRouterPort":{"Case":"Some","Fields":[3942]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Untamed"]},"Identity":{"Case":"Some","Fields":["jeDsC8Vo/NNu2ZVyLM+0axrk0ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OiOLC4+A3WmrrNEn29sMNJeqZdu4gzzB44CMCU6z3bM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:46"]},"IP":{"Case":"Some","Fields":["107.189.7.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f2a0::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jcovoVfIDi1XSwCfGCq6lp/OezQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJDzAdmxDNwcvZc39/mwWxE26fn7BYGgUKgXCwC2O0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:14"]},"IP":{"Case":"Some","Fields":["146.70.82.90"]},"OnionRouterPort":{"Case":"Some","Fields":[12684]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alnutt"]},"Identity":{"Case":"Some","Fields":["jcgyq9ycl7i3H3SrBB08s/qVeKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CkDgSgQEonhMlb56YgbA/gP75UZwYhDB8nmOb5vlxnM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:21"]},"IP":{"Case":"Some","Fields":["95.153.31.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["analumi"]},"Identity":{"Case":"Some","Fields":["jcbh1Im8YJUR/HaHkvlm0u6MnqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWGxL5lkvh9I93ok3KWd9H/mgOQlY7acmSpmEKRwqEE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:18"]},"IP":{"Case":"Some","Fields":["80.49.184.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ameno"]},"Identity":{"Case":"Some","Fields":["jcSgYFRA8asBSOr8mY5pMdJlPYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2+FAJBsvKugrSX4TFBUqfWJkzgp0wxAbCPnG4fkL0Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:32"]},"IP":{"Case":"Some","Fields":["82.64.107.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:4d5:27c0:d3f6:2608:164c:6751]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ContinuumRelay"]},"Identity":{"Case":"Some","Fields":["jb742CRDd3AmG0x0U/KBXbf8kWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CYYKb25KEU1RZbhi2pnqkscDUl0fiPiJkzraDqV/m+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:36"]},"IP":{"Case":"Some","Fields":["71.178.206.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myawsomerelay"]},"Identity":{"Case":"Some","Fields":["jb2LkNBdHDWQRBKmThqyRQXiDm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYm87sxRP8VH97xW0W0LX0lN8dSemmZw2cu9B95ePQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["178.79.164.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:fe1c:dc8d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgCA2"]},"Identity":{"Case":"Some","Fields":["jbokgtpKKFeQxdkmK1AdTnvkpxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wqJi/DCxsHHpKx7IOXZu0aOZi1IxrpbHmt8lFYa848"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:05"]},"IP":{"Case":"Some","Fields":["167.114.144.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PikachuFlu"]},"Identity":{"Case":"Some","Fields":["jao+EI9IZTBc+Yt097sIroKBWH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Zt4Ff9VaPgTDUw/OfgtFVYNN9np0sQ5C3yFgLdVNdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:09"]},"IP":{"Case":"Some","Fields":["185.53.129.109"]},"OnionRouterPort":{"Case":"Some","Fields":[49413]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["vianullorumunorumq"]},"Identity":{"Case":"Some","Fields":["jZ9KN13op9yXTAn/3XG1zXqdh40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["10lWM8Xrn3K8Z6/dBHNp3cSGAWBObJGkHxsa+4TxOFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:19"]},"IP":{"Case":"Some","Fields":["130.255.78.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["BarryJames"]},"Identity":{"Case":"Some","Fields":["jZqcIWk23hb+bKejPXtSDXO3zAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XyGFdEsbXUK/yJWTiHp40ja2MFqvCECRwJOMkIqOWv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:31"]},"IP":{"Case":"Some","Fields":["52.8.68.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZipSlack"]},"Identity":{"Case":"Some","Fields":["jY3Qcm/1PdLc9c9WC/cR4TbfnOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4wEdmCam56bIhg0GVCNchmxT9phhB3sUel5HVN2r8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:48"]},"IP":{"Case":"Some","Fields":["65.21.195.116"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:1cd7::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zoe"]},"Identity":{"Case":"Some","Fields":["jYxy3C6+JKM0GJ9CNIf5ICOdWbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jqDBBvKXMNH9j5nrYFZs8BtHwmSKKYRAdJtJxBGvG0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:13"]},"IP":{"Case":"Some","Fields":["194.108.49.124"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["jYnspMk5KHEaC9bbgPVHoJrvLWc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZdLsQJ7NUKsZnm7IohExZYccKyBHBzscvSIQCRyHTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["95.214.53.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3560]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RAVEN"]},"Identity":{"Case":"Some","Fields":["jYlsizZ4EwMFkaANt+dyLvbEwjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJPVJmGzTA+6W6urzt1DfXdB4YSl7gnopFZ9AnOYqPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:09"]},"IP":{"Case":"Some","Fields":["107.189.11.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82b:c986:c57f:3adc:b9da]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RainbowBullRelay"]},"Identity":{"Case":"Some","Fields":["jYhzHB2dPoG1BAwSzostix0HZAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nYkZB56NBsQF/IxBYl92PGY7x8RuzSZtO9jR0nqe/lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:45"]},"IP":{"Case":"Some","Fields":["185.105.3.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myTorRelay"]},"Identity":{"Case":"Some","Fields":["jYZm76S/eFNUN4GmNBh5YKHNhzg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XuTPJaI6vn5BS5NJQcNtud8ZE4C1V16GKUiWRua9k5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:09:28"]},"IP":{"Case":"Some","Fields":["188.174.58.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:a61:3bcf:4a01:1437:2aff:b9dd:811c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thanatosDE"]},"Identity":{"Case":"Some","Fields":["jXn3Pc2R/E9QF0IvrHAHTW243YE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SkEtqXOkHXnGiqu/4ITojR+L3O0ChD0Nkb9+SHGK43E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:15"]},"IP":{"Case":"Some","Fields":["5.189.169.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pifmoob"]},"Identity":{"Case":"Some","Fields":["jWXA07EBl/1UiMphR+sNWQFOoPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["41TsNy1GzxTMhYxKqWa0R0LnxAzjOKVOe6vHgRzXQRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:48"]},"IP":{"Case":"Some","Fields":["192.184.148.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["portoloin"]},"Identity":{"Case":"Some","Fields":["jVOSof5WghHvYsyvJX2uWEqlzaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/N7gXEnGxv6A1LnTvaCSIbfKD9aD9aVy0FB9de7uzK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:27"]},"IP":{"Case":"Some","Fields":["46.226.106.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe49:506d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psYchotic"]},"Identity":{"Case":"Some","Fields":["jUGZTR0Y6UQDw/Z9BpnkydIkjUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["de37wB+uu0Ft2k9KGGDSttxuQKftzDmaBmpkbx3OsGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:44"]},"IP":{"Case":"Some","Fields":["5.9.80.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cuptor01"]},"Identity":{"Case":"Some","Fields":["jT2bv/G4NVQ7nrD1pXmiNWk1tVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8lc9mY8t+bTj1lK3USRIq56ODbNsrJATX+riIxoO5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:43"]},"IP":{"Case":"Some","Fields":["45.136.28.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:6c4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["jTRMC0PlPmRC31KnHZAB6Gkr5yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlNNd6Tlw/jo0t3GAvG/lvuINeRYckrlxS2q83hRQSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:33"]},"IP":{"Case":"Some","Fields":["161.97.97.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toph"]},"Identity":{"Case":"Some","Fields":["jSs4l4ezY2UkSBapge5A8cA0f1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/S1qulsLFWKWBR4lk7X+w/QdvcsHpo0hT8/2NWp4wm8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:04"]},"IP":{"Case":"Some","Fields":["85.214.55.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["jRFUIUvWFR8EJ9ShWOcdYuIeB2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8BzblIZva3dvcfjXZ4cF7PPZWOKbeczvJYlkApW8nc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:37:35"]},"IP":{"Case":"Some","Fields":["185.207.107.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra32"]},"Identity":{"Case":"Some","Fields":["jREX77yRJwrh/OVeIfnSUJha+rM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p1ZxE0/Q1v6DfGIoPrS6q0DiaqB0d8Kf6jmHiZ9gSj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:04"]},"IP":{"Case":"Some","Fields":["104.244.72.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raptor"]},"Identity":{"Case":"Some","Fields":["jRCF6BjQRz7Gk+OwkR/xh0Hx8t8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eiIwOYqQ5p3ErTBOxn3flvaXVwnk8Ro9m5neglLvnxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:16"]},"IP":{"Case":"Some","Fields":["91.203.145.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow009"]},"Identity":{"Case":"Some","Fields":["jQk8nCtCvCJKUxmmYKbPXt7+g58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sl82IKi6RAFihdt0Rk6ooOWbWfnc8/N7N+O0DeQRZqk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:37"]},"IP":{"Case":"Some","Fields":["185.195.71.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["jPsWrwAaKnfkCe8FHAQx0FJCleE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zPNM7eqSRaft/UzJVYh6GOZ4EB+cRv1+uqiI47rGCb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:30"]},"IP":{"Case":"Some","Fields":["23.128.248.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::217]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OkurwaRelay"]},"Identity":{"Case":"Some","Fields":["jPnRZj7H/Hm/8xrqwckH0HUVNHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EaKKliOXfvNduFnKg0AxrIz+riqeoSJT996/2qkPGTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:19"]},"IP":{"Case":"Some","Fields":["159.69.11.74"]},"OnionRouterPort":{"Case":"Some","Fields":[1050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:31b5::1]:1050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zucchini"]},"Identity":{"Case":"Some","Fields":["jPmH/0P7fz2apMTz2W/98keppsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VDajIAhDSsx59369qk1ChsmdOPaHKmFFci4HYjWBKI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:26"]},"IP":{"Case":"Some","Fields":["109.70.100.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theintern0"]},"Identity":{"Case":"Some","Fields":["jOnhg1uTP4XdnQlnRDJrX0SIeoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IluV16pM+eAbFSDI/e4tgkm89ZT0nKWNf7M3Zz42rCA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:18"]},"IP":{"Case":"Some","Fields":["66.70.190.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["jN9Kda52MaAV4CDP+dzpU2zkxWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rji4UKZD5e1d0TA2cPjmRHtB6oAyYxzxVKwY03ork5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:44"]},"IP":{"Case":"Some","Fields":["185.220.101.55"]},"OnionRouterPort":{"Case":"Some","Fields":[10055]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::55]:10055"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StJames"]},"Identity":{"Case":"Some","Fields":["jNP4AZ+vrG0YxW5R3RQ9h5TgjU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y50kQA+d+bX4OHjZPA9laKlWvzvKrpjynaLW8kFDEk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:35"]},"IP":{"Case":"Some","Fields":["172.241.224.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarkTwain"]},"Identity":{"Case":"Some","Fields":["jM7TkdLhtu0eeHafvc+3DlyRhJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eBMKD5hmh5UBV1BM15IPCJIDbPaOUxG1xGnyFfC7tew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:37"]},"IP":{"Case":"Some","Fields":["141.14.220.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["jL0vCy8LgOknw7AXukcpdtZFOmA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UlndMclMeT1w7wVPZHuqRQH+HP5Cwt/LrGXSqhl1qag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:10"]},"IP":{"Case":"Some","Fields":["80.64.218.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::f1a:87b2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy64"]},"Identity":{"Case":"Some","Fields":["jKpHC5BXWHQiA+PrRZQXGfyp/uw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DGkeSsyYn2Q86+FKs4IUmS8Lg5K8sgG1PBLrtOSx+TY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:31"]},"IP":{"Case":"Some","Fields":["193.108.118.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:d00f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Auroch"]},"Identity":{"Case":"Some","Fields":["jKFuh4KT0R8OCAPl/An5OlxmaIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n5QF8gz3Qyw7rIrOzX02rN9iwmjmn2AFIxPDWcotHIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:29"]},"IP":{"Case":"Some","Fields":["178.17.174.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashSalmon"]},"Identity":{"Case":"Some","Fields":["jJ5CdzmcYSwgMs08mMBS8NbqSWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rxH6UQ/UTebLe1r/hC4UW5wR7ZSoqEIrrnAhLvUVhuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:07"]},"IP":{"Case":"Some","Fields":["185.244.39.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["stt"]},"Identity":{"Case":"Some","Fields":["jJRK0VjkENSgZii8XpbqoLF/D58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwjKStVkey4DVAo8sT4x8Ne9xIS8GdZxAZmOW4kP6PQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:00"]},"IP":{"Case":"Some","Fields":["118.241.8.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Intrepid"]},"Identity":{"Case":"Some","Fields":["jHqYEcxsFmT0LZwr2IwURPznnUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3EJrsKypUVY7ygf4V2DxlvRZJ8u03G1BlxgrsEAw6cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:09:58"]},"IP":{"Case":"Some","Fields":["87.236.195.203"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNode1Relay"]},"Identity":{"Case":"Some","Fields":["jHg0qMVP1cUmCcWlB/NrY0ydyII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3UHns+jKONXVX+4DKnWzA2URuUa2xfiTt7+zISgg/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:28"]},"IP":{"Case":"Some","Fields":["82.77.87.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber39"]},"Identity":{"Case":"Some","Fields":["jHaWfCeR4nCRNYRvFy7XSvo8Jg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zOXH199C8ztbun1FlF9WB9LLai5xpTI4Fb4lmSTlP8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:55"]},"IP":{"Case":"Some","Fields":["185.220.101.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::20]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reccenode1"]},"Identity":{"Case":"Some","Fields":["jGL18vQvUy6j5S7VuCb6W8enlWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QCwhG3sdMnx2iVETYHr+pXOH/L5tK8wyV+2HJ+0uepU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:27"]},"IP":{"Case":"Some","Fields":["152.67.71.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["davy"]},"Identity":{"Case":"Some","Fields":["jGEiE8S1wVT6kIR/NvvzbbeKsaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8HgUXztX/pQ+23dmOn1aw6Bg+kAPfgGoT6GFkGSqO2Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:54"]},"IP":{"Case":"Some","Fields":["185.225.69.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HappyNode11"]},"Identity":{"Case":"Some","Fields":["jDWxXB8Ti95NUKl1Ep5Hc7RKUD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UOyZwQOAnPxxyPXy3FpHTkN/hi1vIN0PhOYA4Z43VXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:53"]},"IP":{"Case":"Some","Fields":["45.79.138.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["jDUoa5rP7Un7hAVrXiAQ2Ede/2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CskmZAxpYjwfLOTqWeLBkhl/6QOZdFtXWfwN7fX+V9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:37"]},"IP":{"Case":"Some","Fields":["23.128.248.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::53]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JaldoDoneunMising"]},"Identity":{"Case":"Some","Fields":["jC4wAK293L55Eut9Nnr4Cy/BpoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CK1nXcQGeeHqQ6yLOs/WS28CCm6wLtihn1V0pHtia5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:24"]},"IP":{"Case":"Some","Fields":["14.51.6.220"]},"OnionRouterPort":{"Case":"Some","Fields":[52739]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ts"]},"Identity":{"Case":"Some","Fields":["jCfbGpEpe7NiCmlyemy+5Kzhhow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CFAH7fsNOrS1tFE8K4UfivDlAFUmSGus8x1I14Gp0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:10"]},"IP":{"Case":"Some","Fields":["82.66.81.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:56b:ee10:8e89:a5ff:fe2c:e66d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor5e4"]},"Identity":{"Case":"Some","Fields":["jCW6E01Xm4qvQg4BIV6yzwaq6Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FzPidd8iqUs2kRd30uNCrDUZPXo/sMUJ5VoDm4tu6h0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:30:53"]},"IP":{"Case":"Some","Fields":["195.176.3.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::24]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra68"]},"Identity":{"Case":"Some","Fields":["jBiOcSJpNWZoOAc2O1dtmcCxc4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsRDZgOS8yYKzY/dC2jI1aOmRm6GTAh/VQ1azeW1aWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:19"]},"IP":{"Case":"Some","Fields":["185.82.126.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rmdck"]},"Identity":{"Case":"Some","Fields":["jASC3KjEpDnDVOSzAE88GnIJJK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GOYSSOPvSr+EwLQxJls/dNZMJHGw/aQixX4PFJxhII4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:12:38"]},"IP":{"Case":"Some","Fields":["90.39.100.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionmatic"]},"Identity":{"Case":"Some","Fields":["i+y7VzMYv2Bh7RECJOpjb85OWYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GczeLxZa2UhZhYyo3clajFdq/lAfx7t27k78t5JGaIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:23"]},"IP":{"Case":"Some","Fields":["162.251.166.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shadowdancer"]},"Identity":{"Case":"Some","Fields":["i+pauPld4ZIHdaGo9MNLlHp95QU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5TKCAfXGNk5ixNS4Agc1k7t4xBT09ehavYpz9b0jWKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:27"]},"IP":{"Case":"Some","Fields":["139.162.166.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Minotaur"]},"Identity":{"Case":"Some","Fields":["i9vkmBgMQSSdMjD8UJLLPrWmJII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DJIMddZFdSspGlFStBrEPUf23w0ZdJnUtjSDdssjpNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:59"]},"IP":{"Case":"Some","Fields":["72.167.47.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["branlay"]},"Identity":{"Case":"Some","Fields":["i9pf4OLDkasHs7C7/VXcgCOXhKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HSipJFKeLRWQvR/xODoGB3UWCyWR8dHehf5Yomrcds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:10"]},"IP":{"Case":"Some","Fields":["2.58.56.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["applejuicetor"]},"Identity":{"Case":"Some","Fields":["i8kRvML0D2jjFLg8xBDgqt+UUPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6GOfRF3Q95WfqhMx4bsH2IDY2ipT7b/g4grRdgbuiC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:09"]},"IP":{"Case":"Some","Fields":["202.61.255.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoloUnivAretino"]},"Identity":{"Case":"Some","Fields":["i7VaOvu35dnrgyFd7I8hnmjfm20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oHPXJ7oW47lWe5WWGowj0KRyn+sb0xWYxbTMQdNFoxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:05"]},"IP":{"Case":"Some","Fields":["95.110.254.231"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d41:200:2::e7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["i57VJefZ0oJuFhyntE0hsWm54Rw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fu7Wt1eo/RCpisKANcbHQt6sQK6hQQCPtbTLXdt3pPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:20"]},"IP":{"Case":"Some","Fields":["23.128.248.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::214]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["i44wsKSevu+WPSparCjzvTBorew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F8WWzLT4lSnZfoIfe6t/X8/tL1ANUKtkamErQptd21U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:56"]},"IP":{"Case":"Some","Fields":["95.214.54.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3646]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobtail"]},"Identity":{"Case":"Some","Fields":["i4ieBMYOMNURATGJ08KtzlIuHzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4WQ+6NHuDM4tUQC4XubnowHtVM+FtxlvfsMISa0vbRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:52"]},"IP":{"Case":"Some","Fields":["190.2.133.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex35"]},"Identity":{"Case":"Some","Fields":["i4AWm+9xRQ/EBpoZCFNSO3rqReE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cFpQ6MeVz7zcRZRBu0t6mrqP/yUcj7AqfZL198vN3Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:08"]},"IP":{"Case":"Some","Fields":["199.249.230.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e654]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockers1"]},"Identity":{"Case":"Some","Fields":["i36ajrlOlQ2qL+gILs1yIiC2xw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x8ATRP/c8r9qYSwxVRuX/Q6YnwcFjBys/hDDiMLRC+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:08"]},"IP":{"Case":"Some","Fields":["174.128.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["laurita"]},"Identity":{"Case":"Some","Fields":["i2sQoK7YlAjlCdRCLskmyJx5M9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u+Zn7f3XOKOIVcfWmwevVk4eJQ/XzsPc0PFcgeQtBsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:46"]},"IP":{"Case":"Some","Fields":["95.211.205.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["i2cyHWFahIcETERyJlQoXm08V2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLprInn0dyDnoaZADyWtQ0b1lL/D8DFbpgtITf81PwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:17"]},"IP":{"Case":"Some","Fields":["5.45.103.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:5:c437:17ff:feca:57d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["i14oLQp9oW5kTRer48njehT343Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ri6ISEWnyuoM/1mBYPVu1bmGG8zYEt72Y8GFmjQTeRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:35"]},"IP":{"Case":"Some","Fields":["104.152.209.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim03"]},"Identity":{"Case":"Some","Fields":["i1oZsVltrUyJ4CW+LLo0JK6UNpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FbwDyxaz6ERfIrIT4xRXna3WxtCPqguwgE2AY9NA3xs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:28:00"]},"IP":{"Case":"Some","Fields":["178.27.85.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9029]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spellunking"]},"Identity":{"Case":"Some","Fields":["i07LdZ0Tv2d4rKpS1mbrKj59Lu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rtHwxot9gWdEtM07/sSbtB3ePaAT16ie9pabQrlw3+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:33"]},"IP":{"Case":"Some","Fields":["91.223.82.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freiheit"]},"Identity":{"Case":"Some","Fields":["i0lvPvO/XMMqTCDs2+wqBufqQ1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixWWC3pfnl0fj5VKQdzo518D+f8F01I/lLU25FshPC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:22"]},"IP":{"Case":"Some","Fields":["217.79.178.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:5bf::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ooooFUCKoPUTINoooo"]},"Identity":{"Case":"Some","Fields":["i0YJufOLsMnIv4RqFOvSExp2oW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cQd9JI9kgzxWKQVpQEyekMFEMkaJgKztCX1Yt4vp438"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:16"]},"IP":{"Case":"Some","Fields":["79.205.236.47"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FTheFeds"]},"Identity":{"Case":"Some","Fields":["i0B1uRGUyfB71IVu+waabV3aeQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A9u7GzZ76kuzFivRhCxdFYyNGoB6V4jOKrRzCv9ZNxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:38"]},"IP":{"Case":"Some","Fields":["172.10.228.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tanveer"]},"Identity":{"Case":"Some","Fields":["iz7dqxm77Q/xespvemG4fc77J7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0pf1j2AqEqTdLKaqzUkGwIl1ATfDyrhbPFG3fk7Gng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:28"]},"IP":{"Case":"Some","Fields":["143.198.183.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ConcordiaConstanzia"]},"Identity":{"Case":"Some","Fields":["izoH2RVedrtK6SLI+Zrjq32I3SM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iPY7KrwRfsZL3GfNRhBjvsgg/Jvn9VugDBjnFZ6+ge4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:57"]},"IP":{"Case":"Some","Fields":["46.38.232.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iy6yu1OdC4enukvhZ3plAaBLiJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H6s2ZkwYQA/ZJIb90JFEtfcpTGVj5Kwtji/aumyeML4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:44"]},"IP":{"Case":"Some","Fields":["109.201.142.53"]},"OnionRouterPort":{"Case":"Some","Fields":[48794]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["ixmnmOnUzYgBNXzRVqVczURI+70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00qn3VZaEIxMDLrOpMgSNTobph/il1Xw3BHDGldC73w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:19"]},"IP":{"Case":"Some","Fields":["23.128.248.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torNodeCom2"]},"Identity":{"Case":"Some","Fields":["ixJjVjteD7fL/qz9UEsLx5dZyr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E78P/qsbgggyEw1eLr5rkzq7QcsvfpU0KpCUsvLb6JU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:52"]},"IP":{"Case":"Some","Fields":["204.17.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pato"]},"Identity":{"Case":"Some","Fields":["iwyFjdICNhBNaYHz+VIB73Mr8L8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+989tRS2nwHyDiSRkv3b0yGf8a53fCG0Uwx7oiy4Q3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:04"]},"IP":{"Case":"Some","Fields":["89.58.17.212"]},"OnionRouterPort":{"Case":"Some","Fields":[7444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:4cc0:0:e35:c4dd:60ff:fe34:7d02]:7444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ams1"]},"Identity":{"Case":"Some","Fields":["iwQj0l79YfDd7In7U4o5jXnIs9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bqbInvBUow+fKcjvE0YjwTW0llNEVJBVXVBWG1baF6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:35:31"]},"IP":{"Case":"Some","Fields":["188.166.103.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eing9wies0fo"]},"Identity":{"Case":"Some","Fields":["iwNPKvvi8nWcyu5YVdDZG7CnA20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKTs6c/jRQysyXxXk3aCXj7v8YtVNnCJvpr42xgqlrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:09"]},"IP":{"Case":"Some","Fields":["107.189.13.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllOfGarden"]},"Identity":{"Case":"Some","Fields":["iuz0h6xvqaKmZP9ypTl4KaZHjmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9WwdytRbeqoYNwjOQ7h2YVTtvv6j5t/WCaWd5pljy+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:51"]},"IP":{"Case":"Some","Fields":["67.183.168.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2601:601:9a80:2f80:5899:261e:182:6161]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.5"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LittleSister"]},"Identity":{"Case":"Some","Fields":["it4T/oHpVxdxFDjTq9BAIDHIDzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkbVnhcP3dJ6kM8Apg1aWDYA+yEhNwwO8X3mlgow8OQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:35"]},"IP":{"Case":"Some","Fields":["185.21.217.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10035]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tommyTOR"]},"Identity":{"Case":"Some","Fields":["itl7BR1H07uFKdt9hXV0Jp/VCCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbvU9pvzdZLyrscvOTErLgBX7IvN1KSPzNpCPhi9gw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:00"]},"IP":{"Case":"Some","Fields":["193.239.86.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SkynetW"]},"Identity":{"Case":"Some","Fields":["is1zvZvdXlr8lxacWDfF4Pcyos8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3kH/CFxQrMQmyp+mfiNyQwpyZHyl8PzAMSlpj8LExB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:24"]},"IP":{"Case":"Some","Fields":["82.165.244.94"]},"OnionRouterPort":{"Case":"Some","Fields":[2424]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:858a::1]:2424"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay38at8443"]},"Identity":{"Case":"Some","Fields":["isgakaEZbCwcvtcclqogT3sP/gA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3QQioAZ8qGvByarc7kafLaUUzd9R5g2rI3wkSOlb4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:05"]},"IP":{"Case":"Some","Fields":["140.78.100.38"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["isfmTWdKFnuhdXQeWEN+KJMXqdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vO4Sojjsj/HX00kp/DGg4spChhxef3t832GtwEk6kUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:32"]},"IP":{"Case":"Some","Fields":["23.128.248.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unityone"]},"Identity":{"Case":"Some","Fields":["isRmc94pTl2TL5PoV/hOp48tR5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2yQfJShyp/I0m013SHfNujCq5bTdodlCIL6IN5r7iHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:17"]},"IP":{"Case":"Some","Fields":["70.34.206.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:f480:2000:182e:5400:4ff:fe11:58d4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNode"]},"Identity":{"Case":"Some","Fields":["irxXars7Jhw5RGkXiJc+UeY6X04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yGtpd3ehUmDfrDh7qh30HmTEo4cuhU3pyIJKikCTZ/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:16"]},"IP":{"Case":"Some","Fields":["3.142.73.219"]},"OnionRouterPort":{"Case":"Some","Fields":[11000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UDEtor"]},"Identity":{"Case":"Some","Fields":["irxNX2GCx+ebCH0e2eXPZSyD5Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qXQSXjNdsB+bDOv3GffgFdDmCZs0i6Lnr5YM7wruwpY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:31"]},"IP":{"Case":"Some","Fields":["132.252.186.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:638:501:4185:250:56ff:fe85:7034]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0188"]},"Identity":{"Case":"Some","Fields":["irsc4L6s/yyfi1O0woZhTlLlc4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IuSLWKXeGNtmWzMt4n69BWYwNHNrpvCqcHkUPEY0k2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:00"]},"IP":{"Case":"Some","Fields":["185.220.101.188"]},"OnionRouterPort":{"Case":"Some","Fields":[10188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::188]:10188"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["irdm+xvlRmlVm4IWWWS4152oARk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qJyXPwR2YzjqJpuAiBJNuME206QZC9DK10IJEmDUEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:04"]},"IP":{"Case":"Some","Fields":["188.68.32.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:42:896:37ff:fe75:d532]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Slowbro"]},"Identity":{"Case":"Some","Fields":["iqPozSOqmsgQO68Kz/TRJEPFofg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RyavqUoYRD/MMHNB7I8VWj3hrMzeoIPL3q/dw9lEwaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:20"]},"IP":{"Case":"Some","Fields":["102.130.113.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vaseline2"]},"Identity":{"Case":"Some","Fields":["ipYlSCos0vMvZxPBzHMUSL1K7is"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4+EFwI/9kTggk82wRbhPqE2Uo5+RXKwW7JdGRKpjkgQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:05"]},"IP":{"Case":"Some","Fields":["68.71.25.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["7ltorrelay"]},"Identity":{"Case":"Some","Fields":["inQmlZiuqTfxLNi9hvtxLq9i0Oo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["THhuNnmeFc7dm/HNoRfg1aAyjhbNaBcpC+E7XwFd070"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:28"]},"IP":{"Case":"Some","Fields":["217.61.218.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex78"]},"Identity":{"Case":"Some","Fields":["imPkzIbkr/VOB6+dI0Df37hnQxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TPFMSZ/LygMPI4mTsAJspQbxxm85uVvUKewqn4oYAbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:01"]},"IP":{"Case":"Some","Fields":["199.249.230.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::167]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taipe"]},"Identity":{"Case":"Some","Fields":["imIxKndms5hHjICktNODGpYo4A4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+NumsGy7PKhEyd7gby6Ta0NRgIR3dNBGOzGz6UljZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:37"]},"IP":{"Case":"Some","Fields":["185.217.0.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freejanich"]},"Identity":{"Case":"Some","Fields":["il7RQPBfSTTP8CTQbcqxe5yEUjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slLg2w/3m9OCege2BohAV+2GVbtOZf2yWFTXiyyUImQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:55"]},"IP":{"Case":"Some","Fields":["77.91.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nirukoru"]},"Identity":{"Case":"Some","Fields":["il58LQmDWXS01YJSutUf2K1U+c4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7yEMOT4NJcZm3Xn4LuMeEziM2LOhrH56VBXoaIP0NTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:58"]},"IP":{"Case":"Some","Fields":["85.214.42.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:430f:600:5628:8879:3e0c:7547]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Iduna"]},"Identity":{"Case":"Some","Fields":["ildJol0EDnJW3NTyomETXe3wdQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GFbvVH4lfrmfEJJX1VdVJLH7N/N4evU6905PN41GdNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:12"]},"IP":{"Case":"Some","Fields":["83.137.158.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["ilMKnOLvjqfZ4rSWVm/YR+dsceY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HtSf5GqetLxpBH/cSdBOocN8j8ANQ5R0jVEXJr6tB6I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:02"]},"IP":{"Case":"Some","Fields":["178.254.45.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:4a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ilIvMKPOp8aSoEGMk2Iyui5U+LM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z/gy1kUvPlVwVTxwmoCrxQ6dxC6zGi6GmeNs/eYawEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:56"]},"IP":{"Case":"Some","Fields":["185.228.138.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:785:3494:6ff:fe3f:873a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomeCanadian"]},"Identity":{"Case":"Some","Fields":["ikhZQqGmjQEoq5m66wD8HAAFQZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JbHRvllOBetqumSifCx538BZt400lAS3GFUOLf5T5vU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:39"]},"IP":{"Case":"Some","Fields":["209.107.107.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["ijyGVzhyajNfvPJxSrednoFZw9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["27ylN6KCAbEU85M8d8DmmBwlw99i9aJoqsKoenEMRkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:49"]},"IP":{"Case":"Some","Fields":["23.128.248.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::17]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomthisup"]},"Identity":{"Case":"Some","Fields":["ijh6RMzTbyv/FMZ7wgpmYANtzSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1jbjbrHh7qQqbLBAHMGJd3xrOR5oG7qN2grr9cM3fOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:47"]},"IP":{"Case":"Some","Fields":["51.68.207.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["koala"]},"Identity":{"Case":"Some","Fields":["ijC0vyyGx+ZcLlKpXognGOY/p0w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F9sLPpODntsJek2WZQp4Hy1d/2c+Y0auXj7O3oYmIv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:02"]},"IP":{"Case":"Some","Fields":["109.70.100.66"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::66]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum2"]},"Identity":{"Case":"Some","Fields":["ii1xy8oz8To+qWFN4orj9mnYSYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eqCHamiI3rpE7IhCW34AzYEorwd1HVYMLYG36uTaMqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:28"]},"IP":{"Case":"Some","Fields":["62.102.148.68"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalunk"]},"Identity":{"Case":"Some","Fields":["ihaesjHRzPL4qXBfj3yYCKqjIlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["StF8VsNzMYaF7hSavwsc4jLJPfKR1UhbEsMn5h1uzgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:21"]},"IP":{"Case":"Some","Fields":["176.123.8.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blindislandB"]},"Identity":{"Case":"Some","Fields":["ihS6OS9fATdp9ktKkhx6e4CrFv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["npKibsp2j6fplorCoGYfZWbK+z6cCTBSwhrMmqgAfbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:50:41"]},"IP":{"Case":"Some","Fields":["47.243.103.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snaakbarrelay"]},"Identity":{"Case":"Some","Fields":["iguWspS1wOQOlE2hSZLxJn3PZ4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFlBMVO/MSnuGf4i5FbSphvfG+hKpZ3hApgy6fK0RPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:03:58"]},"IP":{"Case":"Some","Fields":["85.147.65.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudslovewater"]},"Identity":{"Case":"Some","Fields":["ifYGMikwChjwwlxs9G9Tx3jyCTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWp3L42xqbEkGmo1h5DVjsHD+vcP6nFqcrlGZhaMX7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:19"]},"IP":{"Case":"Some","Fields":["103.15.226.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["ifUJS9yyzTqEZeWthDS/pg8UnYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ez1BiDVuwc0yCEg0HCMvCgMt4B9AfMvbe/hankRmytA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:20"]},"IP":{"Case":"Some","Fields":["80.64.218.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mania"]},"Identity":{"Case":"Some","Fields":["iekkEV9n/HXqxeLEzzXVM4w1BiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJcheJr5DeTJX9p200kDE4zxq4TdAS5zeKZBXcSF+TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:02"]},"IP":{"Case":"Some","Fields":["169.239.128.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["iefmFGJSM9QCSeYaLkE21PV4z3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MuCzudAfWM0gRUUfReJxrgnmoI/ilStqNq4iQdJ+fco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:37"]},"IP":{"Case":"Some","Fields":["78.142.140.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:78:142:140:242]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ieG12gws3/4GZSD6hSRI7gxPNWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OZbGVFEcw0w8naN5lej7IURdsALvfMLPI/Lzq8uZBGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:47:50"]},"IP":{"Case":"Some","Fields":["104.244.77.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgAU"]},"Identity":{"Case":"Some","Fields":["idHKb9qFziGDeBBSqyOk+iN9lgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0qPjoyvDc3ttg/EyquCjwtXirbPq6G8x/5mT4HcZP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:52"]},"IP":{"Case":"Some","Fields":["139.99.192.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["discworld"]},"Identity":{"Case":"Some","Fields":["idDzH5Bj+afglZzngzpqyUOumgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8pm8RZ48dCwvC5b921yYKO07KivFDh4o/3IoIQojaWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:10"]},"IP":{"Case":"Some","Fields":["107.10.73.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev13"]},"Identity":{"Case":"Some","Fields":["icfoUswvpTfteHda3DvqJGcrQVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+NPfOSGbrNVMfPDinZ42u8Ams9b6pWHoD8Ii5x0uKLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:18"]},"IP":{"Case":"Some","Fields":["51.15.59.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1419::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COMPUthings"]},"Identity":{"Case":"Some","Fields":["ibRZcWmp27Fx8LRinHPA/VXXZ8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YyHFB+pAqTs27+x2tz2UCU7t+/VQgfWEVtWvw7mUG+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:24"]},"IP":{"Case":"Some","Fields":["213.49.172.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet"]},"Identity":{"Case":"Some","Fields":["ibE9f01Ct5UjMYk70UhIEGAPtKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SQdewO7HbrFAUFSPUMlCJB/DRH8X6wgQySNPj4EYZkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:40"]},"IP":{"Case":"Some","Fields":["185.100.87.202"]},"OnionRouterPort":{"Case":"Some","Fields":[14450]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eggu"]},"Identity":{"Case":"Some","Fields":["ibCmn7hhIS9V1fr1N4vmKdQrTOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DvvxlvKBpNgvvPdEjJUA85DbpTodHeQGJfZZlGtWqsU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:30"]},"IP":{"Case":"Some","Fields":["128.199.59.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blanco1"]},"Identity":{"Case":"Some","Fields":["ia+HXZW8NCvz3lmybyoJ3tBFguQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["74KcfvoLihQhtWDTqTLeBEOiSCNlpQ81TSD1QjQHtB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:05"]},"IP":{"Case":"Some","Fields":["84.183.226.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["piratecantina"]},"Identity":{"Case":"Some","Fields":["ia5flsuXkZ7xOxcuDk4stQzDPxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K/YxlDBwSoNQxs/RKwOuMhMJ7sriJtVdMWMvL9QjNcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["195.144.21.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cyber1Creek1DE1raw"]},"Identity":{"Case":"Some","Fields":["ia2fMrCJvJNi2WE2bDP7Y82Dttw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SW2HfYhHUUJuhNu0pfBSf9vYiC2O8eMrpavOy8FUyXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:07"]},"IP":{"Case":"Some","Fields":["173.249.26.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:1:111::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["megator"]},"Identity":{"Case":"Some","Fields":["ia08aEoZQ6HyuEzoVzbXwHMXxn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c26jaOUb4qZUKZjrFKPHIAq7+deRYRE8TKozSiufUFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:29"]},"IP":{"Case":"Some","Fields":["99.199.29.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AtomizedRabbit3"]},"Identity":{"Case":"Some","Fields":["ia0IQC0do4T/a92Pfkv8v3+j1j0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OGadlCJU+AViOJjbqi+yZECS5MrivtTqAvWgxPQzeSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:40"]},"IP":{"Case":"Some","Fields":["178.211.96.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["none"]},"Identity":{"Case":"Some","Fields":["iaza3tsBPkJuLoGQ6J7bGI3krD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SKLXarFXdgVPhPYlQIO1F6CEovWOGk6lNG/azrIi4eU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:38:36"]},"IP":{"Case":"Some","Fields":["152.70.50.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6802:c2b3:edd1:683:b456]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["iZ0dErv27URQSMswLA8UttFa3KI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRWpgNiEKIduIWFOyN7bUj+wDEJMDIGy3H4QZ01BLB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["176.123.10.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["iYeoEU073FD8Dog8cMY9gip1d6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Q0AbAB8NFZ7Q8EQolsN9L5aXaae1OPumq78UT6QrMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:37"]},"IP":{"Case":"Some","Fields":["23.128.248.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::22]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RabbitPlannet"]},"Identity":{"Case":"Some","Fields":["iYcu61MjVaVm1QQBrfqy/+Kipls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REmheJGrTH/LzDDp2R7W1EOkZRg28XpwfO5ZBsuzqxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:05"]},"IP":{"Case":"Some","Fields":["185.140.251.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heims"]},"Identity":{"Case":"Some","Fields":["iXpn281+nVw7X9GTSUM+ImOgHQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kn92zGxvQWVvvSTzAQBH99dqFyl4wCRwZpF3qrtwS/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:06"]},"IP":{"Case":"Some","Fields":["78.130.128.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itpol2"]},"Identity":{"Case":"Some","Fields":["iXLa1XNCLbXYlcxZPEWdc3TGqJM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["43rbAdkNsv4OOW07qx9FDx+BXE+FNeNV9PfUDfEusxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:29:30"]},"IP":{"Case":"Some","Fields":["89.150.131.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackmamba"]},"Identity":{"Case":"Some","Fields":["iWNkt5lvXfug4V0aLgbQuYtVXdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u3q1wW8dWd6WivYlU/ZkIjbpph4ox5Tq6uQgEzUYweo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:54"]},"IP":{"Case":"Some","Fields":["198.50.223.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:7ac5:198:50:223:16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["iWLGLh4CVgzA2KRlUuOkpbOemXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FvX/5bXloXd8I4xcUVFi6eCd52WVe3uEpwUATEFyHxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:26"]},"IP":{"Case":"Some","Fields":["23.128.248.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::40]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["iVZyuGMwIHVH9nfBtcuJBFeZMRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zy5RaWw9bDxY38qVcS9NvosKoo2+1QmUW1/ouaghEEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:49"]},"IP":{"Case":"Some","Fields":["173.82.105.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc14"]},"Identity":{"Case":"Some","Fields":["iVIQyCN+NFeuJZXjugU+sjau9p8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbMIYaqWpxAjg/uxB0YU5jI2smxhWgGsXRtt7tLfqdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:43:21"]},"IP":{"Case":"Some","Fields":["185.100.85.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["iUptXLd6jOdxqkZ63LEbRM3BDus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eUSkv1eG6e0t7USXhjwkrl7zKxnhosMa2hOJqYXIhbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:22"]},"IP":{"Case":"Some","Fields":["23.128.248.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::229]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv16"]},"Identity":{"Case":"Some","Fields":["iUNifzHiwcgeQCWhRBHxzM1ws6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3zRGqiMoEWehZcI/GB7/A2yLYL68jgYDIHpeszUsl/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:44"]},"IP":{"Case":"Some","Fields":["162.248.163.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackBoxx"]},"Identity":{"Case":"Some","Fields":["iTn+32+3RP2Oaf9s5HMxjyG33a8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WhZH+dQv5rP7dcTVvA9YkNNwCVTDdEgeYGg5U/hV1IU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:00"]},"IP":{"Case":"Some","Fields":["203.76.225.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yomi"]},"Identity":{"Case":"Some","Fields":["iSqCe/Z9snDjA2d6M/5XcGnd5Vg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQ4ambN3T0dCipM6qUHfVrrEZXcwJ4BjI/5JQBkD0tU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:58"]},"IP":{"Case":"Some","Fields":["104.244.74.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8b5:620c:dc25:c624:aafd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH107"]},"Identity":{"Case":"Some","Fields":["iSmvVVS+Yi3j/jSBLAPWX+fV0PE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j58gY9nigsRdV0PpL8EhoDQJ1YfqQ94iVk94UlEv3sk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:08"]},"IP":{"Case":"Some","Fields":["192.42.116.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:207]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["iSetN/OdEMP0z91SE2BuSIHM9rA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7YvyAmc/nmh44U7S3AfiaXr9xSjYV/VoiVqM0uUaHZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:33"]},"IP":{"Case":"Some","Fields":["51.15.218.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex84"]},"Identity":{"Case":"Some","Fields":["iR91yeqQYBC+kJfZVz9y9GLYihk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+XD1C7vLuwyr2BUUV2KKMLM+1jThjFAi/6jec/Kdkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:26:34"]},"IP":{"Case":"Some","Fields":["199.249.230.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::173]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange039us"]},"Identity":{"Case":"Some","Fields":["iR5yQkNuDviSwIZbE3Poi+sqdjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XHipqYmGlkZcoo8Kfaxw+EyJRZgAZCEGp1HwkVkBqyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:40"]},"IP":{"Case":"Some","Fields":["107.152.46.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mindbyte2"]},"Identity":{"Case":"Some","Fields":["iRFSXAcTQX6e0lSFqUkkVZBlh1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OJKIOKgkucSo6N3UP4WjlTlN38GqyZ/Xp6MrvQChe0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:10"]},"IP":{"Case":"Some","Fields":["130.61.50.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frolix8"]},"Identity":{"Case":"Some","Fields":["iQ8yuNz8Bw5Y9dUK6Owr3gEBNGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O1hQF96mt9iPajCW5wSCQIuioDh2CMZYUwY1qdz+Uhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:58"]},"IP":{"Case":"Some","Fields":["153.120.42.137"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["v1704"]},"Identity":{"Case":"Some","Fields":["iQna1khKPayF80II02Id48fsQIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAOiC/z/yM2nJeJjqeY1pFDYYlK3qmYl6njMHK91pIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["37.114.37.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:97c0:3e3:55::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Privacyignr"]},"Identity":{"Case":"Some","Fields":["iOCKMrZ1pyVtsaGLyAAe8mvy2YE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMoQw4SVr8lcItKYKi+pF7PT2Yvg110/yFK0BmSl9o4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:29"]},"IP":{"Case":"Some","Fields":["64.98.115.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayDE88866"]},"Identity":{"Case":"Some","Fields":["iN9dcI6THEMZAqqr6pgeeVHgAIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4jQxUSLcdGx1sB304bLU6wwpXAsmVhvGraGDDfZISkk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:40"]},"IP":{"Case":"Some","Fields":["87.106.193.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer72"]},"Identity":{"Case":"Some","Fields":["iNzSZ20n6aN+K0Aq4bQa/hVEECc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZDkJ95u6CR63tMNLwaEZD6IVL73qL5b3Tefb5LFj+Js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:02"]},"IP":{"Case":"Some","Fields":["185.16.38.112"]},"OnionRouterPort":{"Case":"Some","Fields":[8172]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeHackCom"]},"Identity":{"Case":"Some","Fields":["iNajwPwo6ua5rQuhCCIjwDwbMvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dEBbaAvyt89jD0LRyqA+zjOxwCkFwxMGa11mj8NQDfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:17"]},"IP":{"Case":"Some","Fields":["137.74.119.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DiraE2yhvB"]},"Identity":{"Case":"Some","Fields":["iNXwvYf5vBqW/L/c7bHA5rqx0U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQdYZIcNwy2a61W3emlWM9He/VRGKiWbsxg6B4cj5kE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:20"]},"IP":{"Case":"Some","Fields":["92.35.24.60"]},"OnionRouterPort":{"Case":"Some","Fields":[1025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:dd6d::21]:1025"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay02"]},"Identity":{"Case":"Some","Fields":["iM+NQtSbfI6dA6vl2uevJemQIAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ijj9r+xTNlNddryNTSElhh+s4RvInHLZTw2iVf1HglQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:00"]},"IP":{"Case":"Some","Fields":["82.149.227.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:125]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RasBifrost"]},"Identity":{"Case":"Some","Fields":["iMYVrF+Vkb/UjbV4slK4mnL1w6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4U9TRFomK1N9IaKwOJPZLbEgO4tmV5h8VRnEAnCxWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:48"]},"IP":{"Case":"Some","Fields":["46.244.239.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Determination"]},"Identity":{"Case":"Some","Fields":["iMWGM8lTei4Pk6XsCb30D8MkdxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYtwRzHJZ3yCc+fICZ1A5Tmmi+kZ6Mxmj3RgNShRUPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:52"]},"IP":{"Case":"Some","Fields":["87.236.195.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viresinnumeris"]},"Identity":{"Case":"Some","Fields":["iLCiE7RbPzcBAA8atOR10d3L8ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlgAUlnwBo0drMCGjMnv9O0UX/ETNNkaVLi/yN5tD7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:13"]},"IP":{"Case":"Some","Fields":["51.15.139.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:628:f32::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bahabugger"]},"Identity":{"Case":"Some","Fields":["iK2ZuWgt05E8sEJPB2Ox2DHn5E4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OWhtCTHrf0yK23qUrHo+vBE5WNRRMh+YYJKs42q2nOs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:44:08"]},"IP":{"Case":"Some","Fields":["27.255.77.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mowgli"]},"Identity":{"Case":"Some","Fields":["iJlE9UDBVefjLJCbnhQkZ3aJrU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/wrFkb322aR9jxFST1NFOmKPYtPv5Ek4qE9Wp9wFw0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:34"]},"IP":{"Case":"Some","Fields":["51.81.93.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iIXqb3SmlIJbE7inCA9s8WTfdPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XWOf4ZblPuc6Kcf0gycUlmzeYUStVef2hP2JBMFloFU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:27"]},"IP":{"Case":"Some","Fields":["144.217.95.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::49be]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uglycat"]},"Identity":{"Case":"Some","Fields":["iH11DGntgdFLQrc9ZSnZjDwlpXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+mqI5f9iBkBwhf945TTvdK7+4hbudqoTxDeyyO8TdXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:29"]},"IP":{"Case":"Some","Fields":["73.41.183.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonkostchtchie"]},"Identity":{"Case":"Some","Fields":["iHyrUBqdtoosRO35i/ULAwTu2LY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pwRcSm5lo/b1/Zkv3BxZPFrwVZX8GqkykojtBnKV3rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:17"]},"IP":{"Case":"Some","Fields":["185.220.100.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:7::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TruthSeeker"]},"Identity":{"Case":"Some","Fields":["iHVK+baoIGFOFP6PH+pCMXnoCX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AcjMU/RK/X1nI3T8527alazVoARSQoy0A7YOaIosw7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:38"]},"IP":{"Case":"Some","Fields":["8.42.76.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sugarlabs"]},"Identity":{"Case":"Some","Fields":["iFyj3VtQmAzUHFG6f/yNi+RrZlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwFx/YlAeMViN5DdMdebWwEMbwpSSMEjU/DujacYBCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:37:38"]},"IP":{"Case":"Some","Fields":["192.184.220.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:5a8:601:f::216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay19at8443"]},"Identity":{"Case":"Some","Fields":["iFx7brlDBot2IHDiduKZMZ5asIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jk5Ilnpdmac5l1mkq/eSNpNbbTYG6csKyEApF/x/FOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:40"]},"IP":{"Case":"Some","Fields":["140.78.100.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1151"]},"Identity":{"Case":"Some","Fields":["iFAvf8SPM9l+5eeVCCsVn78ESnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8nRz1k7YBlI9s/vbfNF5prIhZErbbxoA+rx4eNWTi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:43"]},"IP":{"Case":"Some","Fields":["185.220.101.151"]},"OnionRouterPort":{"Case":"Some","Fields":[11151]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::151]:11151"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FoxEarsTechRelay"]},"Identity":{"Case":"Some","Fields":["iDdy0Vm0Apnol0ToR/xfMqqtUVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LtcUdFsCpI9zH9ToUyrVhtFAsuKBEq0IiPQ5rqicX6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:04"]},"IP":{"Case":"Some","Fields":["82.65.243.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:1e9:5160:ba27:ebff:fe68:d2ce]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=590"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cheetah"]},"Identity":{"Case":"Some","Fields":["iDZyPS2X80/k6TMETSyg/hSZVXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IM+XIYT40IyS22c7iUj6eYsDPAxEtCHEeI2pArzwR/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:26"]},"IP":{"Case":"Some","Fields":["108.180.138.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9905]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:569:52c7:3400:9aa5:cc38:121b:24ef]:1720"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sexytiem"]},"Identity":{"Case":"Some","Fields":["iCaYssocPMizR1FHi/uQzoTHLzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0BjM7h28VzZHuqhEvP4Jjd7lLUleT+9mOZhiNGm8VTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:03"]},"IP":{"Case":"Some","Fields":["95.216.107.148"]},"OnionRouterPort":{"Case":"Some","Fields":[19731]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:75d::124:148]:19731"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["iB8JJ5+U6arT3jByffOtfCzpAN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SLFFfP0EbYqprQEjOFLlrPaBJ96IsDGKtJxPafhXbP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:39"]},"IP":{"Case":"Some","Fields":["88.99.171.75"]},"OnionRouterPort":{"Case":"Some","Fields":[2479]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:419c::1]:2479"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Karin4713"]},"Identity":{"Case":"Some","Fields":["iBv7QwzEO9nSALqDSMaem2Jc+t8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhr41ALzaUbL70MxZ9EGsrY5wPuTk5nWTfMHtxTI/U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["83.209.9.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["weisswurschttor"]},"Identity":{"Case":"Some","Fields":["iAKJ8rYykgWFQNy3ZAO0izwtpOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CZcD/HgDOOhv08v4dHNOcdksisgkhK/CgfLzdg5uuRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:41"]},"IP":{"Case":"Some","Fields":["3.91.76.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1f18:452a:fc03:9323:da54:e44c:4e2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RightToInformation"]},"Identity":{"Case":"Some","Fields":["h/4f+CPo4TWdLugLmzGzs1i+4hI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oRnayh7fEweFILUNtdifFgcxlgVYcFHq/if/kbP7VoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:28"]},"IP":{"Case":"Some","Fields":["81.169.134.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:439a:1900:43d6:a3e4:9968:9811]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Maple"]},"Identity":{"Case":"Some","Fields":["h9/ViiP73PtIweUazVYXtIUnnmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DXDGIa4oHgb6cDiqwgs+DED26VtuUe7x7295+eyl7kI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:17"]},"IP":{"Case":"Some","Fields":["162.156.191.108"]},"OnionRouterPort":{"Case":"Some","Fields":[55003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ireadtheshadowconf"]},"Identity":{"Case":"Some","Fields":["h931vtesyoimLQlSkF3kVK6HTXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDN0ALCTWyhhVCB4h9YB+hktuVmf9DATLzk/nFHzqp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:10"]},"IP":{"Case":"Some","Fields":["185.194.239.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0::61]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["h8CN39MsYvPFbTcfl3TSe/27gHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0E6E9c4lDgQZrOPM61wCvAkBydNGu/y6sHYW5NjH4Bk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:01"]},"IP":{"Case":"Some","Fields":["23.81.66.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeSpeech61001"]},"Identity":{"Case":"Some","Fields":["h7uVlc3GxFPp6iNcadESQhotDpQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cq1/xCtnqsEy9Ti9rXEuvDxvBb0l+dGXye001ShzogI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:10"]},"IP":{"Case":"Some","Fields":["87.177.68.243"]},"OnionRouterPort":{"Case":"Some","Fields":[61001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f89g65f21"]},"Identity":{"Case":"Some","Fields":["h7NVfz55IhfivE6ZI+rKSuxbqcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a9HWGdj/RV7+iu5j+IqpnW86E5ZG9J9PRly/ijvTXuo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:30"]},"IP":{"Case":"Some","Fields":["90.191.152.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NukeDukeNode"]},"Identity":{"Case":"Some","Fields":["h7MQPhADKrxo5a49FzLqUlJMCkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iY/FzHBVm5pRXPhlXgb1U8S9pJ6K4NlvjLSdqxnX3LM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:04"]},"IP":{"Case":"Some","Fields":["87.17.211.252"]},"OnionRouterPort":{"Case":"Some","Fields":[8325]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tvSORGaming"]},"Identity":{"Case":"Some","Fields":["h7ChXS9Hff9Bm6Iy/QI5KvydeXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BqkXkJz6peVMKGQIgn5WhFDEsKeZponlRlisLvUGJJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:20"]},"IP":{"Case":"Some","Fields":["65.21.126.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarryBen"]},"Identity":{"Case":"Some","Fields":["h6ob5KOVKd2GGUc437WdxpjzE2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KQHS7EgKYZq37PzBEV+X/JdMD9N8NX7HHnOuZOeusTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:50"]},"IP":{"Case":"Some","Fields":["52.205.15.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kbtr7lv"]},"Identity":{"Case":"Some","Fields":["h5sDZGjTCrGiGV+W0skfPKqNHcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ci44Nugn8lT9CkHcqbndtJPdC0QFzylOvvQn0ThVHbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:22"]},"IP":{"Case":"Some","Fields":["94.140.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay36at8443"]},"Identity":{"Case":"Some","Fields":["h3qqHfCNkC3KZnBW6238TNKwZlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jPrm5P9oao4Nw5+RMNOxwg69s2Ex2xxFc9NwGycMMSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:23"]},"IP":{"Case":"Some","Fields":["140.78.100.36"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nexxtor"]},"Identity":{"Case":"Some","Fields":["h3SFP3dCOt2fldIg6jCfEvjT6Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QpkHwIY0M6nzeqNKSNytvd1kHhzyTLPetEZ3v024mU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:52"]},"IP":{"Case":"Some","Fields":["65.108.212.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:12f8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowland"]},"Identity":{"Case":"Some","Fields":["h2x85Dd0NmJQ0+do5pDaudS11aM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ad8Q7K8p+1BmRHq9aipVgZb+ukWl6v4ZatEtMHhw3LU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:57"]},"IP":{"Case":"Some","Fields":["37.218.242.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG13"]},"Identity":{"Case":"Some","Fields":["h2ulxBq39KipmqyrmAwIHbphcRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQ/9Nz7UR3n+rcR/ANewT1DoidLFNz/NpM8wD3AS+RA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:51"]},"IP":{"Case":"Some","Fields":["193.189.100.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::206]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowsun"]},"Identity":{"Case":"Some","Fields":["h2mvbcxF2rnCGc2fRk6uMmhVDP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPzKWVS2XKPycRPMDqUxmAW+SQ9Uh2E1XOtIzR+Aqo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:52"]},"IP":{"Case":"Some","Fields":["178.175.148.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:ad::e746]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["h2XGr/YsJmo42Mc6dmBKWxZp+qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWuaGCvao0VkJFUe/2PuI/g2BlFSljuWBVEIPdmShc0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:54"]},"IP":{"Case":"Some","Fields":["152.70.64.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2603:c024:8001:dfea:2::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ldExit3"]},"Identity":{"Case":"Some","Fields":["h2E4Rf4axshN7AyQ59yVdp9TLiI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9SJC2LOc27R/OFEpXitjlzagg6IzoEt62MQ++IrIo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:48"]},"IP":{"Case":"Some","Fields":["185.254.75.55"]},"OnionRouterPort":{"Case":"Some","Fields":[56718]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:d9c0:3000::a22e]:56718"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Babylonian"]},"Identity":{"Case":"Some","Fields":["h190o9wUc3vsoG+LUAAiFU0aKdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["03bhRN5esmm15bJ43KKb1d9i1zlW3x2KMG5J2QBAKps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:29"]},"IP":{"Case":"Some","Fields":["83.226.248.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spigen"]},"Identity":{"Case":"Some","Fields":["h02EOCyJLz9hzJ4Qa/CIQ94Lhlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LvyyrldjSqmpOCy2zsRmDurhxBNI0C+Gmo/+V0cGooI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:54"]},"IP":{"Case":"Some","Fields":["192.42.113.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:113:192:42:113:102]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=90000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda0"]},"Identity":{"Case":"Some","Fields":["h0zn5zKjYoow7ku3E/pF+L4/MsM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JtwBGhLw225JAGMB6OFbivCSmq+U4/yPWfWMk1vcJ74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:57"]},"IP":{"Case":"Some","Fields":["88.198.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:222:19a::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["h0ilws6L6LYJkBHau9c226H6vWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vElIvXO21wttdPsv8dvxJIUjcWFutQqU6GilUnvy1jk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:05"]},"IP":{"Case":"Some","Fields":["185.220.101.37"]},"OnionRouterPort":{"Case":"Some","Fields":[10037]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::37]:10037"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["L29Ah"]},"Identity":{"Case":"Some","Fields":["h0WTxXFjfGX6MySz6tfdVC4rtkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wsNckB5DGsOUhtghi6chKMjp+dY2HwcM2C6NCwcm85M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:35"]},"IP":{"Case":"Some","Fields":["79.137.197.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsten"]},"Identity":{"Case":"Some","Fields":["hzxaydz7oshS6x702wjqq0ctsxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nN0pxOALicaiZEQm4YBHcMalMzEUIw90IuU7dLF5qpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:03"]},"IP":{"Case":"Some","Fields":["135.181.144.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:e041::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["IronFist"]},"Identity":{"Case":"Some","Fields":["hztlolapaWd5ZMoE437JVVCJ2zw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ME+GE5rZqeo1RPOvJJBAnw1TnC/EHjl8y68EzByzNjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:45"]},"IP":{"Case":"Some","Fields":["216.73.159.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq06"]},"Identity":{"Case":"Some","Fields":["hzV/zCvywh8GlxQ4G8psPn78vV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S8kjuNnuLsF9CNpYJqTqvxDxKDzXyVCaSyAvCXWXpEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:52"]},"IP":{"Case":"Some","Fields":["193.32.127.157"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0144"]},"Identity":{"Case":"Some","Fields":["hy0KDevpFOw8PjEFt6jMFXZi+mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByYSqgM4ZlA1J3m4nntMujohjEv4Y6tkLix+4BfVXfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:29"]},"IP":{"Case":"Some","Fields":["185.220.101.144"]},"OnionRouterPort":{"Case":"Some","Fields":[10144]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::144]:10144"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["hyEIxSxSzBAhejUciD6ZGu33xHA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gPYJZN9D6gvVfz//SOgaRU1ik7Lg28NzdPZ9sTii5Ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:59:51"]},"IP":{"Case":"Some","Fields":["135.125.89.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lennosplace"]},"Identity":{"Case":"Some","Fields":["hxVKLdmzidvZrQlwCawnsMX8/mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x9cLzHle/vGzpB7hdezR4kJyLejQ7bsqVdstio2z12E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:52"]},"IP":{"Case":"Some","Fields":["60.241.239.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:44b8:2128:1800:85ef:14c9:a370:276e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rocketrelay1776"]},"Identity":{"Case":"Some","Fields":["hxLhf70Na7q2Dj6JezJvrlHhWwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dFRJkJny6FNo3dkA6RkveITrW4MlHvW8/1XPtBwt3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:10"]},"IP":{"Case":"Some","Fields":["107.189.12.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Proteus"]},"Identity":{"Case":"Some","Fields":["hw1k+HRY13Bq1oR5Q4OSBso3/RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9jnSs8He1Ln1ebDYkof5LpbKYSXF/wGncONwvyRq9LE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:20"]},"IP":{"Case":"Some","Fields":["92.210.13.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheFastBoi"]},"Identity":{"Case":"Some","Fields":["hwwBkEIOJMpJBfpLBd/bMSymfBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6lF4jSE/XzBiZRDad6+ilGI4heeZ3LX5tiUgWCjwEJc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:56:01"]},"IP":{"Case":"Some","Fields":["150.136.83.160"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1188"]},"Identity":{"Case":"Some","Fields":["hwNTDFzv+eaLbpr3VDKjkMYxTEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AltDpyOYKJaee3I4j3Eq2syjf7dGQGfRxYSm7PHqCQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:08"]},"IP":{"Case":"Some","Fields":["185.220.101.188"]},"OnionRouterPort":{"Case":"Some","Fields":[11188]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::188]:11188"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc2"]},"Identity":{"Case":"Some","Fields":["hwHnCsTAyeH+R+qFP8mX0pvl1lw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXuZvNe0m/XAjTJCSwDlBDIUFTFptaUTVAk3NvmwvnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:36"]},"IP":{"Case":"Some","Fields":["95.217.0.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:4eca::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG12"]},"Identity":{"Case":"Some","Fields":["hwBuHjjuHTW/73XB+9IUtwSWPcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r/Ickc+QBnEmdM5m7skpkEP8gKpaf6eac9rq1aot/sw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T17:06:47"]},"IP":{"Case":"Some","Fields":["193.189.100.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Potatoe"]},"Identity":{"Case":"Some","Fields":["hvunU8jSVlPghrmP/4qghPhi22c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["63dDK0bqGtkAvqsnyArxaCK9hWOZkdOCkzO94OTuc8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:03"]},"IP":{"Case":"Some","Fields":["139.162.232.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:febb:4d59]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uovobw"]},"Identity":{"Case":"Some","Fields":["hvKCjLSwh1UVYH9OIJeVFUK3E+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+pasFOzsn0BHPA4Y3s7WycA07Qg5hCoEDRNTR4yr1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:19"]},"IP":{"Case":"Some","Fields":["95.217.2.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:4d4e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra20"]},"Identity":{"Case":"Some","Fields":["huR5Jm67mC4gQAlTLtRgYoaJ5bU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cllxc0v0UbczlC/GkJxFEW6w6x7+/B/D8I3XRoBkVUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ngggermany"]},"Identity":{"Case":"Some","Fields":["ht6pvvSvqTLIjRqS0ydsh7NqC30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2D+f/OqfSRmrmNMojMJ6m7/pNkiRDqh9YqDE0K/W9O4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:01"]},"IP":{"Case":"Some","Fields":["37.138.45.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoldMyRelay"]},"Identity":{"Case":"Some","Fields":["htlCl1W2RtjBKWwbbLyal4dtbY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b5zCB3DUFV0RPKwOT9lltTuLrR/vUn8Vn7rqL76WG5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:23"]},"IP":{"Case":"Some","Fields":["51.195.46.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::58b8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mnesys1"]},"Identity":{"Case":"Some","Fields":["htkk7eFJi04d0I0iYPPp/kVAEuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iAN8EPkY0FNfLNuBbwvtETXEg9pL3eG7CCXukEGbKYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:44"]},"IP":{"Case":"Some","Fields":["193.30.123.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay07V6Rocks"]},"Identity":{"Case":"Some","Fields":["hqVVS0DwjgKuLjP/HTo3IKZ4n9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kSxBHTVpPVEZJX0PBx2SEei20F1zF2OklxM+Jl2m2Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:10"]},"IP":{"Case":"Some","Fields":["185.170.113.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ad2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Njord"]},"Identity":{"Case":"Some","Fields":["hpy2ky74fcFS1rEr3+XIJneXXnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pn8ptKV3Znh7sarlkDFuxBL2ufeVyXV8OJhMSWwk/n0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:51"]},"IP":{"Case":"Some","Fields":["83.137.158.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrorist"]},"Identity":{"Case":"Some","Fields":["hpk3FBXcBSpgvKOq1o5V2bdZyuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8/Se8KSoyWikWHiKLk40JF+dRmDYF9V/pBizAKr7UG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:58"]},"IP":{"Case":"Some","Fields":["185.73.211.3"]},"OnionRouterPort":{"Case":"Some","Fields":[50001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8dc0:aa00::13]:50001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor01"]},"Identity":{"Case":"Some","Fields":["hpbcesBHD27Vx6xIAwAC19Nxb8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAIe4bwDm39+geZAvMpoPDURcrLMxqCwRU+H4r6LXKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:38"]},"IP":{"Case":"Some","Fields":["206.217.136.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk4"]},"Identity":{"Case":"Some","Fields":["hoolPDMPQPvkNdkyCEk5f4WCPoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q25WLTGMq2XuQJCxJ2zvmzRJovn+f8OC5Ib0ykAKZJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:17"]},"IP":{"Case":"Some","Fields":["195.234.152.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Challanger"]},"Identity":{"Case":"Some","Fields":["hoWsOiWqDU7KroCDU0Kx7QEeR6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubi5y0UD0pLnVAoTiTGk92gQguk7H6PI2xsMdhBReI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:42:53"]},"IP":{"Case":"Some","Fields":["179.43.139.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber38"]},"Identity":{"Case":"Some","Fields":["hnjGKdNeLKag0aPT9MX1YTT165o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nsvKQMSA+Q7aOCntNrysmNne1jpIY5uXjaKtX7njBC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:01"]},"IP":{"Case":"Some","Fields":["185.220.101.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::19]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE71"]},"Identity":{"Case":"Some","Fields":["hnV0RseXjTfeO0BEuutP2zT9dM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IFPICJ4I8x7aVihqmw+qsyOgRYNwJ8ggVcvqn6JpmYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:48"]},"IP":{"Case":"Some","Fields":["37.221.67.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8r0k3nN0d3"]},"Identity":{"Case":"Some","Fields":["hma6wIfGGFgBs4eIF4cZo9riUJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BojnFDERYl7GrJax20dPKf4A0OrIPv7cmqrzCp+XQ+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:40"]},"IP":{"Case":"Some","Fields":["98.46.21.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["hmK16fsK8NL0U069WtnUWOGWbKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tsruehVo/yZUjR4dlPIZZ35jU7yUkQ8/Phy/BwOANOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:50"]},"IP":{"Case":"Some","Fields":["95.214.53.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gentor00"]},"Identity":{"Case":"Some","Fields":["hllsOoa6v1JOq3T1bmZuev2A/Qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WN8e3CeTtDB21J9dd8qFNdSKqr6+VeEErugvmfU4af8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:22"]},"IP":{"Case":"Some","Fields":["142.132.162.38"]},"OnionRouterPort":{"Case":"Some","Fields":[6667]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:fe63::1]:6667"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["hleptIG6OaYMKeSa+tXOVSNneBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["92HVncSj+XT4otNl8ZkV9U3MtDA6ThPX33G1V6CY+Ps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:41"]},"IP":{"Case":"Some","Fields":["188.68.37.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mercurya"]},"Identity":{"Case":"Some","Fields":["hlTJpdHbMhPrjdg8Zz3yQHdXPF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WUabS1xFoPiWog0F1tHdeLTyNTwRHe7VlhGSxkukB3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:40"]},"IP":{"Case":"Some","Fields":["178.209.46.173"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq03"]},"Identity":{"Case":"Some","Fields":["hijSrMocm+WW3tHfnQCZu9sTUrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1DpY4+w7ULPul+S8o/F7dhjVtie0Im8vK0P8yvRvUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:02"]},"IP":{"Case":"Some","Fields":["193.32.127.154"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["405test2"]},"Identity":{"Case":"Some","Fields":["hiWCGvpXn4kvH893+KKsmkrUz9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZUG1s7lu2hRxx3637jLD407rL/n0KVwCzDZx1hm3ko0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:35"]},"IP":{"Case":"Some","Fields":["68.12.219.144"]},"OnionRouterPort":{"Case":"Some","Fields":[456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itomori"]},"Identity":{"Case":"Some","Fields":["hhvP3RSJc5hef+l8dFXJ5KxOE74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbmSdXXQnsWEzp4j2nVpk4k/6erVVvxXQbnR/u7UJfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:43"]},"IP":{"Case":"Some","Fields":["148.251.22.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:8367::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["acidp"]},"Identity":{"Case":"Some","Fields":["hg+81tCaCEMIj4hSe/vTjxvHDwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wXUdVC8E6U9opr3JjENWIVg3EVyaO+kn1s2ukDX20zU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:39"]},"IP":{"Case":"Some","Fields":["87.245.110.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["narp"]},"Identity":{"Case":"Some","Fields":["hgQvb87HzOMu60lel/7rqLXPtd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sclTRFt68WW5srBsWExm09tCrYgUZc8FlEfiIeXDI9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:50"]},"IP":{"Case":"Some","Fields":["51.81.208.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FancyMahalo"]},"Identity":{"Case":"Some","Fields":["hesa/PE/KVu20hFuVkjbAx3tpys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W16TsFcdQpRG/Msk3DMNfxoFkmd6QlU9N9YZhIG+vvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:18"]},"IP":{"Case":"Some","Fields":["45.142.179.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["letsdoitAT"]},"Identity":{"Case":"Some","Fields":["hd4+1WmJpPVNUNgt2HqR3C8w7N8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["unoh3I3XyCl5HK0IAgIA8VVuorHocx9UkQ1Xxcw2RGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:03"]},"IP":{"Case":"Some","Fields":["185.119.117.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:140::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hduvsc5yJlBFiRzwFxmZBaNozcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnGSIOpHO7+BgboolQo6tAp4scRTuWuedKW+L77zC1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:46"]},"IP":{"Case":"Some","Fields":["126.119.12.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hdlkk0ziiUFnEPMC19MdEHbFzbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/B/7QvZ+nFMZPIW5w+NGy+US3EmeiaRiHLZ3PJTeUz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:07"]},"IP":{"Case":"Some","Fields":["23.128.248.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::8ce0:42ff:fef0:263c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mailboxorg"]},"Identity":{"Case":"Some","Fields":["hdQIgUixppVMm//8oBDoXgqoj/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ijcYs9KdgH1j//zO4nnZXtl+af5XVOXJBxA0/7dQaM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:37"]},"IP":{"Case":"Some","Fields":["80.241.60.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hdPQw9RpmvqJf+ndknC6rLvj4/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PibSxIlcSknzfB11TPx4eCHDd2lgDWGgx5EZNbjmWiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:39"]},"IP":{"Case":"Some","Fields":["185.112.146.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["hc+ADKu/cDfH8nX+fn+MTy9Cw5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdkmyiWqQEx+61xijYBqzpO3iScz+ysLjSKXfXBcEoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:29"]},"IP":{"Case":"Some","Fields":["23.128.248.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blazeit6969again"]},"Identity":{"Case":"Some","Fields":["hc0yyoM7p2FfVkhg2lkcUy0U+44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1nc3C6rGIZTHeVRW0nw8LFoqH2VBQGHQOV+F1lj0yq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:51"]},"IP":{"Case":"Some","Fields":["205.185.116.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9696]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Euphoria"]},"Identity":{"Case":"Some","Fields":["hcnk//m2nUPMVPzHBtrIVUxslYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wdKQ+pNK8F1hzkhCuzb8WdsCfJMAGQ/hvWjrAx+M76M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:16"]},"IP":{"Case":"Some","Fields":["147.135.65.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipcb"]},"Identity":{"Case":"Some","Fields":["hcKdB2Nr66z8oN9asxszOIJ0UGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WDdjsIsMhdxYoHpCn3OqFCeANJLGYPvo56ZpgOUUenc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:27"]},"IP":{"Case":"Some","Fields":["185.220.102.242"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::242]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wr3ck3d0ni0n01"]},"Identity":{"Case":"Some","Fields":["haiFQz5QsYdPEc7JvphFHiRmCXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QzaUALE7sYCzS7XDGkuY9MpFIDEvbY1iVAu5wm0Kbyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:17"]},"IP":{"Case":"Some","Fields":["178.254.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ufm"]},"Identity":{"Case":"Some","Fields":["haAz7sJOvfFiGM9i5wphbHxn3y0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoM+zxisw58QvIcFvHS0QdJ4ep8kEGqnfCG9VPV43No"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:32"]},"IP":{"Case":"Some","Fields":["193.111.115.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hidiey9ChaeL"]},"Identity":{"Case":"Some","Fields":["hZN49r/8XkT3I+tTUdQ+7nb75ZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OrrWnsxdE5J4CvbldXvLct4Uc4f7Uhux2rlx57ZsoI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:51"]},"IP":{"Case":"Some","Fields":["45.61.186.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer16b"]},"Identity":{"Case":"Some","Fields":["hYehtMzQcA8WTM1Yj3l0PHT+hwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kblc3wZEYJUfQqF1KdyIYTvU/NuuwpIWYfs7xKZQPIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:07"]},"IP":{"Case":"Some","Fields":["95.214.54.108"]},"OnionRouterPort":{"Case":"Some","Fields":[3814]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["egoldman"]},"Identity":{"Case":"Some","Fields":["hXsQWW9JYtaaz8RgATVbh8BYy+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IU2ujjp1dTUeZOxgQKw//aIVIXzhovuUbGOoFd7PMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:52"]},"IP":{"Case":"Some","Fields":["185.125.171.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hasle"]},"Identity":{"Case":"Some","Fields":["hW2rL9ye7Yiie+ImX6a9VInvF44"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aygv/pJwgv21DhlAsfhoxEBGnpvwUDQUHiaraKO1duI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:26"]},"IP":{"Case":"Some","Fields":["185.109.64.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei02"]},"Identity":{"Case":"Some","Fields":["hWt++34J0Cop3S/wJLfh7+If6es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIdsiCDJZmzl0VJaiUC+yWjKxw9PmctAenEQswpIZO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:39"]},"IP":{"Case":"Some","Fields":["188.68.46.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:22:175:a452:acff:fefc:987f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AtariFanclub"]},"Identity":{"Case":"Some","Fields":["hWHA+2VSYIc1uiciX/JKQOf9rMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5mTqjn2RVf2K8y9eBNATaJgi6l3SeaZiLiVU7in2XSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:21:14"]},"IP":{"Case":"Some","Fields":["88.80.20.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc11"]},"Identity":{"Case":"Some","Fields":["hU6ZxyoubsWzs9EWcKgR+sA6OUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AZHvypr9pfR0SEmm+i49lZRb9+UXyBl2RXubrtq9OKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:01"]},"IP":{"Case":"Some","Fields":["185.100.87.253"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv20"]},"Identity":{"Case":"Some","Fields":["hT6DW7RWnQEdJgbmMB+AJE0sII0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["muYaWAN6Z6s2ytp3JniBayDWp5+ecgEEouNrxMw28T0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:22"]},"IP":{"Case":"Some","Fields":["162.248.163.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spinoza"]},"Identity":{"Case":"Some","Fields":["hT4t85l9YhWsu4bVPlYwZplho5o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KVPPsJOizaWIrvRlbWxUGim81jNc+GwcYNz6ErMg3zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:43:52"]},"IP":{"Case":"Some","Fields":["46.166.128.173"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["hRhtTC8OQlfIMAHVjW+rGvk6oic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X84GF/JmDJr1432VKrISAS7xm+w+dKRwRrvj1Jt59Pg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:36:34"]},"IP":{"Case":"Some","Fields":["5.45.106.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza2"]},"Identity":{"Case":"Some","Fields":["hQUpbJYmq4s5G5TE5tThXDJdyO0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wou3KPS8aSUZP2PoMDdyOuPGA7UreLzEiUSbL7xQSlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:11:49"]},"IP":{"Case":"Some","Fields":["140.238.197.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartleby02"]},"Identity":{"Case":"Some","Fields":["hQQefF3wQ7A/LBlCGZjxdRwALkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6Vnq0uLxJOOQb8qvjL1SaakX3XH3XZ8sAFq4fba5hI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:11"]},"IP":{"Case":"Some","Fields":["86.127.236.181"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Normavilla"]},"Identity":{"Case":"Some","Fields":["hQDGapgXvxH7uL3LpzMEUFKN+Jo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4M66wPr7KgZZNiyHrlmNrnjvB59AmR2+tNokUKnorbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:39"]},"IP":{"Case":"Some","Fields":["93.95.231.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taeuschland"]},"Identity":{"Case":"Some","Fields":["hP8FmDx1N+i89v3PbRaIxGtoRHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REP5Bl24y3uJ9n8nF8BV940d/KJ0iADXRIdvzs9QFjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:18"]},"IP":{"Case":"Some","Fields":["95.90.95.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9292]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Admin"]},"Identity":{"Case":"Some","Fields":["hOX50dugdxguxP5oQtiZYv1ZUsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTJmjMo3zqt/yB50BL/j97THmnyVzM0CXkisVud7z90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:51"]},"IP":{"Case":"Some","Fields":["5.255.103.25"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a04:52c0:108:96a5::1]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Erik"]},"Identity":{"Case":"Some","Fields":["hN7Ew+sFwGvhW/Drql+w1QpmJFk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Oo++ke9XZU20Q18B2Xx2DzlCJ2kqvGUxR/n2q7mT0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:19"]},"IP":{"Case":"Some","Fields":["181.191.0.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.2-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kleptoman"]},"Identity":{"Case":"Some","Fields":["hNfqQEaCbjErMvgipZJlESGJDq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["53kFe7HY8VNBFaQix+/GCXMQIIJURDfpE4yPdokEgC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:54"]},"IP":{"Case":"Some","Fields":["193.0.213.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute03"]},"Identity":{"Case":"Some","Fields":["hNNhtzaozR6IGND8GGiS6Rq3aIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mNWtN0BeSlxBrJ/5exttmcKJhHexKS1hkidD42gFtQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:06"]},"IP":{"Case":"Some","Fields":["162.247.74.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inland"]},"Identity":{"Case":"Some","Fields":["hL5AONrZmBXXaxERFtrvGq7iUvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0fIUNZldmQ3GmHblaBk92gu74zm6IrU3VRRI2OgN8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["139.162.10.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8901::f03c:92ff:fe7a:6f74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hLS+uQIL+mJfP/rwTmk+J86IaSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PukDtSz2n3sodVzOrHStOnhPDhPLZIaa5GMoF+2nXIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:19"]},"IP":{"Case":"Some","Fields":["132.145.79.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flyingcubetech"]},"Identity":{"Case":"Some","Fields":["hKlHNmUlC3UrYhiSg05x7svWEP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AXfxAHCZ3kt1QCSTgPjj/ppGypj6OKJX7zhtRYX6AqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:36"]},"IP":{"Case":"Some","Fields":["54.38.33.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3200::c3e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomRelay"]},"Identity":{"Case":"Some","Fields":["hKjkHQOGWCInL2R9N4r/Sscxh/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TJqWsQ8qDCwQM32pEMCT3caieGBAKpbgvahMvJ2AtT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:07"]},"IP":{"Case":"Some","Fields":["46.182.18.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["hJjfGhI9mmFCl7UHR5HB0DOkHeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6KnPje0y6ANl5t3xJK6IIm0gkVY+o36bMnY7e7mSLEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:01"]},"IP":{"Case":"Some","Fields":["185.241.208.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionsHaveLayers"]},"Identity":{"Case":"Some","Fields":["hJYmoqPdE2ToxRQj1vMhOjrhb/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t4D5nA+3tEeUJoRNJ9kJ8cR/cXf3ZVf5U8v0VOfp6NQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:20"]},"IP":{"Case":"Some","Fields":["104.192.3.74"]},"OnionRouterPort":{"Case":"Some","Fields":[62309]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KnowWhere02"]},"Identity":{"Case":"Some","Fields":["hJAzXE5W3uDxjJkymCfdsOvhlPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jl7Wm0yllRbAcLUUrBVvATSHXTlZy3zwdyy8va1urMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:12"]},"IP":{"Case":"Some","Fields":["84.166.214.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber26"]},"Identity":{"Case":"Some","Fields":["hI+4epm7mCtEFipAUgE6LNQuBu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T6MFmYu5v3n02kMH45rC+ueCxMTATaWbfyhsUTZWHGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:57"]},"IP":{"Case":"Some","Fields":["185.220.101.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::13]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buchikuchi"]},"Identity":{"Case":"Some","Fields":["hI7ZeqF709BsklSar2jK1fviO/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EX1SQotvOtSurSvJGXFtV1yr1zCp150LjXG5sRzs7qU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:15"]},"IP":{"Case":"Some","Fields":["2.206.247.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raccoontornode"]},"Identity":{"Case":"Some","Fields":["hIoAqZThtiBB3s8LlASgnJ73L3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3FMSM475kkJV98R2f5y1coClBWGcdbLT0v89IASr/zQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:42"]},"IP":{"Case":"Some","Fields":["199.195.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sashaRP4"]},"Identity":{"Case":"Some","Fields":["hIKHltNaObLQkdp4nHl7k2tyHUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z90HN62sq9DoO/QkbWE5sf/eS0qgxAJyYjX4AdHY834"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:22"]},"IP":{"Case":"Some","Fields":["5.147.146.222"]},"OnionRouterPort":{"Case":"Some","Fields":[2443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor26"]},"Identity":{"Case":"Some","Fields":["hHsfhQNE14dkkaVIkvkEk05OuF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zDETqArJGIsajjJLjQR6/ehKYktZ1HN6bcg6eE1ZSQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:30:10"]},"IP":{"Case":"Some","Fields":["86.59.21.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:858:2:2:aabb:0:563b:1526]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["hHMDu9iMldGDBrDzvaaEL9Xe0KI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0paF0PsTFrTXAqWGYsPn0wbD1mwhEY3ByYCr76crgvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:07"]},"IP":{"Case":"Some","Fields":["45.55.47.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk5b"]},"Identity":{"Case":"Some","Fields":["hGs+qvDAf/cvx5rrsR+jrcWPJA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eDCdJupanaqqZ8klds7qBOfCVz9+gmi5wNVGk0FyZmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:24"]},"IP":{"Case":"Some","Fields":["62.141.48.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xinchaovit"]},"Identity":{"Case":"Some","Fields":["hGQGJSIaTpYwmv4IELOGRrxg9Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M+e3dAJMPHFuJlHKsThhBE7xUa+m6YlT4l8j1Scjo0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:16"]},"IP":{"Case":"Some","Fields":["125.212.241.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oef"]},"Identity":{"Case":"Some","Fields":["hFu6VRp6Zkat7UhvPB4SQq3Z/vc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eNON+pVS+3o2esUvVHdbobtA3BMwImiDnoTrHN2QGjY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:39"]},"IP":{"Case":"Some","Fields":["86.149.30.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c7:daa1:8f01:d852:9629:5535:dfc9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloudy"]},"Identity":{"Case":"Some","Fields":["hFghzY494CPANIO460Kg9aVYLdo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U8JI9xLeU7An8pLAPHD22LClYp91QugjjIyIG0xA7Xo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:35:28"]},"IP":{"Case":"Some","Fields":["167.71.141.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:e0::472:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Smeerboel"]},"Identity":{"Case":"Some","Fields":["hErpytBDJelV4r4VIVY7ef5wlLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2/M4lm9tzysoH+Mf+ZdgavREHz6lUixN2CqfA1C4JC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:40"]},"IP":{"Case":"Some","Fields":["192.87.28.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:3028:192:87:28:82]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tigris"]},"Identity":{"Case":"Some","Fields":["hEnIZCqcmiwrIhi7Ju4mIzaQ5QE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HaIBcEmaN45+Un/+UMiTNmofcpRZo9AdvJXG8WJDK2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:34"]},"IP":{"Case":"Some","Fields":["162.251.116.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chickenlegs2"]},"Identity":{"Case":"Some","Fields":["hEG+pAV+c+LJ34LeYQeMiLaQdgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qCKBOY7T58+VpJ5nBqqXo96/LqzL/t4rsQ8vNbY8AA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:27"]},"IP":{"Case":"Some","Fields":["5.180.183.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DidItLateButNow42"]},"Identity":{"Case":"Some","Fields":["hDxPd02iZT2tuluEejPMZGmV9qE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VLxfD9hQrXHyyoXk8ejKrrzelzoKeQhDtqB4oADrwQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:17"]},"IP":{"Case":"Some","Fields":["62.72.82.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Precious"]},"Identity":{"Case":"Some","Fields":["hCsfbEueQfyQWd9nXF31vanw/HM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z79qLgmnKNbHlb4Nld8PbuUNYzL+U0cZhBE7HDasBiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:28"]},"IP":{"Case":"Some","Fields":["95.215.45.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::ed92:293d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dani"]},"Identity":{"Case":"Some","Fields":["hCjALM0c8BcVyR8YGbpQfBp5qTE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uPl3Ys552F+IRoNSIJ00b9/kiaS+r9AK1IE0+34fw8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:25"]},"IP":{"Case":"Some","Fields":["160.119.249.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kurnel"]},"Identity":{"Case":"Some","Fields":["hCJ9UUPsjEdX91KmtK2zzgyWrwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ls7xp/pNDqCDMZIPlOWE8YYowfyE5cCiAayOZBIbb9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:47"]},"IP":{"Case":"Some","Fields":["102.22.35.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8rijgto8"]},"Identity":{"Case":"Some","Fields":["hATouKq5ggj677Fye2NxM62cb68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPldrO1mMaA4bDqtUoXl7uovitYecXb7/1ERBHoVUOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:51"]},"IP":{"Case":"Some","Fields":["66.206.0.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["hAS8nFFMssb6UERS/P2N43MF95c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvxqTtJriprwxd+y2ReZjLeeceMBPs6DsktrNakNKMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:49"]},"IP":{"Case":"Some","Fields":["208.67.104.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zhuknode45"]},"Identity":{"Case":"Some","Fields":["g/dbxXiTI8qftVgTp6zWEpHjESM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL/ibHnaIJ6kKBRKxBWBtte7UwK7U1HIeT6Mbv/6kMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:13"]},"IP":{"Case":"Some","Fields":["77.232.149.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FaulsRelay01"]},"Identity":{"Case":"Some","Fields":["g/WcKwh0sve0XDeryFAPeDNG2TM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uqxn0lpwCA/+Zkr44yW+CvR13CdB1y2mpTuuLTDlmXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:10:23"]},"IP":{"Case":"Some","Fields":["63.225.114.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KarlHessenberg"]},"Identity":{"Case":"Some","Fields":["g8UHhFKK04I8t+ffSzS5KkLMdjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EX+77pRuqzP/iN6hrmvtKkRAQQTBa391nyGTSIrFlj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:13"]},"IP":{"Case":"Some","Fields":["195.37.209.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strssadag"]},"Identity":{"Case":"Some","Fields":["g8Iin/Tk4LrSAptsajUNS03wPJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lnGvJKgAQGwE0H//fxjgvuhtXZPnhE66/SQxZy8DmHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:20"]},"IP":{"Case":"Some","Fields":["45.32.154.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubcygne"]},"Identity":{"Case":"Some","Fields":["g7+ycPAZObN7DYmvKOKjL4iPoCs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fp2IB1SFAX1uKUmVZEb9QmvMLy4dzcLNihtgBbGbxuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:46"]},"IP":{"Case":"Some","Fields":["185.155.96.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f69m01"]},"Identity":{"Case":"Some","Fields":["g7y7+3F8EN7L4nWvpRLko5Bt9B0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b2orl2fcMclaVGgTAJS2vXB1y/fkA/cV08lSFtmAEtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:33"]},"IP":{"Case":"Some","Fields":["108.175.7.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:19f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woodland"]},"Identity":{"Case":"Some","Fields":["g7XblApxm2f1v2Fv7snY1Pdk0as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0E1EeSOCgS2KZ6rKPRUjmALkvX3MHtXzlZuw3zUsGV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:29"]},"IP":{"Case":"Some","Fields":["216.210.69.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["focaltohr"]},"Identity":{"Case":"Some","Fields":["g67b20vjrQ7ZGFC/GlIbhDB3dZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8y6TIgzuYDweCQQ+KSdmT3sPvXHNEDcQPNsCYq5s4Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:53"]},"IP":{"Case":"Some","Fields":["198.251.68.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masx"]},"Identity":{"Case":"Some","Fields":["g5iJvvLhWFIlMD0zLqRHH+MpthI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lZlCyXitjQ/EHXy+EkDV0qJbqjSb9rk71Hl+QTvGj5I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:43"]},"IP":{"Case":"Some","Fields":["51.15.237.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:630::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber50"]},"Identity":{"Case":"Some","Fields":["g5LPfdPosXaF3emLC8TnOR9yckY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0N0rd4VHnuMo+QV1QhbtQnSP/TrijAyFif1d0OcY9B4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:27"]},"IP":{"Case":"Some","Fields":["185.220.101.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::25]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NyymiSipuli1"]},"Identity":{"Case":"Some","Fields":["g4qxGvk4VuAwK44re4pHdn4yGOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zh5c1jX4X7ko9H53vJuNvmeMleZdiNEGwCfPD9FyIRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:55"]},"IP":{"Case":"Some","Fields":["185.218.193.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:8f02:2015:1::109]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE63"]},"Identity":{"Case":"Some","Fields":["g3nDJlOVjBZanCEDUMEECyavnns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyBC1bt35rWEzkgW09nIBQZL7uLGlsnQMwreHXAeZcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:18"]},"IP":{"Case":"Some","Fields":["37.221.66.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:104]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedArea51"]},"Identity":{"Case":"Some","Fields":["g3k75qJvUKlGNtBEYZIMV6g1HAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PmUdqGLxHGdRqKsofW4lhtsNmu4cIlVOAcWH8PLF9pY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:45"]},"IP":{"Case":"Some","Fields":["23.154.177.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay24at5443"]},"Identity":{"Case":"Some","Fields":["g3QF4y1w4bKc4f/oXAU+QcvyZ6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZhFBB4d/iTIrfwzwqNIOELbxMssAJTUdE+1rgPx4h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:04"]},"IP":{"Case":"Some","Fields":["140.78.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["McCormickRecipes"]},"Identity":{"Case":"Some","Fields":["g3D8TBkNACD6WU2CMt/jS1swrwU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUe2vSZ8FxXXugd1FG1qYwmO5ZMbxjaoyvE7ymujIHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:11:25"]},"IP":{"Case":"Some","Fields":["38.97.116.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["g1/+ZC76O7eTZmPSNloV0xn7YiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QZFt02FI5MqwcUeuaCGwy3Su3ta4Azf+SRvJr3WIjbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:43:18"]},"IP":{"Case":"Some","Fields":["109.87.25.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["g1i92pyaaAtOOigJ5cJPWzYk1cI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["or5wJySXJZAYIUmTGHCCV8Ael5H45/wKK/ExfHUhc+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:38"]},"IP":{"Case":"Some","Fields":["51.91.73.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["gz1/GvtGcI+TUbOOU5Gn9r1/tjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fM3f3/p4Gk+xPLf/Sf6EvocTuKa5O5zGR/f9xzbWhuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:57"]},"IP":{"Case":"Some","Fields":["69.237.207.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["GentooLibre"]},"Identity":{"Case":"Some","Fields":["gzzt0ozbfzouw+xzmGSfPIlP4a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWRflPq+TZvrhuS6Q9QP4dxMo0G1gPkSO+vmjPdZ26M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:45"]},"IP":{"Case":"Some","Fields":["60.241.48.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:6e::8888]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["derailleur"]},"Identity":{"Case":"Some","Fields":["gzDIxSpNxWITU2nTF9hoh7v+FoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWegAGOVWLt1WpPZRVdyE9h/DY8XxjIqKp0CXKRjZxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:40"]},"IP":{"Case":"Some","Fields":["131.153.152.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gzAks8SJOvEGY0g/KMUebKa9ZQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JPpXDCNREKUMW6QBP4Uz7cbvowYDPmfJ+FLMHRrysa8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:02"]},"IP":{"Case":"Some","Fields":["185.220.101.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["df"]},"Identity":{"Case":"Some","Fields":["gyRmhTBkw5oVygJyWZvtIY7wBD8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZkGNvXwUaxfyqDAhQ8mjp8wrWZxKEDfFQXEfLCSmuOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:57"]},"IP":{"Case":"Some","Fields":["195.211.143.223"]},"OnionRouterPort":{"Case":"Some","Fields":[65065]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay39at8443"]},"Identity":{"Case":"Some","Fields":["gx9zG6RpU5777vYJ1N7gOCu4/Gg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyOY/zyKzPNqcHtSSZW3iznqMfEbn7EdIFDFwsgxe0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:44"]},"IP":{"Case":"Some","Fields":["140.78.100.39"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay06V6Rocks"]},"Identity":{"Case":"Some","Fields":["gx8fO27PhvH1wJAq1H+oyZI2sNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L1xz4jy/tdS9RmIzq5Aq3EKZs0rov23hMpiz0kYyKjY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:54"]},"IP":{"Case":"Some","Fields":["188.68.49.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d51a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tuferi"]},"Identity":{"Case":"Some","Fields":["gvCtSCez/8RtVekFIxp6Ryz3XTI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ihX9HeADG0gYnhcEcp8q5RiWTK0I5SgNfBRRKS2DXr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:51"]},"IP":{"Case":"Some","Fields":["50.7.14.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["guwDvexGXpus3RGawLc5atbcByA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m7jGo6KRj3n7Xs9/feXm/siR7uSEwof8/SRD/NWWvjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:55"]},"IP":{"Case":"Some","Fields":["193.122.15.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot63"]},"Identity":{"Case":"Some","Fields":["gtqWeKC65gCHqmij4dbmosQkbW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vCtYgHYoSc2nSMcUFPRR4tYrEufKKZy6OpSIBm/Wwb4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:36"]},"IP":{"Case":"Some","Fields":["212.83.43.94"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darklab1"]},"Identity":{"Case":"Some","Fields":["gtGi26vmI9QgEisdWZZSdwB7lEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GSng5KzWfzqAyDIffQqgJkmT0TvAoDrqZWNck2noFkg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:05"]},"IP":{"Case":"Some","Fields":["89.58.27.84"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["gs5C0EtbphbmEeR1iGHIZLKs/Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2thSThMS3bF1Uf+HgKvm/89lg1z3pGZp1S+jB2jFjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:28"]},"IP":{"Case":"Some","Fields":["37.120.185.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fairner"]},"Identity":{"Case":"Some","Fields":["gsmONIjp8ZsXrboCeEwBECD99Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EJoxc8nTfGdRW+mhbtr6Zbj1sEbIQvolLbrNSGMIghM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:03"]},"IP":{"Case":"Some","Fields":["79.112.101.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2f0e:531f:8a01::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skydiver"]},"Identity":{"Case":"Some","Fields":["grlGY/FBl4+yJSoWan/P8Lo6FwE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y0Uf8afDHXgz7Kfxs/8OwfO7vd8wT7bgKK1sYFvsB+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:24"]},"IP":{"Case":"Some","Fields":["93.104.209.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipfa"]},"Identity":{"Case":"Some","Fields":["gqzCxU+o5T+xqcmQzQzQAHcynf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ayCpNq5UriaKtBM30sjm7VSdmCIKuBtAU341SE0X39E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:31"]},"IP":{"Case":"Some","Fields":["185.220.102.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::245]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DaGamerNode"]},"Identity":{"Case":"Some","Fields":["gqtkclpWK1F9h7UVETu3knRiZ4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KoSpWjEBVDpYXDXFvtTsVKIMhBKU8c9DjkJS8zRJMII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:03"]},"IP":{"Case":"Some","Fields":["5.255.97.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:69e5::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Nyarlathotep"]},"Identity":{"Case":"Some","Fields":["gqstDkn/vqbooUoSSNRbLOw+SL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qAvmWZu7ePO/KmhsbA9kIHYyAxu14lgv9yccS+/HnsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:55"]},"IP":{"Case":"Some","Fields":["82.197.187.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:529a:fb1::221]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["gqgLdahUNQc0weaMELt7H3gal3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ndubXAZvFl7Jt14STALWD47dqAyn8ZM0k4P9Dkvn7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:05"]},"IP":{"Case":"Some","Fields":["23.128.248.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::44]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["operator"]},"Identity":{"Case":"Some","Fields":["gqS9CTO1nlpvlL6gGo71WrwDFyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["so7K3B+1EOl7Ko1klw5FWLsM5ys7LGCoOXqVjoYH4vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:10"]},"IP":{"Case":"Some","Fields":["148.251.237.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:80ed::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gp7Br4W4mkzZ4Qxycf7/GaZMSnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oDqkbaYFHLYwNZgvwigL9nU4Q9EuZ7s0vernL3rYn78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:39"]},"IP":{"Case":"Some","Fields":["185.220.101.43"]},"OnionRouterPort":{"Case":"Some","Fields":[10043]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::43]:10043"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip4b"]},"Identity":{"Case":"Some","Fields":["gofa3EFbPmZ8YX7vtufWVMesDEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/MCrQIsVOTdmDhVj3dK5J1YUQwg2UqgpbL8gc3aoxWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:58"]},"IP":{"Case":"Some","Fields":["185.220.102.251"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::251]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Turik"]},"Identity":{"Case":"Some","Fields":["goTIpF0i8pgcS2KHx/tDZxFufM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4r2rF5aRdEBEVrRCoYZYxh3AA8chr2LiMYURBkJib0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:09"]},"IP":{"Case":"Some","Fields":["176.9.38.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:161:353a::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssp"]},"Identity":{"Case":"Some","Fields":["gn4Nh2sWpbzAgQTQmhxBIeaI8a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t63Y3atfP2zRyxifWcWi9OgmZpvfIrFm7aExxfKAWxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:33"]},"IP":{"Case":"Some","Fields":["103.54.56.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2"]},"Identity":{"Case":"Some","Fields":["gnWkNcjXg+7INaZKPqKt+MPEUx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IX2WhjwRPIN9dpGAFcS+SIm6tNvzOaCIaKu0Pw9plao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:36"]},"IP":{"Case":"Some","Fields":["45.151.125.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["glrV0zsqXEG8ZHBH1rY6xBxMUCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rf9smfmi60DnVd7jMM8StwyNqdMgkIEAnmpmI6b2Cac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:46"]},"IP":{"Case":"Some","Fields":["78.94.253.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Monaco"]},"Identity":{"Case":"Some","Fields":["gk/drc6biTOC4oulTFJAbb43QMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xyKDA1CrVtodHVcICktFfinbedM+/o+GtiVP1QoI7c4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:24"]},"IP":{"Case":"Some","Fields":["23.88.75.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit13"]},"Identity":{"Case":"Some","Fields":["gkhixAqBMn3oB/RKfbmCemK4a1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xQRSIzSlQVuAZw6aA71mNlrdRuksP9EV1zZPyQFSOAE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:29"]},"IP":{"Case":"Some","Fields":["37.252.255.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1c:311::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowfall"]},"Identity":{"Case":"Some","Fields":["gjqoHid/NmUFVFUiztwvUpzk3D8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PsSQAtb1bDI++nj0VLAdEERIDRshIkfZbQThzvXWZo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:36"]},"IP":{"Case":"Some","Fields":["192.160.102.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::4]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["meehIrmTor"]},"Identity":{"Case":"Some","Fields":["gjfPw1ZM2voKSwz8WyLoTVs3WGs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IZnF/CE0EIQD7TzhWai0TwdB9LtAxSnbAflaUqWWTX4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:04"]},"IP":{"Case":"Some","Fields":["82.181.230.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["giXFSIKWQ5T4UT45f+r2uAd3wRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EjnbOFFY40Rly9NkoL2w5ntq7xsLQ59WM8WG8V+KSts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:19"]},"IP":{"Case":"Some","Fields":["194.26.192.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toray"]},"Identity":{"Case":"Some","Fields":["ghf3agQYbRHgQBgC82bZ0VBNCLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDYXRjFrxXw89+9P6OMKBz2iV1BPMKCt5Z0C410QNN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:12"]},"IP":{"Case":"Some","Fields":["94.224.67.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:181f:0:4063:99b9:9381:14de:a4c1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute17"]},"Identity":{"Case":"Some","Fields":["ge37yPb1x88K3V+OCLyPq6BAicY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbA0DV01HkjmN7G6qaw3XNyce01dMbW8B69DaBAksd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:35"]},"IP":{"Case":"Some","Fields":["185.220.103.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrimQuark"]},"Identity":{"Case":"Some","Fields":["geBMyhM1FfpXT6mMCEmjkox69pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/iCMRj7uHOH7hNGE9z/zoLF1HKEwlOX7soDKqqkBfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:08"]},"IP":{"Case":"Some","Fields":["193.32.127.231"]},"OnionRouterPort":{"Case":"Some","Fields":[55990]},"DirectoryPort":{"Case":"Some","Fields":[56033]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["gd6qjEY3xEXoinNJlLp0QQLJAGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LeeA/i4pmze8Y5LhkFUTFzwB9nRJfuNqzoppllJWtxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:46"]},"IP":{"Case":"Some","Fields":["167.86.100.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JebacPiS"]},"Identity":{"Case":"Some","Fields":["gd3Za1hV8odHeijNr+wLDPMeAxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3y705AXABL1Qj8JFeAcLw4r7RUWqZZy9rlf6l2O2ibE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:02"]},"IP":{"Case":"Some","Fields":["188.112.42.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["risk7"]},"Identity":{"Case":"Some","Fields":["gd1T8DhMLpWbg1cJPxuF7dVB6EQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fg6EpSVYtDuorCIdNlZWYkT8hAKYpEvTe6cdE2n1Ew4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:32"]},"IP":{"Case":"Some","Fields":["167.179.99.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal3"]},"Identity":{"Case":"Some","Fields":["gcuxJgFAZFRQ2PWZyKm90on/hTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wAPosk/jFMbstPawOG+p5X1BIQkGGW0q0jjQkWQ3G+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:42"]},"IP":{"Case":"Some","Fields":["46.148.21.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["InMemoryOfJohnKerr"]},"Identity":{"Case":"Some","Fields":["gcVdQDqCv258P729QdECtwiJANk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n/ZgCd4Czf/X6PyZN6cZ3qzQkw9yuuA/XwbZSEa6X78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:56"]},"IP":{"Case":"Some","Fields":["162.255.84.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:16::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gbiUOeNO4QpPlMLBcjX5zmfENFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3/12LQodkNhnmANONdFvFnX3F9zhAkOhufxCHcrmamw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:07"]},"IP":{"Case":"Some","Fields":["134.195.196.69"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fec3:0:1::69]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClankC"]},"Identity":{"Case":"Some","Fields":["gbgiLBB8wKq1dbg7+Y0kktsfYJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U290YKPLp74wBahwiaUIADKStyoqWy4mlPrM+7jHXG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:05"]},"IP":{"Case":"Some","Fields":["194.34.132.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv104"]},"Identity":{"Case":"Some","Fields":["gbddU0+Rv7fFerZ9oQvO9iJYKug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5fwzSA2oTCx+qj9J8S2Ldb2E5j7VDT4/ZiSXn2yjZYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:32"]},"IP":{"Case":"Some","Fields":["192.42.116.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:16]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bartor"]},"Identity":{"Case":"Some","Fields":["gbdWq8++jUcZwGEPjiTTTcMJBbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cgwikggBPyRFjP8lRm8Z174ALIoJXbJcA8kRky8SYx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:16"]},"IP":{"Case":"Some","Fields":["188.61.80.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1210:7262:df00:9818:fed2:2a90:f143]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blastoise"]},"Identity":{"Case":"Some","Fields":["ga4jDU4pFcxWLA0gLRmz8POFFEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEtKedbvZNsVcr9YqW/YXMRIc733toSRbaAU3Gmcocs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:53"]},"IP":{"Case":"Some","Fields":["23.111.189.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chutney"]},"Identity":{"Case":"Some","Fields":["gaWXZicolNJ/6DdcT4OmukU2ce8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ci38rayd5ACPYwZs7mOX4kHTw4OEEp8wXx/UiA8kmBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:02"]},"IP":{"Case":"Some","Fields":["37.252.190.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["evudalhessempos"]},"Identity":{"Case":"Some","Fields":["gaHXd8Aj67He6ef6hzVim6j3SXw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00utG+CwISjNXO0iVCI9mT3NM/vkjPGJCfqN48Fk5QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:31"]},"IP":{"Case":"Some","Fields":["185.225.69.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gZ1bwxFy3C11SIsarGYBPrFeRZs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PTvrD3btfzPG28eXhbiUvpm1M951Be5hUhZmsc0wpLQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:54"]},"IP":{"Case":"Some","Fields":["203.158.42.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Helios1"]},"Identity":{"Case":"Some","Fields":["gY6IUIrJmPGBjqBMypA0xaYodrU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VWm7RPW31X5xv/d4hnOfpL+escZF8RhI2R1OsYyIsUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:51"]},"IP":{"Case":"Some","Fields":["179.108.106.120"]},"OnionRouterPort":{"Case":"Some","Fields":[6513]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gYhIEHoRPTRCw3rRPyIOhXs5FKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwRbB/GlpKdFzlKnLLhPbUhNE+1mAtPV4bfPgMNIV78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:22"]},"IP":{"Case":"Some","Fields":["93.31.13.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Txakoli"]},"Identity":{"Case":"Some","Fields":["gYdXSbQEvvmoDPufmO2uHZMu0zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPyA1ToGfpNddEeBe3xt9zQfSVX1Gj6EA5erGc0H+kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:32"]},"IP":{"Case":"Some","Fields":["82.130.170.204"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["decorationWorld"]},"Identity":{"Case":"Some","Fields":["gYcIicIqkpuXILWLMmoRxrFjDAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8HB8L+LddKm6HV4yhf5nXrlfU6oz6dI3o4XQsXdvhd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:11"]},"IP":{"Case":"Some","Fields":["86.6.6.44"]},"OnionRouterPort":{"Case":"Some","Fields":[4443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["gWufnDg9Dqffk5BA1Nn/VjUQ9/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6P79ekw4F9YPl0iSXagmzy5T/Tqho0VMx5tN8LnTjAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:52"]},"IP":{"Case":"Some","Fields":["185.220.101.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thealbum"]},"Identity":{"Case":"Some","Fields":["gVrpJHVfHmOYbkNKkqiOofdaYKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJqR80MkQXzUwuAAjnH+qE3kheAjKdvjPvzS2mXeAzI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:33"]},"IP":{"Case":"Some","Fields":["179.43.128.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who8USicebeer42"]},"Identity":{"Case":"Some","Fields":["gUXMP2dPLlOPP+ZBmPx7t/vZS1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PmPJS8zzv7LWV0v8kqk0HaerMRP0vFkoMyB98MdLO4E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:08"]},"IP":{"Case":"Some","Fields":["69.197.160.206"]},"OnionRouterPort":{"Case":"Some","Fields":[8272]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1181"]},"Identity":{"Case":"Some","Fields":["gTLdLvptBIy50FDHhFP1yNjMr2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/XGcv8FPdMjbYITrMpseRuuqptImoSmTcz2BL3WIxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:41"]},"IP":{"Case":"Some","Fields":["185.220.101.181"]},"OnionRouterPort":{"Case":"Some","Fields":[11181]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::181]:11181"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["capeaturtraffic"]},"Identity":{"Case":"Some","Fields":["gS+JpK0FlGR9fhpYpQhwUE48TEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XoSqfSZ5PxMqY+GbGPIrA2MqV/090dvz4MZVn+cTse4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:45"]},"IP":{"Case":"Some","Fields":["45.33.47.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:fe3e:4be9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["gSzQh/NZTXcdkbO/rEfs+ccsIvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iteEawFa6/wJJiuvbISsvoYH/bDX5UnVlzR1UUtj3ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:08"]},"IP":{"Case":"Some","Fields":["91.211.91.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R8B7"]},"Identity":{"Case":"Some","Fields":["gQbT1D+9ktXY7rw+UDGyaPzdxCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1v2Zo0C7TGRTzEwihE74Gkz7bJ/vYOo0NjDOXvROeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:05"]},"IP":{"Case":"Some","Fields":["185.82.126.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:5000::4c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["gPWXonFUOL3Zhub3rIZG7qTkkvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzggeSykQTllmhIomQXi6foURmRfmk1j4IrNmmWjgsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:04"]},"IP":{"Case":"Some","Fields":["185.35.200.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["gPMi7QmV8nzSa1qd57gE+S6KypQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiBO0Y85GFLMxGhO6n+8DV6x0O/u4wMpfNJhxDkXm6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:23"]},"IP":{"Case":"Some","Fields":["88.208.225.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:19a::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deadbabecafe"]},"Identity":{"Case":"Some","Fields":["gOI/JNW+AZXSgnVX0mDRZ23qVFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fx139YWw5RE5MmRCnvn+SbxQ72WXmOMqHB7mKGcR3bk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:02"]},"IP":{"Case":"Some","Fields":["74.82.47.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1:908::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CounterIntelligence"]},"Identity":{"Case":"Some","Fields":["gN5Bv+uNCtE4wURqYYVnPUby1BU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RBlby3uLiWyD7eJWMYknYIGraS2fgzwAAH13yUw4u98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:59"]},"IP":{"Case":"Some","Fields":["173.73.115.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Oxygen"]},"Identity":{"Case":"Some","Fields":["gMXWf+E+Ol7b9N1C44Frdj1dQ0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ez4aosLfY98U/sICK/drE0S2WfWGQLpxxzzY6lmLeBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:18"]},"IP":{"Case":"Some","Fields":["94.130.129.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:3ad0:1::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["pad1"]},"Identity":{"Case":"Some","Fields":["gLY3XFXdrz0yzYwgMajEbRwpLhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0HQduJhPFZvb/yag46pHY6syscB7sRA2K0fdVNk0AUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:37"]},"IP":{"Case":"Some","Fields":["5.161.79.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:a55a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["basicincomenow"]},"Identity":{"Case":"Some","Fields":["gK76eRE4JjNnNKzPq3XxmCA7HLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuRXW9EtGM6MnHZBqZmn2DhsAXQceNNszcVGppgHuAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["159.89.236.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::17e8:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["robzombie"]},"Identity":{"Case":"Some","Fields":["gKxdKgIG2WfANO70emw1iGNCyWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YRrJqpXXDLSDcpzEtErE71fP7wMpDaDRwBcRwWYD31c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:44"]},"IP":{"Case":"Some","Fields":["104.244.73.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet2"]},"Identity":{"Case":"Some","Fields":["gKr41ZVqQ8GXEEzvJVDNQtFlxvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SMyjTTD9TwEG+63/poLFauJeDcwtpENKL+5Xj9RL2MI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:21"]},"IP":{"Case":"Some","Fields":["193.11.114.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::100]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay02V6Rocks"]},"Identity":{"Case":"Some","Fields":["gKDfV9hRC4k6EVAIauCa3LPsHRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YDIhcLpNoWJsNrFHJaqimdL822wQy0Gz+LOzs3UQb8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:17"]},"IP":{"Case":"Some","Fields":["5.45.99.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:616::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gJz+qkEqzSuAdQIJk5dF8CM0u1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["booOaJB4nMcEogqrcGcnK3/4uwKXIeIW5CahU3X9+FI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:18"]},"IP":{"Case":"Some","Fields":["91.121.219.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gJUPE7e/PYkmfbAghTFbPANX8Ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+wmGB+mZtMG9rS22ulSUwTx8IqHCIPgAgoHPr66TsOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:53"]},"IP":{"Case":"Some","Fields":["145.239.1.189"]},"OnionRouterPort":{"Case":"Some","Fields":[36122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:5bd::]:36122"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["gH+/JzucQcfRbx/ohkbvvGYOOLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q4YDn1cYqx9RRLCGMyII8pfsJFF+pOo11/yirpEvqUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:52"]},"IP":{"Case":"Some","Fields":["91.199.137.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a11:3b80::225:90ff:fef3:c4e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["localPenpal1"]},"Identity":{"Case":"Some","Fields":["gHwfDWpykmjB+OKscsjq4tnZOW8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fyFnsf/0rbIPqAhazQQTx9S6n3opxwL80/nMm6ugoh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:06"]},"IP":{"Case":"Some","Fields":["212.112.156.88"]},"OnionRouterPort":{"Case":"Some","Fields":[6247]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kc"]},"Identity":{"Case":"Some","Fields":["gG8aK8ER1ijul2GdvqACUUuGCqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Az9R2RgoRP5O1DncCA9GxVQePQ8q2bfgsEyrk1vXu0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:42"]},"IP":{"Case":"Some","Fields":["51.158.191.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1828:382::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rohtidanoshis"]},"Identity":{"Case":"Some","Fields":["gFYIDugitcoaj/9StyQqgsXkL7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Prwy+ynjn8HzbHDxoECCXY/yJHOhJv/ldtycZrE6e/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:07"]},"IP":{"Case":"Some","Fields":["185.246.128.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MidManMoved"]},"Identity":{"Case":"Some","Fields":["gFT9K6RFTh2iTQMkzZkYQ12lk08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NBkcOQPGiaP8RhBmVwAotQcDCtHMtGi0afZwy2RJXjU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:21"]},"IP":{"Case":"Some","Fields":["51.38.148.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["gE8q0/+uiPUOWpw5BXrcM21w9s8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VHp20Fb6SIIfgJyAxMlQClqKlRlsQLHsjndcs5xL8Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:35"]},"IP":{"Case":"Some","Fields":["74.208.212.42"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:24a::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Damnation"]},"Identity":{"Case":"Some","Fields":["gD+5i6D+FwnAh+kTjMYJbyIIPKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HMhft5/en8hnKbEDzBEXlqFVxSEH1TJwpeA6NtKnkss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:26"]},"IP":{"Case":"Some","Fields":["123.255.62.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andreios4Democracy"]},"Identity":{"Case":"Some","Fields":["gCgIEuRciX8OBkc65vOgSH6yuts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QEAYDfwLDOS4VUMLo9S/zeR6CSrjqKZn2hGWKIkSHTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:57"]},"IP":{"Case":"Some","Fields":["5.45.109.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:2664:b831:94ff:fee9:5650]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MikeDiaIsGone"]},"Identity":{"Case":"Some","Fields":["gCKKtcvQrH6RHmlbzu2GBFKP680"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X6+xZooE3YdM4mBBrM8Bk2ZHHr8B3q/yVhg7WbE4+PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:53"]},"IP":{"Case":"Some","Fields":["80.147.218.187"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:a:b5a:6100:11:32ff:fe2b:36b4]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["montrose"]},"Identity":{"Case":"Some","Fields":["gB74CEWEjmhcRTSiQI0y1UQxh98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5WgU8VE4CI/mcSzliwZc+H/hciD1mD9LjN9as7bt1Bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:00"]},"IP":{"Case":"Some","Fields":["160.119.249.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARCANEMINDED4"]},"Identity":{"Case":"Some","Fields":["gBGEdaCvKjsAGMxsAUeIK3jpEoo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KMD0cegkMgpszV4T0tVvnyPT6Ad4vjdpnLlBei2VG10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:12"]},"IP":{"Case":"Some","Fields":["5.61.59.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leysen"]},"Identity":{"Case":"Some","Fields":["f/UyggyGQoADH0EKhf/kA/XwuFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RELkTLCloI+O5jfWnVuDErMW/8rAtxgiNEAb6gnogAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:35"]},"IP":{"Case":"Some","Fields":["45.125.166.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["G00dT0Kn0w"]},"Identity":{"Case":"Some","Fields":["f/Ci8EszxNIzcj6unGiAp2YKYXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLYD4tXxwhtG5yds7Amr9IXa4G5lKCrsdf/DPYckplY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:21"]},"IP":{"Case":"Some","Fields":["92.117.101.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE59"]},"Identity":{"Case":"Some","Fields":["f+iKHHQBPVQCPMQqAle37exnH1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cLvpvJBnSLxa8Ila9KBdSYDexbIO6F0feCJPRd76l4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:45"]},"IP":{"Case":"Some","Fields":["170.231.236.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobo"]},"Identity":{"Case":"Some","Fields":["f8aFM4WsEM1MdL/O0ltsMPRAo8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BlFLDxi56FsV5q0Wzav3ui+ovBljor7y6vM0o6KWozE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:32"]},"IP":{"Case":"Some","Fields":["202.61.236.66"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex20"]},"Identity":{"Case":"Some","Fields":["f6jn5E8TkqTkD/w7ads7AAkbf9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2z+uQ0sMRvgJsdsHEEj8CQZT3hOSA9bDM0Mu5+G4D7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:07"]},"IP":{"Case":"Some","Fields":["199.249.230.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::110]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["f6I64Ca5HFWJFqvC2pZRycIXEf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jhj8u7x4XN/I8kKo7T+5pIafbJK4mXMG7P+jWbxWdss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:43"]},"IP":{"Case":"Some","Fields":["23.128.248.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA05"]},"Identity":{"Case":"Some","Fields":["f4RFGDacGlcvMhH0DRbwTXbxKHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lkTTB0gBTzqv/lrczzOwND1hkkI3urHsaIJ1cCeYHxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:10"]},"IP":{"Case":"Some","Fields":["2.56.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["afooagain"]},"Identity":{"Case":"Some","Fields":["f4JEmrvmZ0oHkBtwMwlLIxHid98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTqkP/sBIeIAYRevEhejPDd0bzvkfuEOoB2ATocjlMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:35"]},"IP":{"Case":"Some","Fields":["157.90.118.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:6bbf::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kinor"]},"Identity":{"Case":"Some","Fields":["f31KNLL78/d1cCLm+Hzrp2dNHrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s5u3/spmxQs8lRezEE7Ez5ptaeBljrhpnhnWNsa8W0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:03"]},"IP":{"Case":"Some","Fields":["185.16.60.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:a:71:dead:beef:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hmmmmmmm"]},"Identity":{"Case":"Some","Fields":["f3RdIS/SgXVrElSzuEouil/YmpQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["18nY6QHXX4o3C0pmDSLSw++H5aQrKBx0IR75vTk7jsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:01"]},"IP":{"Case":"Some","Fields":["116.202.179.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Khopesh"]},"Identity":{"Case":"Some","Fields":["f0tjeR88O2nfjqcXSu4IdSAFKvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yWePi9lpVWsbg3lV+wm/F8W6K1c1QJ9pqv6+xpk+7tI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:32"]},"IP":{"Case":"Some","Fields":["5.255.99.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:19c9::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer85"]},"Identity":{"Case":"Some","Fields":["f0ci4zLQD0TlFb/VobGg9MaEi/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIA4i80sWIcfq07kI4rl7laeMfVIUj8O9Yg3h19qUFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:15"]},"IP":{"Case":"Some","Fields":["95.214.54.101"]},"OnionRouterPort":{"Case":"Some","Fields":[8185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sveahosting"]},"Identity":{"Case":"Some","Fields":["fz5ZpOoFbz3wCVaNDP+A+FD16ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cpWniyi+3Llotiz9sbHilriYW7zJBor7N/VZljk8x0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:12"]},"IP":{"Case":"Some","Fields":["193.239.232.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishTatraSheepdog"]},"Identity":{"Case":"Some","Fields":["fz0g5yok7S69kqqcQwuAW6OJ0Cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["23DhoOYDkmj8SaMnE2WCYclHnBGoZYXC5vsQZofnTIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:33"]},"IP":{"Case":"Some","Fields":["31.6.70.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::321e:67c4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OceanGhost"]},"Identity":{"Case":"Some","Fields":["fzAvCqzHaDV2ivBohJygfRzDjF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKqLv2dMquAfLPBuk+vumhoZDYngJMchMI7luh7Tfsk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:24:39"]},"IP":{"Case":"Some","Fields":["185.177.127.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams03"]},"Identity":{"Case":"Some","Fields":["fyfj4sXarCHJDwg9lb1xeN1LBB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DIXPGD7cz93HtTXaHPPBlZeWaoC7xY7wg0Sa/tkhye0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:37"]},"IP":{"Case":"Some","Fields":["45.151.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::b]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["P43ALVTOR01"]},"Identity":{"Case":"Some","Fields":["fxZ6FYSoaAmkYMf8IN+Qlym+C5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y05GbiiLg+UZRxenMU1my9i7n+V732fWPo5rB/PhbzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:22"]},"IP":{"Case":"Some","Fields":["119.18.35.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2403:580a:935a:100:250:56ff:febb:35eb]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kalibrator"]},"Identity":{"Case":"Some","Fields":["fxXdIX43Pl7o+LwXFxyXf/1vxQc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lz/TgN7na/7E3OCR3zaO8FNhgyYRmSiWhvPp1olOm6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:10"]},"IP":{"Case":"Some","Fields":["77.246.159.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:230:4:ce::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["fxVeSZyq3wpqEYFbifjW5/nPyyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P/9fMEyEBGKaPGDIck1yfSez2/RVk5h9TZwpaJ0CFSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:44"]},"IP":{"Case":"Some","Fields":["93.95.227.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captain"]},"Identity":{"Case":"Some","Fields":["fwTgica+2D4E+yrhlr3jS4CAlPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["miJBN6oVjCJGMI8hFCBlZgqwWJ3+ERwgZoEvSOvAU/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:57"]},"IP":{"Case":"Some","Fields":["142.11.201.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oniondaoftw"]},"Identity":{"Case":"Some","Fields":["fv1GyNhykC0K5LHGSP4xhzcwV2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RM3d00gX8yTHG/7nYNJ20lf3HsnGZ/vJs9Hf9EVExTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:56"]},"IP":{"Case":"Some","Fields":["5.255.98.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:5acd::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MaiaAlston"]},"Identity":{"Case":"Some","Fields":["fvbpmFZCEfuGiB/qJieqkRm9mEI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ylUjNslWITK6WC3+CJxhv0zBQPC2PIoIFsnVVjCJNCU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:18"]},"IP":{"Case":"Some","Fields":["31.13.195.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LemmiNode01"]},"Identity":{"Case":"Some","Fields":["fvBDtPSrpiwvO/XiAXxOxgfoCyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpX71cvQJgTWtmVtTFpUi5aQij9bF7CSiwwgEm6NS54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:43:12"]},"IP":{"Case":"Some","Fields":["157.90.183.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BEEzar"]},"Identity":{"Case":"Some","Fields":["fu3VTlRX2gCeRskbvx9EPc7gGWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0V2tCD1sCQsFSesbUis5aIGibFPNe9wTcN1vrp73J4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:20"]},"IP":{"Case":"Some","Fields":["144.76.159.218"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:32e6::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notglowing"]},"Identity":{"Case":"Some","Fields":["fuB/JTOatFPl+awcchuz9PaHDbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dfYVcS238Af7YXDin+zItTeqjOUeLYocBgemqvU0xIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:14"]},"IP":{"Case":"Some","Fields":["188.105.205.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["water"]},"Identity":{"Case":"Some","Fields":["ft1zGhuz4ppJSEaWHfmM8ZxFk3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75/gE5xwUTlRZNYgk9APlHnP4OTPtut6gwRVyjS5J3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:42"]},"IP":{"Case":"Some","Fields":["209.182.218.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:bc0:3::2:7838]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorBerryPi01"]},"Identity":{"Case":"Some","Fields":["fsohXVsGEdWmEx92Fse2AAN4G3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NSaheTbYpu1zxxzRPIytQgTNhUGawZzluyhRVBu2JB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:08"]},"IP":{"Case":"Some","Fields":["93.198.213.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["fsoUuhlOmDgTb6raXrjVAjwAshA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JTB9dKYt8tvpZ4NDalSff7T8kEZ86fM8KRUrUojY8wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:51"]},"IP":{"Case":"Some","Fields":["23.128.248.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::62]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hacktheplanet"]},"Identity":{"Case":"Some","Fields":["fscrLXbdciySLBLZOUvT/iixtK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["43PL5oyPYKPbtgIu8LHdqse1rcJLVBHY9akP6akHMo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:35"]},"IP":{"Case":"Some","Fields":["172.104.126.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schildkroete"]},"Identity":{"Case":"Some","Fields":["fsTDENH7KnwJQ7gQlG6jVNZKIWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0zOLd9tMuHiKXu4XBuMxH7kmWfR7Ca7fTGH4Ez9EisE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:46:30"]},"IP":{"Case":"Some","Fields":["109.70.100.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["falared"]},"Identity":{"Case":"Some","Fields":["frkf22jq06E4CNk1bagmBXcyFfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jADqA1ysXcYnkI0klVtHO+0lSbZHr0KckbuwcrpZuyc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:02"]},"IP":{"Case":"Some","Fields":["148.251.81.16"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dizum"]},"Identity":{"Case":"Some","Fields":["fqbq1v2DCDxTj0QDi7+gd1h911U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zs8smQzwtFHyVnTHB1SL2yU1Fc0Drqn0bV+CNJ2o0a8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:18"]},"IP":{"Case":"Some","Fields":["45.66.33.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Authority","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rexum"]},"Identity":{"Case":"Some","Fields":["fp6TVbryQ5VIfQ1qhNdd+jYdKvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J9gq2Eg6Om0pWE7DKrBAZ1A2JXN87lWXZ5vn21r55m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:33"]},"IP":{"Case":"Some","Fields":["37.114.62.158"]},"OnionRouterPort":{"Case":"Some","Fields":[3443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:e8c0:2:84::1]:3443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["minotorus"]},"Identity":{"Case":"Some","Fields":["fovEOuderhbX7EZ29KXDVfRUuAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+xkUjqNZ1sEx5DgMw9J/b0rwPq8qoCkc0LuV7fYy2Ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:01"]},"IP":{"Case":"Some","Fields":["94.23.194.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carrie"]},"Identity":{"Case":"Some","Fields":["foWXuznUx+3Eq/dTi2UxZVotozQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E6F7igQHlCnWuFZFt0cN+7sZnlT4n5tazvAFRgSusZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:51"]},"IP":{"Case":"Some","Fields":["15.188.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoftPower"]},"Identity":{"Case":"Some","Fields":["fnhpgpvyAHi+ALzqO0KXH1vY1YU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZoI7rhoY/A3TQY1CBMpRLwQ5+YAvFjQ91PQiusfBnFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:05"]},"IP":{"Case":"Some","Fields":["206.63.229.144"]},"OnionRouterPort":{"Case":"Some","Fields":[4031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2002:ce3f:e590:1:1::15]:4031"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex48"]},"Identity":{"Case":"Some","Fields":["fm6ab9243HyS8M/MPL52wp8GF5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["maJU0DXFKjJh7lZZr5k9406l1FyJUCVFAlgCxnrVdXU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:48"]},"IP":{"Case":"Some","Fields":["199.249.230.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e647]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jl2238"]},"Identity":{"Case":"Some","Fields":["fmy3KXeKWjvzMzP8JwYU6nmJW8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZP9O/bAkHAauivN9c4WzyqhXP29GJqOwdteLK7J0DP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:28"]},"IP":{"Case":"Some","Fields":["92.200.204.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayForPeople"]},"Identity":{"Case":"Some","Fields":["fmxEZQzZTaNpa/yQ9V5zaFX1YyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W4JIzsJAFws1tSE4TsvOS0jhNIUXvMVDMMjXd6RZS70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:35"]},"IP":{"Case":"Some","Fields":["176.114.200.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schnittlauch"]},"Identity":{"Case":"Some","Fields":["flsQxq1jdmfDQZGV+/eOqAnbyKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xPxY6NmT4oKRP3wVQBJUWLp57Tc541iF29+lGWG00Z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:01"]},"IP":{"Case":"Some","Fields":["109.70.100.4"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::4]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARCNetWork"]},"Identity":{"Case":"Some","Fields":["fkfSjwdEO1f4Ji4UEpNrPiWGlKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9NOTtxjwNKN41oCs/q3B5D2fQ3eGmkalrrCUyWpfi3k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:55"]},"IP":{"Case":"Some","Fields":["199.241.137.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:6:0:1:18e:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adamhardwinds"]},"Identity":{"Case":"Some","Fields":["fjXORL42wU+99TyikvVfjmjCfl8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OixzLE9vzKYueh8FeyMgujtXj4JquTdB//2T2nU/fEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:36"]},"IP":{"Case":"Some","Fields":["185.140.250.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra54"]},"Identity":{"Case":"Some","Fields":["fjIwuCdQR/dzfgMxTYb+vE9XeLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LwikQm8/2tn6HiTZWuPloOdzNhN8eVlRhSBJz3a8WBc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:59"]},"IP":{"Case":"Some","Fields":["205.185.126.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["15T01"]},"Identity":{"Case":"Some","Fields":["fjF8+kTntgE95Lxfg3w3ancXnHI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1cELgGwO2lVz5wSYCEU/8sx9M1LktM7B/xTHEZANqsw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:37"]},"IP":{"Case":"Some","Fields":["92.60.37.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:33:1c8::13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thoughts"]},"Identity":{"Case":"Some","Fields":["fh5ygRB68DtMLIdEx/gvKSQxExY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NB9F0/HUfNhvfFSAgZytxRJnbkV5iC9+fnybsLjJjzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:23"]},"IP":{"Case":"Some","Fields":["192.211.48.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Renegade"]},"Identity":{"Case":"Some","Fields":["fgK3VlU1oYCESMzcrfJJHFivczs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Cvtr9ii2cVJzyoFxT9kmkbIz5Gsn3kHc+0nqRwWRSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:37"]},"IP":{"Case":"Some","Fields":["90.66.55.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb14:596:7100:beee:7bff:fe8d:b263]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow008"]},"Identity":{"Case":"Some","Fields":["fgBqRqIizkL4S0oXVpiztZOns7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EqYk2axCnjefaEOMmOO9KPJmilk3nLpgEhN0x9zZ44U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:46"]},"IP":{"Case":"Some","Fields":["185.195.71.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra61"]},"Identity":{"Case":"Some","Fields":["ff3wMU+c9GH1N8MGnoIPmfxa8FU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZgJBRtgmLy9+uwzG3nD2YX2w3pIrmsu15KrDiMIFWM0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:07"]},"IP":{"Case":"Some","Fields":["141.136.0.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IAmMrNimbus"]},"Identity":{"Case":"Some","Fields":["ffxRKozYqG8y7cF/vz0Ded5Bk7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9FVRGsee0WmgOaWmWOZIiRf0McVGvERFT8BaYMxxtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:53"]},"IP":{"Case":"Some","Fields":["77.32.108.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gunvald"]},"Identity":{"Case":"Some","Fields":["fe4PjxnUw79kbIBBvFvnqQhd/PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DhisOrLSIMnKjktzP4Oo5wKhnjVoO/+LanaDHygos/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:40"]},"IP":{"Case":"Some","Fields":["185.175.56.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kronos"]},"Identity":{"Case":"Some","Fields":["feHlIZ/+8XzSXBWoVxQQ/eAO+Lo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J0crFwmecmOXTJoyyFptHXg7KVPa1pRBMZaZbcaISSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:53"]},"IP":{"Case":"Some","Fields":["73.55.222.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor3"]},"Identity":{"Case":"Some","Fields":["fc6MnGWwLBKPTQjcnRlbDXIAxHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jRAF+oTa6c3TLXCq1VC9X1VrceJnb9wP+ivdaT4zOME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:58"]},"IP":{"Case":"Some","Fields":["46.41.134.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange006us"]},"Identity":{"Case":"Some","Fields":["faNGC3wcE9yrO0nt1sN2yoVis8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T9NlK4yrX9RgGAsnhI2HOtBh9kBkZcKjr0SoUxbInRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:55"]},"IP":{"Case":"Some","Fields":["207.244.238.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:2050:8019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cybr"]},"Identity":{"Case":"Some","Fields":["faMdeeUtEmhbvoVE48VX8Xaw/IQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/I7ZBfShLw1KG3A52HTIpn2ojmLMosVt9DIUa63kaCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:22"]},"IP":{"Case":"Some","Fields":["37.221.193.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:3c1::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Posertord"]},"Identity":{"Case":"Some","Fields":["fYsFwA2oBDH3yw4eQKr5+hVVv80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HVTm+Byonetv4W8tntM5bh+3JDbNJdAiwqyrxETz8OU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:42"]},"IP":{"Case":"Some","Fields":["69.126.50.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["nicecupotea"]},"Identity":{"Case":"Some","Fields":["fYODvaEGTlIXyyfo3p7QgSsJl8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d1hCdog6fGMdPndfJp6A51wxHrJANzjmxs/UUwzHjb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:26"]},"IP":{"Case":"Some","Fields":["69.25.116.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:805:3::1754:9efd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fVX4ea3h56xJvNQNf2gpMwgjPxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N092dhS095EQusMY30Dpyn2/CdOXpyAZCX5xWUcyJeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:53"]},"IP":{"Case":"Some","Fields":["51.77.140.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TLPde1"]},"Identity":{"Case":"Some","Fields":["fVSnyL8fHuI2cUCoh0HHxj5vOls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xyI5FiZwhTbkV1XEUzklBNNgDSxAlNBJDaEFxQC4rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:45"]},"IP":{"Case":"Some","Fields":["5.9.99.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:162:31a1::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE65"]},"Identity":{"Case":"Some","Fields":["fUnxAofz6UYzQ4QIOYOukEJsd2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zAOuD2sVoSkiyKjYOS5qXlikABT/ip9a0sZDzhytM6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:47"]},"IP":{"Case":"Some","Fields":["37.221.66.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:106]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Michelangelo"]},"Identity":{"Case":"Some","Fields":["fTP8LQR0k8alFPWkwdcPylTqVd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJXGXuTtm5Euh7AZIPUWiNUhomtWatXKAKEwjOW9NKU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:51"]},"IP":{"Case":"Some","Fields":["200.122.181.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["21b"]},"Identity":{"Case":"Some","Fields":["fTHVEY1Hv4bFUKu3nt3oZewxtn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3K5aiA7amsoG2yg205jetD08k7muEt3VHw+RQwnvlQQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:33"]},"IP":{"Case":"Some","Fields":["51.15.74.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fR12GTSp1h16GkPXsHhlqky5x/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O1AzHp9Efo1SgS4MAQfZukSOp5qrx4AB71vbtbVGPkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:34"]},"IP":{"Case":"Some","Fields":["161.97.141.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:3934::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SergalBig2"]},"Identity":{"Case":"Some","Fields":["fRHwopCxuT/ns+K9dKlzUvDqMSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["anRfuSIBFzxtZdsIdmRssI9gTcajjrQWQjNLOke9qOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:38"]},"IP":{"Case":"Some","Fields":["134.215.87.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["none"]},"Identity":{"Case":"Some","Fields":["fQa/LEYN+v8hgWd1WMO8ZEoTmZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLg7TU7HvwnK3DUE2Rse/7srZEKwS85PK9ThnB8l2jM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:37:38"]},"IP":{"Case":"Some","Fields":["144.21.35.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c001:6801:841d:34be:e33a:cf15]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrnado0339"]},"Identity":{"Case":"Some","Fields":["fOlUztuYJ8NHgqPxcu4B29xoOsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cWLz9UymSGN+o4Kz9EG4czCHiqssFiIewRFAV/2al9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:52"]},"IP":{"Case":"Some","Fields":["172.104.79.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:feb1:d06b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor8"]},"Identity":{"Case":"Some","Fields":["fNFgwxy66pXsfqyFRrAbyrXFwOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["trlb5vKnhl039qTeBjBsvqmHcrJ8pyw8oFXwoUy2wlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:34"]},"IP":{"Case":"Some","Fields":["46.41.134.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0135"]},"Identity":{"Case":"Some","Fields":["fMaGKJdS/aAm6LIiRu3gl50bewQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3hHxUyuHvnNz6O4yLRwDVNnbHB7/0l95iJK3HH6Hgi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:09"]},"IP":{"Case":"Some","Fields":["185.220.101.135"]},"OnionRouterPort":{"Case":"Some","Fields":[10135]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::135]:10135"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taomeba"]},"Identity":{"Case":"Some","Fields":["fL1nGP+YnuYTdEjJ/xpoUzrbHLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J8h0PgMLo9gQTO7kaMkFMLgNo3Be4YysWcLmJn/qGrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:46"]},"IP":{"Case":"Some","Fields":["135.148.53.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rigel2IT"]},"Identity":{"Case":"Some","Fields":["fLwdR1TvOmLBXLSMCAKcmQCeLs8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k56lIT4KPniGW1AQFj4AsKxCv5mbaLVaVXQkYBQ5uwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:06"]},"IP":{"Case":"Some","Fields":["193.183.98.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:dcc0:dead:b2e0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Brubaker9"]},"Identity":{"Case":"Some","Fields":["fKK9imEd15mqpOpVWKvv0w/b2c8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NiJg3PXgwUEHqBbTK5RbB4RwfteKBisky3J4tsTx0E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:46"]},"IP":{"Case":"Some","Fields":["79.209.23.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["fJttUcLhKfZKfSpvopplDEuUgS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kd+TXtXV+G8eXeRxw4m04TuIJ0zDnMzsOTceOAOAPAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:37"]},"IP":{"Case":"Some","Fields":["167.235.15.221"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OptimusPrime"]},"Identity":{"Case":"Some","Fields":["fJUFiqbnhGG4pr044qnu07pNTYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/tLPNdga29+8JhgnXT+AMTl9rG+5BPws3j6Qd98vFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:36"]},"IP":{"Case":"Some","Fields":["203.122.194.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["singaporemickey"]},"Identity":{"Case":"Some","Fields":["fJSz9VE3sCbokD1hLiNOrVkqFP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qNZX6bEDmK069ulc052f5yPne017rddKPF8vswhyyU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:15"]},"IP":{"Case":"Some","Fields":["139.162.11.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams06"]},"Identity":{"Case":"Some","Fields":["fI7uL8nuhTNiK+7KQZ27/qMTAP0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uyxEeHuEXtW8nXV+qaqx8ywvV9u9TKb5PCUaxlTcQYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:36"]},"IP":{"Case":"Some","Fields":["45.151.167.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::c]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toomanynodesDE01"]},"Identity":{"Case":"Some","Fields":["fIbHPbF84gzSZTfJ4+wP16VeXG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X7XK3BI9kT6roCsgYXo5ODmZKv+HXQGWFb6Y8Qv+r+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:54"]},"IP":{"Case":"Some","Fields":["79.143.181.221"]},"OnionRouterPort":{"Case":"Some","Fields":[2010]},"DirectoryPort":{"Case":"Some","Fields":[2015]},"Address":{"Case":"Some","Fields":["[2a02:c205:2021:2617:2000::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopfenspace0"]},"Identity":{"Case":"Some","Fields":["fIDm6RrxLaJ8FfbqCZ5zSZ1hPBg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zG9capzCXPe/2SeRH401Imr/773yWDAElLd0jAuha0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:22"]},"IP":{"Case":"Some","Fields":["45.136.29.221"]},"OnionRouterPort":{"Case":"Some","Fields":[31337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BibbidiBobbidiBoo"]},"Identity":{"Case":"Some","Fields":["fHMNVL9EZ3nNeZbrK67BTmG1EZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jn53n+GpwST3bwBLRJHqx58sh0gjFfMXTyWX5xcHqYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:00"]},"IP":{"Case":"Some","Fields":["46.24.108.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["fG4mCIoJe/5FZUAgxSoqVUrR/BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VGMZcaB6/svFhPt9uB1dyUqE2MHBOm4dN8AAoqu2QHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:23"]},"IP":{"Case":"Some","Fields":["95.214.52.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG3"]},"Identity":{"Case":"Some","Fields":["fFa6IXWDlHCsqrcuBF3WggdktzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LDyINcXpgBe7hG6iff6hG1qCzm7PA+6ueAWifAs8irU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:52"]},"IP":{"Case":"Some","Fields":["193.189.100.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::196]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArchHolo"]},"Identity":{"Case":"Some","Fields":["fDczdbaTlWSmZxC+9BRKJuibFI8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qk1HZ7pq4y8njTXwdKfbKYlSktqXBNNd5cYvv24Zieo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:15:01"]},"IP":{"Case":"Some","Fields":["77.3.104.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0156"]},"Identity":{"Case":"Some","Fields":["fDS7lGJN0RlMrQCDrLklGuvjv4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVtlVh708aRpXskfksUJIeofO7CkGo7zRLmv36XwQtU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:26"]},"IP":{"Case":"Some","Fields":["185.220.101.156"]},"OnionRouterPort":{"Case":"Some","Fields":[10156]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::156]:10156"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unitytwo"]},"Identity":{"Case":"Some","Fields":["fDOqLsEOalsEw3z++muIP/4WVqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TbU63oyPccAvcG0Jr1EoacnO23eqUjiO7YX4AoGqqSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:55"]},"IP":{"Case":"Some","Fields":["78.141.196.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7401:8b15:5400:4ff:fe14:a2d7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["fC/JgCXYrmlwyAL9CqsUxADuqlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KsmBZ9bqofPrp7aEw7bdE5xVh0TtsisB5mgD1+Ujie4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:56"]},"IP":{"Case":"Some","Fields":["185.220.101.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::196]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leenuts"]},"Identity":{"Case":"Some","Fields":["fCsaH7Ul0y7uUJPI6QrpFufuyrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gTm3G9MLYECLYX/k1uYQBgQRYJHuMtYTVLSPl3S3M58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:07"]},"IP":{"Case":"Some","Fields":["185.17.178.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZKP1984"]},"Identity":{"Case":"Some","Fields":["fCLomrYg533xtKM3h6XsPyq0qNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IK8SOeJ7gR5HRyVUdsoWtm7f/JZv0Owpy1sv//oUk4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:42"]},"IP":{"Case":"Some","Fields":["190.2.145.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrannyWeatherwax"]},"Identity":{"Case":"Some","Fields":["fB7hHS3Y4kyR3RYSJHHF5cTUEBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jgn6zVqCEv8buAGYXNElwkyFPpRrA+Ch03kPFjKoGo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:57"]},"IP":{"Case":"Some","Fields":["103.214.6.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["fBoVF8J6DGgynYTZQ3LgrKk5CwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bd9y+ZvsE84ljxfdlUTnr/Bs8O8fzgq4fJxI7UlRlec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:57"]},"IP":{"Case":"Some","Fields":["185.220.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC0"]},"Identity":{"Case":"Some","Fields":["fAqk47c+QH6fX+sZEvi+JtiqEk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gU0QZ5u3+nnEPmL/l49bsVpLewLC99sU8fWa+M9fxfk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:16"]},"IP":{"Case":"Some","Fields":["204.85.191.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["e/3KjVhBWRt3Eh2sXRGqIypKgtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FHTFQQKJcvIH+fk8wA8FlGS/SB94PDH+gJmIl7K2ykE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:13"]},"IP":{"Case":"Some","Fields":["88.208.56.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dannenberg"]},"Identity":{"Case":"Some","Fields":["e+aD5l1IFBMhxe2S8HXFU2SscSM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W3T9DfpQd6O/DENRJ4iwW4qYpDOmzXYqLV8A2zwxp8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:22"]},"IP":{"Case":"Some","Fields":["193.23.244.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2001:678:558:1000::244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Authority","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["e9QWZSAQt8QiAr5A90mkFwA+zSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJiRvXRNbtK1u3b2iRSXuqaDx/OIJlRDqAzsC6ueqoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:21"]},"IP":{"Case":"Some","Fields":["188.68.49.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aXXXa"]},"Identity":{"Case":"Some","Fields":["e5ufM2VMe1TvV4U/it3IYVVCbrs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OOcm3sBulh1brDdz/nR3rDADt1ECC8DBSU/DgNcJxDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:50"]},"IP":{"Case":"Some","Fields":["37.187.2.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:24c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra34"]},"Identity":{"Case":"Some","Fields":["e5cv34QCasUuQUYfBd2746B1mK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o4z6jhWJnsO3txhk6p6pfKR8XmYNz3D5alzKqdsTz9E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:42:57"]},"IP":{"Case":"Some","Fields":["213.164.204.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["e5YI07ZcEAYchUaDndh4ra2RqD0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDD6di609anItQyoxF0fr+MV1REr1+RlGSCehDMgeWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:16"]},"IP":{"Case":"Some","Fields":["185.183.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aisaka69"]},"Identity":{"Case":"Some","Fields":["e3sWtuCVE6RgBUz9CL8L25nEKW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TQ9QYZbtpIy4PKoKZoo/vs0bL6MthfRVZgPxTiSyvXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:44"]},"IP":{"Case":"Some","Fields":["98.121.76.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MangoChutney"]},"Identity":{"Case":"Some","Fields":["e3evilYfcEnTJPgi4U2A+1LmUa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IIe4Ujfz2OHwbSQW56NgG7V2AcuJajF+YH2UczuAwUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:28"]},"IP":{"Case":"Some","Fields":["91.92.109.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk11c"]},"Identity":{"Case":"Some","Fields":["e3AMDCB+vQAC4A9Jm+JlUZrDwlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TSAPbSXwZwbskuSBBT4eK5mbr0SH8WLtbRtHWK84IJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:08"]},"IP":{"Case":"Some","Fields":["51.15.75.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1329::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoftKitty"]},"Identity":{"Case":"Some","Fields":["e2sqqeMZoYg3dKQY5vUeZB5LQ0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DuSRTK3WxaL6MmQwwGKJ+lbnmWiI5jMMHtXg7CIlW10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:10"]},"IP":{"Case":"Some","Fields":["176.58.89.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxen"]},"Identity":{"Case":"Some","Fields":["e2ejrSOVU2/RXLl1iKC8GgFawmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yxia1b+njb54FHbs1c/zb+ziuMzJB5Ih9gQZfXSd2+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:59:17"]},"IP":{"Case":"Some","Fields":["205.185.124.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allahuakbar"]},"Identity":{"Case":"Some","Fields":["e2doXmSCfHN3UOFPLo/V9EQv9Ho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0QGeataHL9uLgR4k3ILsEyMpxDenu0dtCOa4jMb7JV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:02"]},"IP":{"Case":"Some","Fields":["84.174.87.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBigBadRelay"]},"Identity":{"Case":"Some","Fields":["e1tUEoeIvxVevT1YL3r9ZeFiRXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bczVe1B+SFIxPNTbwc84h+rm/h4V0Xqob9reKyCvc4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:57"]},"IP":{"Case":"Some","Fields":["198.98.58.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iscariote"]},"Identity":{"Case":"Some","Fields":["e1PaKIEyWKIDNcjomFwF0NCJtEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIpOqCBcI8wCQjRvQvz3djStgAQIhQVLRTRE+rbrEug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:55"]},"IP":{"Case":"Some","Fields":["51.15.142.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47a0:1237::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.3-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["e1HFk1X8nA/Jox6JwQldY/udNLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00ZOTAuZVOjhaXlCzJp/oko4yJv8UkmCqzUhQbIzTW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:41"]},"IP":{"Case":"Some","Fields":["23.128.248.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::49]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu"]},"Identity":{"Case":"Some","Fields":["e0byBEnW8lFQ4YlCi2Lh47pYSKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iFF4JNcnoWiiktQSxityaAlk60gfK7ReQGJVrs79Yns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:54"]},"IP":{"Case":"Some","Fields":["65.108.10.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6a:4642::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["e0W/aTyIIPsevdYXEQuWcvhSpgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDlqf9lTPeTd62ijhD8jNEtOQNDMriTPPm9EQs2DUn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:57"]},"IP":{"Case":"Some","Fields":["80.85.153.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freeBogatov"]},"Identity":{"Case":"Some","Fields":["ezXbkrpyugu/1Rs1sRpJZ3V+Z7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UvAYp8+0uYLb2TS5wjExpiE/iIUY3rtWFbgsb/DBIqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:13"]},"IP":{"Case":"Some","Fields":["128.31.0.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra69"]},"Identity":{"Case":"Some","Fields":["ezU1dgmHRkyLVobyA7br52fAhz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fueroa+yLDA2+Ws/xFvtgxIg8qj4OzP4tAb6TGtc/kY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:38"]},"IP":{"Case":"Some","Fields":["141.95.18.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torified"]},"Identity":{"Case":"Some","Fields":["eyiXHUopmVeE4wZrnYfkLpxoXzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+lK7dQbs7vKe7soMt3I/eJvFhffPbKHHN6KPEYLMwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:28"]},"IP":{"Case":"Some","Fields":["46.127.96.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["eyT6ZzR76uxpI9iE6s8cEjGA3jI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOgFSIGxjyufPt7kzp+HHcpaSEwmUPJsgUAqbwjVFyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:46:05"]},"IP":{"Case":"Some","Fields":["212.192.246.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["godtfred"]},"Identity":{"Case":"Some","Fields":["exkEY+czzCkqpAENGU0XmM2OuaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QKTuOPv0/rIqSkaN6+49MNV1DXybA3oZmOgPxZnsAVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:24"]},"IP":{"Case":"Some","Fields":["104.131.72.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::231b:c001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PSILOBYTE"]},"Identity":{"Case":"Some","Fields":["exXvjTxWzJDqk9Ks5SG+93/vllU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJgFQKsPAx8nZ50laIOAN4oj6KQQ/6h3OfbSgGXfUQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:01"]},"IP":{"Case":"Some","Fields":["192.234.196.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ichundes"]},"Identity":{"Case":"Some","Fields":["exS0IJx1wLjDX1P/ysrhc7f8Cyk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2sS5OoTrDr1IaKHUlCrC5PZH9NaNdJG7ei0fg6zshrQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:12"]},"IP":{"Case":"Some","Fields":["180.183.159.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:ec1b::40]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber31"]},"Identity":{"Case":"Some","Fields":["ewrifGQMFSY944gua3O/fa0sKdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SmlrQUbyKYRjG1fvt0cBSsSlROcUMn9+w0fpNl89awc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:30"]},"IP":{"Case":"Some","Fields":["185.220.101.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::16]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["halfsister"]},"Identity":{"Case":"Some","Fields":["ewdoTHAdQ8gDm94CbbpcHqFBg2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DzKVREo/oBzDXZ8/YAPnIX0DJVUuOHMWthuRZQtmx0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:58"]},"IP":{"Case":"Some","Fields":["174.4.231.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex82"]},"Identity":{"Case":"Some","Fields":["ewRs6lAJL5qy9xLYT1Lo+gDYOHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIJompffF1LyYvPSDF/ATImeVXYJ8zicITHwxIRyExE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:58"]},"IP":{"Case":"Some","Fields":["199.249.230.171"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::171]:82"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torly4relay"]},"Identity":{"Case":"Some","Fields":["ev5zQmPJR63YjQlMbjy3GjQGJyQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vnTgf8r/Je5lP2duypQuvRMcmMSCFF/Y879uQSHPjlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:02:52"]},"IP":{"Case":"Some","Fields":["62.113.211.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vogerlsalat"]},"Identity":{"Case":"Some","Fields":["evwVcmkTC882vMrA8tqgaF5w1A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yLuS0roaHC0RJM4JrCkehYwqidjHG7RmMmHrtXompEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:48"]},"IP":{"Case":"Some","Fields":["109.70.100.2"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["evD8H1LyiHTt+Y+2BXhfs8XzJT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ilnhu+zIgxz1NG4szN3ViPjZKLpgPZ40HLUv0tuw9qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:04"]},"IP":{"Case":"Some","Fields":["5.79.109.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MerryEgg"]},"Identity":{"Case":"Some","Fields":["et6j+czObje0GKLFy+xXHuLhAVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNyC7TRj8q6tXV/gkzcVcmy0Xl8aCBfOt0WIMNbHW88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:14"]},"IP":{"Case":"Some","Fields":["94.130.238.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["silverflow"]},"Identity":{"Case":"Some","Fields":["etz0U8sOpFrZ/LfeLSsosH29g18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYVjN+76KZwDTZnSfoCsj2WiKD0g7LgDcxnKi7dhDVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:53"]},"IP":{"Case":"Some","Fields":["102.118.74.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daTORrelay"]},"Identity":{"Case":"Some","Fields":["es5xUMMcJ3w/Zc7d/4UTt14h/wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QJKVZ/vX26q5ZOTdquo1QFRFDKBpPqcDps/Qqi7kHw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:33"]},"IP":{"Case":"Some","Fields":["71.114.106.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[9010]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torex"]},"Identity":{"Case":"Some","Fields":["essqhVoOXtr2gJeuJ3ETuO2poLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ofK5btE59mETcwWTIpFFBiWIcc9KaHPJKDlbJTdsJ2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:05"]},"IP":{"Case":"Some","Fields":["203.221.238.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ThepoggersrelayV3"]},"Identity":{"Case":"Some","Fields":["esfylyPAV2a0u+LHhicE5uPxdWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s/LqUbjrJrYqeaIsG10UOkXJH1ZFnGELiD4XFXF0UEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:30"]},"IP":{"Case":"Some","Fields":["51.81.87.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["esGwupacHJzsoYw+YAk3gWj6FWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XfEEFu4POPgB8whinliwlQ8dp6G1OSHElc2U7KBCgYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:00"]},"IP":{"Case":"Some","Fields":["153.121.44.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["er7R9mZNEVPxQCg407Mq9vLKvhc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F8+ZXY5qDhVpRqlzL7yO4ZsafOC2/3xER37odwbf4pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10039]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::39]:10039"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivRelayDE"]},"Identity":{"Case":"Some","Fields":["er7RukLQiRQMHwDwL4pX3gzaWp8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ph/k/Msxt43tiV75ykvx1dCPDLkC451/4LbRK0a/j7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:23"]},"IP":{"Case":"Some","Fields":["160.20.145.209"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:367:c1f2::254]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CGretski"]},"Identity":{"Case":"Some","Fields":["erp3aklsex0MQPJaylny6mDD1Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tyABAmQg7rTYJAbBmIcJ+AI6OIFIXTqyXoXhWhaAMy8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:59"]},"IP":{"Case":"Some","Fields":["82.68.49.227"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8010:677e:f9d0:215:5dff:fe01:210c]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49"]},"PortPolicy":null,"Flags":["BadExit","Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["openredirect"]},"Identity":{"Case":"Some","Fields":["eq7h/YCiTDd/5ip6FrXYBC2gCc8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1v/Ht9VGz7PLC7h9JClIhOzNdFKy1l8heUi6lNyNXNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:49"]},"IP":{"Case":"Some","Fields":["46.38.254.223"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eichhoernchen"]},"Identity":{"Case":"Some","Fields":["eqf8gOPg0y6SnSzAlOrPUpyVJkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JQ8m7HXo9ChJu3x5Erk2SzjGEzSdj6pKvf9Me6ujY88"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:51"]},"IP":{"Case":"Some","Fields":["109.70.100.65"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::65]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TulipBarooExit"]},"Identity":{"Case":"Some","Fields":["eqAXuiiX7J67W18IhjJUNj4VrXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ilTjU7nU1yI5g9XaacSsIStr3Bxlzr9e5z5bF6a34xY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:02"]},"IP":{"Case":"Some","Fields":["104.192.1.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["w3ctag"]},"Identity":{"Case":"Some","Fields":["enZJbCV5QcfQdplSXTX5bYaOkvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2JUeCum5tVUi79q1GLngGrIrzUoAS1m31pKs2ChiP+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:44"]},"IP":{"Case":"Some","Fields":["45.79.95.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProtectHumanRights"]},"Identity":{"Case":"Some","Fields":["em+V2TTQG1UVJDULPOruNrdpdAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l/KvsLhbY+I11y5nwPJRD3jKp7Aa8drlIqfRyaY2uLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:25"]},"IP":{"Case":"Some","Fields":["213.164.206.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishNode"]},"Identity":{"Case":"Some","Fields":["el+Zqh6Im1Vez7WvB0DO8Rj/Z1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eQMeBq4f7XMnfdFMX6bxx4E1h1buVvgYKAJiou7YQWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:57"]},"IP":{"Case":"Some","Fields":["46.242.128.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jesus4you"]},"Identity":{"Case":"Some","Fields":["elnSWOR8kcoznB31AefxF1Ye4sc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uudtB58OE9GY8mHnwS+/13pbDojLKXV5Ua2B8RQSBug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:54"]},"IP":{"Case":"Some","Fields":["5.252.23.106"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["assassin"]},"Identity":{"Case":"Some","Fields":["elY/LfQLDpqzauV+/5kyP4A/JCg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VmLpIFy+Zg14didB3mRjriRMl90iBjQW6dwM98Gy5wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:56"]},"IP":{"Case":"Some","Fields":["5.183.170.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tekk"]},"Identity":{"Case":"Some","Fields":["ek3rs5ELi8iwbE9MQYkF2BFbcUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Apohu43wCmVW29n3JhxSIlZ2QoqxVC7zTX/FYyZJrr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:19"]},"IP":{"Case":"Some","Fields":["93.123.12.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ej5TTAM+ODa9WvIjtkKFPFAqszo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wPsk9efEGQq8pqscQ2/h9fEa/II9Ek+FFIAZMyfr99c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:35"]},"IP":{"Case":"Some","Fields":["5.39.69.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex39"]},"Identity":{"Case":"Some","Fields":["ej3SgOpM1N0W74xnuT2b3hhNGoE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NfFx0FmeT+UyRz+sWq4t0T8LwP493wI7B1+v5hM8kHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:32"]},"IP":{"Case":"Some","Fields":["199.249.230.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e658]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BahnhufPowah2"]},"Identity":{"Case":"Some","Fields":["ejGcQx84yzCgvAxJFENpphGSByU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0b/vLPlUZ831+X2ri3/ub0HxfotqZeg+6/kskb8m8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:28"]},"IP":{"Case":"Some","Fields":["98.128.173.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer07"]},"Identity":{"Case":"Some","Fields":["ei8jOX9LNgZSITNg6lxZdlkR9vU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEJxSlebGJQr0yq9AikmRTcgY8PPiec5A8EQDxrGX0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:18"]},"IP":{"Case":"Some","Fields":["82.165.185.89"]},"OnionRouterPort":{"Case":"Some","Fields":[2092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["ei1E52k01wnL8OCuj+sTK2G2810"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LcQhF8kWwiQ91F3mygxpuQj652PKNh+sE2XWSNHGCPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:01"]},"IP":{"Case":"Some","Fields":["178.254.6.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:35b::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoedgreemYS"]},"Identity":{"Case":"Some","Fields":["eiaew3RGlbt15Z9ymSK1kJvKjH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CFovDbTkmgIEmzDuiFyFut5Dm77ECm8ZX9dCt+GsBEE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:09"]},"IP":{"Case":"Some","Fields":["185.82.126.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ongoboo"]},"Identity":{"Case":"Some","Fields":["eiW4r1aSzrcyP4uanZe59p6mmm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QIM/c+q5Ez90Utc2z6XK0/GPl36M0p0zQVRn0OyU1CQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:10"]},"IP":{"Case":"Some","Fields":["185.255.96.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jambalaya"]},"Identity":{"Case":"Some","Fields":["eglR8kbW56gZ5LpwL3Y49EN5aaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NYLaAqTeHDvzZZcXVM58Qe5Ys5MZ+tazrExZxPBavTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:03"]},"IP":{"Case":"Some","Fields":["23.105.171.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["eeSKMkLbNRVwD4kl+o5jI/jVHX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dJd3jy2y8iRAdTgKppqDLREp08TWAA0xaxdSuanSvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:20"]},"IP":{"Case":"Some","Fields":["37.191.199.95"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fea6:13cc]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bullfrog"]},"Identity":{"Case":"Some","Fields":["eeGNGBeSw76UqbyzEgwolcl5oa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zN7KFTP7at3cgzqSz7na9ddSIpXjX5NwVH/UAboMBEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:05"]},"IP":{"Case":"Some","Fields":["172.107.202.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mundl"]},"Identity":{"Case":"Some","Fields":["ed604C/QiuGutNhZSqsII3XpBi0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZaA6mqgoG3TWgdXRmBIkMKidJ0qZrmRTJQg8TXvRSQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:59:34"]},"IP":{"Case":"Some","Fields":["195.230.168.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy65"]},"Identity":{"Case":"Some","Fields":["ednma7L9vyXoRrY12CSP4RlM/SY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DYn/+YH1eGK72+lmturm0LY0EDAFXqiuUJUk3BeIYp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:54"]},"IP":{"Case":"Some","Fields":["193.108.118.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:86c0:f001::d0ed:e1:b1b1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gorlock"]},"Identity":{"Case":"Some","Fields":["ecZ05sGskGh8zPZE0kwXrB5TWjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4g9MOB4KhbG5Qy5hkvwvfPlUtIg/jYKZUy3YYOvzEaM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:09"]},"IP":{"Case":"Some","Fields":["81.7.16.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["ecJfISUkVSzrYHGQl5n90IlTI50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lvwj3FitA/h248fSCqkt55Y+gz5eC/81Q0g4BAAtsf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:44"]},"IP":{"Case":"Some","Fields":["51.158.231.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["grocock"]},"Identity":{"Case":"Some","Fields":["ebOfjVPazJpjl1+8NGMB2NDTYDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UuKu+NK9oyBbz08PgXdMbVOEUJQCYVXdmwsMmcU+lHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:31"]},"IP":{"Case":"Some","Fields":["178.32.220.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1d1dchang3th3c0nf1g"]},"Identity":{"Case":"Some","Fields":["ebIHrVGEL6IV2Va5MHs9Ac00c2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z4CWrixSbOQbs5si7ixMLbs2S2SDCug90rfrboLOH9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:12"]},"IP":{"Case":"Some","Fields":["37.252.187.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a00:63c1:c:129::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kaenguru"]},"Identity":{"Case":"Some","Fields":["eazCQX9DAfwC8EFl8x4guFHMevU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xas5X+ZamQirGIrBv8BzJtz7numOmrjOc5OMYLQldZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:22"]},"IP":{"Case":"Some","Fields":["109.70.100.69"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::69]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waeswynn"]},"Identity":{"Case":"Some","Fields":["eZ7PMy3soCxJ3iH/Ai9+Lb7Np3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QkVIEBBRzcYsmWRhwmlLPIACo+usJBqxwCnYVzNYooE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:38"]},"IP":{"Case":"Some","Fields":["94.23.172.32"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["eZ4LKPRVSPVFZop43wTNI0kOxYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ro0TWBnDH3KNIAZlA0wwtDGtdrk/zPFNTaFe/NKr1Nk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:45"]},"IP":{"Case":"Some","Fields":["104.244.72.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:efe6:1313:cafe:dead:beef]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE57"]},"Identity":{"Case":"Some","Fields":["eZgPnceIOmgfvneKdFePeZLgqTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9wFCajLMb1XhynLSneIUFH5/mwMv0vhx+s+25yxT8nA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:43"]},"IP":{"Case":"Some","Fields":["170.231.236.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Poseidon"]},"Identity":{"Case":"Some","Fields":["eZfD/IiwKixv75bF9bXFDdfaLiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GO+kALq4yq5Ufahxq5nQvszfgrvj0lcHAhYztscLe2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:24"]},"IP":{"Case":"Some","Fields":["141.98.136.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:11c0:1200:210:ffff:ffff:8d62:884f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["eZPTJ4v4/XYLMMqGmTrn+IFeQrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SGmUX4gVG0dinB0PcToTGLtQCRqOUv54toXbiyPKkzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:09"]},"IP":{"Case":"Some","Fields":["23.128.248.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["eZGYL601lqxqNxULjpaLjKuZnn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gxHC9DWqgmvKUg1RbVW48Vdym2bg/LjkGcYzOMxC0sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:07"]},"IP":{"Case":"Some","Fields":["91.223.3.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["endpostrump"]},"Identity":{"Case":"Some","Fields":["eXjyljIu75jivRJQ8GKfR0riroI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KB03Tk99goCHbybJx47MxLbUXFZGtcxH4gaJkRKzrJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:07"]},"IP":{"Case":"Some","Fields":["20.110.177.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gopherf20"]},"Identity":{"Case":"Some","Fields":["eWYr38a4iGaQQVM1qVUfZDzAQ+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vYR8zqu4zECzJWmHvrDQs0VhfDoGu4FfKbP1I8iQN0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:01"]},"IP":{"Case":"Some","Fields":["198.199.92.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:1:20::3b:1001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TripleBfifty"]},"Identity":{"Case":"Some","Fields":["eWIdPzags3dnC0ZHwzcGNc0lIa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f6s8tIBDSKMavJgibXiZ734Re/WntSPNzOQPQNgiMRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:12"]},"IP":{"Case":"Some","Fields":["18.220.20.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay29at5443"]},"Identity":{"Case":"Some","Fields":["eV0WXSrV5//ihXOST5KJXQjgFw0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nTw7Aer9MgoATbntlz1HBnydMqcpfTGoXXOMww+yWbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:05"]},"IP":{"Case":"Some","Fields":["140.78.100.29"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZEN6"]},"Identity":{"Case":"Some","Fields":["eVsuzuWiivqVk3ukHkIadai9q/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K0/T6IIdyIHdK+1nGo1u1TJd9ADo65cavW15ZWxg3FY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:42"]},"IP":{"Case":"Some","Fields":["202.239.38.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vaeden"]},"Identity":{"Case":"Some","Fields":["eTgmszMEaAXcUHokd+2Qu7BUo4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DdRN6/jNRlS+3v+OomPvRGTvjBC+0fZX81IVtzzd8Cs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:32"]},"IP":{"Case":"Some","Fields":["99.163.122.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de3"]},"Identity":{"Case":"Some","Fields":["eTHNLzoAEkLZSjrXW4lGmUk4MoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLcdt/SsTARzeNWkafN/Y7GU+Kvh9mAWxHT8pBDGvls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:07"]},"IP":{"Case":"Some","Fields":["195.90.201.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toroid"]},"Identity":{"Case":"Some","Fields":["eR94rPWWo+WdQ0bTpG7Znf4KaY8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VWTYORzJLs3N9lDUPQlD4CYRh9BYwKxcFGLXJYVn0Rw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:58:12"]},"IP":{"Case":"Some","Fields":["5.63.42.231"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["eR3qhg01nTo9L28TuYVusFB+2DU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["06tXz2T1JyYvtFbCSar/KTX1tegwmMJ64ySE+sv00WU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:11"]},"IP":{"Case":"Some","Fields":["185.241.208.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["eRt8BeLG1NmvYRAFYllVaPW2mno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bxd6fgLgKHRbD/8zb/hH0q4CSubPFnBoYYm1pIF+PUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.53.210"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3561]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dockstader"]},"Identity":{"Case":"Some","Fields":["eQ6z5UTnCAn6dg3Hk0afxauvHig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y16l6pHvKSL8Zk5jZK6gvzMDn+8x8Pa6S2BvVrJH078"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:07"]},"IP":{"Case":"Some","Fields":["209.58.180.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["eQ3mDkQrKv4XeOZHiDXoWK+aYcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KIco8lxiZj5b3W+NLwpyAFzWMkyCVl9cDRlLUlV1pTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:48"]},"IP":{"Case":"Some","Fields":["23.128.248.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Soiernspitze"]},"Identity":{"Case":"Some","Fields":["eQ0Cmxr19OVk7oe13uuzcpdKtc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qebBWcFiScpMyAx791+KPRgI349Hj70tp7aaa9IGODE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:55"]},"IP":{"Case":"Some","Fields":["94.140.112.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torac"]},"Identity":{"Case":"Some","Fields":["eQSShGufk3HjvLVttSJ/TiI3M2M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GPQxc0vJOc9RUB8PgSF1XyPkDtToymhEcdc0VDW5j4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:50"]},"IP":{"Case":"Some","Fields":["78.94.213.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amaze"]},"Identity":{"Case":"Some","Fields":["ePbMSHNWWPn3wqn9WHu3Ju/NCLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pnLQ91D19DMpymKsQ+RM4VHmFFKa9zlW56QNrTJcQEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:07"]},"IP":{"Case":"Some","Fields":["135.148.53.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PolishHuntingDog"]},"Identity":{"Case":"Some","Fields":["eOQsXqP8TFYGs6z1Yj3iX+a18Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VPDVmnjn8IpKxWkY6T9M28P1rOiSxzPxhIN3z+7BrQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:21"]},"IP":{"Case":"Some","Fields":["46.41.137.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["icknonequire"]},"Identity":{"Case":"Some","Fields":["eNB2OJjenAfqDxFboy6jvWxy5+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvJgutoPPrkeWNU84jSK0PsiS32m8Y+/7GWwKy5LVeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:12"]},"IP":{"Case":"Some","Fields":["185.225.69.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MuteCrown"]},"Identity":{"Case":"Some","Fields":["eMy28TJ8RtbAJmRx185CyoVBoT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XwAj3daRNocFrbZFgKX+dv+7s3rpJ+O6mCPgIrSKFu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:24"]},"IP":{"Case":"Some","Fields":["185.124.240.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cmutornode"]},"Identity":{"Case":"Some","Fields":["eMfCmdtMS9EZoiuHtX1a9fN0Gnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["95x4YQeR2L1lGEypN505NrfIv217qOV3V31iLe3NKDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:36:44"]},"IP":{"Case":"Some","Fields":["204.194.29.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1169"]},"Identity":{"Case":"Some","Fields":["eMMHaLBdoRzXZOIpwje1BHExnP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s+LkKOH/yPizjkXKjxqOxBYuXtU0TvQfTKyuoZ2wDXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:50"]},"IP":{"Case":"Some","Fields":["185.220.101.169"]},"OnionRouterPort":{"Case":"Some","Fields":[11169]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::169]:11169"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchierRedux3"]},"Identity":{"Case":"Some","Fields":["eK6UBhiJKL7FE+2fFcfCiZOQzq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bdkGsSqea7vuCjHM5rsFW2xzv6muLXU2N1fsE5QYx2Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:41"]},"IP":{"Case":"Some","Fields":["205.185.113.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CebolaServer"]},"Identity":{"Case":"Some","Fields":["eKpUobQWkkIxBJndgccu9RmwcPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KcDRWEVpUD+RYzR641mCmKeGsEHXHEkOQlPd7FiTr7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:26"]},"IP":{"Case":"Some","Fields":["92.222.79.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["licinius"]},"Identity":{"Case":"Some","Fields":["eJaoB11R9guVDY5jqsKJlzEGCEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btLabVZVc3YWefkV7TWVwABrghEz7t5MrGRhu/FXfTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:54"]},"IP":{"Case":"Some","Fields":["217.112.131.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mamoru"]},"Identity":{"Case":"Some","Fields":["eJCGplv+U5j8G0QPbD7Nl5eq+UM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["70v5XNQqm4Y3fBDdgV5QWFthWkkQLYXwo2m2PNPFTDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:21"]},"IP":{"Case":"Some","Fields":["138.2.47.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["unRELAY"]},"Identity":{"Case":"Some","Fields":["eH9I7EnfAm26us/M4aOd2MUziUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDnTaV52NKxGvFpOripI5+a0EjuyoLDCwiyrO8oKUvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:34"]},"IP":{"Case":"Some","Fields":["84.155.44.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viennaOnTheGo"]},"Identity":{"Case":"Some","Fields":["eHdo/vn7/i2bjgIUAZp/mWDTkgY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftobCaQrqYDTU1GznkobaTs72SI7Nrk5HK2giTNvB+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:57"]},"IP":{"Case":"Some","Fields":["217.160.251.63"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheVision"]},"Identity":{"Case":"Some","Fields":["eGNuBc7wPl2LsJfX9LjW/RFQ9Us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GaKVaJLuIh1wqPbnueyrLEiBTY6QJ6egzC5xNekUvZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:54"]},"IP":{"Case":"Some","Fields":["178.175.148.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Estevez4893"]},"Identity":{"Case":"Some","Fields":["eFHYGdMaURjFM0dYrE1KZio8LOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SlxFNBHfXkecANws2a3kG5wrv50vExnEuJFxGMVMFN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:57"]},"IP":{"Case":"Some","Fields":["205.185.124.193"]},"OnionRouterPort":{"Case":"Some","Fields":[45582]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1c01:7d33:a5db:c2b9:1092]:45582"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode4"]},"Identity":{"Case":"Some","Fields":["eE4WVEjYULcpLu1wFEKkyMoWDFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g3Kweki9ivS3c/JI44T0Se7pQMzvwHI3pl4c85qWOQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:41"]},"IP":{"Case":"Some","Fields":["46.38.254.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:22a:acab::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mikedideditheconfig"]},"Identity":{"Case":"Some","Fields":["eEMW+3OU/hKbm4HgEd2FbbgPPns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LpaDzq3ZZFlyBKofLuThnnbWy7CRx3thfI0lKrDXYHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:05"]},"IP":{"Case":"Some","Fields":["46.4.233.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:3b59:2::104]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay8428545"]},"Identity":{"Case":"Some","Fields":["eD9rFY4cv/HB0tm1neDFntJb0lY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MGFS989L0ze3FhrEhc7VG6hnXLHlr7ZYOBoMPdkgE9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:25:59"]},"IP":{"Case":"Some","Fields":["91.41.222.106"]},"OnionRouterPort":{"Case":"Some","Fields":[44357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:cb:8729:db00:e032:29ff:fe63:7503]:44357"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yuuko"]},"Identity":{"Case":"Some","Fields":["eDOxRGwlbfT72p3p/bHMGKkvVns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ztDoKPzbvVnINgyOtxELXzIrdXBUy8pUqCBxcefO2bA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:29"]},"IP":{"Case":"Some","Fields":["172.103.149.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["creeper"]},"Identity":{"Case":"Some","Fields":["eCH9Ht0wPV2IxMOWiEzYoFyUrFg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e/TFl7kCjCBEtnMTYF9Y4mJBC82bfpBeomxcdc1Y8k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:59"]},"IP":{"Case":"Some","Fields":["217.210.64.254"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun02"]},"Identity":{"Case":"Some","Fields":["eBk4Sj5m9ly0+pb7HVbqRCdNuUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Yn5Kz14zYQ9i7QAJZKvmhmTGjRtMtoVo+3WKvne8sU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:04"]},"IP":{"Case":"Some","Fields":["94.46.171.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarrySylvia"]},"Identity":{"Case":"Some","Fields":["eBbe3dfNePkf63Ljl6yxi4gTKKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7VN9b13AceZsxUGA3TYebzD7wRBTp1OmmMpa0hNoVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:02"]},"IP":{"Case":"Some","Fields":["3.20.179.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev12"]},"Identity":{"Case":"Some","Fields":["eA1Q3M1/PIMeXnUPQYZkl8EmP3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9vqmuGkiBTOds3+0I2Hgk4dUO2llRhZRjpxBr6urSRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:45"]},"IP":{"Case":"Some","Fields":["92.246.84.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:c2c0:1:4::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["salentrakain"]},"Identity":{"Case":"Some","Fields":["eAAE6teyuWwmqzIHE7qqe8JGuGI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JRCTnnN7X16eGhHjxyO7sKcsdFmNwMyd6/qtAJQiG2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:57"]},"IP":{"Case":"Some","Fields":["185.195.237.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["d/pShrIEXyzLkbYKCQpq3zwaB74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AbREcMJBbUMjj2cX9kL5OFb+Yi/U5sXFdud5GA4z3dE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:39"]},"IP":{"Case":"Some","Fields":["95.214.52.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tie2ooK5"]},"Identity":{"Case":"Some","Fields":["d90ljw1YeS4Ny9qgvGah3F+NhK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5N17JGiniwjBTL5qKgaSbdhjLmusM1/6OvqM6U0rZ7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:01"]},"IP":{"Case":"Some","Fields":["37.120.179.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torissensefull"]},"Identity":{"Case":"Some","Fields":["d9lr2pxgSLdYNTlVEFfTF78jLxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1fxXOvQG4YmM0TVWzB98mVkBmlYwSUFlTYh90OAvr6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["93.201.152.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9111]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:ec:ff03:2700:1a31:bfff:fedd:ca1]:9111"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["VinculumGate"]},"Identity":{"Case":"Some","Fields":["d9CIUMHuhYdFH4ONP0mHT3Wwsaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RBRMR9hB+RLcPwArT25ESL0xQNKY8PsUTwJsrYmJM2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:20"]},"IP":{"Case":"Some","Fields":["77.68.20.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:db::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange027es"]},"Identity":{"Case":"Some","Fields":["d8dQDMVzZD5LPn9gLQE3+Mic4Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jr7IF5tKOvHYwvVzHpAr6DUPKaIBRDqUvxm6AgxUw6I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:54"]},"IP":{"Case":"Some","Fields":["31.207.89.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["d7h9KjpVFjFwczSDlnkQhiI25tI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1pxW1FySpAytuaYBiZ2g3shp9xbXAgoQKgXjTjhb33o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:02"]},"IP":{"Case":"Some","Fields":["188.214.104.21"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BienwaldKA01"]},"Identity":{"Case":"Some","Fields":["d7glXNKmCLli2kQjuM9JrP0eIf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mSrH0FEtDb3mmbaRe0ltEjIkVqHKh8/7hfkf+gohVrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:17:43"]},"IP":{"Case":"Some","Fields":["91.35.154.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["knapkin32"]},"Identity":{"Case":"Some","Fields":["d6dXA+W5rZz9uqF879/qS0ajqOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i5lrqXBW9ixiGqNN58t2En7fLPcf0PEacwb+S5Gc9Lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:28"]},"IP":{"Case":"Some","Fields":["23.160.192.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:10:0:8000::b8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redvader"]},"Identity":{"Case":"Some","Fields":["d6OtxdRVd4tTwoA3YZFt+32gp5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1tzv9zg/8CqdoJUHwQTxz8uYBTNzslfFAeWVIph8Og"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:52:49"]},"IP":{"Case":"Some","Fields":["148.251.85.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:6096::2]:9030"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["z0mb1e"]},"Identity":{"Case":"Some","Fields":["d54lxirZO8i3xrWkKmJQ5IJVYxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UEzMDxCFNvioJS7lut0K6qyqZIoH+rcO4UlSdec12Kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:37"]},"IP":{"Case":"Some","Fields":["68.134.162.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["d2VC1hFmHW/jg5/i16+5KkNcXYE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FaL4rtIfhd8tvMFgpVARwgDpY713vNnCA7IBkvhCQ+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.40"]},"OnionRouterPort":{"Case":"Some","Fields":[10040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::40]:10040"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute09"]},"Identity":{"Case":"Some","Fields":["d2Hdx+sb4m1BVfdKFfEsMqNv4PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZfiyXNYlshIMektizSNbp3yd0nYpuQk1vYc5QTHrx18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:09"]},"IP":{"Case":"Some","Fields":["162.247.74.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoinSearchrCom"]},"Identity":{"Case":"Some","Fields":["d2Gp16asfhikwEBEwBPEKA3OnRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zd0MxJF6NkRZeV6uXkqeNhLzYdhEAAC5QbmWn8HpWgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:51"]},"IP":{"Case":"Some","Fields":["209.141.47.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay04V6Rocks"]},"Identity":{"Case":"Some","Fields":["d2BhkwBW+IBQwCHTAA80C2LT/OE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6UxlKlXlfPXe0K9vtgLpcPaUcsNyV/JX5aQfDpl9i10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:51"]},"IP":{"Case":"Some","Fields":["188.68.48.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d518::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["presidents1"]},"Identity":{"Case":"Some","Fields":["d1HjcBf3ZmiD2vJQOzAUGCgoU2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["chxzY6ycrzM2SQ62yyar7JcFp3p6XisTVUtimTM4o44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:00"]},"IP":{"Case":"Some","Fields":["45.58.152.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlavaUkraini"]},"Identity":{"Case":"Some","Fields":["d0pIBAPmU7oZ5D3Qahxy8pVQouc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e48LII6vSffdIlsPrsCWQqjv9c2/QzzBFP2tlOvaEg4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:37"]},"IP":{"Case":"Some","Fields":["167.99.220.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1293:b001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FASCIA"]},"Identity":{"Case":"Some","Fields":["d0o20gqqbioSZatuH/ybUMlYcqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3dyh/oF1IyfbMYimRuCF/OHcG7N5rRwAl8GRXv9pS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:59:00"]},"IP":{"Case":"Some","Fields":["95.217.135.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:7573::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["l0kz0r"]},"Identity":{"Case":"Some","Fields":["dzfyRkD59MdywibKp3gJPzSgPng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QQfGxrqUUMq/MMqZKZ/0i3svOjzxPb4Xlx88UMrjht8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:15"]},"IP":{"Case":"Some","Fields":["104.244.79.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f868::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frankovich"]},"Identity":{"Case":"Some","Fields":["dzekAwUTGti15gz7kSbku+Htf3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["laH9iAIavki/iY+KLPvyFP3dANpSh7gFXVc91cVcJvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:49"]},"IP":{"Case":"Some","Fields":["46.23.72.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dzE8MqpIq2WCmdoDnfbGJ8Em9XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oapYqi7GveLu0hiweodo3coSPfGlvsWfXv44PVZj5T8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:19"]},"IP":{"Case":"Some","Fields":["46.38.254.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:18:2:44cc:3dff:fe89:3297]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Morgana"]},"Identity":{"Case":"Some","Fields":["dy+C+ExCGWunGje/4Ctjh2unqBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tJHlKlv07VnZHfX3al2zos/Vo9XTz/riwUZ8bRQEPlI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:37"]},"IP":{"Case":"Some","Fields":["45.9.62.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrx"]},"Identity":{"Case":"Some","Fields":["dy1Ql3IHHTCCuq8ceByPkXAT88s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWbhd88yiwq9eYTSxtMqCSX+J35r5c00TjQZ2xqd2BA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:37"]},"IP":{"Case":"Some","Fields":["94.16.113.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:97e:84fa:9ff:fef2:cc0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitVIF"]},"Identity":{"Case":"Some","Fields":["dymctmiMSs4P7gbNyOxMkil4x/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H3bLjczatSe2yvoIriG7WZy+tIWcLO5kFbHyqun9p6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:37"]},"IP":{"Case":"Some","Fields":["216.239.90.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f530:8002::19]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ntfshard"]},"Identity":{"Case":"Some","Fields":["dx4IJO+C2F4E2AEWVUER439+t5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BJtrLFMId2kHmPmMvmpvdpuHwLJXfqcJGio6ubmtmSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:36"]},"IP":{"Case":"Some","Fields":["92.242.95.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["T0rNode555Nose"]},"Identity":{"Case":"Some","Fields":["dxKhrCHUuW4nc/TI+Xli4wTsdig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UHeDgdLA41T+5MUXhdxfZDCj7LCOXa1kJ5MK3B0/IXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:20"]},"IP":{"Case":"Some","Fields":["185.119.117.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:148::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zivlimarinadir"]},"Identity":{"Case":"Some","Fields":["dvnkMuhI/VA5AVXhwIRm1l1Ke1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["metI4uc5l60OYB6C7HN4ow7pL4mXPzBGIzZwJKSTwXg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:33"]},"IP":{"Case":"Some","Fields":["45.180.21.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stalkr"]},"Identity":{"Case":"Some","Fields":["dvOoGgeE3PU29t4Z+Y6usfid7M8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GNoPQLS/mT6PhTMqVRTEwrCUbc2hrBTwpl9DP2o+PNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:57"]},"IP":{"Case":"Some","Fields":["51.38.54.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:403:1830:14::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarysSister"]},"Identity":{"Case":"Some","Fields":["dtPMGpBnMsi3+Q6bWg/zvkpKUt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmXg5RA4jQmulvdIMfu0HOZT5d9/ukbfGxMA5C6sI68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:09"]},"IP":{"Case":"Some","Fields":["185.225.69.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinselohrkatze00"]},"Identity":{"Case":"Some","Fields":["dtLrqCu8yj358lSpqDcqEKJvPRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggCO0Em0mUsplS8Kc0y5j/5w/6BalifjISMCV/Zrw0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:41"]},"IP":{"Case":"Some","Fields":["134.130.172.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra81"]},"Identity":{"Case":"Some","Fields":["ds75J3DrnRu6gCXuThdRpCCwCHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tk0c3lMprnFTexwp8peGLv0giaRxzLCJVf2u2EeKK68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:26"]},"IP":{"Case":"Some","Fields":["45.61.188.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedManning"]},"Identity":{"Case":"Some","Fields":["dspjbB0z4+hjC3rCKh0HQg/Oh2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YG064ehAvB8vBbwxohQtYehAtPtJeCMNO6y+XkLj8W8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:53"]},"IP":{"Case":"Some","Fields":["23.154.177.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dspBnGhQL/xNlQ0WfiXuCtOgp2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l35fazSp4oud8goEJ2iUs8RtU7kH3k4NfS5Ii8Y5TJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:55"]},"IP":{"Case":"Some","Fields":["185.183.157.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NFSGmbH"]},"Identity":{"Case":"Some","Fields":["dsKhZHHa7oFVORDH6M8XJu40qnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qcZGiI1/a2eJYZeoeTFIHSErgfI02wbkRtIfT2XyBtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:19"]},"IP":{"Case":"Some","Fields":["179.61.251.219"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["drYla4vpKI0iSAoleaFkER7EU6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/QdfFh0rR2rpNL2IHrAjd3LDK3ti4G3/4VnBFN+C3/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:05"]},"IP":{"Case":"Some","Fields":["203.118.152.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2407:7000:989a:5254:ba27:ebff:fe44:d9dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vladimir"]},"Identity":{"Case":"Some","Fields":["drT+3QaW2SSkB8+rULbldLKMzco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4It6KGHi/pU0QxxxXNHtbmJLG33IMgOZVXp45mrQklA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:42:33"]},"IP":{"Case":"Some","Fields":["158.255.1.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonlolth"]},"Identity":{"Case":"Some","Fields":["dqtQw+wEcqY6+5qDOlNfpr1pFHg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VzCzqd/Oudp46dIYGDTt3dWJMRwRvL6HrNoho8xbJjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:08"]},"IP":{"Case":"Some","Fields":["185.220.100.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:5::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDotTeitelNet"]},"Identity":{"Case":"Some","Fields":["dpWZAThujJCPUCNdmJQAeIa2fC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaBhwaRphDPE0aP5eFsh9E1pCEwDJLlQF1PFvQjtKj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:24"]},"IP":{"Case":"Some","Fields":["198.98.51.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:58f:8768:8283:1a62:bdc6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber41"]},"Identity":{"Case":"Some","Fields":["doxQ4ZfTy+JWsw/pSWA/0jESiQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["59TB1FxX/07oNVH5j55P1/4ryigVirEbp2i9qDtpgNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:24"]},"IP":{"Case":"Some","Fields":["185.220.101.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::21]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node1"]},"Identity":{"Case":"Some","Fields":["doOVzA51fgvN8tULYGp8DuFj0I8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CEUGdSmN3Rya3vKOpAONMTLL9cRfxDiWt6cZtiJqpN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:07"]},"IP":{"Case":"Some","Fields":["152.70.181.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:299b:7aa5:73a7:9bb2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qtornado"]},"Identity":{"Case":"Some","Fields":["dn5ETh+h2nXzt3R521ri+j//dcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Kxr9vAvf/pUFWcYEznbm+3g72DEwx3zDl62mBet6+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:29"]},"IP":{"Case":"Some","Fields":["95.216.35.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MegaPint"]},"Identity":{"Case":"Some","Fields":["dn20ALdDAkSJ/wt+skH1841YF3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mumgTaa3LafA3Y6ELIksneOvvjHU+C0V+59r2wYUAAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:00"]},"IP":{"Case":"Some","Fields":["178.62.241.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORfrance"]},"Identity":{"Case":"Some","Fields":["dlQ3SVEM0Ayxbh3UlAyqj6xyf1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBOJk+uY46xt5FzpYwE7ERvw35xn/v0xsPOGQ1q3nwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:57"]},"IP":{"Case":"Some","Fields":["94.23.29.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:1ecc::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex45"]},"Identity":{"Case":"Some","Fields":["dkv4oDho+EyPMjwaZ2qiVLgNw78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FffpDwWYmb8tlyIt3ZZT8/yZzNvtxaATBuwOxQc/OOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:44"]},"IP":{"Case":"Some","Fields":["199.249.230.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e644]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dkS1fdhjBfO4Fy/vbO6Fhk0Ii6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RtymWBjHEpcwHnrg/yVs99PFxznTLP9O7X4Yt3MKJAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:11"]},"IP":{"Case":"Some","Fields":["5.45.107.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fenchel"]},"Identity":{"Case":"Some","Fields":["djt9Z6ay0Zs+nqV9H73EjzuFtVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2TCHtItTA+EmNbIxdp42/AvlZErzCJkjKBe6krW0IuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:02"]},"IP":{"Case":"Some","Fields":["109.70.100.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip6b"]},"Identity":{"Case":"Some","Fields":["diIT0yewp2BX9LYc1YftQjjNkA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEhx5iB13rEr/Mq3yyUaZ9QN1q7YsZSV6eI60GGldlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:32"]},"IP":{"Case":"Some","Fields":["185.220.102.253"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::253]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot62"]},"Identity":{"Case":"Some","Fields":["dgBoAkmiIIDsxhc/u/ZNb88zCmE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LkfWSSMRDn3O1QjrieqUFSzuKaeYspjTftPL9T1K4hE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:36"]},"IP":{"Case":"Some","Fields":["212.83.43.93"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iPunchSharks"]},"Identity":{"Case":"Some","Fields":["df5SNuZ/+kpEwRUsNeqzY2Dk198"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XjFD0d/rG4K55xbyohTFxDUqzErJiL53IJtc1aFt9V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:35"]},"IP":{"Case":"Some","Fields":["87.104.37.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cornnation"]},"Identity":{"Case":"Some","Fields":["deIUJYzFiJ4NbtWFJm83vi3TVo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noIEwofgQVwsCAh4+XqPuEeBh07eZpa9N5jOSDckBw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:45"]},"IP":{"Case":"Some","Fields":["45.61.184.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE73"]},"Identity":{"Case":"Some","Fields":["dcyifm6anSCO9xrmD0PhKUKFde0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R5EB/zibQpikz+nSth99B1MBywqSiy5GeN7Dqu3KDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:03"]},"IP":{"Case":"Some","Fields":["37.221.67.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:103]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Buri"]},"Identity":{"Case":"Some","Fields":["da8fgSQ37+UcUEzjrC3H7AO2wBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NOUFPratBf2DEonjEoFIB3AtUS1Yz6duYz9JI5IT7jY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:11"]},"IP":{"Case":"Some","Fields":["83.137.158.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9019]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tiberius"]},"Identity":{"Case":"Some","Fields":["dakxQERTAwghxUek+qkJSgbEjHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PDsCltcrYFIg14CKKE3y3NmFdPWDvYBIwpUipeiopoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:02"]},"IP":{"Case":"Some","Fields":["46.101.183.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galates2"]},"Identity":{"Case":"Some","Fields":["dZuxByTGIrEjgYT+Q3c7ZIGxrUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YB8R7a1QXrgA0QVFlygqH9pLENErGXTlAeYjZ/un9/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:08"]},"IP":{"Case":"Some","Fields":["94.16.118.23"]},"OnionRouterPort":{"Case":"Some","Fields":[1993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer70"]},"Identity":{"Case":"Some","Fields":["dZKxBdS5EKeYmVlBdrMjVN7AO/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9xMRLDLDooIEu1epasSuymjIJ/ZfjK4c50/P3P7WCeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:21"]},"IP":{"Case":"Some","Fields":["185.16.38.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8270]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["010101"]},"Identity":{"Case":"Some","Fields":["dYZwOow1fYllEa7VeYzay7LCvZ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K023l4V00bAvJSFfxVwhfJYaU4WOVsIgG9EmW5fM84I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:22"]},"IP":{"Case":"Some","Fields":["188.154.244.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cebolleta"]},"Identity":{"Case":"Some","Fields":["dX9KEnAazXOlNSBU6k81fMS0R2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z9abOJvYjQcTF6ZnFByYhTkiRuxoaMJebqrT2JPiZec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:35"]},"IP":{"Case":"Some","Fields":["212.227.149.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:1d9::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smurfix"]},"Identity":{"Case":"Some","Fields":["dXSXW6dt4HJiMfyRbdcLCbOCTOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAi47b68+dZCMVZuhi88u7CjXbIx2JjZ/Ir0qq3ZmUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:07"]},"IP":{"Case":"Some","Fields":["213.95.149.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:780:107:b::85]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["courage"]},"Identity":{"Case":"Some","Fields":["dXQLBBQ19ZAbqyco1vrcLvxLJ1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WhMhB5pmuXey2BngU0XiWF7F1DK0AaqN0SYbOQQKfzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:31"]},"IP":{"Case":"Some","Fields":["94.16.123.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spookybird"]},"Identity":{"Case":"Some","Fields":["dWw0u9x3FqX+g4UH2LX9HPJPMDs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OQisHloPEdawRXWNO3MiRbmAtTbj7TRjoKGPoZzUEyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:06"]},"IP":{"Case":"Some","Fields":["167.172.237.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:c1::84:a001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["screenslaver"]},"Identity":{"Case":"Some","Fields":["dWV2z12jh83X6rzKP46u+TPLRIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rCcb/f3M1sbogLtoN3yQEcppJtXxVwk2XbWILqPgFmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:36"]},"IP":{"Case":"Some","Fields":["51.81.208.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["intercepTor"]},"Identity":{"Case":"Some","Fields":["dVug5/T+Ghl+3w2DaB0lcq85yy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lWYDbKh/kvfDolqFHtOYL/58ZRyI+vzamvh2+yLtK80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:32"]},"IP":{"Case":"Some","Fields":["92.117.164.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gbhfmoldrelay"]},"Identity":{"Case":"Some","Fields":["dVXb2XMu9m8PCExB39pAG20DZQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EV4dgqjjgDvhxYjFnRZ9JelxaPJtdpfO8oNxzgLh4vo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:32"]},"IP":{"Case":"Some","Fields":["91.208.162.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adrian"]},"Identity":{"Case":"Some","Fields":["dVHBRG26e8+DlTiaElRF5xlS1Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Itgtf5NUy/WpN37gteL5PLXaAbKEfwrnEZMxM31Pcu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:12"]},"IP":{"Case":"Some","Fields":["135.148.53.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq04"]},"Identity":{"Case":"Some","Fields":["dTOr2pAn9Az4f7YYmuux9DoTKgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GzdOfS5WGrXY03b9TzuzQNIrKiVrWCVBLaQ433yg9yQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:44"]},"IP":{"Case":"Some","Fields":["193.32.127.154"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NetWorkXXV"]},"Identity":{"Case":"Some","Fields":["dSvDYWIum8Lb85UjVDGivvvnkTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2GKd7nKacpJoUmcSNWIf54I3xuxD+fCJ/72TMNlab8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["178.254.45.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:23b:7777:7777:7777:7777]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dSWOdVBkqiQSvGuriFdWoyAfjHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N+liWmobh1vmAOCsSn3N5ZC/60yd3xjhK+UOr5NT7FY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:41"]},"IP":{"Case":"Some","Fields":["108.161.133.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnlineVrijheid"]},"Identity":{"Case":"Some","Fields":["dQ6c37QGYDnQHMI2la2BOhPd6yA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qnq4m3sML4X8WqJUava6y6v5c/c0ceLUZyUWw7omRDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:53:28"]},"IP":{"Case":"Some","Fields":["135.125.205.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["O1G"]},"Identity":{"Case":"Some","Fields":["dQk6lZ80S8azBO/+3hAZ9GVIo8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/ZG8bVrnng29OceexYTwTeqKOGok67BY0e3p1tlRGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:20"]},"IP":{"Case":"Some","Fields":["79.143.177.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2023:7000::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pfefferoni"]},"Identity":{"Case":"Some","Fields":["dPrjOyH//9xvoROEZkAjrI392kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EmL1x1/aT/Nc387RwGKV7Ya9SOg3LlcdNCby9F5yYZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:13"]},"IP":{"Case":"Some","Fields":["109.70.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::15]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsTrenton"]},"Identity":{"Case":"Some","Fields":["dOi2gEKid0iEu/Z+Q6vsTZ5d9Zo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S9nz/+yQiFzj0p3Cg9Cny5AKzqHUPc5WFfAimI2ajmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:42"]},"IP":{"Case":"Some","Fields":["195.15.242.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::3ab]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypnos"]},"Identity":{"Case":"Some","Fields":["dMS/brrLTM59sDy++O7XdGN5Pcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BaQXPofcNDN/z4RHeyAw3Ee+HMukI3EF4RNYhvDAg4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:32"]},"IP":{"Case":"Some","Fields":["46.89.104.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FOXACID"]},"Identity":{"Case":"Some","Fields":["dMQpocDj7eA7Ot9hvqg9VUAjKmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DWcXtJo7tcgBx/DdQrRwvjlm6QHjRDjqUEshNC+0bMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:23"]},"IP":{"Case":"Some","Fields":["95.217.14.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:6b27::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLXicebeer02"]},"Identity":{"Case":"Some","Fields":["dL0yEJ17Dyw8dIjr+/3fGpD5ztY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mUTi2IiVvojuZeqLclCPSRFg9mux3BIbXtDN0eNmxXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:45"]},"IP":{"Case":"Some","Fields":["95.214.54.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5116]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:365e]:5116"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rulers2"]},"Identity":{"Case":"Some","Fields":["dLAFXYVARYQC/g9Uj8aoRLVDGpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gG5keg24EPhuaIhXvsEIFH2KWuX51ZFFFytH7Q0a9NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:04"]},"IP":{"Case":"Some","Fields":["45.58.156.76"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["dKvcO66AuXai8/VtIBf6MRIsB5A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GR92wCRWcJAAQ/T6foV02bdGz3f3bnwFp10mBSr723Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:26:50"]},"IP":{"Case":"Some","Fields":["51.158.186.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["longclaw"]},"Identity":{"Case":"Some","Fields":["dKkQZGvO77zS6HT8HcmXQw+WgUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AW+ra50UXKZaHNd3eTeKfYkzWR1u8+W2PnC7Sji62Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:19"]},"IP":{"Case":"Some","Fields":["199.58.81.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay37at5443"]},"Identity":{"Case":"Some","Fields":["dGvhbDF5HJp9FUYfc08MAX3cVe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E4oSaqH1AJgAbCm6z6GQzuLpdxaFrx3CB5NsIfXaf/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:46"]},"IP":{"Case":"Some","Fields":["140.78.100.37"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra35"]},"Identity":{"Case":"Some","Fields":["dGYFdCYBjEHt/BRlvn8B4nFVz78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HI84v9laTTZ9Z6NGj3QcKKiz2YbtDyNfp1GJZWFXGhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:16"]},"IP":{"Case":"Some","Fields":["213.164.204.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bhsdztorrl01"]},"Identity":{"Case":"Some","Fields":["dGHJPYHNUzngx5CQdFoUzsffynY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eN0FmBZr3b7Ujw4ahuA0tfXWFZSJOnhrYNd64TW9ZSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:39"]},"IP":{"Case":"Some","Fields":["54.39.234.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AOP"]},"Identity":{"Case":"Some","Fields":["dGDHdBLoyOZavheXxlIWH+kD6/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NuapfAcRr2OaxKA8AKH8/zv0i1xX0y0jXq76LV/GmuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:09:22"]},"IP":{"Case":"Some","Fields":["147.135.31.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shalazarthewizard"]},"Identity":{"Case":"Some","Fields":["dFBI9RqDT6kVL2ICFZPyzWLDGro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W01EPyC/XBt1epu0LJGHuErVQjpBJLGruc+b9GolyX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:08"]},"IP":{"Case":"Some","Fields":["23.239.22.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:92ff:fe37:163e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeLoveNotWar2"]},"Identity":{"Case":"Some","Fields":["dEhVv8nrMW01h5covaV8mpTjklc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpO9ueTmEC1GsZDs0ullyT1ow+DNICodP3rz9XGsBbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:04"]},"IP":{"Case":"Some","Fields":["5.255.97.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tionverphous"]},"Identity":{"Case":"Some","Fields":["dEd4X0SFUkse7fT+WncORaQ8QKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q1yavdh7ZuVB2Sy98mNS9R3Gdgg+DGsxOEv1JcZ18N4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:53:32"]},"IP":{"Case":"Some","Fields":["45.132.74.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhyNot"]},"Identity":{"Case":"Some","Fields":["dDma02ZbMUuGzAKec11dGs46Tgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LAjJESAdFPwZ9xW3qX01ncQUwbJPTFH0LGNfH72zM5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:37"]},"IP":{"Case":"Some","Fields":["82.165.243.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dDZ7YyOW6M5qXdQQ6pYH5GeqvNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KsFF9cYEHQSsQLZBz/7YpaPN6IWIwbRx9JMBVZGZxLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:22"]},"IP":{"Case":"Some","Fields":["61.4.102.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv126"]},"Identity":{"Case":"Some","Fields":["dDD2axyry1LVg8nDA17hmj6Hoj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sG17ui5Mr71E0Lm/q/+sKj/erX1102oMoaS8dPIrO04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:27:26"]},"IP":{"Case":"Some","Fields":["192.42.116.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5526]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitMoldova"]},"Identity":{"Case":"Some","Fields":["dCxF8tkASq3gB35SikQYpqgbwro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VovUb8/gwvbdOkYIEGVSYQgXWQMIwx8XHwCZFvp4OVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:35"]},"IP":{"Case":"Some","Fields":["178.17.170.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:15::45dc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["08eRPfaL2Relay"]},"Identity":{"Case":"Some","Fields":["dCRaDsnwQ3sjhKfb6QCtaG/wr3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uh6BGgIViim7rAvIi6GlWVESMpE67cshLjdg62PAv4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:29"]},"IP":{"Case":"Some","Fields":["188.68.32.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:9e9:28be:caff:fe2d:d725]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay17at8443"]},"Identity":{"Case":"Some","Fields":["dCQl9zeBpaUJMsCe6opaWWmVIX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bRGYL8H36JtOR6Lwy/xHjo2bJ612gaiNUX8h9b0Z6A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:57"]},"IP":{"Case":"Some","Fields":["140.78.100.17"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["effiorgoulu"]},"Identity":{"Case":"Some","Fields":["dCCRSG0Ec0xX2XvO+1PSLtC3eIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nQQEGvMcqnadn6pDIlBqtUCApOY8acCOqOG021liDFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:13"]},"IP":{"Case":"Some","Fields":["185.67.82.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer18"]},"Identity":{"Case":"Some","Fields":["dB3kdfVHRGDqNHUu4zd5DSJEV7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R0Na2TKPbluELqX9HYIcdp2Ckf0J64urY1J3xt+VL9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:27"]},"IP":{"Case":"Some","Fields":["185.16.38.110"]},"OnionRouterPort":{"Case":"Some","Fields":[8118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["dBNnXtJSspOVVu0AmMOYPRrzGRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qXXH+h9PZ/0n7KiutIuujdVF2qAY2hQB/a7+uLZGwj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:03"]},"IP":{"Case":"Some","Fields":["91.132.144.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:3:e842:2ff:feb9:c49c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MinchiNodes"]},"Identity":{"Case":"Some","Fields":["dBKIuSvJ/xTLSBAvxlknNp5LCxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TqyWkLbIWdd+ycWwMFqX7XeaSmvw6fn236aO6FKJYSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:08"]},"IP":{"Case":"Some","Fields":["142.115.34.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["dA5MSELkwZDf7CeOwf11T9JhqGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pM7cqJd+7uX3vGAVhOLgYOhYs2QbT+Uj6nlSPTkRnpA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:18:24"]},"IP":{"Case":"Some","Fields":["85.166.159.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:4646:54bc:10::56]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["macaroni"]},"Identity":{"Case":"Some","Fields":["dAg5d1eMB0sSSubIGlj6PlcQ1PU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IoO+7e4AWjnVwIALn0WygFghAJOWWAzrq4Dc/9/4sCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:33"]},"IP":{"Case":"Some","Fields":["23.253.203.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4801:7825:102:be76:4eff:fe10:552]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BrownFox"]},"Identity":{"Case":"Some","Fields":["dAeQQkbA4oOPqBdcOqGjytnfOxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WwRycbcoMYq8IeW5IYlZVcPmwsMqoAeULb63Vh6fgHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:30"]},"IP":{"Case":"Some","Fields":["66.229.163.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pkswitchtorronto"]},"Identity":{"Case":"Some","Fields":["c/a/ReFMcsR7iz01aPb/GVuWehU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gat7+qmQaLWmdtVUMlsqS0NvlhVJXUNfQLlqMssu2wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:17"]},"IP":{"Case":"Some","Fields":["159.203.27.5"]},"OnionRouterPort":{"Case":"Some","Fields":[2568]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::4f:4009]:5201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay29at8443"]},"Identity":{"Case":"Some","Fields":["c/NM3FklhMBRmYjkQ+b9+6cseQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4aZCqnY7WUKOpezUt8in9Ynop74X/A7ob95vYh68Y6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:12"]},"IP":{"Case":"Some","Fields":["140.78.100.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["n4lksask972137tor"]},"Identity":{"Case":"Some","Fields":["c+ilWxWP51Cq9xG0AtNwLj/Dle4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TU6B2Hmo7YPTdefq92gFuxYIClBpZXC87PfpzASBuFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:34"]},"IP":{"Case":"Some","Fields":["62.168.3.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=920"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyrexlinuz"]},"Identity":{"Case":"Some","Fields":["c9Xpw8haNus8Gmojwv8Av3/gNEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XqxVJDfO0+gPdAE9gzEDZWMarDQfDj3s97zKFI9R/80"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:39"]},"IP":{"Case":"Some","Fields":["91.151.93.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rspn1"]},"Identity":{"Case":"Some","Fields":["c88VmN4BekJOGRnN8E+f7EhvWIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D11W+0ufOoOFkLT6aJr1N7aFnfvb9DPpmTgl9JNuEvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:16"]},"IP":{"Case":"Some","Fields":["65.21.180.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9d66::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["None"]},"Identity":{"Case":"Some","Fields":["c8bWFiHfjChX/EozZlOR6a1jvhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2g5zln4Skvf41ww11JjndLG6FgvtLJcJqap1GIwrHdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:49"]},"IP":{"Case":"Some","Fields":["176.142.80.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeliosTor"]},"Identity":{"Case":"Some","Fields":["c7YVE1wW5Q5WaCb2RD7Ia3BEoPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cuKkvxdVdXuW4kArhafdkGnLVjxxH5Db1Eecxo1dt5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:24"]},"IP":{"Case":"Some","Fields":["184.75.221.59"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torcow"]},"Identity":{"Case":"Some","Fields":["c6YrWQzE8pDQaPogoS1kCKDYtgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rTSkrDQGIgTiO667RKS6IPoXxC+X7j/YrB7RJammMi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:23"]},"IP":{"Case":"Some","Fields":["174.93.174.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird33"]},"Identity":{"Case":"Some","Fields":["c6WoFoi9U2v7q+GGMPW9YwbJrI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q39T+TVKhsvboWTqVGQvoGIz6ypGN66pPdZcpjEzx5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:38"]},"IP":{"Case":"Some","Fields":["5.44.101.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:fa40:3aaa:1::9b30:deb0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WildRumpus"]},"Identity":{"Case":"Some","Fields":["c6Mr4AG1CFww3r3Qaycouwq2Q2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWlNGiVrju9l+GhOhEo+/qxs71XN5JdOlM64Qwouf2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:14"]},"IP":{"Case":"Some","Fields":["51.81.93.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["c6JVfSiHh4rWf0U3LNLRRGuS3sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u46aTJwe4LdF10XY00X62LE8y60EfvheRCquneetHNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:27"]},"IP":{"Case":"Some","Fields":["195.60.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneDEicebeer01"]},"Identity":{"Case":"Some","Fields":["c6CM60miE/xz/9lziWOEh9Txu3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xG5dd9mBd7bhWE5jrzOlNd/DIH81EHBrxJ7TE8wc04A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:31"]},"IP":{"Case":"Some","Fields":["89.163.224.65"]},"OnionRouterPort":{"Case":"Some","Fields":[3092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgarath4TOR2"]},"Identity":{"Case":"Some","Fields":["c5uMurThLHLjlZDmj9cGzlYyfBQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WqOQxMOlDPPb6+9xvBHeKeYdwWSOmFYgz5GmlQK21f0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:15"]},"IP":{"Case":"Some","Fields":["213.65.114.38"]},"OnionRouterPort":{"Case":"Some","Fields":[63456]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapSFO"]},"Identity":{"Case":"Some","Fields":["c5RLZ7mD9BSoE7KgBvx96CgrQFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZDUU+CyJv7pab6VpAM8/eLOFijv3pyhZriKP4GnjVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:12"]},"IP":{"Case":"Some","Fields":["138.68.43.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:2:d0::742:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowball"]},"Identity":{"Case":"Some","Fields":["c5LjMzE1W9xvWvJfwmjOapFr5GM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nq9a1Y9E1+8J2vd1vAo2CWTYxz97De3eEcp+RLmquys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:09"]},"IP":{"Case":"Some","Fields":["80.241.213.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["c4Vhku4h3/w39pUYYfsZWWeaVVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDLkrSiLkS7tIRBcSzt7uryEd4XR6ydZFmqvV10nFO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["37.120.185.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HYS2"]},"Identity":{"Case":"Some","Fields":["c2TvsVf8qAnEa0GmHY5qQ3GLioU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rjAuDa0+kWEfQj0SafBDNx8RmxcRrvG4qKvMnj5n6fA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:07"]},"IP":{"Case":"Some","Fields":["179.43.160.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber37"]},"Identity":{"Case":"Some","Fields":["c2KL7jRuUMOmDs/zCjXURS0dB0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LYlwuAsuRpGjwXbq5u3am9/SmTCmUnQF5N/FWJ3L4YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:19"]},"IP":{"Case":"Some","Fields":["185.220.101.19"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::19]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["c2J3DLpbVMMSPPskPYIXUx4voDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fg4A1F08tnpF1ceZlwe3ywOwRJvjGlNQuVzC01EoId4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:41"]},"IP":{"Case":"Some","Fields":["185.229.90.81"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:43f::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["c15z3m+z5E5bbpxOrrLbnNdXKjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ROovTErP8por8afnAY+b5tsSGaefav+D7xwe4QdIe8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["45.12.138.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::1fa5:48d1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepGreenResistanc2"]},"Identity":{"Case":"Some","Fields":["c07d8K+yjJHOh1EcfwgI5IO1oZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GjH30SSSb86ga00LahzFTLS/+CxI8AVzHNe8qU2PlY0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:27"]},"IP":{"Case":"Some","Fields":["185.213.175.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:232a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MoldEraTor"]},"Identity":{"Case":"Some","Fields":["czKgawDWr1SqgE8DxiTfu8nmYXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QzCpO3j+3eH5SSl7SizemKKSkszUPYJyXkJoy6K+lUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:38"]},"IP":{"Case":"Some","Fields":["178.17.173.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:2451:10::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay29L"]},"Identity":{"Case":"Some","Fields":["cyg8TevAHT5KX9G7HytQ2Sc3n1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HANFQi6rPXuj9/qj2W/FTozt4oXsPD6Zfibn26j680A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:55:57"]},"IP":{"Case":"Some","Fields":["217.160.56.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:867c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["cyeHauecmX3+MRp7FbT6h1c2u9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dCrjCifrDfmpvj6X9kfz8VcnSbVckhoebGyehztQz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:16"]},"IP":{"Case":"Some","Fields":["185.220.100.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:1::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ByeByeBlackbird"]},"Identity":{"Case":"Some","Fields":["cyCK5boVJRKrjXrZLgvx4PQgSjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CTsHnWOAMHWZLL76VCyHoegLklRl6CjKnjuE0RLgfrs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:56:01"]},"IP":{"Case":"Some","Fields":["76.103.212.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cw1vDrj4xmbrOHQDmDGmaoXkvM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GitM6falLi+nqXGTOwF1MENKiTjZZh1TIuMDKNBegoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:04"]},"IP":{"Case":"Some","Fields":["23.128.248.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::40d7:6aff:fe81:86fd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["huselRelay"]},"Identity":{"Case":"Some","Fields":["cv2U+jXTLib9mGdxf1deiDrZ5as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eshM3YUthFzed4r7i3opn8L3o+s41abhD3UGshnY3Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:30"]},"IP":{"Case":"Some","Fields":["92.209.84.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9382]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay330CT"]},"Identity":{"Case":"Some","Fields":["cub+Nz2KlRVKNmJxXp4QtWRHPOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ak9/qZmwvzgGx++CwTXNplqHeo0Iajy2BwCKWKQjsYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:47"]},"IP":{"Case":"Some","Fields":["98.250.174.4"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt29963"]},"Identity":{"Case":"Some","Fields":["cs8v4Vb4Y3ohrLfRY6mjldDAIEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zS72SPblJp+S14yC9+feQDPfgxKGUcAZ6IiwEAed8P4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:18"]},"IP":{"Case":"Some","Fields":["185.245.60.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0185"]},"Identity":{"Case":"Some","Fields":["cs3neT8ClSNQlIRDmjWgWBAwHQ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLtomQsEtXYlLZ9XxQoCU6fkxDlypSjmxGTFfJ+NQ90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:50"]},"IP":{"Case":"Some","Fields":["185.220.101.185"]},"OnionRouterPort":{"Case":"Some","Fields":[10185]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::185]:20185"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freedomRelay"]},"Identity":{"Case":"Some","Fields":["csS/FHGnasZRSEOvWkTb4ntNRwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYNSugCFWvgB1JGSXLfy1QRkAaMbAs+cCWihuErYKh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:10"]},"IP":{"Case":"Some","Fields":["78.47.153.136"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Omoli"]},"Identity":{"Case":"Some","Fields":["crOTmlfKM+IiL6Lacxlox+pnBNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WdbVjufrrbVACauhWc/JGNS4jbcMPQpnQniIKr79O70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:24"]},"IP":{"Case":"Some","Fields":["216.197.74.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:e439:2::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["cqpM+JFokzLZRzpOAUD4PbIhBUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC21TqgpixgXp7x72/y7HfSO33zXlwdg5OfTLSxEi/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:04"]},"IP":{"Case":"Some","Fields":["188.68.51.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["absturztaubetor"]},"Identity":{"Case":"Some","Fields":["cqM+N03lrR5hc5SJbw/YsJLT58Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JjRoM1Et4FfoDBmxprsEF0t6Q6vxnV1oAkZe1TsN8kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:34"]},"IP":{"Case":"Some","Fields":["81.201.202.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zai3Pheevoa4oiWooz1"]},"Identity":{"Case":"Some","Fields":["cp2qCfHiJduq8vQvPIL9O7561d4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jBfEU/ZQJepbEEap4U5asGMHxODWDbJE1vq4tJ5hz4E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:05"]},"IP":{"Case":"Some","Fields":["185.183.194.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisLatrans"]},"Identity":{"Case":"Some","Fields":["co+X1byxMWmIFNjHE8IiDG5yZ94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpUTiC9lDnsRXoDAjbE8965SeUpead56B1k3AyJhVxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:59"]},"IP":{"Case":"Some","Fields":["135.148.100.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pembs3"]},"Identity":{"Case":"Some","Fields":["cooH8BQqxbL4c9NtWQhNudyDq24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ds8EZEXb2hBfKrnvlgcKKbiu600gBbUo+etb6MOWLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:39"]},"IP":{"Case":"Some","Fields":["195.177.252.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mamba"]},"Identity":{"Case":"Some","Fields":["cms6erGVQ+dIMcusqYHOGM3WonI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["quxCf+olPFtAA4W6+hbhlRdZmmBpp+LIkXzvKdZRFyQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:53"]},"IP":{"Case":"Some","Fields":["45.95.235.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baronCV3"]},"Identity":{"Case":"Some","Fields":["cmUHXWIFHYElZhMJBiuSrhNrshY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qId9RemMeO9+J9pSyrGBB4kDESN+nDTsvqG+DrWACk4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:15"]},"IP":{"Case":"Some","Fields":["212.38.189.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bornhack2"]},"Identity":{"Case":"Some","Fields":["cmFMFsV41nMqnZB5oJBegVm8ROQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EoOm29k3Vl86DU2qcXsFTjb7/rYt+tJ/cUncxxfKj2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:17"]},"IP":{"Case":"Some","Fields":["95.216.212.222"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:2697::1]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei05"]},"Identity":{"Case":"Some","Fields":["cmCUlFnC1NSlq8OsEMGtaTnmUlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hE+S0SCU7MCQrvqbCrMetDQsAcyvRJcBDAV/XTVvdf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:59"]},"IP":{"Case":"Some","Fields":["188.68.36.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:7c3:a401:f1ff:fe45:7ffc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gamblo"]},"Identity":{"Case":"Some","Fields":["clCFLO3bp+Bl7zICiC9HFzGEZdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oiLWjNERtCCkpqWura28Jc6o7IGfoDvYPe7alrqBOXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:47"]},"IP":{"Case":"Some","Fields":["5.255.99.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:31e6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VoxBox"]},"Identity":{"Case":"Some","Fields":["ck/g2b0HN/510epX+EoWNXnhdls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0kZ1nzMVF78IDkXLXNLpRFftXzl4TYo2IE1Z4R6phps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:59"]},"IP":{"Case":"Some","Fields":["104.244.78.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cakeallergy"]},"Identity":{"Case":"Some","Fields":["ckqWIbDqtpNZ+d7PXaQ31VXW180"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAssk5c4Nj/9x0+bThooZqGWNEUKKzqkHkdEntmrnLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:25"]},"IP":{"Case":"Some","Fields":["45.35.33.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditheconfigmuch"]},"Identity":{"Case":"Some","Fields":["ckEaLObrJNjNqGiKazpVzBKQ1EE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nzTitnR0DSh/Mce5Q3OUwXnGeYzvUprIm0laT/UDErU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:20"]},"IP":{"Case":"Some","Fields":["37.201.143.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveTeotihuacan"]},"Identity":{"Case":"Some","Fields":["cj4h/W+RkF6E5YPUYZotHigrgYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yKKTw1GPR7BpwQJdQS1AcneWOVpEjK3RiPxzgb0uG/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:14"]},"IP":{"Case":"Some","Fields":["65.49.20.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM14"]},"Identity":{"Case":"Some","Fields":["cjjquR4QULbGvt38/XokQIabEUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["np7Xv1mcO+BNnILEB979MFalgTN+dRd+aYncVKRDDBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:35"]},"IP":{"Case":"Some","Fields":["185.239.222.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::14]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["perseus"]},"Identity":{"Case":"Some","Fields":["cituO3rSrlB6huWanzgLNXD0Z88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GdQkf/L+DAYPvdKRqXDY4F8eEI9Aw7/qKTc0KWLqCbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:16"]},"IP":{"Case":"Some","Fields":["195.154.232.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giesskanne"]},"Identity":{"Case":"Some","Fields":["cicOtY7evnJ6op5nQXYo286In64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aL1tgzfko+0/TZA6zxD3OCLMVTP+LJ8ChM898U3dykg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:41"]},"IP":{"Case":"Some","Fields":["95.216.146.117"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:a48::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5bd84798b7"]},"Identity":{"Case":"Some","Fields":["ciA7P0KQFzPsUCR5udmo1RNp1DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2BPXULu3GtfpxhOLLCeYiRcmnKaDAw326tNtNaXIrdc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:24"]},"IP":{"Case":"Some","Fields":["94.16.107.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["cholFli6IkDu0RDAeDNKst9sMJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E8asnspj4lMXm6ZDimBFKRrAkHJYpfXAE261l18LqJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:52"]},"IP":{"Case":"Some","Fields":["185.177.206.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::132]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slotor02"]},"Identity":{"Case":"Some","Fields":["cgq+RVTFXub2CZSRylXR9VUFEsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6kaxGqn+gqxayEmycXD6GGLB3Hi+pCleGjsd48sb6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:24"]},"IP":{"Case":"Some","Fields":["135.125.202.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Love4Ukraine"]},"Identity":{"Case":"Some","Fields":["cfnZaEjURVL3O8ShxdWXUbbQdGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+PpoQKqNSdiY0dVT+6jAP0dzwxyzwFhiXQhzwZXKbK4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:56:23"]},"IP":{"Case":"Some","Fields":["144.172.73.66"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HCCSRV02"]},"Identity":{"Case":"Some","Fields":["ce4/59zD8Igwk2Gk41hDtggMnqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xNuEd0FWHrnmJJAOqdEPvDHtJO7SBPK+1u9Isvco16E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:21"]},"IP":{"Case":"Some","Fields":["49.12.230.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:f4b0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marko"]},"Identity":{"Case":"Some","Fields":["cezBfuutu6dbH6Pb3cbvXPRPKDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJ5b/vGz4SIW8j6/SyfxoEv+ocCTi57H82XBGIrJ+0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:33"]},"IP":{"Case":"Some","Fields":["213.157.244.223"]},"OnionRouterPort":{"Case":"Some","Fields":[8201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv06"]},"Identity":{"Case":"Some","Fields":["ceipZz3Gi9P3Xt2T6Y8ADq0qplE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AA1HkPenN8QYdxNpMeKF62kgjIWTxriIS1FSjHNLY/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:22"]},"IP":{"Case":"Some","Fields":["162.248.163.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KFCCrazyThursday"]},"Identity":{"Case":"Some","Fields":["cdJSgohbmkO5IFJhi5GSuECCDQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z06mleewcB1xkefKn2sBNPONuATIYJnjHRcMrF9hric"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:00"]},"IP":{"Case":"Some","Fields":["144.202.113.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:4a2c:5400:4ff:fe13:81e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["nodebyCyper"]},"Identity":{"Case":"Some","Fields":["ccoKjDQ1v0jR+5ZCQO/AeWNtvl0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZswuVxAx0/ozP2kplB/IxYEd5MkTTYDgrvBYPGZ3HRk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:59"]},"IP":{"Case":"Some","Fields":["78.46.162.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:82b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torontot"]},"Identity":{"Case":"Some","Fields":["ccLSwkvEVHx64YdEgoGbU1ll8jY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s9T1GY+b3S2H4epB3EaJod7lEhAIGiqLkWCOVGWx8Os"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["54.37.180.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["cZ/Q+jJ/PMvNoNTqdMFeoRAziUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HKNdzsSOqXi5UWoaUJIKOEekyqcicf7pE9IT0Wifj04"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:28:53"]},"IP":{"Case":"Some","Fields":["185.220.100.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:4::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapSGP"]},"Identity":{"Case":"Some","Fields":["cXSvsmp7hOldrslGLBGgRfq3jLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FHWerlDF3DcxkTwHr75ei4nG6V98MmRlRMcFEbgg6Hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:11:26"]},"IP":{"Case":"Some","Fields":["167.99.69.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::11c1:a001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cXP96R/6JBXd2W/bXDGEBbKHu0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zF6TAv056l/6g+lZDCyz6E7M7htNEe38JUQ6LMHJuG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:05"]},"IP":{"Case":"Some","Fields":["111.216.95.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViktaTor"]},"Identity":{"Case":"Some","Fields":["cXJWc6bMMd1nfxz/88gMUgG/8lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FCMCw5snpBKWoakiRthcI/0w5BIdSHqLdydDW+rnz20"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:53"]},"IP":{"Case":"Some","Fields":["79.121.49.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["winterwonderland44"]},"Identity":{"Case":"Some","Fields":["cWhTHGntZRoS0gsqwr1hwbx/XMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/szLCyS+tSwhUU63tmrX8W6/Haj5OmqPDS42+mUt0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:37"]},"IP":{"Case":"Some","Fields":["141.39.250.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["cVXekMHDyb9NY3WAx/An5XInvTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSoosqM+IQS+q1bcxeuVuh5+TzjN18Q735UcS4gkAPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["89.147.109.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tordel2"]},"Identity":{"Case":"Some","Fields":["cVWQoeFlS4l8bqx2mcyafKnvAKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r0X26j42eT/vRUMdMiYd61XYxCpHUkYoDdBDrc+uxpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:20"]},"IP":{"Case":"Some","Fields":["5.181.134.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission05"]},"Identity":{"Case":"Some","Fields":["cVOdGRHsuCYGmk0VZ3GsT59GMqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/Kuey0uuuAhX0AK2fzNcYgwwxEDGMo3nNmvIzSmKhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:44"]},"IP":{"Case":"Some","Fields":["37.59.76.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangeneis"]},"Identity":{"Case":"Some","Fields":["cU1+2c0rwe4+35xqMWD9rmCKpbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pHbKfbrFg/Ha7EPr8vY0d2CYD6Ci8Zdj0phoEcTwqsg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:49"]},"IP":{"Case":"Some","Fields":["89.182.40.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:560:53dd:d500:ba27:ebff:fee2:a46f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.6-rc"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vps603203"]},"Identity":{"Case":"Some","Fields":["cUGLailM3EjpqdsNqZ4Xi1Wv90o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["axeCZjZP37YMFqpNLxrs8V3e2UzLLpxZJkq4dzH/AzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:03:19"]},"IP":{"Case":"Some","Fields":["51.75.125.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9991]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hamburgo"]},"Identity":{"Case":"Some","Fields":["cSsKrbG3jVQBF8BViqK7Iq6gP7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yuOQ7dkq4vg8uepyOX1rrwGgEHlkIOdHwDpK49gNKHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:17"]},"IP":{"Case":"Some","Fields":["77.8.132.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["cSkVDn/ILtkm2sZsHd6lHEMaBUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e0ayvNPvSd9Zw8qXNVbO1kY+rlhu/WFKgIa94bH6AiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:23"]},"IP":{"Case":"Some","Fields":["23.128.248.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode4"]},"Identity":{"Case":"Some","Fields":["cRa8kpwFXfA8ztn97qj5Z1tlFSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkd54WbrSDATV0YtioyaycbVvtVebglLo+8LMbhxWJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:27"]},"IP":{"Case":"Some","Fields":["184.105.146.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::91]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv122"]},"Identity":{"Case":"Some","Fields":["cQJrmZ4V7MC8yla5cuIQzKdq2Wo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVaA2FoKVJqGgWvapGXbJgaAYkLWOODRArUVP0XNrFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:41"]},"IP":{"Case":"Some","Fields":["192.42.116.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5522]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["cPlhNQpBTwhqo6dnMlcTyGyTO0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d46LXO0Kj03OkrtO9T5RmIBMI3EeMO3kTUwPZO5zuZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["188.93.233.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7a60:1::f9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay4312"]},"Identity":{"Case":"Some","Fields":["cOWXPgfYr8TyOWOLbGeB8IcO/Hg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v7FTPiqxeOKhc7V+bWN08GXGR11MaBk9OLyB7a8YhGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:16"]},"IP":{"Case":"Some","Fields":["109.200.109.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cdn4ukraine"]},"Identity":{"Case":"Some","Fields":["cOOfeqGoO3pdO207fmqk8dJuI0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Alf9LzKwrasQuhxgYjrO75tUvjlbaG+w7AlvOnDbA6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:07"]},"IP":{"Case":"Some","Fields":["198.98.49.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow4"]},"Identity":{"Case":"Some","Fields":["cMIgRXShtCTwB5OM8EpmYhbhs90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXKwa3TdbBqocZq3IVRSDf15L8ikoYRn4NBJfAVkRTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:53"]},"IP":{"Case":"Some","Fields":["51.68.153.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["cMFpqra06CyP4OzivvtKf6tGCho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+jMjpoOsSmO4hfKRRJbMp7Ywfb+Xblj5BD8ahb/XG0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:08"]},"IP":{"Case":"Some","Fields":["88.208.225.209"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:19a::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["cL1Bfvyg2HTbVtPZPo/fWLflqEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Iw2SBkg/V56HbvN2OXnilIr41fY9zTR59KnJ147KT0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:42"]},"IP":{"Case":"Some","Fields":["220.120.114.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["secureprivacy"]},"Identity":{"Case":"Some","Fields":["cLg8wC1O+3lT65ugay/oJZHLGig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+lxAtLZdjkz0GzfgXM1T9HfdoCf1XI4CKz4zbTyzvj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:46"]},"IP":{"Case":"Some","Fields":["5.255.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["myrelay1"]},"Identity":{"Case":"Some","Fields":["cLVHM2xqxK3WdOrOtLnMqMAsBPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/80npcawBKiqtZODWlUK6UFPUy59DfFPKy+EHVITsZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:17"]},"IP":{"Case":"Some","Fields":["184.183.68.185"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp1"]},"Identity":{"Case":"Some","Fields":["cLUeiFdgHh25AGuXRkLWz+goFYY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+1cg82xO58qme5WdcLl+cMMZLCeWR+MfMY0WRLhDTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:19"]},"IP":{"Case":"Some","Fields":["185.220.103.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay26at5443"]},"Identity":{"Case":"Some","Fields":["cLLYO/ypUC436vSdxoUWZxjq3v4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zlrmosIztcVXnM/vHR8n4OCjmWa9xXsbxvWpMch4Nnk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:51:31"]},"IP":{"Case":"Some","Fields":["140.78.100.26"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute21"]},"Identity":{"Case":"Some","Fields":["cKygfZJ2J3uC6QnBQ54ZzKL7Fsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9C26qxdYmTNCmbuDQOB63aF6mAjEkPKwdZWUGPec38"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:31"]},"IP":{"Case":"Some","Fields":["185.220.103.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["cKZECx5ti2lcHGEeKTvM3P5q39M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CGP8COKJjcisHKle6dHGmuljjVTawQGGVQWYH2EvwjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:58"]},"IP":{"Case":"Some","Fields":["23.128.248.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyIsFreedom"]},"Identity":{"Case":"Some","Fields":["cJ1f583SNWPFkwH7sBPh46Xs3ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VdStp/Zo/f/awqAhEepBKR+Tc9qRqqzv58POY6CYz68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:02"]},"IP":{"Case":"Some","Fields":["45.76.24.29"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5c01:1c7f:5400:3ff:fe54:2f45]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay15at8443"]},"Identity":{"Case":"Some","Fields":["cIgrEWxzvjIwNtgkMVoFDueWxEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q7ay25eyHWDGdpC9NDZBIRrRrqoP+2CUmPIcHwNzDvc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:33"]},"IP":{"Case":"Some","Fields":["140.78.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["steigerwald"]},"Identity":{"Case":"Some","Fields":["cIBfFVHoQMc3a4c+WsbzAymT54E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sjfw1LLlEly5UrC7DJdUFVySc7qw+MOEkHbRwLXYW0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:11"]},"IP":{"Case":"Some","Fields":["213.54.162.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopetohelpdoods"]},"Identity":{"Case":"Some","Fields":["cHQPHxYgVXvFTH4PyZS0NG7tziY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oofMJ/OLYZd85EeW5VVvcTAwS/esZPV/0izkcLkRrjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:01"]},"IP":{"Case":"Some","Fields":["24.99.81.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9074]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fourwinds01"]},"Identity":{"Case":"Some","Fields":["cHNZ66X0VY1TOrJnOlk+kzhczMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AZ3qDFTQbc3EP3UdXS56gOcCH7fCrhnvbjWvgXktyd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:42"]},"IP":{"Case":"Some","Fields":["94.16.116.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:8a9:887f:9eff:feed:9e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex60"]},"Identity":{"Case":"Some","Fields":["cHAZnvYLWxrk6i77SIH5+Qtvqe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gFY1q+ZZJ1f0iLPU/ioOfGWThEBN4Wld0ZNWUI7Z6M8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:55"]},"IP":{"Case":"Some","Fields":["199.249.230.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::149]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor04"]},"Identity":{"Case":"Some","Fields":["cGp2dKIXupBf5nfoIja3uWiiPbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gVA/aQ13Ci0byRMuyObnZbGC0BvQZnyUPg00cpum3V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:16"]},"IP":{"Case":"Some","Fields":["83.136.107.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:29e0:2:6:1:1:7760:bbd6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["drivetbuyvm"]},"Identity":{"Case":"Some","Fields":["cFqDGxWcS7OW5rC6rUJw96P+mqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lPeM8RQ73jOEv1/LxYlqtkplwp3NBtGfyK/XDcw0+D4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:37"]},"IP":{"Case":"Some","Fields":["199.195.252.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["L29Ah"]},"Identity":{"Case":"Some","Fields":["cESVWk17BM9wAR1ztGexPOXmnUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZvkbq8DzpcfP7zU+LKcjkmLc0ZOADfPXHTTp6V1yYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:02"]},"IP":{"Case":"Some","Fields":["94.242.59.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:35:100::e928]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorUmidanuki"]},"Identity":{"Case":"Some","Fields":["cEDB9XKHRsX7XhKEUQGibuhjbX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MyWJKK9RtPIT54LWcaG5lBVmcEGy3ZPGfxd0cg80L+Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:34"]},"IP":{"Case":"Some","Fields":["144.217.90.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::5b0d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomOfSpeech"]},"Identity":{"Case":"Some","Fields":["cDJmYwCjjtYk2US/gdzLFZFFtwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qkuSJQgDIK6l207Y6d15P2diiBbiqe8pQwTK7Dd89jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:40"]},"IP":{"Case":"Some","Fields":["185.194.142.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:79d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["cBoK/GDZjQOGNgMKUXFF+nbjQg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftv4N7N20XWY7Orq04/8bd49yQb7gcNXTJxdly1XEZo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:31"]},"IP":{"Case":"Some","Fields":["23.128.248.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OatMeal99"]},"Identity":{"Case":"Some","Fields":["cAkOn4X74ATuv1hGH9bt1b+KUj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jQTd7LCCqDW/jQRT7skgXfoBmT9rytOwGUyN8S5zI00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:48"]},"IP":{"Case":"Some","Fields":["80.66.135.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["cAZWVw33PE/EBZ/vL33giych5Ak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/gseEmz/KlZ5tt6u4XS5QqT44IB4vwNpLlIxivru5oQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:41"]},"IP":{"Case":"Some","Fields":["185.220.101.48"]},"OnionRouterPort":{"Case":"Some","Fields":[10048]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::48]:10048"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atlantis"]},"Identity":{"Case":"Some","Fields":["b/RA37HQaXuUI1fXR5AMwwjdV8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r/neYdR+JBMPyKRXdX/SmiOHfKhwemdAMLDLkpFb/0M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:39"]},"IP":{"Case":"Some","Fields":["85.25.43.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["b8pc5h9UXRgs1GM3NUdKmoFMbkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ohAwj6BZNXuqtlvZj9bhiUPKQZjH5o6OkRmPFVsHNrA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:46"]},"IP":{"Case":"Some","Fields":["185.228.138.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:785:3494:6ff:fe3f:873a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jubei"]},"Identity":{"Case":"Some","Fields":["b8jTsVIFSQZBfLHuBkImV0fH9ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wsYFtwhIAbvQ8ny/V44XdCZtBXn13OuHnULEDU5N8fM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:13"]},"IP":{"Case":"Some","Fields":["72.83.64.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:4040:209f:9101:21b:21ff:fe36:fd2e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SmallTownHostingTOR"]},"Identity":{"Case":"Some","Fields":["b7aWCCYnhDlJqAjOw4kD24GQ+BE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZrX7Bhzlt+vjqmfVebJKaVzxLoSEvtGP0oG0uxvrWeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:38"]},"IP":{"Case":"Some","Fields":["12.208.119.235"]},"OnionRouterPort":{"Case":"Some","Fields":[1500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harik"]},"Identity":{"Case":"Some","Fields":["b7TkKuKgFH311aCkKDyW9fukM7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CoAeAFR13Xd3jRFLKQgR7J1X8Tw7fL6k2q7CactzsUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:05"]},"IP":{"Case":"Some","Fields":["193.189.100.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:258::228]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sunandfun01"]},"Identity":{"Case":"Some","Fields":["b5XmxRi9CepJoxAlp7Ef2FT6ap4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9KuEOmVXPoj+5wIhVg1KO5aq2v3EWqwpH/tDHWcV9mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:16"]},"IP":{"Case":"Some","Fields":["94.46.171.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["b3fpXvMQCork5g1S8Fkxp8kOXAo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6mmuUkHJ+waSH401uPrPbjRMm0eJqAJkmabMXFo2AdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:51"]},"IP":{"Case":"Some","Fields":["179.43.159.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Demonsys"]},"Identity":{"Case":"Some","Fields":["b3V0R+TydVHlkjPQ7Adtcnv+Wiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+tkkbE7yrgTrQd6kdHgID+fQCKj4izzzc5A+feZQliM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:53"]},"IP":{"Case":"Some","Fields":["39.109.151.40"]},"OnionRouterPort":{"Case":"Some","Fields":[33701]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3003:2006:2f59:62ef:1332:cc8b:5ebb]:33701"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE75"]},"Identity":{"Case":"Some","Fields":["b3KYcYfrSCI5lb76chdVkyZg0Nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2muBKhQRcaa/dS84nbm4pg7Ok+CPCLfj4H7tsqCkDKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:18"]},"IP":{"Case":"Some","Fields":["37.221.67.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:105]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brotherjacob"]},"Identity":{"Case":"Some","Fields":["b2WG8WMcrBEVuVYWVudmTThrf0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qGMNLMIYNJBb7xsN3g/0SY3XrI3wQqajlrMvn+PRok0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:45:42"]},"IP":{"Case":"Some","Fields":["46.4.55.177"]},"OnionRouterPort":{"Case":"Some","Fields":[1723]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["y8Z5zJT2Fadx8m"]},"Identity":{"Case":"Some","Fields":["b1q7xFXNAfSB0vNszRpgz/6x7V8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cIV1gCW527Bgcx5d3cIfjOtEmfKg/AuewQmT7IfXUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:39"]},"IP":{"Case":"Some","Fields":["91.208.206.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5130::aaaa:12d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute06"]},"Identity":{"Case":"Some","Fields":["b06f0A1CUdmL6W+xqlRv40Z2qVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jERKbW5a+9NVSXeCy7Ds/K0XD2pfk/Ml+dsGWqjM+O0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:13"]},"IP":{"Case":"Some","Fields":["162.247.74.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["b0ddorgdtqeQKJE2so4jupToSyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPnDlgdGeQXcIiZLCrPnkxXUAQehTRylLVNYWZ/5GYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:45"]},"IP":{"Case":"Some","Fields":["185.241.208.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["badc0ded"]},"Identity":{"Case":"Some","Fields":["b0LW9REjwJiGRkqVn38E1a1JTpY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nhl5NrP431/jrYsc0dtT0SzYajxZ8YOk2t52tuGwFBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:08"]},"IP":{"Case":"Some","Fields":["202.87.163.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JonDool"]},"Identity":{"Case":"Some","Fields":["bzD3qUym22Cb7O+F42JlyCCtUB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4n6JM7TYVQARlFYTUnNfPupvc4n1pSPvVMtuIHux380"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:05"]},"IP":{"Case":"Some","Fields":["116.202.104.202"]},"OnionRouterPort":{"Case":"Some","Fields":[7193]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterrydavis"]},"Identity":{"Case":"Some","Fields":["bySjXFbDCiMd4h5w6KDISuCSfQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vu3mO3yJW34Uf/H7E8zpnJP4dHIdFxHGTEE1KnrJ/+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T21:26:38"]},"IP":{"Case":"Some","Fields":["90.178.65.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohrly"]},"Identity":{"Case":"Some","Fields":["bx0bgxUtYYHKwscm63VHt7m7e38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Of7SrA9GkJBCQCODuKPE1pwpudc3xmCBuh4AtRr25ZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:34"]},"IP":{"Case":"Some","Fields":["79.225.81.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ByrdeFoundation"]},"Identity":{"Case":"Some","Fields":["bxtKYrAp4VE5GUv+NPWleTaUtJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f+mLck6ClIVSn7G1JiNpptm6pIN5J49SCDlmmVfpyqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:55"]},"IP":{"Case":"Some","Fields":["195.3.221.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:26::c303:ddac]:9003"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Petibonum"]},"Identity":{"Case":"Some","Fields":["bwz/Y5pp8y6UH51RU28xDghyqrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["upg9cyELy5lcZGdrJ+tjNN/Q7MvfcVox65e/vQdgT5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:58"]},"IP":{"Case":"Some","Fields":["86.248.89.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blindisland"]},"Identity":{"Case":"Some","Fields":["bwfUvI8Ma0hvucGMDh9xn6YBxBQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MYS1K/4tA5eAaePLal9gMAotG9qfdCr8rlEJOCmiNTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:34"]},"IP":{"Case":"Some","Fields":["45.32.66.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bvrDM2zf0+vUXjfKGZXt+Dv38BI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhBjeV2FRFYd8dc71jF1Me78SXEu9Q/o9KwpxKoqZEM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:14"]},"IP":{"Case":"Some","Fields":["23.128.248.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::9835:eeff:fec0:f2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoertetor02"]},"Identity":{"Case":"Some","Fields":["buC+AbUcZKx2LVMvUzcA+zgeIOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QOnfsjXgYPJQV6nugpW8kmVCvgF7Fh+EYTHZ92T3xrU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:33"]},"IP":{"Case":"Some","Fields":["88.198.209.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snousage"]},"Identity":{"Case":"Some","Fields":["btwKebCD7M4NG3l7EB7YjrPtkNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnpZM/+Jq3SpECaJ0fL728liyU4rsaHvBloQ5QpCRH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:02"]},"IP":{"Case":"Some","Fields":["141.95.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h2961181"]},"Identity":{"Case":"Some","Fields":["btdrK57ekyyHhhobGg+S2MxtKX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MMqtTdACPG19KHfYqo23xJWz9hv6OEjHi4BYATGterc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:58:55"]},"IP":{"Case":"Some","Fields":["81.169.166.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:424c:1900:a87e:747:8f75:a70e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatconfig"]},"Identity":{"Case":"Some","Fields":["brMAITwnxFNnuj8RMqY+p2d/7U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uMKj/f+DrqFIbaX/H/IRynU7ER/DO4HLqzRujuKduNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:49"]},"IP":{"Case":"Some","Fields":["213.206.184.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:beef:2041::9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber09"]},"Identity":{"Case":"Some","Fields":["bqWn6owvGSw33OsqrUgdx+cuZd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wRuzZnen/2kH3vefrV0ZVKIUiDw5Nn8FDo2rcBSyGRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:27"]},"IP":{"Case":"Some","Fields":["185.220.101.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::5]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GirlYouHawtSauce"]},"Identity":{"Case":"Some","Fields":["bqUXfBwgR7I40yCAG0so5B3Iis8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cimfPXBolz1nLBxBSfooKbjhcUcaDFJVkXTzB+mOz4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:12"]},"IP":{"Case":"Some","Fields":["173.205.92.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["BraveMenkaure"]},"Identity":{"Case":"Some","Fields":["bo5cqbb1Z0Fq2iHpkOd0a8IjsMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CiAM1cT5IojF5loTBe6NtY52D4VE/3Cqs0IP39kp5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:35"]},"IP":{"Case":"Some","Fields":["65.49.20.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo235"]},"Identity":{"Case":"Some","Fields":["bog6h4+cMz/I0WwzBLLmOwAUPZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8iCDGFKWdX6jrEmzir3szztriIXv99VqzC/f+oGNyaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:17"]},"IP":{"Case":"Some","Fields":["179.43.182.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["bnNv9LooRTgaL+5N7mzFZcWn14E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i7xJnbduMO9cW0vnRaL2jHauW6SivARcoY0U7vs0RWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:35:25"]},"IP":{"Case":"Some","Fields":["188.68.35.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ServerAnoynmous"]},"Identity":{"Case":"Some","Fields":["bnM0NBjlLN5N3BTlUMnU750z0uA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKo9KJsvb7MQw3l00fmZ9B6jmIddum0qNLJm57AFA1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:30"]},"IP":{"Case":"Some","Fields":["79.192.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnstableDebbie"]},"Identity":{"Case":"Some","Fields":["bmcy4Aw/iRK9yoDPzyPQ0mhqw4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ryLzf1X797I1qhvv8gxyLGZH7XAfT3XzyD5aHyuoKI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:47"]},"IP":{"Case":"Some","Fields":["149.57.205.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongUkraine4ever"]},"Identity":{"Case":"Some","Fields":["bmZmIae9OYp/DGf180S88VnyLoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["79g5J7Ud0+psYjDVYKN5CzGAr/pCarfintnKxRWkPBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:27"]},"IP":{"Case":"Some","Fields":["91.219.245.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Minotaur2"]},"Identity":{"Case":"Some","Fields":["blhsj2LQ4VN5IJWv2lXU4uPzQh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0lhCskNRdkFroNZGrM6+SEWA1qxUqQn8rdPv1jS+IuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:23"]},"IP":{"Case":"Some","Fields":["208.109.215.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["bkGLoKCaTdevVAgjzgJMQmgbl/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TUFv4BK+j1fTfx7h6z2dxXY9rQYJ5MhB3JIT0JNHBX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:23"]},"IP":{"Case":"Some","Fields":["151.115.42.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber34"]},"Identity":{"Case":"Some","Fields":["bj3SLPQEmfZ8ytxcAkOXdIwOY7Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bQNHx/Xt7nnW0r/HZk5C4ws9oAPQeciH8N1T9t5KSUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:09"]},"IP":{"Case":"Some","Fields":["185.220.101.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::17]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bjtIITBdlvFnw5Lb5aEyQNbM4CQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a2+Ms7Hz6cGwL2U6oqTN33ZcvCZnfVA90s0YvSp6JlM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:56:57"]},"IP":{"Case":"Some","Fields":["95.216.201.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3880::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["VenomReaper"]},"Identity":{"Case":"Some","Fields":["bjUvY36dXYgs26RUcz4WkfTWhf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9aTcfW5jsv4GqlhPbYHLRnn3qabGedPtC6LLKYxzQNE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:11"]},"IP":{"Case":"Some","Fields":["65.108.231.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:f500:0:d0d0:15:dead]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay21at5443"]},"Identity":{"Case":"Some","Fields":["bjUIyyN01BHNQf7o7N9w2joveig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/m/GniTRzyYGcL1U19vfymaCEfdTdls3AQt8NMl9nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:14"]},"IP":{"Case":"Some","Fields":["140.78.100.21"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LuckyBrezel"]},"Identity":{"Case":"Some","Fields":["biF0uR8lDOBey7bJo3gf6zWWw3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixK3r+qbTvJni5Ftr6vJyhF0WwnEj2++g+P/85FcZMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:57"]},"IP":{"Case":"Some","Fields":["217.160.242.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:717::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bavariaboys"]},"Identity":{"Case":"Some","Fields":["bhztxh83B8VJuI+5OA5KdQYh/Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ew3wZAuSuI63YtCiEf05fLBFJ1mC+8MCe7UCP8DI8uo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:39"]},"IP":{"Case":"Some","Fields":["136.243.92.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:501::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bhbTjFrBcOVgiBe2ZiXF808h2W4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KSmDA2Va3T/izIclc5MX6DTJRxXkthK4YfMWgKQFDes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.59"]},"OnionRouterPort":{"Case":"Some","Fields":[10059]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::59]:10059"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bg3wpbfz//tF4aoHjRNvXevSKKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Wi7Z9GzyCvnFciZBXCRXO46baALKT1jFnUT3cn4vX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:46"]},"IP":{"Case":"Some","Fields":["185.220.101.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::199]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Onyx"]},"Identity":{"Case":"Some","Fields":["bf60HATM6EaHEzjoXdWs9c+2wd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wtXRSdgSN5TdqT7W8jT3vYb1SUas0skT5jQs3FHSKpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:48"]},"IP":{"Case":"Some","Fields":["192.42.115.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:102]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG1"]},"Identity":{"Case":"Some","Fields":["bf6yv7+p2+3OLeky+dFu5+BTDtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D/coL7WHA3+Ziqp8TD6th/Ehcn9lHOwvtIx6a841Hxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:52"]},"IP":{"Case":"Some","Fields":["193.189.100.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::194]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknb"]},"Identity":{"Case":"Some","Fields":["bdSKXnJhvWuLPqPQUh8eg+lsoTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le+Dl8hJyrByviKZICtPEBnsKnfizEiYPxsRtkDqVNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:33"]},"IP":{"Case":"Some","Fields":["123.253.34.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chenjesu2"]},"Identity":{"Case":"Some","Fields":["bc7YK3AdMjEggR31jTUN0mv5yyU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LSMzuJNC80Xz7mdiC9t0UtkY8Mm/Ns8BgTEsD9RDop0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:46"]},"IP":{"Case":"Some","Fields":["54.36.205.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["someonesRelay"]},"Identity":{"Case":"Some","Fields":["bcykSPjtx5VTzmDo4hAw6ULMw7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0el5NQV10tSe0W+n32Qq7NYsdwfDTCRrru02CT+R6A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:23"]},"IP":{"Case":"Some","Fields":["207.180.234.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2023:2621::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay16L"]},"Identity":{"Case":"Some","Fields":["bcbNxt2pmRXrAjIHHG3SyHhKGR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gHjFDEotESrT4qp4xEA6Iw3g0I6SrTS7sKtcPaH+UoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:26"]},"IP":{"Case":"Some","Fields":["195.123.238.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9401:0:acdc::191]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor4ATL"]},"Identity":{"Case":"Some","Fields":["bam5DjdKx6NQ6x0gR0uvVkn1gwM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sQki9f52/Qzvc4eg4VNUsx5BlEJSp7GWLu2AAXfArkM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:34"]},"IP":{"Case":"Some","Fields":["107.173.164.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["bZz7PtdpQpcT8vKMgTADTO5mezI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AnIgb1W/74jj3fqMq6rCfNirlYCsfKN/tNI1u7IsiLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:23"]},"IP":{"Case":"Some","Fields":["91.243.85.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::26e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SysadmAtNbg"]},"Identity":{"Case":"Some","Fields":["bZNQPhUElrsypJEvkExOLbIFJ40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+dIYnFdvbV/mCl43lGbikX1qFcBEr7nlMet4MJrqMv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:54"]},"IP":{"Case":"Some","Fields":["91.45.217.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:c2:c70b:a800:329c:23ff:fece:a96c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["bXWh7aaVaVw5lKAAg6dRD4Wi7/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHKqPVNQ8YsH3ruaB73c+4wNvQaQ0XTmREzj6pbn3Q8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:13"]},"IP":{"Case":"Some","Fields":["95.214.52.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["bW7CouLti/8tSDT41mnYL8Kp+o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["38FtystG+NEr6DxSYdGQ8o2fEdn8ajLpI+RhTsxy2qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:45"]},"IP":{"Case":"Some","Fields":["185.220.101.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mnlabrelay2"]},"Identity":{"Case":"Some","Fields":["bV2kS2ZIYS2c3/i2nWQNhu+jggM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IybwbjOc/qDOJOTtSehKc/YsLOpu0mCu/rRXxret/FM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:46"]},"IP":{"Case":"Some","Fields":["49.12.224.203"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c0c:6c6b::1]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Texas"]},"Identity":{"Case":"Some","Fields":["bVyuW4xpe5XY6fT+olZ/3tyZgLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wN0jLbUs19BVaJE33Q0uioyKhQeb9bjW6/qc3wjIBU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:49"]},"IP":{"Case":"Some","Fields":["185.70.185.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["bU4Qme8gjER5/2bL/mq5WjoxZp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TW75SlkYKy3XWi3NjVIroXl2cuubA00SByYMjESkCcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:48"]},"IP":{"Case":"Some","Fields":["100.8.33.13"]},"OnionRouterPort":{"Case":"Some","Fields":[49441]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange026fi"]},"Identity":{"Case":"Some","Fields":["bU1Rk6DikMAn/mtmcxEz9wlGoVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Hdf8m1tu/s/hHKjRdnBzZcqnR0l9tnjs+hV7I5OEB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:10"]},"IP":{"Case":"Some","Fields":["185.103.110.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu2"]},"Identity":{"Case":"Some","Fields":["bUNURg2Rc5TIK6cyk588xVibK+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0S6BG6IsExCviGr3AgIP5uL+yFojuGcSaGfsajv+K8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:31"]},"IP":{"Case":"Some","Fields":["65.21.91.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:4367::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeacLoveJoyServer"]},"Identity":{"Case":"Some","Fields":["bUBveCAjayr1FU0ssnAR6Bs5bBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JJkPHk/hPq1sKecZ8CkA2WS0kGfKQdwd10RxTQrYC2w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:16"]},"IP":{"Case":"Some","Fields":["107.172.209.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LondonRelay"]},"Identity":{"Case":"Some","Fields":["bThlnBf2yRTksBfPPuneNjevgSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gd4JKBhrfId/Fnmr0j7iAWZjfm0J1dPy+8weEslp0sE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:15"]},"IP":{"Case":"Some","Fields":["46.101.85.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["bRAO4gqDAl5ABcZVlz/1nfINkhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MyZxWH4Tho8/9Nc6Pj9Av1T46k3EBv7pk66fhXqO9cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:58"]},"IP":{"Case":"Some","Fields":["185.177.206.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::133]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bQ1hDWPTNYQwjKZySE2mmf8moqM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DkobXZHfki3RqvOIgDSlHhVuzTRYWSQBVs926gEDdq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:51:23"]},"IP":{"Case":"Some","Fields":["51.15.122.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1f0c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charpini"]},"Identity":{"Case":"Some","Fields":["bPxHtG5CqddtR7kR+3GeZTCAFO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7xBwLIV25IjZgUcREK0vl9o0xdW6jLPdhHN1Tupg4LQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:35"]},"IP":{"Case":"Some","Fields":["89.187.143.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HHrelay047HH"]},"Identity":{"Case":"Some","Fields":["bPBY8VcxbD5kMzj88OmwggoUa0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DB6zhjrtQaWzZrn7wNColWhDsaJyj416SJ2OyL7a8Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:24"]},"IP":{"Case":"Some","Fields":["66.150.66.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:1a:1::bfda:62dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Huntergilp"]},"Identity":{"Case":"Some","Fields":["bOMeUZbjlxmvDlUV7VlvI3Cc5ng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h8MtGZJ2eXW0LHRajHYVbHjve9jtFQCnafDnVSc6Dzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:28"]},"IP":{"Case":"Some","Fields":["82.165.107.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:68f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsq"]},"Identity":{"Case":"Some","Fields":["bN4zY/n5rVpupITe+1ghfMloXjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+a83zGHWNGD+gTdTmm/Dq8+5x6Rj72mQw39IBWgB4iQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:16"]},"IP":{"Case":"Some","Fields":["157.230.112.120"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:3:e0::374:c001]:19001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["raptoractual2"]},"Identity":{"Case":"Some","Fields":["bMdEQA/Su0yBG3tYZLWx+qelYxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fdMgceW4jV31a6RDFWtiyzMlT0RCTzdmxCoKhEySfpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:26"]},"IP":{"Case":"Some","Fields":["192.184.162.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spicyavocado"]},"Identity":{"Case":"Some","Fields":["bLqQ4xGIpl4rasHuhBLo3lceytY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BL/tQFrIJSGk+8xcvU3bQ29zQBbBV5TtJogwr3gfDAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:21"]},"IP":{"Case":"Some","Fields":["142.132.204.165"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:261:50da::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra25"]},"Identity":{"Case":"Some","Fields":["bLGAmPUIGd6rIuNp7DpWYaVSpmw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9IgKELEUQ+cKkcDUtfRwEVvMKl5rVmW7/taBqqorYog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:26"]},"IP":{"Case":"Some","Fields":["104.244.77.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["bKUbq5SEm5uTpdAzcjG0CLS1Nnc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gssWFpKNkoJgjQaPHtvFdavuceAphcWaZ9H7B4VQBDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:20"]},"IP":{"Case":"Some","Fields":["23.128.248.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["bJXoGoa0jbg1rhQxJ3owExhCKhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlhDlnoc/86vsuIkFaKZ7yHxrCvbm4t6b+fQOqJctY4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:58"]},"IP":{"Case":"Some","Fields":["94.16.117.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheEpicOne"]},"Identity":{"Case":"Some","Fields":["bIgGMLQzVFFASdz+43oF2Admpy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yJtHkyxf0jmj1nNvnwMVNnk7DV6zlFR6IDPWlMqcvpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:23:09"]},"IP":{"Case":"Some","Fields":["99.47.29.66"]},"OnionRouterPort":{"Case":"Some","Fields":[2874]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EVILGRANDMA"]},"Identity":{"Case":"Some","Fields":["bIHq44QgvfwoDbhftwiVnM8EE8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ByD2QvluulItBCHpuwbEgj3ae6Ay1D5kAO5mVWZP81Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:06"]},"IP":{"Case":"Some","Fields":["15.235.130.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bGl0ZEOPZN8PxWUbFnrDzqIxjdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6u3+tia5EiGaKLunnhCzid99lcJ8atPVVEq/bRtSzYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:06"]},"IP":{"Case":"Some","Fields":["37.228.129.163"]},"OnionRouterPort":{"Case":"Some","Fields":[49980]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber03"]},"Identity":{"Case":"Some","Fields":["bGQQDY9wUOdvQgzkBAMeq8cQESQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M89zixULOAuqLam7VloUORH9qurd2BSIrM0iif96MxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:29"]},"IP":{"Case":"Some","Fields":["185.220.101.2"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cerberus"]},"Identity":{"Case":"Some","Fields":["bGIMNcDqFmV5YIgt6Isolo68hok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uPaZ81iKSmcv6oZeJZOGDBp4bGu/MNUwyZMBMAX0C7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:24"]},"IP":{"Case":"Some","Fields":["205.185.119.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:ae6:e6c6:d90:fee8:5ad5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OdyX"]},"Identity":{"Case":"Some","Fields":["bFh1q5LIl50NZslS0BfphmFI3e8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["txJWzwncK8igjFApc5aakInVcKmjaeuneFskCDtb614"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:31"]},"IP":{"Case":"Some","Fields":["194.230.141.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uqtilephataz"]},"Identity":{"Case":"Some","Fields":["bEmq3qV9OdyP96d6oy8mj9xC4qM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vTbVx+dY8TIWzPlXCPWh6YNSahcbRoiZuos8yDFF3Pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:54"]},"IP":{"Case":"Some","Fields":["62.212.239.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["charmingpi"]},"Identity":{"Case":"Some","Fields":["bEcT9SbSh3nX/P9P1A2JBEzhr04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tl0eV+Odx0viL2YgCShttHC5Gwt2FbKfzXwzX83vUw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:56"]},"IP":{"Case":"Some","Fields":["104.191.57.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=690"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["bEGwjnB2Yu60tDbwjLn5M31SCQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9bunH1Jq/+3P8zIzJQTqpDFOzLD1Xh3Z5x4KtoP07U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.54.80"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3647]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["bDogiARF2MYhTQY/e+PV9cRMHvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nY4Ad+vATZHIMdlNhrLx/bF4PKBAlyaa7T5xNbHmPRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:07"]},"IP":{"Case":"Some","Fields":["45.129.181.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gensokyo"]},"Identity":{"Case":"Some","Fields":["bDVciWcLtzySpg/rEKbQS85y478"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1gZg/FUNHaW+DYgKX71ozo/7skBSKsuJGlWCgkKX0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:25"]},"IP":{"Case":"Some","Fields":["118.27.6.60"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8500:1801:403:118:27:6:60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["czechmate"]},"Identity":{"Case":"Some","Fields":["bDM7W9uj3+enguQMuXDCcav+0Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xaYPhce0TWxEJ7gn5OG1/lMBL8Xt/SOze0tqQyzeslc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:41"]},"IP":{"Case":"Some","Fields":["85.17.127.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schneewittchen"]},"Identity":{"Case":"Some","Fields":["bCgtNcZ0oDa3m18w6Q0Zs2PT2rI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8QuvSs3j3gwoLFTe4vujpeg2GS7vnTrrFrvUOFQcDNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:53:47"]},"IP":{"Case":"Some","Fields":["37.252.191.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:10:41::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigOnion"]},"Identity":{"Case":"Some","Fields":["bBsojYc8daaW63Dp/3E7eG030ZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CdukHPbW0x97IXUuz1J00QY7NS3GTh8OBYGT8O4vXAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:46"]},"IP":{"Case":"Some","Fields":["188.68.38.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:aeb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RespectHazelnut"]},"Identity":{"Case":"Some","Fields":["bBinbgX0SFtZ1ToEeGOvgWJUuWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nmlK4fKJpQOWg1xyGuRh8Dla3ivkTlcrTyF2FJXUpF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:29"]},"IP":{"Case":"Some","Fields":["75.164.222.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute11"]},"Identity":{"Case":"Some","Fields":["bBQ3IP/4Rp72pcW0BmNmNAz2wNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iqi72kHDZLaVOeZJ9N5hPstbUPN5WITjek8Aub8otXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:16"]},"IP":{"Case":"Some","Fields":["162.247.74.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["bBFGHhiWdLhqde/ioeKyJxOkbow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DV+3mIF7Qzc4fwyPgj4prS/UgUb1oKjPmi+ys8y0QYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:07"]},"IP":{"Case":"Some","Fields":["195.90.201.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:39::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra4"]},"Identity":{"Case":"Some","Fields":["bA5OIjscfkNm/6ujO/AzY2qGeGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DgKPyHkCh/myOfhakABxxitNxksHL7Br4En5jXvsPq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:16"]},"IP":{"Case":"Some","Fields":["213.164.204.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeProgramThink"]},"Identity":{"Case":"Some","Fields":["a/rmIrVcg702gC0YzE7x5h6BNDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WLFe3e5vHnxTD7b7LtMZNQPqeWcNLpM1fJrmADMt7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:56"]},"IP":{"Case":"Some","Fields":["209.141.61.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop5"]},"Identity":{"Case":"Some","Fields":["a/OofCG+7l6q+H3LNRGqOm9eMjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXgUn9Xev7Zlz5ZxH8yO0hShupp4BZXCHFEDmU/y4BE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:09"]},"IP":{"Case":"Some","Fields":["212.227.214.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tormaumauhosting"]},"Identity":{"Case":"Some","Fields":["a+WqNKXDkXJGd6P9wqp3s3aPbiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jGxsuI5HN0qwSxBSDYQAHj6RgMW5VU+Pz22KucFhs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:19"]},"IP":{"Case":"Some","Fields":["51.159.184.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:4137::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SteinchesTORGateway"]},"Identity":{"Case":"Some","Fields":["a9OhawoM/mST+ce0Ioz7GSRo84o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZY7XP4dP4fJ5PVUChQeGXSJ+wuqOUOGRWL0iHrYwj3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:09"]},"IP":{"Case":"Some","Fields":["95.88.108.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:810c:a40:3997:a459:62ff:fe02:9c60]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["a8uWSrdOI/iYa9qQVpfTpr4Iryg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cg/xz/4+xizKyujeI8NgOq1e2qBPpWwEGP5Xie2+Ha8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:55"]},"IP":{"Case":"Some","Fields":["185.220.100.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:4::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ppebDebianRelay"]},"Identity":{"Case":"Some","Fields":["a8fUt4QtZUwqG6v6ygjSdVNHlOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WD7MhPy0UbIiVFIOY9kgK7hpSwHXKVEjpDKY7GqMuxQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:56"]},"IP":{"Case":"Some","Fields":["97.99.232.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP10"]},"Identity":{"Case":"Some","Fields":["a7C8NQitTGvfNoa1ZgOeTkNciiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xHDcPj6Tls/0vfG4CgPPsdzpPcWzhtVTYb3ZeLIYJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:24"]},"IP":{"Case":"Some","Fields":["15.235.29.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raspitor2"]},"Identity":{"Case":"Some","Fields":["a52WXGFJ0J35cMHQhqyPV1ZD9Yc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2u0Fm3lUMCUw09qnh6nTg436lTFE4H8NjfG4Obk3934"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:26"]},"IP":{"Case":"Some","Fields":["77.171.80.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:a461:156a:1:96e1:cccf:8a69:d088]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AMDmi3x1"]},"Identity":{"Case":"Some","Fields":["a52DhD29aG27gGaYm/zJAwP2ewU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vf7Cx4+NYfFh7NL+D1ReRrJol/kOBDntLlM2PuAD1cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:15"]},"IP":{"Case":"Some","Fields":["185.125.217.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:9300:d1::101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EnterAndBeFree"]},"Identity":{"Case":"Some","Fields":["a5Z5b6mEqtN4u9+WNhkTMPTpoyI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NgZ13jg8KJ1i/jJm5g0xMLH0XD3vCujWO8T3s8O0gYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:46"]},"IP":{"Case":"Some","Fields":["185.109.91.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slacknet"]},"Identity":{"Case":"Some","Fields":["a4jiD+6OtH8ajjAgfzJwBcYaAT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8en1mB7l0sBlBHuH0l2O3IH6KgNmoKaTnH76qAyZ5CA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:16"]},"IP":{"Case":"Some","Fields":["144.76.216.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:8261::b0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv15"]},"Identity":{"Case":"Some","Fields":["a3ZKns7qp3Mv63TIOhPwfc6eAWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDZGMfUtC+Ifnl2YFg+bdvZnQa6wcX2Ge0VBfOA9Ml8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:48"]},"IP":{"Case":"Some","Fields":["162.248.163.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber21"]},"Identity":{"Case":"Some","Fields":["a3YvmNFAk+w2/VBViX5JMx5XnW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xmjal1u/KcIxKmFfwHfq7bUYqvhtvlL4ylGHnibN/rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:48"]},"IP":{"Case":"Some","Fields":["185.220.101.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::11]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["back2bsd"]},"Identity":{"Case":"Some","Fields":["a3KEekrKmQbu1GAsLjifK6t/3eI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TBQkA8IW7N3BWj5nxxH9ND+xLi7P/p8Yuiuij1EN0Wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:45"]},"IP":{"Case":"Some","Fields":["213.232.235.83"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wts"]},"Identity":{"Case":"Some","Fields":["a24QWSW5Fkd0lGjiPn7hUAggHMI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b1LCSCdrGULIhvFvyqDBZZ2F1SodEE1cvxRzWLlTTj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:27"]},"IP":{"Case":"Some","Fields":["5.100.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip6a"]},"Identity":{"Case":"Some","Fields":["a2Hv467eszUf08kQRD2VVWMW4Bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gnx59y5VLoAwqV6SERZ31A5ICslOC7fGIPNm9EvIb+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:13"]},"IP":{"Case":"Some","Fields":["185.220.102.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::253]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1167"]},"Identity":{"Case":"Some","Fields":["a2EnEoFK7S8cMH3Q6H0sz1w95NQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ePA0nDG9SJX8XIlb86MO1x6Q2JpQN+DIL4fh5EYSkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:23"]},"IP":{"Case":"Some","Fields":["185.220.101.167"]},"OnionRouterPort":{"Case":"Some","Fields":[11167]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::167]:11167"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber14"]},"Identity":{"Case":"Some","Fields":["a168eFcuO12xmxOazh17/KLreG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+c9wOuwhe0qYomKBPy3syLiGmXHLH1RXwVp2EiFYU8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::7]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schattenbahnhof1"]},"Identity":{"Case":"Some","Fields":["a1Scu2FUI81X7O8O9KcgVP4IjCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyoUR0EsF9uGbYEcMWS+LpUM5UwPhCDJQelsF4Ao80s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:35"]},"IP":{"Case":"Some","Fields":["188.68.53.92"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e34b:7cf3:194b:368:22d]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["delfin"]},"Identity":{"Case":"Some","Fields":["a0rLcxn6yylJ1OuB9zxN7NzS37U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fdl3KArqdmhkke8eX2Q4YiZQ83As5rYitYoahOgutz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:15"]},"IP":{"Case":"Some","Fields":["109.70.100.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH110"]},"Identity":{"Case":"Some","Fields":["a0bnhEMeMJq6EDiPKP50Jca4Kvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eSOf/VIKAbNHQcQszOlg/z/JejIhtYJm/T+iKwyOzSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:36"]},"IP":{"Case":"Some","Fields":["192.42.116.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:210]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4icebeer35"]},"Identity":{"Case":"Some","Fields":["a0T15iVbNzExIzd4I3ndCC//4kc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CjSg5Cdt0EFhaBuTsGyf4BiT/bY97tiHQL+zCejVPQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:23"]},"IP":{"Case":"Some","Fields":["173.208.190.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8192]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tr4nquil1ty"]},"Identity":{"Case":"Some","Fields":["az4m51nZaPoZkKOQilqMF9G9dIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUsbqaLsAuRexdUNs9ky1eCAT8AtAKwDSLworizsyf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:06:27"]},"IP":{"Case":"Some","Fields":["5.252.23.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FalseSolomonsSeal"]},"Identity":{"Case":"Some","Fields":["azCcaawsYuWYAamhlnILXtTBgrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yob23vVpypT8h0tolfNwJiO+QflWwg0qhRGCY3G7rdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:30"]},"IP":{"Case":"Some","Fields":["51.81.236.225"]},"OnionRouterPort":{"Case":"Some","Fields":[56392]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ayzzHH+TUiS8IoXR+Kk6IIxxnEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3pMmpkpdnchnDdUOdTO16fPPOX7eIAR6Q9HtRh4WDWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:24"]},"IP":{"Case":"Some","Fields":["89.39.105.228"]},"OnionRouterPort":{"Case":"Some","Fields":[53114]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RndSmallrNode"]},"Identity":{"Case":"Some","Fields":["aysBDJ1fn7g/0np731EVyi8QcBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S56b8hn6ZvkI2gx2SXs/DD+YA9n6iXKuRLSe5EDMLPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:15"]},"IP":{"Case":"Some","Fields":["84.42.171.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParckwartAykut"]},"Identity":{"Case":"Some","Fields":["axhd7rJJ5Lphguygd1MMRemKbF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1uG2NBWJxy7K+YrSUe2SFJQ1/2nOj2gfx6TfSpLl6IU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:41"]},"IP":{"Case":"Some","Fields":["79.251.249.46"]},"OnionRouterPort":{"Case":"Some","Fields":[24107]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whatarewedoing"]},"Identity":{"Case":"Some","Fields":["awKPWKU2akU0J/+z5pPkcOZDG8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SPscJk9ahtrG+tmkXqAatld7S4q0wyQpfqkdbTBs204"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:31"]},"IP":{"Case":"Some","Fields":["172.107.238.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ACABenterprises"]},"Identity":{"Case":"Some","Fields":["atsGPcMTszDSK61hxfo8A3xqhbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KxZCqGt+c701dPR4JPPN9kMsx0hGs10wbKtuRvtXfZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:55"]},"IP":{"Case":"Some","Fields":["50.197.11.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrphanOrOften"]},"Identity":{"Case":"Some","Fields":["atPqVbh8gJcfNT66cQ9lUCAqk1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bnz3ekV+1IVT4H8lsFTkHeEjpLcPC0qiJSReAdmAHdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:09"]},"IP":{"Case":"Some","Fields":["71.19.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:1:1008:bdcf:70a4:ad52:f4e8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cg7dXjHfQs4"]},"Identity":{"Case":"Some","Fields":["as1YTy+qddlezPVMpQRCK654pUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yv8SRV3X0qW/BPL9mrc0lWQOiDufwkAvo+5EP2P7p10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:43"]},"IP":{"Case":"Some","Fields":["91.170.133.183"]},"OnionRouterPort":{"Case":"Some","Fields":[39138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb08:8a71:f802:1e4d:8817:f93c:9b26]:46101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["asrsz1eMROqhYFnD5sIGz6aTPTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvKvVltnxufmW6C0cf50z6hzsyWTLbb4aK85OpI/TSg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:54"]},"IP":{"Case":"Some","Fields":["213.32.104.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OgresHaveLayers"]},"Identity":{"Case":"Some","Fields":["ar/JBjGozaDC1D0maHjb+dxbpIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KvHNIL5fVYjqXhScZ1edOrZzctREQOs/ybbutMvBv3s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:19"]},"IP":{"Case":"Some","Fields":["104.192.3.74"]},"OnionRouterPort":{"Case":"Some","Fields":[41040]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeryKawaiiRelay2"]},"Identity":{"Case":"Some","Fields":["aqnJ3XNAjdaOWjten9G1PCwZkGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A1xCQlkYMrQ3Ia2uID172NFfkZ5VG99v4QSSpllJ3n4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:07"]},"IP":{"Case":"Some","Fields":["132.226.207.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8001:af00:51de:63da:55f0:e2cc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tortisserie"]},"Identity":{"Case":"Some","Fields":["aoTB20xQk0pX4T/H+T6lIXug2rY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pzoFe/wHkUKWJqoNah3Y9hyD7zPKUvVMPD/iy90lOJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:08"]},"IP":{"Case":"Some","Fields":["176.9.57.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortedabo"]},"Identity":{"Case":"Some","Fields":["aoQEEY3qKsh/MyZBmiG9413EP8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kMNwMPjcXak9uUiWg+TzJDhyIvFt1OXe+dLRgzT1xHY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:39"]},"IP":{"Case":"Some","Fields":["51.195.29.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMachine"]},"Identity":{"Case":"Some","Fields":["anVR7uGPeKmBMJboK/hPdA0yuRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fGzGJjNL50fAMxFyFJ1dEQ4WYi70jSqjT20ncs93na4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:31"]},"IP":{"Case":"Some","Fields":["95.217.16.212"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:609a::1]:587"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frogger"]},"Identity":{"Case":"Some","Fields":["am9t2gwfB/7Doh5EAe4jUzbsbtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aRDgoTOSyX7IbVu/k5y7YzxYu2Z/OdHaAWU64mR0EV4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:33:04"]},"IP":{"Case":"Some","Fields":["198.24.168.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["amo0tV3xsKHZc3ZyHnZpomrNRHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w7mbSCJCszZWk82kB6Kqsdk33lzK1eNfgh3VCzfuWtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:45"]},"IP":{"Case":"Some","Fields":["91.132.144.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:3:e842:2ff:feb9:c49c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snub"]},"Identity":{"Case":"Some","Fields":["altlC4MPQIKG/4cHGNPQC1aLcEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3VFE0lwgyY47pqeUNNuuEkjVzahUflfNON1EaYoK9UI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:49"]},"IP":{"Case":"Some","Fields":["205.201.63.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2602:fce8:1::74:6f:72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nnvr1"]},"Identity":{"Case":"Some","Fields":["akZonG52eGif/WUGyzm5ew9Eh6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OqpaKlVT2tlQCj+oAdP/IeDo4582eGLA7vbSKQ8tz68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:59"]},"IP":{"Case":"Some","Fields":["89.39.149.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ce0:61::4fb:0:2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maxomeister"]},"Identity":{"Case":"Some","Fields":["akEqCe79GRreTuSvC5hhHhChVAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OuI8YPujS7VrTVtLP49IGeUEQw8Cf+mQrXfck3pSlTs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:42"]},"IP":{"Case":"Some","Fields":["193.218.118.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::160]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["magritte"]},"Identity":{"Case":"Some","Fields":["ajZYcHWKHj56nuDoK8wNYiap6qo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pQl5toACHNrvjM44Yui0GTAPrdiGlVqwooARHYG20yM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:42"]},"IP":{"Case":"Some","Fields":["37.221.195.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:8:503:48d:bff:fe2a:1010]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ajL3S4UdKD2ps9J+qzDGMsVThdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ug5FxTBZLtllerEcEvkEpgBpJZcPOPgYa+ZO8zUD5gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:09"]},"IP":{"Case":"Some","Fields":["188.166.91.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangstatestOn175"]},"Identity":{"Case":"Some","Fields":["ai8MBVoc3nd0G6fZPY+uhWyG9Uw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GeJ1zk/GS7iE0utmyYbEah5iMCSvLp7TGs8Ot1pyrqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:45"]},"IP":{"Case":"Some","Fields":["31.214.144.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:6d::175]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurodump"]},"Identity":{"Case":"Some","Fields":["aiZ22sr9vQDFuUvTQ2kJV6Ert1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["neg92ALjaFrmZqKiU73zs9KyYhI9/Vacvcei2ZlNHKw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:42"]},"IP":{"Case":"Some","Fields":["116.203.93.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:86ca::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infernx"]},"Identity":{"Case":"Some","Fields":["ah8EL2HkAbwePybt5yKr/mf+WQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5XTkQNZO2Y9Vr2Ihtvb+ttb6lWNvMJ4iWb6RDJlwnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:29"]},"IP":{"Case":"Some","Fields":["24.96.60.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["minty004"]},"Identity":{"Case":"Some","Fields":["ahr1xVmFoy5ERi0/XP6xcBQY2dw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bkxdxweif7LYyNbyi8efS4vn6Gv3exdrEYaO8x61U6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:49"]},"IP":{"Case":"Some","Fields":["91.250.81.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:488:67:1000:5bfa:5134:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ready1"]},"Identity":{"Case":"Some","Fields":["ag8ajc3BXF778wORFXigCaNtEe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oNcQOe0x8z2sJCepDqPRhBLvGOM6FLQHfPjIXO48TsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:24"]},"IP":{"Case":"Some","Fields":["174.128.250.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber63"]},"Identity":{"Case":"Some","Fields":["agEVDqsEAH4uCNnGA7FGcZOAWwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTSYxPOhjfQYuLv85D6U6//4MvkjrTZqbCwwirAxuMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:56"]},"IP":{"Case":"Some","Fields":["185.220.101.0"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4t01"]},"Identity":{"Case":"Some","Fields":["afi9QZk0FoUp58oVg5w4uRE+fbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pgy+jT1P3+Rx1EsVH8dRQoIDTofTqIlZbSMcBhmFdwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:38"]},"IP":{"Case":"Some","Fields":["178.63.41.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv22"]},"Identity":{"Case":"Some","Fields":["afg6FzcYRqC0unobjL0OHJueotQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+3+x6b2+dHC9h7AigeZhEkTr5bddN7ERkiWlu8fhCuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:24"]},"IP":{"Case":"Some","Fields":["45.62.224.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["afbH7TuA4Rcws8JZjjWUjoxiEns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["obB4RZaERz4EvSeHHu0L0cN2Du4yn42SsD4l4f/Hnv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:38"]},"IP":{"Case":"Some","Fields":["62.182.84.46"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Orodruin"]},"Identity":{"Case":"Some","Fields":["adnl8g/jsMhyk2veQdE2oPJNaZU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["adkLkqIdhZg9wCMWoXIi2p7Tu+nBCIKkFFCnShAgWBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:06"]},"IP":{"Case":"Some","Fields":["135.125.25.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:d1bf:b0fe:3472:9c9:60dc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay22at5443"]},"Identity":{"Case":"Some","Fields":["adf++bACY5PC/XPol8ccECq6ylw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LRrW2vsw1uCYC6ex3PkmN0jPUl/oGk3tU1145jDaZ2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:04"]},"IP":{"Case":"Some","Fields":["140.78.100.22"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlvnCoAlpha"]},"Identity":{"Case":"Some","Fields":["acwlc19+ndPYicEb/z9pUBpSp34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p79vzGCGsQRSjLgdp7HDZhQv99eJMc35+o8ha+MoAFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:39:52"]},"IP":{"Case":"Some","Fields":["172.107.176.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["acm/oMIor6BUip/5t8jCKbaqn6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/3yAe0hTTZvXl2iUUjKNArrS+6/X+l6KYDO69yLnif0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:20"]},"IP":{"Case":"Some","Fields":["51.159.158.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fortherepublic"]},"Identity":{"Case":"Some","Fields":["ackSU8+rViOebD71WBYJxvH/i5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HZsB1LQE+jJ3oETpXLmTaRA3TqtAa6aQHM26OJWCd40"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:18"]},"IP":{"Case":"Some","Fields":["148.251.191.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse02"]},"Identity":{"Case":"Some","Fields":["abU6WuUCXaiUf3wy9pypA3XtKk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdOZjOyj56exl1VhVDiWH1bur54Hu/sPA8/GzaaABNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:35"]},"IP":{"Case":"Some","Fields":["185.225.68.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etai7ieHaigh5Hug"]},"Identity":{"Case":"Some","Fields":["aabfaBtkmo5KvXr56IP2GEJvLCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJjNPXGY45xnOmx3CH5WJWyoTMHU3nd7CoOZctWnE0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:44:19"]},"IP":{"Case":"Some","Fields":["83.250.228.119"]},"OnionRouterPort":{"Case":"Some","Fields":[5574]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakeSARGE"]},"Identity":{"Case":"Some","Fields":["aZcBPLd7b1MFQDMmJsI6z+UsUJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VEqDiE4/xyzVSiCVv4Qekhfv+w1oeI+8euSd+bgkoMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:36"]},"IP":{"Case":"Some","Fields":["5.199.162.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sovereign1"]},"Identity":{"Case":"Some","Fields":["aZZT5d8JS1Z3UnX4pPS/p8W9Xi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kndb+FzVXIfTTA6C2aqgCSV5aepaHD9wHJzySJGVMH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:07"]},"IP":{"Case":"Some","Fields":["178.170.10.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::506]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greenlantern"]},"Identity":{"Case":"Some","Fields":["aYuHCM9OoC0nygknTzNRtPZqWDQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYNHGufEQBNM7PVmvkW5gdBDAsmA+RFgw8A6kt/Hn00"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:27:42"]},"IP":{"Case":"Some","Fields":["179.43.158.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor2lhvmct"]},"Identity":{"Case":"Some","Fields":["aYLXidOHXCFDPW7hCDisX9xrqCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gnG3CxJBSnkoc/Q1s1EARYd8e89Q35Pb9gR+znzzqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:14"]},"IP":{"Case":"Some","Fields":["78.31.67.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc12"]},"Identity":{"Case":"Some","Fields":["aYDG7aQduHLMrL3bIt+sxmQnRuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r5K6k5uWALUUPeuEx19TWg2Fa/RFIzYp5UkGkIssFjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:37"]},"IP":{"Case":"Some","Fields":["185.100.87.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::2]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgUK"]},"Identity":{"Case":"Some","Fields":["aXTR1l5CF283nlQ65XiN6FWZ40s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BWdT8z2XkOR+8eAn10fG9L2wjcyBSzC/dLd+ZHfRxr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:50"]},"IP":{"Case":"Some","Fields":["77.68.29.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["aVSNT1EjqzmAjMnjtOXBw2M1M1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWGN42ks39MfCRMEcyPCrsh/HcjXUge9TorPfY5y/QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:09"]},"IP":{"Case":"Some","Fields":["163.172.39.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tron"]},"Identity":{"Case":"Some","Fields":["aVKmx6E3u63MtdxGmwpNBkcxLlM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WabPDRRRhzrLmR9iEU3oW+WDqrLb1knSRDXPtcq3qWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:23"]},"IP":{"Case":"Some","Fields":["192.9.249.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c001:207e:2b71:7031:c7c7:abec]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["octavsly"]},"Identity":{"Case":"Some","Fields":["aUlwNmUxiVMSB3RrPQ5Oy1aIjzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VYt70xBYycs3p5Y5+4tlxYjAauGOt/Fw3s6x1SHgkN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:53:18"]},"IP":{"Case":"Some","Fields":["82.168.32.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor"]},"Identity":{"Case":"Some","Fields":["aUAkfgTIOdJoVD5/YlZqkeQFZ+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e6x9IhCQwoZxG7LAIOoHn+L7+eYJwdsRMQzZ6Vj8JUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:06"]},"IP":{"Case":"Some","Fields":["136.243.229.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:ff99:0:c:1337:ffff]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["m1an"]},"Identity":{"Case":"Some","Fields":["aRbXEyuwN2WAkUeGfjMDU41Ks9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LFJkCb4xozW9a4e9cVlPz/5WeGPvKMuzrdNRF3BzxEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:34"]},"IP":{"Case":"Some","Fields":["178.254.38.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:382::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["URKIGOM"]},"Identity":{"Case":"Some","Fields":["aRIiltN/x9M4dT4+wZvGZqEFZqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlN50kdh4ukgPORPKtdxuuzgqiqUSI37AixWwZ8zocs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:25"]},"IP":{"Case":"Some","Fields":["82.165.67.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:80b0::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["randomretorng"]},"Identity":{"Case":"Some","Fields":["aQ2kLJxHV3o4M5TOSvYb5iiCTiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WL5u1on2a/qbJVmkv53+KnO75um1iWNFWNrhz6Kjzjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:35"]},"IP":{"Case":"Some","Fields":["37.187.138.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["aQQtazAfCAEF0RR4pbyEjrC11ds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HUYXZPM572GY26sqcSii9SCDxRoRSx4Sg6uGN2V5ZH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:03"]},"IP":{"Case":"Some","Fields":["185.244.195.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:747:4804:22ff:fe7a:e606]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor02"]},"Identity":{"Case":"Some","Fields":["aQQtDcM72BC9CK2tvH6Vo8q672Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AlB/P1jUtWaro2fRV/q02p+M205OCr0N/RTvf09qOpE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:50"]},"IP":{"Case":"Some","Fields":["192.210.233.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etam"]},"Identity":{"Case":"Some","Fields":["aP+l42uVJXb5NODAlC8+Z7L9IRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HH6gYL9c5Swp69POSMWPBQmPjG9lBm+7npSgPvsyjZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:18"]},"IP":{"Case":"Some","Fields":["80.72.43.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c90::25:2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORminion"]},"Identity":{"Case":"Some","Fields":["aPvnKw1BHDFOx/Jyy1s/FMJCkkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M9JeNzH6K6s+wY115KK/OOiAAZLxnnmeOHjzanv7cCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:01"]},"IP":{"Case":"Some","Fields":["195.154.255.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Caribbean123321"]},"Identity":{"Case":"Some","Fields":["aPmqLZvTCT38MPwtyVbJiUeEo/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BnisfzM01Kw0AfDilovjcTgmlhKw1mRoQUxMvpsLbYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:42"]},"IP":{"Case":"Some","Fields":["45.79.158.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:93ff:feeb:5a7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pichincha"]},"Identity":{"Case":"Some","Fields":["aPF1zKvnJ6otIwm82HiUmc7jbtc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7aldw47rMCx834bwYfGEoiaBfkkxUNwml4WmRil7vWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:53"]},"IP":{"Case":"Some","Fields":["163.172.139.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip2a"]},"Identity":{"Case":"Some","Fields":["aOxlfcilh7ONXXdj1ccuk8LNRWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DjjtMYTjsAOTU/J60Fv2NlpMAMISBm2Z87GDaYIMsLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:15"]},"IP":{"Case":"Some","Fields":["185.220.102.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::249]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sFtor4"]},"Identity":{"Case":"Some","Fields":["aNKr2TYjOlaeK0bWIogWFJoWtPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yyYp3A4haKibKWtQ5wuJdOZlCiCEJ3eU3stgjG6vTN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:40"]},"IP":{"Case":"Some","Fields":["88.99.31.186"]},"OnionRouterPort":{"Case":"Some","Fields":[34746]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["aMO1QOXRUUYaN8se2ShWPsO2zcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vypZHwE+v3kvicmerMpjABGT1Rnr9rxJUbM0OBKC/x8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:51"]},"IP":{"Case":"Some","Fields":["188.68.41.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vpskilobug"]},"Identity":{"Case":"Some","Fields":["aKnw3/x8j1ez3qOAHWzwAWUqgJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UOqeKt6zrRqA39j1mgWe+wivNtbVmpY7rFVY3YzeVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:57"]},"IP":{"Case":"Some","Fields":["213.164.206.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["aKVOGA93iv6Wx5BqUose/t/UKkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9gmSPz3QxvIsoy6re7IYpiGtEIAnETOgAC6cZn+A/LA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:27"]},"IP":{"Case":"Some","Fields":["179.43.159.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thedevilskey"]},"Identity":{"Case":"Some","Fields":["aIPHH6t1fmRz84JiSQrkNv/R6Og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ojjK7r30h1vclbVw59/gJSEVM889dsfcU18FXQ/urwU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:18"]},"IP":{"Case":"Some","Fields":["46.105.54.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CompassMetal"]},"Identity":{"Case":"Some","Fields":["aH0Dwtvf8KnJ6PZFFRg60iZr4Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsU6R/g5PUbE5lj3+sdFREeTB6XnHIYVIIar0C6ZFk8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:05"]},"IP":{"Case":"Some","Fields":["37.120.187.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:80e:4860:48ff:feee:9d88]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit9"]},"Identity":{"Case":"Some","Fields":["aHhUHiYTlG3OHkVDaRkCY9RzunM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdXBi2tzo3haWaHGELEFcmnP1m8G9ThAnt0BIkDMFIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:09"]},"IP":{"Case":"Some","Fields":["185.129.61.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kyu"]},"Identity":{"Case":"Some","Fields":["aG7sO1EFi4JDCTxN5HMZIyy/3MY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eAC8rai8EGPKbrP92E8++ds5ZzObmb4VXH568Ck2lrE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:00"]},"IP":{"Case":"Some","Fields":["188.240.210.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:c1:7::fc6:f87f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tortule"]},"Identity":{"Case":"Some","Fields":["aGxqdE3Z16DAfP05W0WnILfHR4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qx0Qf0RfjIw53NEuq0wgQIK5lVYxXw3WoVvWktgrpoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:57"]},"IP":{"Case":"Some","Fields":["109.130.20.208"]},"OnionRouterPort":{"Case":"Some","Fields":[60501]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Plutonium"]},"Identity":{"Case":"Some","Fields":["aFnXHj4TI/lZ+eBVnoOpCIxGJoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k4RvSFiC/rKKAein9JDTcBhEjxRGaYNpod7xuOXGUTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:38"]},"IP":{"Case":"Some","Fields":["23.137.249.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:1fa2:23:137:249:143]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nevrlands0nWgcTYg"]},"Identity":{"Case":"Some","Fields":["aFa8nneq4OcsTg+PxMjhutcAf5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r1N6TWhmmATUrd7DEM8eMs9GrMxSWjsvUcnE6x8Lj58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:57"]},"IP":{"Case":"Some","Fields":["89.58.27.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0147"]},"Identity":{"Case":"Some","Fields":["aFS+H/Z2BuKLalAMJb48/OT1PdA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zasb+FCbMljM1uvP4hQTCJRbJrk+XYBDycPmH/48rYc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:11"]},"IP":{"Case":"Some","Fields":["185.220.101.147"]},"OnionRouterPort":{"Case":"Some","Fields":[10147]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::147]:10147"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nixytor"]},"Identity":{"Case":"Some","Fields":["aDpC79TWULg5iECjoZyjnNlhx+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OzZ4qMJ1uLHQhCyjGacmA31M236a59ArOI4KPglgWtQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:28"]},"IP":{"Case":"Some","Fields":["45.79.144.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe24:47be]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["CytraNet"]},"Identity":{"Case":"Some","Fields":["aCx4MVdXXWDWV/i2BSvMjnhUGCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["08BHyjoklf5V3oYL6yPWcXOEdgLQjYwdCnzLSWGHpPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:26:37"]},"IP":{"Case":"Some","Fields":["162.251.237.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["aCfidzuOtLeGC3d1qQup1Y1Ho/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FqGDyl2hXAP2yq/kzgdCSo26BCUmL1lG+UG3zgV93Bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:44:24"]},"IP":{"Case":"Some","Fields":["23.128.248.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer23"]},"Identity":{"Case":"Some","Fields":["aCfB6bsFCVeLUocZkLPQZ1hq7/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x19Q6bvahXAVwpS2lscusz07SOGP5nJODoMG9R0iFYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:03"]},"IP":{"Case":"Some","Fields":["185.243.218.46"]},"OnionRouterPort":{"Case":"Some","Fields":[8154]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:46]:8154"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a9"]},"Identity":{"Case":"Some","Fields":["aA8hKt4jMRxljMVg2vgNtC/rhd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YkxXNZ+gsxTaa/k2MSY7O3CrAjprTmycp/z2kKBgQIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:00"]},"IP":{"Case":"Some","Fields":["5.9.12.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:160:82d4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi"]},"Identity":{"Case":"Some","Fields":["aAW9inFLpbW2yEMkfgDtjtV/YfY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PbEuFxxxmJP9cIOCNkWW9Vi5FV7yp6zuSDgYkLpcUYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:19:58"]},"IP":{"Case":"Some","Fields":["46.28.107.138"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:0]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4punk7e2"]},"Identity":{"Case":"Some","Fields":["aAV/0wKw+DwO0AttcP2ta+7yAFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjDTkop6xcBJ624o6q7Fbu06FEwQfFZ9hsyC0L6Okpc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:01"]},"IP":{"Case":"Some","Fields":["193.31.24.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["getrekt2"]},"Identity":{"Case":"Some","Fields":["aATUElW2X3DNN9/07/Obrm6u6sg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+I9YDNMM0NpVD/Z3rP42AA+4GVb1xpMP193fZqZFiiA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:02:38"]},"IP":{"Case":"Some","Fields":["37.120.137.217"]},"OnionRouterPort":{"Case":"Some","Fields":[25263]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eatMyCannoli"]},"Identity":{"Case":"Some","Fields":["aAKx96rcFp3YZ1Be934QOqKprvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yhxUk7G3nMWjxnCVlmjAxfIU1TS/r/AjdQ96dIzkV1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:04"]},"IP":{"Case":"Some","Fields":["5.13.201.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG2"]},"Identity":{"Case":"Some","Fields":["aAFqmsR3rgObjuB8Nsq8BEASamc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ovF8fYyEnyWwFJrRGbbErJtkRUpmyyhGwArk1nKtYGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:51"]},"IP":{"Case":"Some","Fields":["193.189.100.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::195]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hubble"]},"Identity":{"Case":"Some","Fields":["Z/WsNduiDSKgF4v7b0rAdsOxaCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AOLr/2dYPdK7TJaReF4z4EDSuJ3ykg0ybxnBbclCMbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:48"]},"IP":{"Case":"Some","Fields":["72.89.32.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokinet2"]},"Identity":{"Case":"Some","Fields":["Z95ychWc/mKM3xfSpxmm45W6pMg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gkCSwfhHajCpYtfBNnpcytLBWYwl7/n2K+YVGFGT56E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:04"]},"IP":{"Case":"Some","Fields":["185.246.188.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:3:19::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlockHouse4"]},"Identity":{"Case":"Some","Fields":["Z9HYhb+IuvXcbTHO6IGOxfvjs9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aQOp+NUmlSs31xmveL+tSkmd2yjM5B0pxedW4vQzkT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:31"]},"IP":{"Case":"Some","Fields":["130.61.98.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["khao"]},"Identity":{"Case":"Some","Fields":["Z833pNBumOVarllbvr845kxMy/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6ODpSl5DUN42wPWUgG75IVZKAGFxolKVyL3+J3czqNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:16"]},"IP":{"Case":"Some","Fields":["87.236.194.23"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rotkraut"]},"Identity":{"Case":"Some","Fields":["Z7dR/xVudva3Fb26LyPPLTvkPPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["py2mcnrPUH3UmMFeZhqj2Qe213d1MoGTOYZZ3VrLO+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:03:30"]},"IP":{"Case":"Some","Fields":["109.70.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::7]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckfbi"]},"Identity":{"Case":"Some","Fields":["Z6VO232t27weigfx74I2S9qolrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jk8rhTSvpTzZch3KkJt+zQKr50/F/OA7j80oFggB1Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:18"]},"IP":{"Case":"Some","Fields":["148.251.51.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:1139::2]:9993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["420690RelayOne"]},"Identity":{"Case":"Some","Fields":["Z6BQsoVQOvE9Oc+1Bqkrh+h5qlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mrCk8M2r2qbazFvBlh7Q+o0EkRabrNyl20ut/y74cZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:42"]},"IP":{"Case":"Some","Fields":["208.87.135.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:10:0:1:43:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonfrazUrbluu"]},"Identity":{"Case":"Some","Fields":["Z5blMWBxTZCLObywBYz0iP+UAzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v2DpJwKA3PrrcQBwI4AzDHG0RsxXCozEkySegwNoknY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:39"]},"IP":{"Case":"Some","Fields":["185.220.100.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:6::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyPiRelay"]},"Identity":{"Case":"Some","Fields":["Z4xGdle8/u1MPVsSgzJmwXyx0ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UE5YgcQOO85FU+bW7NpCxtOmEP0tYaz3PlNbj+7N8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:17"]},"IP":{"Case":"Some","Fields":["85.228.41.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["abnormalbonus"]},"Identity":{"Case":"Some","Fields":["Z3NHRB/dKuoivTZKcXTSd+kpslU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FYIzoaVr57QSI8BmYBolptZZR/3Lq1YNr9eLIoOrGhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:35"]},"IP":{"Case":"Some","Fields":["194.180.191.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mullbinde5"]},"Identity":{"Case":"Some","Fields":["Z1z6w4vjyaJsOi3Xy8DmFvaGJMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1O1JNE233TqnOf8pTHBQW/kEv3jdTK9chc9cX0BRZVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:15"]},"IP":{"Case":"Some","Fields":["136.243.60.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:212:1b8b:3::8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torshark"]},"Identity":{"Case":"Some","Fields":["Z1ScdD63qdBqdeN764JBfrsi6X8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HAnnDeUIc9nQGsg2o5LqPZgr8tL8bQejE78IiT+buNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:27"]},"IP":{"Case":"Some","Fields":["195.154.252.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomHub51"]},"Identity":{"Case":"Some","Fields":["Z1GsD2/BHbX6jLL2DPUU9H6SlwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCvahebX2/7jB/HUNSQoYyhuxzvN684+Bez6D938NrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:46:34"]},"IP":{"Case":"Some","Fields":["95.217.14.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:3b44::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mainframe"]},"Identity":{"Case":"Some","Fields":["Z1EOU0GRyRFfCAxFZbLx80jN+ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SYZfRx/yiw2ebVFlaeKx88W/yBG69u23GOQZd0nbyOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:53"]},"IP":{"Case":"Some","Fields":["79.201.240.5"]},"OnionRouterPort":{"Case":"Some","Fields":[24192]},"DirectoryPort":{"Case":"Some","Fields":[22154]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Z09m19jG8N+Zl7PJQjqhU8mI/nc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEIEZdmY9zAeHrYuE0ZZMG03G0h/MdEYCls4xCTPYkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:46"]},"IP":{"Case":"Some","Fields":["185.220.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::200]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex91"]},"Identity":{"Case":"Some","Fields":["Z0i6UxCXqTB3b5DiC277o1GaI8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yzxVNJlNqEONIIrJf8heTipgHEGsW0dyWme0aXSmcZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:04"]},"IP":{"Case":"Some","Fields":["199.249.230.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::180]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elc4"]},"Identity":{"Case":"Some","Fields":["Z0KzTnNcDd1nuQkg7yiBlzi2PsA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+32In4WjIsPNNP0edTidnPUVHihUK4GoaLMFDm+wDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:30"]},"IP":{"Case":"Some","Fields":["176.31.35.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:522c:24d9:6a97:78db:2bcb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute20"]},"Identity":{"Case":"Some","Fields":["ZzwIGpUC1dOrk5X/QlcnS+THqKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5R0eh84EDHUnbDO4cjnMc64xWlEGiWHVmWni651kZHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:23"]},"IP":{"Case":"Some","Fields":["185.220.103.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Zzq1sQHHrrQE8Q6d9ig8UN5Owvw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cBNJtUtPVenWcSYGEHlBVGiUr3L7GdlwvvLPWhVsfW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:58"]},"IP":{"Case":"Some","Fields":["46.227.68.55"]},"OnionRouterPort":{"Case":"Some","Fields":[17497]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recklessbolter"]},"Identity":{"Case":"Some","Fields":["ZypWpYPGWDcuY6zrQ+f3kcKBlUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yv+3A11/pfQBm+6u1qpK4QcQBLnp9gPGWHj0aK0sUTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:57"]},"IP":{"Case":"Some","Fields":["80.253.94.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BKDRwUuF"]},"Identity":{"Case":"Some","Fields":["ZyV8otPvcnroM5phhLHVaz/bL7M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQ3m7TOJ83rRNdsX0nW3KkOGK6Pka3l24DPfDqs9sck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:03"]},"IP":{"Case":"Some","Fields":["82.64.162.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CaptainMarvel"]},"Identity":{"Case":"Some","Fields":["Zxpoq62hQC+wBnYFX0jqEjubBgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nL0DmbQldrk3AgbV5c+TstGECQGhP9GHDtWqzaiOx7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:44"]},"IP":{"Case":"Some","Fields":["212.162.9.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node3"]},"Identity":{"Case":"Some","Fields":["Zwx1F/hSXox4edbdd3pbZkdbgEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["revdlcSdQzNZSi9c5eoNwg2p/McPZ1wSRzzCTzd5/co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:22"]},"IP":{"Case":"Some","Fields":["141.147.62.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:7b4e:e634:7e58:3aaa]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FTMNET"]},"Identity":{"Case":"Some","Fields":["Zvn9uINrvDtENqCNVoMn0b4JINo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["09L8/1U4XtuYMXu4H8jAYGjWrk5aBqEg7myANhjZ9fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:35"]},"IP":{"Case":"Some","Fields":["94.238.241.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH116"]},"Identity":{"Case":"Some","Fields":["ZvhaY3+yn6kJ8HfH8QpoVAI/iEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pXKcMLSinWqyLN96oZlIr0/ANEO8+/xxMXjqtBlEfew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:23"]},"IP":{"Case":"Some","Fields":["192.42.116.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:216]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jehovax"]},"Identity":{"Case":"Some","Fields":["ZvdB9TvlEkOEuneJUVa26ZdtP6Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4/ZPBScYYUUB9FgnQQLDuNzHM6557l96OHPhi9hXXz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:30"]},"IP":{"Case":"Some","Fields":["5.2.76.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt56166"]},"Identity":{"Case":"Some","Fields":["ZvRcnLkB67TPJDcKpWomJVB8yVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G9b5qoE33yR5Q3KeoL5YBrVnlPfB3NsDn06vT7UqRkg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:22"]},"IP":{"Case":"Some","Fields":["185.245.60.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex37"]},"Identity":{"Case":"Some","Fields":["ZuGejEdzCG9mmh4Go/jCO2wHkSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jcjh4STvjI69BvS2uLjmU09+2Z/Tgb0hunHpVoIewQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:58"]},"IP":{"Case":"Some","Fields":["199.249.230.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e656]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Seccom04"]},"Identity":{"Case":"Some","Fields":["Zt/FHnJOON3LOrZ930wLsPH0nAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Ki2MHufPOPbiQMOeW9Mi2t48thH3Zf3NGAn1ueF38Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:37"]},"IP":{"Case":"Some","Fields":["51.77.111.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:1000::db0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ZtxyZm57+OPn6z6YDU4mXFQ1r7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EU2LBRhgV/SBzZN9KvI/TO1XUHMGYL7wpuTsaGoAm2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:46"]},"IP":{"Case":"Some","Fields":["185.220.101.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::32]:10132"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EFlat"]},"Identity":{"Case":"Some","Fields":["ZtuDEYUFZT5xEMRSDfFDtbc2WK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gvv5ImGm/m/4US9y5MpQiYIUmQL7LgHoDnStKDYQlN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:06"]},"IP":{"Case":"Some","Fields":["51.195.166.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["globohomoEvader"]},"Identity":{"Case":"Some","Fields":["Zs74BYlZNqpVHgWpQjTLmlmYGvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IUAHZS437RL4t0Nl+tmpN+k/1hsZg04vAgY53mYUC8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:02"]},"IP":{"Case":"Some","Fields":["86.128.226.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:23c5:ed96:1501:6066:7572:d5f3:6c2d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kbtr7lv"]},"Identity":{"Case":"Some","Fields":["ZsEC+l3fSMnu6wSMFjCTO2bFDsw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vRK1U2gvzbwsGlhh29nYgNaaxgBnpF4VGK2KO6n3HzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:57"]},"IP":{"Case":"Some","Fields":["94.140.115.114"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hilda"]},"Identity":{"Case":"Some","Fields":["Zr05/oBa7UFK3kAMqthiycw6w04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DPK8HhOT6kNfEgkk2wbXC2iB+12b2Wfa76kXjuDj5qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:35"]},"IP":{"Case":"Some","Fields":["109.238.11.185"]},"OnionRouterPort":{"Case":"Some","Fields":[51101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f12:372::2]:51101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor4"]},"Identity":{"Case":"Some","Fields":["ZrvNDVj9uJGths4iomE6m+48onQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iSSBOJGuDWmfOf02wDmbqpJr8wvClAVs6TRhZKF3js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:06"]},"IP":{"Case":"Some","Fields":["51.15.113.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:935::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedcDc"]},"Identity":{"Case":"Some","Fields":["ZrrEiL7iBGX1aek0PUQcthldesI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xSIykaJWqva6gjOD6Ov62IVTkiGp/AHbTf8pBPKfMLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:03"]},"IP":{"Case":"Some","Fields":["23.154.177.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["daytoner"]},"Identity":{"Case":"Some","Fields":["ZrBtWb38kOvG7eecVYJ18s1HmbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9XJqLCCwPLKymUpvR/7QmlJBwVTAQ0KKdM1+mdjAwgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:56"]},"IP":{"Case":"Some","Fields":["212.74.233.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AxxoCentralRelay"]},"Identity":{"Case":"Some","Fields":["ZqtcDJYifhac9VdsAL8adHacP0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+FVsUoVkShXmjnpGcrBFJyqCrQXuAkrnESE0MhAtTJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:01"]},"IP":{"Case":"Some","Fields":["85.239.33.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5140::153]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HRMB"]},"Identity":{"Case":"Some","Fields":["ZqmKUkW2s/W0FA4E+usSCF/GpQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6484p5qmikAqspwGSLMPXBW2KqT6qXnHhbRUKBZr4MQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:56"]},"IP":{"Case":"Some","Fields":["94.130.239.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:13b:110d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionsalad808"]},"Identity":{"Case":"Some","Fields":["Zp+7+V0nPb02lrZjegbhK4sYQmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dWS+OvaYJ+ERIx5ggMAckRVYNR7M5yHes3hrS5iDT/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:59"]},"IP":{"Case":"Some","Fields":["5.147.111.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnMyMomma"]},"Identity":{"Case":"Some","Fields":["Zp84sFmCUOJeIhvD9meC6NXmaa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tiqqU3mqcj9Rb4gMBQ7wXVa3JQMTf0IQepSm+HLUa1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:44"]},"IP":{"Case":"Some","Fields":["45.139.122.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justanothertorrelay"]},"Identity":{"Case":"Some","Fields":["Zp5QNLbeLix8+8+erI2fWkd1eZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["52KLeNfpkUe8CIZTeovcCK/BKuOWCLE6BBjXv70vLO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:59"]},"IP":{"Case":"Some","Fields":["93.180.154.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:3::1d4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZpE5yMkAAtxaCyQftDKQxVKI64E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GJp0QXXfh2XMYL+YJXDDxTfp4X2SO+OO0Rc70zfy9DI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:55:39"]},"IP":{"Case":"Some","Fields":["150.43.61.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quiv"]},"Identity":{"Case":"Some","Fields":["ZpEC5vqOEWrAX+gjsGNLREmZROM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SCfvu6Qkfj4jYeOrlroWCSom1aGDSPzj0kHHTngvyMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:02:58"]},"IP":{"Case":"Some","Fields":["94.100.6.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["getrekt1"]},"Identity":{"Case":"Some","Fields":["Zl09NDizJqUZbK0xP5VKj+DmP+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fx8/of4+2ibhUbTOfXw1TL6YJH96+jQvrbRmjerdQDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:10"]},"IP":{"Case":"Some","Fields":["178.254.40.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tainisia"]},"Identity":{"Case":"Some","Fields":["Zi21Ulgca2yALxgvF+vUvMNZASE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LqGoH8sJ1Dww38/NFi3GsPin53uftubqRz/jOtTqCw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:12"]},"IP":{"Case":"Some","Fields":["130.193.15.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tacklinfuel"]},"Identity":{"Case":"Some","Fields":["ZidLtIOD+ElDAzmS4hgN1k4l9QQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m2lZvJUEv1SxsfnGLzHlbRckYVFTnODHxFHACAXnQig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:40:40"]},"IP":{"Case":"Some","Fields":["104.225.218.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ff16:1:0:1:1df:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber16"]},"Identity":{"Case":"Some","Fields":["ZiTm4MV6Y7aG1FFQeH3VbD2e6Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdPtVA8bFyOOub+13ISpSHd38RBgj9oz4nizgcGj6C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:26"]},"IP":{"Case":"Some","Fields":["185.220.101.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::8]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ExwMiaTigriMesaMou"]},"Identity":{"Case":"Some","Fields":["Zh4IU0+r2+CbpQX3pzhINxxu9zI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A1iJwu5Z1mLEsRawYRXbDQSTVfBbSYcZiqJDW1JH2Gg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:45:46"]},"IP":{"Case":"Some","Fields":["83.212.72.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:648:2ffe:501:cc00:10ff:fe8f:490]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["ZhDcGvf0YY9br7zcqHAncrJBG3c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eW9vvJvgADkTwP68Q33+US1bBIuzbLzVvSZyBBF4iUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:08"]},"IP":{"Case":"Some","Fields":["23.128.248.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::227]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stimorol"]},"Identity":{"Case":"Some","Fields":["ZgDFYOfip2Afb0sBmULJ5NR4cs4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlhWrpK4AxQ6TrWzdA60r2ZWsuIgXvC7aBuN/mPuuYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:59"]},"IP":{"Case":"Some","Fields":["185.236.203.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse03"]},"Identity":{"Case":"Some","Fields":["Zfhv2LksOsAYh9hrIXHmV9XBn3k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K+rwXWV+QdW2Q3UucyTeSVGhJTp3FzP/IWWL3F8Exe4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:46"]},"IP":{"Case":"Some","Fields":["90.146.176.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schnurpselpeter"]},"Identity":{"Case":"Some","Fields":["ZfOcoeTO9LtepdJvaHWZIFr2FQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aNMs4MCbu5ALvt1x0je7sk0ak0IsyBaIq28+B5fQ3rI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:16"]},"IP":{"Case":"Some","Fields":["87.106.229.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:61::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emankciN"]},"Identity":{"Case":"Some","Fields":["ZfJP6n5TFRvM3C+lRkUwBhhd0GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lZg0HM20SmBU9hHjDG9Tl+QF8aNvXI6uzNujgsTRric"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:57"]},"IP":{"Case":"Some","Fields":["37.75.112.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow006"]},"Identity":{"Case":"Some","Fields":["ZebrZ2YzMoreO9MWilkTTN3SHhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DD2VuuCj2yiu7uefmUEYHzXR6gXUqz0fUNM7p9kqNTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:59"]},"IP":{"Case":"Some","Fields":["185.195.71.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fangio"]},"Identity":{"Case":"Some","Fields":["ZeQPft0o4s8oaE4w4Lq3cGgZz8M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YqvZRbCmu221VC4JHU2dVcU1dilNk+B8mX+ZSyg9qJg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:32:43"]},"IP":{"Case":"Some","Fields":["179.43.169.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORRelayCAN"]},"Identity":{"Case":"Some","Fields":["Zda/sxl2LzSgFaXGieVuZUS8elU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le9rbGroI5J8uY76rBWqevDxN7hWTqHi8qWgQWb5um0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:10"]},"IP":{"Case":"Some","Fields":["192.222.169.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayTexas4Tor"]},"Identity":{"Case":"Some","Fields":["Zc1F8/q2zOjXGlqdLuAQpSs2kGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ooOmL9eqoLmtvsSZi1Itp8wofuCZbLYzALMjjP0BHKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:29"]},"IP":{"Case":"Some","Fields":["144.172.118.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:34f4::5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZbyluV02MXca81jMc5M/hbaN36Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EgYs9XUsu5FTPre/oKis2zyIOwVXPnPS3D3LRLHuYHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:14"]},"IP":{"Case":"Some","Fields":["45.79.197.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["ZbqUOZLVwOUxHqoWoW3ipV8WS7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lrf8ClbOKvmjvHslcyNHSXxiFqDmvStmBdGbTVpeYi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:24"]},"IP":{"Case":"Some","Fields":["108.175.4.33"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:80fa::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldsworthy"]},"Identity":{"Case":"Some","Fields":["ZakKuBxE3X2bc7VSmxFReYU0r3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["myzRM2GTvG8SoopQi7O9xkUZgRuaXj6L9n652g3FIKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:26"]},"IP":{"Case":"Some","Fields":["160.119.253.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ZaOY6aaXpGRZN7CGzaHZpcV7lQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YTgCPcHsJMHwRt9UIVKT1qV8BzKZAwQorMueI+y9ncI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:00"]},"IP":{"Case":"Some","Fields":["77.68.75.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:d4::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leberkassemmel"]},"Identity":{"Case":"Some","Fields":["ZZmwPffyBUCcgRE4xnY2EquugLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XvNiYImu+dNxSI2ii54LfMNXZEZ1l8wCPuJtGXpqGO0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:39"]},"IP":{"Case":"Some","Fields":["185.119.117.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:63c1:13:162::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZZfIC4iub7AvVE8W2JekmhqRd4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ebFqZQTCr7paPz2DEVCq183ESqjtxb6MKuTEAm95vqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:54"]},"IP":{"Case":"Some","Fields":["88.150.107.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["castleworld"]},"Identity":{"Case":"Some","Fields":["ZY75F4eJ2yb6B4qgYF8n4VzqhBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pU0q+cWm+naH7jQ6EvjBR9QrLR4LmLGYIUr1lPLEGKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:53"]},"IP":{"Case":"Some","Fields":["79.141.175.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masters2"]},"Identity":{"Case":"Some","Fields":["ZY3CCXSLApLU7ekAgiVss+llhYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wq2l4AnzGeIqvYKU5WoNG1WlXhbldPoLb7kPsatmv3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:27"]},"IP":{"Case":"Some","Fields":["45.58.152.44"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noname"]},"Identity":{"Case":"Some","Fields":["ZYR8aoK7LQ2IrJkawiDYcc5S9yE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Woo4+I7LhO4OIFlLkcnMsR4XXzyBOpETs07Q7tSajNw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:31"]},"IP":{"Case":"Some","Fields":["195.123.245.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hypothermic"]},"Identity":{"Case":"Some","Fields":["ZYMsrdh98cXYm0WsG69IPRQH5ao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lRKAYjtzlhGaLQnCHdDgFyUoLZaOIaSXxwsC3rCcIws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:09"]},"IP":{"Case":"Some","Fields":["49.12.192.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:6bcb::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ZYDPyakRYRj1ERrR5/qi+fuO3pg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDJf63ia8RP2gYu9hbPgKxe9wgL4bahP7sqyjXh7ahk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:55"]},"IP":{"Case":"Some","Fields":["178.254.45.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ZWumwAsh2whmERcclGKIop4t9bw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hQQ/YJfWfzngYR4yxBihFPAsbVF5kL741NFdt1Sp36A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:08"]},"IP":{"Case":"Some","Fields":["5.45.102.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:614:d803:40ff:fec3:832a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay27at8443"]},"Identity":{"Case":"Some","Fields":["ZWnXYqxEgSdmR1CwifgNFZfstwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4G1bwsCahxuIIP2AGMhPx1qjqU3LwXi+BzbNCA+vwG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:37"]},"IP":{"Case":"Some","Fields":["140.78.100.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oscar"]},"Identity":{"Case":"Some","Fields":["ZWXzHZ7Ax9/+oZIL47pMc+81tcQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OYeT6UPen95acoIjFsH/aJnnpT65/zoMruj5nfsETYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:23"]},"IP":{"Case":"Some","Fields":["158.69.207.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::dfc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hwds"]},"Identity":{"Case":"Some","Fields":["ZWNH66dPYyC4UZLuIvgFz1AJhxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["baKeOojngHBe+KLXdvYD5cb0Oc5v140bC2sCXHj8OFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:17"]},"IP":{"Case":"Some","Fields":["18.18.82.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex68"]},"Identity":{"Case":"Some","Fields":["ZU1jT8QoGxb6tyF7q9w/F5qPLSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQ275ewxoWqM9eN3NMkN86xTMUApAgr4Tp8540lF32Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:47"]},"IP":{"Case":"Some","Fields":["199.249.230.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::157]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StableCable"]},"Identity":{"Case":"Some","Fields":["ZUwiqSXQoMRTfYOYwnj5H5yYv0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AmXvC0d3eb+OPUOTQZPIISoGB0eFc9CAcx69jA+X3V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:39"]},"IP":{"Case":"Some","Fields":["185.252.234.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:2079:4927::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imboredrelay"]},"Identity":{"Case":"Some","Fields":["ZUs2TCRXO0YxyK18OcFhxWjASjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["emewh0I1Xr9LmhGIRMBDQ2NXwX1L/EcMJzZSsNxlAKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:42"]},"IP":{"Case":"Some","Fields":["209.141.53.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueMold"]},"Identity":{"Case":"Some","Fields":["ZTee7UiFmbChUS6A1HQ7yRJcswY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gJLYmzXUW6k6Mub6KqCNNPlg2Bef0UbHCwv/QrNXXM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:10"]},"IP":{"Case":"Some","Fields":["178.175.128.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:2451:20::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trns01"]},"Identity":{"Case":"Some","Fields":["ZSWwgVft35sf+tzdfaoPWRV+Tt0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["61XD1SQL7fyLAECNTIr9axxhahu5TTTY+UvMIq66CtI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:15"]},"IP":{"Case":"Some","Fields":["100.12.177.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["santaMariaRelay"]},"Identity":{"Case":"Some","Fields":["ZPj5ioKeY2+/RDFKSGBeERKfmL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FXpb7jyEZTdD/aisOJ5CNPe12aoCqEeF1/1wcpaw3lE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:22:08"]},"IP":{"Case":"Some","Fields":["47.146.69.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber47"]},"Identity":{"Case":"Some","Fields":["ZO6lEZhPLIYvCed3VdxlfsMeZIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q49gwPoesWxz8JZm5sLFm8GLvUSabCX89lGVtMV5YoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:20"]},"IP":{"Case":"Some","Fields":["185.220.101.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::24]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frigus"]},"Identity":{"Case":"Some","Fields":["ZOs8vM63YLn2R/obmkBTM5gwsCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fpFZkGbYE8d/SOoaOZJAwGpW+AGIOUVePA1/yYBWluw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:44"]},"IP":{"Case":"Some","Fields":["212.111.40.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI23"]},"Identity":{"Case":"Some","Fields":["ZNdKqnTzDcLPs2NDzl1EUbmk26g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iEUa0UF7UPg9wfJjY5jL7kqfY8yZDqsaD8FSmZPkmY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:27"]},"IP":{"Case":"Some","Fields":["171.25.193.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::25]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["permanentrecord"]},"Identity":{"Case":"Some","Fields":["ZMsrMsEK3UuT1yW33tI4zM1tbbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddnFTQmz/EZBrKt9BthMoe0XLwDNy3aeySRT6C6ZCFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:24"]},"IP":{"Case":"Some","Fields":["204.44.81.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:fcd0:100:4600::6:16c0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sleep"]},"Identity":{"Case":"Some","Fields":["ZLsVtileOkRZT0OM0OZ058TmC6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kwQZz9iwsKxBGS50iCIuaRZtIpVF2Bv4eHzMOnbdYFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["212.227.73.217"]},"OnionRouterPort":{"Case":"Some","Fields":[11142]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6bc::1]:11142"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["montserrat"]},"Identity":{"Case":"Some","Fields":["ZLBfmiEitdtK3LDm8IMZPzFwqQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NtzvJ+aVngYUlo9Ajem9ZfBQngGTD9spvgEmwknBjDE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:05"]},"IP":{"Case":"Some","Fields":["45.90.135.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:7c7:2113::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneinfiniteloop"]},"Identity":{"Case":"Some","Fields":["ZKzETvvHG6509XB9SAqjDtK8kVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YYA//Qg3bPU+gVnHVeMKnB+sTrHaI8vUp2bdjiISd5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:19"]},"IP":{"Case":"Some","Fields":["2.139.28.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["janitormentor"]},"Identity":{"Case":"Some","Fields":["ZKiDepevcXdchN4O2pRVKq7cQk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DjKw2QwPWNNvcz40QtrVt9PD1+NJDVMlQLYdhG0yFMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:54:48"]},"IP":{"Case":"Some","Fields":["91.219.238.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ovhSwagger"]},"Identity":{"Case":"Some","Fields":["ZKLWOsTXLQOG7obG7jk/4xmi1Ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i0qUXO1mijSiqBc8yTIge/8VAO6vW0a5XJ0M92qjI2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:58"]},"IP":{"Case":"Some","Fields":["198.244.191.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::57a9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["newTORtest"]},"Identity":{"Case":"Some","Fields":["ZIin4czAwJ7A+QC4TSu4v9FKTGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cb6921zg7MY5YZJU8Kn6ErhOPNWuDe65UeI9wXFVXBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:38"]},"IP":{"Case":"Some","Fields":["139.99.66.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coco"]},"Identity":{"Case":"Some","Fields":["ZF3pv3ouhY+Ka0Xx9TA3EXbQI4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IACjUp3PMQ8qY4fbsI79gf7E6JVsyq1C6tZVkcEIYrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:43"]},"IP":{"Case":"Some","Fields":["144.76.37.242"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber53"]},"Identity":{"Case":"Some","Fields":["ZEVajRinibv9ZI1jsDhoYhjYMUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4wbWrMLHvpmxbd5Q01H3cP6rCIRIuIzQbXQFAn9HbyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:29"]},"IP":{"Case":"Some","Fields":["185.220.101.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::27]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay37L"]},"Identity":{"Case":"Some","Fields":["ZCmw1wPrkKGFKPn4uENQSqJ3ZcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEtg1tstmfvx8Q5C0qOvkerp17exvIHE9/+wKX4YPBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:14"]},"IP":{"Case":"Some","Fields":["185.225.68.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CourvixMiddleGer1"]},"Identity":{"Case":"Some","Fields":["ZBlDBwb3f0a5gDnIhdoExZXJ6W0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d55KfM9A/HRlDIWD/NkfGw3IyiyorbZxDMHKO0HhIbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:00"]},"IP":{"Case":"Some","Fields":["179.61.251.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:5707:aaf1:30d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["samsara"]},"Identity":{"Case":"Some","Fields":["ZBi6TPpf8pxrDmEVg4KxxSyfLhg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slxb/FkOAX3FwWnttHWns/iiEJmapEkjlzYKYJn1J7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:29"]},"IP":{"Case":"Some","Fields":["5.255.99.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["Y/+/gWEIP4yuDCMZsnfiz//iV4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQFkVjzpo8Cq521/pm3KzRsS9u4RxDMmB9nB1d5r0Ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:43"]},"IP":{"Case":"Some","Fields":["193.163.86.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:500:c1a3::56f7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv115"]},"Identity":{"Case":"Some","Fields":["Y/AEOBlGj9hsdh6uRbS3Lbmnlbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6mjItPTUopWlcWHFIUuNvZC61kYi6cd0c+wWt+Q/g/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:49"]},"IP":{"Case":"Some","Fields":["192.42.116.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5515]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emokid"]},"Identity":{"Case":"Some","Fields":["Y+9DIZ1/uA2jTIDVBzlail7nmT0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyIciqEl0dNzZfImO5cmZziJoU34RQAXuxWc/o5u5ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:38:20"]},"IP":{"Case":"Some","Fields":["104.217.250.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ESCAPE"]},"Identity":{"Case":"Some","Fields":["Y+CUpUR3mWc8EUETQFj5SAdOqmM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BwFs8OFvDurs0FCfmijaTUIc0d4ZpdFJxDs/Wbmgf1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:51"]},"IP":{"Case":"Some","Fields":["87.120.254.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbaconexit1"]},"Identity":{"Case":"Some","Fields":["Y9jlPjDjrxQOOyBes8hoxdbtiQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d1DmUX0b2kMufyMquU9pibl8IaizIZthqAwglq2XKds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:49"]},"IP":{"Case":"Some","Fields":["80.82.78.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6c8:8000:26::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dontpanic"]},"Identity":{"Case":"Some","Fields":["Y8gbyoNVcAaaf81IMS3qcH9suqI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jZHFHPmB5EKod4tYjS0kxS+wtXEPD0G6sVSUVcCuNfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:39"]},"IP":{"Case":"Some","Fields":["5.189.181.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:c207:3001:6426::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["543f24423c684e64ad7"]},"Identity":{"Case":"Some","Fields":["Y8VD7OJQEY6SBDej15ZePqk9BMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iY4DA3WinhUWj9hBKlWDCA2wqYY+i+KOYEqAVWvsuW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:51"]},"IP":{"Case":"Some","Fields":["46.39.97.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["toralf"]},"Identity":{"Case":"Some","Fields":["Y79Gpj+cIf0xXNBhs+qj6wUoOgo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WFuft2TpFisaC6pRurQCSY9sqIxX9kvVET9kcr9FzZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:19"]},"IP":{"Case":"Some","Fields":["65.21.94.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:468e::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torte"]},"Identity":{"Case":"Some","Fields":["Y7MvflOJ6NvF4bzv5IMS2nzO9dY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbkulHNG4rr2mkLdiUypvxsdQ9ndR/D3B/alhs7jINw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:12"]},"IP":{"Case":"Some","Fields":["217.182.196.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["p4r7154nRelay2"]},"Identity":{"Case":"Some","Fields":["Y57baD1X4bB7qqVNqaGkPgriLJw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZDtAWaEwbHfVughkWEdjeEVFpNMJXlhE7MOWZ9gPIw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:09"]},"IP":{"Case":"Some","Fields":["74.208.235.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra75"]},"Identity":{"Case":"Some","Fields":["Y5KNNwuSnr2lTvKr3UpjCCCFv2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OAaBG/5PC9KgNb+qnQAO92tk33yczGNtlSqe603DwBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:13"]},"IP":{"Case":"Some","Fields":["107.189.2.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["avocado"]},"Identity":{"Case":"Some","Fields":["Y5H8CPoVh/R0rqhU2Rplb163ISw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LIT3NlnrDIgle4Qa+mCKFeJoU4yzNyaZ20C+PZ+mRSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:30"]},"IP":{"Case":"Some","Fields":["109.70.100.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::6]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashLizard"]},"Identity":{"Case":"Some","Fields":["Y4nstIkTNLhGMA/dimglDrtbfFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O8Dq2J/aZCo+C1HohQv3ZV60T6do0JnbYX83foWwD9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:34"]},"IP":{"Case":"Some","Fields":["185.82.219.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27aa::505]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LehmansRelay"]},"Identity":{"Case":"Some","Fields":["Y3ke4B6g5E2NpstdOkUXQxKSet0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c1P9g+S6mOgJ7hcobU5SFpdPJmT/5Dkq9EfLZepDxVE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:07"]},"IP":{"Case":"Some","Fields":["87.92.154.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zollkriminalamt1"]},"Identity":{"Case":"Some","Fields":["Y2ma71mMBGwsdftZjRbZP1dTYbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["psmqWZM2nmgVCdn/sbEjfd71VIyzDmIOB1zTJYSRzW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:41"]},"IP":{"Case":"Some","Fields":["185.188.250.127"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:3867::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorDedi4"]},"Identity":{"Case":"Some","Fields":["Y1Skam6C14S58xS4hk96n0iF5eE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NvMW9zGvD6EHCmx+11A3JysiAJOtlRCp+ygWDX93I+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:46"]},"IP":{"Case":"Some","Fields":["46.28.107.15"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:2::762d:1]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oneDEicebeer02"]},"Identity":{"Case":"Some","Fields":["Y0qICMqKZAmACH9/fqZoW4cdo94"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4S7XDXmIoDxQeH056x9JgfFpOIndFWO6puL5VxRhdm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:19:30"]},"IP":{"Case":"Some","Fields":["89.163.224.65"]},"OnionRouterPort":{"Case":"Some","Fields":[5122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tiotnos"]},"Identity":{"Case":"Some","Fields":["Y0TtnGcoOZP8IYBetb/8fm29J6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ywGXV6lUnIwxZ/D2dC37y9IaaVDXuHGZInmrr7mHCA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:37"]},"IP":{"Case":"Some","Fields":["217.160.49.94"]},"OnionRouterPort":{"Case":"Some","Fields":[44321]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lokit11"]},"Identity":{"Case":"Some","Fields":["YzzuDc6k/xgm97hdKL1yQrOlbM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mPzjSPQ7ISVKZ0paEHDjJecYuW6N5cs93zqzS8LdxGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:20"]},"IP":{"Case":"Some","Fields":["217.146.2.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:11c0:1f:1::55]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenQasr"]},"Identity":{"Case":"Some","Fields":["YzyRhQ8DzI5PPCgDr8XOobAKh6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ey2BqRK+3LZWITEsk8/Y/186ELyk/VL9EkLkkxyWlfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:25"]},"IP":{"Case":"Some","Fields":["140.238.34.159"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a1]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eg9522alpha"]},"Identity":{"Case":"Some","Fields":["Yxy92vm2yvS01p0ecrNZcEmdlaQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDTB23UqzbxrWTA0QAT7e8GeD//t417pT6BD7eYegBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:24"]},"IP":{"Case":"Some","Fields":["158.101.146.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed314"]},"Identity":{"Case":"Some","Fields":["YxUnipFxAGLZCyiBme+gbkqqno8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9OJZxfwEjLJvPTlWVKVscdZexAhKgZsSSCmocFWYLQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:13"]},"IP":{"Case":"Some","Fields":["213.136.81.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:c207:2006:2287:0:1:0:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra79"]},"Identity":{"Case":"Some","Fields":["Yw911a10GInBvEbcNUpjIBUqezI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrQLuJdXsWCq9dCy2edpFiFav6IpTv0IKjof6bz20bA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:46"]},"IP":{"Case":"Some","Fields":["209.141.34.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG10"]},"Identity":{"Case":"Some","Fields":["YwR4HqbI0KhjitGnRczP7nfr5V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nc8nVk42Jex4Bdhi8iplwkatw+oTFA+wLpgn8kYFsEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:51"]},"IP":{"Case":"Some","Fields":["193.189.100.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["YvSZTG86Wz5ZCu7OUiWRaWyN3uI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rZp3Ty+n1h6ZmUmBLL4ks/5dMEQzpPuMEfANp2kLYLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:59"]},"IP":{"Case":"Some","Fields":["185.220.100.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:15::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raveena9002"]},"Identity":{"Case":"Some","Fields":["Yu1TsCABjkExaQPP4bjDd5ts07U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SqM5lf4ezuhwUqWl28KjZB4Le9SQsqnsW4QDIItm2U8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:36"]},"IP":{"Case":"Some","Fields":["85.215.228.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WdTor2"]},"Identity":{"Case":"Some","Fields":["YuoxPIvAPXXjGdOgtH04iHSdAjo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o849VW8x47g6zr7vJJbsp1UgrEHaJT+BInqnuez1Mvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:17"]},"IP":{"Case":"Some","Fields":["65.21.75.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:505d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Yt/PQPhUd8BUMgrmZpzihuRFgHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URFZOoydRsm4ZCF/1cwF6L+sXktPWWvWYjztzMi3y2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:59"]},"IP":{"Case":"Some","Fields":["95.214.54.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maurice"]},"Identity":{"Case":"Some","Fields":["Yrq3UWoNPx5rK8lHZ1knkfa1j7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2lB2lrwiiyL3FtomBXdf7LOXKS6XW2UjT20BeBzHTgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:18"]},"IP":{"Case":"Some","Fields":["137.220.127.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xyphoriator"]},"Identity":{"Case":"Some","Fields":["YrfNGj50DFpRX634IZqTNrA+caw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cRybjWtYbw/AvvufiSk4B+9XSKwm7BiMUdvEg9EQjbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:08"]},"IP":{"Case":"Some","Fields":["24.112.149.188"]},"OnionRouterPort":{"Case":"Some","Fields":[49152]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privator"]},"Identity":{"Case":"Some","Fields":["Yq/jkwIMw6o6owyniQL11A52CSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVyxVFdyVGLTfdwqXbxqgfXopF5frYVqo1Y9aiP/7Vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:41:43"]},"IP":{"Case":"Some","Fields":["217.160.49.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Yqayx1ByX/3pRX9kHvVm1WdzwxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5rGr8dFyXfve2TXIkry1tzsnoCSsbQHj4KjGutODCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:55"]},"IP":{"Case":"Some","Fields":["80.64.218.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::dbb:77db]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PwnedNode"]},"Identity":{"Case":"Some","Fields":["YqYBWKLDAuPaeS16T1M59BMh5dk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ksj1cZeQD5TsyTdxO/NESjZAnxlGeviaVhMmQFA+4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:46"]},"IP":{"Case":"Some","Fields":["213.232.101.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit8"]},"Identity":{"Case":"Some","Fields":["YqTmv+h1Q3h563mBw/wDENNQavU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2CvWirYd1gGdYdZrFHEWMYSqTUMrWUTEwW6dgD7WMtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:37"]},"IP":{"Case":"Some","Fields":["185.129.61.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pltorrelay"]},"Identity":{"Case":"Some","Fields":["YqLODTvkb9UQmnIHTLvGvGxkfJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pVe8YnJ0wF7TSUaqVQ2GPHRl/pA1FgyD2cRgRwzvDH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:50"]},"IP":{"Case":"Some","Fields":["149.172.49.204"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilatus"]},"Identity":{"Case":"Some","Fields":["Yp3hHRW3YFIeE5Gy0HImmP3BA98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BLfoDdCj/6XLMmUOU8rkjmZmhBL1SjR5fdR82EiL2n8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:10"]},"IP":{"Case":"Some","Fields":["138.201.196.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:3e5b::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow002"]},"Identity":{"Case":"Some","Fields":["YpCi0I5euJyAkiPFx79SWXaQdR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUv/Zv+gvjoUlqhde8tsgtoPG9eq5+0qC+caRyZILD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:42"]},"IP":{"Case":"Some","Fields":["185.195.71.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlUA1"]},"Identity":{"Case":"Some","Fields":["YocSnLnsR16Bag0oP+TkXWMqSks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIU3lzc5YC8XOeTk1CRduRNpFub3TcsFyXZ3AWR00Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:24"]},"IP":{"Case":"Some","Fields":["217.12.221.75"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27a8:0:a::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalcat"]},"Identity":{"Case":"Some","Fields":["Ynr+jKgRwNmD++WHa5KL3kxPWTU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QYrT9MVWRO/gMSrXvkPFOgVMZ1aXUDYW3T/WDf1Dl6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:30"]},"IP":{"Case":"Some","Fields":["23.140.40.2"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[110]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission01"]},"Identity":{"Case":"Some","Fields":["YnErLCShabJDNs0v4r5V2mdHbIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mh7ekWZkJgjwXP3TXLNVfqX/tz8y1vXJCChEq4vIFq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:26"]},"IP":{"Case":"Some","Fields":["149.56.94.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["YnEY9uPYXNbiYpe9ZTjEXOmKopk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ztctH5N4wPZpD4VkSoheA0x/fQ3gSlMKzeGc278Sc/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:03"]},"IP":{"Case":"Some","Fields":["185.14.97.105"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::4fe]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["testrucensorship"]},"Identity":{"Case":"Some","Fields":["Ym/zKgTmNvT3q+pMqdyvJgHWqwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yo2rEArlSv15R7nMhs4QhubjP4Arx/aN90QLmEalx+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:08"]},"IP":{"Case":"Some","Fields":["51.159.161.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:fa0d::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay3"]},"Identity":{"Case":"Some","Fields":["YlT006z38+v/GukQx2KlefHBqkY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MkUEAKFdZMjbDpL5ODJjuExGOaNBd6JNcIO8gI1I/ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:22"]},"IP":{"Case":"Some","Fields":["188.68.59.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f75c:28a7:40ff:feb7:f710]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TrueRangers2"]},"Identity":{"Case":"Some","Fields":["YlAmr6x8XpyS9ZehhDQyR+0BGXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNg9vcHJNI5soIE0J/xNe/ZHUqMSB01cKgLQm6YDULE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:49"]},"IP":{"Case":"Some","Fields":["185.175.158.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YlAKtAH5NVhnfB6MYeckvUZs6KA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cBYnVOWQ3k0N0RBp4pgexepR2lGCZRY7kmc9heURKp0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:42"]},"IP":{"Case":"Some","Fields":["185.207.107.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie3"]},"Identity":{"Case":"Some","Fields":["Yktzkbl5DnzSr2pyOCObo9aSilc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9r45Ar9ff5fjTou/GiGHDlTV79c+hiYZFvfZjUTWaZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:20"]},"IP":{"Case":"Some","Fields":["65.108.136.189"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::3]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wildy"]},"Identity":{"Case":"Some","Fields":["YkXchz1vYTx5XUhmPWW9iiJmyvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6zlm40WoHYhdKy7tzmnaWrkVxO2f1ARMEQDVIZXjJCQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:42"]},"IP":{"Case":"Some","Fields":["92.222.103.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:8c4f::1:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode2"]},"Identity":{"Case":"Some","Fields":["YjzMwaE3BwDdAwRqhdlT01yrXCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZW74UUfShxUHYU7PgG+adS6pm1R8/N81IzfCZ2vfyPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:37"]},"IP":{"Case":"Some","Fields":["209.141.54.195"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongreatmother"]},"Identity":{"Case":"Some","Fields":["YjL980/5B9wlonMn0cBa03D7J2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vHfQs2Kv73VpXf7t6nwoN4oT/75yTjFb4+1GUEaVSUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:42"]},"IP":{"Case":"Some","Fields":["185.220.100.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:10::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theunion"]},"Identity":{"Case":"Some","Fields":["YirVMXdx0PmlTcb4bszKSg7wUSU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cdAt/hC9nPC5SVF+mnkiKf9HPwxIM5+bvBwpSEmZX7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:33"]},"IP":{"Case":"Some","Fields":["185.140.248.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH111"]},"Identity":{"Case":"Some","Fields":["YinHBKMSIzzTM9UZb4Icf/1bL28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xt+CKpva+Q3rQBNWcsfmj6+12QqpI8yh+1mgYMr9gwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:28"]},"IP":{"Case":"Some","Fields":["192.42.116.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:211]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrg"]},"Identity":{"Case":"Some","Fields":["YihCrl7P8ICbTJhtUsp1w0ntEeg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mM67vL8R1XX3jN/6wU0z9NzAEHCiXKtRnuCc+BWrGDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:48"]},"IP":{"Case":"Some","Fields":["54.39.66.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:93:12::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["michaelgill1969"]},"Identity":{"Case":"Some","Fields":["YiOa5ZqI8qxYFzdy0cgiaQLBguc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0xOAFpzFD3DKQbQYrfk5mcAIUILafIsUiAeIPxfnPps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:04"]},"IP":{"Case":"Some","Fields":["45.79.188.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:92ff:fe81:95e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["YiKYJ/4WEwA8CiqHY9gcCxcP+tk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+/URgI78CYQpcnvZ0XNK6ayEOgCh1Xn0/M0yFCKaxFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:06"]},"IP":{"Case":"Some","Fields":["23.128.248.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::215]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation57"]},"Identity":{"Case":"Some","Fields":["YiIzRlkRHZnenSaXCsxAIrKQ39A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSkkrvTFC2c67Dq24NX1ynu7b6PnbItBHowos1nCtco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:10"]},"IP":{"Case":"Some","Fields":["51.89.143.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pbranenettorrelay"]},"Identity":{"Case":"Some","Fields":["YiHKqfSmctthRNcSjRhN21NQg/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4k4AD1/yOflCMovjPUMpdvg1eeBmlMJUHOHQct/09I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:08"]},"IP":{"Case":"Some","Fields":["139.144.60.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:93ff:fe97:5166]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["Yhx8cD+QR4uCuvcBmc/DCy5N4vQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xA/u5iGaPnd7/KA10CFliN4vSkak7W+iHC9pFwQXJSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:47"]},"IP":{"Case":"Some","Fields":["51.158.231.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra12"]},"Identity":{"Case":"Some","Fields":["YhM+22Y8HAQ7Ki3CShnDUQiOvVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KEC76WQ6WsM9UPluDDJtbXjQXD0bzLhBcoRdr808hRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:43"]},"IP":{"Case":"Some","Fields":["213.164.204.171"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1144"]},"Identity":{"Case":"Some","Fields":["YgnV5zRei263oQKBRuSCbMbGQig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tXjcSH/iFInZUHDrfzR88YBsmNeb+GQwG674pYDhLRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:22"]},"IP":{"Case":"Some","Fields":["185.220.101.144"]},"OnionRouterPort":{"Case":"Some","Fields":[11144]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::144]:11144"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay631588"]},"Identity":{"Case":"Some","Fields":["YfBd6av4/OHWE6PP46+BsCfyee4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPFMXikOpNp1hIIC2Wpll3JksFW0JalYLn9niRgyS+s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:01"]},"IP":{"Case":"Some","Fields":["88.209.77.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9845]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LukeCage"]},"Identity":{"Case":"Some","Fields":["Ye5n4Y2N88OgYTPfVOpaKUyTedE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lr+jsKV+61AQaqfu+MA+vXhwozK03uDZjim6m4xtZc8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:57"]},"IP":{"Case":"Some","Fields":["216.73.159.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay38L"]},"Identity":{"Case":"Some","Fields":["YeQx7AdIgMTKrpjx5SXgEodi4GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1m9kYKJEDK0HbQeEht5FgMWokwSgwlSB50WVFvQ59cU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:00"]},"IP":{"Case":"Some","Fields":["212.44.103.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gare2lest"]},"Identity":{"Case":"Some","Fields":["YeQbV1kej1LHE1ysQND9mMXLq4Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubLLbrge1MqH8JlGW17fRxyynXaIwQZqr8u15jANGTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:56:23"]},"IP":{"Case":"Some","Fields":["90.126.124.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thatismyRelay"]},"Identity":{"Case":"Some","Fields":["YdI36EJvhIQg1KZIs1T6H0WrrH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GixycUD6wmk+mdyDj7EcRPG37wc8RfKB4AmC9pvYiXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:49:29"]},"IP":{"Case":"Some","Fields":["130.61.189.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kren"]},"Identity":{"Case":"Some","Fields":["YdHN+SoF5ZoGtuIKOSR2lnErAAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSaG0eQ1MAzAocZAj8XLK3h3cWQD0QbCFSZdru6vMLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:17"]},"IP":{"Case":"Some","Fields":["109.70.100.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::5]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artischocke"]},"Identity":{"Case":"Some","Fields":["YcA4J/2ZFM3LLqgJqCSkNa6gGJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3d0DzlWEur1ZIJPoQahF88yD1PB77CvINR2kTlZM1b4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:36"]},"IP":{"Case":"Some","Fields":["109.70.100.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::11]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whoUSicebeer48"]},"Identity":{"Case":"Some","Fields":["Yb6yjL+yWMA5w5f7q3/Wb6HzEgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VYdtJRmJ+MXiCmKPrPVTlZ3kzVJhJrnruv11YBIW2/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:19"]},"IP":{"Case":"Some","Fields":["173.208.190.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8034]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["YbpcUI464Uwt/43Wd7EAmEyj4J0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["heo0OSgYEx9/993ylg1uXHBNYcGTIM6zjixn8Q+seiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:24"]},"IP":{"Case":"Some","Fields":["74.208.212.42"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:24a::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pecurina"]},"Identity":{"Case":"Some","Fields":["Ybi9yRqnvJoF61o9ZS//iMmOaRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hRtVUDuSj7Nq7KgSh1YfjWbJiFoXzLt+zjvbbkd4IaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:28"]},"IP":{"Case":"Some","Fields":["78.31.65.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YaIQTX5phnw/PvmBB3Jm+WjBdSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdO+3fNRYnWDkaTaqwv+Pq5XzaO76hVM7rZlqC7qNZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:28"]},"IP":{"Case":"Some","Fields":["188.68.41.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seeidideditit"]},"Identity":{"Case":"Some","Fields":["YYnwaR2K0cuzc8rTkG5yI4rENk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qywVrF+JNW+8+47mHCbZaLohj2T3Gwj7psI2odbBV7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:42"]},"IP":{"Case":"Some","Fields":["78.194.158.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e34:ec29:e1e0:baae:edff:fe7d:7bd8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra94"]},"Identity":{"Case":"Some","Fields":["YYZhYszf5lGw12qlfsqQucx8gN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cjflFLwYVlghqlwwLL5ApFufFeJAajKVhHO13oVnZRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:12"]},"IP":{"Case":"Some","Fields":["198.140.141.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:30]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YYO0k6z/QbKHRc8DIuda173kpIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aI2uw7GqaB21FJg91S4SnxI2kNT+WFePb2J19cRt2sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:44"]},"IP":{"Case":"Some","Fields":["185.228.138.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor11"]},"Identity":{"Case":"Some","Fields":["YYFjv8TsJLaqbh6EHSHoNZF20JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AIShRveqg9goddsbSDX0ilyS/6qxO71uLJA8Q4jMhu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:54"]},"IP":{"Case":"Some","Fields":["31.6.70.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::132e:e173]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange030us"]},"Identity":{"Case":"Some","Fields":["YX6x85lOE+/iDU1qQnO3JHdtBdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/EHJftWRRQo5UlpxByyOL0p1rG5xjG2zgXP8AB6+kg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:38"]},"IP":{"Case":"Some","Fields":["45.33.198.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["YXyV/PXwDpjnPjWnHAZu0gYU8m0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RGlTerl9sCNI5fTtZBkbEPU5OM7eAkp4BULuZs5AKhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:38"]},"IP":{"Case":"Some","Fields":["179.43.159.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mirokko"]},"Identity":{"Case":"Some","Fields":["YWynMGMXZUV1CX1OpbxrZibiaUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hWrrR064lkw4YoAmaD6qwFTuCb07QJob5NTF19RivOI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:54"]},"IP":{"Case":"Some","Fields":["185.235.218.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeoNotOrg"]},"Identity":{"Case":"Some","Fields":["YWo8Wzs6sJVHdowGPS0ySxnPJ0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jcW7GoarJOORxaequCL/RVEGkMl84Cj8OhwhZrZDA8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:11:22"]},"IP":{"Case":"Some","Fields":["148.251.208.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AquaRayTerminus"]},"Identity":{"Case":"Some","Fields":["YWCB7IKVk69CMlUN5v+qHXWzepA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4Ve0uNLFeqiIfnuWJRUqzajgNMd37SOYj/+HP7mqEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:31"]},"IP":{"Case":"Some","Fields":["95.128.43.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:ec0:209:10::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PostGuard"]},"Identity":{"Case":"Some","Fields":["YV1UGUZnLQLzGZWkiomlJsfsNSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/ZUsPNuogSMS7VLha/s5xRHtDtKTFCe76g6fYvFpXS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:35"]},"IP":{"Case":"Some","Fields":["37.221.196.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:9:635:c48e:47ff:fea8:490]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cloud"]},"Identity":{"Case":"Some","Fields":["YVq+ot526zdgvFHnMGuqWfFc2PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoUTFk7iiFoKlFhh+sotoJ3ekCJU+Ly187QXa17f69M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:53:02"]},"IP":{"Case":"Some","Fields":["46.166.139.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaygermany"]},"Identity":{"Case":"Some","Fields":["YUaQ0BEbsWQouBbbnpmMDl6j9JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xN//P6I+h+4VuDOQa1GC20aFEgX6O4Z7gto7Ei9Wd9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:03"]},"IP":{"Case":"Some","Fields":["217.160.214.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:6e9::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBoundTome"]},"Identity":{"Case":"Some","Fields":["YUZW0SbsNDQEZHbbb9YxtxEk2rQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VhllzY+lH/fYIez3AGzxV6JEhxYxuJmnMai6iwxVJVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:41"]},"IP":{"Case":"Some","Fields":["82.118.242.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["invaAtMoon"]},"Identity":{"Case":"Some","Fields":["YTT1tm8nvdvCv4DU8sV11iOOXjQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TsEGIlHhHpwrQ1zQvv3Hm/8HhFdLbFqQDiuLBVYKO3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:18"]},"IP":{"Case":"Some","Fields":["188.124.94.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neverDie"]},"Identity":{"Case":"Some","Fields":["YS9oLW+CxHnXih5Sdwo8Qxr4BdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mvgb5Glq1F7djhDf7rPaEZ8MNvgVONx03GvuEERFHOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:00"]},"IP":{"Case":"Some","Fields":["185.193.127.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:3840:1337:127:0:b9c1:7f8b:1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedHat8"]},"Identity":{"Case":"Some","Fields":["YSv+bTylv1UsntbgmUM3edjFIdY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OjJx11Jl52T1FgDFAyoNzreZgdBFR8kqI7XFQo/ZaMI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:44"]},"IP":{"Case":"Some","Fields":["5.188.206.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazerpi"]},"Identity":{"Case":"Some","Fields":["YSWm0nf3/0Cmh1qSgUcs145A9Ck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/lfuvp9Z5DMeos7my55EATGR9xLcVuSYlQvhZ88SzZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:18"]},"IP":{"Case":"Some","Fields":["79.255.156.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["YSUdO0fwI0WHS7fytNbvMZgU3jQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AdG4b/9D7BhfKyE2WbFIjw+hynyYJnV7la9KGn7gSnc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:06"]},"IP":{"Case":"Some","Fields":["45.90.161.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::f05d:92ff:feb5:2932]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DevilHunter"]},"Identity":{"Case":"Some","Fields":["YRjdtYDu3W/l+NPMDfHuF9iipMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oCCBCN045JPxAKWKBGGaTloKiSWcpf+3ituy0pRuggQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:28"]},"IP":{"Case":"Some","Fields":["94.16.123.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:21:3ba:840a:fff:fe2e:3fec]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["janus"]},"Identity":{"Case":"Some","Fields":["YRczdja4y5efCbZ1MEd9/8phv4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oqJm+LU6jNcy0v1wjiUtguTkzl9VOdZSQEKbaBFMvEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:28"]},"IP":{"Case":"Some","Fields":["91.121.143.199"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jsRelay"]},"Identity":{"Case":"Some","Fields":["YRHGAFq1ZJi+XjVmayUizr4X0U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gIvF5b2LWNZensih6ew+h7sVa4Q/uTZmeDJ3BvQNHN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:55"]},"IP":{"Case":"Some","Fields":["98.113.139.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay4"]},"Identity":{"Case":"Some","Fields":["YQfR+W5mKTZgJa6Bh3XHzyqahLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WGASnZduOnyObkSes5ubYNa7HRd8YEFO/DyTpNsUN+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:32"]},"IP":{"Case":"Some","Fields":["84.49.151.188"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["swlt3"]},"Identity":{"Case":"Some","Fields":["YQHss9oR4M5t+LRXAU2gmYB83k4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Icwimyk6ssns736HPdLewCcVx/4qAq2wIyJPfKgIb7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:43"]},"IP":{"Case":"Some","Fields":["49.12.233.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:1849::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["n0trace"]},"Identity":{"Case":"Some","Fields":["YQBBUscJZy7nOfJme1bvVVClEzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxUzsHbV0DQSUs2oYARG2dNQqZgBp23DsXrn5dkTX7g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:23"]},"IP":{"Case":"Some","Fields":["81.169.255.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber17"]},"Identity":{"Case":"Some","Fields":["YP54LfkjaYVGAjxvFP7AiEYk81w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uIF/tppVNIEfOq7GD984KeYPENAWVRSwuWxEsEUITU4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:23:54"]},"IP":{"Case":"Some","Fields":["185.220.101.9"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::9]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor"]},"Identity":{"Case":"Some","Fields":["YPITnqPgZBCgXL1uglTmCpBjrZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LThA48ZMUlC5TncZoZg8CNM9bs9ynnE1hEIjmPQn4ck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:10"]},"IP":{"Case":"Some","Fields":["147.135.6.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Washington"]},"Identity":{"Case":"Some","Fields":["YPD5HUArY2kyezD6iXa2cO8FxPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oavOPTEOY/ncbsQ3fGE0klVcda7ZZa+zLp0Ds1/EHX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:28"]},"IP":{"Case":"Some","Fields":["185.70.185.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["YOUhtjLYOXHs+NRUr1WPLCOLyaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["STolzmVFfws5dSXI0+nGQ5GOO7gbFDlqxnKBuCixfeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:03:19"]},"IP":{"Case":"Some","Fields":["185.207.104.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rgiad"]},"Identity":{"Case":"Some","Fields":["YOTF4wbS2yKJDuJKCfm2wwrzlqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHnlRwZniKiUZAzILcT0i4Fsu4PU455E67jgWqcEN5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:10:40"]},"IP":{"Case":"Some","Fields":["198.180.150.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:418:8006::9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN6"]},"Identity":{"Case":"Some","Fields":["YNNmf1auxcac9+j1V9sh3fbDYGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7VAWQ4zB9BQAV8qTGrlypMmklYSODN/U5VKddljgOl0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:54"]},"IP":{"Case":"Some","Fields":["199.249.230.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::117]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["YNErfXpgFiJQT3TJpOt8jzP+XIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bD22nxg9vH/8to/CABRfFWBF0yRzCmpv1khyGxxM4DE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:14"]},"IP":{"Case":"Some","Fields":["134.195.89.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wehrhaftedemokratie"]},"Identity":{"Case":"Some","Fields":["YLbz+vZcRDT3ofaCFiBr6AfOgHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6W2zwyS70UxT5QyOpDhaXSu9jRAIAXCXMC+O2vk3nE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:10"]},"IP":{"Case":"Some","Fields":["89.58.28.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mosquitobait"]},"Identity":{"Case":"Some","Fields":["YK/oZvU/34OAigLykJ4otSIstwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ozHwBGKFtxTRst2dMtZCVdiI+lNrWzEK2pjv4oc0Uas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:38"]},"IP":{"Case":"Some","Fields":["23.105.171.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SomeTorinAS200462"]},"Identity":{"Case":"Some","Fields":["YK7qI6hbg6QHMStWCmBIKlAaa4k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEEYxw2QdDtwVkAS7HkiueMId5HMIrPk/F8gk+G/oAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:55"]},"IP":{"Case":"Some","Fields":["2.58.52.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HotPotato"]},"Identity":{"Case":"Some","Fields":["YKVUeyID3S4Ujvm91v84kQgcXfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gjk5yyqFzG0kJmmuewKD+WW9DDcHGm1DLm0OloCgtwg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:37:12"]},"IP":{"Case":"Some","Fields":["96.126.105.219"]},"OnionRouterPort":{"Case":"Some","Fields":[5353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe93:5318]:5353"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=720"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["misaki"]},"Identity":{"Case":"Some","Fields":["YKQ/LpZFdzypsXImy8TCDcMXTQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C1nz+rWCvHNEgZXkyvlP7T44HBM//BKElLxrAAMQs3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:55"]},"IP":{"Case":"Some","Fields":["134.195.101.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:feda:30:cafe:20c:29ff:fea3:9936]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Handlebar"]},"Identity":{"Case":"Some","Fields":["YHjzALN52N688C2+gIgclHd+JL8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DbEcP9jxJgVvbELuHjB1VObd5lPhDTdFC8m1zJz7lhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:33"]},"IP":{"Case":"Some","Fields":["198.255.21.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["forabetterworld"]},"Identity":{"Case":"Some","Fields":["YHY+YwmIBS1ga48qvITUHa9vp+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QvBuseH6V/uDry9jCMRxvCNSOAZNYe3rFNmvm/7g0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:25"]},"IP":{"Case":"Some","Fields":["159.69.241.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c17:e5ef::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arcanum"]},"Identity":{"Case":"Some","Fields":["YF7kN17kw4IVyJSfWAiGN0n9T0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NKyog1BakNTlCP8yGEv/hLMTAuaZhqB0EgMVs7BOcNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:14:41"]},"IP":{"Case":"Some","Fields":["5.56.216.42"]},"OnionRouterPort":{"Case":"Some","Fields":[4020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vaseline"]},"Identity":{"Case":"Some","Fields":["YFtfonRVoOeDKdnZc+FTrZKYvf0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gXs0vkqfJajji+SHf1ZdGJ8c4SlsdTTrY50feJLaI4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:53:01"]},"IP":{"Case":"Some","Fields":["68.71.16.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["YFfO63OEfShu+Sru0pPvDNDeJcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e+z8qHnGUL17QgqV6OzGl8R6vTWLV3PHxXSjZin4VSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:02"]},"IP":{"Case":"Some","Fields":["23.128.248.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::218]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elects2"]},"Identity":{"Case":"Some","Fields":["YFX+kMGN1LJZOp0OAt3E1o6bpi4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AfMTsmTKPD5O6HX7gG+t8Fk7pn3Dv5j1k74ATryw8Ro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:12"]},"IP":{"Case":"Some","Fields":["45.58.154.222"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skewed"]},"Identity":{"Case":"Some","Fields":["YCog+Q4g0bnqTdh66Ui1kMYfipQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z0oUr03booluRhiLK22y8EfhVnCUsQyBswPlCiTtoUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:40"]},"IP":{"Case":"Some","Fields":["49.12.93.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noTORious"]},"Identity":{"Case":"Some","Fields":["YCYA10fxIlWpBPWsudvR1PIuRII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ysm6fgKpvZcH3b966Gdl0OEXZXu9l9vv5Tcd57upR7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:03"]},"IP":{"Case":"Some","Fields":["109.248.144.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1wllmkuhrt"]},"Identity":{"Case":"Some","Fields":["YBDqh71K7MJAsMVW95PR29CFy0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RC4C22zj8/VRe6tWurpTqvENPwcxlKusIRzE0YbydWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:11:12"]},"IP":{"Case":"Some","Fields":["95.215.207.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a2704f1ae50d753145e"]},"Identity":{"Case":"Some","Fields":["YAkCMwP2iBQZ9M7fxLf/j/3y48M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXojpVK9gZTJKOTpI+A9pvhHQi6xMf1dGYcCs3cNdyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:58"]},"IP":{"Case":"Some","Fields":["62.65.40.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["YAaEqGPciTaS8dd3hmAFNszoCyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2S+uYnTb/ySnVQL6Tgun+vUEE8vtZKThU9NrY0sulw0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:41"]},"IP":{"Case":"Some","Fields":["23.128.248.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::46]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["YANyOAJKnzBdtdyXUG1kLPodZro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSZfriAPZj4gpFDF3yuAdOMozh2d0sDrQ2TGwhqupnI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:31:23"]},"IP":{"Case":"Some","Fields":["172.104.79.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902:e001:116::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ashpit"]},"Identity":{"Case":"Some","Fields":["X/1rq7cbtWNyyDEXx+Ukjrv6xpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["76TmjFK2ITePCdhJf0DFJpgYM1uElFrSp4xB3bNogcM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:02:49"]},"IP":{"Case":"Some","Fields":["87.106.192.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["riseup"]},"Identity":{"Case":"Some","Fields":["X/HTo+OONky+JiL8Mw8rEMrBNj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fy9rr3wb3SVoNuV7qku0DEMdXUvVJUQfh3DvNZ/CuXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:00"]},"IP":{"Case":"Some","Fields":["144.76.162.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jJbzwynG"]},"Identity":{"Case":"Some","Fields":["X/AtQRPwpoiNCi7mxXxhoVi3VQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7LKM3cJt9aXVTHWW/svOE678c3/OzTa4A5cF2PcnmFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:04"]},"IP":{"Case":"Some","Fields":["37.187.96.84"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:2054::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0294a90e"]},"Identity":{"Case":"Some","Fields":["X+vA2KbVEbrGnc6v4M8rjfvUfp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AmvVjbRNI33jTvdTVMteEBA0c13LuazzcOjp9wyOEQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:20"]},"IP":{"Case":"Some","Fields":["90.212.217.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr238"]},"Identity":{"Case":"Some","Fields":["X+ua7CiR1AQ1MUV4enje1AkxptY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbQDj0loC1nehR1Z7/jJaRIBqjwMlOMrxxwwVOYbQgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:52:23"]},"IP":{"Case":"Some","Fields":["85.208.97.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kohlhaas"]},"Identity":{"Case":"Some","Fields":["X+g60Qa0mNWj6npI+3N0mvKJfls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S4VYJ4DZlPP21dlP24TS84J+opbMnP87iTG3a/9v1WM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:55"]},"IP":{"Case":"Some","Fields":["46.29.250.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["linsaac2001"]},"Identity":{"Case":"Some","Fields":["X+YTjWDgk6fP15pCDcGywaLBu+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZFtnfB37y0VqY+qjVgFEzSZWm1hRzFRvf3SuJ4nOMv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:41:31"]},"IP":{"Case":"Some","Fields":["172.105.185.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:92ff:fe9e:7fde]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["zer"]},"Identity":{"Case":"Some","Fields":["X+R/v5GhM2ZJvnsP98HZgfES988"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cI8Iz8EJ6zT10tsHLZmBvv35PcpProKeub65T4lVlpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:32"]},"IP":{"Case":"Some","Fields":["167.86.122.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ji4ka"]},"Identity":{"Case":"Some","Fields":["X9wMrYiyZ2B6N+w8BlTG0d02Oho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPOjqgCo03o6bTZM8jDYfaCzEYje6BrAtZB5Ly4aTRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:32"]},"IP":{"Case":"Some","Fields":["78.130.248.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["exittor"]},"Identity":{"Case":"Some","Fields":["X9Gk5Vfb2vJW3KfX3QRBZEDyZz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yZVS+hrx868DMnvt3rqKKcItwwRalXlKEHHSU3BL6WY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:45"]},"IP":{"Case":"Some","Fields":["101.58.180.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:410:b4e9:0:c5a2:31e3:a45f:116a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nuker"]},"Identity":{"Case":"Some","Fields":["X64oz00cUgNB7hBL9yUW9DCLlIU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJUx2N39ZWnolV4blq5zpa3BgDCoQ4dQ0mwGEqhshRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:20"]},"IP":{"Case":"Some","Fields":["148.251.236.209"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:34d0::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bananenbakker"]},"Identity":{"Case":"Some","Fields":["X6eUvzAa815K7Rhek5y6nSz8I2A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["exQnJohbc4M/pa+M/D8dITfeoENYtgTZaXRfjKHkUfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:20"]},"IP":{"Case":"Some","Fields":["192.42.132.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:230:2132:192:42:132:106]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq02"]},"Identity":{"Case":"Some","Fields":["X6dZb7K6LIiTN/i4LdcSe7skDU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7C4DT5EVXLEd3nnBppvq1/5BvNKF0LD6AvDPxfPOBWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:34"]},"IP":{"Case":"Some","Fields":["193.32.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[57625]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["us1surveillancelink"]},"Identity":{"Case":"Some","Fields":["X5YkHK/2DutdT5tsBNYp7+8VWCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/fQoxKS5RNx2CkCSNCS8AE4TvjEwiFqZ4xd7RGM8/rs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:05"]},"IP":{"Case":"Some","Fields":["71.19.144.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe1d:5257]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vandergriff"]},"Identity":{"Case":"Some","Fields":["X4dc+34u0NJOhaWouJBKNlCrHtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HTTQDtJjSYEz+pcshCK03JAlTw4AkQg8DkIy1NPlMsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:36"]},"IP":{"Case":"Some","Fields":["185.100.85.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schwabentor"]},"Identity":{"Case":"Some","Fields":["X3RIxbZdrwOeeAe73UjY+pHIwCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pqynl9gvC4dcBtuwEdJKx024e3cQe2KKDc5l6d2CMC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:59"]},"IP":{"Case":"Some","Fields":["167.86.119.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Poseidon"]},"Identity":{"Case":"Some","Fields":["X2w5qU9VN7kZWt0b3kXRj9TH8jw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["amVk9S+jfPwgcHakisJ8vEmEbtR15Q7FnUWd5RaGbzk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:01"]},"IP":{"Case":"Some","Fields":["100.34.142.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PsyloNet"]},"Identity":{"Case":"Some","Fields":["X1pZ4+ywmHQH2RarveYGE/g+oek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BydLJDNpeC0axh++s1womeLqzYoDJ9NWA76VgYtUKA0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:21:07"]},"IP":{"Case":"Some","Fields":["78.37.138.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN7"]},"Identity":{"Case":"Some","Fields":["X0zRIJmvIPr5rf3OxlMWo3bQIBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y4XZgaqvrH4TAXxHDxzLMi7ZNeReNZCb2VfJ1GURxWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:30:00"]},"IP":{"Case":"Some","Fields":["199.249.230.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::118]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Boro"]},"Identity":{"Case":"Some","Fields":["X0vLxuIK4HQ0DQp0Pm8upLUbCcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z4v0us7K54boT0rep6Hf1Jk1r3yS4jm7CdgvQ06vjv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:08"]},"IP":{"Case":"Some","Fields":["87.120.8.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["Xzdhna7klrjTfVs41cUNXkFpJD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wDFAwT/sdnGqGkB1TN4pO9GClO7KSKYjxp3LMPZsKDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:16"]},"IP":{"Case":"Some","Fields":["88.208.215.96"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1ee::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solace"]},"Identity":{"Case":"Some","Fields":["Xytu55mcajmS0+XIKYmSxcKN6zM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OIliiLouILAnD+iz4FE5n0MyTPRdQhbUUVy5kkHJROA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:33"]},"IP":{"Case":"Some","Fields":["195.123.214.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire61"]},"Identity":{"Case":"Some","Fields":["Xydqb3qnSvsq8QDq2ijHpvSLpQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3wi8OYrwNZKbdFPwHlzCs4homsvUrtYy+0FpcEu3PLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:40:36"]},"IP":{"Case":"Some","Fields":["91.143.81.212"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2efb]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ooty1991"]},"Identity":{"Case":"Some","Fields":["XyTyfHba0DtXcX1cTf40GlEpSuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9HdWwIA9H3OgyDlp83VKtOB80JGjcJPLXnE+vMs3ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:33"]},"IP":{"Case":"Some","Fields":["38.100.216.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:a:535::2]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Meganero"]},"Identity":{"Case":"Some","Fields":["Xx3JEYY0JpSe+EGnYGeDbyaS4Z4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z0a0LvWFQn2sbHKV7cfoiTafXRzrxJNCvU0y3L7WH24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:46"]},"IP":{"Case":"Some","Fields":["93.95.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber29"]},"Identity":{"Case":"Some","Fields":["XwznxjWQsp5il1DpxbzfVsQNaJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r0+rIWw3eRl510e4QI1dmc513lxr302v8JpFALRcxWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:13"]},"IP":{"Case":"Some","Fields":["185.220.101.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::15]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["XwHyTWDZ5u6zWF1Pz6jt62zWHrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/0qNyxL+4z4RtKSzgU+adtaFV71nGw6xRnjPNVff1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:27"]},"IP":{"Case":"Some","Fields":["23.128.248.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::30]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=710"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ClericalChanneling"]},"Identity":{"Case":"Some","Fields":["XvZFC+gca1Fim0fdabOC98tILCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJMZkRWY2WrMTVAhI4NFWmuE9UVJ2euOhByX9/vl0+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["24.53.51.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itrickl01"]},"Identity":{"Case":"Some","Fields":["XvJVnqulyiwygEZjVR97JDRfZ8U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fll5Mjb5bAHBWYb0362LX9eL6GPihEw/IaqyWhUWzYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:53:36"]},"IP":{"Case":"Some","Fields":["37.120.165.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:4620::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XuAOgeKJ1IxmXVsER8PvAY9KDJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy9qPUA+0pQ4kMjaA95LATXgihBDZM/IuA+ifo8DwU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:13"]},"IP":{"Case":"Some","Fields":["23.128.248.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::d8a9:b5ff:fe30:737f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyNEtWorktor"]},"Identity":{"Case":"Some","Fields":["Xtt+u61XgvzBRxKVBckrmtFHXE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3dckk4taCSqQ9PtL+4KS9zyIfU9eRsZ8B6dqOTNGeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:35"]},"IP":{"Case":"Some","Fields":["82.209.247.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyRhino"]},"Identity":{"Case":"Some","Fields":["Xr9n9xcUZiq/db+LfmnzMPV6crI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9J/aZqy/P9VGNqwgtnB7VBs/lcfQVhAwJuXAsfneqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:54"]},"IP":{"Case":"Some","Fields":["172.106.17.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowDog"]},"Identity":{"Case":"Some","Fields":["XrpKn0g+B/1xe6gd1vc0SvgvfV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yxj0o+DsuwaMiEbopHswyKCczdBe4r7jB3gtcag2qqY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:28"]},"IP":{"Case":"Some","Fields":["178.73.210.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1a28:1251:178:73:210:118:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=940"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNodeChile"]},"Identity":{"Case":"Some","Fields":["XpwmyDNLfMZPhJ7iDmxm7afL8dw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLpOdtzmIK7B6NIfEzamdwdt/aDyNDvOBWUTx09K93k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:49:57"]},"IP":{"Case":"Some","Fields":["45.173.130.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mhack1"]},"Identity":{"Case":"Some","Fields":["XpFWnfuP7CtazoudfQwXsse+HAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ok6IXxTTH+Iu1uIZzpklToX5MzTxFYvP8f2BMNuxt5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:08"]},"IP":{"Case":"Some","Fields":["5.255.98.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousOnion"]},"Identity":{"Case":"Some","Fields":["XotJtmG+a6Ysfjj7ar3pFRn9Ycg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1b4x3ZeVV5LwFrsBfAfICLLSAJcSxk5Tv0Vd4cZUtfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:32"]},"IP":{"Case":"Some","Fields":["87.64.17.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["XnlbGQYfYaE7JIh6FKHYHPja2Y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1I/QQaVL3Paf8DBiB+qwfRPxvf3TaEXxbe4PpPYz9t0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:58"]},"IP":{"Case":"Some","Fields":["23.128.248.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::85]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeepThought42Bridge"]},"Identity":{"Case":"Some","Fields":["XmgN4pbEpiwSqq4oeskqJ0PgzU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSqlXEKipKfs3hPLixvWTJYPrlhIXPDMvMXElPttMcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["109.70.117.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mchxuhg"]},"Identity":{"Case":"Some","Fields":["Xmdonvdjc1ASLe58ZYf9rTdKyvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HFcVcXxi3LaYd7kYg7egVkQ2Awohuq0LhtFC0nTMkoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:16:31"]},"IP":{"Case":"Some","Fields":["77.185.112.133"]},"OnionRouterPort":{"Case":"Some","Fields":[8091]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondagon"]},"Identity":{"Case":"Some","Fields":["XlK+oiEwWY8gDQXEK7ZnCcJOj2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6HdjzYtAbQQd7P3q7TG1/aws6HCsFMMEuNvrVPqRdPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:03"]},"IP":{"Case":"Some","Fields":["185.220.100.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:9::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Xk6+QHjfvmykZIxNMu6/5tgiyss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8kjM5co1EobngJWLyf4t+iyWZZIXoNbPAbZj3K7PEg0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:57"]},"IP":{"Case":"Some","Fields":["185.194.142.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Xk0ebTFBPczBSKgFAiRXjLvxKIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNmu8wZQfgd5AFlDcdcP+t24wPD3RvZatz9Kkovj0UM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:10"]},"IP":{"Case":"Some","Fields":["37.191.194.248"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fec3:62f4]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["XkDlUpEKVhyS/qoEJ/OvByls6eA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4uwSl+cFMZdFyBKUgq1lFrOEVL6nCehNsFuRNsJh16Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:50"]},"IP":{"Case":"Some","Fields":["107.189.7.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["XiJAYfDkchQpAnoTDbYH9P3Q3+U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["45ESmSxI6PB8S7i4CUGa8Tm+kuDyYvQgiU8Ktj4v09M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:52"]},"IP":{"Case":"Some","Fields":["185.220.101.61"]},"OnionRouterPort":{"Case":"Some","Fields":[10061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::61]:10061"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Frodon22"]},"Identity":{"Case":"Some","Fields":["XiE0zo06O3ql5Ze47+PmWbA8ArM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FPe+wxrOoRnbzXV2v6GWTZsfa0IOkY40Y6HCSOAvgSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:00"]},"IP":{"Case":"Some","Fields":["163.172.179.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47b0:14b::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TitounNet"]},"Identity":{"Case":"Some","Fields":["XhFK1ghCjCOzjMx32iLkzQwn8s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mRgu130APWZI9o77duFVar01N0jRDpvcp4F7PH24gtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:27"]},"IP":{"Case":"Some","Fields":["213.167.242.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc2:55:216:3eff:fee8:6e97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TimsRelay01"]},"Identity":{"Case":"Some","Fields":["Xg1bK0warOR5YH6E7BvOmIkQq0Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mwLQBolWNc5XDr1qo103rr/XDgTuPF73f8evmCAGbys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:42"]},"IP":{"Case":"Some","Fields":["89.190.24.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DashRelay"]},"Identity":{"Case":"Some","Fields":["Xf3ooK4Tds6tqIgqM9PCsnuIIB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FG0Q7lSgoGNXycBQrwFShy07N2XU9YLmocBOd2b0v/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:20:59"]},"IP":{"Case":"Some","Fields":["78.46.47.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackHuckleberry"]},"Identity":{"Case":"Some","Fields":["XfGfr8XBxJ40ZzQrTDqA1P8jsEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0onHg6c4AQR6dmG5dFM1X0CNSTPaWLDhs9FHvA20TSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:43"]},"IP":{"Case":"Some","Fields":["64.180.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[50003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["qTorantino"]},"Identity":{"Case":"Some","Fields":["XerYWNyWBhdoZaYrpPizjP2imBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HbShAdsORfNuQ2rjKLkIY8S3jq2BWXSp7bdU7YfWvPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:17"]},"IP":{"Case":"Some","Fields":["103.29.70.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:92ff:feef:9278]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlLV1"]},"Identity":{"Case":"Some","Fields":["XcQPU1ft9ICakBCCgXIHLJWnNRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wCkfv/OB1yAGeBEb0Ua6TS3RSEB9YLhWl9CMcBqw8A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:49"]},"IP":{"Case":"Some","Fields":["195.123.209.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27ac::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chenjesu"]},"Identity":{"Case":"Some","Fields":["XbmuJ6ROt7R2zASmbGenHJegAeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O3tKCIbjW3795LQ3YFUh+xl9SfQiGcpoJggse+SK+N0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:43"]},"IP":{"Case":"Some","Fields":["54.36.205.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Xbhnv+5im70nRuc4GLohViIKueQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d8uYzr1YVZj9YAIz5qn12RYf0M9akn418EWg/U/Z110"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:25"]},"IP":{"Case":"Some","Fields":["23.128.248.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::24]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prserver"]},"Identity":{"Case":"Some","Fields":["XaabCGuDP8Hfzy2ci5w7AxN8fv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TsLJeJHMqDLCCevRHfcKR756lplHGltXjpDFqp/0VEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:52"]},"IP":{"Case":"Some","Fields":["45.33.13.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9008]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["XZioovYPJsZeNPQgW+dyGeEO+wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fiHOEaCxibU5JxnRhw7HlskaS1zCxpwBQRWB67b7cX0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:46"]},"IP":{"Case":"Some","Fields":["37.120.186.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:23:489f:4fff:fecc:5244]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["XYSQDb5tY2VoSpZ1uBporOlXemg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xw4BuVQ6hx7YhR4fhnG7N5/XJI+qDpshAP5k1GmRoqc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:28"]},"IP":{"Case":"Some","Fields":["104.244.73.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f7ca::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsaciabrb"]},"Identity":{"Case":"Some","Fields":["XXjX0qFva00xZv2dH9SnFbFKVt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PhWePeSN/SeW9NOdZ4iO9GDFydapKNTL8f5EAq/eL4M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:44"]},"IP":{"Case":"Some","Fields":["96.234.150.200"]},"OnionRouterPort":{"Case":"Some","Fields":[8500]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:e01f:700::20]:8500"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission07"]},"Identity":{"Case":"Some","Fields":["XXZXcLTbEQ2IeHRXl4q0AIz2XKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ccNLLOwY3mEw7VTAg0KhaO5WAlYm8yTmqHKeHSBQErU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:33"]},"IP":{"Case":"Some","Fields":["37.59.76.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XV+N5IZ4KYl7unwsWYKqdYEFuJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fOzgqX6iDKGs94cfXVmH71ihL/OkdSwJXu4xiMWMZdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:25"]},"IP":{"Case":"Some","Fields":["87.106.169.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:8710::1]:9998"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra43"]},"Identity":{"Case":"Some","Fields":["XV3f8puWzFZqp0ZjaGjrB/l95gw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bB1inlfoS+jRixJJhPmEcYtCmRRU1QwuS4+irqclSpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:32"]},"IP":{"Case":"Some","Fields":["107.189.30.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra93"]},"Identity":{"Case":"Some","Fields":["XVda3RCN278X54rYyyZ9bB8zggY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lpAX38tMP4tczagvtp1FGO9CAfUagbPSAcSWtUQVI4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:03"]},"IP":{"Case":"Some","Fields":["185.125.171.199"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:171:0:199]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ziggy5tardust"]},"Identity":{"Case":"Some","Fields":["XVHJ0mnp1C6GMqvssYXmhAwUJXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VemSm+bB5wcY/tuZQ+7OPA5ECC66zLJl/ZfeZ9ef9RI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:08"]},"IP":{"Case":"Some","Fields":["84.243.66.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoveUsingMonero"]},"Identity":{"Case":"Some","Fields":["XTm8f7iHkrZUgqwu1Qe878vo5aI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ia6VxU55kya1w5+KnACBlt2ONUISaYwG0YYPGOpYw1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:00"]},"IP":{"Case":"Some","Fields":["141.95.22.152"]},"OnionRouterPort":{"Case":"Some","Fields":[899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MoniTor"]},"Identity":{"Case":"Some","Fields":["XTkHMcdwEXycBukdGh0nL8ShyJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h0FtY3Sb65x9Q8Jm0qEon0JYDjJ2FgvYmWtxqdVSbYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:58"]},"IP":{"Case":"Some","Fields":["195.15.243.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::7dd]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theark"]},"Identity":{"Case":"Some","Fields":["XSqMqhGdBShyLCQ4NQ+rDI3gGrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M1BIvWgnvdpWqlVjtormvcreTH+MApoFjiu6t4Co1AE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:29"]},"IP":{"Case":"Some","Fields":["78.46.98.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:908c::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anduinExit01"]},"Identity":{"Case":"Some","Fields":["XSYwN/wXVZazo0QTKwt1Xrj7HRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GTKUJ2bqOqTTNGpWeFXDnidtfhUyouflPDclB5Qbd3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:54"]},"IP":{"Case":"Some","Fields":["185.42.170.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["XSEg0Kecx0qALV9bv9OjBXc6Ay4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xEFsoFs0WIKxxZoh1OHesB6/Y7ukSWPuuxudvXc1iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:24"]},"IP":{"Case":"Some","Fields":["91.3.206.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber62"]},"Identity":{"Case":"Some","Fields":["XRcBS0DESN4EAwUzNXGZs+PEMR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tiM/VAGQvvkdjWDAueCnv+3+A8rSiWefKqOe5rUtAVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:18"]},"IP":{"Case":"Some","Fields":["185.220.101.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::31]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sabe"]},"Identity":{"Case":"Some","Fields":["XRXje5zifjp6Fbk6oWcPyyfUwKs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkQSo8GlXBsHVR8j+rKKoHZNDFqnPrb5h34mHZ5y+f8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:59"]},"IP":{"Case":"Some","Fields":["185.163.204.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["XRQAr5gvjQ2da7dp3KOtxWC/jm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dk76IjWlc4Wm7jJrYR8sHwxqTfREqa4zdbixiawWNuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:19"]},"IP":{"Case":"Some","Fields":["176.131.113.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ktor1"]},"Identity":{"Case":"Some","Fields":["XPNC271hcL7gDNUqy0B21VEIXn8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ODRhC7S7++F4V3J1Uf+nBfWZAUPNRryLnFpukS/UBZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:19"]},"IP":{"Case":"Some","Fields":["95.216.64.176"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:cf::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["polizeierziehung"]},"Identity":{"Case":"Some","Fields":["XOOtitBK3mbAA3o89ff3pA1Iogs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfnbJnUZbf1vP4Z0oRT62a20aMdRLna3QD0tBxR0a+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:24"]},"IP":{"Case":"Some","Fields":["95.211.138.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kikimora"]},"Identity":{"Case":"Some","Fields":["XN7JQMFep9q7+o9YzYlFuHXagMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2wVqlY97c7A63+hhZAwvyqSWOWTDLI4mBwt08GRowSY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:36"]},"IP":{"Case":"Some","Fields":["23.250.14.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bred"]},"Identity":{"Case":"Some","Fields":["XNYAf7buSFR0QJaAuQ8DTmuSWjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X8jszPd/4jl4Y7i6yqeKmvxGr53pCunZjRfY5DnkNK8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:23"]},"IP":{"Case":"Some","Fields":["107.189.14.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:efba:dead::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WaterElementX"]},"Identity":{"Case":"Some","Fields":["XMc4ULoZrzkNele78sHvS9MpC80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEK5oGJbGEDRaVTmWtHWkrvcHJ0dzWz9cb3X9FKB9Bw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:20"]},"IP":{"Case":"Some","Fields":["194.15.115.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH103"]},"Identity":{"Case":"Some","Fields":["XMCvNFQiC4JzkEgnZhsuUYMvrEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U8T1rW5y9uit35gGoR1mJBZVRVGyCta2pJBLzfMuJgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:54"]},"IP":{"Case":"Some","Fields":["192.42.116.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonfly"]},"Identity":{"Case":"Some","Fields":["XL1FOUVzgoKRyP6XgCMv39DSAt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h6kSVu5xOOXXBZ2ZyUH0oPJj2YAQFQFzKfuVyPhariU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:16:34"]},"IP":{"Case":"Some","Fields":["192.99.13.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:60:3e30::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor5"]},"Identity":{"Case":"Some","Fields":["XJ/8+ApQUZt/vXBpN2sWwvPLBX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VQkHjlg1ZvECaQMzv4egQf1RfeeP58Wqi7W225Wi7r4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:42"]},"IP":{"Case":"Some","Fields":["107.173.167.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["affectiosocietatis"]},"Identity":{"Case":"Some","Fields":["XJpm9Apj2cjflwDm354f1H2K0xc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y68do1ZPOJpPDiJTgnTuG/7JI/hVMew9MtW8pwkm4Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:44:38"]},"IP":{"Case":"Some","Fields":["91.121.160.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1:e106::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charon"]},"Identity":{"Case":"Some","Fields":["XIvIKcQ2cxtQ7YZXAZ6Ent92sJE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qdl1OrP17gKzVR6QyrsLJ1Zx0oOFrqBNs1gqndZT7Gk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:02"]},"IP":{"Case":"Some","Fields":["51.222.194.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:203:6e5::aaaa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t4cc0reTor1"]},"Identity":{"Case":"Some","Fields":["XIuBGId3jc9wXz058Z5AohiJRR8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8g8btiwvhPVzI9G98COaBbal4R4J0nPyZaXFAJGySys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:32"]},"IP":{"Case":"Some","Fields":["51.15.50.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1125::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["XIagmUakngmtZKFGNt/5F0ZRUXU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CabR7EstU1/zdA0O2H6Eq/jDyF4uwfVaOmDTDac8At8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:07"]},"IP":{"Case":"Some","Fields":["51.159.151.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DragonMaw"]},"Identity":{"Case":"Some","Fields":["XIXf22xyuqR1vnwGGMSBnw96NAs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/VruY0yeDT5kXAkewk313wzZBJ5K1D0GpaAZ7IR8oQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:15"]},"IP":{"Case":"Some","Fields":["85.117.235.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700::6:243]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x67726579"]},"Identity":{"Case":"Some","Fields":["XIJEMVGj+apxtiPCi8bj0T9dDe0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0UZ/tlcRV2LnqBbR39gEd8G2XdGhb60MltoWfC2EdvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:46"]},"IP":{"Case":"Some","Fields":["161.97.133.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c206:3006:3962::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Droutnutch"]},"Identity":{"Case":"Some","Fields":["XIDLVXyWytgO+OxqtVhlMp33Sxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y89BxFbfmMa+NsZpPvyNl3xAJ44u7lCy5HPkJ0jZrro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:41:30"]},"IP":{"Case":"Some","Fields":["88.99.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:670::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=94000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeldenTOR"]},"Identity":{"Case":"Some","Fields":["XFc54C3TN/sbcnGROTanbUl0Mj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZQtFT8ad2YXn290Kvg7C5NXHtoPel/08gEfbaKeB9ns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:33:33"]},"IP":{"Case":"Some","Fields":["84.188.98.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Computer147"]},"Identity":{"Case":"Some","Fields":["XE2cfZL7/S6glY8CQNzvb6COTq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SuraxkkryUcfdTz6ebMBYy8JY0g03FeDWlgA2nFW7t4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:04"]},"IP":{"Case":"Some","Fields":["135.148.54.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orwell"]},"Identity":{"Case":"Some","Fields":["XD8yF/mdbPpxHZQVr+0QA5cSAa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L94ldk3rdB6yDKJxVf36MbadkplxBLSQRGcN4o/c+fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:33"]},"IP":{"Case":"Some","Fields":["185.112.146.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catapulta"]},"Identity":{"Case":"Some","Fields":["XDaTwOe1N1U7qzW924Hd0k4Ve28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6owsj00sNxP02pT59ncmXiYLo3ScojM3NQDRjACbY5s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:58"]},"IP":{"Case":"Some","Fields":["172.106.10.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hunter"]},"Identity":{"Case":"Some","Fields":["XDNEsHjOTlQbkQy0FtQ6RdXMk0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Jl1sxSAfOGi5+cZ6nw9b9+F/lKgz7tKwdGWIOWmERMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:23"]},"IP":{"Case":"Some","Fields":["141.43.203.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Teuntje"]},"Identity":{"Case":"Some","Fields":["XBJKJ//WWMt2FlcY2r/9QJP1yCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BsSoodSGOoRkhVAZz3Kyklx668zW1c7eQisL8Lfg/nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:51"]},"IP":{"Case":"Some","Fields":["192.42.113.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:113:192:42:113:101]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay20at5443"]},"Identity":{"Case":"Some","Fields":["W//o2uVrHaCQu7e678kRsQLQZfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JqVnQZbmUDhoSXR/TdawWllLeykL7Lg8hylAXiAptWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:04"]},"IP":{"Case":"Some","Fields":["140.78.100.20"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["W90GM+CsCXY+SWQdzRujqzohqoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hfSiiP4LG+9R294DUfHt1CaMpXVtOHkccU7f8kkInEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:17"]},"IP":{"Case":"Some","Fields":["185.183.157.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lonesomePolecat"]},"Identity":{"Case":"Some","Fields":["W9qt0Caoa7L49+yIL/qkMmshMEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rdrGqsjvDIBnr5SsSFQZAC2sUTdb1/zNvSsUV5poC4w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:16"]},"IP":{"Case":"Some","Fields":["162.220.62.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["W9G4PkpoTH4NfM5Sra8Ew153heQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwkNhXYMmlNf9ihtPah3MPQMAQYKhBwv+c1ECiCwAXA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:41"]},"IP":{"Case":"Some","Fields":["45.9.149.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0000Userzap"]},"Identity":{"Case":"Some","Fields":["W8xWmiTc2R8cUYo+CKzloFckOMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtuTc65H3c4wyF52qFtEEEj78TIuNXfgoph9nn2WUxw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:01"]},"IP":{"Case":"Some","Fields":["46.38.250.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:5260::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PleaseNoFeds"]},"Identity":{"Case":"Some","Fields":["W8Y6vglaP1114KtNhUMJWhaShkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qciGSc3LuZ9RU23TajJCi+hF/b6459N36mQqYFGxzPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:07"]},"IP":{"Case":"Some","Fields":["194.166.129.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedRadack"]},"Identity":{"Case":"Some","Fields":["W8VCvsOOjTc9IcannMk0jcKL1iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ulE82Pvn1RSrk6U+RufcrX88uTrDP2Q4uZAHzbvWFwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:14"]},"IP":{"Case":"Some","Fields":["23.154.177.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xDEADBEEFCAFE"]},"Identity":{"Case":"Some","Fields":["W65Ite+nF6RkjzryZGfMu6O7Za4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J/x73vlybjmVPn0VDQpsNxGqHCxbFjqSL5KENbN0Z50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:09"]},"IP":{"Case":"Some","Fields":["94.140.114.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::4d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clubflower"]},"Identity":{"Case":"Some","Fields":["W6PCPop/RfoqfR0oD/ireIpeoBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ehf+4Ed7DjbzNHTu8nI6Ngc2A/0EUwAgpF98itEQTC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:25"]},"IP":{"Case":"Some","Fields":["185.67.45.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gurke"]},"Identity":{"Case":"Some","Fields":["W6GbXVqwy5746jPad1hbdUSUALA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uN6dF35f0TJCaBElLcx+uL2CKi5nsYRyF8M1qThkk10"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:30"]},"IP":{"Case":"Some","Fields":["109.70.100.8"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torneverafk"]},"Identity":{"Case":"Some","Fields":["W5er5EW0Cbd7Zn2e0Fre3dOGuSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FlB77vazNajsl0AjEAy9isYMTxjdlkBJ1ToY7rZtOSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:35"]},"IP":{"Case":"Some","Fields":["31.24.148.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:678:3b4:100::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["W5CG1L+56jbJWJfa7XL8OXOEe0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q9DfCFxr8MfH2zRVpJxJwASFoMOw6VZkU7Hoq2tkXSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.243.218.27"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:27]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["W4PcmDQGZRoLT2rhlAeTzdam+S4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoE5/8jNGpFnBnrQYqUAzvPtyObGFuErquTvOxQpP68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:02"]},"IP":{"Case":"Some","Fields":["138.201.55.77"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:1045::5]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["W36p7e58FEq8KOuGxSwTU+dToAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JYJJ6xfZpRc1XtfWdOzy3tE4nfyNmQ+NALiowF16/p8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:02"]},"IP":{"Case":"Some","Fields":["185.220.101.34"]},"OnionRouterPort":{"Case":"Some","Fields":[10134]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::34]:10134"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra21"]},"Identity":{"Case":"Some","Fields":["W3xXfd68ayw5tVNk9OrWn+gYEGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8q4/4cTWqm56Ugvx0v4+1p1owvVAlLc1ntnrvEaLkBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:23"]},"IP":{"Case":"Some","Fields":["193.218.118.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::90]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dhrly25"]},"Identity":{"Case":"Some","Fields":["W3X/crmRlX+/HdGO1zTwhXC1qAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qG+btqBke/fGvV2atdaz5liKCGl0SrNyU/U6Y5IQBf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:57"]},"IP":{"Case":"Some","Fields":["212.21.66.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bf0:666:0:1c0c:49cb:1d9a:a032]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["smallting23"]},"Identity":{"Case":"Some","Fields":["W3VM02sZ/DaLh/0/HOtSmwVUXwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["erDo4dIoO8BfOd91FYIj8FkfSsWO5FF/DMTn6ibChpw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:16"]},"IP":{"Case":"Some","Fields":["185.204.1.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mirondalse"]},"Identity":{"Case":"Some","Fields":["W3EMfTCTFgjutWIsJ52wa5ACPiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N8V6aJM9XQLydw1Y0AwQKXcMHvuchnmnbkZn4ZSjRcI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:48"]},"IP":{"Case":"Some","Fields":["185.103.135.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[9231]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["W2/M4Qm7uOOxpj7DRgKrbiQ/l80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OogJjrpj2gAMoMjdHynW2LoiXvos0nLBAYXE02yEcGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:33"]},"IP":{"Case":"Some","Fields":["23.128.248.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::69]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FatalUnicorn"]},"Identity":{"Case":"Some","Fields":["W22rFRbzMS5/Po2s+qvHMqXfZ8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lKy5MC+wniXTKWVhhWGNHExx4oiDYhxfiMxW5BePaFo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:35"]},"IP":{"Case":"Some","Fields":["94.156.175.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=70000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LauchRelay"]},"Identity":{"Case":"Some","Fields":["W01rhFrDzJfrMWnQx3RGk2QyKUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rTXcYXihBbcELkE5kEmvieHbDOCZ2DkicVdCH4/FJy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:51"]},"IP":{"Case":"Some","Fields":["148.251.55.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:201:8174:dead::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TorPi"]},"Identity":{"Case":"Some","Fields":["Wz8N3CW4oK2ikBOfwbE1WjInHis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zZI5Th4EnjcDsuxQLFE7t7x1L6v3UntyNPs4+1nZ5AI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:46"]},"IP":{"Case":"Some","Fields":["152.67.205.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShinyTsunami"]},"Identity":{"Case":"Some","Fields":["Wzs+CbpfHrb3KgT+rYHZrLiPiTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TUwvISwUmpW0LN+eo8pxrgphbX2XokOQP/m/E3HqRYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:20"]},"IP":{"Case":"Some","Fields":["93.99.104.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["WzJtyPy/4ru84oBjmOV7bQVTnsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["85p2Il2wy9WRW2AA3BOncbW5zF62XjgKZjRv2rnhaW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:46"]},"IP":{"Case":"Some","Fields":["185.220.101.54"]},"OnionRouterPort":{"Case":"Some","Fields":[10054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::54]:10054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay03V6Rocks"]},"Identity":{"Case":"Some","Fields":["Wy4qPrBl9oQgoDqKjl40u0rPRNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fx/KGtr/NzXGIHrNQqd8PCvsIDeQCo0V5G2c88UhBfU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:21"]},"IP":{"Case":"Some","Fields":["185.170.115.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ad1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WyVljhwlbN9M9s8Uvlxt8E/8O+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kv/rBET1dZWDJi0sKjv2K31M/TEXBG2+/cN2d9ml9OA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:47"]},"IP":{"Case":"Some","Fields":["5.39.185.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:f640:0:8::2:70f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fastlane"]},"Identity":{"Case":"Some","Fields":["Wx8NrzeKH6/P1fqc3GbRAj3AJ24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLzCGiFoHGoguh+PyBvYVMQbyjr2rKo3HrOwJz0zPcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:19"]},"IP":{"Case":"Some","Fields":["178.63.25.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:608d::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanisFamiliaris"]},"Identity":{"Case":"Some","Fields":["Wx5f1icn8CG1ruZVTlfuWEKQnW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rdcp47BkmikndhXlIajXZPgNYH81MJT8f+4TtXhAEpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:10"]},"IP":{"Case":"Some","Fields":["135.148.100.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay23at8443"]},"Identity":{"Case":"Some","Fields":["WwehzqQ7ypipceR2EcDw1hsYdh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OCT6BnEaN2bAo11jOB+kmZ/ggDMBpO+9DsaJTABG9m8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:56"]},"IP":{"Case":"Some","Fields":["140.78.100.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedTor"]},"Identity":{"Case":"Some","Fields":["WvtQLSYLzMmXTGV+lWuHjTNLzMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc1CT+3q02jMwXc9sJFAqqe3whDY6ZVWJ4t/0oP5ZrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:34"]},"IP":{"Case":"Some","Fields":["23.154.177.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whitenoiseRLY"]},"Identity":{"Case":"Some","Fields":["WvnpzFkD8R9taqYB6yEuVprmbJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8M+tczdjzU7II2oBYfePlfIb/kHc5jv9Cb8edl8JDYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:00:06"]},"IP":{"Case":"Some","Fields":["159.203.29.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::2bf2:2000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RedStar"]},"Identity":{"Case":"Some","Fields":["WvNjYwvf7t2m9Skne13TBZVhANo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dHhIKcJxKxyhJl/s/wnttn6hRj3M7hWsCGixIiLzUhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:48"]},"IP":{"Case":"Some","Fields":["95.88.176.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WuqjL+aWg/ixJx5KMx8Wohv4CLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0rQCDg+lr+6QwhqYIHVYpqt08vTUaPwLjmOB0jxVHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:38"]},"IP":{"Case":"Some","Fields":["2.207.47.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuckDIS"]},"Identity":{"Case":"Some","Fields":["WuXD7n2Ys7ZM1R9yo1bhgUcdWfc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iU2tcYDbnWC+3mjox5ba2PUQQLAPdIGTaz2O7w3kaO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:30:38"]},"IP":{"Case":"Some","Fields":["157.90.226.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:aff2::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra36"]},"Identity":{"Case":"Some","Fields":["WsxZ8xF/H2+tjIn0aYI8tIvbXS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEaG1WO0IgsUoulQW3sCZAqtc//nxuQffwLBS5VSx1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:27"]},"IP":{"Case":"Some","Fields":["213.164.205.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritoinfinito2"]},"Identity":{"Case":"Some","Fields":["WsYdwLUcg6wuZV4GtzluzX003Ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6E3JLFxKq9+K3tcwxy/rdOyU7bkidPERvl2LCdQSF7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:28:54"]},"IP":{"Case":"Some","Fields":["187.207.96.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[9130]},"Address":{"Case":"Some","Fields":["[2806:106e:19:2f73:2ca:5aff:fe00:2]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllTheWorldsAStage"]},"Identity":{"Case":"Some","Fields":["WqY3AgWqYRztlnvbTY68udXbV6k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YZSsld87V3Hzj0bMUIVEwI7o35iy4EqZ55E+b0ZbX9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:30"]},"IP":{"Case":"Some","Fields":["107.189.1.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:ef7a:391a:8c71:a2f1:9506]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AcMNPVTorBox"]},"Identity":{"Case":"Some","Fields":["WqKsNz0TLiHxG/+ZFnr5K/HLfEE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4lrMN9fqGdDJLRT7Boucaa3M9GGK3r2OP9Ckv5Zk7Z8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:36"]},"IP":{"Case":"Some","Fields":["188.226.222.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:0:1010::ee:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Wp7ShlOYBS85MVOloQtCqsOnt9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mDB3P5IvcqsDI+Y0mmreeyaZtCN1h/0TgeB9Gy2fGDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:56"]},"IP":{"Case":"Some","Fields":["93.95.228.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LanternRelay"]},"Identity":{"Case":"Some","Fields":["WpzSfwbwFPh0NZoBc9j76QG5MYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jjwBdZ7YiiFV//IRIGRbVmJiYDM5gyNZA4aZZdNt6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:59"]},"IP":{"Case":"Some","Fields":["76.189.140.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CryingOnion"]},"Identity":{"Case":"Some","Fields":["WpsuxMZS7E/3LIxnOTe+J7NIZmY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T+lMi7eqE81lBqFkPSOdgmoBNWfndY/s35f4EM4aLv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:21"]},"IP":{"Case":"Some","Fields":["5.181.51.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:3f:12:9460:76ff:fe49:d419]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireElementX"]},"Identity":{"Case":"Some","Fields":["WpQEya9y2xKt6y/4EOfaEtPWbO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bFkXawXfyeo5jbsJTrqG4WyTtvVY7pXLiBRNAxd/e50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:24"]},"IP":{"Case":"Some","Fields":["194.15.115.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["WoKSkmxeWiRtNbhDpylC/OwjW6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0KQzuyteYGMuie8925KEQ/qf2Lv8Gna6nejlFOyCWUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:25:04"]},"IP":{"Case":"Some","Fields":["179.43.159.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["Wnm9XMbBKNfY37SWmwJGeU8Rf8Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jobER20BDzapZRSBQ0Tw7YWLE/2ip0UXzrG+u3BO4Mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["95.214.54.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3647]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kinaugate"]},"Identity":{"Case":"Some","Fields":["Wm/hHbi/yts5W1NtFs+dL1hDbTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i10d7C6V3+pwfohYIAJK0Jk99Y/Lpvs1Z7GBzPU2ovo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:57"]},"IP":{"Case":"Some","Fields":["185.197.195.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCtorrelay1PL"]},"Identity":{"Case":"Some","Fields":["Wmwy5WKutyAlI4zvPSt2OiLlTtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8clu7PqA09Dd6nQWtosXTVcSlowKrclIGJRdP5H6RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:46"]},"IP":{"Case":"Some","Fields":["151.115.38.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1e00:3d17::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["always2"]},"Identity":{"Case":"Some","Fields":["WmrYv7p09kaCKZbsA/00hDU6QbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hoLikPOd8y3ahZZxXp3d6cnMWp9LI5q2ZTB2ywyUXgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:34"]},"IP":{"Case":"Some","Fields":["119.59.110.153"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goodaires"]},"Identity":{"Case":"Some","Fields":["WmSGPC2XDVxfe9eVZ3RxPSBTpYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oywTezq4LQfbhWeQ06eHAOQNmSdgfmUCw8lzraOg478"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:52"]},"IP":{"Case":"Some","Fields":["190.103.176.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterry1"]},"Identity":{"Case":"Some","Fields":["Wl21U6kme0WB3lLxrmMOIW5hXRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5EH8tfgZk1i/7iuYknPncNNyc75SDtcIcZl1Q/zT7HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:48"]},"IP":{"Case":"Some","Fields":["70.109.131.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelpTheUkraine"]},"Identity":{"Case":"Some","Fields":["Wlr4djk+YrLeGN2tOK85L09rHFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZRp8rqOhjhGxw/7PZNVqLGbB/aoTy3HTGTwAtcAyGZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:32:41"]},"IP":{"Case":"Some","Fields":["49.12.189.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:e546::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["russiafuckedup"]},"Identity":{"Case":"Some","Fields":["WipDE5ECbeFe6ZvReSWDETovgYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rJdfXSeShvSYNBSAB695q6How4Sh72DHybPCj9o05NU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:17"]},"IP":{"Case":"Some","Fields":["89.76.241.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl4tjdevde"]},"Identity":{"Case":"Some","Fields":["WiW7Q7sO5Xj95zWnXAKCJapKE+I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvyqfrs67qjD7G0Ou1toFO1EXbwzhBEZtvly/m9RUIY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:17"]},"IP":{"Case":"Some","Fields":["89.58.45.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Politor1"]},"Identity":{"Case":"Some","Fields":["Whf0fl9ExVCx83SahUl2bjTCwCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uyhszRzCaUZOfhG51IViH/wAgYVzhUfQnVqcj6JO5jc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:01"]},"IP":{"Case":"Some","Fields":["158.69.217.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3000::10dd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra67"]},"Identity":{"Case":"Some","Fields":["WgZD5FLhQ75Um6s7/ldfQN29Unw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNFQDD8JfxdPTbcs6NtUT+mv+ENg2jPeYdjIEk6L7dc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:11:18"]},"IP":{"Case":"Some","Fields":["94.140.114.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSouth"]},"Identity":{"Case":"Some","Fields":["WfoOadzN4Fv7QRCqO+r4P6bKZaY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2I15VpcIu14sAafVohB0Cc6AdghvAvYAF45RlMry2aE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:51"]},"IP":{"Case":"Some","Fields":["193.218.118.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anonymous"]},"Identity":{"Case":"Some","Fields":["WfhzEyMySzOCX/M84E8iGDkR5z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8sRBSSp4DulK3pXBrbb4aFGBRsk+Wst/ZB4yJNx5AxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:07"]},"IP":{"Case":"Some","Fields":["144.21.40.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raven"]},"Identity":{"Case":"Some","Fields":["We5b3AD9m0suhDa7bkq4kTrOoy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["86DGqgNY0tWLUnOksEYGY1o1xlaHZuba7Z9WDc98RyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:35"]},"IP":{"Case":"Some","Fields":["91.51.254.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toronada"]},"Identity":{"Case":"Some","Fields":["We3ROdlVGiW323zdgvEsDDeKksw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fr25OdPrOufXJRVlmJ8yUOPP9ZiJjVK++uWP7ybZaEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:38"]},"IP":{"Case":"Some","Fields":["79.158.148.104"]},"OnionRouterPort":{"Case":"Some","Fields":[50007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mriun46k"]},"Identity":{"Case":"Some","Fields":["Wefg0DIEmqAYMDXkm3xFQWcVTq8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uSrbs8RTNuw8NGFT9lQ38scntLG5Na4qorzIcdZhJFM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:28"]},"IP":{"Case":"Some","Fields":["114.24.0.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8008]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BananaSplit"]},"Identity":{"Case":"Some","Fields":["WdQbBi8jJNDPqAIkwOTNYpzu84o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqfN9+T+Msro3KHJIYchvGV2sqKELwd2aYIAZpuGSKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:52"]},"IP":{"Case":"Some","Fields":["81.4.109.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spaghetti"]},"Identity":{"Case":"Some","Fields":["WcqW582jCrNsWXtJnISL2EV0XqA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1A6ZD7PO1lizr8Ck5L/CIwkESJY2dxzbUriEMjcR86s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:33"]},"IP":{"Case":"Some","Fields":["5.135.177.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hagardunor"]},"Identity":{"Case":"Some","Fields":["Wbo1WIpjNG/maujPZYgYQg3W5bI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEp1JFUld82bMLpgMnDKokjaauKBOCnAPvza0iHMCcE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:15"]},"IP":{"Case":"Some","Fields":["51.77.202.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["WaW6z+MrbKD49ntmIbPouJMSy3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COdR0VpOJmMpoag+Du2AkcXqnXx/xAPtxrBjYJCuQzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:42"]},"IP":{"Case":"Some","Fields":["5.45.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ArkGuard02"]},"Identity":{"Case":"Some","Fields":["WZ9tVLtdyNr28zVpmvZpsh/RrzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hdWf8aZm7WI1TB2eQ8LpvAk7f+30nKe8IEdwCa/e3ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:41"]},"IP":{"Case":"Some","Fields":["65.108.247.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dunnosomething"]},"Identity":{"Case":"Some","Fields":["WZpW+rjoqou0Z6tzCtofEjgn5Ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXo+LgAq1ugji9xCxREDdza2BUzw2BHDC6+TUNV2UQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:49"]},"IP":{"Case":"Some","Fields":["88.198.14.190"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[49030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNuc321"]},"Identity":{"Case":"Some","Fields":["WXk4K1sq/lPTpPZY4huXHFRK1TE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QMkM25jX9UFe1PMHag3eeKN0gRPfm9vE0n9UGAIpTfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:22"]},"IP":{"Case":"Some","Fields":["85.230.122.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Playstar01"]},"Identity":{"Case":"Some","Fields":["WXWFi2ofN8zJYCa5RurPCOF3LQ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["natHk1AXIVuzL2abxn/uQgJ1DWodoEGTxGTyRJ5QYzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:55"]},"IP":{"Case":"Some","Fields":["192.121.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2af8:0:b436:f5ff:fef5:a154]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isnotsocial"]},"Identity":{"Case":"Some","Fields":["WWgDCABO0y8E4cVqucaLFMx7W3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gBJ8TLQ87FHK0KjegnXYs73EVqQska7NSkx7QJm6CCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:21"]},"IP":{"Case":"Some","Fields":["72.212.32.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["WWMyNesyiach+RJnqLwrF4p13l0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hUSYioFsj2WZfe82lY11ZQTjUgK6FJBrUye/JrQ/eEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:41"]},"IP":{"Case":"Some","Fields":["37.120.165.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilkiRelay"]},"Identity":{"Case":"Some","Fields":["WUgWHD5TnZvfGKA/FxFGRV6R21k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1Eiab/B+Q6wEsWe2HE5fAftws39Q02wB6KC8Ogan+BQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:50"]},"IP":{"Case":"Some","Fields":["65.108.129.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:188f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WUGT5R84LjQIDXa17K9ce2fPBe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KI0wz4h1BLwXwQKW04JXppc91fzaow1EJI6buxvUlNQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:50"]},"IP":{"Case":"Some","Fields":["37.191.195.67"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe09:486f]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE77"]},"Identity":{"Case":"Some","Fields":["WTQHl4+I59K0UEVnbnw3krwsmZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ch8OgvwtI9G9ErwyG01i7dSeu4ZYg4Jy4u89ls3cHxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:25"]},"IP":{"Case":"Some","Fields":["37.221.67.56"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6030::4dea:107]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI09"]},"Identity":{"Case":"Some","Fields":["WTNHOjVjwGZsW7gzwdtVPB8pa3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lox05fQxIc6BhHje19+2Mtle0MZVHogEgGsb2KbP7jE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:00"]},"IP":{"Case":"Some","Fields":["171.25.193.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:2::234]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay28at8443"]},"Identity":{"Case":"Some","Fields":["WSq4A3LbA2X5ojV3AqyXwG5fg1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U7LLlaSKW2DVV5+f/TM+QQGAoCgwVFeofH8OhFM47Ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:05"]},"IP":{"Case":"Some","Fields":["140.78.100.28"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funfair"]},"Identity":{"Case":"Some","Fields":["WRY8aCHyqNs/omBHLbRmSfZn5a8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kANLXNfV4arqtUXLrVB1nbdU0ipNGMOw6gC7QiIwnBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:29"]},"IP":{"Case":"Some","Fields":["103.102.161.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra83"]},"Identity":{"Case":"Some","Fields":["WQ9u26Bjq6ywg5HKPXouw1/SAjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hsqpHsqXg7JmD+c39A8ou+f0HbuQsl4QJvAc4ikSEKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:09"]},"IP":{"Case":"Some","Fields":["37.228.129.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GermanCraft9"]},"Identity":{"Case":"Some","Fields":["WQMDdyqxOlVUgEL8NQHAKVKfUMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZdAIW12akLrQCEDNYStLjWi+Hv3EfkHcaRgtOfhWUEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:38"]},"IP":{"Case":"Some","Fields":["157.90.246.152"]},"OnionRouterPort":{"Case":"Some","Fields":[446]},"DirectoryPort":{"Case":"Some","Fields":[83]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:5fdf::1]:446"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slauthtertodeport1"]},"Identity":{"Case":"Some","Fields":["WQC3VzlIuHodoM1cCwbNy3Fl0gs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8xCa/Sx0bBqf61BEagloY9vv78JbCnO51YOAR7bbMw8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:15"]},"IP":{"Case":"Some","Fields":["141.98.9.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwewwlNL1"]},"Identity":{"Case":"Some","Fields":["WPwqqzeSrDeJfTQzH09OADQd7Aw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+OPwxgEh3nCjsgWPRrS9xOWWCsyb+zXmsrh/ZXl5Gr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:01"]},"IP":{"Case":"Some","Fields":["185.14.30.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:27ab:0:2::22]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaymirror"]},"Identity":{"Case":"Some","Fields":["WPPilW6ruB9nPi+5DhbgAdtKw64"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XewSbVY4BPLAbyUOwXbTDLoWuxbGgghl2FEarbf5aBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:03"]},"IP":{"Case":"Some","Fields":["85.195.230.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uncreativeGuardian"]},"Identity":{"Case":"Some","Fields":["WO+V+YsRmwoLKir9Wn/GtUzGmGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j2q9Bwp/WBuTA7zat0iX5XyGkzeeb8Pb2OXGXIz/Noc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:13:13"]},"IP":{"Case":"Some","Fields":["178.12.22.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion252"]},"Identity":{"Case":"Some","Fields":["WO6WiiRwDAtR10lrUnOtvidOxLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BZJG5QMng+JW/VyU1rFvPrUfJtsutu2ynSVPx0im07M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:35"]},"IP":{"Case":"Some","Fields":["38.147.122.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamAAdams2"]},"Identity":{"Case":"Some","Fields":["WO2cnDXkM+5Ydk1iiStP/VGKPNA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QimvA0Xc8peq3ssxa/kOLh5ucNnA1cavZOhiWK6I35Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:14"]},"IP":{"Case":"Some","Fields":["185.21.100.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1158:2:cd00:0:74:6f:72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enbyfaggot"]},"Identity":{"Case":"Some","Fields":["WOwMpz+r9ut8tBoHAINM1eGqHfU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tz7fEaj4T4a3d94ybdzmdLKx056qWD/ZhkM9l5L0WBg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:03"]},"IP":{"Case":"Some","Fields":["78.45.4.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["WNkoDUe94hhONGckpFFn4gKDmbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vSxnUGiefV9Bkk7cuERpOvW5dI6U7NKcULf6bENOvFk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:58"]},"IP":{"Case":"Some","Fields":["2.58.56.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay20at8443"]},"Identity":{"Case":"Some","Fields":["WMvXckIq76hxkFYMGTwOjAO9pr8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AAc02IMbv1Zv6gm+4PdoqdpIknijcazbHtfTZWb5O/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:09"]},"IP":{"Case":"Some","Fields":["140.78.100.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl0tjdevde"]},"Identity":{"Case":"Some","Fields":["WMrf2K7dn4hbRcIonIHRnZ2j1V0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FEHzUH50rLx7XcYrsAx9HrrdZHdTyhG/wMTtm4z+ySg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:16"]},"IP":{"Case":"Some","Fields":["84.252.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["f50"]},"Identity":{"Case":"Some","Fields":["WMLpugKsCjmwiwrnA/XDGDVLUxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SRiec2YoLq9XDLm3Cpbhv9w6s3mRyYeLJ/d6jyeUTGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:31"]},"IP":{"Case":"Some","Fields":["116.203.17.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipba"]},"Identity":{"Case":"Some","Fields":["WLws/6eJT8j0zF2Kd+OP3P2x3A4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q5/MOkUQOFZNDugqeWDm8eyncTOiPq6GJzCVT1iguto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:33:50"]},"IP":{"Case":"Some","Fields":["185.220.102.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::241]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iblech"]},"Identity":{"Case":"Some","Fields":["WKmSHdChOJNWY0YlxbFKzBGUqVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ftiWVANM3KhxtQk9X8GaVKw/aiOVVKtHpLxsMSoTBJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:59"]},"IP":{"Case":"Some","Fields":["79.143.177.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3003:5755::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["serpico"]},"Identity":{"Case":"Some","Fields":["WKcZlxLA5Ss8Xy+Oiye1pivli8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0EWT8gfvz8YQ5VjTNnmn02GSXE7q0l7A69DUloV4TME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:27"]},"IP":{"Case":"Some","Fields":["45.141.157.50"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["WKKg6Enp42kvexNiI1B+k8sJkVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["musaWRXq0iZl8x4YpWfIsgpXy/N10MLA9JaO1N3Huyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:55"]},"IP":{"Case":"Some","Fields":["188.165.26.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber44"]},"Identity":{"Case":"Some","Fields":["WJdSLIvMiGpZ4wMhJd2x0zoVarM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/+vyZZPRfcnIg53s2gzgvCD4saEpLg6mGT+rnQZJMb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:29"]},"IP":{"Case":"Some","Fields":["185.220.101.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::22]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Asen"]},"Identity":{"Case":"Some","Fields":["WIpsHsSHWDD161foljGvsocfWFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLshQOGPXMBZk5Cif86MFOHte7j4h5xDywGA3SS5BqQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:45"]},"IP":{"Case":"Some","Fields":["83.137.158.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trumpet"]},"Identity":{"Case":"Some","Fields":["WImlTM1owxn2+Kzv+B4GPm6Eub4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nQ3WqHYpVzAfa4mzuX3wGju2vNS0HzhWYMzylvf7Ug4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:12"]},"IP":{"Case":"Some","Fields":["147.135.64.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alxu"]},"Identity":{"Case":"Some","Fields":["WHserx4i4UjvsBDaozes3NTbXLo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WOkSzEWRcxqt39gVfexenCSbDo8Q4Dz0soi4pnaRjn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:48"]},"IP":{"Case":"Some","Fields":["198.98.62.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9941]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:4b0::1]:9941"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CarabineroDeChile"]},"Identity":{"Case":"Some","Fields":["WGmMXlGNQo3KTZeArYN5u2O1e0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VjCvZQFkPVR6U8Q1J9YuzCgPgIiCIC8lDY7iQDLufHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:20:23"]},"IP":{"Case":"Some","Fields":["107.189.8.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f623:5a78:29a6:8492:27b0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guenthergraubein"]},"Identity":{"Case":"Some","Fields":["WGgDt+354o2ZtUCXckKH+3EJdxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RSkZH7nRk8ovP+IjOwYrmLdms1irpYC8gqk4kmB0w4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:51:35"]},"IP":{"Case":"Some","Fields":["78.47.169.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:d4e4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchwarzeLocke5"]},"Identity":{"Case":"Some","Fields":["WE+qADOlLEpwkcPT/fcKLv9sc50"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ABMeSORAYFxjmx7wRQqwHcRu7Zsodhpy7GKPMHWmYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:58:27"]},"IP":{"Case":"Some","Fields":["88.198.207.48"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:2276:1::20]:53"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["transilvanianrealm"]},"Identity":{"Case":"Some","Fields":["WE56cU1oJmCDuHM3LXZll732eTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RavoP1zdtNOwXfzi92sTWqZ6WyJq1QGAkUp5TKXGSIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:27"]},"IP":{"Case":"Some","Fields":["117.53.155.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eeg6AiteuGha"]},"Identity":{"Case":"Some","Fields":["WEfVoBxHFmFD9zjHcDNEUXs56xA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cT14g5F41Bj98AgHvH6uLu4LwPI+gJX3Zm9/rLyeaLk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:26"]},"IP":{"Case":"Some","Fields":["5.2.72.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flokisboat"]},"Identity":{"Case":"Some","Fields":["WCLNjoFKgQCE+zOf+4V1/HEMfzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R3DVQXIoDWSy12X8DqNlKZLJuZmkChJUnzfsbTkA/iE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:42:37"]},"IP":{"Case":"Some","Fields":["188.68.50.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d009:2844:1ff:feec:de5e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TradePath1"]},"Identity":{"Case":"Some","Fields":["WAfTykMh38LcS8F8GXZa27AbSB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nKC8R6AP2PJdqa/HJlxoIcWY+lbUGiMVdGeNLsG7QmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:52"]},"IP":{"Case":"Some","Fields":["35.136.7.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kricklen"]},"Identity":{"Case":"Some","Fields":["V/ySfxza3skzgOJH7pSaN4eg234"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hox9ZbNrA9vSfTZYr9RlJJ3wbVe/yh+4HBjma9nx+28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:08"]},"IP":{"Case":"Some","Fields":["5.63.55.93"]},"OnionRouterPort":{"Case":"Some","Fields":[35278]},"DirectoryPort":{"Case":"Some","Fields":[35288]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TachibanaLabsRelay1"]},"Identity":{"Case":"Some","Fields":["V/GAk6b5UrHF92cqnOfHlhPB2RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VlonvJMoK57d9n/utT3KtUOnqB/kl7knMI6uSKh02xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:53"]},"IP":{"Case":"Some","Fields":["65.186.37.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0161"]},"Identity":{"Case":"Some","Fields":["V9DKk7Bp3MwsNL7SvcvHGvjInT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F/2bJgMdNntzj6N3IUWOX9orIDPZ85WHyKerIcwjeNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:54"]},"IP":{"Case":"Some","Fields":["185.220.101.161"]},"OnionRouterPort":{"Case":"Some","Fields":[10061]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::161]:10161"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber48"]},"Identity":{"Case":"Some","Fields":["V7wI8AxqCDYx7zI1LO/3Vk0qZq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nLt0kwCmtBEvejAeH7uq6yFmcfXB1ji78Nm0K6lD1FA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:38"]},"IP":{"Case":"Some","Fields":["185.220.101.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::24]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["V7aHPC3DYuWkKoCftWJM2joCVDA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["es+XLm5qyFguBkRG99Srbdxl6QsVkGrJjN3/VDhmYho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:28"]},"IP":{"Case":"Some","Fields":["69.164.194.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privater"]},"Identity":{"Case":"Some","Fields":["V6KVN38xZ61VS1IfRhUYSUPDnOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CS8bNPTtPdgx1Dlo7J+rJdyKHtTtowCHmAUNjfV8Ic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:36"]},"IP":{"Case":"Some","Fields":["135.181.213.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3a:2b96::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit4"]},"Identity":{"Case":"Some","Fields":["V5b+HrV0TrNj/bSZ/7wveTPAyko"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2oCbe0BK+yZ4Ldn9Ei6oSxMJ5m6AuyrB/mOk2VaALBQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:38"]},"IP":{"Case":"Some","Fields":["185.129.61.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StreamsofLifeSpa"]},"Identity":{"Case":"Some","Fields":["V5C2KtbHmhCSswmTqPD38jqWn9Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIx8DnniTQTB6vd7zExaDXAENaoFLiS8A2sNwFAYqeM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:40"]},"IP":{"Case":"Some","Fields":["51.83.237.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marylou1"]},"Identity":{"Case":"Some","Fields":["V44Afl5FNfv+93WNhYewe0yMXQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HBjXtmKdAsdd5L8P+miJ3GlnR565fO/rTpXHVeF0ntY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:03"]},"IP":{"Case":"Some","Fields":["89.234.157.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2608::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ruebe"]},"Identity":{"Case":"Some","Fields":["V4jOwKfF7iUfxyxVcwprH8rqHZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WVTLTwcMZs97uZiOnnGHB5HtCYdOhNeB/VD19jnGqh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:28"]},"IP":{"Case":"Some","Fields":["109.70.100.1"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicOnionDefender"]},"Identity":{"Case":"Some","Fields":["V37NshodG5LoN7cLmV92shUdgyc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YGzcjZQJcah5ex9PI2Q9mrNNejrVzoE/fGl0FA/syYk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:55"]},"IP":{"Case":"Some","Fields":["190.130.150.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["V1bZxAPYm3mv5p1QuwaCujGDGfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wScHOanV/8JOZCxQNtE2QKcvlWig02o/97DVr60Z6CQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:11"]},"IP":{"Case":"Some","Fields":["188.68.58.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pythonian4000"]},"Identity":{"Case":"Some","Fields":["V1FRQkm0p/pRhzY7tsT3YSZykTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SF6/CRrma/w7/fw+n8iq24eg3qkoC2pzEHQpNfpVncY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:04"]},"IP":{"Case":"Some","Fields":["173.230.128.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:91ff:fe96:8818]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["masstor6"]},"Identity":{"Case":"Some","Fields":["V0ZGHr1cle0q6kBTDJAUnTl8+3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8An6zMfvQdAJyjS4cZcXtH43AxLIAwVVCwOngXy4htM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:55:44"]},"IP":{"Case":"Some","Fields":["198.12.71.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay0"]},"Identity":{"Case":"Some","Fields":["VzzD2PHIRaozqkWTtoyg1HFWqjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UQoCYhe63rGUPRfvjgfo+4pwFicyrmLihmO2oUrGvkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:30"]},"IP":{"Case":"Some","Fields":["51.15.98.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:162f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pishkin"]},"Identity":{"Case":"Some","Fields":["VzyIk79DlTXcZyQ8nLY9IEqUezg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfMRX+YlWljzMF28CkQ2aFKHMMfwbh4iaQCSN8q2X7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:29"]},"IP":{"Case":"Some","Fields":["94.242.55.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1838:36:3fb::c9a6]:9009"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["Vx3TBGtTRQeJdwPjNk4gbe9l0UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BZVljnhIHz5ynhEHDUMuXR5VnigGUjJKJ8s/wOsis3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:04"]},"IP":{"Case":"Some","Fields":["185.209.160.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk13b"]},"Identity":{"Case":"Some","Fields":["VxvnQ13J1mC7XuCjdlDiQhAHuuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4eUSD2OokH2zxRI1BitmUwrFmKQ9s5n/smhetnsVtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:50"]},"IP":{"Case":"Some","Fields":["51.15.44.251"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:190a::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deth"]},"Identity":{"Case":"Some","Fields":["VwZC05GXpyluOMnVIbbv28Z/uG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z55ANRdkN/w2LJX82gVJM14nxiB0UGC4Sr1+WvGUsVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:59"]},"IP":{"Case":"Some","Fields":["141.255.161.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aesop1"]},"Identity":{"Case":"Some","Fields":["Vv0s8rn7dr7FXIc/sQJNanGncRg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q+PydosUdr3Ju/wSRszmQG6A82tkr+ljjF01qqWPOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:52:58"]},"IP":{"Case":"Some","Fields":["82.165.70.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeathscythHell"]},"Identity":{"Case":"Some","Fields":["VvLp5jlqqp3lTg4RxjcKRTh6vE0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xfTYGRU/YFcw1eOq2hjUM2KdzpJyOJfAGflggd9u2NQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:50"]},"IP":{"Case":"Some","Fields":["103.97.125.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DocTor"]},"Identity":{"Case":"Some","Fields":["VutxZrBdtlMfZj+DF84C7uWv7U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IjqMoWULiaBU8FJTMVUqPfkEJnPeTpigYrhIVbpqAW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:04"]},"IP":{"Case":"Some","Fields":["77.20.0.242"]},"OnionRouterPort":{"Case":"Some","Fields":[14353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iDidEditTheConfig"]},"Identity":{"Case":"Some","Fields":["VumIL8e2LE8qlRxeLVcNbnTxXG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i99jjuQOxmH1lVuI87zxv4t6Jh7Zr+5GbGf5/RzOay0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:22"]},"IP":{"Case":"Some","Fields":["155.248.194.143"]},"OnionRouterPort":{"Case":"Some","Fields":[26666]},"DirectoryPort":{"Case":"Some","Fields":[29030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torprops"]},"Identity":{"Case":"Some","Fields":["VtyommtBraMOiR72X9zAcdwFB5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWn3fV96lYmFlZQNPbunRUoP310pb8FE34F/BLGo5Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:39:03"]},"IP":{"Case":"Some","Fields":["45.19.142.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SaruTorKoumori"]},"Identity":{"Case":"Some","Fields":["VsXxbQbI66bfpcE576gr2mF0+k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDhAnKPDZ2ZMTr/g3/1lsoko6YfML+sbUQPishcWegE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:10"]},"IP":{"Case":"Some","Fields":["107.175.28.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Vrugqy7OO3XzZJXiYPQ+CEZvm28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c3Xe4zRwcMTJh8Z374VbPmZ+iSH1hEkIwEpctfDBBhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:09:12"]},"IP":{"Case":"Some","Fields":["112.213.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:9400:2:0:216:3eff:fee2:cb2f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["auxacacia"]},"Identity":{"Case":"Some","Fields":["Vqy9jEx6sa67sTfDWlol4vAPXtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V5YvfGnQnbaKIs/v4Qki/ek2yHBDUDqaBz+Uw2QCVVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:03"]},"IP":{"Case":"Some","Fields":["45.77.70.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:13af:5400:2ff:fe26:aef]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Akka"]},"Identity":{"Case":"Some","Fields":["VpJ+YbUebzY/tVSYFQpt389wd/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8p6kbNyB5+mz9CgsXMZfiEHWg5HS8bKP33iw3oPCxko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:58:32"]},"IP":{"Case":"Some","Fields":["95.216.33.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:2145::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunBSD"]},"Identity":{"Case":"Some","Fields":["Vo5DT3JbeCjRfvKzPC9cyE8Y/OM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P3VmGB/RWNjUxK2aFJkLGzw0AdLp2b2fjCxsjD/AutQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:45"]},"IP":{"Case":"Some","Fields":["91.219.238.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OrwellianNightmare"]},"Identity":{"Case":"Some","Fields":["VotpE65RI+26MEkJpWmv6PnnPEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fr95K6pwMfdnpcLpyaaNn+mASANbFUK0V0DOEvsHLQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:46"]},"IP":{"Case":"Some","Fields":["192.42.253.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:6b40:3::3700]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fisher42Exit"]},"Identity":{"Case":"Some","Fields":["VnhGCCQssVtw7Wy7j0Duo7Yq9p4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CDcxAeTomjg/59Sk5b5cJ38vwtQjkBYemOiZ6kKY+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:58"]},"IP":{"Case":"Some","Fields":["46.38.247.22"]},"OnionRouterPort":{"Case":"Some","Fields":[465]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:16:8:6::4]:465"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unprintable"]},"Identity":{"Case":"Some","Fields":["VnaAtPSsi5rg2TGzdJCM2OExgGY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9+n07RFuAP1GfdwhNQbpGW4LQx046Qn3T4GmHwO9tY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:47"]},"IP":{"Case":"Some","Fields":["116.202.247.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:241:448f::2]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeighborhoodSpidey"]},"Identity":{"Case":"Some","Fields":["VmYNviHnqd/zFjLgNTcugwZYKTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N7JnLZxQ2ywuk0BP5u9Lbbb8vSm3Uba/nuEZkK0THTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:04"]},"IP":{"Case":"Some","Fields":["23.171.176.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["VlAIiLSe0RNi4n/xiOAQx07MrhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RgdYRwXKIHs+ZTBo3hBI7cwfkPvNBnWIdPIf2bA02TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:07"]},"IP":{"Case":"Some","Fields":["138.199.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[61112]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN8"]},"Identity":{"Case":"Some","Fields":["VknLIVjalPt0dBXyZii+wH+ldhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwsDKb6ud5PK8OXDAQf2gZCmmTJFO66o2F/yz2XahN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:30:42"]},"IP":{"Case":"Some","Fields":["199.249.230.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::122]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5h4d0wNet"]},"Identity":{"Case":"Some","Fields":["VkVzno73LKfZ7h4SZ4tRpv+HEcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/vKJyHkcxgvYW/C+YpzxMad1xDsh0deQHHnOfzle0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:29"]},"IP":{"Case":"Some","Fields":["185.94.223.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh5d4h56s468r784s32"]},"Identity":{"Case":"Some","Fields":["VjRN7jTTNDCQ0ArYjOLVi1BxLIE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mPi5RuC1TXd9Rdwqbv8p0AFgvILLNyQRzlw+eofRd4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:02"]},"IP":{"Case":"Some","Fields":["51.15.96.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:43::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayondiinkarazan"]},"Identity":{"Case":"Some","Fields":["VihJXZk5qME53UQUAt5C9wErcJI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KlikN/VAQORcsBDJdbrYo/GJn8dwA1pAqME/duoW540"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:24:12"]},"IP":{"Case":"Some","Fields":["185.220.100.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:8::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["VhkFYeYI6wx4Nm0O04cZfmCjmJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KHuoaNkPNot1Js4u3TxeT/MYirtPXxg2vb30tQCcScc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:58"]},"IP":{"Case":"Some","Fields":["23.128.248.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::65]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["leRoyaumedAmazone"]},"Identity":{"Case":"Some","Fields":["VhCVbYWd/cmGipHKas6i6ZIwxAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jtNiOzsJ7OIXlZVUa4GLT45xMCbSU/0B2vCdwfzKAtg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:25"]},"IP":{"Case":"Some","Fields":["185.227.82.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RASPdatenschleuder"]},"Identity":{"Case":"Some","Fields":["VfHO0+JZBFpDpHbLxtMPdsw/Ybc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VxOdICyOl/rfvnkd4DNK29fAdIshf3PTwqlE/AZCBto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:36"]},"IP":{"Case":"Some","Fields":["109.250.2.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sharingiskaring"]},"Identity":{"Case":"Some","Fields":["VcX0WxfO3kNN4xaZ+s3n8wYjA04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BLHUK19AJQ2Pslw4GD7emjIZvtLs9xFVKzgdCoFOACY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:58"]},"IP":{"Case":"Some","Fields":["69.62.163.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Boedi9Worldwide"]},"Identity":{"Case":"Some","Fields":["Vb7BAyo8Zq5avybRFQU1IxhzbUU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/yiWGtB3NJNtdJlPg8IEL6Cijk1FA/+Z8bS3rw2ZzTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:14"]},"IP":{"Case":"Some","Fields":["37.120.167.200"]},"OnionRouterPort":{"Case":"Some","Fields":[12312]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:440c::3]:12312"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange034us"]},"Identity":{"Case":"Some","Fields":["VbWp25wrV8A1Q3o8xSprEdh3y90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TQhwB2sye+WN776jbOOcZnjCOQm6ulRvt07NJxuOFF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:22"]},"IP":{"Case":"Some","Fields":["162.212.158.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Vakr4qdsZKWg2w1PYdXco3tV7lI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mNYXU/8R48OlI3kNvbpXA+l17Wlm+hT0OHdREM8kCUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:28"]},"IP":{"Case":"Some","Fields":["93.99.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5e0:0:2:20c:29ff:fecf:4819]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["R2C4"]},"Identity":{"Case":"Some","Fields":["Vah39vytwlqompQAM9pJEDvLEfM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LcRRGlcrXL1Q8H8xWXkbNuzq8mL0eWDF5AT1QQ8fV60"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:39"]},"IP":{"Case":"Some","Fields":["95.85.72.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:275::e3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Valinor"]},"Identity":{"Case":"Some","Fields":["VaWnZKByF3p0N2XBVQNkIZArN4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A/iIivgxbCWwZtUO9Qeq0OLCRe/nQ0K444l5VGUvvjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:55"]},"IP":{"Case":"Some","Fields":["217.163.129.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeezNode3877619345"]},"Identity":{"Case":"Some","Fields":["VYBPnTf3snvQQms8sGxktND5VUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CGR1f54hFrOCDBSuqMD9XVdgwtDdYiMEKmvfkVSIgG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:02"]},"IP":{"Case":"Some","Fields":["88.88.16.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KUEXBON"]},"Identity":{"Case":"Some","Fields":["VXs5FG6xIcjPoixIrXi9vbyP86E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rKgUHd7cOOkRV3H75MA0dxaQTZLY9dZ1Apz7naer/to"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:53"]},"IP":{"Case":"Some","Fields":["185.86.151.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:43::e748:81a9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ogopogo"]},"Identity":{"Case":"Some","Fields":["VXrOyFD1Tu5lg5+Dys4rCCW+gR4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bEyAY8EfDArj0gS5EPvVscmPifdfJGKK0+oz9Ocy0NM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:45"]},"IP":{"Case":"Some","Fields":["192.160.102.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::a]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["VVprfLPY7KN2tMtnAVlqeyEeIdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m3/RWocVenT574B5WDd6h9YKTUG6lEWAwOjM4MCLRTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:57:18"]},"IP":{"Case":"Some","Fields":["185.207.106.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["magentasunshine"]},"Identity":{"Case":"Some","Fields":["VVpojjhd+YDhs6cslg4jg9nIrPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BfJWo/FkDh8iHAGqcU6miQ5AqKl2rrdsKWAZ8R3NmD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:06:15"]},"IP":{"Case":"Some","Fields":["51.83.132.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1864]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jakfrancjamoze"]},"Identity":{"Case":"Some","Fields":["VVj1RtKplt0vS2piohjfI4SEUuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["75hxaqNwMFgBM2xecm3/XhYH1bgBW4ouw7aoW/P1tFc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:21"]},"IP":{"Case":"Some","Fields":["5.135.156.12"]},"OnionRouterPort":{"Case":"Some","Fields":[4899]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VeilsOfTheOnion"]},"Identity":{"Case":"Some","Fields":["VVgNcbMXoHL0pNz26k7bAVc0ruc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UyXymXcWnevfuciTKULfj0C350rO9Y75WHZzRP1PxW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:05"]},"IP":{"Case":"Some","Fields":["51.158.146.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:213:208:a2ff:fe0c:8128]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodevotionn"]},"Identity":{"Case":"Some","Fields":["VUSQkpmbuMG6U9DRzWDgmZ2Mosw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ld+snNZSCefXkYeSmNCMnIufdiT3pWP1vaSl8C7zMS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:12"]},"IP":{"Case":"Some","Fields":["139.162.128.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:feb7:87d8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrRelayPi2"]},"Identity":{"Case":"Some","Fields":["VUCgSCAmIMy9Ff2k/w1ZZ9LE5oU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["geF4XXhH66Wy1A6ozY52Dfzb+C6Re/MkCA3LzXtcQNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:38"]},"IP":{"Case":"Some","Fields":["207.216.25.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[9022]},"Address":{"Case":"Some","Fields":["[2001:569:5197:1800:e449:4f90:2cca:1ba9]:9021"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StriveForFreedom"]},"Identity":{"Case":"Some","Fields":["VUA7llOoH2jDl4fgAL2fl+HzslA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jpBw/8C+nUNNz2U01zfU0DK60SNThYeT02d7/BrvvEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:46"]},"IP":{"Case":"Some","Fields":["173.212.231.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["VSwuKv3Rt0CjjKl2jFHsARsq9wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+aN1EvnowQCvjYJ6PBqhJxrNZSN2GtZuXLg2+KF21V0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:23"]},"IP":{"Case":"Some","Fields":["5.45.104.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1750:680e:2aff:fe12:6258]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zinom22Relay"]},"Identity":{"Case":"Some","Fields":["VRveRh+vAs3Ox7kbJ0udOjNaL0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+Lf1E6mEiud/nRSPE5V8WKurdEGL31+CuSqSAgUZbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:41"]},"IP":{"Case":"Some","Fields":["70.53.179.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KiandChi"]},"Identity":{"Case":"Some","Fields":["VRJVdJH4fYiPxIX/ZIQmWnVKv1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cOL2KUZPMW6dPbanIDAFFtPWXfypjOB0Mak1axErIUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:28"]},"IP":{"Case":"Some","Fields":["82.221.131.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["undisclosed"]},"Identity":{"Case":"Some","Fields":["VQ+MI4029hF/MZgXzDvxbSP8hVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Y0q3U/7AEhAcd/FiJGQ2JZ62inkLC5IYyiv2v4WUZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:56"]},"IP":{"Case":"Some","Fields":["184.105.221.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:b480:fff7::248]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa3"]},"Identity":{"Case":"Some","Fields":["VP+H4Yz0s1G7B4pkCk3FJllpSF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4f613y6HWMjoSA0mVQWpo0q4Kks4Recn9Kp6huXGSJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:42"]},"IP":{"Case":"Some","Fields":["95.217.112.243"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::3]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nix"]},"Identity":{"Case":"Some","Fields":["VPXYAN2Xg/zyIA6A7z0ahno/bWs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wmRu34jIR6HV2fF1W3W7CeyjvAjcaeXJE51VlIE3UC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:20:56"]},"IP":{"Case":"Some","Fields":["195.154.119.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["suesskartoffel"]},"Identity":{"Case":"Some","Fields":["VPM6Oha26kTy2zYn/FV1PObCJJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZed5noxdmErhruYYweZxHpcyAMLS/DZcvHyrtRAqoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:05"]},"IP":{"Case":"Some","Fields":["109.70.100.13"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::13]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paktindustries"]},"Identity":{"Case":"Some","Fields":["VPGz2NFI74y+B27znz+8FFmCEFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R6WkG1lGoy9Ot12UUtr8+snsfo3Q1MDVF7VrK+8lKPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:13"]},"IP":{"Case":"Some","Fields":["138.201.125.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:291e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["uzieka"]},"Identity":{"Case":"Some","Fields":["VN5j9FhwWLeRUqdaAjjX96AnkhU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iqfJyTY+63xvUe/XMbqC3NQaBTRSdhKjAZr2TpWmDeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:16"]},"IP":{"Case":"Some","Fields":["192.36.38.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privy14me"]},"Identity":{"Case":"Some","Fields":["VNWf72c4fh7uhdTRFoU0LRVYKZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D5mRSaExtI9O2W3gohAGjqf8tjMXWY0nN+8v6MfvAE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:40"]},"IP":{"Case":"Some","Fields":["185.225.210.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myBSDRelay"]},"Identity":{"Case":"Some","Fields":["VMrlBwjnCNSerY9v/SCUKLwhxBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xkdJ5nqcUY32DwoiByQhMYCaqCRy8lQstVMEBxmlyYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:12"]},"IP":{"Case":"Some","Fields":["64.71.151.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myVeryNiceRelay"]},"Identity":{"Case":"Some","Fields":["VMFeDb2rq5E5eLv8cT76r3Q3xRY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Wjbau0liKso80FeJT+CJ6uLgi6XONJC+E6DHpJaNXgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:44"]},"IP":{"Case":"Some","Fields":["136.58.85.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["coolrelaysmileyface"]},"Identity":{"Case":"Some","Fields":["VLtYh2Bq8r0hPEFl0j51zLzz2E4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ANA2i8Zzsp8I5n22j+5P/AQ8nnzSY1X3rNHiPE9uzFA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:38"]},"IP":{"Case":"Some","Fields":["167.235.133.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:3710::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0153"]},"Identity":{"Case":"Some","Fields":["VKyyeKoqvZb5FQq3KwioqLHkplk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5gzE2LaJU0LJr7FKCQXhrsMNupt116pGpHB0Avy4yRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:56"]},"IP":{"Case":"Some","Fields":["185.220.101.153"]},"OnionRouterPort":{"Case":"Some","Fields":[10153]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::153]:10153"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unlobitolon0"]},"Identity":{"Case":"Some","Fields":["VKpMz+gfTdc5HYN6uwiS11NV3zA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH6Sdgj19FCA2Tdq/ArljXdSyfu0zVmPH9fL9GmSXAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:05"]},"IP":{"Case":"Some","Fields":["178.62.94.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::1c8:4001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv03"]},"Identity":{"Case":"Some","Fields":["VKZirjMEWLmmWlQaK0tbbDPjvy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4yAI31rJVU8LOV9E3Mrb9WWNAwQmt/za2Bins7QwLMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:19"]},"IP":{"Case":"Some","Fields":["162.248.163.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN22"]},"Identity":{"Case":"Some","Fields":["VKSCC0bmVQm/PiuJLmaTCkF1nek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iWYWyypDn2PsCXMEmR++FrFMUlqQmBE20lhYVNqdoIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:53"]},"IP":{"Case":"Some","Fields":["199.249.230.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64b]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ulula"]},"Identity":{"Case":"Some","Fields":["VKQDobAV9uWmQa0SFTCWa9hzE24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D8ulqsKA0G670AyFlSanJQ8zJ7WCiyKAJ6eGmeC9/dE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:08"]},"IP":{"Case":"Some","Fields":["81.6.43.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:169:200:d::15]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MKDDT"]},"Identity":{"Case":"Some","Fields":["VJ+k4wzQmHQgUrE87sz2Iezg6dM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["svYnrACsgwLewZB/m/TNFdf/sUJp5tng1RWTLyaQvLA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:39"]},"IP":{"Case":"Some","Fields":["142.202.51.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["VJ7kn7qaSS+vci04Muar7ecnnS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lx2lDhA3THBRP87wi7OlCw1pFF+TROf07WKg9z+Zo0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:11"]},"IP":{"Case":"Some","Fields":["193.161.193.99"]},"OnionRouterPort":{"Case":"Some","Fields":[57207]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ShardsOfNarsil"]},"Identity":{"Case":"Some","Fields":["VJLnYGSKq7e+wIvIfo9y9V+7qQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oXE7im8pU8nPSoSj1iXSbYlGIcu2piRLlLTNHDNqIAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:47"]},"IP":{"Case":"Some","Fields":["75.176.45.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv14"]},"Identity":{"Case":"Some","Fields":["VITF99mmAQVyhQqONdeLTTUnonE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MR+rPmIeT6ImPJBS/SafK/7G04IKZx8RVV70bKW/Zps"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:10"]},"IP":{"Case":"Some","Fields":["162.248.163.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taki"]},"Identity":{"Case":"Some","Fields":["VH5uaK3htvSSxERDWIqTlhBAHfs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FMxBS9ZVTPbuhkR2ENnMWJu/B6gBOoosqahXbeYbteo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:06"]},"IP":{"Case":"Some","Fields":["51.15.54.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:c0d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chaucer"]},"Identity":{"Case":"Some","Fields":["VH2lb2uItsWWs+MIaAPNpPDvjyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["26mfF8lMfqn5JV2IDm1mE5UswnVEENabcQSCDElbSBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:43"]},"IP":{"Case":"Some","Fields":["192.160.102.166"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:132:300c:c01d::6]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["VHuYt2SwzH7kVN8b7lF9LFC2Ijs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZEhpgc0uwmHztpJn25dxddPx5faL7M7M+V42Kbq+8uU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:07"]},"IP":{"Case":"Some","Fields":["185.220.101.37"]},"OnionRouterPort":{"Case":"Some","Fields":[10137]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::37]:10137"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeUkraineDK2"]},"Identity":{"Case":"Some","Fields":["VHKgKXV1eGRh5KOpfJEzCpQc8qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhcX9QClu+USEbLZDvoiBVtSMckeU04rZYMMUm5zqhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:52"]},"IP":{"Case":"Some","Fields":["185.51.76.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:88::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anion"]},"Identity":{"Case":"Some","Fields":["VGgFtQEiCtdcToPxXKTS3BeclP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G5cvwScs00yve+e8k2Iq22nqcfSdUa/ynNkkZVHDPGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:39:23"]},"IP":{"Case":"Some","Fields":["193.30.123.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HKLBGD"]},"Identity":{"Case":"Some","Fields":["VEZcERUbBNbtqdQrJaODLZMDo8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fIWiX9sIoFLD1F6r2He5z2K0KDCSs5a6upoY/z+3tE4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:07"]},"IP":{"Case":"Some","Fields":["109.93.92.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE05"]},"Identity":{"Case":"Some","Fields":["VEIwrlVsScveEGeF/kEe4GFZiRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXuACNoT5d1w3fiBadqCkCS0rC/oeOSmqpoGb2KXTks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:57:38"]},"IP":{"Case":"Some","Fields":["37.221.65.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::4dea:101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OignonCA"]},"Identity":{"Case":"Some","Fields":["VDcdZPSu2M0e+O0bWMclxAY73kI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2Hsv/UUVNIq/weOnOAEqFEH7/gPgmMLHxOkv0dZZSoY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:12"]},"IP":{"Case":"Some","Fields":["144.217.75.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["orangeApe"]},"Identity":{"Case":"Some","Fields":["VCVov/w2J5zgyp1P9JcjMEd/heA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N/P+Ia8XNL20YP52UpVFysfZaWEa7ouQXgUeklNXep8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:29"]},"IP":{"Case":"Some","Fields":["37.235.55.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:44:37:235:55:83:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNode02"]},"Identity":{"Case":"Some","Fields":["VCQRC/BSRDLYBgUJBjjZymNom6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8wwE4lXL4SQ/hctrlY3UD70oNPdZfNZJC6XyjcytkMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:46"]},"IP":{"Case":"Some","Fields":["37.120.162.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:3698::11e8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange004auX"]},"Identity":{"Case":"Some","Fields":["VBLYYsdiXxReFtPYMfbTOp+vXuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRtDy1vHSpBTLm3V4Sqt8U4hpkEWhuw1am6tphxDwC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:13"]},"IP":{"Case":"Some","Fields":["139.99.172.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["VA5ktU/tS3JcX3vU1r/JXafxHxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UfyLj8l7WiBDTAGJp/AJvhWHizmk6U7+bmNJeS1CQow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:02"]},"IP":{"Case":"Some","Fields":["23.128.248.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::63]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE58"]},"Identity":{"Case":"Some","Fields":["U+6h3aGRnYj4o4AkkyMLXGToey0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rQEhX3/1x4MbCfA2v+LkqFL6nLm297EsL/Os10dr5E0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:28:31"]},"IP":{"Case":"Some","Fields":["170.231.236.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["urilikann"]},"Identity":{"Case":"Some","Fields":["U+jCobKkyHk9H8sP0igr/QyIvxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["00obxtqGqzEUEMwuII3dhr1wFM1u83cTPreVK7Qj1Ss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:34"]},"IP":{"Case":"Some","Fields":["51.83.128.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::4dec]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapLON"]},"Identity":{"Case":"Some","Fields":["U+V06hl60mC0eRLzqdONs4deo8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oI1Fll1nMM47Qtq+Wm55bOXtFMSvfVW//gWOaKseH3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:03"]},"IP":{"Case":"Some","Fields":["134.209.181.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::1128:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["propsy"]},"Identity":{"Case":"Some","Fields":["U9kFaqakxWhnTrN+0BjJeNA0i5Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UyTpoJuUSkyqiwnQqojbD4C1jpsDvg0Oc1SOE4N42wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:15:55"]},"IP":{"Case":"Some","Fields":["31.31.77.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:6:5019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis67"]},"Identity":{"Case":"Some","Fields":["U8n0lU56czK7DGEMW44EygZa8ps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0Pcn5ksfRCUgn83p+28uFAxTxfL8eltFi1d1axpqPCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:15:24"]},"IP":{"Case":"Some","Fields":["178.17.174.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:126::a5c9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jemaine2956"]},"Identity":{"Case":"Some","Fields":["U8YD6qOm6UTGjyO+pJDXWStXlWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pY5jf3cfMk9gbIQnBs0xhxGzrCWjOyzqPL4yTPRys8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:29"]},"IP":{"Case":"Some","Fields":["107.189.1.174"]},"OnionRouterPort":{"Case":"Some","Fields":[26485]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f8f5:20c6:dcb6:3c07:1c9e]:26485"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2livebrew"]},"Identity":{"Case":"Some","Fields":["U7i1wqM8SJtUMA1Vi/7iw7EvOHU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9DoSBLKTd9EyVTpM1W4Csao6pnmOUQdmCQ3bqW1XhH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:14"]},"IP":{"Case":"Some","Fields":["104.244.77.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:c084::b00b:face]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kuerbis"]},"Identity":{"Case":"Some","Fields":["U7HG41cGyewwuUaLYd+7Z/Kb/C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BSDCf+hisGfi+j6TohMk2AhXuXIzO1mZrnrFfuQJG6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:47"]},"IP":{"Case":"Some","Fields":["109.70.100.3"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::3]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["42isNotTheAnswer"]},"Identity":{"Case":"Some","Fields":["U64XtVjfour1UbZQ9iYLPjH76tA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q0CQhrCF1wMPQCraPlcgWPNmQjUQlRNPsv4mBQPMVzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:29:46"]},"IP":{"Case":"Some","Fields":["46.165.253.180"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["0x539"]},"Identity":{"Case":"Some","Fields":["U6mXIwZAwEyZih3j9dPNMDxEgbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QY10ZlqU08dTcYMvKKmfZWrRsjDTgZs+A03EEq6CbmA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:43"]},"IP":{"Case":"Some","Fields":["185.107.195.165"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:bbc0:1:9::eb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Apollo"]},"Identity":{"Case":"Some","Fields":["U6NhRr8eHq4y8CYzA2YJT8nks+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8VK8Xim53KY7F67vly29mVbTWtnHh0s6vkJAMhNngNc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:58"]},"IP":{"Case":"Some","Fields":["69.30.239.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3bc:224:1dff:fe70:b203]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EinfachOhneNamen"]},"Identity":{"Case":"Some","Fields":["U5xXFioOyLu0Owf5FrkOxGyLzTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H9usJ5yRArKHUUY5zwIJfbh9+s7OKFGR/KEY+6/uDbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:25"]},"IP":{"Case":"Some","Fields":["84.144.60.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moonRiver"]},"Identity":{"Case":"Some","Fields":["U3NFV/2UKmnPPvzO+JAnjFmUP1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["olADTUAOkp9omHQQuAOLGB+/ckwP5KFlXPyNP6TtKRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:01"]},"IP":{"Case":"Some","Fields":["172.106.167.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion253"]},"Identity":{"Case":"Some","Fields":["U3L3ghdK0nexfp680fh08MvxF1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zQckJGGmpzhw7+7eLKPR1zBsnj52ZNe3hcWH0VT55pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:31"]},"IP":{"Case":"Some","Fields":["38.147.122.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["central"]},"Identity":{"Case":"Some","Fields":["U2/EENKmn7J2N9GOBpjUyDKlatQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xJhJRGYbvdU4LLr332mC0B+z4z/hcHkZlcFKLUMiZvg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:38"]},"IP":{"Case":"Some","Fields":["163.172.188.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:14::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lazybear"]},"Identity":{"Case":"Some","Fields":["U252dMgnmAPt8cwQtvZ7OVmwJcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N33akRSi623L/Y9Cj/JOTBZlUc/KA2n/z5gDfmFmHHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:45"]},"IP":{"Case":"Some","Fields":["31.171.154.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nemesis"]},"Identity":{"Case":"Some","Fields":["U2W6fJj5s0C4EA7CYxesE0s2PVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gu0LrRWfg0A73sZXk5En27unrsrTMJO24ZLH+89UIPM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["70.63.170.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ethergeist"]},"Identity":{"Case":"Some","Fields":["U0EtzFVTNbQA23J1DtC+CNA013k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iXscfDqtcLU4hH55qTqLvPG0PJC+6GpPjEJrzC6ouy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:01"]},"IP":{"Case":"Some","Fields":["176.9.123.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dlecancom"]},"Identity":{"Case":"Some","Fields":["U0EIAx+8bhmC8aFAK2l72bRaJMo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bJYQgVcuMdIWlDhGUfDlO09HMOxn1KR7MGBgtpbc/8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:42"]},"IP":{"Case":"Some","Fields":["51.158.99.6"]},"OnionRouterPort":{"Case":"Some","Fields":[20443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:2630::1]:20443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fabulous5794"]},"Identity":{"Case":"Some","Fields":["UzmsfeDyTu5Mh7+Fa3438979ksk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B5bcPZG7DIUpEK+xH/N7gvWnWlC3Q03BELXIFOUfa3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:49"]},"IP":{"Case":"Some","Fields":["217.138.199.102"]},"OnionRouterPort":{"Case":"Some","Fields":[54918]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ac8:33:42::a05e]:54918"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission08"]},"Identity":{"Case":"Some","Fields":["UxNNljfZ++Vl+h46+CsjzJZMVtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v+zqqDxYxCrgLGmCYDcwhWBCGOp5qKS6lJAlI/mER4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:21"]},"IP":{"Case":"Some","Fields":["37.59.76.255"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c91a::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spargel"]},"Identity":{"Case":"Some","Fields":["UwJ3hmRmoUJfQ6c9v8tfx0EMmFI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNfEWbixUA0iwaImlS91jpk7nBr1p/nOpRNiqME1L4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:23"]},"IP":{"Case":"Some","Fields":["109.70.100.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer02"]},"Identity":{"Case":"Some","Fields":["Uu4c4mQRHQU2jOdfRBEJHstpRcU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yfNwzjtoP94o6jzgFr/seCjDkSmreC/K9440Bd6xgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:31"]},"IP":{"Case":"Some","Fields":["104.168.87.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipaa"]},"Identity":{"Case":"Some","Fields":["Us2YkC9jduhN8kFbkG8UJtWFVk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VF0UfhCZSH9oNOuREpfHqAKVCm4YCB5F9wLjXW5xFvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:58"]},"IP":{"Case":"Some","Fields":["185.220.102.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::240]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SussyRelay1"]},"Identity":{"Case":"Some","Fields":["UsP/ccoHGnfRxMU9ICam6tpYU1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S3uoN3FfRuFyiwNzMEjZLAdg1/PPwv92bCSzAK+7sB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:28"]},"IP":{"Case":"Some","Fields":["94.140.114.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeastieJoy63"]},"Identity":{"Case":"Some","Fields":["Ur+tqL6qAbpGyPdn+DwY4v5Qwbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MJ9t/CT8zzca55Jx5sPeEmjmKGJzjI4Acld1qWKsBCY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:48"]},"IP":{"Case":"Some","Fields":["212.83.43.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AmirTaaki4President"]},"Identity":{"Case":"Some","Fields":["UraHZOJssE2uOr4foBgm7yc3bGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jyagt5DYwfeDm7MzrU/lPoVo4GJqanpV8zupDrqO0qw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:47"]},"IP":{"Case":"Some","Fields":["46.101.178.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI14"]},"Identity":{"Case":"Some","Fields":["UrMq8lb8SRkTJ46V3CKaE5jZeHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fJNyOkNRngc7rGbuo1sKQgbwSN8cqFB7ucw+5InY4eo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:45:36"]},"IP":{"Case":"Some","Fields":["171.25.193.20"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::20]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["UqDHKbukoxpcQ1+9EHjR2vvJy40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiSgAE9MuTItyNPjJnTZ2s5OrT+j+HpQzRLgVAjPXyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:59"]},"IP":{"Case":"Some","Fields":["138.201.55.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:172:1045::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hochwanner"]},"Identity":{"Case":"Some","Fields":["UqAi8W2M2/AZ4TLxU4oXmPFnlzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RcTel62qqXc5hvpk/4kusMai3OerX1WiXaQTEnwu63g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:44"]},"IP":{"Case":"Some","Fields":["51.158.170.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2433::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeedAVacation"]},"Identity":{"Case":"Some","Fields":["Up3RHDUA27tjbdSleVKcXNpQdOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E9rN+Yae98wm31tlJ9RuVzOIbdOFqgsMNv0UMrt+h6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:57"]},"IP":{"Case":"Some","Fields":["172.106.112.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["morata"]},"Identity":{"Case":"Some","Fields":["Up2chODWphQdQJwbAtuBsrjo6XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MDZ6lAYl3EXN7zQYA0MBS+u1opmjuw6bbxqzr/oowoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:17:30"]},"IP":{"Case":"Some","Fields":["103.236.201.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["asfnutt"]},"Identity":{"Case":"Some","Fields":["Upyj6witbsF5G1EQqjVApM+hGX8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/jMsNzUObDINugxv5G6oSE9jqufZrK1mRahQJE8T1XY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:17"]},"IP":{"Case":"Some","Fields":["193.150.22.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:24e4:10::27]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vetustlex106"]},"Identity":{"Case":"Some","Fields":["UpkwWpwtcHhNQSKD1DepBu6exfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["07dbt0j/0Bk8E2HIwiPG1u9Ny/6EXKzR3Sp0a6kqxco"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:05"]},"IP":{"Case":"Some","Fields":["198.98.54.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:cd9:d4a7:7c57:a1fd:d9c8]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["UniwPIijqZI4e0thUWG4AGxKZa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RlEk8P52mb1D8TU4eB0r6uCAf97tPEWxf6TnP7y3uS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:15"]},"IP":{"Case":"Some","Fields":["185.220.101.204"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::204]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["UmrVDJ3mr1M96+j5u98Um8H1q24"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyPyd7kHQT4aIoIYDuxR/0e4C1KhgeKnj9FtJ/ypWLM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:00"]},"IP":{"Case":"Some","Fields":["88.208.226.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:5f::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Theoden"]},"Identity":{"Case":"Some","Fields":["UmJVbUSn8kNJkP3hrnlzxn30nlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tIB8JtKPeiIP0udzZMQWC4Y/fJ/mJUAI6F8LBX53GQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:14"]},"IP":{"Case":"Some","Fields":["176.223.141.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7b40:b0df:8d6a::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t1r"]},"Identity":{"Case":"Some","Fields":["Ul7jTBp7iaud9YUkbeMOMnApE/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pzcIHUQ8aH3CAM4pqO80Oq6HGhsrfbCRVO4UOzT2tTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:12"]},"IP":{"Case":"Some","Fields":["144.91.125.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["Ul5JX9BAlpK9qcI6ITfJb15TiUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oai3vVXJrJRtmEJNKykPEV+OKRwsOIPIOOcdDnigbSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:11"]},"IP":{"Case":"Some","Fields":["178.175.148.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trolli"]},"Identity":{"Case":"Some","Fields":["UlkLPCh709jGyp4HYc0XdY/3Dng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0jenPE8Afr+NjBx6tEuGOzp+t7cHrffT23y61ospZ44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:31"]},"IP":{"Case":"Some","Fields":["130.162.54.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ImGrund"]},"Identity":{"Case":"Some","Fields":["UlTuBmXR0QafopZ/f6lw5cVEF3E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BgxkKkQLvsaN/c3XVegAlqdOASVi6wFl82ukfG6J3vw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:15"]},"IP":{"Case":"Some","Fields":["217.252.144.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=780"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["reRelayJI"]},"Identity":{"Case":"Some","Fields":["Ukm1F5fjc0Szz5s94p9JndeIO10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rMW8e+WYe/ywHIORUMimPLbsVt3z2hOkqepjN74Udw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:16"]},"IP":{"Case":"Some","Fields":["153.92.127.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CCHE"]},"Identity":{"Case":"Some","Fields":["UjdKbFkoDT36Eqf7UMyoNZy1avc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCvH3OpZNTuRD02l9p+oALv1E8Lk1ZBZMcn9LhZaESw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:21"]},"IP":{"Case":"Some","Fields":["78.133.85.105"]},"OnionRouterPort":{"Case":"Some","Fields":[8832]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI24"]},"Identity":{"Case":"Some","Fields":["UiqA7KjIRvYM7mF/JD41RtUhmDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eOnQ7fHzXnoi3N3siKGHt3wsEoOEKkF4XKQ/GE6fSWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:01"]},"IP":{"Case":"Some","Fields":["171.25.193.25"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::25]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex100"]},"Identity":{"Case":"Some","Fields":["UhwwqWh0OxPhfiLjm+UtoCD7kuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1ugoM3ZzdWHNi01bxRp6TwpZRtiol3W41KRmk9HlMCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:02"]},"IP":{"Case":"Some","Fields":["199.249.230.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::189]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["just4fun"]},"Identity":{"Case":"Some","Fields":["UfMQOBV2Wk+Wv5XO1UIFtYzuhwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ILJztHr12sdfeEVauqeB52jX2MuGiFTtxxg8xhepLto"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:48:35"]},"IP":{"Case":"Some","Fields":["45.95.11.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked01"]},"Identity":{"Case":"Some","Fields":["UfDRPZGmDwtFQPFX22i3DH/bFDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sxFNKvC93twQhX7IjT+6a2j504BHv4ZXgi68Fq0h5D8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:57"]},"IP":{"Case":"Some","Fields":["51.255.106.107"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobo2"]},"Identity":{"Case":"Some","Fields":["UecOkQTyz8XzH0/YC8HS2zd2kUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WVONO4EgdHTFwxp7z/qIwfeuXI29dB/3Ea8ZehUY+cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:50"]},"IP":{"Case":"Some","Fields":["89.58.37.132"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["idideditheconfig"]},"Identity":{"Case":"Some","Fields":["UdstiSI2xR0td1IU9Ok3Qe6duoI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0snzJQGKC69FFFxP7//8dk5oX9Ek6+PVZqssDooKwzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:45"]},"IP":{"Case":"Some","Fields":["47.200.163.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alpha"]},"Identity":{"Case":"Some","Fields":["Uc2dsANXQF/EGvD6UTaI0CvaDA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WQOk/VJdIbO49U0HlOKO4PWKwlWRr/c9LbuhstM3vcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:33"]},"IP":{"Case":"Some","Fields":["31.131.2.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Planetclaire65"]},"Identity":{"Case":"Some","Fields":["UcNnWCmT1o+CFWELhamZAslFMks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1s4NsnMPeGUp3HsKKBkZP/nZwmTRnqqQkAnh32cvTio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:18"]},"IP":{"Case":"Some","Fields":["91.143.87.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2eff]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeCarefulOutThere"]},"Identity":{"Case":"Some","Fields":["Ub0l7gbEbkRmQn1Kv5TylkUU6y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aheaXgW3oTo2CLm+/rUFRQkN3Qjex3IF9kxyH9CydLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:34"]},"IP":{"Case":"Some","Fields":["205.185.124.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:c3d::1001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wobble2"]},"Identity":{"Case":"Some","Fields":["UbP8yrcUAR4xdyP6rLcY3Oxu5ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g4uRPrYaV8IzFbn3H17+GkxTlnfdx7yne7rj60ac35Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:23"]},"IP":{"Case":"Some","Fields":["192.111.150.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["notoriousgib"]},"Identity":{"Case":"Some","Fields":["UaiiKUTyKOotYBQ00SeGSxsLD4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jeVNTM3eo20FXJE892yXKiY5LiPZHJFDwZtr2n7fgqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:40"]},"IP":{"Case":"Some","Fields":["103.200.210.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ready2"]},"Identity":{"Case":"Some","Fields":["UZf8ifehYjypDW4CVKvMvG2FqG4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lh93LsMWvETQdE1HnMh+cgtQDlVibXe1sjVbBLx+S6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:49"]},"IP":{"Case":"Some","Fields":["174.128.250.164"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigman"]},"Identity":{"Case":"Some","Fields":["UZNR49VCApM/heYI2ISEpdxOTvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c6yYUIwuH3aIVa3tRrJOA/AcTEUGLq1S8nw0OXnGpTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:52:59"]},"IP":{"Case":"Some","Fields":["130.61.174.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twincaravan5"]},"Identity":{"Case":"Some","Fields":["UY7xU7t2dpQ9PfvKRpz1ua9cXzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRjRZBx/yxJMnoisTp9F9yxH6/8aI90xlBUR8IdXRnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:11:29"]},"IP":{"Case":"Some","Fields":["172.107.241.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrozenChosen"]},"Identity":{"Case":"Some","Fields":["UYsDGj31A+CPb4FdsZTb17FcnFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3lcjQnkLSpP5A+ovohqQX6wt+algwSDZ+Up5fvM+Whg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:42"]},"IP":{"Case":"Some","Fields":["172.98.15.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UYAK84sw7RRU3XTLQSutztX2BZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQS4Vk4nhOzbIm3aKC8mMBxa4FcZoN9RfAnjdbCH87M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:42"]},"IP":{"Case":"Some","Fields":["37.191.206.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:feab:5d7e]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1163"]},"Identity":{"Case":"Some","Fields":["UW+RynB4EG4fCNnrrLdxXp+FDls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cre+NLd28EX7HLJWohxomLssa5drEVx/B6mrd1rUpUk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:08"]},"IP":{"Case":"Some","Fields":["185.220.101.163"]},"OnionRouterPort":{"Case":"Some","Fields":[11163]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::163]:11163"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UW0ilNUfvkeDfTQZR0BGADIRCcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L0KB1MlYRbaaRJUTq+ff32zljiIziaXGZLczj3lSeTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:46"]},"IP":{"Case":"Some","Fields":["23.128.248.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::d8ba:d0ff:fe97:f61a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["UWzFTTDsbHt05SgFN/aUPveK2U0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uy+klSBUO2/yLVX1hzWmB34tBDqaUTHb+IDwBLEfbB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:41"]},"IP":{"Case":"Some","Fields":["23.128.248.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::35]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UWA0/xXJbOhB7M2HbvYEgCqlxlA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UartxoXuC7E2nwfnJyRMHpXFvygizE2fMDvKe7gcuhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:26"]},"IP":{"Case":"Some","Fields":["89.163.225.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pi87"]},"Identity":{"Case":"Some","Fields":["UVEA7eGcD14MrdOR3jPg3hSwD90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2cj8ywFYWw/u0Eql41VA1QWbcmD3Dg+4Tn5OHjIRYEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:17"]},"IP":{"Case":"Some","Fields":["99.45.175.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:6972:1200:dea6:32ff:fec5:ff87]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stellaranomaly"]},"Identity":{"Case":"Some","Fields":["UTdMjaRZxnMp/9XHUCzK5BlJEMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nEZgaVWCU/MssU7NKdYMKrqcLLW6Ro1tRx266r1GbEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:16"]},"IP":{"Case":"Some","Fields":["96.65.68.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra58"]},"Identity":{"Case":"Some","Fields":["US8n3ZopN6jj1l7aE6iK6Ug+mso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LnA7vKaVKB/Y85C8L8JoDf+PW8XK/DUSY0EgTPwTx9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:03"]},"IP":{"Case":"Some","Fields":["213.164.206.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andal"]},"Identity":{"Case":"Some","Fields":["URyzj4fACAscSdYUSeJB+b2iw2U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jxtGqjzbZULlOHmCnQFC2rI/kJrvXnak4os/yefZ4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:14:56"]},"IP":{"Case":"Some","Fields":["80.131.230.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IsThisJustFantasy"]},"Identity":{"Case":"Some","Fields":["UQ3VmHSDlHSHxkYqZtMTPtBwQOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FouW8vMC3oJvxwY/Fuzhz1uNOzsk5AbpsVf7uz1gDl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:37"]},"IP":{"Case":"Some","Fields":["144.2.122.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who9USicebeer24"]},"Identity":{"Case":"Some","Fields":["UQoEy7nEEPxX9YWrHY20XArZzxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s0eaTJTK9MLrX+ONSIZ0OpHwRCRxUBNtP/VjmdI1tXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:45"]},"IP":{"Case":"Some","Fields":["107.150.32.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8126]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bmwanon195201231"]},"Identity":{"Case":"Some","Fields":["UPHTKyCKLZfxJIghN8CjvbdO3Qk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7qAzBWcEISYu9FX9Ae6iN2i8Drm7mUWA1NPzW6jSqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:06"]},"IP":{"Case":"Some","Fields":["195.201.23.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi3"]},"Identity":{"Case":"Some","Fields":["UOsrBs1v0wuYw7ilDd75W88h0r0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bm0GDrCa+5lk7BLxQQXQey9kb3KL/WKrtso3rl1Yqxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:45"]},"IP":{"Case":"Some","Fields":["84.54.13.19"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TERRAHOSTrocks"]},"Identity":{"Case":"Some","Fields":["UOI1BuXchXbrTo9gdRZENko+E84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1pCUv3ekJwYEwIDX8SM3z0vQsjwRwlYudvow91cBraA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:43"]},"IP":{"Case":"Some","Fields":["185.14.97.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2660:4819:623:8331:4852:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["UMNZd+PoLAESm7IstqsNZ0dz1YQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E/9IGfQq246T3yEwKqrDJCogeckegLnl5CNyc+F95R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:59"]},"IP":{"Case":"Some","Fields":["185.220.101.205"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::205]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChristopheRelay"]},"Identity":{"Case":"Some","Fields":["ULrU5IZGeXeWEH7PAZIXhJUkcgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bP4sKCXVnweaYym2YcqPGSzvMOJ2GfsVCtSzoua9Trk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:22:53"]},"IP":{"Case":"Some","Fields":["24.212.140.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Jaifej07"]},"Identity":{"Case":"Some","Fields":["ULih63FEfouqn+8qJZzrfiy790k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["55SHjpADStfZFpj+o7qZk4xJY6fw26nZq6JuUoz+kvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:25"]},"IP":{"Case":"Some","Fields":["95.216.9.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:95a:5734:66b:b49:52c3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["UKqf6mo6YJaGJ2xM8MKhr7Lsyhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zWmJ464csCuF6PLFsA/v9DRGTgAXdaY3boAJsFA5/E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:23"]},"IP":{"Case":"Some","Fields":["185.220.100.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:15::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarthVader"]},"Identity":{"Case":"Some","Fields":["UKnQelkVso7JbSTQ0NE/9W/IzNE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sETVKNYMjoPHzVQITER7SNfvqU+flv0JqPwaJml8R4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:40"]},"IP":{"Case":"Some","Fields":["45.32.172.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toralf2"]},"Identity":{"Case":"Some","Fields":["UJ6rTF0QyamiS06gzkAsBHotZOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3JJKdopusDx7/siTGx3RTaJWevfUrYPsGQDo2l0lZwM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:19"]},"IP":{"Case":"Some","Fields":["65.21.94.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:3b:468e::13]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sashaRP3B"]},"Identity":{"Case":"Some","Fields":["UIEuCNm49YgQiSNz2AkGOExyKOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o8aFU1MlsTWvCN9h6h6o02hj6qdNij2tdrW7eEduYVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:10:36"]},"IP":{"Case":"Some","Fields":["5.147.146.222"]},"OnionRouterPort":{"Case":"Some","Fields":[1443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UH6WZaqD/WaXxB4qZIsv1A8lqHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8jaTXu0+dsuPMVssUTWRUCKdX2Kct6FgWeZMrGAVQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:01"]},"IP":{"Case":"Some","Fields":["23.128.248.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::1cb0:9bff:fee0:ea6e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk5c"]},"Identity":{"Case":"Some","Fields":["UHyhsBE/lhE/ch+iHp9//qS2eyM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ri8FihH3Bc52nzemYSxlMZsdWV255kXXc6CnqwAyBcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:22"]},"IP":{"Case":"Some","Fields":["62.141.48.177"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UHwoxl67PRnvMfE4A3B3nhGYXQY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["97iccf/ESe/a0v2Zhduc1V7yBle423mJ6L6KC5cvYI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:44"]},"IP":{"Case":"Some","Fields":["159.203.22.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gr8eight"]},"Identity":{"Case":"Some","Fields":["UHtd0dsW/KgAuc3BPOCo7bmoMj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+L9A/kALlXYbRhP+yapGXy+3Vt0H84NR+zGDqwvOXuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:47"]},"IP":{"Case":"Some","Fields":["70.32.0.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra37"]},"Identity":{"Case":"Some","Fields":["UFjnE2KDtM4T8Yl4cfkxzEH0HMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNNH7AFU3WinIaRy2CAYiIPGifd+YgczchB+mCd0m+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:05"]},"IP":{"Case":"Some","Fields":["213.164.205.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whiplash"]},"Identity":{"Case":"Some","Fields":["UE8j3HNEWdu6WLLxGkeZ65RRiKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s//Y+S6LEfSFP0zhOTrCD0A31Evd/hXyt8D4KqcUOns"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:06"]},"IP":{"Case":"Some","Fields":["93.190.143.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MoneroMoon"]},"Identity":{"Case":"Some","Fields":["UEv1EvOwz90KsTS6BIiRfDZdMzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Be1Irz+XBlbLayK+ETYxwuCobNynMmaGLRQRewiMv14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:46"]},"IP":{"Case":"Some","Fields":["103.91.65.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["d2d4"]},"Identity":{"Case":"Some","Fields":["UEheA8o505O9VNMVzrpl5t0P3bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7oDxoIAq1EN2M6al2p2ZtgMH29mSSFe3BA1UqXKFuEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:47"]},"IP":{"Case":"Some","Fields":["185.129.61.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:666::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sunflower"]},"Identity":{"Case":"Some","Fields":["UDXrBiEIFvLKzXTR9Bo9XuKPvrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pZowcFJLoIj8FD83io3nv3HaIbwxxk6P+guW2JQ5Amo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:06"]},"IP":{"Case":"Some","Fields":["85.214.139.182"]},"OnionRouterPort":{"Case":"Some","Fields":[2022]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ParckwartEfatsum"]},"Identity":{"Case":"Some","Fields":["UDQx+U/4+2nxCtWd4x87LDRJ2ZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1miUw83Twu8LPz2BntvoMzSPqSxgWyLEl9YYtwagXx4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:10:47"]},"IP":{"Case":"Some","Fields":["5.146.177.130"]},"OnionRouterPort":{"Case":"Some","Fields":[15827]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tororist1"]},"Identity":{"Case":"Some","Fields":["UCe3kZNg8QQU/r2VrKC3i0FvX/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJkCB4UXT/v+DITtTkwTG4QY4KzeQhmbfQuujhcd2ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:17"]},"IP":{"Case":"Some","Fields":["89.58.4.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:c43:a44a:80ff:fea4:2939]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galates"]},"Identity":{"Case":"Some","Fields":["UCd0ugRm066benoOoiWcxiuDmKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zerbv3wlQN+LaHw0sywS/umJknWquRTT2PqwTOe/VW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:19"]},"IP":{"Case":"Some","Fields":["94.16.118.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex66"]},"Identity":{"Case":"Some","Fields":["UB9cSqyr6/3GojVDN58ZsGY5aUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MlByJ1GPWY+ak09pNzQMZE68rNTs+vBPP27av6ifowA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:14"]},"IP":{"Case":"Some","Fields":["199.249.230.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::155]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute04"]},"Identity":{"Case":"Some","Fields":["UBs9vyULCUoFyl28QkrUw9RnIaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MIOUwCvPnDOvPyZMYEy/JvYLX7Ro68rplyQEWeEeVtA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:20"]},"IP":{"Case":"Some","Fields":["162.247.74.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perseverance"]},"Identity":{"Case":"Some","Fields":["UBYf9CsRuHxM3SEM+ctJCnsIjbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C3o0vUV+0HAOozGjWPBFIk2GuBoktgiIWiFHLTJMhNA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:37"]},"IP":{"Case":"Some","Fields":["87.236.195.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iSOcHTorRelay"]},"Identity":{"Case":"Some","Fields":["UAjkmVSsDKBWX+ivYdYWFyEqy8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFc+0H5S9KmYZHr5cwqka/l/N2+/TfxLuU/vV4VZBeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:00"]},"IP":{"Case":"Some","Fields":["5.9.158.123"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:5176::123]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WilliamTor2"]},"Identity":{"Case":"Some","Fields":["UAieidVpN/qyoG8J0a+7h263byY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nTKTuR/rDIOkxdl6mAtCCbPLBt+0rk9+UVaEC6H0nDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:22"]},"IP":{"Case":"Some","Fields":["144.172.118.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["UAdeSGMsQMbOrlfr2g3IUtFg6/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qhsGokm+TBvbCHCL0iP0HR3aQndwzkutd5u0/ExHi94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:24:53"]},"IP":{"Case":"Some","Fields":["124.148.229.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShaiHulud"]},"Identity":{"Case":"Some","Fields":["UAZDiZWqVNod+OSQNVUmIiVgGp4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HdYGYdJOkwm4NDFriW5jjThi7BoQZrO0zZ+gQRH0+rU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:57"]},"IP":{"Case":"Some","Fields":["140.238.215.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForMyFreedom"]},"Identity":{"Case":"Some","Fields":["UAS651psm9oL/FoeiGYgTCcfHeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5wTu+KCt8LPj1K5dTnYU7/pISdjxJuKuJtQOS4SGIMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:25"]},"IP":{"Case":"Some","Fields":["185.10.68.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:b::44cb:d7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNODERELAY1"]},"Identity":{"Case":"Some","Fields":["T/x0wijaMWXgJQeUly5yFhUs9RQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cyxoUhYqTtV9Y4xtNFfJXUiR5HFx7nX667rFeFjd0rA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:57:34"]},"IP":{"Case":"Some","Fields":["109.202.206.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doNOTbeEVIL"]},"Identity":{"Case":"Some","Fields":["T+kF0Hb8I5VSr2qt4nEV/oNHaLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["34EyVnpbmG3Yg9v/oUr312wItIxcxysIIe/w3IxHS8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:20"]},"IP":{"Case":"Some","Fields":["84.155.116.169"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2003:d5:af24:1000:11:32ff:fe28:520c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cicolina"]},"Identity":{"Case":"Some","Fields":["T+P9Z/LwbYrZKSF6NX9iP8fGktk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Qn8MAz85olDq5qeU4+ilh5mwkzUhxO7LZxnQer6hs0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:28:06"]},"IP":{"Case":"Some","Fields":["46.229.238.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay25at5443"]},"Identity":{"Case":"Some","Fields":["T97EpSU4qpEiDQT8Je5K4sclwv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o6Al2anwZ9Y77vcQ9iUvU6AC5U3xpC5xlu89LNIv+NE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:05"]},"IP":{"Case":"Some","Fields":["140.78.100.25"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx3"]},"Identity":{"Case":"Some","Fields":["T9361Rsk3au2L7WQcfTcQh52xoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wIPDuR6Y3CB3njpRP2rDV/agc+TmYsFxZmMP3n4q33I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:12"]},"IP":{"Case":"Some","Fields":["159.69.207.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:6cde::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ashP"]},"Identity":{"Case":"Some","Fields":["T9mgMMncmPokB2Bxy7b9hDvGLX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SahTKR1zrU5Yu5x3X/MVLLkBd7O/CnCfEy1gOvgJZXU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:26"]},"IP":{"Case":"Some","Fields":["172.241.140.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skynexF"]},"Identity":{"Case":"Some","Fields":["T7osbNXWTFHcCZh+qa65C+xHHo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SqDQuOZYjhAbpV6e9X5ExeZ34K2vP3TeWlHiZZkcAD8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:05"]},"IP":{"Case":"Some","Fields":["78.47.43.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2586::1332]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer87"]},"Identity":{"Case":"Some","Fields":["T7LBtuViQ0ADOFHdo1B20r5J9e4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oyvbUyLoXi75hgQBAa63uWCbumGnU1JFBrdMFGvAHqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T21:36:46"]},"IP":{"Case":"Some","Fields":["95.214.54.56"]},"OnionRouterPort":{"Case":"Some","Fields":[8187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zhizhi"]},"Identity":{"Case":"Some","Fields":["T6mP6VaNhQtnXLgouehN4uKztFw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3OCBMrtw58IeR5oP/dkv/X6VjTzBxZyfUi6arP9g6SY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:53"]},"IP":{"Case":"Some","Fields":["71.76.67.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allcats"]},"Identity":{"Case":"Some","Fields":["T6H0AfjD6DJgMeeZQEW+Z/NgM6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Udt7mOTXMHCWXUtvlfa0hkhVxozFq0EQmORV1fzQAng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:45"]},"IP":{"Case":"Some","Fields":["198.96.155.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["T57892iQhOTI7pk+Ej4yt1NogEw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AEg9+Xm+ka9ray2VKztP9DTU0ZSIbFEJSHjc6NhnH28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:34"]},"IP":{"Case":"Some","Fields":["107.189.29.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f24b::2]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ajorcel"]},"Identity":{"Case":"Some","Fields":["T5W3MTZ57MAA84+HDPDPOcc4bFA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fM3WkFVtIYZeUkuXtH7C7B0fZhDmJIWdIcWNR7IbU/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:07:04"]},"IP":{"Case":"Some","Fields":["82.64.163.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv23"]},"Identity":{"Case":"Some","Fields":["T4Z/g/wbDMaWqKxF5uk6V4AJmRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["316S9nwqL2j3gQ6hL2HK8yTCrV4urQKuw1ohymVoWT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["45.62.224.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ipid"]},"Identity":{"Case":"Some","Fields":["T30hAUgI2b2V6lB6G8ZTtilX3f4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JmblR9/7/QvCamt0GNH/LbQnC6nZaouGDl61mWOGCOw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:56"]},"IP":{"Case":"Some","Fields":["38.242.238.65"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sobit"]},"Identity":{"Case":"Some","Fields":["T23753B1N9r7f7BHYJiRGCHp0UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IoocGWx13NJiGLoIeguMosb20NKldykLjYSaGvmiKG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:23"]},"IP":{"Case":"Some","Fields":["173.70.63.172"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra10"]},"Identity":{"Case":"Some","Fields":["T2jxsj/O2dF4Uv/94hY3woS88Qc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L1UNvFiccKVqSlBCdsYvISd7PzypcOk6BkW/4qI8o4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:35:24"]},"IP":{"Case":"Some","Fields":["178.17.174.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:54::a46d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0179"]},"Identity":{"Case":"Some","Fields":["T1beds3Copa21jeUkgf5BOWiDCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4R88J9XimWuygFjV/nIAraIBFLbVtoEh9de/sqJL0Fw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:42"]},"IP":{"Case":"Some","Fields":["185.220.101.179"]},"OnionRouterPort":{"Case":"Some","Fields":[10179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::179]:20179"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc15"]},"Identity":{"Case":"Some","Fields":["T1XE5qAkieTWkAVHvhwtZLfPcwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tm35uZoVTZxkSniTIR6EFZiXTDRULBcLsmrR2ltx6C0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:04"]},"IP":{"Case":"Some","Fields":["185.100.85.23"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::4]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IONOSger101"]},"Identity":{"Case":"Some","Fields":["T1Dv1T3ING1lyIHYMhcHWlxc48Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RREHvJp/SPyJR43x8CpV+2q5U48rQ7iUfgYh5LXG2dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:09"]},"IP":{"Case":"Some","Fields":["82.165.77.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission03"]},"Identity":{"Case":"Some","Fields":["T1ABV6v3ChqUY20minQqiyJ7i/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IbEfRcXk8AL1FrLuu7/Ji7zbQCwAXh/dO4ztrfiSsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:32"]},"IP":{"Case":"Some","Fields":["149.56.94.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast4"]},"Identity":{"Case":"Some","Fields":["TzXHymJ0CkOsakajVVFrhQGKyKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O5r9aCGVFSHvq+cg+8lRc7DfeqTbDsWcg1p469uToSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:06"]},"IP":{"Case":"Some","Fields":["5.182.36.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pingrelay"]},"Identity":{"Case":"Some","Fields":["TzWz7JB3tY0IEpQjy5sYJe22/cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hIu+67LepmutcfszNCUaVE56s5Ltdnyoghxr9c9BgRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:17"]},"IP":{"Case":"Some","Fields":["178.215.228.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:5440::25]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CottasRelay"]},"Identity":{"Case":"Some","Fields":["TzBW6dS6w47CEABjdFIhVTYw7Ms"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYAggGCtG35rUXMGXfwkX4QErmH4lc9iCA55DgfKDwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:58:35"]},"IP":{"Case":"Some","Fields":["212.186.71.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VivaLaRevolution"]},"Identity":{"Case":"Some","Fields":["Tw6DGpmLZEK69Btvsz0LRF5qsjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmxOB/b4JI2bwbR/qAIb5LGXAwzHDeOTzrUZaHAUsjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:38"]},"IP":{"Case":"Some","Fields":["51.81.57.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Tw5dThhMQOK5qJZkAFswih3uN1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xw1M5WcaZzd10tROZaOJQhBEllskkg+BEgfNWzPNBuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:01"]},"IP":{"Case":"Some","Fields":["51.75.143.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Binnacle"]},"Identity":{"Case":"Some","Fields":["Tw235of8fArlXI8kPaiw6yf78fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ccjon0VOMuyWfqyR7Sy28Qt/fSeYIuQkxaj2+KIJFUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:05:03"]},"IP":{"Case":"Some","Fields":["108.53.208.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt31142"]},"Identity":{"Case":"Some","Fields":["TwFowYzK3qsS/PJNGmm8ewWV0oI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/+ClEsAI0EB6hWHylPwAb2N1FRVAEvZyj+gzcZqFuOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:44"]},"IP":{"Case":"Some","Fields":["185.245.60.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Tv89DJ3lOc8eJ7/Fs+I7x8stQak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e2L3f04fBKFtjv/F58oqZLV15LhrZ3CoQ4Ov7o//WOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:12"]},"IP":{"Case":"Some","Fields":["77.68.26.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:31b::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tazzwei"]},"Identity":{"Case":"Some","Fields":["TvKPCsun24P1Ms9knbE6AML5/fI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["johU5a9cUP/a26Wy97/RXKSdVAWZDKn+uQ1xTMD4nfo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:16"]},"IP":{"Case":"Some","Fields":["193.104.220.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex63"]},"Identity":{"Case":"Some","Fields":["TuSIrAdCvGt0e7Y3pWNc4U6Hfzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3NJ0ELWqD9D1bItwkhv5xj9eCg9Kvlm8ER1jvp4rguc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:55"]},"IP":{"Case":"Some","Fields":["199.249.230.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::152]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsRomero"]},"Identity":{"Case":"Some","Fields":["Tt4pdlLK3ctYw8QaOxYkD4v/hzs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qVjPtZECJga4lUVUxrnSiJzy+krz0VZXf1W4ZHNnx5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:28"]},"IP":{"Case":"Some","Fields":["195.15.242.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::226]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bedrock"]},"Identity":{"Case":"Some","Fields":["TtM0FZUvpS25VBGh2oZmPsGxCbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oRdPu1OgD38BHO2kvQCIG5FAXCp3lbiVRjlzNAd9mQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:53"]},"IP":{"Case":"Some","Fields":["173.255.228.134"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fedf:407b]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE13"]},"Identity":{"Case":"Some","Fields":["TsDk4yNBc/nX4C7yANa3SARvkOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i3lCmmZ5isRTCz4tO2Ekc+Vkz9jes+a4iugKjz9Jh/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:48"]},"IP":{"Case":"Some","Fields":["185.99.2.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8620:201:42d::a427]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex89"]},"Identity":{"Case":"Some","Fields":["Tr9FmIAADatv3a8K5RItAUkJdVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FaKvZ6Ej6abyNFSSjRVF6XTj1zEOz2eKAPuzDz5xaRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:26"]},"IP":{"Case":"Some","Fields":["199.249.230.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::178]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uKDbRBw5GFFLYfg4"]},"Identity":{"Case":"Some","Fields":["TqjDUdvJux+1oErAAxS3FlIy31g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TFRca9Dd9HnaKjZaT5oFy5zeDTn2k+Psg+D6/uoVOtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:56"]},"IP":{"Case":"Some","Fields":["185.38.13.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summalummadooma"]},"Identity":{"Case":"Some","Fields":["TpiqKVtxcZltGN0fahn2SrQDa0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uYY8M2BN2x31TwOi4iaMy+DGHjJqtSp0KIFlbVjRz2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:32:36"]},"IP":{"Case":"Some","Fields":["213.239.213.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brwyatt2"]},"Identity":{"Case":"Some","Fields":["TpeWSBwedfddV+jB/IyO0RFDMxY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5b4pvpnW0KfYovRW2xenYOOInBea/CunTbkbI+xM2KI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:44"]},"IP":{"Case":"Some","Fields":["172.92.148.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["makeuseofIT"]},"Identity":{"Case":"Some","Fields":["TpG2ZWHuAbFlPhgD/lO1xADZZ9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZqcxbY8F2Xc7EqICsc3eUN44Y55KaJaA5I41TpAbcCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:34"]},"IP":{"Case":"Some","Fields":["87.154.214.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bv0002w"]},"Identity":{"Case":"Some","Fields":["To/PnQwTe+lQUrGpjdMX9fnbdKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qumXouim4VuGZ2IeoLURMvdFuP0p5Y4l8jM1FGZd+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:01"]},"IP":{"Case":"Some","Fields":["77.172.70.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:a469:a88b:1:5a9c:fcff:fe04:34c2]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scarlet"]},"Identity":{"Case":"Some","Fields":["To6K4p0SANvjFIKVxMDDzGjElUk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+ZR3aNtzoqIT1GIoHSnOoyCMuXnQsvc2E9F/kljrN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:33"]},"IP":{"Case":"Some","Fields":["172.106.200.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ymkeo"]},"Identity":{"Case":"Some","Fields":["Tozm9WUec0LB5+XtAx6CB4E0+w0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w8P0JQraS/IH3nZ0sNS/dvJrU6zConBFyPwVGWoUZm0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:24"]},"IP":{"Case":"Some","Fields":["185.238.129.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:116:1:ff:60ff:fe1e:4473]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cotto"]},"Identity":{"Case":"Some","Fields":["Tov3ObXng1d27dcs+cqkAqzgAFU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TGT6n32DpXexPhUkW1tLHsl7XZ2XPC/SgYp7lLViM6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:35"]},"IP":{"Case":"Some","Fields":["157.90.112.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:e8a0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rasengan"]},"Identity":{"Case":"Some","Fields":["TolgccpqcS+py9DjabdZYmVMDRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S0d+wj6V2Doufmps5Qr1C4LPoCGzuc5+P2nCxxeciiw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:38"]},"IP":{"Case":"Some","Fields":["139.162.66.246"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:fe7d:e808]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fento"]},"Identity":{"Case":"Some","Fields":["TnN7v8y+RakjzoJXfpnc/6vFv/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yCv4B211fUZvNmiHouDc5pL9cfaPej8lLFP1Wualkzs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:39"]},"IP":{"Case":"Some","Fields":["81.17.30.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nobbs"]},"Identity":{"Case":"Some","Fields":["TmP+vQWbTRo4vAMl3ippSIP9DhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fTEUxHsZ2gPVk+xTe9w0HdMzWGFkXkmLighuDllmN9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:37"]},"IP":{"Case":"Some","Fields":["46.228.199.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:1267::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhult2"]},"Identity":{"Case":"Some","Fields":["TmE1F7Px1BlgdcFvvVOEPtnlQgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubfIz9trW43KOgUK+vLSfQngOfJm28LHDsomjJLzXio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:02"]},"IP":{"Case":"Some","Fields":["5.255.100.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:105:4dfe::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["woothoot"]},"Identity":{"Case":"Some","Fields":["TlUdk9VvIm2ZFON2SBEGOuusTvs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VgjTbPm7p3ygkzwsln40pyP2ljEB5pUOEjTRnAT/FWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:58"]},"IP":{"Case":"Some","Fields":["136.56.58.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["burnigHell"]},"Identity":{"Case":"Some","Fields":["TlTtlAVjZj9K68per1QfopbHDhY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7y2nRt4amJVDpuC6hZRAKXRwLU7VZ7Fu5xngi9Yp6Io"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:25:45"]},"IP":{"Case":"Some","Fields":["192.164.137.158"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hBridge"]},"Identity":{"Case":"Some","Fields":["TlF/RuvtE5OspgYOZMsv0W7cFXY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["taY0/Tq6YBpoBcwh6dfLTF5kHI43WvF+qdWqnqozv0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:31"]},"IP":{"Case":"Some","Fields":["136.24.227.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortals1"]},"Identity":{"Case":"Some","Fields":["Tim7cQY4V5lLzOcjU55TzDZUXsI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uw6sx9tTnFuRx56MI/M57FztgJmJ/4VVoX/DuhSk4ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:49"]},"IP":{"Case":"Some","Fields":["45.58.156.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["minotor"]},"Identity":{"Case":"Some","Fields":["ThUImIy5SrjbPJO3yW+tVHdB6cM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9LT6hAdC2oAQdG3To7ugIcygtIzR6jqNLcb0My67Zlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:56"]},"IP":{"Case":"Some","Fields":["67.165.9.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SygmaQuit"]},"Identity":{"Case":"Some","Fields":["ThLjDZasFqmtZUy3/nfpz11MW7U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kt7OaiYoLi7ICc+rjh/ElJ8tAOZ1e+jJcBAekPNhbEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:56"]},"IP":{"Case":"Some","Fields":["5.253.204.149"]},"OnionRouterPort":{"Case":"Some","Fields":[38292]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OneMoreLinuxTor4"]},"Identity":{"Case":"Some","Fields":["TgqZV/26dBivgqPL/LU9i42X/I4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g0kH0IrN98z9VZUZ7wYoUeqKk9S2AnaY0TzzjJMrjo0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:03"]},"IP":{"Case":"Some","Fields":["91.136.165.196"]},"OnionRouterPort":{"Case":"Some","Fields":[12222]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zikonio"]},"Identity":{"Case":"Some","Fields":["TgmHyjp/00VEvko6JKK1RWzUErU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P7aTSoto7DPF1E0clBZi+ywUP3Yhqi8yyW6Mg05iDjE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:16"]},"IP":{"Case":"Some","Fields":["89.233.108.125"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1129"]},"Identity":{"Case":"Some","Fields":["Tgl5gHRHTM9R8da0YUHBUGWHAgs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["leUf678CjQPbDlA2/0c4GUIeXD4eAECHzYzm+HskRPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:51"]},"IP":{"Case":"Some","Fields":["185.220.101.129"]},"OnionRouterPort":{"Case":"Some","Fields":[11129]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::129]:11129"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torfu2k22"]},"Identity":{"Case":"Some","Fields":["TfBjWWOStd9wZJlL6cElLkml4F4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DMVQ8Bh9aOUT4YaZ1baSeOAzLHzbkJolPaJHQdG1/+0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:19"]},"IP":{"Case":"Some","Fields":["172.106.167.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who10icebeer45"]},"Identity":{"Case":"Some","Fields":["TeqiFnXzVtpELiiMkFyQqtbSTEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ovbcLcYmMpnzqn/3EoKjeo+lZI4yI+pvM3kMuK2PZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:35"]},"IP":{"Case":"Some","Fields":["63.141.233.118"]},"OnionRouterPort":{"Case":"Some","Fields":[7322]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["floppydisk5"]},"Identity":{"Case":"Some","Fields":["TeT5+hBDLmJMCCdawmRupWmPmmE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qlvuzg/ZXgmQ1N9aHq9L2t7j6u9poVkReFlOJvWNZC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:54"]},"IP":{"Case":"Some","Fields":["185.213.175.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:3a30::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainboweuphoria"]},"Identity":{"Case":"Some","Fields":["TeGV/g1elv2K/aJUlXhdJ2s2d3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IfMdZDaYpiuwfLFGnUJdIpaGJwD87rYDRLYD2tOzBvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:20"]},"IP":{"Case":"Some","Fields":["77.83.198.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["diodeOnion"]},"Identity":{"Case":"Some","Fields":["TdEcPxH14okdV++fffQ77htRT84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CQJ3lttbzrAn54U9TpS5nMHe2g7FuYR/FabzrBkZrMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:32:14"]},"IP":{"Case":"Some","Fields":["99.149.215.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sweetnode"]},"Identity":{"Case":"Some","Fields":["TcvJVujw0sqJ+CqFdHb1/fPN0kQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZaLU/Detzx7JOsWqwS4oyoyq8taiXjWTEzZE6wEbR50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:36"]},"IP":{"Case":"Some","Fields":["51.77.245.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9060]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ProphetNode"]},"Identity":{"Case":"Some","Fields":["TciLXKkzIKtTm6Yc6aGtc8UYOtI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hiJnt1IJ5ZO8WiaGiFsSZj7JEvFcvp75YEExBtmBy0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:19"]},"IP":{"Case":"Some","Fields":["62.171.135.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2066:7989::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cannoli"]},"Identity":{"Case":"Some","Fields":["TbBJCgQggJqBSed4u6yPHpNJ2ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TL+9e2BGBs+/9vobcxG2370LDzXz3TitGNXUqgbl/z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:27:25"]},"IP":{"Case":"Some","Fields":["80.211.185.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Thunder"]},"Identity":{"Case":"Some","Fields":["TaFu1OPfwfxNTHsSZSbErHtq2Ys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUeoCjVVsipgnDLXs8kKg7pdAIuUEypFK3wMEsJYMA4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:31:25"]},"IP":{"Case":"Some","Fields":["45.77.160.51"]},"OnionRouterPort":{"Case":"Some","Fields":[23352]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["SixFootHotLook"]},"Identity":{"Case":"Some","Fields":["TY3jlcSnk0Vkap79wFokHAPAR2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cs8O5ukT0uSTFXkLv7kfc0R/OfJT3W92tRE9mDZG8D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:49"]},"IP":{"Case":"Some","Fields":["178.249.211.100"]},"OnionRouterPort":{"Case":"Some","Fields":[54993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6ea0:d509:3::a11e]:54993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["TX4rpN601w4WoThi5vk4PnwUQsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l+jMVLArktUiKvNAxVgRUOev7h0K8cpqIpzAZMvrpJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:31"]},"IP":{"Case":"Some","Fields":["146.70.124.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["themossyboulderspa"]},"Identity":{"Case":"Some","Fields":["TXkWlji12vghswYkcl/TQY+FCt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9kV28m20xuCWul5/tb9x1XLlrf2jSok8Knmx5RDqQ9w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:43"]},"IP":{"Case":"Some","Fields":["45.114.130.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pirut"]},"Identity":{"Case":"Some","Fields":["TXjFShRZEcZ8kAP+XVMUcmyvlCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ipeNu2ri5kSxd/tFNsOVLQo7PH7AIvMXht9et+sCX7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:36"]},"IP":{"Case":"Some","Fields":["172.106.19.126"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa1"]},"Identity":{"Case":"Some","Fields":["TXDwXdMIoupbZx5ECHm/rayShg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bcoMI067n419xg7Qp2zQJEmfA0bXlCdbgXOG1BjfFAA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:01"]},"IP":{"Case":"Some","Fields":["95.217.112.245"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::2]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tun"]},"Identity":{"Case":"Some","Fields":["TUyCzZ6Kq8s03IsNQ/ETgzgpM5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Mp1zJ4lzyJAnW8KgXCdpoqJLg3U/DcJZcCT88bZzZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:20"]},"IP":{"Case":"Some","Fields":["222.252.56.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carrymethrough"]},"Identity":{"Case":"Some","Fields":["TTo+P5jOrvLiWpV1dBkMHqan99E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XrFcUX0Q/OgT6RmuLzCqhmpwaB4bJMd0mIO4V9V055I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:52"]},"IP":{"Case":"Some","Fields":["58.185.69.245"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LTUFREEDOM"]},"Identity":{"Case":"Some","Fields":["TRkuXwekkZJidO49Idns2GrT5/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rK3WyHC58HsBc6x17HTMt9v3IDf4/dq2APJfH7WZX9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:57"]},"IP":{"Case":"Some","Fields":["78.61.137.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["honeycomb"]},"Identity":{"Case":"Some","Fields":["TReT1CP9sZaOqnRV68BwoOSLM+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dOGCqawYt12SvtkxNgqtUhOVjkP/72hHkULxahrWAOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:57:59"]},"IP":{"Case":"Some","Fields":["104.168.205.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev8"]},"Identity":{"Case":"Some","Fields":["TQ30aNyBb4CWcCwtosb9Z1Yfgcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uoTzBDXSBjz/AoxIkT7jkArWv/FBGBEJvQ+Pjzo0loI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:32:39"]},"IP":{"Case":"Some","Fields":["46.232.251.191"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2b:66e:dead:beef:ca1f:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freiheit"]},"Identity":{"Case":"Some","Fields":["TQxvwcenmsrtkMExv2VD2xkgQek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mYLSw+8ZUx5qvmWbMAuUQcuOg9J+3uf5GNcv2Uizj/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:06"]},"IP":{"Case":"Some","Fields":["185.225.68.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpaceJam"]},"Identity":{"Case":"Some","Fields":["TQLSfIjhvucm08RMe9eEPA6SrbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+x0NdFB3/93czt6Us6NOEdZxm4B/JqQhJHBB/N21EnE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:10:30"]},"IP":{"Case":"Some","Fields":["139.162.245.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe9b:277b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheOneAndOnly"]},"Identity":{"Case":"Some","Fields":["TPJpJBUa88e5puCFdJbUWFGM1U0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bau25CyEWLrcJrH8NFkKxKCPaAtMm1xV9dsDMAe8BDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:50"]},"IP":{"Case":"Some","Fields":["5.150.239.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1138"]},"Identity":{"Case":"Some","Fields":["TO6wzpD/cMtUzuN+r84XZmEjFRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n8hxZ2O5+CYomadQPmyow2/DJBJb74TehsApQXGFJQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:05"]},"IP":{"Case":"Some","Fields":["185.220.101.138"]},"OnionRouterPort":{"Case":"Some","Fields":[11138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::138]:11138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QOnan"]},"Identity":{"Case":"Some","Fields":["TOr85YQcDa4wFktPWUUvf02Bimc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["weCWmpoX9n8jklnysBmKFYOpeWQ2ZCmRIhXKi+Shc74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:41"]},"IP":{"Case":"Some","Fields":["185.183.194.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:425a:6fde::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["TObYP/qK0kdnAH6Mly83HyRo8Jo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HrEz8wdOGPF+DaxOlm6O5tHhIVGHkJoV4f7NsKpiTtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:56"]},"IP":{"Case":"Some","Fields":["185.32.222.237"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:ee80:e:fefe::40]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["TOQiRG1DsKIfD5yhRtkHVYNAIQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OR1w/v+Rv6hTuROd2oZmktPZDraKz0JqbnTvcfHmKnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:23"]},"IP":{"Case":"Some","Fields":["185.194.142.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["henkdefreumel"]},"Identity":{"Case":"Some","Fields":["TNTf/vOXHJAqIhANkRysY5vi71w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3GckLyQAQpiUENtlZDjcDqw5z0dbVOxaGvP9TccT+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:26"]},"IP":{"Case":"Some","Fields":["143.178.111.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CodePoet76"]},"Identity":{"Case":"Some","Fields":["TKeCzgCtvN25PeP8rPhERTU9d3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H1dvDxKoQkymHlOb2boribwF5fNiIhNIZJ2g/zqk0vc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:25"]},"IP":{"Case":"Some","Fields":["50.53.115.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atlien"]},"Identity":{"Case":"Some","Fields":["TJ9xfz0m0eVrHNZ050rUsuwe7Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JAUkd/050oOj2RerrUUAFor1zuXq4mbZ/KRcOMkrBaA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:51"]},"IP":{"Case":"Some","Fields":["23.94.203.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blablabla"]},"Identity":{"Case":"Some","Fields":["TGeIq5C4bz+RDd9r0yA/ywpHAOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fl6PKnpGSUKoYW4BDg8L/RoBoF1QS1UYGXvgP+/qbgE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:10"]},"IP":{"Case":"Some","Fields":["91.207.57.115"]},"OnionRouterPort":{"Case":"Some","Fields":[18049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MLaBnetTOREXIT02"]},"Identity":{"Case":"Some","Fields":["TD70sMFy8MEokVZuJ28W19wH0Ek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0WKDLzHHWTJd1LmoijEBeRFUnDnT3vkIA3oE3ujF76k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:59"]},"IP":{"Case":"Some","Fields":["87.237.165.31"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:a6c1:0:2100:87:237:165:31]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["specialsnow"]},"Identity":{"Case":"Some","Fields":["TDTnzgU0yJmU3vs5YA5t9Z+yu+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wP7FqjA3r6/PAiHaQhDMsxvoM0NlqQhgfHcKk+C1/po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:34:42"]},"IP":{"Case":"Some","Fields":["87.236.146.115"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a11:3b80:1:0:97::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk12d"]},"Identity":{"Case":"Some","Fields":["TCVUK3ZJ/ARy7b93Uh6lePmvUVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kRzbOxa4qj2HUdS2mbJzDFJE/VseDPirXE5wsfzeJU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:35"]},"IP":{"Case":"Some","Fields":["163.172.182.26"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:63b::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yunmensrelay"]},"Identity":{"Case":"Some","Fields":["TBzpxdPY8h5zVC/w6HMSLeLa4T4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDfGcy2Uy2I3DVjKSQB3lC0aaLCSNHBuIEQLEp1vOv8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:22"]},"IP":{"Case":"Some","Fields":["203.51.27.108"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["S/3nKC1jWXRfZTVyTdqtzSeeT9c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s3rL+vTjr430qXIg6in1ELOW7ifCeB7oNxbPrLEwnaE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:42"]},"IP":{"Case":"Some","Fields":["80.64.218.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["karotte"]},"Identity":{"Case":"Some","Fields":["S/ycYxqT/0ujqoS8aTG0MQw4omM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P+c8Y59UIn445aXsHJfGH/wr+ALWsNdDpAevM5/Coac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:51"]},"IP":{"Case":"Some","Fields":["109.70.100.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["S/yNQVbrW79DNedA34THgS+32Ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/dGRc8jzmybryU0SMLzw+DQnl0r4GxpmeV6W8JsDNkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:45"]},"IP":{"Case":"Some","Fields":["185.213.208.47"]},"OnionRouterPort":{"Case":"Some","Fields":[7777]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay33L"]},"Identity":{"Case":"Some","Fields":["S/PSmbxQDDUIaPB4dJKRx2bHqm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lU+tHct7Wx5cDVvngT+e+Wxj39Pw8qqwBCoHiHRkWP8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:31"]},"IP":{"Case":"Some","Fields":["139.99.238.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::3a8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["georgector"]},"Identity":{"Case":"Some","Fields":["S+1o356vbBEdh3jhnMmsev7E/AI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6kaodHpn1zZ2EifB5eDc2zGC52J9aTa255tHyWkYdEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:50:24"]},"IP":{"Case":"Some","Fields":["92.17.234.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ACABindustries"]},"Identity":{"Case":"Some","Fields":["S9q1a5aJocke6yUhI6/c9543osI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TEEw2hnCChN9wlhtnMC7NMvi107q8dyfgtnHPFEqDu0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:56"]},"IP":{"Case":"Some","Fields":["50.197.11.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HexenRelay"]},"Identity":{"Case":"Some","Fields":["S8IDa+oz85cjKRKF02qjwa9Dbes"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XFUiFA8XWkNJRZSmgFElrpS3D3iErFAS/6DqN0Soh0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:04"]},"IP":{"Case":"Some","Fields":["217.160.191.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra15"]},"Identity":{"Case":"Some","Fields":["S6PBKwc7fj95d8Rq82OGhbuJST8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qdUmA/7OPdpTh5+QpNIvu2JMwCdX2OrCz5w71Qq49vA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:01"]},"IP":{"Case":"Some","Fields":["104.244.73.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yyzz2"]},"Identity":{"Case":"Some","Fields":["S5X5PNsW8SlvShMzeFwV8u2tg+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jpXSWiPSfmHHyssFt6N/iWWQV4C5W/2GO/h/GKa0Edc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:39"]},"IP":{"Case":"Some","Fields":["192.9.236.179"]},"OnionRouterPort":{"Case":"Some","Fields":[3389]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c000:e400:99f6:e55b:322f:463]:3389"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tagliafista"]},"Identity":{"Case":"Some","Fields":["S4G8Hj1ZNHJ4AZwOfneeP1ovAXg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["83jUSq2JJkCkNmG/Y09tRds9Kxq0SefsoqNeZIWKPtY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:16"]},"IP":{"Case":"Some","Fields":["129.226.35.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORion"]},"Identity":{"Case":"Some","Fields":["S2jQ5Tku1vNGmjeIBjE1OpZVhjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmIlMIf5NiTWE0C7gR/kF9xRm2E2Qbp1aAu8JkWSNlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:56:58"]},"IP":{"Case":"Some","Fields":["192.99.34.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["amersufi01"]},"Identity":{"Case":"Some","Fields":["S19If4k9a3dkbPgYWwtmowKsKmU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUC4iTS8vb2B5RgwdA7BZ6VfMGy9gYvAfHhdWUbrKG4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:20"]},"IP":{"Case":"Some","Fields":["5.196.95.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:fe22::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tubealloys"]},"Identity":{"Case":"Some","Fields":["S1gvP0u03lbXco3rIqolU1CHD5g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wqgwg90Tza3Fmt+t8v8HYshTJpSkrjQ6ZyVNlyO9dEc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:31"]},"IP":{"Case":"Some","Fields":["213.144.142.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:ad1::24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sgtor1"]},"Identity":{"Case":"Some","Fields":["SyLEpW+AXJfS99dvCO2mlO7/wQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8ZjpGUBKoa7u21q9jWtWn/u0Rfr4W5rkx5UhZuHQ7uQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["198.98.57.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurosuse"]},"Identity":{"Case":"Some","Fields":["Sx6gmDeaiut3debgIJQLMJm1vnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IA7SxiTJ3PJvoeVzzaCXULjPVSWxafyZ+8/ZkXT0VAw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:08:51"]},"IP":{"Case":"Some","Fields":["159.69.27.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:2170::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZXSpectrum"]},"Identity":{"Case":"Some","Fields":["SxcwJUFjNG9DTeGFu6UbYtkHT8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8Ah/0kBQGYIfiHO9IWG3Ke1MSE3rjaJOhTmoUhDkKOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:53"]},"IP":{"Case":"Some","Fields":["93.95.88.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2780::e01a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["birnenpfeffimitzimt"]},"Identity":{"Case":"Some","Fields":["SxcEdtCUWTKEOPPmjtGVFsn3WoA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bV2II3otq3vgEXNaqPvsSRelKV9aMciy8il/t45O9wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:58"]},"IP":{"Case":"Some","Fields":["212.21.66.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bf0:666::666]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SwqqR9kcWJLvLlw96dzIaNFmNas"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1fEjtPNuzunWc+PYwlhQZGO3lWK49e9QrPNkdrD+YE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:02"]},"IP":{"Case":"Some","Fields":["129.159.97.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["whatisyouronedemand"]},"Identity":{"Case":"Some","Fields":["SwQ2pgqEWFEVWBOYZbcqkSoNF58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I6NmOiLu9RKpbEZdSG1VPzkzrKu3KoP4VHjcvjdQSOw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:13"]},"IP":{"Case":"Some","Fields":["168.100.8.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=0 Unmeasured=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["SviRYD97vcCFf8rOujOGzfDmGe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z9DbFcEUqYx+Iddm8dkPeruD0TchLpIgaDpC5gUZd1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:22"]},"IP":{"Case":"Some","Fields":["51.159.188.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allTheSaints"]},"Identity":{"Case":"Some","Fields":["Su9CLz1U3IqNdbwHH/1N4c+bon0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsZOr902l7TNIN3+6K/SqJGz4itAKosIOXTbTGBMLmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:21"]},"IP":{"Case":"Some","Fields":["77.97.245.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RonnyH182TorServer"]},"Identity":{"Case":"Some","Fields":["Ssv50daf1LZVdeEXvLKWrkePM8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ycJ2xQWdY5Erl6JJ4MAAhOvSWuWMUP3jFhBnmTRtgC8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:17"]},"IP":{"Case":"Some","Fields":["79.192.212.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stellvia"]},"Identity":{"Case":"Some","Fields":["SsTxIMEZxyNWvJwzvxTibSvwUtQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EEO0Nk4NuZYYAMcxttTGY4N2Uz7GCyuD/cmx1Hyi4xM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:11"]},"IP":{"Case":"Some","Fields":["37.123.163.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:28fd:bb03:7374:656c:6c76:6961]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Sr3V+VT7xiFiK5vY7zHtYOtlQIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIYdbPHzB8X3grWj2+JwC3XkSCeMUS9/T2sSLoidZBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:29"]},"IP":{"Case":"Some","Fields":["90.110.232.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb0c:7aa:3800:7075:73ff:fe74:7265]:9006"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["SqMPphAfO8w4b8pMIGXf9dDiquY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Li1wEFqqVNJ8FI3K2DiPdtDYcawX8zA8fu1w0aV5kFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:02"]},"IP":{"Case":"Some","Fields":["195.88.226.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ymir"]},"Identity":{"Case":"Some","Fields":["SqADVgTfQOW6INvojvbRFDJCG/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0j3D3BYHkrA3DFxq8xf0Su6ShWKdvzT48pj17+0Wrdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:44"]},"IP":{"Case":"Some","Fields":["45.154.255.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lz53"]},"Identity":{"Case":"Some","Fields":["Sp1h6OOdyDjVTEi5JeKF4Z7GUJc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6qk7KFY2t0mjyBmilwfi8IZej9gvjxe5fCsfbib/PTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:45"]},"IP":{"Case":"Some","Fields":["173.77.121.34"]},"OnionRouterPort":{"Case":"Some","Fields":[18585]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sasageyo"]},"Identity":{"Case":"Some","Fields":["SplrAXNtFkbnKmAButCPJgfMJJQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNRt500fLagc9Slq/wIhpfQXMw+knL9vHUYB9qVrIio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:52"]},"IP":{"Case":"Some","Fields":["82.165.2.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba0:1800:8193::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clicker2"]},"Identity":{"Case":"Some","Fields":["SnzDJCQQv0GFzvsogjmI+CGG0nQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLpzcki0WrER6Axy1A4roRArOUNqBJPEShun7IpO9A4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:11"]},"IP":{"Case":"Some","Fields":["94.16.116.137"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:91:2549:9:f370:a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SnTgCbb0isButJmYZufyWK+LH/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zpf4S27LRZQMzfuvOk3SjnMjc0j1npF4f45XvjAA62I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:09"]},"IP":{"Case":"Some","Fields":["23.128.248.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::848b:5ff:fe51:463b]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Smn5ImthE7BoHVyTu9YNX8y+SBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rd4y5V9HvvNx2LjUHbMVOcJjsdbur0y0m89rQfIkqdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:57"]},"IP":{"Case":"Some","Fields":["78.35.85.154"]},"OnionRouterPort":{"Case":"Some","Fields":[587]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["SmkBD/NoMNaUnKRFaXToWF6SD0o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eIhdXVoBluyu0hj+7b61t+9Fu7rYFaZOnoTo6LIC96w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:22"]},"IP":{"Case":"Some","Fields":["212.227.73.216"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:46c::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["interestingnickname"]},"Identity":{"Case":"Some","Fields":["Sl6KDfzu4BIbJGR+vWPpFfAXc4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CuhYoR3uKQ4V0PA/mjHmV2J1GR6HEiLIjZrWyEW6Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:40"]},"IP":{"Case":"Some","Fields":["130.61.57.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lunabase26"]},"Identity":{"Case":"Some","Fields":["SluN0F/Ab17no1h0dqAPXM0Q0oA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["idI9lvaNPJlmRJ9HAfEYcDbVSpPI+M0US4CymshUfhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:46"]},"IP":{"Case":"Some","Fields":["185.67.45.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Labell"]},"Identity":{"Case":"Some","Fields":["Sln9NkLE2fRqjZFqybxkOQvLxq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A57JfvpttMOP4JYN5TdirSkQGmjFTvejbLEBaStj9lo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:57"]},"IP":{"Case":"Some","Fields":["51.178.81.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber61"]},"Identity":{"Case":"Some","Fields":["SlMapxKj3wqQ60JxHuvpC2kYs3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PqQWFuAhdhkhVypbmyOGhpNU8RinntZOSBc0Wd6zihQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:08"]},"IP":{"Case":"Some","Fields":["185.220.101.31"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::31]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netzwerkspaB"]},"Identity":{"Case":"Some","Fields":["Sk77PpNHGJtquUU4RGksyh9GpMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["94a6aXMi1KI/RaQNfou/auknNitQdDuhu/lJ+wBD8YA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:51"]},"IP":{"Case":"Some","Fields":["135.148.100.84"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dr262"]},"Identity":{"Case":"Some","Fields":["SkMp3rxhlR9GYyBJklPCKXNUpMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6boSdOUPpuBZ0zdOF+I4JkNXli1WUVmq6kOMWihGjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:19"]},"IP":{"Case":"Some","Fields":["85.208.97.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq01"]},"Identity":{"Case":"Some","Fields":["SkEd2Ou9U5qgCQowWFa5yDj38tY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7n7PjcOEnyYmzUtnD/s6ZkFDdwhm88bVol3u2eHqSxA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:16"]},"IP":{"Case":"Some","Fields":["193.32.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tormachine"]},"Identity":{"Case":"Some","Fields":["SjuHTwGH8s8No8j3YGOwcPn3oU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DZyedbxAoNaqSkTzqg+onFoBwxPDdh7gW+HFxhjbdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:10"]},"IP":{"Case":"Some","Fields":["87.118.116.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ShacChTkH2R9AJ7EnSij0RYp2vA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6FOZc8NHMocZVv2FIsqksaJpvAZQtxYNvrfT79oUy5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:49"]},"IP":{"Case":"Some","Fields":["185.220.101.44"]},"OnionRouterPort":{"Case":"Some","Fields":[10044]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::44]:10044"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc13"]},"Identity":{"Case":"Some","Fields":["Sgj5eIUrPMXbMlUop3t15GuoKWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iE2iu6CeeybLKLtX4SUI7RCMJEMwpeOUoCI3MR9g+QE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:59"]},"IP":{"Case":"Some","Fields":["185.100.85.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:15::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SgeL09m1wORbVnl36vYWDcogAVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kdEAfMAixUyMRZ64Od6MaH7PBls0pinYCNEv7O8XZVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:43"]},"IP":{"Case":"Some","Fields":["46.208.152.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gslinx5S0zynC"]},"Identity":{"Case":"Some","Fields":["SfkG+gXard3KZ3tsS6GWyqEELpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a3vlUMv7MjitiHiEP0guR4MJTcjVZgZw6OJyzTh3WTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:37"]},"IP":{"Case":"Some","Fields":["101.3.121.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM01"]},"Identity":{"Case":"Some","Fields":["SeX7lXBF/dyMUyVc62umU+Hpql0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CtoRUtkEtiG3XXXrti9FErS12DbmhMU4UsCUCEgRKwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:48"]},"IP":{"Case":"Some","Fields":["185.239.222.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SeGcNwUFstlRlfN8Qwxbsb7Zt1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SESRm9pqT9VAPf68I3SIyQZ+pLjEwTZg0wDlzmDASE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:18"]},"IP":{"Case":"Some","Fields":["193.142.146.187"]},"OnionRouterPort":{"Case":"Some","Fields":[27551]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who7USicebeer04"]},"Identity":{"Case":"Some","Fields":["SeEE55VeVXUpkur6L2Wog66H7xs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DRkIPWCjGJ1OcPlOjXvdfP1oPFlpzri/2mjl2t2vQck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:03:37"]},"IP":{"Case":"Some","Fields":["142.54.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8086]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlickWinkel"]},"Identity":{"Case":"Some","Fields":["SdwiKnSUrvjn2/LjyqvyNQTHe2Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PJKujQR3ntC178p3+rCsfMoiZnnYQAN+m1HLHflvr8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:30"]},"IP":{"Case":"Some","Fields":["45.142.232.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:29b6::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymousLibrary"]},"Identity":{"Case":"Some","Fields":["SdE7NInmhWRBwrV5klqHLejBKgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IJ0khEhKI2/ROE/PfBtPFa2E/0OMQmTAIS7zJaN2NC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:29"]},"IP":{"Case":"Some","Fields":["107.152.33.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ARelOnVult"]},"Identity":{"Case":"Some","Fields":["ScQdWT7hG9/NRMNeRzwgv+WBA0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Cg4a9VEbPPbDqYptkuftSNtbTsqrNcJa8N2ecAgWxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:17"]},"IP":{"Case":"Some","Fields":["149.28.136.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:4400:76e7:5400:3ff:feff:d84e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nicodeamuz"]},"Identity":{"Case":"Some","Fields":["SbTrjoF+XxtZQHSaJhCvD5lQyAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jl0sxjXTDPK34PBCukSIR4Kho+5fhyJkpj7Hd7Lw27E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:38:34"]},"IP":{"Case":"Some","Fields":["216.197.76.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HellGuard"]},"Identity":{"Case":"Some","Fields":["SZ+gFDMyBJEhYiWAH+BYnCULTW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pRAmTfHKuPvvhsYBbaaXcgwPo6vrlbtWjRShXXn5FS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:03"]},"IP":{"Case":"Some","Fields":["94.134.28.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI15"]},"Identity":{"Case":"Some","Fields":["SY86AtxVwhOs1+q9JeCMYUbXX1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I40yZN5qm6QKZ4+kqzb/rIBx+tjIaAmBsMmJDBQta/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:15"]},"IP":{"Case":"Some","Fields":["171.25.193.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::77]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ColinCogleEU"]},"Identity":{"Case":"Some","Fields":["SYzdO/neWaVnjoSI/qRQ4YdiQqU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zKuKE8WRwYOsm2gZEHvwRCnsFXV6+RG4j9BkrgF4qGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:48"]},"IP":{"Case":"Some","Fields":["51.159.186.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1202:1324::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alibi"]},"Identity":{"Case":"Some","Fields":["SV8HyuzvcpkHwwax77AJTe/RO1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JkicCxJjI09Fvo7Lu4ZGWIwFe3M1txALXede2LMut7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:38"]},"IP":{"Case":"Some","Fields":["185.56.88.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnotherTorRelay"]},"Identity":{"Case":"Some","Fields":["SVtJaGfIS7ySM4MB2SSFDyJuddo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+DTMYa1SVVig1RVuaUkmqqf0U5SvvOF+L+6IEjaX50U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:18"]},"IP":{"Case":"Some","Fields":["5.135.162.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:e531::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["andr788k"]},"Identity":{"Case":"Some","Fields":["SVS1GvDLraCOS8OJ3x4+QZU1Flo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kvczBGLBpBNptFT+dlIUjGQkjx6GsFlQ84mFhxtgXDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:44"]},"IP":{"Case":"Some","Fields":["209.141.55.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:20:be7::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["configwaseditted"]},"Identity":{"Case":"Some","Fields":["SUWIJ0eegsohirGvtLcdKuJBcHM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YN3BLmTPz41YlCet7twhAtslo2sFBnUzwFjBdcJTAJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:40"]},"IP":{"Case":"Some","Fields":["14.200.177.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ST4wZ+0qtUM+Kds4eXUB5dzPyz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cJMtYRPR2W3gW3rk7YW9MFKPjEXugRL9OdxIV7YwgI4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:07"]},"IP":{"Case":"Some","Fields":["45.89.124.247"]},"OnionRouterPort":{"Case":"Some","Fields":[55464]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SSkEGj/uaYmQMUvWHQ32lYxCGxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Twtnss23Qyqv3W2NAvsdwf7bLbg8c9hLaMTFsq5Nqpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:08"]},"IP":{"Case":"Some","Fields":["81.95.52.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI22"]},"Identity":{"Case":"Some","Fields":["SRtOVbT9T97GOyKbCj5Zho/KHx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FppQoBrAIJFPVCcbVWpSgn72e5SmQZ9f/BGwDIweuh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:49"]},"IP":{"Case":"Some","Fields":["171.25.193.80"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::79]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VZFFNRMO"]},"Identity":{"Case":"Some","Fields":["SQbN7NqlthR7whyrpkw8Qmc+2wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvwdQHiR9OfhTtdQhRtJEHwjb+8s99wQukXGAC/TBBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:25"]},"IP":{"Case":"Some","Fields":["185.65.241.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6e1:1001:888a:51ff:fe8d:3326]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gotaRelay"]},"Identity":{"Case":"Some","Fields":["SQAOpdQ2j385Q0JfBq6G898sz0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6v938lhMLcO9GVNdlhtlonjZAT5An/n9i8nCUmzTCHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:03"]},"IP":{"Case":"Some","Fields":["45.116.189.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SOhIAHa8Jn/cQYJqqF2CLpriPnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLbEgEOg9JMMGsvklI2A+xfPMlOleFHa0nStUHKoY0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:20"]},"IP":{"Case":"Some","Fields":["87.142.105.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athekiu"]},"Identity":{"Case":"Some","Fields":["SN6DL0vmlVs/Px8GAxDzv9enkD4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vww+4Gq+ToJMJHq8seeitshAGq15vJNIOjxNtXSTtJ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:59"]},"IP":{"Case":"Some","Fields":["37.11.134.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["battaglia"]},"Identity":{"Case":"Some","Fields":["SNjFR36eOGSc881eKhfyAbykAx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PDZqFiQ/nlgf+9bIui/r32ZCqXdIbOMBLMoXbHoIvUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:23"]},"IP":{"Case":"Some","Fields":["160.119.249.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wohruo4aXaed"]},"Identity":{"Case":"Some","Fields":["SNU9NRc6TvGON2gvAiOilhd9dOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yFrkrAwHmgX0jQAzeryKzibJVrKPd/HzdLWRZDeHxBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:14"]},"IP":{"Case":"Some","Fields":["199.195.249.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golosa"]},"Identity":{"Case":"Some","Fields":["SLH7lF4I4/wPiAEQ1qdsh/rZk/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XY6U4kGX+MnpyzHmslZ8tVmoke7INdc7dasG6FCrWXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:17"]},"IP":{"Case":"Some","Fields":["176.58.121.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe78:b382]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["EarthElementX"]},"Identity":{"Case":"Some","Fields":["SLG9qvkiSx7Zk8QE4Y2pAxtQheo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZgvEBp0Cxz37F4UOq8dVBZ3Ud2/FUhedyYZLMptMZAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:47"]},"IP":{"Case":"Some","Fields":["194.15.115.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["SKfjoWn4bkWgAoThMDeTr/ph8eo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2DMjs7ZHF+cOlfbheeaI8822fV4+0g21VATbNQ+FwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:09"]},"IP":{"Case":"Some","Fields":["5.45.102.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:614:d803:40ff:fec3:832a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zapner"]},"Identity":{"Case":"Some","Fields":["SI5mO0qIwS5t5sEvemBT8Jv3pho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6G51UEsPse2chGnF5QO5BZWVEKv9QGlrgcZM1oCbrB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:49"]},"IP":{"Case":"Some","Fields":["95.217.6.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:516b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["digitalmensch"]},"Identity":{"Case":"Some","Fields":["SIAs2XgeisBnEDFMesBgoVP29P4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E83dQx5GiY2YvNvErpnh0WABlTqOxJiNRfXCpwPC2+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:49"]},"IP":{"Case":"Some","Fields":["185.155.29.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:e5c1:105:feed:beef:2:babe:5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pecordPi01"]},"Identity":{"Case":"Some","Fields":["SH1z+2iRxQDnKabLVTxEdesrPNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RwN4iyesAEX1DhDUe8FbMkLN04bQckI7rlsbFGh3lMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:45"]},"IP":{"Case":"Some","Fields":["136.35.40.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["SGvuZoYM5a/p2yxttVBr20Z/ItY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KFNCbXEK0OfQM5LGfMYtP7xp7qeGVRctB9o+Ybi9tEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:56:07"]},"IP":{"Case":"Some","Fields":["206.0.94.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk1"]},"Identity":{"Case":"Some","Fields":["SGdANTuQWqRzH4LAtMwlghpixuM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELVsHKbTXAVcAOi7TtXzHfXEWCUOzcoSMe/IOQPiATc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:07"]},"IP":{"Case":"Some","Fields":["87.139.33.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mordoc"]},"Identity":{"Case":"Some","Fields":["SFbJfcTyJxvIlt+cq9IX7i2GnWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AU0R2UWso+W2Cc/jJQDu9kI7WQvPylorpQ8/cyeClg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:15"]},"IP":{"Case":"Some","Fields":["136.243.149.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:171:17d1::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa5"]},"Identity":{"Case":"Some","Fields":["SFSSpCCv3/+8ygXf8xfNykMFLBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["otab08TCj3gYVeaFRqs/6DXv+hzQ+ZsT1n5QIHdqxas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:46"]},"IP":{"Case":"Some","Fields":["95.217.112.218"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["SFOnDbn5UgOhVEoCRdnSKfl7SBo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+QwFzii+XCMrGI0rBddmIZkh1jkCcSDdqyJw+btYSU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:49"]},"IP":{"Case":"Some","Fields":["88.208.215.95"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1f5::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WinstonSmith"]},"Identity":{"Case":"Some","Fields":["SE9mbEkbzeIrReDhnRzqWsxalhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tjXkOfX9r3XbjJq9+r6U+mA8p/ykf1/pv2LqMSSwjuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:37:05"]},"IP":{"Case":"Some","Fields":["163.172.151.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:560::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["systemli01"]},"Identity":{"Case":"Some","Fields":["SDuy9ly+eAQUUHnnU9n2sI1/bEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mGg5BLAWpnadDfYVCnn6LB/YsI7wodZMHW1ONlEixWE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:16"]},"IP":{"Case":"Some","Fields":["192.68.11.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:a40:7001:2::4711]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ITPIPRelay"]},"Identity":{"Case":"Some","Fields":["SDqvAyr1lraS/i7vAwR7B+S4c2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/q6OpbWMdp5tOXv3C7yHGhSJREsf6BsWcg3LLKSo+0g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:07"]},"IP":{"Case":"Some","Fields":["193.200.27.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KherNl"]},"Identity":{"Case":"Some","Fields":["SDem3/yONoHXCtno0FfAKQk9ovc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RVWKBzAHpZzkE9f4vdYv8sKFrNQqoyERXzNJOlLRb3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:06"]},"IP":{"Case":"Some","Fields":["51.75.206.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:305:2100::7cb4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasilNode00ls2"]},"Identity":{"Case":"Some","Fields":["SDbk88ivM0gEhG3QX9NplYwPmOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZbvCyBMpv0CfsXoPyPVEG9cLB7iXP6dYAwsu9gwtC1Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:44"]},"IP":{"Case":"Some","Fields":["5.255.97.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:102:3c60::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rasptorMuc01"]},"Identity":{"Case":"Some","Fields":["SBwOtL0dIAi4KvEVcSf6cvS200Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DDvnyk3ubQyz0xUOV7ZTpJiEhMElqH8lk4/CJoP6U2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:49"]},"IP":{"Case":"Some","Fields":["93.104.191.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tactback1545"]},"Identity":{"Case":"Some","Fields":["SAhf1ezhRFS8c0nkhGAst8EDbYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32KuJCY4Vt/+pRJN1LxWvRs/nXGWsQTXZluLYTAYFfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:55:28"]},"IP":{"Case":"Some","Fields":["108.18.209.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0171"]},"Identity":{"Case":"Some","Fields":["SAINQSZ0sTsIO5/wphIi0SHGeGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5TA95xOftt9sV8/g/B5zGGm3aqfsyOv5xbfT/B/Nn18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:02"]},"IP":{"Case":"Some","Fields":["185.220.101.171"]},"OnionRouterPort":{"Case":"Some","Fields":[10171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::171]:10171"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra59"]},"Identity":{"Case":"Some","Fields":["R/wZ2+K0K7SBxlGRJ2Zws9WJ8HU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CDmf+iDXs1F+2F3nYZ+X5AslKp2hux11SJ8ShSCzo90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:11"]},"IP":{"Case":"Some","Fields":["213.164.206.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sing1"]},"Identity":{"Case":"Some","Fields":["R/nR4BVQiZF/+nNO91kIkybDdho"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZzmHNpTsaytNsju0FaJ0jnhUTTNAGN0muF4t56YPXI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:13"]},"IP":{"Case":"Some","Fields":["68.183.182.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d1::705:5001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute15"]},"Identity":{"Case":"Some","Fields":["R+STGd1neE8eZbV5M3G+RnNll54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCg+R0FcEzuQ1w+iXCq65Snv+eXs8GG02sgtrAsEqys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:55"]},"IP":{"Case":"Some","Fields":["162.247.74.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GuardianAngelUS0"]},"Identity":{"Case":"Some","Fields":["R+QBxl20BXcyuDn6nkgypngrINo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M4ICjZpNWGwZhkR6QpzIPeQW74Ijz/beKb9gv/zvQic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:28:18"]},"IP":{"Case":"Some","Fields":["107.152.44.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MSchnellDS"]},"Identity":{"Case":"Some","Fields":["R9yr6KsGM+SiRTXTFx3fkWM4uf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ng9+F94YHm2hdk9oeZ6WgGo8H5vITAarx5TXHzO2GcA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:54"]},"IP":{"Case":"Some","Fields":["65.21.126.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["updater"]},"Identity":{"Case":"Some","Fields":["R9GfhSFvEjlSlSHgJlCFOU3yAbk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xDfODBNFJhdyYVGzknziX+phq4uo8un/Z6RDSUqr//E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:19"]},"IP":{"Case":"Some","Fields":["172.241.229.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["R748gLbIMSEVJ9GNHYTidQ9BLt0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b9NENPD7vH4JEQSqGdMaNhIrMluRsOg8aQqGKqEvdEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:40"]},"IP":{"Case":"Some","Fields":["108.240.182.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9990]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["unnamed"]},"Identity":{"Case":"Some","Fields":["R7mqfiol9x/nWTWXvzr8vDHrm98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ww69/FjThYc3M8aj118IA1s2xbCnHRcGf+hQPBP4i44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:41"]},"IP":{"Case":"Some","Fields":["51.81.209.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9050]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorSJ2"]},"Identity":{"Case":"Some","Fields":["R7Sbtr6f94lDUHzCn1V1LWQSDoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7We+OAYzTqyFdPLmsuMOduUR3Tj5Vo2cNdtt/kWhv/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:16"]},"IP":{"Case":"Some","Fields":["192.210.206.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["R7F4t1yOQvL4r5qwfg+8k9y3Lfg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RHCLbT1d/dB8FHL4uDz072xQxr6dydpGtdOrMbiyQmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:54"]},"IP":{"Case":"Some","Fields":["95.214.53.216"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:35d8]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayongrazzt"]},"Identity":{"Case":"Some","Fields":["R6PQBSXwQfOCs5i/lbxY4OwjJ2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qVpaNy9gslLdhRZzf6DYeu4+sPr0sE4q1iZ83WQy7iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:02"]},"IP":{"Case":"Some","Fields":["185.220.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:11::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToolHaven718"]},"Identity":{"Case":"Some","Fields":["R5Ukrv3WD6aRHlqVU/vdzj7y5a0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v/9xYwSCmOOsewy71wmclba8zET4MOnp9wvjry1Ls+4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:28:08"]},"IP":{"Case":"Some","Fields":["209.141.53.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1a15:e511:887f:23bd:a199]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["R5CdQELugabVgQX941yYmS/UV9I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TmOj1EZsRWoSmvZ5z78YDidp2HcisNTNQyoDS4X/9SE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:37"]},"IP":{"Case":"Some","Fields":["23.128.248.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mordel"]},"Identity":{"Case":"Some","Fields":["R4B0mZSyNVf3RYa6EotNwBpUZnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D3L1YYe147SuJFftYamvv6wXMyBrpISNcKbUBIyF4Eo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:19"]},"IP":{"Case":"Some","Fields":["71.19.144.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe39:574]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["R34riuOAvSTH7l2f9ayY2OAkk2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qbi9A7Q3IKmqD9kFM2aOFakcyBPB/YxrxZafbHpaVVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:52"]},"IP":{"Case":"Some","Fields":["188.68.34.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rastanet"]},"Identity":{"Case":"Some","Fields":["R2wyG0+xBwXf3b+AkXerX7veLNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PAsm5V2POSBQMrH77rwdFbzFur0BdoZp44Wh5asch14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:00"]},"IP":{"Case":"Some","Fields":["85.0.125.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["R1+9iflufaxit7eWe0gUpqcCQQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7QpFR9ZgP4z312SNbW+d7p7kmJv9bbmBxSozM3PM2CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:40"]},"IP":{"Case":"Some","Fields":["70.44.88.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=96"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RepusRelay"]},"Identity":{"Case":"Some","Fields":["R1QsxLXjiZcJcVDEdU4X0kP2/wM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PEnYO4woM7fJ6mryZ/RnZXm/7BFMH9ONT6NLvoyJHTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:15"]},"IP":{"Case":"Some","Fields":["190.45.250.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["R0vo+ORnxbuWuKDvTI4j1oF9Ngs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jd+MsGenmDpGrRFgdGlNFMCUv40DMHMZm88Pp9uf18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:45"]},"IP":{"Case":"Some","Fields":["186.7.78.249"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllHailEdSnowden"]},"Identity":{"Case":"Some","Fields":["R0qwFMKEgDqWBPGJd30gysES4c0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t1uUgm9qWuFO4RHQjE/jbSxVFOQKxtgNu9HUNTGZSCg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:22"]},"IP":{"Case":"Some","Fields":["192.18.128.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode3"]},"Identity":{"Case":"Some","Fields":["R0WssWI0OF7xaU1TDhCfelc+MMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PyLLThAqRQL6zE4sO2mMxs/sDaLh0f7u00ePkJk8S54"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:31"]},"IP":{"Case":"Some","Fields":["89.58.4.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5e:d48:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mclabs"]},"Identity":{"Case":"Some","Fields":["RyxBVfbh7QZ3Ud9EeLmRSHOT6Ts"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nnFLBS9OCXz4pKbHnKkjztdHoRDV1F9f6gUG9gIkk5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:48:25"]},"IP":{"Case":"Some","Fields":["219.100.161.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9020]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElRelayoReturns"]},"Identity":{"Case":"Some","Fields":["RyUTMR4EEQqe9q8E5q2xqhzcM7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q5top2LnSeJm5T4o6hCm9Ejpay+j4DcaBgNEqexWSac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:15"]},"IP":{"Case":"Some","Fields":["69.164.205.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:92ff:fe25:5835]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TuxFury"]},"Identity":{"Case":"Some","Fields":["RyGvq9vilRKkepmOaDo+6s0URqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UDwyDpfbqMhk+CrKnlGYXx7y9sxxph3oE1SoYlg7T0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:51"]},"IP":{"Case":"Some","Fields":["93.212.36.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crivit1955"]},"Identity":{"Case":"Some","Fields":["RxhPP1wroDmcBr25ve+tiVDM9PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6J9Qi7h3HVcgRZ6Sbev54TJL8WZOKwWY0P1HZw56zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:54"]},"IP":{"Case":"Some","Fields":["86.17.181.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChomelesDEionos"]},"Identity":{"Case":"Some","Fields":["RxdepcG4MK1y8u0UwIm0Q3WDduE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VTbyoWEn/E6F3uGIiwQRRwlYzAGoMqs62TwMUN44FXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:08:20"]},"IP":{"Case":"Some","Fields":["93.90.200.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:374::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["runesandrelics"]},"Identity":{"Case":"Some","Fields":["Rvn7lDkXhY9hjyZIWV3qzZMdRAA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qmzo5x7pxIa6rOUOils3H2iczYWWe3x3JmY6HZlu7rM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:59"]},"IP":{"Case":"Some","Fields":["54.36.108.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow010"]},"Identity":{"Case":"Some","Fields":["RvkO86NijBNNu0ZU0OT/frkUtpA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kzJyNjrX6ebz7V0Rf4C0I6QaH4awz/UmYyewbRgrTTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:11"]},"IP":{"Case":"Some","Fields":["185.195.71.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ukraine496"]},"Identity":{"Case":"Some","Fields":["Ru6QwmDIGfIZvNi/DLRWc8jCpvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ODoeYaf/AWtsrEI9HVNumsNbDEe2Fe9XTuzCNkUs/mU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:45"]},"IP":{"Case":"Some","Fields":["107.152.217.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH100"]},"Identity":{"Case":"Some","Fields":["RuBIfu79aUzmJcxuEtAyOVwB24I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nplw/MysOMXrBXnzpFPkDjFDafMzPAqSP1iy1znXkII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:22"]},"IP":{"Case":"Some","Fields":["51.15.150.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mickymouse"]},"Identity":{"Case":"Some","Fields":["RtsEMjSZ3VNZVlMd8r97A+sqsV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N3J23FcFfvv2eVdGBWBWvAtyMCSckCNVTtud56ymBVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:40"]},"IP":{"Case":"Some","Fields":["46.4.103.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:94d6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bad10"]},"Identity":{"Case":"Some","Fields":["RrxlW3RgIw373C9HVMFjbsMlwZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3d6Pe7tUypV8IWS0XCT9LqmXrehQiYZct52zZggZ8gU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:09"]},"IP":{"Case":"Some","Fields":["69.144.171.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SORGaming"]},"Identity":{"Case":"Some","Fields":["RrrMzkvDyqY9L+dw2irjz0AbnPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FBCiJ5gKjl90dMXqvpo+1vJcwClApSwKVuVSb0KkLSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:50"]},"IP":{"Case":"Some","Fields":["95.217.83.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackbanana"]},"Identity":{"Case":"Some","Fields":["RqHo6cB012K+iWvhTFDksl/Vqck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+z/Z1tH6FZqMTOX2euWv7QErfDuPvAg1qsY8FvSRD9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:19:29"]},"IP":{"Case":"Some","Fields":["185.130.45.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e01:3:124::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JacksCluster"]},"Identity":{"Case":"Some","Fields":["RpItl41oJy+ZNEr94OKX13LriQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3NzuPEchwUmi+FVoMOJM9JUgfnsHDmutPRHuz2hWXks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:40:43"]},"IP":{"Case":"Some","Fields":["91.64.46.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9228]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DjMiddle"]},"Identity":{"Case":"Some","Fields":["Rn10F/+mEbwgIn/jR0lM5fYSGPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yoIx+6jWa2OxGN9u23z+YatIBeomiWgbo4jaKBqX44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:10"]},"IP":{"Case":"Some","Fields":["173.249.57.253"]},"OnionRouterPort":{"Case":"Some","Fields":[433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:8283::1]:433"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp2"]},"Identity":{"Case":"Some","Fields":["Rnn4Z2GOZmZ2LdWGrz8JjOzQHA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4YSIThs5R8ZvUckUDfb/Q/3qCFN5efxjzrLw5gQSIG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:47:14"]},"IP":{"Case":"Some","Fields":["185.220.103.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex58"]},"Identity":{"Case":"Some","Fields":["RnOpdB0rfPNnzjps6Qww4YIKr54"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["42OMsiLkgmOjWSfzltcPnMzhlyQrBzt1DQ29ke+rpgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::147]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alzey"]},"Identity":{"Case":"Some","Fields":["RnNmFsWoldY2yT75+KKJw7yT7lM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q8M1/FVlHJi4gwBL3M6Q5dVs3Xv3Y9gleNBpQRoB3Uc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:40"]},"IP":{"Case":"Some","Fields":["89.249.65.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SleepyFoxgirl"]},"Identity":{"Case":"Some","Fields":["Rm8GAz7UOg9qqP1oxkfWeceGo38"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQVKYJbxwGWn0l9qYH45Qkc8sHq/TERiHmwTn0pFevg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:25:02"]},"IP":{"Case":"Some","Fields":["109.164.34.111"]},"OnionRouterPort":{"Case":"Some","Fields":[6901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackwidow"]},"Identity":{"Case":"Some","Fields":["RmBY34fEXv7PB73J2CP/Eu17aJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8DoDkxBcB/HCega11rihsAa36+9hp0rC2JY/N6yIyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:38:59"]},"IP":{"Case":"Some","Fields":["62.67.28.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay14L"]},"Identity":{"Case":"Some","Fields":["Rl0XxvwpfjhXtcbxUgBqHiEpROo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Sw3KYt8J3iPTUZ00tHxLaMQDs2Bq+T7cVjYmGTX7FM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:41:14"]},"IP":{"Case":"Some","Fields":["195.123.245.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9403::86]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TVORrelay04"]},"Identity":{"Case":"Some","Fields":["RlkoETLD0Mn6VOxoclB8oAkqTcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ER7XBatAng93MglhwZOq0Q4H5UyqN9eFHCNlOOPZiFw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:56"]},"IP":{"Case":"Some","Fields":["71.171.118.93"]},"OnionRouterPort":{"Case":"Some","Fields":[8902]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rainbowexperience"]},"Identity":{"Case":"Some","Fields":["RjpLRAzFu1JM5v2Ie5avJnlDfPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SFtvegLCVSit5feB0d/LscEapFJ9WYUSh/XYLraG30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:17"]},"IP":{"Case":"Some","Fields":["77.83.198.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["RjDkp9CKvmEdrl/loUQRy2bm69E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G0Akw2Nb667VhyW7xXQUbXzWevGDpxdAeRCnQHYPfVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:56"]},"IP":{"Case":"Some","Fields":["23.128.248.221"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::221]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ceres"]},"Identity":{"Case":"Some","Fields":["Ri9Jg9+/tOVXcGhDCTybSXoj35I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+9u6zYkuWCW7wIZ18sYxoHEV0v9N6TtxzhE+NcIppk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:00"]},"IP":{"Case":"Some","Fields":["45.79.70.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:91ff:fee7:ec0e]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["gnosti"]},"Identity":{"Case":"Some","Fields":["RixMlxcN6U8lGkb0x0EDKGStG/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bZ8cUlAM5RiBb3Syd9QRqutn3ZJ1LPRbC4PkAVfpsDY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:52"]},"IP":{"Case":"Some","Fields":["193.63.58.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoustonTexas4Torcom"]},"Identity":{"Case":"Some","Fields":["RiXzhcpTZM3WPHkYk5c7DK1JxOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ig2X+J96BAj+mna3v1EiQJ6bYfL7Y+Cbno2/3hGBrXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:06"]},"IP":{"Case":"Some","Fields":["144.172.118.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:1b8::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cotopaxi"]},"Identity":{"Case":"Some","Fields":["RiOp7FO/2DFVkp5W1ve1W15xjCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DKfcXqMEy1edEni7evxDiPKTpUDnCLQ2NLflirGyfV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:09"]},"IP":{"Case":"Some","Fields":["163.172.157.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["RhlBDjo7oah6wglsQGnauAU/eC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N7nvsS2FzDqiWVkneVIAuyl/4xLTi7MvuJ6vRQxJvoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:20:42"]},"IP":{"Case":"Some","Fields":["195.90.208.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:86::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx2"]},"Identity":{"Case":"Some","Fields":["Rg5biCdwwZdhvFdHVBkT2yrQHjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7FBiFUihsuWIcK7HaZo/6bmm+k+J3MP1rWnsTHBgNlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:34"]},"IP":{"Case":"Some","Fields":["158.69.63.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::34b0]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NSDPopeye"]},"Identity":{"Case":"Some","Fields":["Rgy3KhGllI/d3gMmA92+uDevZiw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IIxfyFQyW8rYIRDwIqan8GrbwRgqbs+G+g8Pi7Kp4UI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:51"]},"IP":{"Case":"Some","Fields":["45.79.177.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:fa::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["inboundystopia"]},"Identity":{"Case":"Some","Fields":["RgUAetWfl/E4xAHcCv6D/O2v77o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WOFIGCPBh+nEKf7E88leng0fe8p2TlDFYTJDoXjjjXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:23"]},"IP":{"Case":"Some","Fields":["23.229.2.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv17"]},"Identity":{"Case":"Some","Fields":["RgG3CWx2b8YpveN5UGqeQH9rDrA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CIWI0I9XYxKD6xLJP2naV/VcLuOMsUK7D8gLi0F0QT0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:07"]},"IP":{"Case":"Some","Fields":["162.248.163.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apx1"]},"Identity":{"Case":"Some","Fields":["RekkCtTs4BeToZd8EmBQOywshh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/EzXgtXsFZUzQxuG6zgdw15A+HBq0GFj1goyc0SUyIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:51"]},"IP":{"Case":"Some","Fields":["185.107.47.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.5-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TotorBEx"]},"Identity":{"Case":"Some","Fields":["Rd+rnhvWXe8ybODLMA5sb0EKZ/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h8+ovdO2dXdLeRJZwx5G2BbFl3s+yuKkd50K4rBVfV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:59"]},"IP":{"Case":"Some","Fields":["82.212.170.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feuermagier"]},"Identity":{"Case":"Some","Fields":["RdjB7v8EQEOqaAbEuRMPjxie8xY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GrQzSBXHCUASwt7EHFCWMXqCRw065cOlRSrRdpAFYWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:47"]},"IP":{"Case":"Some","Fields":["213.149.82.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:2488:4211:3400::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORPEDO"]},"Identity":{"Case":"Some","Fields":["RdZ+2/4KYfl4TzSojabV4Tw5d4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iU2Rs+ReNPmJIbol0TIy3GSE5bMLqAbRQSXUU11exHI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:25"]},"IP":{"Case":"Some","Fields":["77.250.227.202"]},"OnionRouterPort":{"Case":"Some","Fields":[16357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit10"]},"Identity":{"Case":"Some","Fields":["RdJ21qUdrlxvOaZV7OZH3eqfrvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6rbIygIQM5oc81tkWARG4SmgFjp2X/6Gm8DfL2mjK9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:27"]},"IP":{"Case":"Some","Fields":["185.129.61.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perseverance"]},"Identity":{"Case":"Some","Fields":["Rby+LunJaxKZdaQsTihPS0wtFwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cC0QnIPspqi+gMXONaCqOCekl9rd+oagY/dvaWmOSr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:22"]},"IP":{"Case":"Some","Fields":["87.236.195.216"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snoopy"]},"Identity":{"Case":"Some","Fields":["RaUoZFS6VT+s9Wz0rl9MxtLQlbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K+Btk4HehrYSbkZSSRlixMewrPL6ET+6oC9bsto/yXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:55"]},"IP":{"Case":"Some","Fields":["81.221.150.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:26:58:ae9e:17ff:feec:6276]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arael"]},"Identity":{"Case":"Some","Fields":["RY4muau/Tg4372qm/RuwKVPvT7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["onTniIRXIEKpf+ZPafk5OuQuXF1sLoBBsTKpEYHwZNs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:02"]},"IP":{"Case":"Some","Fields":["217.160.240.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:8341::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber64"]},"Identity":{"Case":"Some","Fields":["RYnvg5N+MDxPTAhREvcwYasjoZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J4zbr0Kn6dmGmdjfgSyVWfrCTpjvPOsA0WMQZj3pEp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:13"]},"IP":{"Case":"Some","Fields":["185.220.101.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chonk"]},"Identity":{"Case":"Some","Fields":["RWH8CFw/OnJx/pYDF/AtzR6cEYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RYGi975o4PzzZHiaFvYQiC6pdnNznMmx0iSw9D46JMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:54:05"]},"IP":{"Case":"Some","Fields":["66.206.0.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedEFF"]},"Identity":{"Case":"Some","Fields":["RV9XkQ7JKQQcYOQxHiY1KYvc1gQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ClRY+rhT9ykU0Ctaio0icv0HMBrXFU61/7bcjmWjivg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:01"]},"IP":{"Case":"Some","Fields":["23.154.177.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza1"]},"Identity":{"Case":"Some","Fields":["RVRp0cYQ5DSY7PiOg+KcCmlO9zs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hriZUFzg3K1fYO2LAwD2uGFkQc/tmZiZyxF3Fn9JhPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:18"]},"IP":{"Case":"Some","Fields":["152.67.112.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Andorra"]},"Identity":{"Case":"Some","Fields":["RVJ4W6ymCrB1DwLjUl4riCDAKhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J3fp9L6FJ8gWwt8927ZAOxiOM0How7wAD1sT5jfOSj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:23"]},"IP":{"Case":"Some","Fields":["23.88.75.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FinishLine"]},"Identity":{"Case":"Some","Fields":["RT7hLX5z+ZNbkyZwCRytA9kcAG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Op9//6FaI16mttKqGvfzVN7faqUs3leMZn3ijvPy0Kc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:54"]},"IP":{"Case":"Some","Fields":["45.35.33.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gepg"]},"Identity":{"Case":"Some","Fields":["RT1pu4CfxZ7QytXYOZwnvAbetCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fttIraiUD6m+kPVOeoN5y6jboWRVlPxeDA8cgC9bpng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:50:07"]},"IP":{"Case":"Some","Fields":["109.250.97.128"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryonoxnet"]},"Identity":{"Case":"Some","Fields":["RRwUSjWq1Hr5H84wIbS5gvaBEzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aXVlhJJUcV0oj4QRt3DpJ8JqPXHPIWJS4AONrySlxT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:13:18"]},"IP":{"Case":"Some","Fields":["45.33.124.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AomoriDevRel1"]},"Identity":{"Case":"Some","Fields":["RRrULtslmLBq+HQD1vojvKFlv18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KqL4AQ7w1BsRWG2vL+/wl8X2zAzjcrSG++U4Vi5WBxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:40:05"]},"IP":{"Case":"Some","Fields":["144.91.114.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3008:5548::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elects1"]},"Identity":{"Case":"Some","Fields":["RQwHKenuAXYJSDCuELNk6FcWhP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZ8LBVSmRXHTqJmEpkg08SUqKsTECKtcTAwIJYb9I68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:06"]},"IP":{"Case":"Some","Fields":["45.58.154.222"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pi"]},"Identity":{"Case":"Some","Fields":["RQfCWCy/4oc1eFmB8EXFQjI+rbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gAgU/oMR670aa8S0tTWYbVu61aN6Za84YnEwxXgUxoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:49"]},"IP":{"Case":"Some","Fields":["148.63.180.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["RQR8eOH157d1sKQvEY1O1kUE0J4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xpZbAa5upItLitFAfPR6PxPZktZLNe3Re6VgQ2ma1xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:28"]},"IP":{"Case":"Some","Fields":["168.138.150.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:c003:3511:1::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freedom"]},"Identity":{"Case":"Some","Fields":["RPsx0KLlZ+LVKsksa82lnQP1tE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d/Fu/pN+qv49jxALPWvyixZmqfn5GglRo1aBEDAQzaQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:29"]},"IP":{"Case":"Some","Fields":["95.111.243.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onze"]},"Identity":{"Case":"Some","Fields":["RPrR+yKG0WgOWj7s5QaRV3GfAx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ydtrWOdHnKcBxywy3VE3MR6DsW3Ifi5pH7U69YA8MkE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:20"]},"IP":{"Case":"Some","Fields":["172.106.11.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["RPo2qDm6NesV8+xctfs1UjijKrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OTaIxXEFfvQvomEHQhdQAMuvjXj7DrorEHOLH0QOskI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:41"]},"IP":{"Case":"Some","Fields":["185.244.195.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:713:4489:4cff:feab:96fc]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kroell"]},"Identity":{"Case":"Some","Fields":["RN8QB7VFtNgFfyeQJeuzPPmb4ic"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPPzn3Sr/eJe7ZtAGZVF0cj/tfXRQRoV99xDDveFMG0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:13"]},"IP":{"Case":"Some","Fields":["80.241.214.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:3001:7714::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crimsonshape4735"]},"Identity":{"Case":"Some","Fields":["RN2M7Yf9/vCxydvPJnP0tf1fbLM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y6JjBgLG1ghv8DUTtTvZ8QHUeJCfa1qYdgdQqbnNmCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:40"]},"IP":{"Case":"Some","Fields":["69.164.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe73:c4e9]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["currentlane"]},"Identity":{"Case":"Some","Fields":["RNwjZh4F3v2UOYk22TNJh6vLbl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qg+IXXJ8GccR+2V+h81k7aFDOSyh2kLRmExCy/kOT0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:40"]},"IP":{"Case":"Some","Fields":["148.251.91.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:202:7144:c49d:e29a:d44a:c6ea]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["always1"]},"Identity":{"Case":"Some","Fields":["RNkmKVP/jTCqZjiplfK806L5+sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mf66DmQzpZm1Ptibd7pABsb0PODlLVJjY0vnl2pTptw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:29"]},"IP":{"Case":"Some","Fields":["119.59.110.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["alejandria"]},"Identity":{"Case":"Some","Fields":["RNMGnJ7jserzzmsmhYHEUQyunVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+7isHFgOvVXRgsgEgWVqN7fLRv7wrc6BdxmqQqidMR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:38"]},"IP":{"Case":"Some","Fields":["161.97.167.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["light0in0the0dark"]},"Identity":{"Case":"Some","Fields":["RM6oSXdud+kEVgB9BfGN8wdz4nM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5zYcdr/jpUbOWnjrxIOJlACZHcXFNqEOHm8iom9UJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:09"]},"IP":{"Case":"Some","Fields":["46.38.255.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:19:e6::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mortimerAtx2"]},"Identity":{"Case":"Some","Fields":["RL5JScyWYDzP0ptveRU99kHp7ok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lm0lWGliFDQoZRtKYGCaddrk7c+UNCKj708/WXiOep0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:41:45"]},"IP":{"Case":"Some","Fields":["136.49.32.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["almukasirat"]},"Identity":{"Case":"Some","Fields":["RLTJQKhCHdfs454834yZCupOiA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ig0ugWn8uHQ4Bs0xBs882Ng1yk7dFhOGnPXgZX2Hbuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:50"]},"IP":{"Case":"Some","Fields":["46.165.221.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen2"]},"Identity":{"Case":"Some","Fields":["RI+CEQjtKapAjygWJfZr4dS8GfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c9WMpz3sCQ//vzBZ8PtDX57sjzTxRHTukozuVOEXz8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:31"]},"IP":{"Case":"Some","Fields":["37.138.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RoshkeAS212000"]},"Identity":{"Case":"Some","Fields":["RIw5+UlwVCMUWqZc5W8gQb0IZz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yC2mXg2Wh5Gw61EP9OFmLZDDkrm8U2LOHZrDK0+A6aE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:22"]},"IP":{"Case":"Some","Fields":["185.244.28.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beingthere2"]},"Identity":{"Case":"Some","Fields":["RIMJeGf2REUz6qotOLVHm+HzZBI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vKVXxkeUm9XZRr9ShIi3Q0aLptfK6jlaHWSRDgEi+l0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:41:04"]},"IP":{"Case":"Some","Fields":["207.192.70.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["redback"]},"Identity":{"Case":"Some","Fields":["RH2W05j340CzHUY0fbaOf+g/ilo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uo59kEvPymsv0tOPEodxTcwj8TYqRdN7FJbr9oBdtHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:16"]},"IP":{"Case":"Some","Fields":["62.67.28.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bloreRelay"]},"Identity":{"Case":"Some","Fields":["RHuzPsTRf73e7ZtR2pvPbYLY6Zo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P3w2OOlipK+T1OokjmbSeI37NkTV47hyBEGCDzWdxj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:09"]},"IP":{"Case":"Some","Fields":["139.59.43.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["m0rix"]},"Identity":{"Case":"Some","Fields":["RHok80AsR3TYnnqtLYdtC/ZOMmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1vB573Tma5f1C/DgmGccF2jr/N0965KKf1KQZIPSTWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:48"]},"IP":{"Case":"Some","Fields":["91.132.145.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:37:76e:68f6:30ff:fe7c:a4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedLightDistrict"]},"Identity":{"Case":"Some","Fields":["RHMLJFAhO8Pi2qSFRFjRNPBkT/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["99uWDK0bu/nWN+RID/HeEegjaxrxbaQiv9XXvdQ2gdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:15"]},"IP":{"Case":"Some","Fields":["185.181.229.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["RG4WsA1RMdrJZDqxATazzRmx6bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QHeyx1ZGBqTrDTWLllAqNtsamiFQvLOsfiUydMy+wxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:39:07"]},"IP":{"Case":"Some","Fields":["185.194.142.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse07"]},"Identity":{"Case":"Some","Fields":["RGiYKFMszrm1mOHavb4ovYFVF+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["isMP8tBxejWHMjz06TyYmy8W6V4rg74V5VGjkR5gaYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:14"]},"IP":{"Case":"Some","Fields":["185.241.5.229"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Feidhlim01"]},"Identity":{"Case":"Some","Fields":["RF2JHObHrD2A4e3KYfkh06bpHMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OfX1KQguHlGmLNBsQQZt2duqC1phzsw63k6hwFVqo8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:27"]},"IP":{"Case":"Some","Fields":["24.134.234.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9029]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shakira"]},"Identity":{"Case":"Some","Fields":["RFF8ct0Mcgbitun+ORdAauivMZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["df1jYi41L9yysTLiZD8ai9wrkdk6uRDdFAQMO0fCtUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:39"]},"IP":{"Case":"Some","Fields":["217.115.127.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MonsterEdgeRangers"]},"Identity":{"Case":"Some","Fields":["RElrGMaDVq86WKytg1Qpw3uUMu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1+v2gklubthh/yl9LMUPCAJRbeqwJfiEjnmHGEG8Z5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:32"]},"IP":{"Case":"Some","Fields":["91.148.141.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ihatethedmv"]},"Identity":{"Case":"Some","Fields":["REd7TdWkw8fSsd2ATxxXg09RGGE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["smAGLrGbzQ+udbSvpQ5W/Zaxucz+d9V4BUJrNvcAMHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:13"]},"IP":{"Case":"Some","Fields":["192.3.254.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["RD6Zo4vHoYzSmj4YTw6yotZTrVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2jTgaYmmtbgKPm4iHGeuRKmNlrkgDKxjFMoILfOw5CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:01"]},"IP":{"Case":"Some","Fields":["148.251.150.177"]},"OnionRouterPort":{"Case":"Some","Fields":[48567]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomNode2"]},"Identity":{"Case":"Some","Fields":["RDHxbyVh5wMvNnT6wJPPXFxQav8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6coAfZIyrmlIW4pT2fc5VvhuurGn+OQZiWmkDJAWcSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:46:48"]},"IP":{"Case":"Some","Fields":["116.203.211.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:cce3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Kelvium"]},"Identity":{"Case":"Some","Fields":["RA1TlMsyWxLugkppYkWSgmWJAZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8GqmCvH4zekpx+ZLrD2YR4m8Xjhyp2BQUGDI5AqTIuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:59"]},"IP":{"Case":"Some","Fields":["141.144.233.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:2c8b:778d:d814:f249:a1a5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyFirstTestRelay"]},"Identity":{"Case":"Some","Fields":["RAoh5QduNeJyN4akW+i0QKlAngs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bN/TmwdRidb1aWapF9PKidH6gbIzX1WnyRH+xP2WR9k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:54:09"]},"IP":{"Case":"Some","Fields":["205.185.115.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dummyRelayWeibsvolk"]},"Identity":{"Case":"Some","Fields":["RAMlhVY3AmDlPN8Lz7ghEhx/eI0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6KTitJlJVwXodul++877JJGjJ9ov3jOISXJrfk36oXs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:18"]},"IP":{"Case":"Some","Fields":["31.18.188.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc06"]},"Identity":{"Case":"Some","Fields":["Q/Ep7Pni0uoL/gSueBwvOKPRhaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rYrPp4gjSGMNi/wD4ZgDctsWqBI+RCc2EUeTALWFlLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:04"]},"IP":{"Case":"Some","Fields":["185.100.85.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::3]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Q+9RQaRBfQvxsKsq0sPXTCI1XQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8W/RuwQDXR26ntoH/4YHuK40SAgqd/1Qbw1T9L2S5JY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:08"]},"IP":{"Case":"Some","Fields":["88.208.226.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:5f::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra14"]},"Identity":{"Case":"Some","Fields":["Q+2EGSa12pSHAy14mjG150p1JeI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YVM4PMzv+1vQLFSd9Jmuv6+K19urTyc7oDpN5Q1W+Jg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:23"]},"IP":{"Case":"Some","Fields":["213.164.204.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeLoreanDynamite"]},"Identity":{"Case":"Some","Fields":["Q+iW02qrILW2MJS7xSytS1YOR78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aQVE8/KDPgbUCotnacnud5WT2YYLaobaTqBd/nlqcPU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:56"]},"IP":{"Case":"Some","Fields":["82.69.47.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linode"]},"Identity":{"Case":"Some","Fields":["Q+GHuMc2H0fqlo7VOJQ1hl1/T+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jo6uqcOUoIjwuD/HwT9LqmHIAVV0vRHUtFITpTN2oxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:56"]},"IP":{"Case":"Some","Fields":["37.123.163.58"]},"OnionRouterPort":{"Case":"Some","Fields":[53]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:28fd:bb03:0:6c69:6e6f:6465]:53"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit6"]},"Identity":{"Case":"Some","Fields":["Q8n1wo6pChhYcn4qs4BhLqnNn0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+5pUqcVBmv4IUeuHiTynk6FrbHwfCVDSEUOuVQDy1/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:20"]},"IP":{"Case":"Some","Fields":["185.129.61.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["straDEicebeer01b"]},"Identity":{"Case":"Some","Fields":["Q8St2PMYCtl9mQy+YRcX09wDf7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLCQLcwYrWcKx38LYdXRhghy/meWNqpVYXe8OVWdOig"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:06"]},"IP":{"Case":"Some","Fields":["82.165.169.47"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=88000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra80"]},"Identity":{"Case":"Some","Fields":["Q7sUWosJCexUJzTqIwPU77rZfgk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["As7hjKmpHXZ/wRBxhC6fN8kvCytZoCmDt0w8WaEUKSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:25"]},"IP":{"Case":"Some","Fields":["107.189.2.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DieYouRebelScum1"]},"Identity":{"Case":"Some","Fields":["Q68kBxtACRFinVvJ/CDeM1+d/AA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTT1oB3x0/wPtYw/vAspmOZfAhpf9ri/nsSk6T8vIlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:07"]},"IP":{"Case":"Some","Fields":["161.53.160.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9091]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrentor"]},"Identity":{"Case":"Some","Fields":["Q60zdnNbSiJ5IK0G0tm2lws8dd8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ecmOqRVr/uL8g7J8MCCLRbAkyTs58/rFJTw3uiuc5lM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:34:40"]},"IP":{"Case":"Some","Fields":["78.94.74.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tallinn21"]},"Identity":{"Case":"Some","Fields":["Q5zRL4fOtJbSYBtdwf9Rhr2awtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VyGrhvl4yrDgvstlU8L2AMPym9PkuYSL/QuUQUMdtbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:43"]},"IP":{"Case":"Some","Fields":["129.151.246.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Q5u0ks0kJHXL6G3XB4Jm53Zfwwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ss9RZOEsZlYxlulTUbnUuwCPn2v7OrBVAbHXm/coakY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:03"]},"IP":{"Case":"Some","Fields":["146.70.86.74"]},"OnionRouterPort":{"Case":"Some","Fields":[28093]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demie21"]},"Identity":{"Case":"Some","Fields":["Q5GdgR206vxeOsYidBY2JQEufZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+yTj5s6rtz9zskApxBUYsamztr2vdvrogcg6VrglHxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:05"]},"IP":{"Case":"Some","Fields":["95.118.87.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["dolemite"]},"Identity":{"Case":"Some","Fields":["Q48+pMn7DbY/U3ejJxq1Q1+tfgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X9r+b2fFSLsli0LI4iOM4pUtXJws9toAFRP61YuPwEI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:32"]},"IP":{"Case":"Some","Fields":["193.108.117.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission10"]},"Identity":{"Case":"Some","Fields":["Q43JtrXFN10zK7M41+XBue9EiWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ptEhyVZzOiV/9onucYOxt8hfLQ9KiqifZTakhNhVltY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:33"]},"IP":{"Case":"Some","Fields":["54.38.219.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:73f7::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WarheadRelay"]},"Identity":{"Case":"Some","Fields":["Q4cxuO/tseWSyANJNKVfUy3quqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oDFNaeoTTAz53ri67ueeqh95V7Saio6AYmE9u7ten9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:35"]},"IP":{"Case":"Some","Fields":["142.93.228.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:f0::1bc:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4iphb"]},"Identity":{"Case":"Some","Fields":["Q4Hkcek1iuTYFQITAsfy4WUCvuE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqfRBRUjBAJYsGFzznrqmt/2hN2qdtd+cyYQKyECcSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:12"]},"IP":{"Case":"Some","Fields":["185.220.102.247"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::247]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionsMakeMeCry"]},"Identity":{"Case":"Some","Fields":["Q3xT185qhmlLvVa39XBhfBzEdBk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bfKOOf4JjNVPhqf9wDm17rCqLYIZ3mI/XvWv+B9LNTM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:22:15"]},"IP":{"Case":"Some","Fields":["83.135.203.39"]},"OnionRouterPort":{"Case":"Some","Fields":[10000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MontAnAs"]},"Identity":{"Case":"Some","Fields":["Q17hA7TneYJp9Kr7SDmdutb5qek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqhL2bJ++s1A29mdQEDQbJ1BArZU3F6Ak3kKPIA86NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:44"]},"IP":{"Case":"Some","Fields":["131.153.152.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Q06h+5C/45fOrcIv15qWXG2EuwE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["19rKc4//f/e3CdO322W3nBAf9JgKJa7dCvthYzKYh5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:22"]},"IP":{"Case":"Some","Fields":["96.255.214.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Q0I968oljyAx7vPYrBwjKCRBSsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nmw9c3Tq0LEEdKL6GkicPssc6ViUf282xwDwtem0ljg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:10"]},"IP":{"Case":"Some","Fields":["46.38.236.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kgXuCTCWVMALFMb74Ld"]},"Identity":{"Case":"Some","Fields":["QzjIAm1Gi4EdPrEa6eQh4gibgjk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y4yZYd9RHUNFZ/RtY+49Pg3xX7G17EOnNN/uRdXIm78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:16:20"]},"IP":{"Case":"Some","Fields":["68.67.32.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QzdpTjaA147271ZUUFe3UYC4zso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k8GBFwEuX8CWKPNk+Uu6gXc5eVqgKZyd1rhWgBQzqQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:49:43"]},"IP":{"Case":"Some","Fields":["62.149.2.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:6300:0:be9::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["layz"]},"Identity":{"Case":"Some","Fields":["Qy2cgTeP9U5QYAqPP2HhBMt3l40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3QH41gSDM0gjtDM4iwgBMIwDFljKe0ZY9tpgiGX9IUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:43:04"]},"IP":{"Case":"Some","Fields":["161.97.184.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SergalBig1"]},"Identity":{"Case":"Some","Fields":["Qyz7I4+/h4LBNdD16/46NEFgriQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p/md/lvDw0FaTLLha389aghkgYmiX2WIyx9DclhgJB8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:08"]},"IP":{"Case":"Some","Fields":["104.188.187.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0174"]},"Identity":{"Case":"Some","Fields":["QynGGbfqJ0pqn2EN0ihjx+FjR1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pndGyoCn2PAyJHKgDxEOe8xzlIZHonInXSqlu+G38j0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:29"]},"IP":{"Case":"Some","Fields":["185.220.101.174"]},"OnionRouterPort":{"Case":"Some","Fields":[10174]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::174]:20174"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN5"]},"Identity":{"Case":"Some","Fields":["QyCfbVDGV6Vv55rwHKafnvGb0zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LfXOpmGfZqIHrEPiXc08kefkKhBBApEpTSTv4oX3pOM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:15"]},"IP":{"Case":"Some","Fields":["199.249.230.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::116]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataSmuggler"]},"Identity":{"Case":"Some","Fields":["QxfLG+0MYJCr67RUQKBArWg4PKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d413dQvkqyMgmST8h3pctp0lz4ksBtZCdNXnLmOlkp4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:07"]},"IP":{"Case":"Some","Fields":["139.162.191.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe9b:84b6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bituman"]},"Identity":{"Case":"Some","Fields":["QxcCs6aKYBX5lV3U/QEpF1tD6g8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2ack7R/cKL8MtvduX35ga1Xv63TPOSLnNFsZlQS34l4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:53:22"]},"IP":{"Case":"Some","Fields":["45.132.246.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:48:182:74dd:c1ff:fea8:d21e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex57"]},"Identity":{"Case":"Some","Fields":["QxaGbVeLBtx5coiDyOXJYJ+DEdg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rAlTZhqa0euOV5Br5tt8y5YufQpqbuvZA3w/FSjCQn4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::146]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH109"]},"Identity":{"Case":"Some","Fields":["QxVQAF7lK6gsqzqJDgfo6RrVob8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1tWUkRkR7KgX50r7pLPputY1FazPTSGZqvWxWkieqhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:46"]},"IP":{"Case":"Some","Fields":["192.42.116.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theaggressivecrown"]},"Identity":{"Case":"Some","Fields":["QxUpsn++1YF8aaIEuzypWjB+IkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SLJr6YRKgauTDAaEa+0q4QZo+fj6rwrdomae65uxnoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:52:50"]},"IP":{"Case":"Some","Fields":["185.124.240.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myRandomNodeWw"]},"Identity":{"Case":"Some","Fields":["QxHbb8P9V/TRadrtgfZnWEuBduo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sXpWazKBLqTYoSTclRVbJrBzcrclmDz/3OZVHzfQ/3o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:00"]},"IP":{"Case":"Some","Fields":["212.51.143.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8057]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Isidore"]},"Identity":{"Case":"Some","Fields":["QwZyzXFi+oirSdiRw4VneZ80YzM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GRf2jo22D2FLW3GkE0J3advNs5Pr7ze+r1SxTxD2ExY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:19"]},"IP":{"Case":"Some","Fields":["52.214.94.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["QwKNAHHeBVGA2qgt4gC0L9ITHCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PSjfU52BxcaF7bhHUDa/NxqKvmyx2WZkeaEwLfNkCdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:45"]},"IP":{"Case":"Some","Fields":["185.220.101.209"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::209]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibibUNC2"]},"Identity":{"Case":"Some","Fields":["QvjnzoZEeMopLp6gXcEUgcKT+O0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqbprdAarVeX1Mp6sevthn32+oeC+kt5mA1C1Txn1KY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:22"]},"IP":{"Case":"Some","Fields":["204.85.191.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute10"]},"Identity":{"Case":"Some","Fields":["Qu2R3Tdo9qKhlNCUp0Msvo2gBLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/9SqlOTk5BAYK/xpYZGA2q+bUImHYbptYJpbzAxGyMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:22"]},"IP":{"Case":"Some","Fields":["162.247.73.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arecoque2"]},"Identity":{"Case":"Some","Fields":["QugXvgerOco716RCrwjgB/8uP1s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FNBX1TyLIpyIgP7DzcqSJRSW9ChphxRpXrLlr3bG6lc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:12"]},"IP":{"Case":"Some","Fields":["80.67.167.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:e701:1198::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poussin"]},"Identity":{"Case":"Some","Fields":["QtWDNTgbybuMntmNOQEJ63Tby8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSU3iuZZJLWADo6macnAFxE6h21jrlCZedeAqlVTqXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:39"]},"IP":{"Case":"Some","Fields":["213.169.148.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0131"]},"Identity":{"Case":"Some","Fields":["Qs/wyq9+tehrNY2wR9z+U7ZIVus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["czSrbJdBdjv9DqxzfRPXUP7a+oVTyjbRsyxQBIlgpPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.220.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[10131]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::131]:20131"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["QsUUoXnciZ6ZUZTF4XC5KHlPKj8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M5JaTQeDNVam2iPDAKjfBIgRfRSZSyplxB26EuVA/fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:42"]},"IP":{"Case":"Some","Fields":["23.128.248.224"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::224]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["node001sln"]},"Identity":{"Case":"Some","Fields":["Qr8zs86/btkaaiZ4GMxz1+mI8x8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qqjfeJh1JzRRMk3W6IaAquRGVbey8s7qEBEO1p4crUU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:04"]},"IP":{"Case":"Some","Fields":["62.210.116.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ENiGMA"]},"Identity":{"Case":"Some","Fields":["QrT1LFsR5NOYVfZUlVQlsNWgWYs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YonHv6BLDqhry5z2PLI2vospdO86b5l3LWYLSF+bCHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:34"]},"IP":{"Case":"Some","Fields":["5.9.121.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ckaket2"]},"Identity":{"Case":"Some","Fields":["Qq7gJOtgzojlimVibb5FxcPu0j4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WdvFOlLp2syRhfhaApA9/qwH1cpBqwEmNLFgR4EJcEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:21"]},"IP":{"Case":"Some","Fields":["213.109.192.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:2::dcb3:f9ca]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["QqlVsJpOMn+/tGoI9uIXBSccyhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9iZTFoX2M0u9bwAx/EFvxKFOJhIrrmGMqghKAfWLdm8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:54"]},"IP":{"Case":"Some","Fields":["45.136.31.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:49:5ce:5445:3ff:fe6f:c7c3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["router"]},"Identity":{"Case":"Some","Fields":["QqjDrsr9A/AkLQn6LAIq7YSb+TM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Le9AC8xd+Vcmk3uUv4/iU6+SA6QeRqTjasQgATj9UtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:54"]},"IP":{"Case":"Some","Fields":["80.110.35.15"]},"OnionRouterPort":{"Case":"Some","Fields":[55443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SoySauceR"]},"Identity":{"Case":"Some","Fields":["QqUf/3qyovOWy5JLVmdvCby1IkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ovnLIA4A68Sqyz7vUYVpStEp5ntn//Mvx/LCSwvHSs0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:17"]},"IP":{"Case":"Some","Fields":["157.90.38.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Qols9pmg6dKLaQkBkltBDrItlKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fp6St01k9nAUO3ur1V+IMxiOpq8eCjciimClZj8WxnE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:52"]},"IP":{"Case":"Some","Fields":["185.220.101.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::195]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["QoIf8KuJYyFeFb+/pW9iJApIWLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/u0WAdgDIuF3HtPPLpHNB+TzmK2PFX8xjxoqh9grgRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:49"]},"IP":{"Case":"Some","Fields":["91.211.91.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra28"]},"Identity":{"Case":"Some","Fields":["QnlW4/I+66MZVMsJQq6g7NQ6AEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IEB+cFVq6XnvkLJsLWFkEO3dc4vma7mLzE0zi7IqsBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:46"]},"IP":{"Case":"Some","Fields":["107.189.10.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow000"]},"Identity":{"Case":"Some","Fields":["QnPm0WLtJxehz0IHolQATNP1MHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZzQU50KRwAGRPikhagNEsmAf/rhAVCeDoiCDQVTV4Qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:26"]},"IP":{"Case":"Some","Fields":["185.195.71.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["QnCKEoklBuvNiBvLNkjnjZPcJ4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fABFPV7Txvu5suwZk+mlVErOEqDz3H2ScfRa10lTdJw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:22"]},"IP":{"Case":"Some","Fields":["185.207.106.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seyfahni"]},"Identity":{"Case":"Some","Fields":["Qlye/cq0nprrjf0ga6uD4yEfAOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wGsMz/0zSUvpvaqAKlZuiu0dzmCh7lwuplkxgEpjKpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:44"]},"IP":{"Case":"Some","Fields":["94.16.112.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:743:e896:beff:feef:1f97]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Baritius"]},"Identity":{"Case":"Some","Fields":["QlYpLNH38e5hxRzqL434Esy3pqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iZIlhytRE16ICd4+kxqKq4lqVwikoWcbcWnRE2KyTPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:28"]},"IP":{"Case":"Some","Fields":["51.77.109.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thetrip"]},"Identity":{"Case":"Some","Fields":["Qk+cgKJYQ6LmDtrM0wktMdMA/XQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VKjRNJLBvrIqChgvMWyC6qrBKx6RWNl22KzDQdRaOJs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:23"]},"IP":{"Case":"Some","Fields":["202.61.255.170"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:55:d21::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes2"]},"Identity":{"Case":"Some","Fields":["Qkv4aSfoDZFlibsSJIvUaLtHBoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hux4h7ZVoY7doFEKv0CVdD+pr2AUvxE+QHOWXFEZtCw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:25"]},"IP":{"Case":"Some","Fields":["217.12.221.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashSloth"]},"Identity":{"Case":"Some","Fields":["QkNHRvlgkg9Di/tPSsNeXIo6f8g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tAUvFiRw0Bi6k+YdHrnekQFeZif58mDG8GKrc/OCVZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:14:21"]},"IP":{"Case":"Some","Fields":["198.46.190.147"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["h18"]},"Identity":{"Case":"Some","Fields":["QkE0jSoq6t4+6H6YgBqqsk6ibzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qrGJHBRBo7RZRYnUlchrH450mhPpxG+Vn94cDxi4DDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:16"]},"IP":{"Case":"Some","Fields":["87.62.99.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9232]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EndWarinUkraine"]},"Identity":{"Case":"Some","Fields":["Qjn/ROYxxaCI7fPfP6u6JOKC11w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kcWrICZBmV5e1InRc2rAQIvhzmaMxyFK7YtLFYpPfTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:10"]},"IP":{"Case":"Some","Fields":["51.222.53.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snowedinn"]},"Identity":{"Case":"Some","Fields":["Qil3GrwubeMpeiUZEqnpFrme/IM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hZTR4TkupsiZR2/T9qz93dQ5YcPid9nZzu9o7E+2y3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:47"]},"IP":{"Case":"Some","Fields":["5.255.104.207"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wollwoll"]},"Identity":{"Case":"Some","Fields":["QiCsbrd8N4tb/DukE0b5c+nmEH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/TrALSZRxMEyuosRjt0vVlCn2XodM+DYRSAt6E3mT9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:17"]},"IP":{"Case":"Some","Fields":["86.59.21.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:858:6:2001::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notgoodatmath"]},"Identity":{"Case":"Some","Fields":["QhYr0NndAXXrgD85IKh8tVJi/zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t+77qQCf38kOkaiHk4cCiBAKoMJW4zxKlClzNowrKMY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:30"]},"IP":{"Case":"Some","Fields":["135.148.53.59"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev2PLicebeer69"]},"Identity":{"Case":"Some","Fields":["QhH+aqOZHP2c0cyJe9CcLPc88fc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9QgK1vxhW5vt2u/vIAdntcadmJGioidPO1prn1OT+YQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:44"]},"IP":{"Case":"Some","Fields":["185.16.38.111"]},"OnionRouterPort":{"Case":"Some","Fields":[8269]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BASIS"]},"Identity":{"Case":"Some","Fields":["Qg/LYyJSBHVh18P2MkH6Qh9l0Uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy6TFKAZhZRuNGngyeZ2B4DDoF1oOTctx0QY+QTAVVI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:32"]},"IP":{"Case":"Some","Fields":["45.125.65.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pozon"]},"Identity":{"Case":"Some","Fields":["QgjHGFQi9kqw0xPP5aiohrstc/0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIMj6k6szsVJu3lymCs4X3Nf+zh+ZUwXUTbxmCLiZCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:48:01"]},"IP":{"Case":"Some","Fields":["147.135.16.147"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masters1"]},"Identity":{"Case":"Some","Fields":["QgaaUYPPUlrv9zehzJX2kzE4GkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6dsVxw+OIR1SEceXdwqPT7h+y9CJAIze92bedh9gyE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:31"]},"IP":{"Case":"Some","Fields":["45.58.152.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SIS"]},"Identity":{"Case":"Some","Fields":["QgVeOpAwtA5qLWXh9LxE9Rh4ArU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLRvEjbdkmYWVOr/j/PBWWZm1Okmom4mH9Qs6+lbYc4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:58:11"]},"IP":{"Case":"Some","Fields":["208.92.194.252"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[995]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Qf9KgpAn/9yjLMI9MNpJKrfh7TY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kJXxb9/PlGRc/qquyoNfLGCfFQr7Mh8153sUcu3YcjQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:53"]},"IP":{"Case":"Some","Fields":["45.86.86.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=870"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RNVR217"]},"Identity":{"Case":"Some","Fields":["Qe7Ez6AeiYJkPxrzzYQxUynStY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KUZYb2kNuUzDTpLHPMCBvNpU3eIFWM6Vlf0rf0h5Xbc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:41"]},"IP":{"Case":"Some","Fields":["95.211.147.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["Qe2Zbyng8SxfRn1nSDdTUEEm2DI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9FAkbK2Bm3eVvH3zwD5MSaxotTu8w8OWrE8vth3a7ZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:31"]},"IP":{"Case":"Some","Fields":["104.152.211.109"]},"OnionRouterPort":{"Case":"Some","Fields":[1000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeyBroM"]},"Identity":{"Case":"Some","Fields":["QeMZQH5nwAHYLlUjfmbmAEQic5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5itpZ3R/mLzr00O/YSNu0pcjsZCEU5HBGR1SfeePCRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:04:15"]},"IP":{"Case":"Some","Fields":["209.141.46.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["Qc1rkSLQCDOf2ZKc/wfthRircQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0zOQv7U1ePXFZ1qqHMCjVbA7DFWW3mx5K94Wg7x/SkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:29:55"]},"IP":{"Case":"Some","Fields":["212.192.246.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waxcs4edb69m7yh"]},"Identity":{"Case":"Some","Fields":["QcYrXH4aHxAS4w9sO4fuVBwWjuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6Y526yLhC42nOf8uG55AeB7n2j5xi+0jgEfR+KAhBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:09"]},"IP":{"Case":"Some","Fields":["144.76.104.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Infinity1"]},"Identity":{"Case":"Some","Fields":["Qafw8MFbbRfjHzyQTSjYSlVC0zI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NCSHZPztOKmkqxdhtbbxmBb7sWltcpaYD6lgX9vz0ZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:04"]},"IP":{"Case":"Some","Fields":["89.58.37.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor02"]},"Identity":{"Case":"Some","Fields":["QaPBYmnHtj2263QdvdtOH1hrFZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GulJ8a4V9wBcvFffNtSR+MT6va90B7hzaZNEa1WJirA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:59:21"]},"IP":{"Case":"Some","Fields":["195.191.81.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1908:fffc:ffff:c0a6:ccff:fe62:e1a1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RmbrViliViorelPaun"]},"Identity":{"Case":"Some","Fields":["QZE3Cbsse8PIfXlwVK4IIRbU/R4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yONLWVkhjaGNwTJT8PeWnWArPUkayxIKWkI6XHgnB9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:06"]},"IP":{"Case":"Some","Fields":["87.106.168.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gofast"]},"Identity":{"Case":"Some","Fields":["QYiYttjmCtPhzlV2T1ldn6VmQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AWpiLQn/xsnL47EGeG2cP0OXa/gqzi6T7RkvZ+RDmZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:39"]},"IP":{"Case":"Some","Fields":["5.2.70.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gentoo"]},"Identity":{"Case":"Some","Fields":["QXqjyNIm3deagEfX8heyHZxjwh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z2oabmUkoCuc8ShlvIU7uMw1WOWADtytjotJOxi4OgY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:25"]},"IP":{"Case":"Some","Fields":["86.14.81.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:681e::c0f:fee]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zzzzZZZZ"]},"Identity":{"Case":"Some","Fields":["QWhlVWLdzxCs2YcVIB4Ym+Ftbgw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4U4/vrJ7YX9pQE1AUhBVgoac7m0N1+WcE0zpYP1E01s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:26:05"]},"IP":{"Case":"Some","Fields":["205.185.123.165"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QWTB45sbhYelnh+0Fw0jKNKq6PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wiQ/fpoRnMMoEw/8tDlnIcfPOyOKBfLQQ/muznxpJ4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:18"]},"IP":{"Case":"Some","Fields":["81.39.237.25"]},"OnionRouterPort":{"Case":"Some","Fields":[442]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber46"]},"Identity":{"Case":"Some","Fields":["QVT5M5FgIghxZSMN1XdLwWjKH5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["441T24fWPYVvIkWVFPsAXoVlW4pB/CcddCORY1kXTaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:02"]},"IP":{"Case":"Some","Fields":["185.220.101.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::23]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jupitera"]},"Identity":{"Case":"Some","Fields":["QVObj9VflNxgF6Kc3MYjl38RijA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0HmmKOM1U+NTsOL/wuWWHfleAm/WnhLOIz0qZjvhL5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:12"]},"IP":{"Case":"Some","Fields":["149.154.152.121"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:ed15:149:154:152:121:1]:7654"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=800"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionMasq05"]},"Identity":{"Case":"Some","Fields":["QUJ0SMQWQoMhMMLCmvH+rDs+7TU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tclsUOGzptoBPGDFUMqx7vu8LV0s4BLW/PQ18ftZ0wY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:33"]},"IP":{"Case":"Some","Fields":["193.32.127.157"]},"OnionRouterPort":{"Case":"Some","Fields":[54998]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lamprlogin"]},"Identity":{"Case":"Some","Fields":["QUH9pVT1bp4k2kEVO1wadW7kMkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SabqgEbgF/rx4r/wJ/JUuztsP/R99UKoWRzHgrTl3D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:34"]},"IP":{"Case":"Some","Fields":["107.173.159.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams04"]},"Identity":{"Case":"Some","Fields":["QUHdvN2K/LlqAzFB6X4w/GtRhHo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Izm1wRzeQPiLGfWvNfqR2RKe6YMVFz5nZ6NZ8Qxv8Wc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:46"]},"IP":{"Case":"Some","Fields":["45.151.167.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::b]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ei8fdb"]},"Identity":{"Case":"Some","Fields":["QUAA77rW68FD6EO/K2UcllZXikQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["55vGPVQake5Til1OFck+UTbODbUiK6RAP+SU+P/0dwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:39"]},"IP":{"Case":"Some","Fields":["45.142.176.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:d4a:8495:5eff:fe5b:6099]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["winterferien"]},"Identity":{"Case":"Some","Fields":["QSdn7LDO99y6+HSN26hXWGDdZ4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0gy3Q/Fk/ZbqR2MAQKFwllbv1uGo/Vj8D35AU1HChms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:21"]},"IP":{"Case":"Some","Fields":["59.187.250.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toreffiorg"]},"Identity":{"Case":"Some","Fields":["QRsWjBI4R4aomaqooogoa6rT2U8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nsbudoWtOTD59xnMi/dXjER5dOVED1Fz0wqYCpEOHjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:44"]},"IP":{"Case":"Some","Fields":["185.185.170.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:5c81:4::27]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torr1maiti"]},"Identity":{"Case":"Some","Fields":["QQ8HgbyilshmgipdA6jRHyRX54w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gaaE4c3ZDUpflH+ElVDqZTtMarw0Ci4gQjNSbYjwzhI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:35:32"]},"IP":{"Case":"Some","Fields":["64.44.51.37"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffc8:1:7::bad]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CodeSpace"]},"Identity":{"Case":"Some","Fields":["QQ6L+QhaDXE3wZpwnAnxV2BQ5Xk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l94o6f9H7eBOYrlmtO6eJUTv/xxVbZgLhw6L+GK6qTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:31:26"]},"IP":{"Case":"Some","Fields":["185.131.60.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:768:3b04:515a::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W0LFF"]},"Identity":{"Case":"Some","Fields":["QQEY6HTSJj8c3NVn+Bh1qOOLKzw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jISb9iAdnqRBvIY7oGjBE92a9TOOCA9zrlM8T5QqVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:42"]},"IP":{"Case":"Some","Fields":["176.9.75.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:7227:9000::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer22"]},"Identity":{"Case":"Some","Fields":["QP3rFEkV40UpCBVTTjcl272roLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3rOk9xFl9qPIh1SIyCwa0x5CBNL5B8wCm0A5GU0RIZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:20"]},"IP":{"Case":"Some","Fields":["185.243.218.46"]},"OnionRouterPort":{"Case":"Some","Fields":[8120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:46]:8120"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fennee"]},"Identity":{"Case":"Some","Fields":["QPrkVAz0wSaxsVwPXgSP29ZuLYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bgiCqbAWkTqgFLgYDqMSk9MduEeNfKgzdiv5l/iFXi8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:03"]},"IP":{"Case":"Some","Fields":["50.7.178.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fatamorgana"]},"Identity":{"Case":"Some","Fields":["QPo//KcO6CrenSp+GES/SwxtvqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gCB9R9bBiB2XDNtuXq/XhVPWQ+mQlYutOsJQfBpaIlA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:20"]},"IP":{"Case":"Some","Fields":["83.135.153.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Abeille"]},"Identity":{"Case":"Some","Fields":["QPoJwVHDiTtwGN71WphUvJdouCw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AsW7OEjzsiv3+OEkCF36YM8AcLuz9GxrZdfvOhlZ9fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:13"]},"IP":{"Case":"Some","Fields":["82.66.61.19"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:5d6:6de0:acab:3:3:3]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["QOgrPnuRZ7wri4uU+MxPSDF72sY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["thL9gkHYrzb0cXba5FT4tXttfrhRr+0R8XZLeU3101E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:48"]},"IP":{"Case":"Some","Fields":["51.15.113.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex12"]},"Identity":{"Case":"Some","Fields":["QOfWzlCF5M3aMdUaKdFFfrU/Eq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ssBVpWNZnsiVZNXrlU0dHBIrEmewgRyXMGCHzu2l4FE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:07"]},"IP":{"Case":"Some","Fields":["199.249.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::102]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QN01bo88U/qSUbVhz5VjAnkar/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PEM/+KgRkZYqLTbjo5rCbUHg/BephlWGouGiUSEyq6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:33"]},"IP":{"Case":"Some","Fields":["89.163.224.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["okovita"]},"Identity":{"Case":"Some","Fields":["QNmXXoZMhMJs9zKrvmXXN6FLdoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQAI1DR9FFY4ky0/CNuXYySwaA//2fVF42XRYApQnZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:16"]},"IP":{"Case":"Some","Fields":["93.51.14.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b07:5d33:e4e:4dc3:9abf:8c9b:499]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["QNPM7uW5viEoaEwV5XaY1Lodgm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wRmQ6zSueyqVAGDkDEVX6d5CzC33qDdza2fJl+zCIFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:02"]},"IP":{"Case":"Some","Fields":["148.251.211.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OhNoAnotherRelay02"]},"Identity":{"Case":"Some","Fields":["QNEwlrvRGvGYzmHe5OrszlRy8uc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tztDyr670vRCiRpLYcQC1czo2x844FxU4HK4K7NhU/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:34:21"]},"IP":{"Case":"Some","Fields":["44.242.33.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1f13:775:d400:ceaf:7673:2ab9:a777]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay43at5443"]},"Identity":{"Case":"Some","Fields":["QLM0Ey601oCsACAuAYbbtXv/F84"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9vp11WtvbHB0AgfHbqx71YKX2DjDbFhyU7ULi9fpMok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.43"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["moykr2"]},"Identity":{"Case":"Some","Fields":["QLE+hgVHRK4oVoOhOWFBPzM2gI4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kbeTOLau388njNG/iNYJrdPSttZ0ZgM51zTNSv9Dmuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:51"]},"IP":{"Case":"Some","Fields":["140.238.14.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8004:7800:a84e:59e4:dfae:415]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier3"]},"Identity":{"Case":"Some","Fields":["QKYNHx6K++0i/LMLP74uJ1oUz5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8XkMyBzJIDeLwtBB13jtzEISgecGDpRfwezuaCG06iI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:47"]},"IP":{"Case":"Some","Fields":["46.165.221.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loxy"]},"Identity":{"Case":"Some","Fields":["QKTVUbK9M8CfnWZA2XCOP9Vu06w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yycb6JNG0mvH1e7m4TPinxaXEF4huMLGclyc0ricbmk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:34"]},"IP":{"Case":"Some","Fields":["199.195.254.254"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["fedstookover"]},"Identity":{"Case":"Some","Fields":["QKG5i6P83EhqXyB+uVZL5iqauUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t3dpniQMmRRvdAoyvCCOxkGesl/3Z12dJnc0rbEeyMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:38"]},"IP":{"Case":"Some","Fields":["195.170.172.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:87e0::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa4"]},"Identity":{"Case":"Some","Fields":["QJ/bCjzqpP8g9Lj6f1KrDeQzj1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h69nBmodu7a4QruGVn42f0ElFxQ/8+RKW7DhoRo131A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:00"]},"IP":{"Case":"Some","Fields":["95.217.112.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["QJvVrsFb9dK5g8bwZNhSsK3gyL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BQ+8PgcSJ29zP/DhOjFnav+IJL357rzR687Ico09LwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:25"]},"IP":{"Case":"Some","Fields":["185.170.114.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arighttospeak"]},"Identity":{"Case":"Some","Fields":["QJnepoJope0mEHjeFzSJEzShRvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZhmY1RGOQS7B6sb68By0bpEDQkpP3JfFQF6h8f06ars"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:26"]},"IP":{"Case":"Some","Fields":["45.83.234.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1854:1::face]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benden"]},"Identity":{"Case":"Some","Fields":["QJHYCBKI3a6Mhu0bxxrKLwDQm7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o4tFTdDgKSLopMhFyWDOoCNSLaxm4gxZYzpH5Ypio4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:14"]},"IP":{"Case":"Some","Fields":["65.24.59.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onionsoup"]},"Identity":{"Case":"Some","Fields":["QI83TxMbRdfWPbywDmL3a2R5Q9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qTtcXnoMjK1TcQI9qKJJJt+S2FEpaRTmxOdl3V7R+wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:56"]},"IP":{"Case":"Some","Fields":["178.63.41.183"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:120:4169::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["muddybits"]},"Identity":{"Case":"Some","Fields":["QIydLxZT2e868TnBU8sn6P/bdhI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pkGh/x4t3xzezh6iIdi0dj4uYRY09PD916jiNIDNO3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:19"]},"IP":{"Case":"Some","Fields":["51.81.56.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer01"]},"Identity":{"Case":"Some","Fields":["QIbsrTSzhfRfxlS6/eb7aqbXXkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GYNVnP5oHDzA9935V3Gbb0aANtIIkLFe8YE7rFFM5uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:04"]},"IP":{"Case":"Some","Fields":["95.214.52.187"]},"OnionRouterPort":{"Case":"Some","Fields":[7120]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["styr0f0am"]},"Identity":{"Case":"Some","Fields":["QIK6n0m88lpBNjDDV8AB9H1W/eo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9RtpVGSs4a4bBkyPRHGh0/5kMt9pGVX2lJwSTmHj8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:38"]},"IP":{"Case":"Some","Fields":["142.44.158.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:61:e9b:6019::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AinaBrenn2"]},"Identity":{"Case":"Some","Fields":["QIB3PXMeZY6hzR3fJ9hqOlG+KUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VuXLFgS/67xMHIbR/O683u1MEJVxURpNZCvjiuDCW8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:50"]},"IP":{"Case":"Some","Fields":["31.14.41.164"]},"OnionRouterPort":{"Case":"Some","Fields":[4023]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknc"]},"Identity":{"Case":"Some","Fields":["QIAiLIuUQgG1FqxbFFJ15uzuRwA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3RtLp2vQJwwHKLYy2e2dwjqI688DRU7sA5CIXsVav5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:47:11"]},"IP":{"Case":"Some","Fields":["202.59.9.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorExitRomania"]},"Identity":{"Case":"Some","Fields":["QGHFU8qIAhuDAvCBQ2UHCq5hcnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GJxp9iye2RiuJISYmRsa7QCr+XJlq/eVUBnS8Hrs8IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:57"]},"IP":{"Case":"Some","Fields":["185.165.171.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:50::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tobor8888"]},"Identity":{"Case":"Some","Fields":["QGGvgZpHCYmSIqHgQW253Rn9lAk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BAw3j5BlfwGBSJPGNUrEsIcVLfsb21j/y/zSq5RYD0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:55"]},"IP":{"Case":"Some","Fields":["162.219.176.3"]},"OnionRouterPort":{"Case":"Some","Fields":[46410]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["pissnisse"]},"Identity":{"Case":"Some","Fields":["QGE+eWK2OsGZMmYWQib/Z9ltucA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pFhtFg7Ph7QRUhSopZ4odjj5Xmgf6SRubyfJx6QGdIM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:35"]},"IP":{"Case":"Some","Fields":["212.85.65.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange023gr2"]},"Identity":{"Case":"Some","Fields":["QFXN3/ez+ealBEdgmjAUdTqC6yY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kpdrk05nZNVI4TJYXi0jnd9nnc8p0DK3tYOiUrsc1no"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:22"]},"IP":{"Case":"Some","Fields":["185.4.134.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c500:2:110::2d49]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenNazareth"]},"Identity":{"Case":"Some","Fields":["QE2+D3LWZXaSVDKx5KKEJfouSCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LPhLDzejewiJQGmacS2BXwlVWFEQwxc/djwhYWhoB+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:19"]},"IP":{"Case":"Some","Fields":["51.158.148.128"]},"OnionRouterPort":{"Case":"Some","Fields":[995]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:2dd2:1000::a]:995"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bewilderbeest"]},"Identity":{"Case":"Some","Fields":["QEQdklH5QhNKVi2uK9lEXykkVBs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H0w4mhGz4+QHza7d3i55XgS8lqFw1TPUOZbU5dEySVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:10"]},"IP":{"Case":"Some","Fields":["71.19.149.21"]},"OnionRouterPort":{"Case":"Some","Fields":[8421]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:5:a800:ff:fe13:9cab]:8421"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wuwei"]},"Identity":{"Case":"Some","Fields":["QD2eHd2OZvqAgd6uF8lLLR0fYWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/uPvIdpMttvbWWz4UCzRcjqFzwibxg5CTqU7/bTLwVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:13"]},"IP":{"Case":"Some","Fields":["212.51.155.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plusvat"]},"Identity":{"Case":"Some","Fields":["QB6No2S3Jxer49S22z8RkrwfJMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QukIb1mZ5ruGcjNzzoQAdGH4gV5ze2OQM8nr3Td28oY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:39:52"]},"IP":{"Case":"Some","Fields":["141.193.68.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay24L"]},"Identity":{"Case":"Some","Fields":["QBpmdHcTA4zu9u0oyK/rcFcO68w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RWyh+sDz/3bO9sCj48dani/C4yQvBPMrYYoj9AJc+PM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:26"]},"IP":{"Case":"Some","Fields":["2.56.241.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700:2::1:27d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trash2"]},"Identity":{"Case":"Some","Fields":["QBZR1MEwCQ1cosnxfC7LsHSPMPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gRitgCE/KbuNqcLIfesYoyULsiG3uLckc5/ZBdP6+6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:54"]},"IP":{"Case":"Some","Fields":["51.81.56.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ramhorn"]},"Identity":{"Case":"Some","Fields":["QBHhuw5bmiKvZltVO//d4ipRexY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EtV4wrm2RFsz9AoavoTWdDZExwZgqRZ8ldrXC3zA0s8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:26"]},"IP":{"Case":"Some","Fields":["194.88.105.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay26L"]},"Identity":{"Case":"Some","Fields":["QBCP36QO2wE/cpHztNo9QS7Tpe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eQL+lM8kd4rMSonMWslBKaOpPdWMQZqmk5T3kb4xwSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:54"]},"IP":{"Case":"Some","Fields":["195.58.49.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:b700:5::120]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=790"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI16"]},"Identity":{"Case":"Some","Fields":["P/vEHGWQIfiaUuPgIEslukzA/Lk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8c4q+WdJhsZWgWEHYpdUswfOlbCwJLWybRQpmJdkHKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:39"]},"IP":{"Case":"Some","Fields":["171.25.193.77"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::77]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LimitedHangout"]},"Identity":{"Case":"Some","Fields":["P/mN6sIAwkoC+pJ4T2d/90qk5cg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FsxaWdG9JcI3Jt2gCALOzSqjAJedSpSoGdSUX/MrRvA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:24"]},"IP":{"Case":"Some","Fields":["145.249.104.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["remedy"]},"Identity":{"Case":"Some","Fields":["P+v7akkdMMrMLCmV7bQXF6b5TpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xK7xiboWYO6xTlOjI06I9ftyqcJzHgmV37Fii7HSr4c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:12"]},"IP":{"Case":"Some","Fields":["212.16.170.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SemaTorRelay01"]},"Identity":{"Case":"Some","Fields":["P+GqFjRF3A4Gd7Uif1B5B8SHKjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y9cCyAemoUTCZmwZx1yxUWoAqy5iIhNji2ODqi1J3rg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["152.115.46.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:188:5207:0:152:115:46:132]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer07"]},"Identity":{"Case":"Some","Fields":["P9/sY14/EbTd1oX+FTcgX5KDQKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPKf/ZORNGr6mNM2VmZ/lDc44355N9X9MTGYei0rZ1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:23:01"]},"IP":{"Case":"Some","Fields":["95.214.54.108"]},"OnionRouterPort":{"Case":"Some","Fields":[5789]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["P8zFLabNLRjhSsHUc7Esvl1dBR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mKDu0g8vMAhdJAgbewp9v7+aA4SXNZ6xz3FwrmYLEFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:26"]},"IP":{"Case":"Some","Fields":["185.229.91.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:36c::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsalc1"]},"Identity":{"Case":"Some","Fields":["P8bwJuSfG2mH8A7CtPCnX81Z+wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+O5EwoFOwOxQEbBlgvPo0igwgIYCoTE8Je11QskUYbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:06"]},"IP":{"Case":"Some","Fields":["80.211.74.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6d40:72:adad::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["moykr1"]},"Identity":{"Case":"Some","Fields":["P78uWqf60v08EkyjCbQIq6IPi04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zs7tQ+J0yo8KS+QXtPtR6pDdO5Zfov3OeCpvb0dmn9g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:52"]},"IP":{"Case":"Some","Fields":["132.226.174.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:8004:7800:430e:23d8:fc7e:411d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["harpianet"]},"Identity":{"Case":"Some","Fields":["P6k9QemnxMR7d8DX9heZm21dC2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMBUPTxOeKT2zP4sBiaislZrxQbDc+b08ArFcgiWcpg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:09"]},"IP":{"Case":"Some","Fields":["143.208.84.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:2aec:205:4600:dea6:32ff:fe9c:c7ca]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarbarianParty"]},"Identity":{"Case":"Some","Fields":["P6VqEqCUqe12hWoGokAPT6+srPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btbSRQ+yhKxL4EtYla3nYwmSztL7UINFLmXSPxFZMII"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:53:26"]},"IP":{"Case":"Some","Fields":["198.144.183.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacySvcsExitBA"]},"Identity":{"Case":"Some","Fields":["P6BNr7OcjC07s1aMS3+EGUaR2cs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2j1ev2ggXLnW8JyFmzhStyyMaU+i/6fwrhFFFzF4S1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:44"]},"IP":{"Case":"Some","Fields":["208.68.7.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:6e:a009:705:face:b00c:15:bad]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TSFORT0"]},"Identity":{"Case":"Some","Fields":["P5+Atpc5MWcGbyKyAkwtq5dfdtg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TLEnTgX34cWscktbmM7RXz+RC/D1G9nALnay0KSgt94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:29:39"]},"IP":{"Case":"Some","Fields":["5.255.104.14"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freyr"]},"Identity":{"Case":"Some","Fields":["P5hYDIgaPafvLpqJJ0ka1OXtaE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+YG3ca1DJkOM/YlLLgitLn7zymD8xd4HzcussVkKX5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:09"]},"IP":{"Case":"Some","Fields":["185.112.144.18"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex64"]},"Identity":{"Case":"Some","Fields":["P5HzhKv20RUIBjjlI4EjHRv7/IQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oyKM2r10FMCbhc78Cwxb9BiYZ77OziR77bZKWx3cxDY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:03"]},"IP":{"Case":"Some","Fields":["199.249.230.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::153]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goldfish"]},"Identity":{"Case":"Some","Fields":["P45TXDoAvl5uSpkQ/zUTUX/Eaq4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8V/L0XmteVkpS+OmLNqdi0d1Zj0Ipw5wamy0HbJNTS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:39"]},"IP":{"Case":"Some","Fields":["188.166.210.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9876]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::fd7:9001]:9876"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["0001Userzap"]},"Identity":{"Case":"Some","Fields":["P3kj8pcawP5ZGoVLryFHkCbcmpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IzOv+erUFunfF9srZMIUJ3Ogd87vg5xARum9d4ftpXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:17"]},"IP":{"Case":"Some","Fields":["202.61.226.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:a67::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["P25m/aVLDO018BoWr10DTd3Y1Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j4TEW1kOXMg1ZIk8PpDpRfy3hJPkFA1gkqWGlWYuSd4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:00"]},"IP":{"Case":"Some","Fields":["107.189.5.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f30f:6a6a:dfb1:73d8:fecd]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["P0R3Kwtnf/0/4PK4ogXAuxgaZzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mnBqRbHxRz88erNLTC4N5O4PX6Vc1Rp7mQ9w9IT5TeQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:02"]},"IP":{"Case":"Some","Fields":["92.196.2.156"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryTessa2"]},"Identity":{"Case":"Some","Fields":["P0PQWEomE8nbYxOC/0htxrleocg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WydFdOpmNUbncpZJlcn3WG6t43zt88ncpKDKn6E/RbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:25"]},"IP":{"Case":"Some","Fields":["95.217.112.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:2e4e::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["PzjBfBG0NWJ2a1CpU2awIcvMeto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CNd6hO3VOfiXMgjxInoXDS2fUNyEwnISGrak0pbjJjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:16"]},"IP":{"Case":"Some","Fields":["185.183.158.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["PzhOhlcT6dhoRzDHgmWAG3hxKow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qF7IlyJUuzw4h5XUCC/b5lXLRD1RcWZhIu/gUPLZyp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:12"]},"IP":{"Case":"Some","Fields":["178.175.148.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maybechimes"]},"Identity":{"Case":"Some","Fields":["Pxxdxg3ZhQQuQpFAGnq37Jan5AY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RUvIiW++JLIO8ubKYbU9Jl2JnHpHjpS7yq4xRs4ocl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:38:32"]},"IP":{"Case":"Some","Fields":["65.19.73.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f06:bf3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iwrs"]},"Identity":{"Case":"Some","Fields":["PxU9B8Hk0yh/IHJ8ZGPglitSZmI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5yzS1gJaZu1JEByP/8WslMPmk3R2Sx21+GPtSseFZzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:52:19"]},"IP":{"Case":"Some","Fields":["194.113.32.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra46"]},"Identity":{"Case":"Some","Fields":["PxTvgLyn02eUkes3yY7Pt4b2RK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kLDcpSkMvAFhjWu6HiUTS6nJM6I31FWeyNmQfWKbIfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:49:22"]},"IP":{"Case":"Some","Fields":["193.218.118.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::101]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NYCBUG1"]},"Identity":{"Case":"Some","Fields":["Pwkphum4fT/aCbcfo6YCN4KFx3o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d3naoQkGkOQmbsip2RVb82DqKeb6Qm40G/tjquFXi6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:25"]},"IP":{"Case":"Some","Fields":["66.111.2.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2610:1c0:0:5::16]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt61472"]},"Identity":{"Case":"Some","Fields":["Pu3IBsUk33pLAxzjFIBuP/bMJfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/BOKJEfAocBADZD7iqeuwHbu30iGY9/rQN5kAgV+6Ak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:57"]},"IP":{"Case":"Some","Fields":["185.245.60.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["PuYrZyJf0DCiN+TJSXwwPtPdGRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5zn4WKMDaks6BTDRXaVYXpVCU2gnEIq/cz9GNE2JRr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:02"]},"IP":{"Case":"Some","Fields":["185.44.81.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::70b5:bcff:fece:22c1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["PuEcRf3iPMRuPHvIr8rLg5WzdBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/A+RK0cCyvw26cpBCkJ8Pnlttt3iGp6/uPEBhdHNiJQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:37"]},"IP":{"Case":"Some","Fields":["5.45.98.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IdidsetupaTorRelay"]},"Identity":{"Case":"Some","Fields":["Pt0oiU1Pz2Q7SFigUviM4l5liaI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L5kV5LCc8xCTo0BICsFmIwnYQUrmzimzzxp/VicYgGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:18"]},"IP":{"Case":"Some","Fields":["185.130.45.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["twoface"]},"Identity":{"Case":"Some","Fields":["Pt0AJF2TZkozpyS6N3FQ5VMe0DM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JaSemAFvorYRWIq100isy9lJzFdmNA59AJCag9swRpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:03"]},"IP":{"Case":"Some","Fields":["185.8.63.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["inconnu3"]},"Identity":{"Case":"Some","Fields":["Psrx6qLuLGo90ZHIIHiMkzhsJPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aBFQPz4kxdjwnFdmbiTw8n8T7ek6HunBTSE5bTC5VYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:50"]},"IP":{"Case":"Some","Fields":["155.248.197.238"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stoertetor01"]},"Identity":{"Case":"Some","Fields":["Pp/urbccE5fqvvq8loZcuPqwbm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OMsrdM10w2DQOoAxvMhp0FKZMXy/QGFfxNqGsgFbgMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:53"]},"IP":{"Case":"Some","Fields":["95.216.100.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["PmsZHXb9gbKp827L8j6GVCIPypI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nw6Em/LwfvjaLpgI3KzHNVawMrERH89azp100rKfvog"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:19"]},"IP":{"Case":"Some","Fields":["23.128.248.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::34f1:dbff:fef8:3dbb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["squarewave01"]},"Identity":{"Case":"Some","Fields":["PmLMWedFX1Xevne5d3++pzky/4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ONHzdg90YFiKgUU7W8ki+BF0SsHo0E43D1cvT9rKmM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:51"]},"IP":{"Case":"Some","Fields":["107.152.47.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:3000:11::c3d4:ce47]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra38"]},"Identity":{"Case":"Some","Fields":["Pllu2svpHco+fybwFox2SIItKgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ITyN6wIOmxRdsi9z0cSwgXNg2tDhSai1VEDKgi1vAfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:32:35"]},"IP":{"Case":"Some","Fields":["205.185.120.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tuco1"]},"Identity":{"Case":"Some","Fields":["PlkoDqZ8kY9a1cv3l4ZDu3CgwWk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F4rb1vUSA0aiSPN6h+sMXRC+9b0PbL+B4low+WJ8R5Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:54:24"]},"IP":{"Case":"Some","Fields":["193.187.91.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["PlPTl52wfv1zZmHJNKHe0UEntoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/xoOM0oMHGnD0ZaHY6CY7DgxAUz6xfKtc+0dTTmJVUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:33"]},"IP":{"Case":"Some","Fields":["217.79.179.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:fff9:131:6c4f::90d3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RSF12thMarch"]},"Identity":{"Case":"Some","Fields":["PlDLypiiD2N7xFUf1PEy0GLbmlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ9TWgXKKiW7F0/j0DbflFyHoILWY8Syyl7m7afrk50"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:36:11"]},"IP":{"Case":"Some","Fields":["185.220.102.7"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::7]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eclipse01"]},"Identity":{"Case":"Some","Fields":["Pk/BBJQ4LgJJ4jqe4A3RJlsfAPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mLfCGS/2CiAz4EBYe6kYUQtOJgtxxZoai2dI9sLHfU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:28"]},"IP":{"Case":"Some","Fields":["81.16.33.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM12"]},"Identity":{"Case":"Some","Fields":["PjYWqUMtK4Ww2vyEBihjzimRfhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H0ZchrYacKU/fXTI4qOIFXZko2bb7dP7toLUgEAib08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:17"]},"IP":{"Case":"Some","Fields":["185.239.222.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::12]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["runcrypto"]},"Identity":{"Case":"Some","Fields":["PjEF9YgUewqG4oHurv2Yyl5Uk9s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KDrENTO2XNAHqT8acS8jmbNof9uIIAEwOrL64019vvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:40:03"]},"IP":{"Case":"Some","Fields":["135.125.237.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Phj+ur2UzcmGQWyVffMj/t6Xor0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["m8F79Eywg/2u8vCAuA56mRlDZBLh4+cg7mInMFkymNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:34"]},"IP":{"Case":"Some","Fields":["62.210.99.238"]},"OnionRouterPort":{"Case":"Some","Fields":[39819]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuantumOnion254"]},"Identity":{"Case":"Some","Fields":["Pgmu8LROlBa8LYcDLTQWQx6CMdw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVNX+tqqCIpdhSvq6+XFPFKGuf33tvUuDv8AJBJ3qIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:30"]},"IP":{"Case":"Some","Fields":["38.147.122.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mephisto"]},"Identity":{"Case":"Some","Fields":["PgRQXTYqoyTm5OHIUWzNnvTUG5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qwcBJpeALIk28Q9UQ03pWEPPed+ROVVGEGDbNjOTr2M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:27:07"]},"IP":{"Case":"Some","Fields":["81.30.158.121"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:699::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rem0232"]},"Identity":{"Case":"Some","Fields":["Pf1hkKQDsJkoglQBpvuQZ51qSd0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Euvay1wEJfkWluBR/uKstt6vUf/SKJOsp5qZ54mun6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:15"]},"IP":{"Case":"Some","Fields":["149.102.152.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c204:2089:786::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["etraxx"]},"Identity":{"Case":"Some","Fields":["PfvntHPzjfCUIJCzSS0C2nDBcEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JarfVRayppsidZejMtlZLk2dhmS/sAecqUIMjI6kfjw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:33"]},"IP":{"Case":"Some","Fields":["2.200.105.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tp"]},"Identity":{"Case":"Some","Fields":["PfHMRZmmEVhdrbAXOMyNo4cWGQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3I0WzsVPYgcUZk54YUtc6Ev/4y1SwXYLUV0YNhVwjEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:37:26"]},"IP":{"Case":"Some","Fields":["195.88.24.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xbad1abe1"]},"Identity":{"Case":"Some","Fields":["Pe28mvMt0ZAJEnD75kAgWsIjueo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XQbIX+kHfiRzgmJuXaBE9fICZspi3MYXBxaZy45OIbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:42"]},"IP":{"Case":"Some","Fields":["51.178.17.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9003]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quoo6voor9ar"]},"Identity":{"Case":"Some","Fields":["Pdrp1H73u/2uKtowpY+gow77jAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fa5deEGAFBMNhh+Ry0GcT9Hy7/m8WxT8Ga4CKF/hL0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:21:44"]},"IP":{"Case":"Some","Fields":["104.244.74.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mercury"]},"Identity":{"Case":"Some","Fields":["Pdo+b1bXelhbnR8I4xrjjr5j7d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W7bNaSkoze/np/mlyAd2Pwqsm9g7uVbM+FvGthEYSnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:41"]},"IP":{"Case":"Some","Fields":["45.88.109.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:e8c0:1:900::6d6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM06"]},"Identity":{"Case":"Some","Fields":["Pc7K9wibHCzj6pUE7gXOdU9M+ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vae6R0w21rfMezN6CC5/CD+hL66KZK9tNA1ekfzxnbs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:47"]},"IP":{"Case":"Some","Fields":["185.239.222.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChocolateLily"]},"Identity":{"Case":"Some","Fields":["PcdIwt/x+OnaVia7PLqv8x1wbBA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7JrvKjloiuPXd047uHPdCFj+k2KIpDADBqniPQre/WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:24"]},"IP":{"Case":"Some","Fields":["64.180.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[51000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dreggle"]},"Identity":{"Case":"Some","Fields":["Pbe0dWPz8qVd8elN8er9/wllo5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u8ajpikOjJuKt6umtlHwvmgSZLqUTCZOVQN3MT4Z+6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:45"]},"IP":{"Case":"Some","Fields":["134.122.14.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hKnYTKYgoYx4JmnAwu9"]},"Identity":{"Case":"Some","Fields":["PbcjEPaZlVXnGgnD/N+G6OmRGPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PrAwONBQtYGSVdynmsJFKFRC5gkIMp0uRJPC+RktUaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:55"]},"IP":{"Case":"Some","Fields":["68.67.32.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1150"]},"Identity":{"Case":"Some","Fields":["PbXu5oZbHxzO3i913Lj5ptmHveM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxA5A4qz0/cieCGC0W4DAjwhwBDeZ9tD0rgJGjcNizw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:27"]},"IP":{"Case":"Some","Fields":["185.220.101.150"]},"OnionRouterPort":{"Case":"Some","Fields":[11150]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::150]:11150"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["belovachapTOR"]},"Identity":{"Case":"Some","Fields":["PbXDqU7rpbiHCL7VIxJnMzKbDwI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1bLkMlgb0gPLIIVMEGdbHnQNgoWtyB5r5nfEWY7kjwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:48"]},"IP":{"Case":"Some","Fields":["167.99.181.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::be9:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hspaccaossa"]},"Identity":{"Case":"Some","Fields":["Pa/RmhVVdCghDJrjA7gHovyDsXc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9F5fSSGahUFvghXiKWJJvu6MFMFtb4QHz9SxtGTEAM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:14:21"]},"IP":{"Case":"Some","Fields":["188.216.252.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vjayDuckdnsOrg"]},"Identity":{"Case":"Some","Fields":["Pa65MiMkeTf31Ihon3m5IDNx4Bg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tS0pwYwZK5mPm+lSCsRsXAmk8qSA4cJN/3T6mcrR2SQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:11"]},"IP":{"Case":"Some","Fields":["91.64.180.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TurboRelay1"]},"Identity":{"Case":"Some","Fields":["PYbuJXvMyScc5UzGc1l+zCBZLug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YygI76jhZ43Mf9CSaJK/pilrms7XDYCXL5FdR5VGXiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:36:46"]},"IP":{"Case":"Some","Fields":["51.89.216.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::3ce5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elektrobier2"]},"Identity":{"Case":"Some","Fields":["PWFd75fzh2MfUCAfr6bntn/fP+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7PON2IA9K5wy6XBOGXX7b9xaz2XaI7G1uW5zu5ka/uc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:46"]},"IP":{"Case":"Some","Fields":["46.165.254.40"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TorZabehlice"]},"Identity":{"Case":"Some","Fields":["PV1heMRFN+NpKFOzRDhfZXKlV2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SC0x5fOu2IMCygSWBpse986wmGdyTLXAFoQEDHJaB0w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:46:31"]},"IP":{"Case":"Some","Fields":["87.236.195.253"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5f0:c001:107:2f::]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE62"]},"Identity":{"Case":"Some","Fields":["PVLAqoLl0OJlNJ/EikrcAwJ0xBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LV2jHJImVluwpOuXrHX0NP7ThaS0VGRhoPg24o+uGQQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:47"]},"IP":{"Case":"Some","Fields":["37.221.66.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:103]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["PVAZP5ua3JCKzGl3KmtEtQq8ZK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MdEpmzK2p332UiUrAE/TVjauB1cMmUBmSLksN50EoGE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:07"]},"IP":{"Case":"Some","Fields":["185.241.208.183"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["default"]},"Identity":{"Case":"Some","Fields":["PUC8eQp8oFohdUFgP2CVFvptmRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OhgzTX95uk7h9J47jTs9w0YPs77c+CcTGQQe0xx1fVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:47"]},"IP":{"Case":"Some","Fields":["95.31.137.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashElk"]},"Identity":{"Case":"Some","Fields":["PPk1u0jCfqD+pNa5AlpWY2TDjpI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["521dKGJ1MeYW/9xKpMN1xwVnU1i93fPOc9HyiQpR3ZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:54"]},"IP":{"Case":"Some","Fields":["194.32.107.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:220]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["thanatosDE2"]},"Identity":{"Case":"Some","Fields":["PPkV+KlaPooG3PMp9xmy8/VCKss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/ZSLQtUbshFi+3xAHI0YhIjrtDvGc2857+fJSMoQvk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:09"]},"IP":{"Case":"Some","Fields":["185.187.169.249"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionRaspberrySoup"]},"Identity":{"Case":"Some","Fields":["POpWuBdFXhPEsGPn0+dybChvfJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jF0cjwQbmGUVLp2XAMSpK0CUyaNZ9alxNF3yO3iBdKQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:27"]},"IP":{"Case":"Some","Fields":["82.197.215.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neurostar"]},"Identity":{"Case":"Some","Fields":["PNzXHaDIKWQdnaxgOw5cQxXxRSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DQGXeCIomSELeFuyAXEmr5YoqaHDV09ugzdc+4vxsLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:15"]},"IP":{"Case":"Some","Fields":["116.203.88.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsethforprivacy"]},"Identity":{"Case":"Some","Fields":["PM75aHGkmsBhSeSqjhTScNiB9tM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATdewJ9gjGNoaFOZCW96dDMCtGC2c9KxIpdORHucc1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:38:03"]},"IP":{"Case":"Some","Fields":["5.9.120.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:162:7018::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jujunz"]},"Identity":{"Case":"Some","Fields":["PL/hMpK0BcoCdU7ysnFnRX8hQF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rcimHD2yaDVIzysa6lJQ6yv3c6CX0RbzLypV2Avk7E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:07"]},"IP":{"Case":"Some","Fields":["109.202.198.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrous"]},"Identity":{"Case":"Some","Fields":["PL79jcN//qINXd+87ui+yalNb10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iQgt/bUo/WV5dDh2IcleOlTqujY13ltMk+Z1ViZDIbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:22:45"]},"IP":{"Case":"Some","Fields":["102.219.178.8"]},"OnionRouterPort":{"Case":"Some","Fields":[55959]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gongshow"]},"Identity":{"Case":"Some","Fields":["PLxUHyp2Ot1790KRkiklHiwGXk4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kNM4CVGewPRw/KlPHEXztwEcFpG8f6gopwM7ObrqsqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:55:08"]},"IP":{"Case":"Some","Fields":["209.126.103.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor10"]},"Identity":{"Case":"Some","Fields":["PLQZPvTiOfztxNxDRo4LDWtnrMM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOi80iqt07yDT6+LBPs4h33MoYcyahQghU/5bbn5VgU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:12"]},"IP":{"Case":"Some","Fields":["51.38.65.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::f6e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NakaG55"]},"Identity":{"Case":"Some","Fields":["PKx4jRSHxZnlzjNuBFbK4P0ubW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7iutNpGqKJHUBaOIwouz3MUhSuVBZD+JSjWYUh0WCHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:29"]},"IP":{"Case":"Some","Fields":["153.151.219.170"]},"OnionRouterPort":{"Case":"Some","Fields":[14141]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lttlefoot"]},"Identity":{"Case":"Some","Fields":["PKhxCxS8TpFEgXjrMkwrRnwi+Mk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8jYmvpCpILOO4zmhdXkCulvsa9knwZ4vP7olCz8RCJo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:35"]},"IP":{"Case":"Some","Fields":["173.230.138.88"]},"OnionRouterPort":{"Case":"Some","Fields":[989]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:93ff:fecd:feca]:989"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN30"]},"Identity":{"Case":"Some","Fields":["PKDRVWcCTS4LVX3Azz6WKzeZmnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JWS8QKBVPPboH+XM+e/lkOSloxLu6GVIxEG8OwrbBYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:23"]},"IP":{"Case":"Some","Fields":["199.249.230.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e653]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra5"]},"Identity":{"Case":"Some","Fields":["PJDKWFdwXXxsF21HXFkq8nif3ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["syR1NCO+P2cfprrSxlIijN63fVgZSaFLhwK3NOFfa6g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:23"]},"IP":{"Case":"Some","Fields":["107.189.31.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["F3Netze"]},"Identity":{"Case":"Some","Fields":["PInIDiaZ+2NYu7ZP3JVHr8tcA/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OLU0JLCRynRxfj4kAz2r5KG+tDVbXUhJTRYswf2ukek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:52"]},"IP":{"Case":"Some","Fields":["185.220.100.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:16::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carbonitos"]},"Identity":{"Case":"Some","Fields":["PIDTaPeW+zIYSBnrsvVaMaCzl/k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ew4g0vxVqACKuzbxiulSRJbc/UZ+16MeqSuffEjSmq0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:05"]},"IP":{"Case":"Some","Fields":["18.18.82.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b42"]},"Identity":{"Case":"Some","Fields":["PH1iCB51TY6yghvglri59Yv/zAg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egj4tHuGddXrfL4zDdaR8rimWGB3CGKFbQP+8ieJg/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:07"]},"IP":{"Case":"Some","Fields":["78.196.33.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e34:ec42:1880::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HanseTor"]},"Identity":{"Case":"Some","Fields":["PHlwK8xKpJjLjp/silGnKuiRaeo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zx2maGiwkiLegWHvJw7eyLuymrq+JpmBm9zDM/f3sWw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:18"]},"IP":{"Case":"Some","Fields":["79.209.234.37"]},"OnionRouterPort":{"Case":"Some","Fields":[51901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["glenda1"]},"Identity":{"Case":"Some","Fields":["PGOPlfNmcfxxaQx7viUuIZIARNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BXKxtw4Al13qW9QsWG7ySJYsDqX9PvzPGRskyZNs2hU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:32:56"]},"IP":{"Case":"Some","Fields":["78.46.209.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:caf::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow001"]},"Identity":{"Case":"Some","Fields":["PFkVNI1zFQXEgRL08DI1/ee4yDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v9m81Fgak7zX+yTlJIj72Y4Un7vrApDApVZbURPeeio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:13"]},"IP":{"Case":"Some","Fields":["185.195.71.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer83"]},"Identity":{"Case":"Some","Fields":["PFUVFePuaX2+gQvj22e6UKPWeDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8drygDAbmrKDaqkXJfHhGfUylHxscWSqFMFlI3f2VDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:21:35"]},"IP":{"Case":"Some","Fields":["95.214.54.102"]},"OnionRouterPort":{"Case":"Some","Fields":[8183]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iapetus"]},"Identity":{"Case":"Some","Fields":["PE6xIC5G4BA8ydAlelKJO74CK3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T3C3GsLkc0ijWi5XDFFreGWgCLHl+hEg6spQjeDprdA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:21"]},"IP":{"Case":"Some","Fields":["37.123.173.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv07"]},"Identity":{"Case":"Some","Fields":["PEqoMWlDKBs3t2dUyxilJurryx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pfJP+/wbrL0/Lrt/QjiGXZyN7HJUQgacSPefNmMHzGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:34:57"]},"IP":{"Case":"Some","Fields":["162.248.163.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chad"]},"Identity":{"Case":"Some","Fields":["PEC9XCo7F92PzqI5ZVANxUD6oxg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ercM+bEiH+oiHwq1b49TNtoSPH2rG8elANySkHqLS1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:38"]},"IP":{"Case":"Some","Fields":["132.145.78.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0148"]},"Identity":{"Case":"Some","Fields":["PDY8i0XSHtLGVqDtc7lH9UacUZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lJvH0IViIqRiyqGCoMJtbsQzQJbbNFN0lvkyYZbcH9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["185.220.101.148"]},"OnionRouterPort":{"Case":"Some","Fields":[10148]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::148]:10148"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JPxzAnychorianrelay"]},"Identity":{"Case":"Some","Fields":["PDI6HB56XAUhLAQhYOJZtnPfXQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fRZHOflU/NgoxTaidXGPm//lFEUxJ4QhSl6LRrwC9yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:04"]},"IP":{"Case":"Some","Fields":["45.76.218.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2401:c080:1000:4508:5400:4ff:fe23:1a60]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetxor"]},"Identity":{"Case":"Some","Fields":["PDGQXGUfXJSWbJI7vU4dvW2d+1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VebES+8nDRo0RrzodUXB2zEsRB4ECtdUU9dLyJL6EO4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:59"]},"IP":{"Case":"Some","Fields":["91.190.155.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:dc0:4:18ac::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["PAtzOMV6ezByutUDtdhMFaqJcTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hx0sC0ybIhzAZdH+70HY+Y9khjbVhKwiFlbaUZUU6aQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:04:36"]},"IP":{"Case":"Some","Fields":["23.128.248.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::38]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torsuperpro"]},"Identity":{"Case":"Some","Fields":["PAtFnTHgjpmOHpiLKC45ZLN7mkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sECtyit94ZkgHA71Nl9anGIjBFol+8N/UERq2MI9RqM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:25"]},"IP":{"Case":"Some","Fields":["189.147.122.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicGamerRelay"]},"Identity":{"Case":"Some","Fields":["O9xIMPkackC0Lm0ZsfBP+UzzNQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gVqxotKz6VnVYTu7YrbCSh0pUjmI7zVWV6CcikPKtPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:19"]},"IP":{"Case":"Some","Fields":["185.10.68.195"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raspi53Tor"]},"Identity":{"Case":"Some","Fields":["O9E3bNM57axq7881WnA6Fq+RNJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IC3wYplA4/ldmXoZmumzUB47huE4429wEk6L4k9qf/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:15"]},"IP":{"Case":"Some","Fields":["79.226.154.194"]},"OnionRouterPort":{"Case":"Some","Fields":[1058]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sa1"]},"Identity":{"Case":"Some","Fields":["O8Upqgr6/w/LHbIQS2a2w8Q53UI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RqSAexLFrNPGkg7MbOcXsR2M0A5jW+tdLInHAkPIhZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:24"]},"IP":{"Case":"Some","Fields":["78.128.112.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tiny"]},"Identity":{"Case":"Some","Fields":["O7+dmMfQWNfC5g9rpb1XTLTz/iY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fQZ/1kj8b94QhhKpIxtRw+6dOOMlUZd58poII5L0xpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:41:01"]},"IP":{"Case":"Some","Fields":["91.219.238.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["accidental"]},"Identity":{"Case":"Some","Fields":["O7cbqxc9u0+yS5CEPb1Q2PcEBuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kl5K0Y87WWNFmwEksaDWe9hGcKIZmMAk6v3ynBfLBfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:28"]},"IP":{"Case":"Some","Fields":["188.127.30.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venser"]},"Identity":{"Case":"Some","Fields":["O7NMzY6pyATFxTYbIfM3Z/IggB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aTmfdvQNzCFVUsC+3IZdTcXLlhW5EiqUb6I6ZPS+GJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:53"]},"IP":{"Case":"Some","Fields":["94.23.17.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:123a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kerly"]},"Identity":{"Case":"Some","Fields":["O7A1UU+CRqw2e1Nw9P4SC7EdjG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXTQ+h6KxUgZthl9nryxR5acZWxaY9U0xWzFH5CKLfE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:35"]},"IP":{"Case":"Some","Fields":["93.115.95.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebest1"]},"Identity":{"Case":"Some","Fields":["O6ufA9wvMqaqHGqg6VksGaBZ8VM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b+R+JjGDTlCe88TyUDjgFOXKNBgNPO3VIjI3+ASOyHQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:49"]},"IP":{"Case":"Some","Fields":["45.58.154.220"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noxdafox"]},"Identity":{"Case":"Some","Fields":["O6Kowb5P1szrvORom2Y3KgUZ4Mg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wQoGOhsg/bSzUAU/Y1AkKmGMmFH+3cQp/j9Ht3QCt0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:27"]},"IP":{"Case":"Some","Fields":["88.114.24.155"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paranoidtorrelay"]},"Identity":{"Case":"Some","Fields":["O5UyA68zLY/hRS4c58tQo7UpfbI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wk2rIRTjGV8IapYj+wtm9plt5L2Lh8ULj/jivGXgKPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:17"]},"IP":{"Case":"Some","Fields":["104.244.79.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SamicWebsite"]},"Identity":{"Case":"Some","Fields":["O5GQOl8+It7//lL9jajaMAAai5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9H3tqxzNqSDbvKjXPGGwD/nBjropwbvLxCzlb87/DSA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:30"]},"IP":{"Case":"Some","Fields":["198.74.52.66"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c02::f03c:92ff:feb9:4fac]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["MallsBalls"]},"Identity":{"Case":"Some","Fields":["O43pt/r8vUIfdjX6FwhbyrMSceI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DilSg1Wb8rG33PuTwKp3aX5h9zZcvl/lpoSfYe5C2Ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:42"]},"IP":{"Case":"Some","Fields":["101.174.32.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["grill"]},"Identity":{"Case":"Some","Fields":["O40psFpm5SUCS91phdWrDt5E0Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bBD2uIGST6UrEFSLbL+bxqp5X2SGlzgsyVLekR4nKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:17:54"]},"IP":{"Case":"Some","Fields":["144.202.57.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:5c01:a8:5400:4ff:fe21:4663]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot"]},"Identity":{"Case":"Some","Fields":["O2ocm2WqOV0hYA+AWga5mViFSH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jeY0TseZFd1NVrYR/ZnzRkSP8Ms3NWYksU/rPgx46Yc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:21"]},"IP":{"Case":"Some","Fields":["121.200.11.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["recyclops"]},"Identity":{"Case":"Some","Fields":["O2dfXbjDaubbWImujaGs313VGg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6XHrWF5oR87EvhOrwYbrhjQcUa2DL044ssglRJPPI0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:20"]},"IP":{"Case":"Some","Fields":["172.106.12.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay1"]},"Identity":{"Case":"Some","Fields":["O2Qv9/45FcQuIERaHHJadbqgqeM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aHuyI47x9Xp/iHs2f/47Pe5PaNkvBcLTUzDITVTozIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:04"]},"IP":{"Case":"Some","Fields":["5.181.48.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:3f:58c:18be:1dff:fe6d:6f5c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForestIsland"]},"Identity":{"Case":"Some","Fields":["O1V+Pwwp1DOakErYxkH1ghUf73E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qfm7utFbI0xuJSEPNijzHRWL9CubceOy3Bts+6wzYWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:39:09"]},"IP":{"Case":"Some","Fields":["190.211.254.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx4"]},"Identity":{"Case":"Some","Fields":["O0xXKfgpyi6JW4Gvg0pj2zNtD/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G77yT2oKKaNxSmqxFJKkaKvCEhDpyz2yah5Plbild2o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:39:46"]},"IP":{"Case":"Some","Fields":["66.23.227.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Baldur"]},"Identity":{"Case":"Some","Fields":["O0XbAjaWny/SjftFwC3P+EtO6A8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P9pc2fgnSsY2GJ+l+U4Rt4BsUdE84NTGrUbT6ugOulI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:58"]},"IP":{"Case":"Some","Fields":["83.137.158.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9015]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BeTheChange"]},"Identity":{"Case":"Some","Fields":["O0Rlm5pLOAURxeqH72Qest/e3Gc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9aR0opGHilZ5nCsO6eVYvjcCUcRWFRHY4yyCcaC3aDw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:28"]},"IP":{"Case":"Some","Fields":["188.141.60.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Reichsfunkmast"]},"Identity":{"Case":"Some","Fields":["O0P7TyN+vjVwywa1AMoei0bur6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f0rR6M+MaKJLgLUjKdkgurCoDBuDi1ob5DkNPFgRIE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:54:24"]},"IP":{"Case":"Some","Fields":["107.189.31.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f6b7::1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange009de2"]},"Identity":{"Case":"Some","Fields":["Oz9FG9WPltwOjrfQHyCfyIA8M98"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELe+of555fxOsga6wAX+2cUxynUfYLtLeHLv6oZMATo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:39:54"]},"IP":{"Case":"Some","Fields":["173.212.239.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2031:2233::1]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["millersound"]},"Identity":{"Case":"Some","Fields":["Oz7T+M+lAJ33mdCsRbUMQp1o+qI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQIw0SDCba1yoPtlY0iEwoNmGfGSR3VyaWwL1U7zUlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:19"]},"IP":{"Case":"Some","Fields":["43.131.94.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rix"]},"Identity":{"Case":"Some","Fields":["OzJ7pf5WMQ/auP+VC9beN9PQ+Xw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYCdaVlrvqYFnwZXJl+k590NQ0/VOSPDLhL4Mg6poes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:56"]},"IP":{"Case":"Some","Fields":["51.15.178.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9228]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chuckles"]},"Identity":{"Case":"Some","Fields":["Oy86SSl5p5zOTeByrc01TNoGrkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n90e9EwndN32pQWca8jJjITyqNQSsU9eUZGIBE0MdC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:07"]},"IP":{"Case":"Some","Fields":["172.241.23.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OyC10SCrjMF4D0MhbcnGBR7Vw4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N0HLcrhjw97d/+8ta0Jowuzj8sqIm04YrPI8FXc8WZ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:29"]},"IP":{"Case":"Some","Fields":["93.95.230.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Linstal1"]},"Identity":{"Case":"Some","Fields":["OxoF/6ZOU/4DHQmNrQxSdWOUV0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vQEwjtzHQajigyvFZVYBBzWKMETcUhjgKhTV0B8a0tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:30"]},"IP":{"Case":"Some","Fields":["91.203.5.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay2L"]},"Identity":{"Case":"Some","Fields":["OwfFAKwX57Wh7mFmE+EEoJSrh/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h+UAud9Ds4WdLMqWUe5kYmzQQwySAobAlgAmWLFJ2Go"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:54:19"]},"IP":{"Case":"Some","Fields":["93.118.32.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:75c0:2c:fcb7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gustavienne"]},"Identity":{"Case":"Some","Fields":["Ovg5DT9LgQPaKXz9UUs1dAeBuH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eXA+yTeF3XRMWWWR9QagjQrj3dVUZlSIPM6FBAuIA/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:37"]},"IP":{"Case":"Some","Fields":["51.15.2.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Ove+9yeUG0uQNN4IWAfOq0VNUys"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkqAP6JkphZiYNAFgfwV4VSrzO6h3yWdKo0fliZXbS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:33"]},"IP":{"Case":"Some","Fields":["185.220.101.58"]},"OnionRouterPort":{"Case":"Some","Fields":[10058]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::58]:10058"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tordotcissincdotca"]},"Identity":{"Case":"Some","Fields":["OvbMaPy5cZFercHLZWxaxXiJy9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uywktiPKS3t9mxOe3sLfHloCwBTktGu6rMjeUSaKKl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:04:14"]},"IP":{"Case":"Some","Fields":["45.73.2.211"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lumipGoesOnion2"]},"Identity":{"Case":"Some","Fields":["OunyKOFUDW9zttye2BashM91VZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e1Zx4uzZxhZZiR8/un3B3ML8XgNzBodSaMt011L2yQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:31:40"]},"IP":{"Case":"Some","Fields":["37.120.178.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strypsteen"]},"Identity":{"Case":"Some","Fields":["OtK6sIXlILv7BdpRMTJ6SUTW/sI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pk6wH3tE+2zAV7H18XtNnZdn3vWCHqCSsucuzfb46wA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:48"]},"IP":{"Case":"Some","Fields":["65.108.197.60"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:1a:9904::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra18"]},"Identity":{"Case":"Some","Fields":["OtKf4SQbc1lfmbosbYMK8LaHQEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vc8WihlnajOA/J+CEHat+32JdLz9+unNt5LygGIYfXc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:49:21"]},"IP":{"Case":"Some","Fields":["193.218.118.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::145]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OtDgmeoPZLYgK+47c3qf5dVUo8w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jHWZ1DvLv7yvmuATU81bAHAgFlJAI8h5dfzM2wDL6lI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:29"]},"IP":{"Case":"Some","Fields":["185.244.192.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["antifaRelay"]},"Identity":{"Case":"Some","Fields":["OqqeWWq6IqZ5ZY9FRE8D0SXK5Ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jJtkfKG3N0yfvqLbQwMGwz5iLt60AR2qnclEZSBe4GY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:12"]},"IP":{"Case":"Some","Fields":["2.58.56.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Baltic"]},"Identity":{"Case":"Some","Fields":["Opvu9am1hiFSqAe4D6jcuR0VtGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O91KyXFbgp756hxtUidU08TBBxbqtcA3gEytwtTUYCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:24"]},"IP":{"Case":"Some","Fields":["188.165.26.89"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[443]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pasquino3"]},"Identity":{"Case":"Some","Fields":["OpTvv0oiCzWpLQpbSoDWMkw8MGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RyRXRMstJiojol5eI6nRjj0jpQ8sqqBcKis+IuSRX9M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:21"]},"IP":{"Case":"Some","Fields":["209.44.114.178"]},"OnionRouterPort":{"Case":"Some","Fields":[32967]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ellen"]},"Identity":{"Case":"Some","Fields":["OpLNV542Unya99sZ7X1BUS4waaY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BOIel17r3IwHucNo303mT8vodmgvAnzbDpTJ6hMVTDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:00:07"]},"IP":{"Case":"Some","Fields":["129.100.38.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ViDiBox"]},"Identity":{"Case":"Some","Fields":["Oog2slScVb1ishN9FLdD7qTsBEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l5rtJnXPMWdL71yQeqePvcrwMhP0AfooT1BbC1vwsKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:22:58"]},"IP":{"Case":"Some","Fields":["46.142.149.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["colon"]},"Identity":{"Case":"Some","Fields":["OoVXsGf75T8Wi76qfRTRKYrlKlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7dXaC6Yn7mT+CqX8CUKdBX64X6pnBLDZMindKgyq8Sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:57"]},"IP":{"Case":"Some","Fields":["62.141.36.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:24f::1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv18"]},"Identity":{"Case":"Some","Fields":["OoRFC4nBtkQxePmP8asvsELrazY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K9ttdEKHGSLGF/8PBFqmZ4sMPtQ0r0V9+Sa/5ciITbM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:40"]},"IP":{"Case":"Some","Fields":["162.248.163.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0186"]},"Identity":{"Case":"Some","Fields":["OnsHSF4vTcRftXdhysWfosVWqv4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X4r/vyTfe0B8trOn3T7t6QOiVRDfyBhBrGLI6+TqAhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:57"]},"IP":{"Case":"Some","Fields":["185.220.101.186"]},"OnionRouterPort":{"Case":"Some","Fields":[10186]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::186]:10186"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sotlar"]},"Identity":{"Case":"Some","Fields":["OnUoQ24N2WdfsSdQ8+3iPPdPSss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1FI16m3uH7VAYM+mpmYURYDAVVp24xmqHTowO5AxRGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:48"]},"IP":{"Case":"Some","Fields":["185.63.253.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RMK"]},"Identity":{"Case":"Some","Fields":["OmOCCgFFkTXSpmGIJ4GZEw9rABU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JNXW2gc+7LUss2Fh/3j99kBBC950/l26a5zkZasfcww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:40:27"]},"IP":{"Case":"Some","Fields":["46.4.101.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:935d::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["OmCPJ7TWVnWjGYYt1/joRB4LSmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bP4t09428z1DfM6K56HSf9h5wBK13N1TNgv3jiMyYK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:35"]},"IP":{"Case":"Some","Fields":["185.220.101.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::194]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYLABSUKTOR02"]},"Identity":{"Case":"Some","Fields":["OmBsaNgMJxV/9gQ/lZSWWmlb2ak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["74658hY/mzbmAqMjMadV2OuQYnucPp7aD/cJGup1ER4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:10"]},"IP":{"Case":"Some","Fields":["213.171.212.184"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FourthFantastic"]},"Identity":{"Case":"Some","Fields":["OlPh40/0yA13TGoMDB/4+52rcCU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2UOfZX2avXCFmanhkjQI34XlPJS8ht9k/sO+sTcxQSI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:54"]},"IP":{"Case":"Some","Fields":["185.142.239.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["40e62fcce23032"]},"Identity":{"Case":"Some","Fields":["OlHjKjA6Dgo6uKocy+mP+HkeI0E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YT9586VTqa242AA9/xwDg3MIgDhiN5XElSwCTO07dEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:51:55"]},"IP":{"Case":"Some","Fields":["93.43.195.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lttao4532"]},"Identity":{"Case":"Some","Fields":["Ok/fa4iVAhLnTUx71A4CHU6qAog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kdrOiKErhHY55IatB7hIzfAHqWEwAz27KL3Okk5+wtw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:28"]},"IP":{"Case":"Some","Fields":["172.104.148.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe39:a130]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Intrepid"]},"Identity":{"Case":"Some","Fields":["Ok5iA7FtKRp+Ki4mKwYtq3DlOOE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GlGeaFa+P0k3iERO4VzsLuOIQXKv5zQF3UfsVe2WFtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:11"]},"IP":{"Case":"Some","Fields":["87.236.195.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritico01"]},"Identity":{"Case":"Some","Fields":["Ok0T9SpMmhOtYNlGFdTAsvX2njw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QbqvzyfYrPLqhu53hi+i7FCNaQo9cL4GCXcXPFQAezA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:49:15"]},"IP":{"Case":"Some","Fields":["179.48.251.188"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HexchainBest"]},"Identity":{"Case":"Some","Fields":["OjTL2anngTvUZwWRpjE3fBr87Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hKEEWeRg7cr1oCoKU58wam5cO+AwR2b0Ua/LgwM1Wo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:06"]},"IP":{"Case":"Some","Fields":["107.189.12.79"]},"OnionRouterPort":{"Case":"Some","Fields":[20199]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["3rcsRelay01"]},"Identity":{"Case":"Some","Fields":["Oirg/Zc4Ipa5r59UxSRj7sm3hfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iOe8jMRCHBKs7zadfC9Bgb9Dn4ibMq7hHbPj+ASgJQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:08"]},"IP":{"Case":"Some","Fields":["45.148.136.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:5::d912:7ca]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["commonly1"]},"Identity":{"Case":"Some","Fields":["OiY/6ClaK2r5vSWwu6hURk8fupI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ouwKXO2NRzh3xq+Wu6BzMd6gKmWGsbNareKKHS/+p0s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:03"]},"IP":{"Case":"Some","Fields":["85.239.40.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=82"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex90"]},"Identity":{"Case":"Some","Fields":["OhvGXfA+zVD998/5xaTgSfy5wa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIrnzSlf55h92lX7Isue2bbCMoDKxrQc6gMuSaSzIEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:41:06"]},"IP":{"Case":"Some","Fields":["199.249.230.179"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::179]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TokenLow"]},"Identity":{"Case":"Some","Fields":["OhujsIE+H9EYM8n0MPNQdmKlj0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yiZd3RPhYGr53fjjQGgnfTRLrMLoan+9v/cayYUC3LQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:43"]},"IP":{"Case":"Some","Fields":["37.205.9.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc03"]},"Identity":{"Case":"Some","Fields":["OgXjW7HlnzGLaEp0cLdCeFrrB4M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h24aCsHTSA/+nbmNi+VVgNbyTdCLN+3mXedl2Kf6fFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.100.87.192"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OgSsiWnlXfUcjRHEmr8YoMyEf8A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sWeWSz9EMhi/qi7h1r4gYBKa7BVaKtYogOdmXnSHInA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:42:17"]},"IP":{"Case":"Some","Fields":["145.239.41.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=97000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shhovh"]},"Identity":{"Case":"Some","Fields":["OfCWlh7SV2l1yGbUUDc6mROv3JI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iUSjOiiU61mQkBkalJHZHLecvkNMqdfPgJa5N7oCh6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:10:58"]},"IP":{"Case":"Some","Fields":["198.50.191.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ManInABlueBox"]},"Identity":{"Case":"Some","Fields":["Od8uaANyC8B1D6aYcqPj9DIQi6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PgGgDRozYf4qt6baBHrDIvTiUIYJB0Zw7GEMBOwjzTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:33"]},"IP":{"Case":"Some","Fields":["5.147.107.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay5L"]},"Identity":{"Case":"Some","Fields":["Ocb4M9SwlSR3DTZV34JaESE8oKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OMbTFerblttPSGtGGVa+niVQPqzAH8kSUDxjOW+yUPE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:07:13"]},"IP":{"Case":"Some","Fields":["82.118.23.198"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:9404::2ba]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra13"]},"Identity":{"Case":"Some","Fields":["OcN6/JCNErt5s062KYkpvFHC5lE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7HoXAkxAmImFL3w7zMVHSWm84RkV7lpenl1cuBt8yno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:50"]},"IP":{"Case":"Some","Fields":["79.136.1.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["viajante"]},"Identity":{"Case":"Some","Fields":["ObUhxfFsmEQA7sxOL4O/Juc/HR0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7MMieqQF0aqPqTEzOb6LOBjKW16+f8nQlVqTm//4CLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:05"]},"IP":{"Case":"Some","Fields":["144.168.44.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["OatZB+zc/HVOlwwPoTLSkkDtD7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iVpxfKxZCTOi+m4Ai5dkinR9B6MK9mn1kdPZYjTAmh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.57"]},"OnionRouterPort":{"Case":"Some","Fields":[10057]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::57]:10057"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet2"]},"Identity":{"Case":"Some","Fields":["Oas1TxK0l/zUQ7hb6rW69LORz6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BGX/8nbMdMY+Ifx6ZuEnEdGLjWsKZ6mMVU6yCUag+wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:16:26"]},"IP":{"Case":"Some","Fields":["40.68.148.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shentora"]},"Identity":{"Case":"Some","Fields":["Oag2pdTh19K57lrWhkzueZqmMEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z7YQTII4N7+HgQ3ntPqn1+uUEiE772LNzCgDwx5hDDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:34"]},"IP":{"Case":"Some","Fields":["65.108.7.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["trixie"]},"Identity":{"Case":"Some","Fields":["OaVRzRiBURR9xNGVI9BqCbUofCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1L7r93NjOh+4/uQkFieb2oh3xgNF2I6zjswSX+mXmpM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:17"]},"IP":{"Case":"Some","Fields":["76.10.179.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GloryToUkraine"]},"Identity":{"Case":"Some","Fields":["OaU5uOVFn3B+9RwuZLGvepRMe9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7d4vEA4hX+ws/CBnJGqYhYpGWlM+lVBp5enGNi+kLtE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:11:47"]},"IP":{"Case":"Some","Fields":["176.36.151.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:d0:f04c:d1::5851]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis66"]},"Identity":{"Case":"Some","Fields":["OaGPMbMS5cshF4EJB2aTTBz9qzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yE6mhqYYMaAwHO8YefLUEzE8bVEwuunmyOoC9RaxvAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:18"]},"IP":{"Case":"Some","Fields":["37.221.65.169"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6010::3aed:102]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynR01"]},"Identity":{"Case":"Some","Fields":["OZBqip6TmA94vgkti1GVITF/zSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["62vGpQ6o825MKF7BxUd7OcTl01Zl7ATadQ8bwak4DLE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:39"]},"IP":{"Case":"Some","Fields":["185.216.179.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:4000:4f:9dd:941d:48ff:fe68:323d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nanahira"]},"Identity":{"Case":"Some","Fields":["OY0sP931olQpnuZuUi8n6KK0xuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/r3Zb9qZ3c17VKTz2QdyRaJxrVbcCf5+I6BdjfFjAIg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:11:44"]},"IP":{"Case":"Some","Fields":["203.153.72.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["OYt6xEfYxlmjXUGN/KQBP9pmU0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8CkFjqogSeTO6shYIskwx/yzW4QXMl6iKlLiykqC/uU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:32"]},"IP":{"Case":"Some","Fields":["92.38.152.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:56::140]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc05"]},"Identity":{"Case":"Some","Fields":["OXOmeMSAzuXpMmih+cJUPAOx48w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SFxV6bPqKCjA3Bz0yQDnmbqHuWfDyh40aeejBWcgsak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:48"]},"IP":{"Case":"Some","Fields":["185.100.85.24"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::3]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["OV8a1QfcJosUjcXilVgzky3DOmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o3aNSq3AdhzGuLudln0lNu8ctqsX1XmXWtfOcEKhWBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:33"]},"IP":{"Case":"Some","Fields":["108.175.4.33"]},"OnionRouterPort":{"Case":"Some","Fields":[1503]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1800:80fa::1]:1503"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myLeek"]},"Identity":{"Case":"Some","Fields":["OVGjOOxoe4se1T5ld0CJAtFwkco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+QSiHVaNxwACUFCgo6bm3R7A5UAExvVcHd2eHyXaKlc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:27"]},"IP":{"Case":"Some","Fields":["50.220.99.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DemonsysBackup"]},"Identity":{"Case":"Some","Fields":["OVGbTi3YZV9kw0kHOa7WbqI9b1U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZkdiRypl5sghg70lD7bcl91S1clsdtxxFZNoGZNulVA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:27"]},"IP":{"Case":"Some","Fields":["39.109.151.40"]},"OnionRouterPort":{"Case":"Some","Fields":[33801]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2406:3003:2006:2f59:6574:1bee:6a42:530]:33801"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MSChaps90"]},"Identity":{"Case":"Some","Fields":["OTGhuIKdT2VgQAf1G342iZMYees"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LMwoEuNZs0eDT2ZSuXYQvPn1zygJTzPboDkPLlSt9KA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:11"]},"IP":{"Case":"Some","Fields":["82.68.0.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OSvv3LAmpWjgd3huef3lianA5FE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZyKlvgV40bCKRU/X4L+SV4vNTdYWJ9tdB+yWbuVgGK0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:24"]},"IP":{"Case":"Some","Fields":["185.207.104.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["100UPSkid"]},"Identity":{"Case":"Some","Fields":["OSUF4RXUQVZ05zHWviFeKuXlbVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UdX7wAauwcJCqHTRiGsJHH/qil+aNZ7urXvBQbB3cRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:25"]},"IP":{"Case":"Some","Fields":["144.172.73.16"]},"OnionRouterPort":{"Case":"Some","Fields":[1984]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra73"]},"Identity":{"Case":"Some","Fields":["OR8niytVVIuXQQrfvQVdB515jgQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/CLgz6hVUI0rN07YIRSrjbZ+87fdbWd8hjBOOtYqEYY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:27"]},"IP":{"Case":"Some","Fields":["146.59.18.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["metamoderncow"]},"Identity":{"Case":"Some","Fields":["OR0onfr7Zzs2JkalGXNEfrcG38Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fffaENyAG2XiiO0PYpXmZmwP9xXDtwyuCNQehzjNt8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:21"]},"IP":{"Case":"Some","Fields":["159.69.159.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:a4f1::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalcat"]},"Identity":{"Case":"Some","Fields":["ORDFygzFr+IscJ30caK1trSu3Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J1Sxity4YX+X/iWuryhn8FZRaSzevBKfQwum385pGdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:47:27"]},"IP":{"Case":"Some","Fields":["46.182.106.190"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[110]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mixminion"]},"Identity":{"Case":"Some","Fields":["OPcy3TSaLlkHhDRlEWKi9CAZNKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3mP4Gl5MEdmun35ygWGYB8fRZEQn0AxpA+UM5qlbYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:25:53"]},"IP":{"Case":"Some","Fields":["144.76.81.198"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:192:3c5::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElverGalarga"]},"Identity":{"Case":"Some","Fields":["OOznE+JZvdYQgOiffh9NOZtwXDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c7hWnjRYkwEPjbTqxY1PePIYdOblZxQJOZiHAWUvGHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:54"]},"IP":{"Case":"Some","Fields":["187.131.34.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ONB9EOMRWpKAB2p6R8FpeCxB45w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tCA5gAw7GeVayJD1uFxGcABMtvi2ZnRWGPlmXTtnQGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:41"]},"IP":{"Case":"Some","Fields":["23.128.248.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::4cb:a9ff:fe1a:b229]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TykRelay02"]},"Identity":{"Case":"Some","Fields":["OMyVqM6SpZHUpXeTWb7/uhP6G4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o9BT4KwDvEYzXeduRslCTNi0JcDfAHbDuau1uQt8VzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:16:54"]},"IP":{"Case":"Some","Fields":["95.216.101.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2b:151f:95:216:101:247]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTISupport1"]},"Identity":{"Case":"Some","Fields":["OMoo2LmYDM2auDDTAGu2mM6Zsg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpBACh93eyr6SJ4GVbAkukhDnLtwn3mmLzjyI4Bkgjc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:40"]},"IP":{"Case":"Some","Fields":["82.221.128.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captains2"]},"Identity":{"Case":"Some","Fields":["OLcV91jk9kKZB+s1LbbxVBlgFSY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XET8EOIBXEHj6CMiEZG3nCZ34L8XzRpKclB/RzZWivc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:55"]},"IP":{"Case":"Some","Fields":["45.58.152.45"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToserBan"]},"Identity":{"Case":"Some","Fields":["OK27N7hq423OHA1rafZCWbrOJrU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eL/6u9Akq8HIS0asGhOzTZme2Uv5ew6F3UHbK5uH0iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["193.159.78.229"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["apx3"]},"Identity":{"Case":"Some","Fields":["OKQrjXwOY0b0pIIWF3QK7obqiFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ekFZbnuoalWe9TEKdbowKtSIXzfNFIJS4JR2QCjuiZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:03"]},"IP":{"Case":"Some","Fields":["185.107.70.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["folo"]},"Identity":{"Case":"Some","Fields":["OJ++lrpInZOvISTrmr4zn8THLxs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bm58WZRS38qZ1MxTJEZs8ok0YmvhNtoe8D8h05ibgWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:33:01"]},"IP":{"Case":"Some","Fields":["185.117.118.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OJ0VcJCNF81qKhqCdpTyADrQlLA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IOMU1sTHaR+KUbQ2ZhETUugnTKaM1w5ImVY7R6kg8bc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:33"]},"IP":{"Case":"Some","Fields":["5.45.102.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["krf44relay"]},"Identity":{"Case":"Some","Fields":["OJlVw6/fd9AKQSaAf9HxxOTu794"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3RWFW8YC0xBM36iy+zSH1NvodKqu/j/aeR2H7bM+GF4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:57:42"]},"IP":{"Case":"Some","Fields":["23.119.167.219"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Knowhere"]},"Identity":{"Case":"Some","Fields":["OI0GQT6VxshhvI5IKDCtkuV89Oc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UCEqNXPqNNEHztD3uYhDv3O7OIFIBrKLZ62xkTiDSM8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:51"]},"IP":{"Case":"Some","Fields":["213.32.16.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OIobNM4AIx1IrbrjUf0jr1/Obb8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["olkofxBP0UHgMd1oP27PnnraCrnw8eQglCfn9j4cLwY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:58"]},"IP":{"Case":"Some","Fields":["164.132.75.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["OH31PJQLihLFLSMQxNESm+S1SLc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M2M8q6OXrGyuJ7FeITb/5meXP/ev8/595jDK8kkZeQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:36"]},"IP":{"Case":"Some","Fields":["23.128.248.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::43]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra48"]},"Identity":{"Case":"Some","Fields":["OHz8C5Dqz/5KgM2KoFfzZOnR1XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I/UnuJ/YlzuaHDMPTI4Y70d0dEhf9nfwr/VvpJ3BE/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:43"]},"IP":{"Case":"Some","Fields":["141.136.0.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["OGP9U4ZY9mcWMeeM67JpP7Qt+n0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1zYkRoXpKFxHaS5t/vHkdwbp0paMCO8G6eYT+QjGqBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:14"]},"IP":{"Case":"Some","Fields":["5.45.104.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Swiss20210824"]},"Identity":{"Case":"Some","Fields":["OGGzQsBOq9SjHfovnsvTudneHbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ir/xFLm/tKGmS7kVPgGOFlwQZQhY1Ushjxjt88Mv15A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:24"]},"IP":{"Case":"Some","Fields":["178.39.63.206"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[9080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rustlove"]},"Identity":{"Case":"Some","Fields":["OEcTlPBrK4ZAR2gZPJKTE5Yv3C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wx5wkIZZ5lQR+kf+2PaG942V6GzAQONEbBuOW06mE/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:09"]},"IP":{"Case":"Some","Fields":["51.38.81.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["solatis0"]},"Identity":{"Case":"Some","Fields":["OEN1m1zgLf9+CKSjQQSGUZGEPKE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HosFTQ00+oprd24oHEVCEDAjJhs62DwOpKK8/cA/8yQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:42"]},"IP":{"Case":"Some","Fields":["83.82.235.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1c02:1109:1600:c8fe:c0ff:feff:ee16]:9031"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torNodeCom"]},"Identity":{"Case":"Some","Fields":["OD1uNNm+qS6XCSsTSnCO70dt8uQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJgKquwABsY8k6L8j1bn9juftgjZuMlNz/83MQW8nr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:09"]},"IP":{"Case":"Some","Fields":["204.17.56.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["OBlDgWxLZl4GrNgiv4YkIPeGmJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4GlLy8PO15iNCia/BAxMPnp1Oh9MxTpFADdzv6G+fUo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:59"]},"IP":{"Case":"Some","Fields":["194.5.249.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnowMaster"]},"Identity":{"Case":"Some","Fields":["OBaysvbiOur473BwR29qtrlqr4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wABM7BEiULND0nNwvC6E7pNkyHyF4eA0K7ol07NAFO8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:48"]},"IP":{"Case":"Some","Fields":["190.120.229.98"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["51Pegasic"]},"Identity":{"Case":"Some","Fields":["N/T8wyWkDK7Z9V5ks7tjptlegpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPJ1Zd+PV9ZGlqczekwrb28fTAvW9hf6bFrQcHYLM1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:51"]},"IP":{"Case":"Some","Fields":["188.74.69.163"]},"OnionRouterPort":{"Case":"Some","Fields":[5724]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["N+Wpx6fMTErcKl+aAP8DHRWvpMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["futYpGoFrsPapMXFOacHUCGotMgUh/tZ18MFVuxS1XA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:34:43"]},"IP":{"Case":"Some","Fields":["160.16.122.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MunkRelay"]},"Identity":{"Case":"Some","Fields":["N+EGJdRIUBgZZDEOJzddaktfgkI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ubR4pTF1LqqMzdkjzVeH6MRv97hCqtcVwjxRjSGVUDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:53:40"]},"IP":{"Case":"Some","Fields":["92.32.139.215"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pKD9jZ19N1LiTvsjOF3"]},"Identity":{"Case":"Some","Fields":["N93xkG7j25YTCnF+pUZnxk2seN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XtzMEkWTpiSEq9bQuFbasjxUUWhz6ZgRDI13N/fAayo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:14:29"]},"IP":{"Case":"Some","Fields":["202.61.224.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:c1b::1]:9032"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blueblazer"]},"Identity":{"Case":"Some","Fields":["N92bZwlK52/V4hVL5yZMxFPrY/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zC3KDhMuVoLY+161AsDZqHgl5dW9+OCfNgCvawn4Udk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:08"]},"IP":{"Case":"Some","Fields":["50.31.252.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2606:2e00:8002:0:216:3eff:fedb:9944]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skankhunt42de4"]},"Identity":{"Case":"Some","Fields":["N9NU7msi1vsO6ZIYdMBXgFnWkBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orhqsV11XE7yn0KUcFyqzb4W06I+5pAW9tCx97Ym6iU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:21:29"]},"IP":{"Case":"Some","Fields":["45.142.176.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["elefant"]},"Identity":{"Case":"Some","Fields":["N8JcHpyp9IctU20ITt2lf2a0NDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cNC1ZYuZmucEV3qs29n+gOp0FOvTOgzPbiOExF90tNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:45"]},"IP":{"Case":"Some","Fields":["109.70.100.67"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::67]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hsjeufh24h7"]},"Identity":{"Case":"Some","Fields":["N8HWZVnQx4hOPSH33rWMddebmKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yDc2gpetTBEQvtetMjnwyu/rW+iPwv8mu7h90T74duU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:49"]},"IP":{"Case":"Some","Fields":["51.15.52.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["N7jsuVP8PD4Jciv7ju/QM03fRig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5GvOnYXKoqkK+Z4j1xx35pUVPYsi4VgrBoYqzbWKrS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:07:08"]},"IP":{"Case":"Some","Fields":["178.254.40.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:49::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra51"]},"Identity":{"Case":"Some","Fields":["N6idMqX9eD/8pQuCQo84YxQwp6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BPBo9zOr5HZ+43tL2IrkvnC/wF8l8hAEE1bpVC37QEs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:12"]},"IP":{"Case":"Some","Fields":["139.99.239.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SharingIsCaring"]},"Identity":{"Case":"Some","Fields":["N6DS5IC8zCdSOH5p6JtAturhS4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cOl3ysTH8u+YtR5jI85eU2lxqp67yUi6GvXQDJJ+318"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:47"]},"IP":{"Case":"Some","Fields":["185.16.60.130"]},"OnionRouterPort":{"Case":"Some","Fields":[8430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra55"]},"Identity":{"Case":"Some","Fields":["N4rT0ImgHsgC8WWpNhIrYLWxA14"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1lejFKTRI1SGqiNn8SGAM9GbwhWAZXeXAwVgwsgi4U4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:12:51"]},"IP":{"Case":"Some","Fields":["213.164.204.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhult4"]},"Identity":{"Case":"Some","Fields":["N3iPDAByikTtggJ4DYUyI+3KPT8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["88sXCEAurYKAXKAmNNGNasIF2mcsyfZ+HtTLSCLdc2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:52:17"]},"IP":{"Case":"Some","Fields":["5.255.98.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:103:ba24::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pentium4UserRaspi"]},"Identity":{"Case":"Some","Fields":["N3PJ8Yj9kl5uxOkrAOx0mADod2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/xgZ35Zp8yJslMWlkOzJ2gEDxmz+wXAqTRnYuIHHpfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:11"]},"IP":{"Case":"Some","Fields":["94.199.211.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0b:3da::3]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woh4aegei7Di"]},"Identity":{"Case":"Some","Fields":["N3E89+F+AwJnYNHVUDxpgZ816+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Af9kioGZgZsoUt4IKfz1rBz1We+GyzbIlVEHwLUpiqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:44"]},"IP":{"Case":"Some","Fields":["107.189.29.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["N23HytWX06TLtlGZnPrQ533Jrow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G7WbPROtcbCF4q6SQifEnb3iGKs8LTRip6Omly3twik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:54"]},"IP":{"Case":"Some","Fields":["104.244.73.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f78b::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ebola"]},"Identity":{"Case":"Some","Fields":["N13LstvZTlJjvAwBXwyedWZpYX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ICIRNsveukeAE291JU0XtJ7FTWJ/5ZFRoZcP4aDD4aM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:35"]},"IP":{"Case":"Some","Fields":["64.79.152.132"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["N1wm7YvKjCY4Zkt6xE62hMs+GtI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4cDHrALVRd7a2o0BnTx+LvrLRi1l8cR6JChIlf/FW3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:45"]},"IP":{"Case":"Some","Fields":["45.87.42.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rasptorpipi2"]},"Identity":{"Case":"Some","Fields":["N1NUCRAt/+kvPayAnkcOYrwn8d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0cOKiYRbxd7D5jmfCE1EYMKXIhZc0+p0OutfKLzOke0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:06"]},"IP":{"Case":"Some","Fields":["84.240.60.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Katze"]},"Identity":{"Case":"Some","Fields":["N0nuy1Qy/JHOwuYs0q4JeAGs9Y4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t8UxBJLOhiUPlC7h2vi5mmjHCPUrM5p2KkqZuVOuntE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:39"]},"IP":{"Case":"Some","Fields":["104.244.74.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f71c:7d7a:8bf1:dead:beef]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["techToMeAboutIt"]},"Identity":{"Case":"Some","Fields":["NzvE0lVEOE1hN2rd9BUW79lOFDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ibdNyqPuNjhGClajq9vMLwsWKTAA0Tzy6eM5fpQsHoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:43"]},"IP":{"Case":"Some","Fields":["129.159.199.111"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1191"]},"Identity":{"Case":"Some","Fields":["NzRmDcb36hEWv8uA/CP6xWgL2AE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Auz2Zh8M3om8JWwfxBFEBtzXifevLg7aSF+WfbUkPT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:51:11"]},"IP":{"Case":"Some","Fields":["185.220.101.191"]},"OnionRouterPort":{"Case":"Some","Fields":[11191]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::191]:21191"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fsm42"]},"Identity":{"Case":"Some","Fields":["NyhlIYbE4YPyTO0G99NVRzI29DI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LuJvO08QV35JK2mToBTxn8XAbpD+aXolpya88uFjiDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["95.216.213.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:743e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["maupin"]},"Identity":{"Case":"Some","Fields":["NvpwhbjPcpPe+oKowCgeDuQ/O14"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C9+kd8RZR0OxsfH4iFdRYXkJ0oYWw+P6emBpg4vZdko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:56:34"]},"IP":{"Case":"Some","Fields":["176.123.7.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BadgerMoo"]},"Identity":{"Case":"Some","Fields":["Nt/hxhbzokogO1nJerAsoYY9ASY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fbRCXEnUkORCbAUS0C7vSZKCZGXO3OBsw4b2Grz2WPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:15"]},"IP":{"Case":"Some","Fields":["51.198.204.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay1"]},"Identity":{"Case":"Some","Fields":["Nt0tHwU5OsMDn854NANM8Y2L+A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8uur1U855SoharigDJ5EhUqj2PNsWEQHTyI/jA1y0ZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:19"]},"IP":{"Case":"Some","Fields":["216.83.209.55"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0169"]},"Identity":{"Case":"Some","Fields":["NtigCIW8v+sXMSYHwId7/9kzDPA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5dRwdD/eP8riCgNDrFWEr4l+Yb/OlHsJa/Q5KE7w1k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:42"]},"IP":{"Case":"Some","Fields":["185.220.101.169"]},"OnionRouterPort":{"Case":"Some","Fields":[10169]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::169]:10169"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["only2"]},"Identity":{"Case":"Some","Fields":["Ntger2WKtK3MIft/TyqZskx0i7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t/RrYjDNxsZdg1DYTi1HQkWDbdx9jveWDwvGZ9UH1AE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:53"]},"IP":{"Case":"Some","Fields":["45.150.108.105"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex40"]},"Identity":{"Case":"Some","Fields":["NtaEeDZsuGJ4ZnV+vOf7PBf8HLg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmYrJRGBuwvAXQwXGHaCcFQxGlABwsN3iodwM6T7kec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:31:10"]},"IP":{"Case":"Some","Fields":["199.249.230.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e659]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Schmaller"]},"Identity":{"Case":"Some","Fields":["Ns+wfgcblKf/DnEuU1RSBsV1FpM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aLM7rMRMYpaanLVqF6XIPmZiti47lC5PAbjMhC+WLKo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:50"]},"IP":{"Case":"Some","Fields":["77.182.140.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["beluga"]},"Identity":{"Case":"Some","Fields":["NszUgbPZ1yCXMjqK5p6bY9EkoOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58Jp3MvmNPFZwUVCWTrT4CTs4KGsRDGlpZAwHDtmIuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:17:58"]},"IP":{"Case":"Some","Fields":["45.35.194.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToRussiaWithTruth"]},"Identity":{"Case":"Some","Fields":["NrL2HZD1nGmqBSKLbdNkVXW2/7w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y09FAjjnsqEuV85UPn/RFTXIIFORcYjaOwEntV5W0Gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:11"]},"IP":{"Case":"Some","Fields":["51.159.181.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1200:481e::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["NrIVt4JpzEhjC/2inDLRIv0mT1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w9sEC4FYDsKYh6dDTPaEO69enoxiHPR9JpxHyDnk160"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:50"]},"IP":{"Case":"Some","Fields":["23.128.248.209"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::209]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NqetFJjcysRxmgjIKib4VPPiJbE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hy7wt6nnXhWkKV4cwTnurcUYQ1JQu/HiJXx6om3lPZI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:27"]},"IP":{"Case":"Some","Fields":["45.88.200.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:45:88:200:0:95]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NqDlEXikJ4frVVgMnV8a+MPDuUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cazl1Y6oZyLJCNo0UCfxOzK7rc4u+rZoE118aayPpZs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:17"]},"IP":{"Case":"Some","Fields":["91.223.3.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Augustiner1328"]},"Identity":{"Case":"Some","Fields":["Np4QpIsK8EZJiqSg8f+NA5VJu3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uz5xBGxUGA4gvYEnhl7VrwYsNcbjMyH76qDD2mP/juc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:23:12"]},"IP":{"Case":"Some","Fields":["213.164.204.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["begonia"]},"Identity":{"Case":"Some","Fields":["NpzA5yblO4Vm8l7renLk+Iohe5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g02mCZA0guMeAvJMsPid0EZjuEbDvpK0vfYn+1CRIic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:13"]},"IP":{"Case":"Some","Fields":["212.227.76.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:8678::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallylittleserver"]},"Identity":{"Case":"Some","Fields":["NproiiaGfFpV8RzD/ZAGvdzIy4Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rk7X8xUmV4XmjGsT/eiPzj2YV60N/x5famXF1dXWi9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:06:51"]},"IP":{"Case":"Some","Fields":["174.92.39.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["NogAHXVGkQH3Sl1VGkmw70EPDiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5G1Db62uvTDFgUcShULES2kiun0+JJ6y7qZMdEJLkdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:35:14"]},"IP":{"Case":"Some","Fields":["162.250.190.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:1b8::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex33"]},"Identity":{"Case":"Some","Fields":["Nof+x+c/Yaxm964lHn3ua72MAlI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ypqqRMzkrwdVlF8bIgN1jwwy+8Et+n7B21urBx+W7y0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:27"]},"IP":{"Case":"Some","Fields":["199.249.230.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::113]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KZL303"]},"Identity":{"Case":"Some","Fields":["NoS4Zzowtz/tKANZxfup+VRpDUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KYcYhaWZspuENNSaJJKpR0E24lDiUSOi7lLvlGb9e1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:12:50"]},"IP":{"Case":"Some","Fields":["99.122.201.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["honestmistake"]},"Identity":{"Case":"Some","Fields":["NnknNaG5fCqMJNyM0wnPpigxhx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A6Flvpz0rqvHn7px/VDkzq7SrIUAPacYC/4hDD6qjlk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:17"]},"IP":{"Case":"Some","Fields":["78.68.162.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ToRReRRoRR04"]},"Identity":{"Case":"Some","Fields":["Nm39586M4pWtU+Zv02UaVb2RNXo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HB3QZoSb0Wc6jbANbjZIHiA2UcHkJr7+LfjkI2Fa2pU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:01"]},"IP":{"Case":"Some","Fields":["141.148.42.164"]},"OnionRouterPort":{"Case":"Some","Fields":[12843]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1182"]},"Identity":{"Case":"Some","Fields":["NmvCtZDK2cUNwF4rvD89fI/SfvE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EvVuJpBjoObvGp2ibsdB2QCd3kexGrbRiepZ4RGbGzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:15"]},"IP":{"Case":"Some","Fields":["185.220.101.182"]},"OnionRouterPort":{"Case":"Some","Fields":[11182]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::182]:11182"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bojoforpm"]},"Identity":{"Case":"Some","Fields":["NmqH1EH3xKbAjUskBNH38kr/X0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLybhAIcTZdvXOH8w4sjpdthUy6MAHA5VWKGoMA3bh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:40"]},"IP":{"Case":"Some","Fields":["212.85.84.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LechWalesa"]},"Identity":{"Case":"Some","Fields":["Nk4YhIRpOFxZSDdvr3eKxh1M+2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+hpcm12GKi1OZ/EHTzACdagVzxWcmuEZj7HD9umHfmc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:26:11"]},"IP":{"Case":"Some","Fields":["89.163.143.8"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:c95::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Torridness"]},"Identity":{"Case":"Some","Fields":["NktsSUg6eu1Pi6Z1bF5rKIGv3zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwGMjvTCs5QCfnSma5gyWtnv5tUfguxiKpUTHWb92X4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:22"]},"IP":{"Case":"Some","Fields":["212.227.190.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1801:86cb::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yatr"]},"Identity":{"Case":"Some","Fields":["NkFAeMUhuhkWgmD23yPJeZWXYok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vix+3ADGDNk2V5/dHUF3nC+XRm3qIcPvgxBRZPAbETg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:56"]},"IP":{"Case":"Some","Fields":["142.44.247.102"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taine"]},"Identity":{"Case":"Some","Fields":["Nhm+XTjwfsCXkr/x4nlFXGyVyH0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bbsfUq0sIQFX2qv3w1bSgqShdsUAAOcxMkgUMejq+yA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:52:31"]},"IP":{"Case":"Some","Fields":["130.193.15.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit3"]},"Identity":{"Case":"Some","Fields":["NhlvGt8z3W7qbF+tpp/EPBjQXFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YdiOXCX2RFwJl0ZkQj6WEVJfOi1vu1ZTeVMHCwSZgUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:38"]},"IP":{"Case":"Some","Fields":["185.129.61.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryMay1"]},"Identity":{"Case":"Some","Fields":["NgpKoSDYst8eA/5hF/OnJdtJAvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH5VM4cuCAwOGmpxNhC6RfzjBqcvi06CZKa5fSA0G2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:03:19"]},"IP":{"Case":"Some","Fields":["46.4.32.184"]},"OnionRouterPort":{"Case":"Some","Fields":[21]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:3641::3]:21"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fauringer01"]},"Identity":{"Case":"Some","Fields":["NfWgsvAX/Qn36/M6VlpT2OssknI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ub72JGxFuh5AKF709IqkEJP/Uz3z2sOJjJyl42+gtDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:49"]},"IP":{"Case":"Some","Fields":["194.13.83.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:43:26f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hakkapeliitta"]},"Identity":{"Case":"Some","Fields":["NemPsLWR3zs1f/7dPa2xDa0CfX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LqnsxgOU+eOrT16tiO3chAP5BxwFivLERCcdJ0brhzA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:05"]},"IP":{"Case":"Some","Fields":["37.228.129.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seabreeze"]},"Identity":{"Case":"Some","Fields":["Nek6WHw7ZbBoZWnuNz6LwFB/fg0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hERtI4L/mZ2y/6lwNwRrk8asQFVSYHZUqYJ7Zx8jF64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:48"]},"IP":{"Case":"Some","Fields":["185.15.92.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:b08:0:2::19]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["berni"]},"Identity":{"Case":"Some","Fields":["Nd8nuimYKl9BjHUr64GCEmGIck0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cVeAGBqr4Be5IyXcFHWfbGuFm+t7ng/Wpnw0/ylLAiQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:54"]},"IP":{"Case":"Some","Fields":["83.170.6.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b10:1000:8101:0:242:ac11:3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cryptocat"]},"Identity":{"Case":"Some","Fields":["NdoEqSY0ryOSy6avFY4AtViaHPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ezxZyegcZD7/chQNWHqum07G96vWWHSrQpnwEMmgX/M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:46:39"]},"IP":{"Case":"Some","Fields":["91.64.0.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Goldenb0y"]},"Identity":{"Case":"Some","Fields":["Ndf0RhCZ4ukOrKQ1EcDK0AWRiFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bu8oArTfA5wwWjLC2TxI2KD3IE+6AYedlTArvatmxN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:19"]},"IP":{"Case":"Some","Fields":["91.172.215.29"]},"OnionRouterPort":{"Case":"Some","Fields":[16385]},"DirectoryPort":{"Case":"Some","Fields":[17779]},"Address":{"Case":"Some","Fields":["[2a01:e0a:335:c750:387c:20a2:a70f:33f6]:16385"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["chilli"]},"Identity":{"Case":"Some","Fields":["NdVik7bX3uKkPpHYfrozEgtknZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ExIrLbwo0VbcN0hWKszQBCTsiaMr3klksbqTIPoor8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:04"]},"IP":{"Case":"Some","Fields":["109.70.100.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::14]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip3b"]},"Identity":{"Case":"Some","Fields":["NbUD+1RoFcye3pECJVW10O0E44k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PMnYcQS2v7+3cKwRWbI6L3JIv68IWcmPnmh859ItVEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:11"]},"IP":{"Case":"Some","Fields":["185.220.102.250"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::250]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anus11"]},"Identity":{"Case":"Some","Fields":["NaqTxW6ldpIZrDgJ+ewlhuE5+XM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LoRo3GKGJqS1/p4cyNmBaieuItQuQ+YEzNZUJE8CVWg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:25"]},"IP":{"Case":"Some","Fields":["89.161.26.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[9001]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["NZxSMawkUtNltkojwngXod/uVrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k6sYy4cYoIHSNMiuPAFpK3v6oK6FxewqpKQTzgpbHV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:35"]},"IP":{"Case":"Some","Fields":["45.154.98.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LibraryGhost"]},"Identity":{"Case":"Some","Fields":["NZeCx0peX593P6KQfSAjU2i0nnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WCggz/9yW6dAd9krlm+oiN5hDqeNRPgV1GrY2NARXfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:45"]},"IP":{"Case":"Some","Fields":["198.98.57.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NZN2geIRaWaq1r35qjXFXYxRIiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MiRLDkUZSn+k0ffQomfqVlVKeHG4GCgCXR4clPTu/nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:55"]},"IP":{"Case":"Some","Fields":["23.128.248.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::585f:f7ff:fe14:4acb]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["taz"]},"Identity":{"Case":"Some","Fields":["NZGeGXxsfzcqJsdH1mrKajlkKz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nMmAAXQNt28MHbsGA/MJrAUF36J3dh8nw/X3GrVxfv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:48"]},"IP":{"Case":"Some","Fields":["193.104.220.35"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:13c::35]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["NZBowDF2WJJCCmcvKNUGxBNBqnM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h2wyDuKMxzYLAfG6lFNR+T9sjhTM3mSomxNRAkeT+KI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:07"]},"IP":{"Case":"Some","Fields":["185.194.142.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yellowjackets"]},"Identity":{"Case":"Some","Fields":["NWmGFZaJb6zYhg/2OK6JWRBahsg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bw4sx26KzcKGJrWM7ab/uSCrKanTXsUAJnw4oAWSBsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:04"]},"IP":{"Case":"Some","Fields":["104.217.249.58"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NVaWKelAc4/dsLGzfIZE3svk2Wk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GnFaEeJ4l6zYMmxX4OccmAxxkMXZQylsTNDa8zwMjuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:57:50"]},"IP":{"Case":"Some","Fields":["109.86.70.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[14823]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["flatcap"]},"Identity":{"Case":"Some","Fields":["NVNAJz542sZksjKOxG1hmY15cUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jFzvsbfatv3OMoQhrvvE2uPzw+HCvOTFoLBGku83Bno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:23:58"]},"IP":{"Case":"Some","Fields":["178.79.161.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe93:4455]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Speicherprojekt"]},"Identity":{"Case":"Some","Fields":["NUf699ZSa76BzAf6ytYSqZvdmHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aDt2UYJAeXmUUEsr8bR++ihdyk1WbTRDcsP/zfRFo8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:56:37"]},"IP":{"Case":"Some","Fields":["5.147.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GuruKopi"]},"Identity":{"Case":"Some","Fields":["NUSes9AlzCRgH7Q4hPlpk2fWd88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpPynoJlzegrYcnw+d0TRFk53og7p15A+Gdq+WBqjxo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:55:26"]},"IP":{"Case":"Some","Fields":["118.163.74.160"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4"]},"PortPolicy":null,"Flags":["BadExit","Exit","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imherefortheparty"]},"Identity":{"Case":"Some","Fields":["NUCk3Tnc8xiEKylc3dSRGJJPKlc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aUNeZjHZeQ5iXPmJSnna6bUGMdImyX0q69k9h2DpBuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:08"]},"IP":{"Case":"Some","Fields":["212.7.160.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeLoveNotWar"]},"Identity":{"Case":"Some","Fields":["NT8IDzoQJ5OtO+PNt9AFKfFvI/8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zDvyLGflxdd7PhyXsduMA+NXDoOSFyp84BaV4tOHjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:39"]},"IP":{"Case":"Some","Fields":["5.255.97.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fogbank"]},"Identity":{"Case":"Some","Fields":["NTn5b8zcZFx4AQBvkoZMuv1KjrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zzTUQmcUxWgWnoj9YNWUL4KDshrnnfvrFxfl/xpyFic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:16"]},"IP":{"Case":"Some","Fields":["213.144.142.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1620:ad1::36]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KarnRelay"]},"Identity":{"Case":"Some","Fields":["NTd0UILjtNvz74uAuu+i5nXTbaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QMdnhEfXcBsmd187TyDCZtUbw4YzBwGRf/irQuPgkHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:57"]},"IP":{"Case":"Some","Fields":["101.182.5.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privy14you"]},"Identity":{"Case":"Some","Fields":["NTNatYOSECY314ZkEzPH1d+smGk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XmBTIpyURh4RyQoPP9UEl/0o74pMZ1dsfXC0RCyrrdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:42"]},"IP":{"Case":"Some","Fields":["185.225.210.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasedRelay"]},"Identity":{"Case":"Some","Fields":["NRLAyvd/hLxXANaOnU0OceJctK8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QLiddaFASujQRkyF3uLZK2gCIVsAhL+aDJpy3kioCj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:18"]},"IP":{"Case":"Some","Fields":["199.170.132.74"]},"OnionRouterPort":{"Case":"Some","Fields":[6969]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:85c1:31:6969::]:6969"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorchierRedux2"]},"Identity":{"Case":"Some","Fields":["NRFvGiwLAEcjYZL7nbcNBV1x+Ow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Un7vAX5GdL/DuHZLJZQBHhDP0Lc5aadj19OWIqKKEXQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:43"]},"IP":{"Case":"Some","Fields":["107.189.12.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fuchur"]},"Identity":{"Case":"Some","Fields":["NPrnP0ExTm36IYHifxzNQOKTv8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6Fl0NmfC9VF6Hw2+wiILfjIfsrJArwJDOYU5zItw4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:20:56"]},"IP":{"Case":"Some","Fields":["37.120.176.124"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:85e0:d875:d4ff:fe5d:c267]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theeldertroll"]},"Identity":{"Case":"Some","Fields":["NPSqlz18lJ8vTGUhNCmi0Pe3IWA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WPu+0I1sl/5iyWqS6641xuqS13lAhD2i/oe89DLNkgg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:45"]},"IP":{"Case":"Some","Fields":["164.92.218.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fulcrum01"]},"Identity":{"Case":"Some","Fields":["NOZRC9aeiaacgufAZaagYv/6RqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lWgYQe9aMFHOFxe2cn0rgcsSlXacIDHgnzbsfQXrUng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:10:03"]},"IP":{"Case":"Some","Fields":["78.150.231.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ishouldeditheconfi"]},"Identity":{"Case":"Some","Fields":["NN5/kCilPVI413mwDa90OP3h16A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B4bSmuLulD8F/yMf0LG5TziVlIMrQ42XUFJdLjiaJ3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:17"]},"IP":{"Case":"Some","Fields":["195.201.33.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:9640::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["NLgNcD9NY1AUa2hOZtliojqDARc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7ZnLnpWWOjwZCmqcOZSldehmmy+kSZI9e9tasmHxzEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:30"]},"IP":{"Case":"Some","Fields":["185.183.157.127"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigitalBordel"]},"Identity":{"Case":"Some","Fields":["NJX0iNGLHV+IqjHm5IR/0ZQ8bxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L9V33zBMGJuB8qcmkNi0CFS0NOQxjCwvo5ZY55EhbuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:17:06"]},"IP":{"Case":"Some","Fields":["5.39.90.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hecker"]},"Identity":{"Case":"Some","Fields":["NIQ59KPZWebRSBBw2oGhNTQ0Gcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5hf6J2mDxZXKA84yub4aQQjUuSRQ5ZrqS/zaARA8MdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:30"]},"IP":{"Case":"Some","Fields":["89.163.143.8"]},"OnionRouterPort":{"Case":"Some","Fields":[445]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:cafe:c95::1]:445"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["NHJT0dUkbLHEz4CIxpgv53z3q5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i6hn/d2yvQtdQy9gO7wnhPE6vEPhPTF1RbSVbLgwNVQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:07"]},"IP":{"Case":"Some","Fields":["86.59.119.88"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:86:59:119:88]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aopelrelay"]},"Identity":{"Case":"Some","Fields":["NGA1JI/6TMbJHFbAhxafcY6OBsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kYSAferfRWUoV0ikEWVBILOEBXgBFa0bX2PYW0Y9bEk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:31"]},"IP":{"Case":"Some","Fields":["134.41.181.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9098]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mewse"]},"Identity":{"Case":"Some","Fields":["NF4Dzvt78EYT/KFFMvONG7ntvUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7cknRtlpEXjl3879/NQBfRIV0t6y1SMQfk6MogFU9hM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:34:56"]},"IP":{"Case":"Some","Fields":["45.128.133.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnnamedPlayer"]},"Identity":{"Case":"Some","Fields":["NFVhbzyte9XxCTxiqXWe5UiTOcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y1I7cT+Po1+diHE+d/Ac/FS8lnFikZTiD7XP2EKsNe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:03"]},"IP":{"Case":"Some","Fields":["81.95.11.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4a0:72:1a::2579]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SilentOwl"]},"Identity":{"Case":"Some","Fields":["NFIv0LwR5Up1o96lYvYqrWcXF18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xt7OQDtDKvTqUeVjfZuTFKvLtuxl9LEnNXWwRJ+SM0k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:06"]},"IP":{"Case":"Some","Fields":["195.201.36.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c2c:5fec::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DandelionSproutW11"]},"Identity":{"Case":"Some","Fields":["NE/nIKT3cwqhXUkNO3/5hg98384"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVfIobsGq6EWfeq6O1xTqQ75We4NON3ie9YPa6w24ok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:48"]},"IP":{"Case":"Some","Fields":["84.202.47.23"]},"OnionRouterPort":{"Case":"Some","Fields":[36499]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4652:5f5:0:bd84:5904:79ef:3fd7]:46489"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EMTR135"]},"Identity":{"Case":"Some","Fields":["NE+WavkCmGIn2mwvUj1Tu9YEiSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it1AUYxvQpovcVf9rVZwxxW96+qQxLF78JyF5TXF5MM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:27"]},"IP":{"Case":"Some","Fields":["130.162.208.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["NEqLxP0CgAgCk7Jlku9j+KWSef4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wqtfoYaWHEAZDVNALYynCNb/CBYbS5Uas5t8esm28Ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["94.130.15.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9119]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:1386::2]:9119"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxeneu"]},"Identity":{"Case":"Some","Fields":["NEer6LtJMDvzb+AAezyK2IvcTTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/y0Qh5vVPm05BI3LM6Ju4ngb+P7RfiT90z+oWem4yhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:54"]},"IP":{"Case":"Some","Fields":["107.189.10.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MiRelay"]},"Identity":{"Case":"Some","Fields":["NELxgTnktuOryyWY3yV5CesQaZ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["79HVWTACE+4x6bwPAiAP+0pFcGqdiqvaFlsMNM/Z1QI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:41"]},"IP":{"Case":"Some","Fields":["24.247.81.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=540"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BringMeToLife"]},"Identity":{"Case":"Some","Fields":["ND7AN9YzFQr/zIRx6AWquuGx2HE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/kvUjVuz7QEQm9/a25Hz/iIHIw6fZwmC8lOfZyF1gQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:33"]},"IP":{"Case":"Some","Fields":["66.168.117.249"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay15at5443"]},"Identity":{"Case":"Some","Fields":["NDT2qNKdFH2QH8zUa8oDp29Rga0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZBLFlEbfUGbRPO0kUiWWCR6HErz3TAZ8KbGgIvpjsB4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:16"]},"IP":{"Case":"Some","Fields":["140.78.100.15"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nerdbyhetzner"]},"Identity":{"Case":"Some","Fields":["NDGUDftGQ6PuP0Rlv/JlXKm965Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlDPzHsoYTO2tFtnZmiQ7939zOBlwsUJZBxcNps1yvo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:40"]},"IP":{"Case":"Some","Fields":["95.216.154.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:121f::8443]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aergia"]},"Identity":{"Case":"Some","Fields":["NCoax2TYkkjmZFjAd8/2aNBf/zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["saUgxAtAWjJrgfw7crvGQ1Bq3pP0YDs8wsBl7zFi2qI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:14"]},"IP":{"Case":"Some","Fields":["37.187.98.185"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[49030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:22b9::1]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["NB+s5SqbV13YkgQIUkxenLY858Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s8CcwD9A4IdnYi25JKMLzX25CS1BWOJKDIMxCoIeApU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:58:07"]},"IP":{"Case":"Some","Fields":["23.128.248.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::28]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hector"]},"Identity":{"Case":"Some","Fields":["NBxkuVFieiBSxMlHUw/q7k+/qG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VegVcBaXTJGdZwCpfkUBcoxfTlBAc4vO31gfTJORtBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:06"]},"IP":{"Case":"Some","Fields":["65.108.195.151"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalsAG"]},"Identity":{"Case":"Some","Fields":["NBfx8kp8pAM9tRRhAyGhqfQQzDE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r+0wIwwElSROTiRXTOI/YDIEGNFKUea5fop2UeIcTYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:06:48"]},"IP":{"Case":"Some","Fields":["93.95.231.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harambe"]},"Identity":{"Case":"Some","Fields":["NBM8wxks91OAibFFEUAN8huloHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CyRPoB7PN2smAGS6S/vMZ3HqCpUuQMgGwXrD9DbG7dM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:02"]},"IP":{"Case":"Some","Fields":["71.179.6.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["NAxZVAJJ0U3+VHeTwIcIsJhsr2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wBBff/i7Lj/FBhkPvtQcfAVprvltumnKBHFLpAeyd1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:40"]},"IP":{"Case":"Some","Fields":["144.172.73.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange005nl2"]},"Identity":{"Case":"Some","Fields":["NAsJrM9FqYcRq7Bngg4lovIUUsY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZnKUWrcyLYlbbjr2+eWdUSUeG+qVHx4zMRsyENpeS2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:03:16"]},"IP":{"Case":"Some","Fields":["51.15.4.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h0mer"]},"Identity":{"Case":"Some","Fields":["M/Ih46kwb6CKhX/iZuviNyDrYCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mzaNb7EFO3h0GZQE+Jn+61iJa5O9IkyIBmRxLnFnTuQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:45"]},"IP":{"Case":"Some","Fields":["178.17.170.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:20::eda9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["popular1"]},"Identity":{"Case":"Some","Fields":["M/F/H1EuamkPB85iFm5Aa78szf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OsZJ7xkKeOoUS9EJNVuKxcYxe+qpqGooys+79Fnn+70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:14"]},"IP":{"Case":"Some","Fields":["45.58.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["M+mzb0jbIPQ3V4QzlzFW8BhUQrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nrD2gnrNFBg3SWoNxtmfH3zmCOVW9I0Ys2MX6EzVu+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:41"]},"IP":{"Case":"Some","Fields":["194.26.192.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["M+b65QLaPwz8GFDkKb93m+6O6CA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WynQLe5imStQ74ouOWJNiiowh/vHhMNj+RNzYCSiTS0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:29"]},"IP":{"Case":"Some","Fields":["220.71.7.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["2HG"]},"Identity":{"Case":"Some","Fields":["M9ujMEM+KRW9DuZnh6SIY8gYwLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["deGRjNVTDAA7ZO0TvqYLkBLDo1+OM38gerlU8NqlPSs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:13"]},"IP":{"Case":"Some","Fields":["163.172.68.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["M9ajqL2XdyP9TAUxUfeNhSrGJ3U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["blWXXXV6sGVUIu+FFlPlWapJVH+Wq8+4jHVe9BONlDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:43"]},"IP":{"Case":"Some","Fields":["51.158.231.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mischmaschine"]},"Identity":{"Case":"Some","Fields":["M8McIBEnHecf+iiPN6OtJKZRnEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SXIf2E7eAhLvtcnQ+kY0F0N01XRRBHrK8tPIdBcPIx8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:16"]},"IP":{"Case":"Some","Fields":["188.40.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:543::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AGoodTorRelay3782"]},"Identity":{"Case":"Some","Fields":["M7+Bv99Zc66qMe5EX1GIv3eQXp0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8UyTO5fW1MixmKwWYasM9HbPTjzKdvAb3I5ikMG/gqs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:09"]},"IP":{"Case":"Some","Fields":["51.81.86.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::1147]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["M4hjoYUgB8IH7UXK5KRnq0cOCiA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NJ1TglZ8REzZwl612RRGwFjQfvU4ajVp7TH8fe5W0+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:32"]},"IP":{"Case":"Some","Fields":["23.128.248.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::81]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CROPOURTOR"]},"Identity":{"Case":"Some","Fields":["M4Qi7oN5C+VLMrPqUBtp/vdkNRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CRt/s4eYaHw+1JNTUJs/z8hWLtk+MPYuprv8WPxnsHM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:17"]},"IP":{"Case":"Some","Fields":["78.141.237.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:7400:844e:5400:4ff:fe14:1da9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra53"]},"Identity":{"Case":"Some","Fields":["M4M3e1IiBOabH6GlYn+Vr2QOkQg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bs7dTRDszX6hV5Gwe0EEgJBucy0ViNbgbUr6MNHEV7E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:05"]},"IP":{"Case":"Some","Fields":["107.189.2.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["M3w4CqO7DM3GPqG0XQJQY0g+f6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cmm3zRxItzsRSZfq///eee6mQwr8oU7AJvbYbxoTxu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:31"]},"IP":{"Case":"Some","Fields":["23.128.248.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::74]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DowntimePatrol"]},"Identity":{"Case":"Some","Fields":["M16ZMiIgT2tIFxNFBklKZEHe+2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9btYU7SqXhIFYEv9JPvF+RQYXmLflvvXyMsTw5Acdok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:59"]},"IP":{"Case":"Some","Fields":["185.181.60.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:181:60:0:181]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6i0n4d324"]},"Identity":{"Case":"Some","Fields":["M10rtxTydB6uZ3RbRiNoPXOFCHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZadoSqOXiqvEOy4c6KxgX41Uvvoym48b6hdzbsBgI1o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:15"]},"IP":{"Case":"Some","Fields":["178.254.13.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["M1kcYRGMa7Hu0uIYFK8eG24aiYw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mm/JDKCTQ7qk2aLM8zCAwxuz9I+NgG4WhWHn05PEkCE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:21"]},"IP":{"Case":"Some","Fields":["74.208.33.181"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["M1MRxg3LOKE3FYin8STfDS3C9Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmwJbVAD2m3/JK3N4KUBsxoXUtPWiV6DXy8P303km14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:03"]},"IP":{"Case":"Some","Fields":["185.228.137.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hastyice"]},"Identity":{"Case":"Some","Fields":["M0g5wxsvg0qVKIBzWRTGMQSLOxQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dC1DKyP7GSES/f8e0yxRPafBix5EpajSe38d2YzxRvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:08"]},"IP":{"Case":"Some","Fields":["91.203.5.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["central2rave4you"]},"Identity":{"Case":"Some","Fields":["My3JC3k48VqotgfAWMZssAV2LN0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MNV0L74PRcCa0d7rV8Yg86RXqA8WDeoKMGWSnKKYdaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:28:03"]},"IP":{"Case":"Some","Fields":["91.66.57.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute05"]},"Identity":{"Case":"Some","Fields":["MynnNsyhZEnQLVZ9Qmg78f15hnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ae8fSxUFH9vlKSDktQoZ7X+JJqN43Pm1ZbnB57SKiEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:44:19"]},"IP":{"Case":"Some","Fields":["162.247.74.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MyY778fmoNaVwEk4C0xypvusuFc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/b8+8hr487qEyEra6QDi1EbPaiuiXArPikUcgJzRJGI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:13"]},"IP":{"Case":"Some","Fields":["194.156.98.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0138"]},"Identity":{"Case":"Some","Fields":["MxzuGfMRIEy3Mv+NtWlMTfMvOyY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6/Exjao/quYXLJ2k1kSxI0t41ilxBrM4AehJNPj9kqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:14"]},"IP":{"Case":"Some","Fields":["185.220.101.138"]},"OnionRouterPort":{"Case":"Some","Fields":[10138]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::138]:20138"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MxQgCsK/YP/YKBFPSiPURINPFNs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["udiktGsdD4Xj1dopwAi9Tuz26oaEt6dqxIgQ+umcAls"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:37"]},"IP":{"Case":"Some","Fields":["96.245.115.66"]},"OnionRouterPort":{"Case":"Some","Fields":[7936]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CHRISTOPHERSOFTGEM"]},"Identity":{"Case":"Some","Fields":["MwqMLlPuZN1h0oXhlSdllQf7JHk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dLPjFX0mFjlzqbAq6FGM2ZkuVrxuAAGXA0BajM/rGR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:23:21"]},"IP":{"Case":"Some","Fields":["62.12.118.116"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber08"]},"Identity":{"Case":"Some","Fields":["MwpdT51dUya5qsEsM560knnWAjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bTaQhkHfGNy0fM6wTq3ynYZZ1c3nkAnqfUknUQ19V4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:31:56"]},"IP":{"Case":"Some","Fields":["185.220.101.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::4]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetwozz"]},"Identity":{"Case":"Some","Fields":["MwDY5ZFL3t4+7SrdLO/WEQA04uY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7iUJ4cvwKPliIRy3kvfFjRem856+p5P4uNMG/Cht7Z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:08"]},"IP":{"Case":"Some","Fields":["217.160.58.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8d8:1800:67b::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SetecAstronomy"]},"Identity":{"Case":"Some","Fields":["MvYl44f4KnQ1nBSQ0mSVtvxHLLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2L8cxgcyeQevXsetkI4jWH9umpGH/ChHC1Rdu1O7ZJk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:34"]},"IP":{"Case":"Some","Fields":["85.183.154.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber11"]},"Identity":{"Case":"Some","Fields":["MvCgGcccJoduyuNV3YQVo1WoaSA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QlKnak8ToZagEPAinlk7GJm4nCdeOd/fg64pLPIq5hU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:24:53"]},"IP":{"Case":"Some","Fields":["185.220.101.6"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::6]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ndnr1"]},"Identity":{"Case":"Some","Fields":["Mu6RHZaL4+AW7KVyux7Qqe5D/C8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ScElSfkRzt4GO5QBspZC4NUIJ16o3MHy3TBVIgrA4Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:22:50"]},"IP":{"Case":"Some","Fields":["109.105.109.162"]},"OnionRouterPort":{"Case":"Some","Fields":[60784]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:948:7:2::163]:5001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spiegelberg"]},"Identity":{"Case":"Some","Fields":["Mu0bVV+xQNbbm/Gv+BwrZrMh0qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fXrGigOx6mKmPa0UDRjqIDaej+POyCFCaJQKDkuEipI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:13"]},"IP":{"Case":"Some","Fields":["51.81.56.228"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Mudd9RCvcLF1Y1Q8Z+iNPgLIX/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/2gUohTBqyo/XhyZZmjb1narBwP/Jdymg8tlzXtkXOg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:46"]},"IP":{"Case":"Some","Fields":["23.128.248.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::75]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams05"]},"Identity":{"Case":"Some","Fields":["MtYYFK/LpGhm3B9ALuKWfZrBEj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cLhet6iKwd67EmHHsSobFRKP2b6A9cutzxqm3YdTkFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:40"]},"IP":{"Case":"Some","Fields":["45.151.167.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::c]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["MsPCVdZL8Fbl4qK4iJts5NjCdkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["crq5RaqobT2rA+r80wWX6RbccZukj1PZ4qp/5//D+98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:42"]},"IP":{"Case":"Some","Fields":["185.241.208.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["STEALTHSTOSE"]},"Identity":{"Case":"Some","Fields":["MsFZN/Dmx5YTQJHq9UoBvGr7oYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9GSZZG9nR+YRZIPexOeu8ELdvJ0+u0WORVnvKuk8H7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:34"]},"IP":{"Case":"Some","Fields":["82.196.126.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=460"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BahnhufPowah"]},"Identity":{"Case":"Some","Fields":["MsEQC17xmlv7tDHo1CeBwtCdMcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wNJextCFJCHOVPj4W8n5ev427QdISJBsbwU6z5bAPN0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:25:19"]},"IP":{"Case":"Some","Fields":["98.128.173.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1145"]},"Identity":{"Case":"Some","Fields":["MrQqm4ZfO1UilT3Ry7Pa239T1bA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ax+oI3YCBiJ3rXUAFjPGKjcUU6lv9zIXN/DS6NpmEU0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:49"]},"IP":{"Case":"Some","Fields":["185.220.101.145"]},"OnionRouterPort":{"Case":"Some","Fields":[11145]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::145]:11145"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aare"]},"Identity":{"Case":"Some","Fields":["Mqzoghc9+jcEpyFfimJT6tPhbJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hR77Ie2uTg2pyTvCjE9Cay4W77Ax8M+skEQOFv5N8QU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:38:58"]},"IP":{"Case":"Some","Fields":["85.195.232.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KittenInTheCloud"]},"Identity":{"Case":"Some","Fields":["MquupbLsbt598H+89UyaZ4ahs08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j7kgRxT62oEQ3XuoAjYjGXNdHiYk+H1aUtVQyLULnQc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:41"]},"IP":{"Case":"Some","Fields":["45.137.68.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:5100:e1c0:503::44]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Carnavafoire"]},"Identity":{"Case":"Some","Fields":["Mqt4tQ9bDY0V0A7xhwrRA5rTEDc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["copwSjPmCWCNFf1DMjFiZPWcf7Oa7UqT10mFvOyeIdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:26"]},"IP":{"Case":"Some","Fields":["216.10.247.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt85328"]},"Identity":{"Case":"Some","Fields":["Mqoz28bWvoENlpdQyiJuTDzTG9w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WxkPgzr6enNhZcEvh7S26uu/pajFFz6jaYDX6Iajess"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:56"]},"IP":{"Case":"Some","Fields":["185.245.60.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["overseerorwell"]},"Identity":{"Case":"Some","Fields":["MqoKrOFc/p7TuQfctp7EiYj5xa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U0fqBiA7T/v9VpkD33hq41/pG5QvSLCPgu18U7/bpG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:17"]},"IP":{"Case":"Some","Fields":["51.81.254.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["MqemXB8KJyhcqF+gND9Dk+qvTsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X/kATPJGoQkd/M7ZmII/QOUbjaiD8lci4m0NXrR/D8c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:53"]},"IP":{"Case":"Some","Fields":["51.254.114.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3000::3724]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tordom"]},"Identity":{"Case":"Some","Fields":["MqQ7DBU8Ipj9vSSjspjak2jcc7g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/kFbjhuro6WKjiRi5HY31ynciZllqFyd29X1ww+sVeg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:26"]},"IP":{"Case":"Some","Fields":["95.216.168.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:1997::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["rebleulay"]},"Identity":{"Case":"Some","Fields":["MpgBTzGbZ4KfUbK34IiTuQ7k7Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ll0VeVQrhDk4DNzMzko4TZ7gpdzyObIiVnCyBG7W4HY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:47:23"]},"IP":{"Case":"Some","Fields":["212.51.147.50"]},"OnionRouterPort":{"Case":"Some","Fields":[26401]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:5af4:4646:c23f:d5ff:fe67:aba5]:26401"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["MpKa5BcwEzDtdoEmgeKDXShUy0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["imU/wVBkVvVAVoWWQF2GWi765ZO3ZHdkaVnuTzBqTPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:57:58"]},"IP":{"Case":"Some","Fields":["23.128.248.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gangbangs"]},"Identity":{"Case":"Some","Fields":["Mo7TqS0c1iFlm02m4hD8rtgTF0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lgf9ASSmpcE8IT0R+ry4qAxUbOnWi24BGJSAd2gZ7ew"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:17:10"]},"IP":{"Case":"Some","Fields":["104.152.209.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode2"]},"Identity":{"Case":"Some","Fields":["Mog2CJB6VRLS9oXkBLTiIDge/1I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oBJ3fL85wM1PDhFqTXWa3RL1dawOX+CT6Ak/k7qSY7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:54:01"]},"IP":{"Case":"Some","Fields":["188.68.36.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:ab7:acab::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["terNOicebeer17"]},"Identity":{"Case":"Some","Fields":["Mof3nZwWh79/Op0UA2nKZNL9ERs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YHUP6Jr9+WUD9fgBaEAdRLZaRqU+r6g4X46eCpX5hbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:53"]},"IP":{"Case":"Some","Fields":["185.243.218.41"]},"OnionRouterPort":{"Case":"Some","Fields":[8166]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:243:218:0:41]:8166"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rhea"]},"Identity":{"Case":"Some","Fields":["MoKEdvT4ThXEK0w2ClzY3kw8K+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmmTUGPsYkWY4Ixc3TxxjHqLkD26xDUDj2SLRd9HUmU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:34"]},"IP":{"Case":"Some","Fields":["104.131.11.214"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:800:10::104:9001]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["demang"]},"Identity":{"Case":"Some","Fields":["Mn9YI0OLjshuwzNVwUfYRVqxwUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z225cukcJNprFB4L/edithAQdkC7Hzkrs9lO2ZhaCHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:42"]},"IP":{"Case":"Some","Fields":["93.115.91.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bouncer4u"]},"Identity":{"Case":"Some","Fields":["Mn8zf5RVNQS6jxC+ftkIOIFUjPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hNK4WDiKM22lmOBbzAn91yPIjQk2H0/BeLz+uBXkah0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:51"]},"IP":{"Case":"Some","Fields":["104.149.129.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG11"]},"Identity":{"Case":"Some","Fields":["Mn31JqBBKciqVbXzVRvEasS8em0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YJf0E5PwfnmjDLp6ZLknHkHbZ+mzTpb4t3m9b+4GpdY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::204]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sonrisas"]},"Identity":{"Case":"Some","Fields":["MnQq1Xw9JD2gcTu239ghGN9XPS4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FdhBbeTLBncugwrJDdqfTgKcss/Hk52yuIQv2Xo11Z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:51"]},"IP":{"Case":"Some","Fields":["15.204.141.95"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MnIYYYze3M7khxjG9/H1+pinfmo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSQp+lOoZqkmqMhGMwobWRuoJQlM3ZhPhME03G6N77Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:30:27"]},"IP":{"Case":"Some","Fields":["94.23.248.57"]},"OnionRouterPort":{"Case":"Some","Fields":[52959]},"DirectoryPort":{"Case":"Some","Fields":[39540]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex75"]},"Identity":{"Case":"Some","Fields":["Mmi0x9yNMcMP8USAQJ3W1rBwLJ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1dkOwW0RxfxVJH34SbACFbUv07nvTQzbDJ0b/Sucsi4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:08"]},"IP":{"Case":"Some","Fields":["199.249.230.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::164]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MmhTqnjaRn6ZfmBArdDc/4QODLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fWRe+08hP+Y6NTHJzjk7uF7ywyv5FGNbsp6El689/8w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:32"]},"IP":{"Case":"Some","Fields":["194.145.150.15"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1578:200:10::c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MlAX0RlQaFeZDW9XMu0eKFsvaM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sox8V/BoNhMClsUZC4lJmF/Vw4DyYHFf/NRak6Cu//E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:04:54"]},"IP":{"Case":"Some","Fields":["81.232.62.230"]},"OnionRouterPort":{"Case":"Some","Fields":[5679]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:2002:51e8:3ee6::1]:5679"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bixnix"]},"Identity":{"Case":"Some","Fields":["MkyqZsH2NVmWQteaHZZcEHQ1lCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w29s3nopsSIvU6onqIMfathdbp64GjfWHrZlwzwS8Yo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:49"]},"IP":{"Case":"Some","Fields":["107.189.12.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sodium"]},"Identity":{"Case":"Some","Fields":["MjuwKmICQYQsWig60mF9nvo5f70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QXbaN7FJzdptHdHbxi6wpztdqgJLUU8LOtXQyGieF+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:53:14"]},"IP":{"Case":"Some","Fields":["65.21.246.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:33ef::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN01a"]},"Identity":{"Case":"Some","Fields":["MjkAfOH7Ls398gZ98juUkpXcXvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kZojIJroYsrH6JBZi3Kbw5qLMfiEKtfGig0x8fBPN/8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:37"]},"IP":{"Case":"Some","Fields":["217.182.198.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["MjZL74c5RL5IHovMf66Sl/Xzl4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/1WZTzCxkrKemlXUfHvb6K/VAvtx39xJjwDhyEHC4xQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:19"]},"IP":{"Case":"Some","Fields":["51.158.96.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Loukanikos"]},"Identity":{"Case":"Some","Fields":["MjYaHv32hNrtyMpkhDdno5X56s4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["un/6c6k9j1fyrUfshnIg1zI8XDZa9du9svwoWl+cEd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:43"]},"IP":{"Case":"Some","Fields":["146.0.36.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AugustTORExit"]},"Identity":{"Case":"Some","Fields":["Mi5Jok99+bFd1zIF/LhMjlrPAqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TXURYKIovUcoTceJdiZyrlY5nWx2f4HQUTtOZDANDDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:25"]},"IP":{"Case":"Some","Fields":["23.133.8.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2602:fbf6:11:27::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BananaNode03"]},"Identity":{"Case":"Some","Fields":["MiuzP0iHIwsHZ/VLoIpFC2jXd/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zLAfsAoJ/KXDRUd9U/8ho0NOKH5sjWHXjXv+0QEkOr0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:44"]},"IP":{"Case":"Some","Fields":["90.231.172.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["windeck"]},"Identity":{"Case":"Some","Fields":["Mg23vqcsBYui7vCYvxrvuik3G+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FRKX9eLbqlyDfTz7Wj6R9jy7NSEvmRoLMLll2zkYt18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:15"]},"IP":{"Case":"Some","Fields":["185.72.244.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex93"]},"Identity":{"Case":"Some","Fields":["Mg1zr2zHiYfnEHiYR7+41hwxvUs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZfbkpkIZY16Yaww2VLIu6YJqfmm7wsNuv4LgstRKlA8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:50"]},"IP":{"Case":"Some","Fields":["199.249.230.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::182]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justAnotherTorNode"]},"Identity":{"Case":"Some","Fields":["MeMHK+LX/sVwfwnDUWEv4reuSNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YYkH6SmiLIUO24rY6Rr/TsrL4rEUBaAX5aKZmBZafio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:37"]},"IP":{"Case":"Some","Fields":["88.80.184.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:93ff:feae:4153]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG8"]},"Identity":{"Case":"Some","Fields":["MdOR9HIN6JbFmLcjaa+IDtCG1hQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8w0TU6oEg0z5bHoM4QUodz7AWcFmE0NZMVXKLPifap4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::201]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Belgium"]},"Identity":{"Case":"Some","Fields":["MdJwo4UF1L+7yr9xfp+0vKbd8v8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cH5xKCfhg1ABg1+Zf3QJxO66/9b6WSOGZ5swqIiwwTY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:54"]},"IP":{"Case":"Some","Fields":["45.128.133.206"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt61472"]},"Identity":{"Case":"Some","Fields":["MbFWdhe7qN8HoSO0Ff7tp7Ihl2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nxiJKO/jrNp1EkQUoHtMfMmqg9KL4EAEePRIFR0vdRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:27"]},"IP":{"Case":"Some","Fields":["185.245.60.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["XiWinnie"]},"Identity":{"Case":"Some","Fields":["MazT9GKST7X6W9IZmczffuf7AWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HmN5GgEgYE1jNNirSF/VV1/hs/LP0TH6zgALZxTb/Mc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:07"]},"IP":{"Case":"Some","Fields":["51.158.146.12"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:6010:213:208:a2ff:fe0c:804a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["MasEowgAkf7Mr9awKz1Gvp24L+U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GLHais/cEldD0CqsDYEevixZMYqovwjQDKQiwCui5IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:38"]},"IP":{"Case":"Some","Fields":["5.45.104.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notraing"]},"Identity":{"Case":"Some","Fields":["MaD69IwBUC/6wrMX82ll3xsxEBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["et+AxItvZpRS8V+wDbvHg8T5Tc8sBk1/TMeXSXRE/wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:20"]},"IP":{"Case":"Some","Fields":["45.32.129.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["MZ5QMq2TuJxB5ZTrn90VNq0UQEQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n6sJhElGEMi2X9MN1xR4pXh/KjrA/NOy6tjlNY+Aa9U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:00"]},"IP":{"Case":"Some","Fields":["68.41.59.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["strongman"]},"Identity":{"Case":"Some","Fields":["MZbdmkMRkr6G98js8d8PgOzGxok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h4Va1HrPokecL3jK+xR2hPuKZpJN5Awjg9bPKJkDyng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:34:53"]},"IP":{"Case":"Some","Fields":["23.82.137.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow3"]},"Identity":{"Case":"Some","Fields":["MZZibUdlGuQTRVouFTVz79AN6Ug"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JoXvmVR9zUdEFecGnLJwIHC8AwhHsaGnYfzgiuWMpaw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:21"]},"IP":{"Case":"Some","Fields":["51.68.152.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redonionring"]},"Identity":{"Case":"Some","Fields":["MYy3/A6uuSMR61G1t448rUXrzyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e6LPwXZZpa5mjkynuMP8oN8xgXITsWGo4NhwDxHntis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:15"]},"IP":{"Case":"Some","Fields":["45.79.181.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:1fe::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MYytGgCzPS9llYIQsJuJN4Numa8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5fF8bm6GAZ3fdCey+uoobm10hfl56owUpjHVrX7E2qQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:53"]},"IP":{"Case":"Some","Fields":["91.39.86.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP09"]},"Identity":{"Case":"Some","Fields":["MYMtQqG0fpCXBwT+bXIQ0l+h5eM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7SCo3ZfMlCVjoTUV0oaMvOdjKu7tNawn3WmoWHhFwUY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:06"]},"IP":{"Case":"Some","Fields":["15.235.29.235"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doudoubridge"]},"Identity":{"Case":"Some","Fields":["MXucNLmYATK2jcqr4JFbnFZTvgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wg5Y5sbSigElYV7C6RcYUDyuY8g9IYDjiCfh8E5E/wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:07:29"]},"IP":{"Case":"Some","Fields":["82.65.165.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["PankyPL1"]},"Identity":{"Case":"Some","Fields":["MW3kXv+1NnHJ/VPOCZKVKEZwmik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M0kyLroBr/ySZehLuQhLJIVaGTRiyipSWpY+3nWfqBM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:35"]},"IP":{"Case":"Some","Fields":["51.68.136.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blissey"]},"Identity":{"Case":"Some","Fields":["MW1qvOpSJo5he7mS0PmQlCV3C8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SZDn5Gz7QcuvWuLTYlJLoEsDCsyt1LtLGUdj0u/4uo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:15"]},"IP":{"Case":"Some","Fields":["102.130.113.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["atrip"]},"Identity":{"Case":"Some","Fields":["MVH7QZ+rD9hte+T339Yg6Z4QXZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJvR9QRp1DehpB5lIW/ePS918OQ84JoL4etWVECg3KE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:48"]},"IP":{"Case":"Some","Fields":["135.181.41.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:9cbb::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueOctopus001"]},"Identity":{"Case":"Some","Fields":["MU4fS2dsFeej2tnbGVlfACAoI+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S3/1gREGQO2/L+jw4E4/gxFo60SSFkouX/e1O+ao554"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:20"]},"IP":{"Case":"Some","Fields":["139.59.118.185"]},"OnionRouterPort":{"Case":"Some","Fields":[60000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:0:d0::633:e003]:60000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["mulloy"]},"Identity":{"Case":"Some","Fields":["MUGaZBiLyAcO6J887mqpjqrH6Og"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x1Y+hGPKRzaWcocopuCgR1aFc7F6C3V5LLycgQ37qAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:39"]},"IP":{"Case":"Some","Fields":["46.249.37.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e2"]},"Identity":{"Case":"Some","Fields":["MRpFM/eiQV9CNGpsj6d+b9J5WUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqNSGG2LpNbJZHJ8l7bEX4IAhwNRsw/cTsBRuIVgjZ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:01"]},"IP":{"Case":"Some","Fields":["94.230.208.147"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::147]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["MRaDDFYHlmdHhdbnkAmGaYFx4VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zoZay1qrjoNA9sznfKNjHcTx7s80Lz8KvrOFV5wM0es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:06"]},"IP":{"Case":"Some","Fields":["198.140.141.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e3:ffff:198:140:141:0:51]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DebTor"]},"Identity":{"Case":"Some","Fields":["MRZkUauh7KfF+ltgUZrkXHYAEWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IcwymbOfrQ2Ye0ZhSwvQjCKdcK5LJM8mzFZbFoim2TM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:56"]},"IP":{"Case":"Some","Fields":["37.187.18.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:12d4::ffff]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PenAndPaperIsLife"]},"Identity":{"Case":"Some","Fields":["MQm3EuHuBAGn4Sn9HrEYS1TBCaU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CsIfhffrlZJDs6OM5Ivug184lRy6vDVQ+gVneD+6NRI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:26:01"]},"IP":{"Case":"Some","Fields":["128.0.64.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tainish"]},"Identity":{"Case":"Some","Fields":["MPzIKNlOhKwWmDR4gakUmYNjT/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VVgTdjZXghw5FG4diEXVBfu9f1bDifXBUiz5x60aSVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:37:53"]},"IP":{"Case":"Some","Fields":["130.193.10.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["agir6yah7Bahxolooqu"]},"Identity":{"Case":"Some","Fields":["MO3RUE13+hVbP/D0nKeH4PJKqGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JKhxcVx8zNg0aupQA7zJUpGhcmxBktFjJIZRzxBPq+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:31:29"]},"IP":{"Case":"Some","Fields":["45.62.232.181"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2607:8880::1832:b5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RedMaple"]},"Identity":{"Case":"Some","Fields":["MO1q+XAZwdirsVAmq99w9XfPV/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCLoc80mRH8/7ucACzozzRyghIpmBjOBhRdT16BLv/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:15:21"]},"IP":{"Case":"Some","Fields":["23.108.51.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["MOgBFRImDc8ET3OVNxlH9yDKUNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7gwyy1OuVzHuXoUdxWrlu8oRrE51ZI+Ff4yL6EUS2W0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:29:26"]},"IP":{"Case":"Some","Fields":["23.128.248.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::13]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FuckYouPutin"]},"Identity":{"Case":"Some","Fields":["MNkixS7+7IruahB+NtzcZkgBLbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bAtdTTpI98LumKZkrWfB44QWNyT4uevsWIX9jLFZEd8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:47"]},"IP":{"Case":"Some","Fields":["212.159.69.155"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["savanna"]},"Identity":{"Case":"Some","Fields":["MNRXMXeJ4gRJy8EuAvVlj6I+C+4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMkhDmiGli9ZrgJDrbMnxHHKMEZUFxClZh7dGSqbNis"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:50"]},"IP":{"Case":"Some","Fields":["176.9.17.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:1141::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["MNEWIbxJ4totqx9FSyu6YGtDhJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rL3Iq3hThKMa2FQZ8gNCS09UtYc+GGm7z9vz44St4aI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:48"]},"IP":{"Case":"Some","Fields":["51.254.45.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex61"]},"Identity":{"Case":"Some","Fields":["MMVcSW9ce5ho4LxjSaHNViPwt18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lf5h8MSHzEzVQ+2JEIoGuux9kW1aRnFp8a2PE77HQ/E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:52"]},"IP":{"Case":"Some","Fields":["199.249.230.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::150]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["MMRyRB2RCovNpXHyY3yAEZ520II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vNmPwHGwJLEs/Sc4biHGPezeKzh9lIWeWWnydqFxH7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:41"]},"IP":{"Case":"Some","Fields":["5.45.106.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CibulovySmerovac"]},"Identity":{"Case":"Some","Fields":["MMAuOSb7mhrDcCL/X/ASD5DvIjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vofsDhJi1FXVvt9dF0TuKRZ+OXly70cUsY5XfEGR1pI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:10"]},"IP":{"Case":"Some","Fields":["104.244.74.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f292:9768:4707:313f:88a2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["MLKcn3BqhGa/If2QsEGe19WGhlw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dAiy5irthavxx6j03J35sVpfMpjs2fSaHmHJNzABLPo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:39"]},"IP":{"Case":"Some","Fields":["213.238.182.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI19"]},"Identity":{"Case":"Some","Fields":["MKd7JPJeyyjSdDzYrUIuXFKu6Y8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yPN6z+aTZUL60Og1JNd/r4t7j0l9SpEEi2ttT/ksS78"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:36"]},"IP":{"Case":"Some","Fields":["171.25.193.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c:4::80]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["MKVcVUL26WM/qxpx+FER9cqpUvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9TyLfFk8y6DMbmCtByiAWbzyg4uL+zooRJV54lhDsR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:53"]},"IP":{"Case":"Some","Fields":["185.14.97.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::4fe]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NotLinode"]},"Identity":{"Case":"Some","Fields":["MJbFT1P3gYHJpTyVDUY04X4ledQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xVx2+kLT2ydjQSyPxxG94842Dxt5Fx+TBiDQuoYzRNk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:59:39"]},"IP":{"Case":"Some","Fields":["152.86.13.206"]},"OnionRouterPort":{"Case":"Some","Fields":[454]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv13"]},"Identity":{"Case":"Some","Fields":["MJYeUKYNdEWhGZte6mZOYOos4wY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UertOhpbwEwtZHluw9MtdHpmguREEcIJWM2JDYf1Plo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:21"]},"IP":{"Case":"Some","Fields":["162.248.163.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ratscornRelay0"]},"Identity":{"Case":"Some","Fields":["MI6irWnIfUS/tWHUPf6NeSnGyak"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pYu0W0M5NFdynkhQrpXcay1Sei3nAEFcn5DQtkvcgoE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:54:04"]},"IP":{"Case":"Some","Fields":["76.210.199.227"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hrmphhh"]},"Identity":{"Case":"Some","Fields":["MIKKWtDcfd1pOFKb18kB0MDzXE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQRLcD8ABsZFVKUEqwJI7kD552MBFkXt9BLvo7O/Mrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:45"]},"IP":{"Case":"Some","Fields":["173.230.153.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BloodAndIron"]},"Identity":{"Case":"Some","Fields":["MG8iOocASUXqWL9/TSNvU6vAW/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ww8miV8hnhDpzeePLzn6374q9rwpRt5ePVrXyDN8Qh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:51"]},"IP":{"Case":"Some","Fields":["192.99.35.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unlimitedrelay085"]},"Identity":{"Case":"Some","Fields":["MF/Jr4GOPPDWq+3Lb3X+jeGLxDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyKlJ6xHj7x7pRIlZHyezLIx6GD0YEXB0ADtl6/lanA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:54"]},"IP":{"Case":"Some","Fields":["101.100.139.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["geidi23"]},"Identity":{"Case":"Some","Fields":["MFt3N/XlXYmc1Z1Dbr3prnQNs04"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FkbbXI/C2MClzJE1MzbJi92B/KnoUxd0F2HzoUmHevs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:24:43"]},"IP":{"Case":"Some","Fields":["207.244.91.94"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xrl1tjdevde"]},"Identity":{"Case":"Some","Fields":["MFf4rl8+KI9mkpwR2Cn7PvuHmHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["008ihXMxscEz84ckxH3pWkE47edTdqCKWkDmiZ8toyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:41"]},"IP":{"Case":"Some","Fields":["84.252.122.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:9235:3f0b:4136:5142]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["green"]},"Identity":{"Case":"Some","Fields":["MFFFTNqaBkKIMPEn3fKdkJin+1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdS2tpUUkJrK0Rhe7CZElCBZz8vOsOpy3oX+IJ5Nzwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:32"]},"IP":{"Case":"Some","Fields":["172.105.53.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stubbornoxenoracle"]},"Identity":{"Case":"Some","Fields":["MEIptvDBCkRl9bMtCAFZyzYP3RU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+436+ACIoBkJYZFvDt34+4KsA7oB4vYHFvYUNlmpVE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:23"]},"IP":{"Case":"Some","Fields":["144.24.17.44"]},"OnionRouterPort":{"Case":"Some","Fields":[4444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm2r2"]},"Identity":{"Case":"Some","Fields":["MD4tp9SlhRXiS+VQeEIh+Zy077U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSPX+kIJnsWrwNZ55JKeesnMBa7U8m5HaY0TfxnkWEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:27:34"]},"IP":{"Case":"Some","Fields":["108.175.14.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ukko"]},"Identity":{"Case":"Some","Fields":["MDUJq5EO8ge3Q4wnQ1xKL9V58bE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WW0irVUGrf5qrGj64RDVEHIriW7CTw58zYMgnvCuGgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:25"]},"IP":{"Case":"Some","Fields":["95.216.33.30"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:2145::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=95000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sagfreundtrittein"]},"Identity":{"Case":"Some","Fields":["MDP9GLvWWMXs6Sb7F9Imm/4zc1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2GgJFpf6GcoWiaIfuYi40K3Bz59iitWs0LXxU/6yPbU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:28:24"]},"IP":{"Case":"Some","Fields":["51.158.166.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:1046::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yrl1tjdevde"]},"Identity":{"Case":"Some","Fields":["MCbD5Oj37iLLWvEZbWVxiVfjdo8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x2eBAYHoObFoo8xAwy5SaNl+3ahj8sNyFrGQ5gc+ejM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:31"]},"IP":{"Case":"Some","Fields":["84.252.122.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:2500:571:fea:9235:3f0b:4136:5142]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinguin"]},"Identity":{"Case":"Some","Fields":["MCZCNmW54MKA2IDgXqBkM56SN70"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["87p//kspdE7kh+jNR8oK5BXaP5lAIhfGiu628D7K7jM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:38"]},"IP":{"Case":"Some","Fields":["109.70.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::71]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ssnn033"]},"Identity":{"Case":"Some","Fields":["MCUTIC+2koi4t1ceplTxZLJmMKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z/kT927E6r4ev2gdavkV+OmVltyhhkwYa0OHp7ffJGY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:47"]},"IP":{"Case":"Some","Fields":["116.109.176.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MilkInTheTea"]},"Identity":{"Case":"Some","Fields":["MCPtlQYSaFb0+ACf4IMoPhqph/c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAig9X0n5p9I6TAoSWAniODbZP70KKTLWbTOxr9x+Qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:49:53"]},"IP":{"Case":"Some","Fields":["117.53.155.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xDEADBEEFCAFE2"]},"Identity":{"Case":"Some","Fields":["MBv7/LfwCAR9kXQwml7BiXcl8NI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C5CymLFqXUQap+51rXlf0feGhWUUn9Jov6f9dJ2T8rE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:48"]},"IP":{"Case":"Some","Fields":["94.140.114.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:4000::4d]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["MBsQ6/Puf+ucIyZuQEpjtpXPnSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hTbGciCHiZ9N6gM+LOZHEkg8WHFO+qzX8KRxPclgmLw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:57"]},"IP":{"Case":"Some","Fields":["93.95.227.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkolando"]},"Identity":{"Case":"Some","Fields":["MAyp4X0lC61sPD7mV4sZNJO/Ato"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbJXfTKBcLsMcVZFi5KBxHpwJjtbqKBduMR1nkVhk4k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:36:49"]},"IP":{"Case":"Some","Fields":["195.50.212.15"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:7d0:4dc0:7511:a0de:bdff:fe03:1ac1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["barabasz"]},"Identity":{"Case":"Some","Fields":["MAt+1U/iHYevVej/HUhoYGkXEh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BgwcFHOXRTKf/6ENyUxIhDIYYNyPPj+uRnsSDLx5Fg8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:55:59"]},"IP":{"Case":"Some","Fields":["81.109.66.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HattoriHanzo"]},"Identity":{"Case":"Some","Fields":["L/mQ4nyJj64Gnz9psLqd8lSnXWQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jdAHK2gxvRcbVTKfZewrT4k0iRhzwp0t67gDBSaW9/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:20"]},"IP":{"Case":"Some","Fields":["176.114.0.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay42"]},"Identity":{"Case":"Some","Fields":["L/STT5EZ43dmexP+IR9ih04BIKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tSlZn+t6ShQQ6AiA5qt7FuwjNeX1hrJ+/8Cffbly8vI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:53"]},"IP":{"Case":"Some","Fields":["85.214.252.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra62"]},"Identity":{"Case":"Some","Fields":["L+gcH9RaxZMZPwTfeBmAJX5LzQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vMh2idwotKWUHwsrN36P90DHoHQEdcs02iWVuZY8hWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:22:28"]},"IP":{"Case":"Some","Fields":["104.244.77.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myzwiebel01"]},"Identity":{"Case":"Some","Fields":["L+ciNmh/cem6mk8PZ16AayBE/Fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Zbf3TcxkUfiUnuwhpCTPWxeWyqk/j2rN0L5RDL0vN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:55"]},"IP":{"Case":"Some","Fields":["78.47.39.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:734d::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndrewRyan"]},"Identity":{"Case":"Some","Fields":["L8vyf+vcT+/DcUxEiFrNg1J5HnY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yklw4lL8y3srlY0gUN0yiHzHpPLnweGim9MnYPcXQ9A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:27"]},"IP":{"Case":"Some","Fields":["88.208.215.95"]},"OnionRouterPort":{"Case":"Some","Fields":[1214]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:1f5::1]:1214"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer36"]},"Identity":{"Case":"Some","Fields":["L76uxLCQ3cuDngJR3YX2J2DvdRw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9WdJrSrjjgT/3WB5A7A+d63XdbcXLtGX8WhTEmOjZuk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:48:37"]},"IP":{"Case":"Some","Fields":["173.208.190.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8014]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt29963"]},"Identity":{"Case":"Some","Fields":["L7uOVQ+kgOJxrbTeg1zIQP8gXEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5r6/NepFPYyzMESMOXGt3x55MvUofmvR19qEQLLwCC4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:38"]},"IP":{"Case":"Some","Fields":["185.245.60.9"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tapiri"]},"Identity":{"Case":"Some","Fields":["L6Sz1GCHZaNa1O9hwC3IiXO//0c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dQdva5C6Hs7K9ZRMIiL+z+ywp6m02+cHjO+gsQmhgok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:11"]},"IP":{"Case":"Some","Fields":["142.132.230.17"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c010:6d96::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dutreuil"]},"Identity":{"Case":"Some","Fields":["L5r95D3I4/BYAzBMAb09vzKRaaw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VQ5aod0qURFCaupSK+3OJuO/7N7Y+qsEUYlnUbJ4Bt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:12"]},"IP":{"Case":"Some","Fields":["213.152.168.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FireMateria"]},"Identity":{"Case":"Some","Fields":["L5joU6VwrHp5tAgjZLeBrWdwUHQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egnaJQR54l2jJYY2U/UjrGntT6cN6Z9TUyZ4/1LVioE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:53"]},"IP":{"Case":"Some","Fields":["194.76.227.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ValThor"]},"Identity":{"Case":"Some","Fields":["L5Rz7IOaA2sVQBtD9cBqzBiUYuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b+Qe7iTNtoqEEqHMboIrCBsHaDc85iJMnFEnlD7MoIw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:35"]},"IP":{"Case":"Some","Fields":["152.67.230.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:c001:207e:878b:2a1b:d247:f367]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torexit1"]},"Identity":{"Case":"Some","Fields":["L5QxPlbEUxUVFw+jQmkjcfl3tVU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v4EM3U7biIFIrYZtyFIZxEST23h1ZlHqFJu3tbaIrYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:59"]},"IP":{"Case":"Some","Fields":["31.133.0.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4713:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex73"]},"Identity":{"Case":"Some","Fields":["L4HaIqZJ67DM0gqXUnIH4uhB9fY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b0TrbZl77HqDSEsNmP3AqNbKJF6PVpdmfTqsrqmCL7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:13"]},"IP":{"Case":"Some","Fields":["199.249.230.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::162]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ATLurmyivna"]},"Identity":{"Case":"Some","Fields":["L3HPbis0fbhVx5qoRSXL4OWYcZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U3pev4nsv9yw2pzVYrIaCpCYArUsPwElc7HdpDrlEL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:54"]},"IP":{"Case":"Some","Fields":["199.184.215.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["haubach"]},"Identity":{"Case":"Some","Fields":["L04ht2Hnn+wvBDW09gjJEWQNQtE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O4j23l0ahQXAqEpb8LzQ6heki0xCp8oGtOOLSW+xXZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:30"]},"IP":{"Case":"Some","Fields":["89.245.194.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["YoloMcSwag"]},"Identity":{"Case":"Some","Fields":["LzOoNMMhbo9BaEtRFKer5o4hazs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcz1a0kkDGBF1eqQc1YX42oiMtcVcjrpv/jMD/kUuOE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:27"]},"IP":{"Case":"Some","Fields":["178.78.241.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wut3"]},"Identity":{"Case":"Some","Fields":["LxG0KDF6vUOkIbXG9n93Oog1Tm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AC6B379S2dNfdUfZuqdClreSqZTrVJTTK7sxK0kOwVg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:57"]},"IP":{"Case":"Some","Fields":["54.37.137.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1a6e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SanMarino"]},"Identity":{"Case":"Some","Fields":["Lw/LeEA5n7J7d2wpJnFiEdi59GE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ebpyIn/w9wKNQqw6qD+bFy6SvM/q6HqvZlhJHuECrOk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:26"]},"IP":{"Case":"Some","Fields":["23.88.75.121"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFN01b"]},"Identity":{"Case":"Some","Fields":["Lwm9bZotWn1tJsF2Uc6Ozwt7olc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aPiZLeIHTwvaUFmuvqeemiJDLvZ/7LvhMOyBPNg9pEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:20"]},"IP":{"Case":"Some","Fields":["217.182.198.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Lvwri8ckz0NcFAZgh5Nr58o8V6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BMBvpaWSgFmLoo9BJ3bbvlO4Yr5FBeHXtt2SYOUExwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:13"]},"IP":{"Case":"Some","Fields":["188.68.40.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doughnut"]},"Identity":{"Case":"Some","Fields":["Luf0lyjQP4vA3B1nVYSZKQxfCf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fEnjhskl6yaT5g+Df84pDxUEw5y1rZXpU5PG7pxY5z0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:36"]},"IP":{"Case":"Some","Fields":["199.195.248.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:797:4638:253c:c3f1:cc4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["maat"]},"Identity":{"Case":"Some","Fields":["LthlStG4wl8+uDFWsH6jW+YTLww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/5iXlreMr3iMxH2WWEJr6qnbcu2tFyRgWJTNeiJHDDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:27"]},"IP":{"Case":"Some","Fields":["135.125.147.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:482a:2cfc:bdc:9917:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xaeloBaez8ae"]},"Identity":{"Case":"Some","Fields":["LtZkcoN2/TZ9rAXQp7W5QuDBtN4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zd4dTGMgnpUWubA91w9/wLK6KulWkmtEPmZLvAmOwTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:23:55"]},"IP":{"Case":"Some","Fields":["209.141.54.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN27"]},"Identity":{"Case":"Some","Fields":["LtTSV2aXNxPrjFaikL8H4GuFvxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ph9P6oHgoUZeEI8XY4qHMGTocB0s2gJMH2Al/4GGdOQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:45:31"]},"IP":{"Case":"Some","Fields":["199.249.230.80"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e650]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["LsNOyotc2xgd7WlI2DIxmaa71ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fyu0v4ZSoGBSR4+aRkmDqoVVQRAGq/No9FF/q2iBQRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:16:14"]},"IP":{"Case":"Some","Fields":["185.177.206.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alastor"]},"Identity":{"Case":"Some","Fields":["LrPCMBgGlKHoSAAeIPNvdqIocDk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0dvcCa/Z2aRzj/bAgxCsF7vNEoWvIXsQoZ6g04X92Iw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:31:53"]},"IP":{"Case":"Some","Fields":["62.210.123.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:30c6:100::dead]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CHRelayOR"]},"Identity":{"Case":"Some","Fields":["LpoQTXAPn43kKMylIUPz9SDkgXM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PF47ykFRRss0esR59EX8VSxmSrGB929Y7REc+3IsdzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:12"]},"IP":{"Case":"Some","Fields":["140.238.221.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["buster"]},"Identity":{"Case":"Some","Fields":["Lpbv7ZQcN2a6Yq/f/xYyiHXETF8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pEEco0nVIwsb82LFEaxmJWxhF0gDm1DmmY1/nztF1KQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:23:34"]},"IP":{"Case":"Some","Fields":["37.120.191.218"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:b58e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber43"]},"Identity":{"Case":"Some","Fields":["Ln78+bvjghHckLu58y++9hKsxJA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["edui4o2n3edRzUXeaNEM6oZYnh6QFMP2csjHb/NCcik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:29"]},"IP":{"Case":"Some","Fields":["185.220.101.22"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::22]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carpsecurity"]},"Identity":{"Case":"Some","Fields":["LnidvuD1KCNqEBspTE1wmEcsOQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MejWQKgoRlxJGmgp1regXsxpVD64lVSGdkhJrd4s1gM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:20:54"]},"IP":{"Case":"Some","Fields":["94.226.36.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torpinkbyte"]},"Identity":{"Case":"Some","Fields":["LnLNr6Eq4VR3lfm6/0AvwWtlPOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6zBGzsA7QVYf58xhqcXF+S3kE1ZsV60o7m0it2pQfE0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:48"]},"IP":{"Case":"Some","Fields":["91.220.220.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["LmWimdCsNaRpKUNRAVK9VsT/Bc8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["60nnRLdwVT0zmmUJ1mlSC+xfHLeHyJ3jnH1VP7e6uq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:35:19"]},"IP":{"Case":"Some","Fields":["121.200.26.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iola"]},"Identity":{"Case":"Some","Fields":["LkW+JV05Q0OXolNLhZGQRnRIh/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8V6l9itp8AFGAqkbVTWUxV0j7fuGSu0d2MVjK8PoF2A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:20"]},"IP":{"Case":"Some","Fields":["176.199.7.92"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:2542:b500:d6d5:a5d6:595f:ea37]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sarkany"]},"Identity":{"Case":"Some","Fields":["LkJ+iwcFhF9xSD/ejgY+xDTLFkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tdmpVXA3ut8xq/SshG1Z4e2UrSjls4JAgliZUnpirck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:59:33"]},"IP":{"Case":"Some","Fields":["84.0.118.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["Lj5tsA98+b1159sZl7HdXnI/MHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1/7zNVGA9XINnEb+RpW6I8oIqcStg8aphjOjZCU6RE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:25"]},"IP":{"Case":"Some","Fields":["23.128.248.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ferrarizGonzalez"]},"Identity":{"Case":"Some","Fields":["LjzFWtV9An/GS+nIdWPH3YF9WBc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/fDeu/wMqLKKELspOCC290EUcSx8zw2tD8vEztSZoBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:04:05"]},"IP":{"Case":"Some","Fields":["185.154.110.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonymIMXMPPNode"]},"Identity":{"Case":"Some","Fields":["LhaD6p2C+q/BaO3I+/tMOnxxuks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cfeb4lmmkcMRAEESEz8EzOY1zVD5STtJJPPyckYb+/o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:36"]},"IP":{"Case":"Some","Fields":["185.162.251.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:6a0:8857:fcff:fe0f:24a0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow003"]},"Identity":{"Case":"Some","Fields":["Lf3qXdQVuVWUv7EtWf6EEWf5S18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQvCyq9vTf0y4GEPw3A9IWS7i0jH94uM2xVyCTGfj3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:10:43"]},"IP":{"Case":"Some","Fields":["185.195.71.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thestudio"]},"Identity":{"Case":"Some","Fields":["LfyiAvE6kPkaggtMMyH8hH4mlIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3UWLET4Q3fGjltVz+o+lr23VztSA3Uu5R38Ax6cb6DA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:14:26"]},"IP":{"Case":"Some","Fields":["91.219.237.160"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["erbridge2"]},"Identity":{"Case":"Some","Fields":["LfWGlMGFJaSJL1FNAQObz0SgVDM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kuGRr5XFhvbmm/c2VN8v7+XYyc3lrnj/kN/k0ZzOa2U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:43"]},"IP":{"Case":"Some","Fields":["176.31.211.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:3616::74:6f72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deltersvrAnonServ01"]},"Identity":{"Case":"Some","Fields":["LfQtZiQme7m6+9OJuSr/91JTsa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+gSkCxhWjNIerwWe5XBz+MeKAGD2QCXiSVoZQA5Jr+8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:41"]},"IP":{"Case":"Some","Fields":["148.251.79.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["LfA9exWNri6vdgeHdUUfF2lQZFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PLW56Y4Q7yZFdQYNbyGKcKlxob2M6f+qWd8LUrJ6qSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:38"]},"IP":{"Case":"Some","Fields":["185.220.101.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10032]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::32]:10032"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra29"]},"Identity":{"Case":"Some","Fields":["Le+AEHcEcjZ+sgicoKUKF7IR54o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6pZQBACDdfznrqUfNy0W0pR1BmP5lHNiFLfs6yeyuxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:11:57"]},"IP":{"Case":"Some","Fields":["213.164.204.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay"]},"Identity":{"Case":"Some","Fields":["Le1dL+/M4V3Za9WXE6UWMEyb8yM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwHY8qnRLwW5G04hIEzW0+gRoW7mbNEyPSphCVs+vl8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:18:21"]},"IP":{"Case":"Some","Fields":["79.136.43.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jumper987"]},"Identity":{"Case":"Some","Fields":["LeytWR3SJrN4lpTdpvCtyfsNjRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7oLiHioNxdm6HZqWEJ+D51C3p8DagYaAUx0emZN4Dqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:35"]},"IP":{"Case":"Some","Fields":["176.58.106.151"]},"OnionRouterPort":{"Case":"Some","Fields":[42819]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["avarus"]},"Identity":{"Case":"Some","Fields":["LdvBd7SXBxAUUKORD5hB1cfBt/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5vRVOwkZXojJC6drwu3SAj/EY2fL9bhxjOtMd30Jzjg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:10:36"]},"IP":{"Case":"Some","Fields":["45.150.108.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:4::53a9:a532]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SinbadNamornik"]},"Identity":{"Case":"Some","Fields":["LdY5Sx0ypLXxXOdTBAVa+RYXesQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iGJaVXIm4JoBHH5c0bj38xluZj6M5JQpFH9BAz+JUF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:51"]},"IP":{"Case":"Some","Fields":["78.108.108.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["a9Exit"]},"Identity":{"Case":"Some","Fields":["LbipRoJtDLT1w6gmRijdDxb2YS0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNZTDogqj1lpJy3gJ8cMOEnvmLab2J93gBUKgNCYnDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:16"]},"IP":{"Case":"Some","Fields":["104.244.74.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f63d:1:ca11:911:1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rwxrwxrwx"]},"Identity":{"Case":"Some","Fields":["La/mepvhEZJq97c9fao/f65lptk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V+L5qZJph/ZJ+SWHe09k5LYmLCxg1rEOBj3DCDRyjUE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:31"]},"IP":{"Case":"Some","Fields":["78.46.120.54"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["just1small4relay"]},"Identity":{"Case":"Some","Fields":["LazCbx07pk8y7rQYW61paoi6gy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28+vbOI37MHNjCjHHSlArlcx4VhFRatJ+tPM96AHkhc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:25"]},"IP":{"Case":"Some","Fields":["77.21.71.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VoxBox"]},"Identity":{"Case":"Some","Fields":["LZOPGer2YNkCxla15gAvObRcS+Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9CNOCfouMu4Xm7nyjH1CcF5umicbNdMhiUHTM9tJ7/c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:21:31"]},"IP":{"Case":"Some","Fields":["213.135.244.242"]},"OnionRouterPort":{"Case":"Some","Fields":[24071]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nCT8d6e5bW2v"]},"Identity":{"Case":"Some","Fields":["LYqQf2HK7UgXCWO3a+T7DtM+Xog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q9lTa/69IHUEQCcvkj8AMrhBcn8MCUQHcihOf1f7yC0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:39:03"]},"IP":{"Case":"Some","Fields":["89.133.16.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poisona2"]},"Identity":{"Case":"Some","Fields":["LXm8pSrjdU8pmnGZ4F3o0Dr7WvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DDg341JKrpuUjtZKQR7JX0TOfNCMpl1b6d+2mH4hQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:42:24"]},"IP":{"Case":"Some","Fields":["87.245.103.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Untamed"]},"Identity":{"Case":"Some","Fields":["LXVcAJUfGrkZYrgLCS+nqGCgYck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CGJbjTyPlg47DXnmx8AblHWu6PflOvrA93FlJEJsuI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:22"]},"IP":{"Case":"Some","Fields":["107.189.30.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f29d::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hiboo"]},"Identity":{"Case":"Some","Fields":["LWyTojNjaNmld4QW/U3d2X/zfUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5flK88J7asGPqNSXFTXos8ByQUxbuEE2vYhM/pZyoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:19"]},"IP":{"Case":"Some","Fields":["5.39.86.203"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:98cb::1]:110"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TM"]},"Identity":{"Case":"Some","Fields":["LWPsJMt8p6z7wUOXUqVKkWGVBn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zxrs7KvkM+iFfU3gOu6pvVMnHGjiK+rzpaUg6Sf1OZg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:30"]},"IP":{"Case":"Some","Fields":["115.70.167.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BHCARM64OpenBSD1"]},"Identity":{"Case":"Some","Fields":["LUpwxntNZjkX55Kk9PNiL/uAv+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["byayNJs/BxiTw7mq6Ew9Xv4r+gCDs7ADmEWJTowuK+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:50:50"]},"IP":{"Case":"Some","Fields":["185.104.120.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:3000::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aanetuk"]},"Identity":{"Case":"Some","Fields":["LUfwOfBO7APqvkhMwBd5agq0gkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dve7TyHOEHM2lD1xljad7LOkycU3lIv5RPcB8t7YWag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:05"]},"IP":{"Case":"Some","Fields":["90.155.5.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:8b0:1628:a008::aa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["LUdn8seP3ETm+kEVL5BotxfNIz8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znTYsvIy+meBlgbh4iZq0mL7HOXOpBS+oYh8BU3fmes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:20:12"]},"IP":{"Case":"Some","Fields":["172.105.9.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c04::f03c:93ff:fe47:7f1a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MyPalEdSnowden"]},"Identity":{"Case":"Some","Fields":["LUGKifedtKjmWLpUn7uXTR0i3Ro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ORLFxm7dY+CWmqIpj1yxa7unmymzMHtvkLe15t5f2Ik"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:32:34"]},"IP":{"Case":"Some","Fields":["92.60.36.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:33:6e3:1418:12ff:fe82:4abd]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCTorRelay"]},"Identity":{"Case":"Some","Fields":["LT0bYv3ecxBHIEN0nvRJhh6JaAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sid3iK/K8blzxa7WZneDauR2rU8MRZx4IEtlDXGX6pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:00"]},"IP":{"Case":"Some","Fields":["50.72.121.79"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["slarty"]},"Identity":{"Case":"Some","Fields":["LSqFNfoNk+gWTxNmkUiTaEGHEFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iFN/4xtMn5UkwlPp3c0BcKYW0MGywRaI9sm7jdnlZ70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:48:39"]},"IP":{"Case":"Some","Fields":["188.166.33.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1535:9001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra87"]},"Identity":{"Case":"Some","Fields":["LQvp92guCREaQ0H5S1WjUA4BiLI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0erYo69FYGWxMg9Fzzi6UmHEN2Tcu0aPAYGvWLIMYmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:19"]},"IP":{"Case":"Some","Fields":["193.218.118.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::51]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Computer0111"]},"Identity":{"Case":"Some","Fields":["LP/erqmX50Gn6FDNyfHpgV3DZ1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HSrd8iibmPKbIROI4UGpWgL+gn6iLCEN2BuRYUiPYv0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:07"]},"IP":{"Case":"Some","Fields":["135.148.54.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lodrich"]},"Identity":{"Case":"Some","Fields":["LO/1BuONxhggL70i4P4gsBHTIEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9qjFXkEN5yOC87iCphjRRUdkCubtgfusqSHKrRK25r8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:36"]},"IP":{"Case":"Some","Fields":["85.195.253.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:8235:0:48b6:8fff:feb0:bb1e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ridin"]},"Identity":{"Case":"Some","Fields":["LOm+H8iLnQ+gPzh8nk8AC11LKuk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfA1eL8Su2oxxfanEqo+EmdKFWcf/6wYNN8+sXaGeDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:36:50"]},"IP":{"Case":"Some","Fields":["51.75.129.204"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedel24"]},"Identity":{"Case":"Some","Fields":["LOlqih2gMmZMkPV0r/vs4Ypujfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d5GQI+e0PpI0Aa7ADByztSus42ApQ3o0hUOol36Yd2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:58:11"]},"IP":{"Case":"Some","Fields":["89.163.128.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:237::babe]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor1"]},"Identity":{"Case":"Some","Fields":["LOfXLQIV9NrjN0qLg8y5lPT+c9A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IKFSJYisnQOEUwRLjp/PhgrXtrNP1KQn54pyP1Go3E4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:04"]},"IP":{"Case":"Some","Fields":["31.133.0.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dairy"]},"Identity":{"Case":"Some","Fields":["LOLe6DC5VO2jprtX6nQg4PXuPBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kjuyerX0/gxnyPrBsDknpJdYuASVhwxFBHh0SNkMLjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:20"]},"IP":{"Case":"Some","Fields":["207.180.230.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2021:7703::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["onYourOwn"]},"Identity":{"Case":"Some","Fields":["LNVHTjPRJikVa5L71h+qsi0HsPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5IpcnIvMPezGUQR2Asa3qDkBfMCHFyO+Z3cKU+YyMKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:36"]},"IP":{"Case":"Some","Fields":["85.241.106.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cadory"]},"Identity":{"Case":"Some","Fields":["LNQ7LjxH7cYvzfhmPtXbUHv01VE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aZwSP/j33zj/GHZhdLpGumXvxSnq8h80h9Fa2mH8wEg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:52"]},"IP":{"Case":"Some","Fields":["178.200.169.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19004]},"DirectoryPort":{"Case":"Some","Fields":[4447]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange016it"]},"Identity":{"Case":"Some","Fields":["LNMXxiSAO3fq0yyWOCiEsMrU2z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9DKQh3FxWL42ohR28MSor2SzDgoGW3baCD5EOhyy1vY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:43"]},"IP":{"Case":"Some","Fields":["91.201.65.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=760"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["LK/5HQEbuHZgucEsQNOa2Mb5sP4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H4dV30ejbDVKBJKnuLllNKMxB0kt/l7L9hOJvKW6I+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:18:04"]},"IP":{"Case":"Some","Fields":["195.60.166.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LJHT4FofxcvHIHVeSDbAi1xuBOA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CSH6KY19UcmCbMKD5ukOBzX0PaiZ6JzgH4cyuwSh4D0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:03:33"]},"IP":{"Case":"Some","Fields":["188.68.34.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LH++Yap/PGBpEVXmADCwMb/MX+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HT/KwDJr7clz9s4OX5iEOmB+vIwU/qx52Q+REbKXcVM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:52:56"]},"IP":{"Case":"Some","Fields":["185.244.192.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gondor"]},"Identity":{"Case":"Some","Fields":["LHYrZFXNMvjV6NgBH2ufny+KaG0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PkMopPXD7hgwqmzAOJMksLpKmme3L7Ivy2DGHSR2g5k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:57:40"]},"IP":{"Case":"Some","Fields":["149.34.0.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torstejaude"]},"Identity":{"Case":"Some","Fields":["LGcACJPhhG1D/ABTixk5TNgf8mw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K5Pz7iWq6VQnxgtQMekTUoZFAJzTms/oYTFO+dg8YDM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:57"]},"IP":{"Case":"Some","Fields":["178.63.116.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:4281::3:fee6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unzane"]},"Identity":{"Case":"Some","Fields":["LE4VzUDuPS1vBi8Erf6bhcjDxSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["D9afpFQHO368AAM3OJZumVRHCQ5/SClWHxg1Y7nN76M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:08"]},"IP":{"Case":"Some","Fields":["184.105.220.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:b480:fff0:6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv12"]},"Identity":{"Case":"Some","Fields":["LE111mmf0SW1GJ7Qhqc4P2fXErY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0mmUqxMKE10iz50Xbx5kmtGvUWiltXXJHek6IGcU5fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:26"]},"IP":{"Case":"Some","Fields":["162.248.163.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["LCbLrKs7gxQqVGN8ow/xMMm9Mx8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYLc5syukdtNFys1RCrHJocw4S8IXIFzIcwn36nG9eQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:48"]},"IP":{"Case":"Some","Fields":["37.120.187.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["LBtTVdFzOTGLK20S6oXfPaiH7II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CuJ7ewUOolCvxC2GOB5J0rRIyk1vsPnWu3rqG7Tzwwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:53:44"]},"IP":{"Case":"Some","Fields":["23.128.248.200"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::200]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["razor1"]},"Identity":{"Case":"Some","Fields":["LBl6WR42pX8zTo9+lORm2lItGXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkbuie9OzPSo2/uKXgvfrQSw7ciVeVvzR6Za/DmqEfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:14"]},"IP":{"Case":"Some","Fields":["189.164.166.59"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2806:10a6:8:f87a::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["history"]},"Identity":{"Case":"Some","Fields":["LBOlTj6KavsY4N5YkOWwiq9bDzY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f3P42v3umO0awKpWSBFWpy+7+MNg4J/Cva4OLO8n16k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:09"]},"IP":{"Case":"Some","Fields":["138.201.123.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fluttershhy"]},"Identity":{"Case":"Some","Fields":["LAaIf1vUUdN7fh40uUHu66QsQnU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6QYmXJOozZeufabOgXW9eY257W7C5TfAUjgW3iUuyQA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:04:22"]},"IP":{"Case":"Some","Fields":["179.43.182.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["LAaBoVNz1flVd75cum4yNX1mTE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T8Zpf9ND86e2CFf/Gvi6lORa3GSZTe0D1csHwdb/tec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:05"]},"IP":{"Case":"Some","Fields":["95.214.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lina"]},"Identity":{"Case":"Some","Fields":["LAZHYKpmV+LFdd2JfCWIsXCj/xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATkzhUubAWfagMK8FYLQarwCtw0Ph5kMRIIn4jX0FVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:07"]},"IP":{"Case":"Some","Fields":["158.69.187.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Diesel"]},"Identity":{"Case":"Some","Fields":["K+dTmXh7Zk3dGqis8ExEEpgrzZM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7CS8XJ8oP9bgVx1xTLM5Px8pZU0z5vzeZxbLi9/A24g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:56"]},"IP":{"Case":"Some","Fields":["23.111.143.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnivUtah0"]},"Identity":{"Case":"Some","Fields":["K+WX0KIlWk6PRMv7Emt6ehKpc3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7Agw0CHvxyPb9/BctCq1zRzzy/utySVIs4Aap+3Jza8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:26"]},"IP":{"Case":"Some","Fields":["155.98.5.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anonymous"]},"Identity":{"Case":"Some","Fields":["K9QNYbMo8/yunY03AyziaV0FK8c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nDDcvztUad3y2VojopVITV7FE7p6YVyf4ZqdDh2GHHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:39"]},"IP":{"Case":"Some","Fields":["123.194.142.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0001"]},"Identity":{"Case":"Some","Fields":["K9GTbgtNW7YVz5mwz/dOrxlCaIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5GxLYViGLBHizUo9ZUsZYJmEAlX9LfTQ5KZRMm1KtIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:01"]},"IP":{"Case":"Some","Fields":["91.92.109.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HailEd"]},"Identity":{"Case":"Some","Fields":["K8uYfITSLMFYNuLQoASS4KbQUAc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qu1r6kNePxIU/SmFUQzyUFZZEpQAKByJwJI0Y0c1qQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:08"]},"IP":{"Case":"Some","Fields":["173.212.225.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Waeswynn"]},"Identity":{"Case":"Some","Fields":["K8oKi1dZ29dkv5+l0bOu6ddNK2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iTRrDloxgBCE6nNvRp/pBAHqJPMln9mhL01GKDXF7Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:54"]},"IP":{"Case":"Some","Fields":["94.23.172.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zapotec"]},"Identity":{"Case":"Some","Fields":["K8Mbc+AAC2aYH3c00rHywWwn0Ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6xrJRe0DpvoLXO27e0jmTg/VbmQTA2a8Wi8eR0Ha2rA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:09"]},"IP":{"Case":"Some","Fields":["65.109.16.131"]},"OnionRouterPort":{"Case":"Some","Fields":[8888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carpetor"]},"Identity":{"Case":"Some","Fields":["K7m+J7BhUvXnV1u54wUKM9iaC2c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DHiLHUkCJO8FTkI/FOy6oi5Rb+Rq4ShasFGm3kDt238"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:06"]},"IP":{"Case":"Some","Fields":["79.199.152.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finTor"]},"Identity":{"Case":"Some","Fields":["K68JLoZnwAyj2WhsdtjsPMa8fFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["up6VsOYDGb0xYkM18UlS/8b+l0Cy9JRZ22RqJCidzQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:17"]},"IP":{"Case":"Some","Fields":["95.217.15.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:607c::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["storm"]},"Identity":{"Case":"Some","Fields":["K6LI6WslkOEHKuzivbXEiSG/hRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a2zRGmt8Gg9vbikIvDPmHrg+mDZyCxqmWJSUsr3XU1A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:38:19"]},"IP":{"Case":"Some","Fields":["138.201.250.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["waschbaer"]},"Identity":{"Case":"Some","Fields":["K5cwK+VcqPMUFYBcHNKkebLdFIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lBtY+Xj3TMMHQt4COvb2QVHxwr83k2LWMvrcMe1O8oM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:10"]},"IP":{"Case":"Some","Fields":["109.70.100.74"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::74]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LaserSystem"]},"Identity":{"Case":"Some","Fields":["K5T++WjJlJ/S8Q6xVJOElLL1BSc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FSDHguVzUDBngC9wWKDOYINoXu6d5iVNubRSuoQCi30"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:34:33"]},"IP":{"Case":"Some","Fields":["134.249.231.207"]},"OnionRouterPort":{"Case":"Some","Fields":[666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["81e5b3091a636b"]},"Identity":{"Case":"Some","Fields":["K45wFMT03M4Axz6FJ4dbwU46noU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ldleKnihhqjnz852MPhdQFZ9aYb7uRI8WiMOrjpTvXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:53"]},"IP":{"Case":"Some","Fields":["65.108.248.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:b11c::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torbogen3"]},"Identity":{"Case":"Some","Fields":["K45kKBH/b2EGAPJwOrWeQvuaAMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SZO5uB+tR6yR8OpIczWvG4nJB0HdwWi4XViUXFS4OHo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:49"]},"IP":{"Case":"Some","Fields":["37.138.230.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9003]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tauro"]},"Identity":{"Case":"Some","Fields":["K4iq0uYB5W5eroK+w4qrDKbvIoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R9laG9qQUaiDAXZquqV+zJ+tBJMUJ+Slg3x1JreX+VA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:18"]},"IP":{"Case":"Some","Fields":["189.84.21.44"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1139"]},"Identity":{"Case":"Some","Fields":["K4EKqBoDbgH/x0ppMdu1gxabt/4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RZ6w5eGA+x7ntwoHSeq5WvZUB3j/iXI3H6OPxgSzCkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:36"]},"IP":{"Case":"Some","Fields":["185.220.101.139"]},"OnionRouterPort":{"Case":"Some","Fields":[11139]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::139]:11139"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VmAdmin007"]},"Identity":{"Case":"Some","Fields":["K3/R/Yy0JIgNSvBRT/NBMaB0Cc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eJKIONGjH6bQyIbMduAov7NjqACPCJSi0LQtGCYn3eU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:42"]},"IP":{"Case":"Some","Fields":["176.9.23.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:210c:1::20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CurryLamb"]},"Identity":{"Case":"Some","Fields":["K2dANQlu4Gp8UqeGjBfascycmDY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oI7Kb1PjEqHHqfGb2aFJ3WAwLF/J3znTn6xX9p9BilM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:47:21"]},"IP":{"Case":"Some","Fields":["116.49.56.47"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2404:c800:913c:1522:a2d3:c1ff:fe29:3e87]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kulsortalbino"]},"Identity":{"Case":"Some","Fields":["K1HAAjrRcirFaacGKbFkpz/nx58"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZGd+IHeHG4KimnE3/S2G9N9yIg2MrPpGGuf92EFLfQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:27"]},"IP":{"Case":"Some","Fields":["139.162.143.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:91ff:fe1f:2b38]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["405test1"]},"Identity":{"Case":"Some","Fields":["K0IJRBlTtM7780fQ9Lycw0M0zQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BzOes0QB7pPGokEwu6FI1TFttde9408rUPseI0oMBhM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:50"]},"IP":{"Case":"Some","Fields":["68.12.219.144"]},"OnionRouterPort":{"Case":"Some","Fields":[466]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["Kzqsl7Jp1Z5tZCyL+xdO3RN0HDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["krQP1Ad/kIIwVhHseZXotLgXzovlAVXwadqwiSRhsfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:11"]},"IP":{"Case":"Some","Fields":["199.195.253.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:1362::2]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stormpaw"]},"Identity":{"Case":"Some","Fields":["KzcoPKPBQLNautRiioc6hg3f8FA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAWoNFLJa2GEoyh2iminPiTpX7FKUHprzZtJcu314M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:36:37"]},"IP":{"Case":"Some","Fields":["185.7.33.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RunningOnFumes4"]},"Identity":{"Case":"Some","Fields":["KzQJntK8WYxHRclshz/XOkRWRr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EaFDqooY2RVbu41QlO+xjSGXEfpdXAKIxyuY0F9mGAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:45:29"]},"IP":{"Case":"Some","Fields":["185.82.219.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MrTerence"]},"Identity":{"Case":"Some","Fields":["KzH7gn1M6nNLn3jBYTfP1viuu3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5CjbAiN5+++WcJDPc08GgVevOO01rK0jANXYqSWOY7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:30:02"]},"IP":{"Case":"Some","Fields":["185.146.232.234"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KykL8WQOsKintjl7tpyCSJtduOY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z+ypQuF20Ki+qROZSyE3lOi8b7r7cB32aUvMjvnVkWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:22"]},"IP":{"Case":"Some","Fields":["144.172.73.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["noWarPlz"]},"Identity":{"Case":"Some","Fields":["Kx/yHjC6dfQ/aW4GNEicgGQI4/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M8RbXY2DtfNiY2CIz8inpPh2fQyTu9UQyJ9KXgHQgQk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:31"]},"IP":{"Case":"Some","Fields":["62.101.228.30"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["calu"]},"Identity":{"Case":"Some","Fields":["Kv/7RNk7LwZqaFP6GZ+3vq88U9M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JEY5zaLfW/c75yuDtULLXh9GzPQxBwPGXnZT7BO1z98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:25:33"]},"IP":{"Case":"Some","Fields":["92.243.6.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:41:216:3eff:fefe:3bc]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PrivacyNodePDX"]},"Identity":{"Case":"Some","Fields":["KuvWCIxeRyoDO5Ht3AuuFlGbLjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NTs/TUn442Jk2Y4Llw6oiQBl/ko8RAta85sVCGmBbAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:42"]},"IP":{"Case":"Some","Fields":["51.81.182.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:200:1bca::b00b:beab]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KtgvOWTTJbP+L/dOmA+wBjdO8ZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["atXgVqZfYxNJOLv79vgDg5p8YGalR1q2UvHBFvKe6tE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:25"]},"IP":{"Case":"Some","Fields":["91.134.147.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["misInfoCentral"]},"Identity":{"Case":"Some","Fields":["KtVVpkCM1Xfx1zlXYOc//ps/vgE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lvjMah4rbe2K4YbHOY08LYgUtngGeG773kxqZ98P/e4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:49:10"]},"IP":{"Case":"Some","Fields":["66.187.5.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Brandjoch"]},"Identity":{"Case":"Some","Fields":["Ks7A60+ScpuMoiyGhUWGa5UpQxw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T/cbbNRmjdhJEgoIqLc6t4Caept69cUaHHMMflP23WA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:32"]},"IP":{"Case":"Some","Fields":["89.34.27.237"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorNuc123"]},"Identity":{"Case":"Some","Fields":["Ks6O2FwpcW6tc1IIN8qPTZ7UvxI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vAMKX5nvqRGdb8AkVD6fD+kuGQ+WGoITnQxILZz4zkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:26:44"]},"IP":{"Case":"Some","Fields":["85.230.41.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JustAnotherRelay4U"]},"Identity":{"Case":"Some","Fields":["KsgCqun68sn2Pa+cyc1DhcCpUkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KrXfKYX/eIytg4ToicM7xTUKe7EleVOTk13GwrNGHNY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:41"]},"IP":{"Case":"Some","Fields":["93.239.72.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["anoncicada"]},"Identity":{"Case":"Some","Fields":["Kr6KCdNAO+XPiW936r4jdiACp2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ryvrGOp80k6AA0Ba4wkFo0tPN8tfNHaphII+UBahrTE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:39"]},"IP":{"Case":"Some","Fields":["163.172.45.4"]},"OnionRouterPort":{"Case":"Some","Fields":[3302]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cbc511"]},"Identity":{"Case":"Some","Fields":["KrknGEztGlG/bkimfxhqVnLZNQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q9USqYMhImTKLW/D9gyn4m3NwOa0+wCK5YRFqYtSrUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:44"]},"IP":{"Case":"Some","Fields":["139.99.237.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2402:1f00:8100:400::7d5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gigatux"]},"Identity":{"Case":"Some","Fields":["KrC5HM8SZk1dlQg6anuHGRjIz5w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lcn30J2xoS9/mEnf2x1N4DYZRPhGns6phOwvriCf38k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:00:00"]},"IP":{"Case":"Some","Fields":["185.113.128.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LoschxzAngerelays"]},"Identity":{"Case":"Some","Fields":["KqrENPL61dsww9s36PLCKjGUu6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RsHwxTBut6BIMOe9RQ/ZtQ3Nz3fUGTaGwBnOzoIIdgI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:12"]},"IP":{"Case":"Some","Fields":["45.76.168.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6001:826:5400:4ff:fe23:beae]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["setsun"]},"Identity":{"Case":"Some","Fields":["KqX1mPmhgS8BzZnjtZu4c2LtdDg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xu0SrEmG67tvfhXay9y0cOKCQy1AJxDTlozgjiWK8Dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:02"]},"IP":{"Case":"Some","Fields":["144.76.200.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt81678"]},"Identity":{"Case":"Some","Fields":["KqB0mHmqI1fVgIRVtoScpUC7hYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+XZgQZ4aSz71qkfqpLHFGCGrsaLZnQnrVkg90yqLw4U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:58:40"]},"IP":{"Case":"Some","Fields":["185.245.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnR10L2"]},"Identity":{"Case":"Some","Fields":["KodgnaG0j2jjDQmTg4Em0BWISrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z5XWNAt6uSxbHF52yYjQAzuq5Db20KQlQIIrR4LIVMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:38"]},"IP":{"Case":"Some","Fields":["178.254.20.159"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tesseract02"]},"Identity":{"Case":"Some","Fields":["KoLf9763tCadTW6uOd7Db5ghQmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCQbYJKRIN/umBtP/FfoMDRU4vBt1m2066VP4/DstKM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:18:11"]},"IP":{"Case":"Some","Fields":["84.238.10.142"]},"OnionRouterPort":{"Case":"Some","Fields":[29001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["clicker1"]},"Identity":{"Case":"Some","Fields":["Km2eri+zGUhsXjv1zA+D8Gtzzg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+nvJOXGvjv5qQIZjDYbolGRrAcvaizsymNpWnhIW524"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:36"]},"IP":{"Case":"Some","Fields":["94.16.116.137"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:91:2549:9:f370:a1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HDRelay"]},"Identity":{"Case":"Some","Fields":["Kl7OvtrPDy3KV2gwVshrtw0abs4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6aSyP3mQJp9tuXQNlF+tCsmiPROiCMI1OJ8cayNK3M0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:33:16"]},"IP":{"Case":"Some","Fields":["161.97.168.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PowerPenguin"]},"Identity":{"Case":"Some","Fields":["Kl30oP3VKGjiXywzvCMq/9Gbi/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OjEWlL27otT4D5QyHjB/54MgmdhBiMe3m1IPXFN+/zM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:06:56"]},"IP":{"Case":"Some","Fields":["93.56.117.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["6ixty9ine"]},"Identity":{"Case":"Some","Fields":["Klol8YSpyLLgqRmOAHIVbznP0Cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dRK0n8Op6wffdj3dEVlDHGhfKGGW1H7HxuR/X+3Fr9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:34"]},"IP":{"Case":"Some","Fields":["69.197.147.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spsnowflake"]},"Identity":{"Case":"Some","Fields":["Kj7FByiI4vL04oF9Pz3qqGoNb3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wbgPnX5ckZ5q4dhkJJkFy1JJX2tmqRdIot0kiMjkLaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:50"]},"IP":{"Case":"Some","Fields":["23.82.136.14"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Angband"]},"Identity":{"Case":"Some","Fields":["KjYAWoEci0IPOA1nxKnWMGVfCQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+T4J+QpetW07tE7WQ29uGsFl+q68ahTGvoI7mV6AQuw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:06:19"]},"IP":{"Case":"Some","Fields":["178.17.171.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:138::94d2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["askatasuna64"]},"Identity":{"Case":"Some","Fields":["KiTgt/fWS4CNcPvpLmQcnW/Zmz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L2AlCENvuMsywuGuj97QAUeKFxBVIAIRFQoJ9RzFXuY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:05:02"]},"IP":{"Case":"Some","Fields":["163.172.41.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornode789"]},"Identity":{"Case":"Some","Fields":["KiQ2z94kCcZQJ2h3XAv91qOogDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T39ogf4k4qEoOXOPPIu4SDmqt/QnXUG9QeBesEeal4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:54"]},"IP":{"Case":"Some","Fields":["5.255.104.239"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DefendRojava"]},"Identity":{"Case":"Some","Fields":["KiO2rCVGkc1S+Y0mVnJwiJhhvB8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KI0W9Hfe6NcyF3a3k+7gg77sFCL7ydZgRKiS7EsvJ+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:28:24"]},"IP":{"Case":"Some","Fields":["217.160.192.232"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HassoBarks"]},"Identity":{"Case":"Some","Fields":["Kg+tPKehkMQ9jteJZye9Qm6MLvo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZOrJuBLde+ZjHdeRU/BPLp6XMkI7cR8VL4fXFnWdcWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:39"]},"IP":{"Case":"Some","Fields":["217.160.13.173"]},"OnionRouterPort":{"Case":"Some","Fields":[6574]},"DirectoryPort":{"Case":"Some","Fields":[6547]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["estrade"]},"Identity":{"Case":"Some","Fields":["KgGvw6uKJiVdxyUofACdvm8v9bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zGucxuYWhHI/fmpypiydoQNvdlfEcpTndIJkXvpx6k0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:26:30"]},"IP":{"Case":"Some","Fields":["101.55.125.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Malkoun"]},"Identity":{"Case":"Some","Fields":["KgFww9YVE977YAD/Esp8moN8hOc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GL8w1ashUpj6bthZhsV03ubSyIBBd2oOdkJ7g6EMHVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:45:33"]},"IP":{"Case":"Some","Fields":["69.4.212.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH115"]},"Identity":{"Case":"Some","Fields":["KeiwXKIwtX+iHMB2h7jaIj7if2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GFZxRZR4ZjjHLHnGHjNZQbNE2RatLK8Z5D7rrxWtrMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:59"]},"IP":{"Case":"Some","Fields":["192.42.116.215"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:215]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LinaTor1"]},"Identity":{"Case":"Some","Fields":["Kdq/tXJOu13b/ihGNQsGk3LME7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dbVQc1bYO0hgo3cUjmfDOFnPfoNg7Nj468Lm9Jj4JRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:32:21"]},"IP":{"Case":"Some","Fields":["195.15.241.38"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::338]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gayming02"]},"Identity":{"Case":"Some","Fields":["KdJ3CXzv2P6l9QNBz5HVDyFABCk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TaIqbt/qsThxxqfPbokGwsl9NkuubOZEPHOE6VwGqW8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:10"]},"IP":{"Case":"Some","Fields":["128.127.66.64"]},"OnionRouterPort":{"Case":"Some","Fields":[4433]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp8"]},"Identity":{"Case":"Some","Fields":["KdJFpoMYOcvRLPYba9asTwRhv60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLpJFF3mPh1/wFnPxQVb4iR0Kpr0A4TlQQhAvjgJyAQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:38:38"]},"IP":{"Case":"Some","Fields":["185.220.103.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Harksheide"]},"Identity":{"Case":"Some","Fields":["KcilIDXGjtNLTXZfv3S5dp5oq48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6leWjq0aw/1cs0u5UhqcQJmwAsw62n2go16AAeVqQHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:37"]},"IP":{"Case":"Some","Fields":["84.46.71.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2028:10f5:71::251]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=91000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["carlos1001"]},"Identity":{"Case":"Some","Fields":["KZzF16WOW5K2ncMzso2SbNexV9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XjIbKUXNfMToIhd/3oKIUEZb8aSalb1WMT6/t3iqppQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:51"]},"IP":{"Case":"Some","Fields":["15.204.174.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KZiVXIClxVdalgICr84NffYz9u8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f/KpVtQbhUB9uZcdVf9do857rt2hqsLurC+CQE6z3yY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:10:19"]},"IP":{"Case":"Some","Fields":["31.18.228.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:810d:b63f:f0d4:221a:6ff:fed4:276a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Eternipolis"]},"Identity":{"Case":"Some","Fields":["KZDxvdYptj8cFeaHUOR9sFGcIM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qf4iIwDUFn8PIQ+OXhPcLfD9tjCE2LUsbFXcC6vzeqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:46"]},"IP":{"Case":"Some","Fields":["146.19.247.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["marsmellow2"]},"Identity":{"Case":"Some","Fields":["KXXswZY1edXJQT2CsQZym7UteOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XfCeZpFmXgC8qpNdEKUXSJV/Q7H/fB5hOKabW6YSd/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:50"]},"IP":{"Case":"Some","Fields":["93.119.15.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:bb01:994:5054:ff:fef0:e955]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueDucks"]},"Identity":{"Case":"Some","Fields":["KW3WjJAXv3/HzsmstDpvqpQkCP8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vR+8iCDWGJmUhke/KMLeM3iWpV3LhrywabX/htW43Rk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:12"]},"IP":{"Case":"Some","Fields":["51.81.32.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::4a4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soltor0"]},"Identity":{"Case":"Some","Fields":["KWsheP10KrNasgya3wTV39PUB+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T1tyOS02MEaZ90jsD1etiQZL85mQMhB2W7tUkt0qtko"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:45:13"]},"IP":{"Case":"Some","Fields":["206.55.74.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["BadExit","Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["emcareWetenschappen"]},"Identity":{"Case":"Some","Fields":["KWjx9RFeYrwBr3z8uUEn9TclE9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/uRLp/qgqzKv8ekALLYkNHqiPLQFCt1tScQj6PDg6W4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:27"]},"IP":{"Case":"Some","Fields":["92.118.63.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fe90:100:3::6c0c:d409]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["iiyatsu"]},"Identity":{"Case":"Some","Fields":["KV8Fq1HLftR6xtbmaQuBiDrR9+o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ITT7ZKZYNQ3ov+EqhIoP6x9hccFkxNUJQHdTdk6GZ8I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:21:00"]},"IP":{"Case":"Some","Fields":["165.232.130.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:4:1d0::295:9000]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["treebark"]},"Identity":{"Case":"Some","Fields":["KUgRowVTDdgGMcKuD0h1OoNmmKA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Rj1DBASXajaZrwgh48lt9VQX5Tu++jtqg5snehchoA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:52"]},"IP":{"Case":"Some","Fields":["208.113.128.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f298:5:101d:f816:3eff:fe81:4fa0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["timequake"]},"Identity":{"Case":"Some","Fields":["KUbBVYCUltQ6PtkdZJp6uQBM+Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ewd9oeDoHdwbD2Nm0zuGqMqmVHsHS7P2zd8UtK341f0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:09"]},"IP":{"Case":"Some","Fields":["85.212.47.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KUaz9uaTDgdc1T1bEziy5AN1nE8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TIIFGeLuVxIYbcm40sTvSRVnQAIQPoMcp/ld17+npcY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:33"]},"IP":{"Case":"Some","Fields":["91.223.3.211"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Chimera"]},"Identity":{"Case":"Some","Fields":["KUYVnPnY6uuMSif2pUsBpFne4WQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+WT7Lzg37KDknLc9VYx5iwXuSZFGnKov5OAkLrI9wzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:41:07"]},"IP":{"Case":"Some","Fields":["149.56.22.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:61:785::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["KUOe6cv6GNViIVf4Rio2t8RXvHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzJLK/jWnSgaYaX2oF1xuTfGrCdwGhP+zs9/aXWgP5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:59"]},"IP":{"Case":"Some","Fields":["185.220.101.201"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::201]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0129"]},"Identity":{"Case":"Some","Fields":["KT8UndGXFJLjF3mqEsznxUW/UIg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2WgJWIDTpFcyW9NKH81zDKJcsZxm4v/bmd3qhgjEnmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:02:52"]},"IP":{"Case":"Some","Fields":["185.220.101.129"]},"OnionRouterPort":{"Case":"Some","Fields":[10129]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::129]:10129"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorroneAlCioccolato"]},"Identity":{"Case":"Some","Fields":["KTLBkoHxHSvRoldCiixw1tObl8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0iiOJMMJWgYxRbc8YZp1g1mOPAC/GmX42iJDVEmIqng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:18"]},"IP":{"Case":"Some","Fields":["93.67.182.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DETL0002"]},"Identity":{"Case":"Some","Fields":["KTJ707BS9y3a+1U6nYsTx2wpQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qvZXk1wzVSA932adJGaEK9ngk+/4LOotVkGfhFNNiN8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:16"]},"IP":{"Case":"Some","Fields":["89.247.201.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NextTekk"]},"Identity":{"Case":"Some","Fields":["KS4pn7T2kmFBDfY0iO/9G7i0WBU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4eRCyGzXNWUbTvyOJV5nwh4wDwPIxC9szHhFBTjGS08"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:50:37"]},"IP":{"Case":"Some","Fields":["178.17.170.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:bb::35c6]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KSRcQohEgAKb5w9UYWi5dMOXasU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSeCaQFuv29m3ppbM4eOQ7kMQKHP/aWxOm0yrHa7q3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:25:41"]},"IP":{"Case":"Some","Fields":["95.214.54.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BepisAyo"]},"Identity":{"Case":"Some","Fields":["KRahJ1RF3W0Q4HohHmK0YjhwlX0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kj8b8pzER3bJtieyuwtl3gUUAaOR/T8iIqWcKPKcpCs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:42:30"]},"IP":{"Case":"Some","Fields":["23.137.249.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc24:11:7263::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KP3MI36DxO+DN2M225YNEdSfp1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+IKflQl9ShcwL/8A+0kghQQFetps6KwfCkb+UUSEoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:21:33"]},"IP":{"Case":"Some","Fields":["109.92.182.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tethys"]},"Identity":{"Case":"Some","Fields":["KPjGlis5eNLiC2ksHkiL5r+5Emw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EYbtM1TWDGVz2Zg95MjYaYOKIS4VVpRflhVY2pHC4iY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:51:23"]},"IP":{"Case":"Some","Fields":["95.217.135.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:38e7::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KPAYSMlA1D5fA+7RCBrEfjkI4k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MeJocbHIhITWvu7DvV/heTWMvVNfTquoUHJBN1JiSdw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:17:07"]},"IP":{"Case":"Some","Fields":["24.180.150.87"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelevationSpace"]},"Identity":{"Case":"Some","Fields":["KOx4KkPN2q7U9n4DroQA5BaUh2g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YyynvFzOOE8qZh4hBHpKsDwtaV47QjkK60lAv6yABic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:19:07"]},"IP":{"Case":"Some","Fields":["93.104.164.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["KOQnw+f+t2xYkB3PFWXqRFieQ3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d5/zIPO3vLNLrhgiuOq6L7ZoQ6Y144hQzBBwS89OZEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:53"]},"IP":{"Case":"Some","Fields":["5.45.98.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thebest2"]},"Identity":{"Case":"Some","Fields":["KNL7L1IF/LJKSiwztcvlO+jJpY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h+ufUBju1FJekiz0Qm6VgDrNU+rKjNqjRIR6QB02YfI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:44"]},"IP":{"Case":"Some","Fields":["45.58.154.220"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dvbhorst"]},"Identity":{"Case":"Some","Fields":["KNILmQ5I/KIIV9vfEpl8MjwSUSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TvW6bSCDYQyM5Wvt8CJl9pxyMxy3Jn8ZOYmiURLrGGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:52"]},"IP":{"Case":"Some","Fields":["78.46.202.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:162b::1]:9010"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ayb"]},"Identity":{"Case":"Some","Fields":["KMUs27eNpGEk2mLsHWeWaJ5xkhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CASqPnmKToRVOKMn90lR72JneYcTaEBdNTTeGHRWk2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:54:45"]},"IP":{"Case":"Some","Fields":["88.198.70.137"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[9091]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:4109::ac45]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uwu"]},"Identity":{"Case":"Some","Fields":["KMIfukgK6vkFckDKJ98KG4r/imU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhtICPCfsu1V3O2rV1AuEXgh4SCOqIhfqwO6gnkwkuU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:53"]},"IP":{"Case":"Some","Fields":["181.166.217.250"]},"OnionRouterPort":{"Case":"Some","Fields":[7001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=970"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev4PLicebeer82"]},"Identity":{"Case":"Some","Fields":["KJsIUsBkrWTpV/lWlg4hXkdS4hM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WHALxshXp/aYOejPfWLe+t8T2wbZpYMHbcgbwhIjH/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:21:02"]},"IP":{"Case":"Some","Fields":["95.214.54.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8182]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["albescitis"]},"Identity":{"Case":"Some","Fields":["KJb+O8n9aQbWu3U1F3caAdNYhkw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["efynXcCSSiyrtLypw/P9OtzCSuZ8UaeuVCI9zJqsE1s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:04"]},"IP":{"Case":"Some","Fields":["103.214.7.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:5b82:2070:8300:2c87:1a85:3fb4:1]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["MysteryRangers"]},"Identity":{"Case":"Some","Fields":["KJT9g5fH6AhZNAYItnLJSkO8uiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SVxl44plUzCLClRsbW3ONIa+/IOX+YNRiuLB/Rmtnj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:14"]},"IP":{"Case":"Some","Fields":["178.62.220.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["intothetylerzone"]},"Identity":{"Case":"Some","Fields":["KJIHNgiYWXfe0z+YqfonqcR8i2E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T144PxaG9yxm/cg9rrT9thiACkqLSPvaTqMw1FfDODU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:29:13"]},"IP":{"Case":"Some","Fields":["198.58.107.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fe73:f9ba]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["investigator"]},"Identity":{"Case":"Some","Fields":["KIwQD/plaTjCPzIgfK8NqTLs0kc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KZYEoHYNID6jvC7VeL0L0VWC/W3tBtVC+eyxG39/xo4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:33:19"]},"IP":{"Case":"Some","Fields":["138.201.19.5"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=74000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nognu"]},"Identity":{"Case":"Some","Fields":["KInXeDZ7++LVlOlVJOP7kItJqgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tPlP06B1xmIgybcY0tIvX75wRtU8jrW8wy2HZIHBfLY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:46"]},"IP":{"Case":"Some","Fields":["89.58.40.94"]},"OnionRouterPort":{"Case":"Some","Fields":[45531]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:66:bc7::1]:45531"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Makgeolli"]},"Identity":{"Case":"Some","Fields":["KIJbWmgmsNrV+rhORXRJuyZ5onw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/3ppvYWeqOJwqchHRRLUQteOkAlVJsNRgU5npNFQ1sM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:01"]},"IP":{"Case":"Some","Fields":["172.106.167.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MonteliberoRelay"]},"Identity":{"Case":"Some","Fields":["KHs9tyQvqM5Furbc73Shk0pS3uE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WYDuzv+biToE4eh5eo2lQaZA6iqoze6EUcjZjX4WAlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:29"]},"IP":{"Case":"Some","Fields":["158.58.231.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayVongTorHer"]},"Identity":{"Case":"Some","Fields":["KG9MF7QZC+Z+3+XZKsKXjA+DHqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cfV0Kndh5NLqxn9nU/XGJp6sjblD3fWgsF2nflgWA68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:03:24"]},"IP":{"Case":"Some","Fields":["78.47.229.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:2b46::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeavensDoor"]},"Identity":{"Case":"Some","Fields":["KGOmZcdgcaSB8tD0deAxx+Ipgyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LbxxDPOyVCnIcVM5lVgkftg0VyyU8aQ9KM0jsahZ3dw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:13"]},"IP":{"Case":"Some","Fields":["24.152.39.95"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ach0WooP0AeM"]},"Identity":{"Case":"Some","Fields":["KFsxlSVt6mbH9YwFlrF9kjeIBWw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZujrj0SzAotq1mvOaRkjARCdm8sJQyG+cCfpAlp0qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:05"]},"IP":{"Case":"Some","Fields":["5.2.79.179"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privatebrowsingorg"]},"Identity":{"Case":"Some","Fields":["KFjEvwXVfX/r7ijeqCusN0Ii+Fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["voxHwLXxY9M1nzZGdW0Sx+1+n9eDgYWiEKSDxeZJ8PI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:19:18"]},"IP":{"Case":"Some","Fields":["107.189.12.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Stiefelgeiss"]},"Identity":{"Case":"Some","Fields":["KEsGlZNPJ7uFvrtUcUkmJwp0GSo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jnWxcMQEYIfjMV4TtiQNCdvelB5a95+NLssmyGpvCEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:32"]},"IP":{"Case":"Some","Fields":["221.113.50.91"]},"OnionRouterPort":{"Case":"Some","Fields":[109]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["as212520"]},"Identity":{"Case":"Some","Fields":["KEgwn85wjTjf7bi/NNLeVDPiTEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xKXYzTrwpLFrEdvXVShxYyTuvUylx8XPyOg6jD0nl14"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:33"]},"IP":{"Case":"Some","Fields":["185.177.206.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:4741:25:8000:fefe::129]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=80000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["KDUHH0uG0o35I9KqK6kC8o+k8oU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VwtS5KSD3dxby6zOIfRss9LztlaOgFcbupNAIG0ISLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:47:18"]},"IP":{"Case":"Some","Fields":["195.88.226.183"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DontCensorMeBro"]},"Identity":{"Case":"Some","Fields":["KDGEq7zLVyWG/9feZOuNNQK98fY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/IDAmlgIZBeiitOUYNG+NQ98b5eBSOX7+XMC04OdmYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:51:56"]},"IP":{"Case":"Some","Fields":["140.177.225.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev10b"]},"Identity":{"Case":"Some","Fields":["KCyq8OEdrUfdc9VT3CC1EJmiV7s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3VbErx5lOlI4iHTRi7teFzRCuneNQabfbjjoz5SijHk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:43"]},"IP":{"Case":"Some","Fields":["185.170.114.25"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:928:dead:beef:ca1f:1337]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JohnWick"]},"Identity":{"Case":"Some","Fields":["KCRPZjoJuk3sYsH84+tvoiG4R7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["58/6rxFkWSAmxNzlPno6a+pYwIQMzoYiFkSKbzQGO0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:08:07"]},"IP":{"Case":"Some","Fields":["65.109.28.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:5a:1a46::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyMatters"]},"Identity":{"Case":"Some","Fields":["KCObrHcYKfgh4qjdW1U516Ebnbc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/k9u1+XM8WZsmvon5teM8qfrnxjMACVc8OAcVUHikSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:06"]},"IP":{"Case":"Some","Fields":["193.233.202.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9202::101]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["danny"]},"Identity":{"Case":"Some","Fields":["KB0/TItSJeYUy1GHS6Ev8beSEFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RIwCGuWeJ1KI/EF2LnBDR3lB0uyL/WUKBZsxxNvMWYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:48"]},"IP":{"Case":"Some","Fields":["188.225.86.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dream"]},"Identity":{"Case":"Some","Fields":["KBjlrZ9Oogbw8RBbtQFt6WLLwvk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DffAOAJod/MEEVfBSV91uQDZsI8kpbnBpvto8pZAq8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:28"]},"IP":{"Case":"Some","Fields":["37.221.209.148"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dismail"]},"Identity":{"Case":"Some","Fields":["KAkHEKvkM6RwIfIiCLPsJFqRKQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G703smqfmLNd68Swe/Cl7ZNVI9z6LvLnY6oCWrrhHz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:16"]},"IP":{"Case":"Some","Fields":["116.203.17.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["KAPDgHNv27j6jiei3s9IBbUybPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OBsp6494ptGCs7UFrHFds7QSbKCkxwY63UK8RMX3ABY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:51"]},"IP":{"Case":"Some","Fields":["192.184.181.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["J/rpnA26jNnb/kLS0kZLTGjusA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dcePScRKxr9N7ej1U3ez/DeWFjrrwp05mWYpUrWc/pM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:10"]},"IP":{"Case":"Some","Fields":["185.228.136.146"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shimmer01"]},"Identity":{"Case":"Some","Fields":["J/ZAqy/AWZntST9tDETaaH1PRz0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3/dFUGhjOhxZ2qXOyYjRATNDuEmj5/N0HF7llgAnVck"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:32"]},"IP":{"Case":"Some","Fields":["172.245.89.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["deepspace9"]},"Identity":{"Case":"Some","Fields":["J+wBjIB9+k9Goh1pzUU10fMMe10"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YFP//hbSAuELgLxm54tZns11t2es8wsNYqTbhAc8fGc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:05"]},"IP":{"Case":"Some","Fields":["79.140.41.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=740"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra3"]},"Identity":{"Case":"Some","Fields":["J9Alea1fPjKJXZnDjkgtHcbLrl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ay1Y6Yj3wIOTtFa8LIAVYx8PsnkoiAIhfIXTAemp2uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:33:49"]},"IP":{"Case":"Some","Fields":["178.17.174.232"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:111::785b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RjPi1"]},"Identity":{"Case":"Some","Fields":["J8al2l0GET0OCMXCvlUnupoPEZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G3a0ScWd1m6BM4DsyOBwcFikBEvMgZ2KHfeZdhqjpWU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:43"]},"IP":{"Case":"Some","Fields":["189.60.21.201"]},"OnionRouterPort":{"Case":"Some","Fields":[4430]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pheonixr"]},"Identity":{"Case":"Some","Fields":["J7NeettZRuOSQgjyxHH65WODyro"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xVp6p+azA4XDAoU8x3pQWYAhG0zS++eE/sVadpMcU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:43"]},"IP":{"Case":"Some","Fields":["140.238.171.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["syndrome"]},"Identity":{"Case":"Some","Fields":["J7Li6sLxg4tpMMjkDhmap3O43Yg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MoAH88P4EjuFxOaPft76CSKPieOPvSQExo+NXajjYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:08:32"]},"IP":{"Case":"Some","Fields":["51.81.208.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LebLibraries"]},"Identity":{"Case":"Some","Fields":["J6X9IlGfCvg5J87xME7hlIQkdYI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bc616cKYTc9WiDFuU94K5z56DKYcZv2KGJE2hDFfndw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:39"]},"IP":{"Case":"Some","Fields":["66.220.242.222"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yani"]},"Identity":{"Case":"Some","Fields":["J6Wg7nLPBQ+fCgkuKw5/+kBlN80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["enm+TC56m6JSc2x81PuM62+rSz3fvQ3qEqdGbl0EbrY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:45:01"]},"IP":{"Case":"Some","Fields":["37.97.185.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:aac1:114::1337]:9999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cogi"]},"Identity":{"Case":"Some","Fields":["J5kBb2dguBR1yR28duRH3m2j4zE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TONjyrvYpqf9X7EyL+yd6zqc3yBHkfcp3NDdql13inc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:54"]},"IP":{"Case":"Some","Fields":["213.226.119.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mol"]},"Identity":{"Case":"Some","Fields":["J3XCocnDLa5H2rqXDnDp1+BQcds"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kVetF4Jdo8hHv6o4UhveZ2bfyPEn+xra3Ehrd+UcUqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:50"]},"IP":{"Case":"Some","Fields":["176.123.1.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::1de]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["greenpond"]},"Identity":{"Case":"Some","Fields":["J2tH+wbfRz9E/aDaXHJztPZZQZo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cUaumju/vP+gTPwWfS+9PE9XN0yVocviriKYAUU5wzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:48"]},"IP":{"Case":"Some","Fields":["172.106.10.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:6600:2002:1::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W44rdfE3fqVo1L9B"]},"Identity":{"Case":"Some","Fields":["J19/5EnvfrQe3VN+Zlg6sDmHDWg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yg1WV2vmWNNjUI/VC0yAom4uutmcWFwUWtD7LFBM5fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:04"]},"IP":{"Case":"Some","Fields":["176.9.157.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AllanonTor"]},"Identity":{"Case":"Some","Fields":["J0odxiEOkYJ830DcDpXko8qSmgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XJRqFfTJhOShevHLY4xuul2zum/CtBebCMEKLdhq0A0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:09:48"]},"IP":{"Case":"Some","Fields":["188.127.161.204"]},"OnionRouterPort":{"Case":"Some","Fields":[10009]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=910"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bakingoven"]},"Identity":{"Case":"Some","Fields":["J0UiULSEy5DmhyJ7MnTivyMhWOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QpcUUQGujjzK3TDwrVDHgRwnXalN15UeAkRLNfkk/qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:37"]},"IP":{"Case":"Some","Fields":["5.189.164.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["JzB4uURnVYhCljzgoCstBY4oJOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v42bkmo+JJShaXQPamAFBAY1Jl86oTIZkpz7fAahvCo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:28"]},"IP":{"Case":"Some","Fields":["179.43.159.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["summerfield"]},"Identity":{"Case":"Some","Fields":["JyrIQlIWZuPRsOXq+see9z7IiXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WtaBbFJvkrdD14gchwVX2NTDrvHG3RuV4Rc/A9DlhGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:58"]},"IP":{"Case":"Some","Fields":["185.189.112.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheMind"]},"Identity":{"Case":"Some","Fields":["JyitJkKElE293f4Mbb5laoWpNgI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wy2ziXsuiowZ9YKL74zkJMEYo4ILS64gjX5xd1nNrEw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:57:06"]},"IP":{"Case":"Some","Fields":["138.59.18.105"]},"OnionRouterPort":{"Case":"Some","Fields":[88]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["Jxc1XR7RxCHj+JMPchvy/aujXNo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eLd4RvsukwGwxvJI+UULAsD+qYDgBF6YTr9wV5DH8+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:34"]},"IP":{"Case":"Some","Fields":["95.216.72.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tuco2"]},"Identity":{"Case":"Some","Fields":["Jwv1yeIzEJP85aqIkeCliDMe52M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fkJ2VY/VYxM13mxgeFBkFMJQQH5Zn7Vdv1vdH9E7f5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:26:45"]},"IP":{"Case":"Some","Fields":["193.187.91.79"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toloso"]},"Identity":{"Case":"Some","Fields":["Jwk0pPe2aao4fy1HX755PQNpRUc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z42LbnF6A+aOfoKdu+fQFEdCD9DzZAGyFYusF6Il+Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:37:22"]},"IP":{"Case":"Some","Fields":["212.7.217.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["JwZ/Wi7MyRfxwJxM3+V95DoYfig"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pjQOnEpswpCEnN7G7CPTrWL6E1wls7x5QbrRU7UeS0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:43:27"]},"IP":{"Case":"Some","Fields":["23.128.248.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::32]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=760"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HereticReaper"]},"Identity":{"Case":"Some","Fields":["Jvm+8rrPhVF8Yst3/1XmNHKEAVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R7ygeFSE/hAuL+m9S17LKvUaDRVtleLaHV+YK4QNDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:41:45"]},"IP":{"Case":"Some","Fields":["51.161.35.113"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:205:200::1f8d]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JvKYQpN0bHWJsfyxF/FbSVivwrc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wYgJMEKpSBdQc2EH8vXeEcTG8xZbesBlU/HVerGXBTw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:03:49"]},"IP":{"Case":"Some","Fields":["192.95.27.143"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber13"]},"Identity":{"Case":"Some","Fields":["JtOE4ku9FQZhZEZiK+EyMqZJRQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IrpkN+ArjFv7Qdkw5olvnMy4wIaVdXCa1vmD01ZXeGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:09"]},"IP":{"Case":"Some","Fields":["185.220.101.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::7]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber58"]},"Identity":{"Case":"Some","Fields":["Jso0Sg2gyTNDhpv2oXyFLR06DJs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FwJYbHRn0Y1AZOhdK0F8ZdsteIOYhfktA+rWlkX2MyI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:16:05"]},"IP":{"Case":"Some","Fields":["185.220.101.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::29]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0163"]},"Identity":{"Case":"Some","Fields":["JsV/Br3s/5lo9lgFzZ7MkDawKqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cKU7EL+JGfxvluXIkkeMSs95DxqA7lQ/AkaIAEYoCFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:50:13"]},"IP":{"Case":"Some","Fields":["185.220.101.163"]},"OnionRouterPort":{"Case":"Some","Fields":[10163]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::163]:10163"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sasoom"]},"Identity":{"Case":"Some","Fields":["JsQ/tErKrtt6T38fH07JMFuHhRM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCVDRucbJNBJ8wEHkuh6ftrhJo42qdZYGLhVK+rCGbY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:16"]},"IP":{"Case":"Some","Fields":["70.89.115.157"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev4"]},"Identity":{"Case":"Some","Fields":["JsKPKbYR303iOs9dncHrSJXvXos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zpqR0bdRgGFPA8+s7pbG2iRV62K0w3QU2xi0B7ZvL0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:15"]},"IP":{"Case":"Some","Fields":["87.118.116.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:4134:101:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BestofbestBackup"]},"Identity":{"Case":"Some","Fields":["JsFe1SgjgqhD0HdPUXC8zMzEbWM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fDCm6IR2uX2ttyrUUPRduKItFujW+fh+gtu3VHUmDIo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:16"]},"IP":{"Case":"Some","Fields":["172.104.225.120"]},"OnionRouterPort":{"Case":"Some","Fields":[9007]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:93ff:fe9c:f17e]:9007"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["philotes"]},"Identity":{"Case":"Some","Fields":["JrK75nFJlzqm9jH9CeKjTnMlOrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mrOb9au+QuvV1pOGSxiTbAOlzDp9j46siink80KtXPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:28:22"]},"IP":{"Case":"Some","Fields":["94.16.118.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ageinghacker"]},"Identity":{"Case":"Some","Fields":["Jq08HBjxzSs1ejP6dlKpBtsTqMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32z8mWaJs+VBwRRkLY0TRSZj7xZYnW+TJ81cSIeLzBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:52"]},"IP":{"Case":"Some","Fields":["82.221.139.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Exit","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["VadaszXYZ"]},"Identity":{"Case":"Some","Fields":["JqGR5ZrQEmkTXmq++sZSulg+hEM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iLRjC7AmfUWOvte5Dq/6CM74EN9tChOsOaDMhM3tIIE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:07:48"]},"IP":{"Case":"Some","Fields":["62.165.251.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgES"]},"Identity":{"Case":"Some","Fields":["JpyumGn3UBsneRvqiXq11H79TzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WpIzVbbhNZnIdiHueAApHffuKI2CMbL0BEfSeX171tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:48:07"]},"IP":{"Case":"Some","Fields":["82.223.104.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay6"]},"Identity":{"Case":"Some","Fields":["JpyHtMMEZS8hrAK+hr6H31j1F08"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URiXe7LK3MkejDoectJ3qR9qRRHYMqlaI59MGSvpqhE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:33:31"]},"IP":{"Case":"Some","Fields":["5.45.107.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:16d1:9458:1aff:fea1:7c8d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Jo2hHpbk2AFvePOiRiw/fRCbfC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lslUw1VQlF0pjJi7GGKfmBu1IIdMNFeKoWYka5YepmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:31"]},"IP":{"Case":"Some","Fields":["95.214.52.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ScaryBear"]},"Identity":{"Case":"Some","Fields":["JnqpSJ5uyk0u1Le7TQDHF7PhBqY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["psxuytjzMrujbwrRUBFYxhnHIszfVnqne3TJI1WL8L4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:15:07"]},"IP":{"Case":"Some","Fields":["99.234.69.118"]},"OnionRouterPort":{"Case":"Some","Fields":[42431]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:fea8:c60:600:bb1c:8d1d:75c8:d7ed]:42431"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["giraffe"]},"Identity":{"Case":"Some","Fields":["JnOTCiLArt8/viwUFlMKE3jmyg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XpvpLw11pwW5VZuG3XuE7fxBui69HkI21oEEzi3pHqo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:03"]},"IP":{"Case":"Some","Fields":["109.70.100.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::71]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JnKx4XltVwIWO+S5d7/7vgGb2ls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["znjfPB8ByoXGe+31WLWvzodir0ViAejIqUWGnjjV71s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:27:08"]},"IP":{"Case":"Some","Fields":["45.9.150.49"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Spacepark"]},"Identity":{"Case":"Some","Fields":["JmYKt+E2pFnPzRsb5kDxBoEDWTM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BtyeqiRHQsOiLfK27+A1/nw19i/l+5y32gcWKDKCl98"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:57:40"]},"IP":{"Case":"Some","Fields":["185.177.151.33"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Felicette"]},"Identity":{"Case":"Some","Fields":["JmVeHdk3UbZSrI1TRJWrs2QVvsc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TdHad/SOjJaPzYMjXaB7X80+Wk+43UQ2tofu8ex/5lk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["62.210.97.21"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=62000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AvocadoTortillas"]},"Identity":{"Case":"Some","Fields":["JmF45BdebW/3Vjkxt8YWbFu+cOg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cpBqyK1tGwnCxjo0Dzit3i3orX8OvLAHnRCjOEnFQCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:55"]},"IP":{"Case":"Some","Fields":["139.180.153.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:4400:69b1:5400:3ff:febb:2687]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["hatcheck"]},"Identity":{"Case":"Some","Fields":["JlmsqhQLaEXjjxibQICBe5gZ65o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X2eJhlDHT4lZnX8UsXa0oOGBJK93gZu+0H90YRsnhH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:38:47"]},"IP":{"Case":"Some","Fields":["94.156.175.120"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stormwind"]},"Identity":{"Case":"Some","Fields":["Jk6Mo4jz0ACBzX6R1sQnLASLavk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TxFrzOEj5eMqkAR7RzJMzXrt0MhWK/mAS9z15rnvC8Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:27:11"]},"IP":{"Case":"Some","Fields":["178.132.0.6"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["msBobo"]},"Identity":{"Case":"Some","Fields":["JjkH6dSPvq5uZLEMYorovfRmhps"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/gizkXO2p2dDnzyMkyN0cFhkz4r8vs0wV+dq1zO/tZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:39:28"]},"IP":{"Case":"Some","Fields":["37.143.118.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ALiteralBird"]},"Identity":{"Case":"Some","Fields":["JisLdJyQiERqVSHE6YFz3tgV/Vo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["seCJw+33AxLYFJmfvBAe4gV4AUeKbK5PpaTVVdQcSEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:11"]},"IP":{"Case":"Some","Fields":["209.35.33.41"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rockers2"]},"Identity":{"Case":"Some","Fields":["JihrnezidY63nYV5K23vwaHcwZI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BpPezVtp9v18l2hZyC5EO7Adu10lCJ5tqmiS7rxMZqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:08"]},"IP":{"Case":"Some","Fields":["174.128.250.166"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Q"]},"Identity":{"Case":"Some","Fields":["JiIK6hiLjQ5Hu1QeGmFus61wKV8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8yeQ3cIAnG2TsnyqHaQptq0df9Jx5oAKYJhjEdX7/J4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:39"]},"IP":{"Case":"Some","Fields":["78.47.221.71"]},"OnionRouterPort":{"Case":"Some","Fields":[3451]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c17:1a1c::2]:3451"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["russianalbiona"]},"Identity":{"Case":"Some","Fields":["JiDucdbrSGE1NicvdJDrjaZ7g1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6W9VD0sSwWB+F1yNXDkudkI1Sim62lE53/r/c67b0ME"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:00"]},"IP":{"Case":"Some","Fields":["136.244.87.205"]},"OnionRouterPort":{"Case":"Some","Fields":[39910]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6c01:e9a:5400:3ff:fe8d:b35f]:39910"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["SabaDanielRelay"]},"Identity":{"Case":"Some","Fields":["Jh4p10DrtfxVk/rLZeTNeOkzJm4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["65GUagmET+ceF0PVIi0eske2TviZXROzzwwyHowxw64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:05"]},"IP":{"Case":"Some","Fields":["217.103.30.38"]},"OnionRouterPort":{"Case":"Some","Fields":[16793]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gymli"]},"Identity":{"Case":"Some","Fields":["Jgl5orLuxDuRRS2Tee0PntdEtJ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qlohq/nMXPvBJscbrOFG3Cm7Fo3JycUNUywPYDDd8/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:48"]},"IP":{"Case":"Some","Fields":["152.97.142.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homik"]},"Identity":{"Case":"Some","Fields":["JfQzU1FohTPK7b9NZVgejTJCpcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gi+gUhHFg0U2xLN8MqaVa/FBYeCwn8bIFZHVbIvdUiQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:40"]},"IP":{"Case":"Some","Fields":["139.28.40.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darrieux"]},"Identity":{"Case":"Some","Fields":["JbaU6pX4JfFWxdrlYHszdehsDE4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PfaowiG0pxXbf/9xYnBREv+hJiJBlRcuxeos2okefVo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:47:26"]},"IP":{"Case":"Some","Fields":["153.92.126.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mrrm87"]},"Identity":{"Case":"Some","Fields":["JaPJLrEaFAsAZpXQAJ9urq88Z4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FiB7a2ZwtjP+o3WkZbhsvuJIKEws/NOZ5lwgmL6KjNI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:31:59"]},"IP":{"Case":"Some","Fields":["89.212.26.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Proflay"]},"Identity":{"Case":"Some","Fields":["JZdqbe4FcW4MkrdsoH7ns7zIEno"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["u/0DYn2MzggF7q6KSNIlZA5A/pPeWScFNjAyHghxvXY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:56"]},"IP":{"Case":"Some","Fields":["91.22.189.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarkabianRelay"]},"Identity":{"Case":"Some","Fields":["JZT3wNLsCrGyaVc1cMYajupU1Lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S4yuOUmHh9I5nNUneQW5TaydeJ/AEUrTmwhbrr6O6W0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:32:59"]},"IP":{"Case":"Some","Fields":["135.125.235.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::500e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Luxembourgury"]},"Identity":{"Case":"Some","Fields":["JZB4x0yyMJaaavzYU1wLNa7P+Gg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3ZKMRKEt+VoMnw8VzVwgkPvOQi+Jv0U5BhuFcFk56U0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:35:51"]},"IP":{"Case":"Some","Fields":["107.189.30.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f414:42ce:c612:dab8:1337]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fancybear"]},"Identity":{"Case":"Some","Fields":["JYotr+y7YYU8iKKBFmsPW1ihbGU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["07Qe8hhoATjhTBY9qSBaRNF7ebA8XI7ngn3yHhtbhqw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:15:19"]},"IP":{"Case":"Some","Fields":["31.171.152.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galapagospadda"]},"Identity":{"Case":"Some","Fields":["JWLUY9FcPDg1FOfWEXYFBzrEedk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tojHClOO2qS762av7Uivh8cJj2kfj1r9Qe/ArCAmmPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:45:44"]},"IP":{"Case":"Some","Fields":["90.230.21.81"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mesaplata"]},"Identity":{"Case":"Some","Fields":["JUwKlqJPY5/vtJoMlIR97xWK+q4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8JfWvgKAnlqRRJKgb8NfBQ2kkPKfGLW876WdTq9CwHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:21"]},"IP":{"Case":"Some","Fields":["45.89.54.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["porcelain"]},"Identity":{"Case":"Some","Fields":["JT58aAL3W9VGFocmk6WSLtKhU00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tNYhCH/apeGRqvQa++ZMpYaBtjzqpcO3fek5RPSAPXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:11"]},"IP":{"Case":"Some","Fields":["162.251.119.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt27791"]},"Identity":{"Case":"Some","Fields":["JQCdn6VdiWGXR5lakIf01mzoYnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EnR3ZurZ7AbpPmmlKOxVsbpOfOCyuYhjoJ9PzefObGo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:17"]},"IP":{"Case":"Some","Fields":["185.245.60.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["JP30dUuzd1ptVOB43LvKQ9exsH4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oMlk/llEAKSRvQeQ7dUiG/4S40AeS+XA5luGUes5ICU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:53"]},"IP":{"Case":"Some","Fields":["185.220.101.36"]},"OnionRouterPort":{"Case":"Some","Fields":[10036]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::36]:10036"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShinyMetalS"]},"Identity":{"Case":"Some","Fields":["JO8YK074Lk60eJi6gcslHW4ohbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7JpxRI60qcfOzofqlLi+amuCnnBBlFjrkKpwz2GvxCc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:16"]},"IP":{"Case":"Some","Fields":["78.107.239.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bastet"]},"Identity":{"Case":"Some","Fields":["JOLxORIdQ5TFS1vMNos7QRhXxBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aNeQUoLjfc/hW2NaycJ6+UMQmbm8gLvT9N11I90afj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:51:18"]},"IP":{"Case":"Some","Fields":["204.13.164.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:13:4000:6000::1000:118]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54"]},"PortPolicy":null,"Flags":["Authority","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sjmulder"]},"Identity":{"Case":"Some","Fields":["JOGFcJTaZPN4CcuQpOlTueKpF1w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HnlDy4f0YdvlDfEB+DSuiE+WQ80MDPHXypz38ApfZD0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:30"]},"IP":{"Case":"Some","Fields":["149.210.205.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7c8:aab6:8::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["stealthynetworks"]},"Identity":{"Case":"Some","Fields":["JMTbEAwZqxfRw3/GVOtKVajNVQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["990+YnNhUkct3osSBeb5pd2BYtt/VFXWqBsg05xQrqE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:12"]},"IP":{"Case":"Some","Fields":["91.208.162.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5100::186]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Scrubsss"]},"Identity":{"Case":"Some","Fields":["JMMSxlZ16Az8cp4EYA0NndJzefQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kejiskfTpJDzDQQ6K6gruM/u8B6fFi8HcA0VoOqFOaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:24"]},"IP":{"Case":"Some","Fields":["51.159.59.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobseg"]},"Identity":{"Case":"Some","Fields":["JL4N1FIiK4/DMobcFgrpAMdpdNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kF8VEQp+/Jy4f8AjYTv878u2IWDzdKp7BFcitX2eO/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:02:51"]},"IP":{"Case":"Some","Fields":["116.88.104.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bennytorbot"]},"Identity":{"Case":"Some","Fields":["JLg0IxdJImc7sa9Ds4lCkF8c4wA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O7nGT5AOpXg+/tXiviPukSR8gFCb8nN9HKSylJPrNQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:35:02"]},"IP":{"Case":"Some","Fields":["204.83.204.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f17:273::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["goingin"]},"Identity":{"Case":"Some","Fields":["JKgY2fHgnxhF/BWJ3lqvFcjghn4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cYarjHfecKTBfncorfQrkyrVrVNb64v31VxFHUQyx/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:11:46"]},"IP":{"Case":"Some","Fields":["162.251.116.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonhoard"]},"Identity":{"Case":"Some","Fields":["JKF6TB+owhCKzeO+aBsHMThL86U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Efev4rZbXy8PZvgYqJ+NJDL8Escl1LQdqCjT73xjr5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:02:44"]},"IP":{"Case":"Some","Fields":["159.69.21.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:2e49::1]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JKAoC+/P8xgH2p31yR/gzYtxuok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvWwHWB72QiOedckoChZasBJ1DB/fxTPZB/3W+glM0Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:08"]},"IP":{"Case":"Some","Fields":["5.255.102.57"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:dd2a::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay16at5443"]},"Identity":{"Case":"Some","Fields":["JJw6XtixqNIaOFPuc2b0/5Zt1P0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WxZYSvpk1OagBOkKJMD+JfDEFOlCFuXOalNwuqX8czw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:47"]},"IP":{"Case":"Some","Fields":["140.78.100.16"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Illuminati"]},"Identity":{"Case":"Some","Fields":["JIqWsqiKPqsUaZuQls5qv3fQYGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2uDIImiINp32ibkphJKz8YraKJ27yfXHlGTiKRJW78w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:29:33"]},"IP":{"Case":"Some","Fields":["87.118.110.27"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:1:3935:104:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aztstx11"]},"Identity":{"Case":"Some","Fields":["JIQH8ftPq6/5Pe99uVTi+uS2o5k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZwVs/O9V+EHG179yW+YpeAbsh4S+mCq4Y15373ZTq94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:01:00"]},"IP":{"Case":"Some","Fields":["40.112.177.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["atacama"]},"Identity":{"Case":"Some","Fields":["JGRFbCh+cVg6bq38+ClZcitulv8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JvDJ8CI30peUo5vexyg84ShWNL/oZ/Bl+ThojoYEfdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:05"]},"IP":{"Case":"Some","Fields":["85.119.82.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["JFyI5TW7fYC3tDs2q1swDWshSkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nkEoIco5yEEe2h9wZASIVyz/BJ36ZP3ntsboe5kuxP0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:52"]},"IP":{"Case":"Some","Fields":["185.181.62.16"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:2603::fefe]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JFU4xeM56pm/F9/kfFemNFQORPg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["miS8HlkvEJZAskmFdgSC0qQ4Zut95assFeOV0sIKRcw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:17"]},"IP":{"Case":"Some","Fields":["188.127.235.185"]},"OnionRouterPort":{"Case":"Some","Fields":[37171]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Luna"]},"Identity":{"Case":"Some","Fields":["JFI+ewBJg+xMpQM+vJtyk/EvI3w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Sxj+ZWOF6FzpxUSZwQgN2XEWI96qPT3qiHfLdldy2+E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:25:38"]},"IP":{"Case":"Some","Fields":["51.81.93.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=51000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["JDf82sRThfO/qALwFy98Uqbc9VA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j2pXyPfnyZd6xkaaqRPdgz8iY+S49vxyosUNLY8hSOY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:31:06"]},"IP":{"Case":"Some","Fields":["159.65.50.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Magic"]},"Identity":{"Case":"Some","Fields":["JCLdd6R5cxD4JrEkg7CAH17fNRk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ED7UkHKcdSO0c5gaeek3Jk4Zxeqf9wRxn771KFTGCZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:31"]},"IP":{"Case":"Some","Fields":["131.255.4.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FriendlyExitNode4"]},"Identity":{"Case":"Some","Fields":["I/dNWB3pKsWdNSfeTUSOA2E52B4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QJwRrKXln8UhVMZY1BdU25b/Qq+Ne23UQAmqwORnTPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:15"]},"IP":{"Case":"Some","Fields":["209.141.45.189"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imissfrys"]},"Identity":{"Case":"Some","Fields":["I+HsonJ9JKBbNAfApobQup09GiY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XEtwSlrpWBL6rsRdU3bMrpSMdz96oNBjfbgArJVFJ6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:18"]},"IP":{"Case":"Some","Fields":["103.163.218.11"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["I+CGX1xh2OaM00qe34FwzBeet60"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5N77AT7b6stoHQmShPVWLJ9fMOEwcGjaAovLMRAo49Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:00"]},"IP":{"Case":"Some","Fields":["20.48.104.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=490"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["esko"]},"Identity":{"Case":"Some","Fields":["I9wpXXcdUdqYEAjRuXAqA8ZEiNg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RjNnXexD5emey0hHjxcvZkgXe2qS3PHJdxCi8CIBLyk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:02"]},"IP":{"Case":"Some","Fields":["188.127.197.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay38at5443"]},"Identity":{"Case":"Some","Fields":["I9XYIZqOt2EKszz61Yn9cqhENWo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2F1vATbVk1sKMBu94f7HdRRBJu8EVBdR2M9g8N4To/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:41"]},"IP":{"Case":"Some","Fields":["140.78.100.38"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pipepipepipepipe"]},"Identity":{"Case":"Some","Fields":["I8LA/UZga6snQ9B9ObLO9/R7Djg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M/rxf3XFRpVuFtW0v1nJp/c8LxK6CyoAppssODGZ4QM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:06:50"]},"IP":{"Case":"Some","Fields":["35.178.146.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a05:d01c:ac5:8100:6bf4:80ca:8500:db07]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.5-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Relay01"]},"Identity":{"Case":"Some","Fields":["I8GMgBDqyD7IUaObJeR1rIKo74o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OY2vJorB4+wJdCLYCy3xRRlu3xtRMxtkL8ZYNdPuWEY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:56:42"]},"IP":{"Case":"Some","Fields":["187.63.100.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2804:538:0:1::24]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reddragon"]},"Identity":{"Case":"Some","Fields":["I7zX8IYO+z3S/L9k2UQWPStLY5U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KWfjx+oZoTKEC2V4j8OGXQvZsWxV0csy2aCpa/StaXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:52:39"]},"IP":{"Case":"Some","Fields":["15.204.172.16"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::1a34]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FrostShark"]},"Identity":{"Case":"Some","Fields":["I7q0qbG39VNZnNga7VU/rLezUhA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aEBQTzu5scARUD0GjMmdZa8dVxvwOsTmA6bM4/W3HOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:59:34"]},"IP":{"Case":"Some","Fields":["91.193.18.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WedosCZabcdef"]},"Identity":{"Case":"Some","Fields":["I7nAh3WrMb929mgsgTXmN//zHng"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QBOuHZDfkHMgZ/QvnOYYYn1g/90Qq/4/dK2RYVFiVpY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:27:55"]},"IP":{"Case":"Some","Fields":["89.221.220.126"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:97e::1]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["I7SVIb3EWIx8zzw45VJQQRgya2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LknEk3K4ZcplGrPCd2h0duFckLnpalC8WBbAAcM5x+k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:28"]},"IP":{"Case":"Some","Fields":["185.244.194.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apostate"]},"Identity":{"Case":"Some","Fields":["I61rFlE32VfAmqD3o+57Bc7EqPI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sEHPA52ab1/3yhfKUD895OAELMSMfAeUZuh6sElhBjA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:07:58"]},"IP":{"Case":"Some","Fields":["51.15.62.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:182c:916::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.3-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VarenykyRelay"]},"Identity":{"Case":"Some","Fields":["I6AgwQ7X4/hWCAgLYimE9BsuDRU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["04SAvCVj5r+KqklslRub0W/cb+zxmHaqGRjkp4fLdBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:04"]},"IP":{"Case":"Some","Fields":["95.111.252.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FamGuyFunnyMoments"]},"Identity":{"Case":"Some","Fields":["I5i3/Wycl6IP3X5jfL2tF11bdh8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzuYQbIYcGtH05ajGUxzionk+mjJzUDDIsNnn4/KQPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:21:13"]},"IP":{"Case":"Some","Fields":["45.15.23.77"]},"OnionRouterPort":{"Case":"Some","Fields":[42069]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1d80:1:5d9::1]:42069"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["I5Ls0UgktGwPLqrEhiukDsm5MK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yhyH3ikBXHoaDvxVFnSWb9NtDysMnKp5jFRHk/xxx+M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:48:40"]},"IP":{"Case":"Some","Fields":["104.244.77.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["I5CzAwWPXsHhvqruzjqvLPl7cfQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e+6vqa3m13CtxKQKhpWhTdQIywqmv4iXzySpHmaWZEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:39"]},"IP":{"Case":"Some","Fields":["185.220.101.47"]},"OnionRouterPort":{"Case":"Some","Fields":[10047]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::47]:10047"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thevine"]},"Identity":{"Case":"Some","Fields":["I4fhI5T6PmrVUaIXbtF2K9sDupA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TzUeil80zTDlEjEQ8AalOzLXwO4FfjHyjrZkzXSefGg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:45:09"]},"IP":{"Case":"Some","Fields":["113.20.28.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vShieldxVirtuo"]},"Identity":{"Case":"Some","Fields":["I4GZtHuhmY3Drx0rCToKlo5PNvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["slH5FIbmByGpYTa/D//8kQxdj9EHRjRbAjMgpYbY/1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:28"]},"IP":{"Case":"Some","Fields":["38.22.104.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nightosphere"]},"Identity":{"Case":"Some","Fields":["I2Ba3hYpjKFSzGLwx1k7PrV70PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fLZWAnHW/JMBoa4/vN41coXtLOieCITWPSVmha1a0Fo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:46:32"]},"IP":{"Case":"Some","Fields":["185.104.142.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation54"]},"Identity":{"Case":"Some","Fields":["I100RCNqvCj0Euk4FPa3gyANRjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rr8mrD+n70DXdzNCB3sP5SVxnq4wpIvkJydnauBq4hk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:31"]},"IP":{"Case":"Some","Fields":["51.15.249.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bigfish"]},"Identity":{"Case":"Some","Fields":["I1tJns/ZteXGBpf6qoBaKzIO7/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iYCtSFNt1eV2z5O3tIGH6KZss0Xw3zJ8FOMYacEQyhA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:43"]},"IP":{"Case":"Some","Fields":["5.2.76.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TK778"]},"Identity":{"Case":"Some","Fields":["I1qW1sFIm1BOTcs1whydzKAeR1g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91gTvbirbo/M18K2pZqtLjXwlU+++bS2EUmCpLG4o5E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:06"]},"IP":{"Case":"Some","Fields":["46.226.111.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["soP49mzpYUFEwVdiFN3"]},"Identity":{"Case":"Some","Fields":["I1OWg4u4/Hr6UpBCsZYV354q8hg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["suc5DSVukWbZCudnJP4MDBmuDQ5pViXZT9GsXv+XPQU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:15:47"]},"IP":{"Case":"Some","Fields":["68.67.32.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CH33P"]},"Identity":{"Case":"Some","Fields":["I1EtZPih7BGJ8VOjvHStdtI0Pfw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qpv18WUwXzhJgcS5BmNwbs735KR5rL03VryyGRes0Ac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:09:13"]},"IP":{"Case":"Some","Fields":["185.247.226.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:2:18:4348:2d:3333:50]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ceres"]},"Identity":{"Case":"Some","Fields":["I01nDqp5Twkve9dY1dKqf04/++M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zjPSQYwJMrVjZr+akEwnfiIeEJ7I/nJU0zxKFGOeDqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:04"]},"IP":{"Case":"Some","Fields":["45.13.104.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:cbc0:1100:1a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Pizzahut"]},"Identity":{"Case":"Some","Fields":["I0sG5NqRXVJ8iX4h/R6fCAEuKWI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ygNUf+A7wbbWIfy7oloarQz7reIWPYuXVOESosXGy8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:45"]},"IP":{"Case":"Some","Fields":["5.254.118.189"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["king1337"]},"Identity":{"Case":"Some","Fields":["I0d4r568WZaQM2hK2IlTAGM1l8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["F+hCS16MtZ0QdxwO8M0VaSRVVxLBQAVIot1wueiMciI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:18:04"]},"IP":{"Case":"Some","Fields":["90.187.138.41"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv02"]},"Identity":{"Case":"Some","Fields":["I0YqTbppdYv8tMKJiQWH6ibUZUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aqMJlHu5Pa9ZaVvC8WQW9x75KVp2UvirAaIS1PwsFFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:17:17"]},"IP":{"Case":"Some","Fields":["162.248.162.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer22"]},"Identity":{"Case":"Some","Fields":["IziOX515FvhP6ZhhNJF4o7x+C1o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xR91ADmJw4k2/AMox6lNjpGsPfVY1KzdAXBvNqjPiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:49:27"]},"IP":{"Case":"Some","Fields":["173.208.190.11"]},"OnionRouterPort":{"Case":"Some","Fields":[8122]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["Izgw8KBS84RXiWB9HsFUV88V+a4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XDzT5rV1ZYSjBpwgsRwj6KSntNOFCQo+QrHcXNkspRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:55"]},"IP":{"Case":"Some","Fields":["151.80.148.159"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BigBang"]},"Identity":{"Case":"Some","Fields":["IzMPICeh2sp5KrHjeuHPD4fzcLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3tld1R9LzG+Io1L0wgFdGt0l0ulsMy8vmo6rMhLNtiU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:44"]},"IP":{"Case":"Some","Fields":["85.214.173.197"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:420f:7b00:b712:1cda:3513:2005]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PaxyTorProxy"]},"Identity":{"Case":"Some","Fields":["Iy+V9EBZeAxYOnMyt2cCrV4RqYA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6LAJ0gKUUPcXLwEZqa2sYPGYxrzf1cMKoxUD484SgJI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:05:50"]},"IP":{"Case":"Some","Fields":["217.24.20.31"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:2160:124:d8d0:96ff:fe60:a00c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parabellvm"]},"Identity":{"Case":"Some","Fields":["Iy7U7UzGoq8cVaYs43JeXapNGqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TnJXZEIAqnplhfFmnQUPjmCjKTvsOPIF1V9x6xVFCKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:58:17"]},"IP":{"Case":"Some","Fields":["178.128.38.182"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::bfe:8001]:8001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pgmr2Relay"]},"Identity":{"Case":"Some","Fields":["Iyfuc8C8INvAxNKBwJ19MwfC8bk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4ZAjqujHVQjFANjy0SC1EvOL3Av/vvL/l5xTBm7ogIQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:53"]},"IP":{"Case":"Some","Fields":["77.191.135.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:6d:417::b10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["organicloaf"]},"Identity":{"Case":"Some","Fields":["Ix3KoACDfFQmkK1JKN9X9yhlgGo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wBHwpDiosC3tx1I49hSwlbzWZRd+lg6j8AUGxxVkRcQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:29"]},"IP":{"Case":"Some","Fields":["51.77.100.58"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VTIPrivacy2"]},"Identity":{"Case":"Some","Fields":["IxVRZQy5Nwc737udrsoik7dCjSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZvNWbV8o9im4o/JMpFvcDpmUpVgdyTjV3ErG7WQpUSQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:25"]},"IP":{"Case":"Some","Fields":["82.221.128.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Iv+egcJu9gWGzG3G4X2nig2LeOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nqGfvzxmTht9GX+98x4bHQqEphrOFXkEuuiIS2mMfdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:33"]},"IP":{"Case":"Some","Fields":["80.64.218.61"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1bc1:56:1000::dbb:77db]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MakeSecure"]},"Identity":{"Case":"Some","Fields":["IvdOF2+ANJnU+A2c59MliDqMDkU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pw6SqswLpu/XlB3TCqIrmlsn4thiDDekH5d476htiBU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:01:25"]},"IP":{"Case":"Some","Fields":["83.96.213.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Cat"]},"Identity":{"Case":"Some","Fields":["IvCqhhp067e0o+w+qeKNZ1D0d+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qUIa9BMOT0JZtwX8iXPGu97m3Fj4Q7SV5cztVq/DZxE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:39:07"]},"IP":{"Case":"Some","Fields":["185.100.86.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Gijsje"]},"Identity":{"Case":"Some","Fields":["IuvMChX6SFDQ2Km8YhykIiQzjvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uo6xx7o9W/fzCnKKAe8foFCKs9Pp1sM/sdxpqx6+MQw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:26"]},"IP":{"Case":"Some","Fields":["192.42.115.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9004]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:610:510:115:192:42:115:103]:9004"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hydrogenuine"]},"Identity":{"Case":"Some","Fields":["Iul1k1unfqWaKOoaqDh/kGA0/L4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IixpZvF7kWCxOoVIfxgqpPzB0ATISA/HWaO1+KpcrGM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:26"]},"IP":{"Case":"Some","Fields":["172.104.208.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2600:3c03:e000:19f:0:11:11:11]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["1804m1"]},"Identity":{"Case":"Some","Fields":["IuHR20cjoXTnE7G/QHPawcJTUbM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z/UCeACp+YxDd57T81SJ38jsEMF3YP+1Xv1UGVK0WFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:16"]},"IP":{"Case":"Some","Fields":["198.211.103.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:400:d0::1516:c001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ItUnIBkyOZOaWVlS+9XnMfAH5OU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5Ar75O9Hw59WphTCklirQaNwRXPVca0IiaiSaznqjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:52:32"]},"IP":{"Case":"Some","Fields":["51.15.120.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2514::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poolparty"]},"Identity":{"Case":"Some","Fields":["ItNvUF+cFw68LefirRwvIm+h6aU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MKMwNLvbknWlXvrDRlg2g1wN0UEJN8GEuybkD0/DYYo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:17"]},"IP":{"Case":"Some","Fields":["85.119.84.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:ba8:1f1:f166::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Pegase"]},"Identity":{"Case":"Some","Fields":["ItIxS8UUaJCo5cGciE2WwMv+qiQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noaS+ns4REYJBZE0jvNlhJ1bzztlBOa6ZlH7NdRZKss"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:29:32"]},"IP":{"Case":"Some","Fields":["80.67.167.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:cbc0:1100:7::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Is0Nk/qITiSpQekVE/ycXQjA+JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hN8jovT3xJPAKFTzWWKBz713tZVYYXktToN8acBIFn0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:24"]},"IP":{"Case":"Some","Fields":["137.184.82.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra30"]},"Identity":{"Case":"Some","Fields":["IsExSGeSDaNwAdrRpj8dXKv52xE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9SnHQj5WBHEu6dO/wYdwGMItKjI5/jd4IsMSg5YjzNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:19"]},"IP":{"Case":"Some","Fields":["213.164.204.90"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fastnet"]},"Identity":{"Case":"Some","Fields":["IrzQ39FIIJyYYMf4mQerTe6XSgg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bhul5Prolq5BWp79J8xNit/lgQPLoPSTjY2e3I3H+jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:36"]},"IP":{"Case":"Some","Fields":["95.216.115.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ph3x"]},"Identity":{"Case":"Some","Fields":["Iq2yahzNiPn0va6IpKX06SBxXVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AtZSj7To2zZOTsIZi7+c0Oi/Gtfh4CQvKQgzxrbBaYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:31:26"]},"IP":{"Case":"Some","Fields":["188.118.198.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:858:2:30:188:118:198:244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1146"]},"Identity":{"Case":"Some","Fields":["IqAo6qO9dztX5rajNejBIfmXOBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Fs02txdVhre6JUKkHk6IdMHViz9Qp0W0Jk6hoMMtVN4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:38"]},"IP":{"Case":"Some","Fields":["185.220.101.146"]},"OnionRouterPort":{"Case":"Some","Fields":[11146]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::146]:11146"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange021usX"]},"Identity":{"Case":"Some","Fields":["ImWDaOWqB1rqrMGQda3BlnCncWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g1ML35OPQoR4AbP/TB0B9JcxoQoa0lC1OWSqCPWbrAY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:48:49"]},"IP":{"Case":"Some","Fields":["107.174.244.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HermanRimm"]},"Identity":{"Case":"Some","Fields":["IlturHWonTC6wvzHGC0Bh8HE12I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PQ7cNARB2ifIKGxRcNY3svkIl7HbMYKjnnbENdO+DzM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:52:02"]},"IP":{"Case":"Some","Fields":["5.132.7.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Manureva"]},"Identity":{"Case":"Some","Fields":["IlqOo2ffMHNDPgqEXd2ibSNX5MY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hFp0tEqy5J3KD5yeHynCuR6ZF0G+YMY1UKI1oCiO+rQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:51"]},"IP":{"Case":"Some","Fields":["82.64.243.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BADBOY"]},"Identity":{"Case":"Some","Fields":["Ilj+Dr1XTfyhdnDhtH7eWnXZdMs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["L3AwzhzHkNl7e0SVSPMEd6XITLJ4UOCZqqxR5ytSebc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:08:56"]},"IP":{"Case":"Some","Fields":["31.171.154.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","StaleDesc","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0145"]},"Identity":{"Case":"Some","Fields":["IlUuwc6hSmtBj6noR57e+weVNfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["urKlQ0z+aRnzYTzjT7c1yY4T+IG3pXwZ1alK7UpM660"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:07"]},"IP":{"Case":"Some","Fields":["185.220.101.145"]},"OnionRouterPort":{"Case":"Some","Fields":[10145]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::145]:10145"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nasiOne"]},"Identity":{"Case":"Some","Fields":["Ikw90d/28RIZYEhw1IlTJJ7jwm8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DVvOVdshA8UFACLpVxgNqSE1T7TBUsW3q+60HPh6bNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:05"]},"IP":{"Case":"Some","Fields":["212.51.134.35"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev7"]},"Identity":{"Case":"Some","Fields":["IkBKPofy1/4vxjWf3nG23C1ucw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P4h1I79N8Oy9a2GjLYqinsVgwcoVUHE8H34DvhShvYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:26"]},"IP":{"Case":"Some","Fields":["185.84.81.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:248:2:41dc:5054:ff:fe80:10f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ip7a"]},"Identity":{"Case":"Some","Fields":["Iilstq5WYJqW8C+4Q6t7SwoxyvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["chhV6dW44XEwzdxZ1zYCZ5Dx0JRSzBH1nO6mPPXkO6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:20"]},"IP":{"Case":"Some","Fields":["185.220.102.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::254]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["IiRuVOfHNhsv772fZ3ZsK2pwM6s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["izU7gnqFGmn6/USmmO1BfFuA2zESZ5G/qsIkib6hYTo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:13"]},"IP":{"Case":"Some","Fields":["188.68.56.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Ih8DWjMKxCMaLj2QHxyxFIPBn2Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A39c79eVbWD4jmIA/VuGeT4Or0bsYZhqQxglkYDUGDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:20:15"]},"IP":{"Case":"Some","Fields":["130.193.15.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malechick"]},"Identity":{"Case":"Some","Fields":["Ih6Xa1RuYASKAZUCUDmbhTTU5Lc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0H+YGBmny7O3q4JFRsV6GGjy3426gLbH7pGdz0HxeqA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:13:11"]},"IP":{"Case":"Some","Fields":["37.187.122.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:f308::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DOOM"]},"Identity":{"Case":"Some","Fields":["IhCIEeARBX+Y1/r1LyHPTddR9hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pvzxxm0JqT8jwRYXDT402Wo8RioZ/PexYkOAB4vg0OE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:25"]},"IP":{"Case":"Some","Fields":["37.24.0.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NekoTorES"]},"Identity":{"Case":"Some","Fields":["Ig7JrQe8i2IqK0qta9pGjYsm9FY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQ5AOBCERRBurApzhgyfuKFyrUYDGwfpNotvAIBl2Yk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:06:09"]},"IP":{"Case":"Some","Fields":["193.70.65.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Woodman"]},"Identity":{"Case":"Some","Fields":["If/1lM/mkaSgO4KOlZep90+HgFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fMpQl1WMKheE9ry5JQs1UiSqn6o6GXYkcNCo7dshmGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:15"]},"IP":{"Case":"Some","Fields":["209.209.11.184"]},"OnionRouterPort":{"Case":"Some","Fields":[31289]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:112::1]:31288"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["IfuqNs4EpBYKfS2FtA6NlOg2uf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q5KfsuRny0Pp01fQwlFn2m/A6N9UnjbHHVaxH5iTASQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:22"]},"IP":{"Case":"Some","Fields":["24.48.197.52"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fox42"]},"Identity":{"Case":"Some","Fields":["IdAHhswNW9wd3s86gWTAcWxlu/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4Hoqk6NDVtQQz36l374/D9UEhxTiUeS9FQAgPVLgaMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:45:46"]},"IP":{"Case":"Some","Fields":["99.199.235.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8880]},"DirectoryPort":{"Case":"Some","Fields":[8882]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["revengeTourII"]},"Identity":{"Case":"Some","Fields":["IcnZ8WMyRiad64SnlJXoXAfoRm0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vDNgb0aC2BRxoZ3jAWkPRZpDTYptZRKrJhteFzWdBU8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:10"]},"IP":{"Case":"Some","Fields":["92.223.105.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:83:2908::9e]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["IbnWof7NQeRZfAkQ3FzSjqrzXUY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QkGgNIAkAkckF0fxNO/PKcKhe7eEgjB94vU4aWh5X6s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:52"]},"IP":{"Case":"Some","Fields":["94.124.124.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["IbVQcsAPRSKFdlX7sPPiXXWlNXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W8okhCct3+HabJcoFoafo0ORxEfJhkxd3UmI1VsWW5U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:15:11"]},"IP":{"Case":"Some","Fields":["109.107.35.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1348:14d:96dd:24:19ff:fe9a:5b76]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange013us2"]},"Identity":{"Case":"Some","Fields":["Iaxu8VyGZBzmI7igjWQUS8rBSuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7/b+7a+ze2DQIBY8v73j3NRSKHUn+QdZ5fWTo8Q6ieI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:55:40"]},"IP":{"Case":"Some","Fields":["94.26.73.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blo2okzvxytmp"]},"Identity":{"Case":"Some","Fields":["Iaf6mhapkg9JouCcg6CXQ+xXSCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aektIX/ygEyL20NH6YGSmUN7vtBPa6TzNK5m4CVyvz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:41:50"]},"IP":{"Case":"Some","Fields":["85.214.39.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:42a2:c700:b0c8:73c5:c1bf:e818]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["agxtorrelay"]},"Identity":{"Case":"Some","Fields":["IaGDqx8LIHtQoeCGh2hajZQMX4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I71oT9bUTbe2jJ44bNldVWJGGwxi4ZN0X75A3FTZq/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:08:41"]},"IP":{"Case":"Some","Fields":["80.221.44.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH108"]},"Identity":{"Case":"Some","Fields":["IaAQfgSEjmoqKy7cQ1YJjEU6Do4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eb95qq59CKMtRSVve6ubmRzv66/S7lHb79k6AFGlDoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:20:10"]},"IP":{"Case":"Some","Fields":["192.42.116.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0158"]},"Identity":{"Case":"Some","Fields":["IWZqJf+4nXS1+Vd9b6i7fqfMd7I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HghfhjITsJqMRTFmnOFJLcAcJkK3X8pgQvu4a+Pflug"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:08:18"]},"IP":{"Case":"Some","Fields":["185.220.101.158"]},"OnionRouterPort":{"Case":"Some","Fields":[10158]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::158]:10158"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["red22"]},"Identity":{"Case":"Some","Fields":["IV5mFhnNoU41QzX4HJpHX3jxzYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VD1PZdRMAmXB+b2KcZGUwAkdWIdFqR5GcWSnq9GiB8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:50:00"]},"IP":{"Case":"Some","Fields":["172.105.47.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HoarseSupernova"]},"Identity":{"Case":"Some","Fields":["IVzCjX4nOuMwjwQeRajuO6bYVlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CpvHmpEsiLRmKMOSCmB6dTrJ1XmpBT4XzmVRjWbUBt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:06"]},"IP":{"Case":"Some","Fields":["185.140.251.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange013us"]},"Identity":{"Case":"Some","Fields":["IVYWUn+5ftW+C/jSFmvbRO62qEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DUDx9sbOTc1gcRaPSMd5nk3H2AA88FPfpq0MUjWf52k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:45:33"]},"IP":{"Case":"Some","Fields":["94.26.73.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay"]},"Identity":{"Case":"Some","Fields":["IVJKK8bEJ1sv3CPw/yNEttj+wlU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4OAeXu1Vg1wnV8V2RMnfl+H/ILPn4Mt7bh/2Epkc37o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:34"]},"IP":{"Case":"Some","Fields":["195.90.212.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Polonium"]},"Identity":{"Case":"Some","Fields":["ITl+8HBFM9jLxYI4NztFjb41plU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4LwIatVeNLnQ5tXVCOoj849eLLI5xh+kObyS/2VcAEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:15"]},"IP":{"Case":"Some","Fields":["45.154.98.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tamanegi"]},"Identity":{"Case":"Some","Fields":["ITEPSAZqTKresr/TJPCzj44USNY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hfCBahlA87J4VeAMp/bkrthFs8eqXDz08nNmKAWOT1o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:43"]},"IP":{"Case":"Some","Fields":["212.89.225.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lavaronn"]},"Identity":{"Case":"Some","Fields":["IR8DPPmSzBQZxXvleRVvw0UzvVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["E2J05c+gN5sm8obGdpnZDxc0LeNn7iiGoDg1GhWca7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:51"]},"IP":{"Case":"Some","Fields":["92.232.216.32"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Rlyeh"]},"Identity":{"Case":"Some","Fields":["IR5Ob/N+OskIvZNS8kdVYmkGMxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["959O0pMDJBeKK1PAy8UNlPon5AOKERjpAj8solLpXGU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:58:59"]},"IP":{"Case":"Some","Fields":["54.39.73.124"]},"OnionRouterPort":{"Case":"Some","Fields":[6672]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nighthawk"]},"Identity":{"Case":"Some","Fields":["IRnlpLX0IBZb9d8ZpaKPRhD/0QM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZvBPzwkpPn2L1HuAuB9GvulqUaPaoOqcMwSLynxtNBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:21"]},"IP":{"Case":"Some","Fields":["78.47.36.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex56"]},"Identity":{"Case":"Some","Fields":["IRh93VUmBZV7LuWry9oOGSUSk+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eBkvFAHui3zR3uMPy7/795XPV5lgH3DGi60g7c+pM3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:17"]},"IP":{"Case":"Some","Fields":["199.249.230.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::145]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["heliodex"]},"Identity":{"Case":"Some","Fields":["IRUk6F6EiRCkkjeDnNGsNDJKQbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rj75o4i9LJFVctzRzwcsrPJtdA+fK58IVXd0QKyOIX8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:35"]},"IP":{"Case":"Some","Fields":["51.148.150.203"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay"]},"Identity":{"Case":"Some","Fields":["IQ6bSuFNeGJxBe7b2o0sPvpk1II"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oNwGKFWY5MoX2bQo+WwLEmjVLcc2DkqdLZ5v8kZKLuc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:28"]},"IP":{"Case":"Some","Fields":["50.46.237.184"]},"OnionRouterPort":{"Case":"Some","Fields":[49092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoLooseEnds02TrSrvr"]},"Identity":{"Case":"Some","Fields":["IPM0m+p4PFFyuWea5GA4oM4qxhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6BX0EWmLlbxrTUsRHcT9uBKlghDwVtCr85CJI7JsKAk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:34:14"]},"IP":{"Case":"Some","Fields":["74.208.37.24"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:f1c0:1801:19b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["enjutoMojamuto"]},"Identity":{"Case":"Some","Fields":["IOqi+u4KZLeMKUU2ujv/DXSfAOk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qY7Jor02o88MBs0amB0dAlAkHzeVNWSKiQQTQtDjw0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:20:51"]},"IP":{"Case":"Some","Fields":["159.147.104.136"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hopeforabetterworld"]},"Identity":{"Case":"Some","Fields":["IODdOtJmGV9GIOgzS0z39Ro/IQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wFrX+YPSydZK4NtAc3KgmHhbZ8Les0kLH+e3Q1WiI4Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:32"]},"IP":{"Case":"Some","Fields":["188.68.45.72"]},"OnionRouterPort":{"Case":"Some","Fields":[483]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:46d::483]:483"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ariel"]},"Identity":{"Case":"Some","Fields":["INfTFzhrCwI3gQ7Qn2DwYUfOnvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h68bWu9JErr+s+9eGTVRrB93QXN89JSu71MHF71cVkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:10"]},"IP":{"Case":"Some","Fields":["80.82.78.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:6c8:8000:22::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FissionEx6"]},"Identity":{"Case":"Some","Fields":["IM2TPtxyYLGQQEdbJP1rAbc+lLs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fjJEKM93eeVwF03ismpRSWkvbTI1jPc7k29gMQrGzCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:14:56"]},"IP":{"Case":"Some","Fields":["51.81.35.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::8c3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NuclearCat"]},"Identity":{"Case":"Some","Fields":["IMrTGSF9g3vQ+htnGKRzwk/3ihY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTYJnrXCeW+42nlN24YZRzP1x9Q4ryveaN4zEgOKyBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:22:57"]},"IP":{"Case":"Some","Fields":["209.209.9.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:ffd5:1:222::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RockyMountainRelay"]},"Identity":{"Case":"Some","Fields":["ILv/3XmeCd2a24ZbO5VggXDb4xI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WvRBOWI/6+0epkduIxGj983Dj+v818bU1YrRZVHmkt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:08:07"]},"IP":{"Case":"Some","Fields":["97.121.188.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1147"]},"Identity":{"Case":"Some","Fields":["IKG1V4QFeITbi22QAmhk7eFFQvU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2fETXfFPkLTmTMus+YOw/J6CPat0VEJgLhgJABnwF8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:01"]},"IP":{"Case":"Some","Fields":["185.220.101.147"]},"OnionRouterPort":{"Case":"Some","Fields":[11147]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::147]:11147"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohhiMarc"]},"Identity":{"Case":"Some","Fields":["IJyPgXxmJhHRKmDt5xB44j4X0c0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FshQQL81zpN7d/6c5AlT5yFu1IfMBktJJi2Mg9Pd5+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:19"]},"IP":{"Case":"Some","Fields":["103.251.167.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:6340:2:501::21]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["kalleponken4713"]},"Identity":{"Case":"Some","Fields":["IJsoty7BuO5ccEMen+gr5YCeDK4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oh4lDVyrS3aeDL3dWDTfh8uUeo4v/qeyAM74yFSiyJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:21"]},"IP":{"Case":"Some","Fields":["83.209.9.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=830"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["cvbnet1"]},"Identity":{"Case":"Some","Fields":["IJdNKOtmjmidQlYEbg4yA0N1oKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mzw6w967chkAHlzXc0O1IBSTWrgbaYzdH+XfH6MipRE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:05"]},"IP":{"Case":"Some","Fields":["46.38.236.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:2:ba4:88e9:eff:fe89:3637]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["freja"]},"Identity":{"Case":"Some","Fields":["IJa8/ruVoRNPOfz4zrB2/0GitIs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v08QEMuD8+uaE2d3p3mTcyb0njD4ra1a4qmahaL0TUI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:01:04"]},"IP":{"Case":"Some","Fields":["194.88.143.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Temp123"]},"Identity":{"Case":"Some","Fields":["IJR/jZZwMdYYEBX2vQ+qpJ/I3bc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s0q/mTEVX18w35sCpPyrSBq+NV6DgDxNlLX0a0J9HJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:13:51"]},"IP":{"Case":"Some","Fields":["18.188.59.68"]},"OnionRouterPort":{"Case":"Some","Fields":[16000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RogueSwitch"]},"Identity":{"Case":"Some","Fields":["IIHBaWskmn5m2v2xRzOFbWitthU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbQcSbpRF7/Rm4ZbKmajR3WTSyd4DFrfeMPeiWVNYTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:38:48"]},"IP":{"Case":"Some","Fields":["78.80.47.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["contabous"]},"Identity":{"Case":"Some","Fields":["IHa8UhljIvheaWsZn+aww17vafA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DhPdRWHcSicxI4VtzTOAraHvlcRX0G6D52a05S42tn0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:40"]},"IP":{"Case":"Some","Fields":["209.145.63.150"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:3007:1287::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kenobi"]},"Identity":{"Case":"Some","Fields":["IGsrjBqx4gwCz+KpE6qN4WmYD8I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TuDMnvoVz5Qg+DVA2Z1xerNYFT3E7zGjD8ChBpjOp2s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:53"]},"IP":{"Case":"Some","Fields":["51.158.154.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EpicTor4"]},"Identity":{"Case":"Some","Fields":["IGLG/kDtYynwLqyPuN47aC+ZEOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BKxqCooqClKyNHD6A9ReBVo3gwb8jJEthqpTKr6qpFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:18"]},"IP":{"Case":"Some","Fields":["62.182.84.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Arbutus"]},"Identity":{"Case":"Some","Fields":["IEd16aL6SSjhWJueYwfLPRBOhJk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IhAJXvQML1kowiGvJWBU7FzFxpuCnUubxPnW0a+Xi74"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:51"]},"IP":{"Case":"Some","Fields":["162.156.191.108"]},"OnionRouterPort":{"Case":"Some","Fields":[55000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Janus"]},"Identity":{"Case":"Some","Fields":["IEdoPd2lZCq0/JNBTKRAf+EAOBM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["srjV8TcFDTzAyXoNxoSqGLWYULTC1/h63ipakJ/L+Ys"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:25"]},"IP":{"Case":"Some","Fields":["92.35.4.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SXbqvQix9zBHtEnBY3R"]},"Identity":{"Case":"Some","Fields":["IEZfPf1396yV8xpNNXJvttgvDmc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q05lz06qpUH6nI9aAwotreWCU0KgHJ7R+XEw9M65ftA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:44:22"]},"IP":{"Case":"Some","Fields":["178.78.212.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scaletor"]},"Identity":{"Case":"Some","Fields":["IEYsul2kwtljVn0X0LcklxgRSmg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cSMhbFZiNjKbBq5F7xOQWa757+5Mykaikhqfmy40jWA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:32:13"]},"IP":{"Case":"Some","Fields":["212.47.229.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:47ac:23a::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mytornoderpi1"]},"Identity":{"Case":"Some","Fields":["IERrgbMrGXuwndxO/rFicyZp+d8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ppVCruybVVlAed6FpHmkSgmZo1pVHkSndldIHtWlQ7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:02"]},"IP":{"Case":"Some","Fields":["82.213.247.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LunaTor"]},"Identity":{"Case":"Some","Fields":["IDemVoxXcaXY/1xk/BgZJH5v7ns"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEXzpuIq6WmorSC86GqDeArnGnTcNmBv1nrzjmFcYnA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:24"]},"IP":{"Case":"Some","Fields":["66.146.193.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bernard"]},"Identity":{"Case":"Some","Fields":["IDYYZiU72xoHHX6tN0ThhwT85vE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hb4MPMwnf8lQyiI6LXv+0A7uIJewQUUDzd3BnfRR4sg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:32:01"]},"IP":{"Case":"Some","Fields":["45.92.238.246"]},"OnionRouterPort":{"Case":"Some","Fields":[6666]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=990"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["n092c7283c"]},"Identity":{"Case":"Some","Fields":["ICMG/mhaq8uEy4JTRIDFaBnSRj4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DFYlClVpNb2CIRu0o1RNmOi5JjQ3jtZswldbxjDFdvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:06"]},"IP":{"Case":"Some","Fields":["47.254.174.161"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=890"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["ICK8s3RT3BaObLe02tEZrAcvLe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rp5nl6m7lo05RN8XRPCFWJyRnene5zZ8RqVo9a/lakk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:13:35"]},"IP":{"Case":"Some","Fields":["185.80.222.158"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2498:f000:0:216:3eff:fe4e:7134]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=510"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ICCQIc6LhzL47lfTE6Nv+NyCPl4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XoiXQcsRt+elPQkWOe+4I0yBlstoTg3Hvps01Yh+tTc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:36"]},"IP":{"Case":"Some","Fields":["185.220.101.41"]},"OnionRouterPort":{"Case":"Some","Fields":[10041]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::41]:10041"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0191"]},"Identity":{"Case":"Some","Fields":["IB/3Ns80BhNLKmL+WcgPFIBFiBE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wdfCX/QaPyUAE6DQQhl7QL7+aJRqCmhOGr8C5NztSFQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:18:13"]},"IP":{"Case":"Some","Fields":["185.220.101.191"]},"OnionRouterPort":{"Case":"Some","Fields":[10191]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::191]:20191"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode2"]},"Identity":{"Case":"Some","Fields":["IBcVtlSoaJTA6jVRaMO7fD+GpkM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vpnZxIKXn+C/wfg1wVnoFPjkNMtC8kngK8NYyZ+QreM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:41:26"]},"IP":{"Case":"Some","Fields":["184.105.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::89]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DulciusExAsperis"]},"Identity":{"Case":"Some","Fields":["IANjBHPltn1NiY08lDBnC4Ox/8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zmjDyi8FxGzPEeshKfPUfOqY0rxVObkPTJEqNa9LnYs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:45:36"]},"IP":{"Case":"Some","Fields":["82.54.68.91"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mbserver"]},"Identity":{"Case":"Some","Fields":["H/TVkasO0CRHXpSWm+1Yxu+3FUg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GUJ/jEYg0qr6iGjUdbEwZSsMrFmDTGDf4u4V0DwWxiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:13"]},"IP":{"Case":"Some","Fields":["141.135.88.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thewatchtower"]},"Identity":{"Case":"Some","Fields":["H/DlIcWyCFdg7zpQ1q5AA2pED40"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DLTRm1ycNzbOX6I/HinkY2aUpj099mq1c5GcZpUQDdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:11:18"]},"IP":{"Case":"Some","Fields":["81.169.240.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid3"]},"Identity":{"Case":"Some","Fields":["H8VbblR4nLSu8fWp01xEIHiatd4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SoVqWql+Y0loT5/SBQYXNHbUXfmtBNTfWuMKG1h/xgw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:28"]},"IP":{"Case":"Some","Fields":["94.142.241.194"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PeachUnknown"]},"Identity":{"Case":"Some","Fields":["H7nMvgLPEJeOqxaUOXOsXFSPokM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AUzvTngqvBlq7RyHxgu2JiIkrq7Bb0fnAwFHVYn0Lek"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:28:07"]},"IP":{"Case":"Some","Fields":["79.141.174.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uta"]},"Identity":{"Case":"Some","Fields":["H6RuWd3ndSs+IDEubcG3AnM2KVo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nAZX3QnkrwPcOr6XyLwkSZAp6cVht9vxBUkICUVK9eE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:02"]},"IP":{"Case":"Some","Fields":["5.181.158.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9054]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:8::12]:9054"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["H6RLxRvyQW0+RMmq1zL3sUwNHAU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["t0zEbGj3Aw8uuD2APO02e0Dp0UKNpq/lFOJmm7bhoKg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:39"]},"IP":{"Case":"Some","Fields":["89.102.210.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["H5U6y/ufRM44VDt+nA4L4b3H6UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KuxK6WsiPG1W6ishjTXEUTBJm4jgfsTAN696Ecjgphw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:25"]},"IP":{"Case":"Some","Fields":["185.32.222.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:ee80:e:fefe::41]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cducksy"]},"Identity":{"Case":"Some","Fields":["H4bKF+wZ0LZGI5vEnuUBSpi0OW0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["naqRfpFEPF8pNem87mnMWSWMRSm0ieZvpU+cxwOF7qY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:33"]},"IP":{"Case":"Some","Fields":["45.61.137.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PigsAreWatching"]},"Identity":{"Case":"Some","Fields":["H4QrNHpbnHD+tYIGC/mi1aBsi2I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z7pp6EjHzdqkXiBu9e5qWPpTEepkmwpLPxtFckOFz4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:31"]},"IP":{"Case":"Some","Fields":["146.200.41.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["unitedstatesofx"]},"Identity":{"Case":"Some","Fields":["H4N0CM7OkPji25O/0vwSHti26bY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3obn58dhHTxaElkuyODv1UpJRLIsexz0X6yy5tW3QYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:38"]},"IP":{"Case":"Some","Fields":["185.112.147.58"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toreto"]},"Identity":{"Case":"Some","Fields":["H3qtrr1hQdzqMg/oIdws+OfkS4E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mG2euJXcss91zsHudOBOOj9eSYBdAZDZluf5U0k9aYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:23:19"]},"IP":{"Case":"Some","Fields":["79.143.186.17"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:2009:4845::1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ballers1"]},"Identity":{"Case":"Some","Fields":["H3ct2T2iCmdF4zS6/8e5dlh2uxE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ntxIbTMT6Aic4o6RakkS+Qi6oGOsrbaV7aSIDOCOkpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:09"]},"IP":{"Case":"Some","Fields":["104.57.231.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VPSRelay"]},"Identity":{"Case":"Some","Fields":["H26182SdJXYkDJ0TR4lfbIoLeGQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["42cdnA5reaD+2eC9X07ss6du7cvlUrZWfRIauHF1fvQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:55"]},"IP":{"Case":"Some","Fields":["51.75.170.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9040]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dao"]},"Identity":{"Case":"Some","Fields":["H2q9CG9AuJCjPJPMRgbuaLMclVY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zCH1uozzVQYDvNDxLtE4q9d+GhYy8OsSxG+kAHIJqpQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:55"]},"IP":{"Case":"Some","Fields":["199.184.246.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:124:1009:1::171]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ripterry2"]},"Identity":{"Case":"Some","Fields":["H2Q5J7z4vehb9HpeOs7WZjNUUfA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S+g0roXpEdPXuAvWYWrSPa+16QgrbqJIfFduEUJVUYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:16"]},"IP":{"Case":"Some","Fields":["70.109.131.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Perlman"]},"Identity":{"Case":"Some","Fields":["H2Fu+ufUVpYENy75YM4nvMiQYKQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lk/rNjC0Dwxsh8DqmmwG+8NO/WyIuQ5PWMORqtHsUUA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:40:52"]},"IP":{"Case":"Some","Fields":["45.76.86.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wut4"]},"Identity":{"Case":"Some","Fields":["Hz/kQmO7I80sLwiL3SbvkdLjeLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rps6DA2K64etwR+VEMYFBCk/W3FCLfhYRwf+sS1oHKc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:09"]},"IP":{"Case":"Some","Fields":["54.37.137.112"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::1a6e]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ibksturm01"]},"Identity":{"Case":"Some","Fields":["HzuPlSJj2+6L9VE8XRIOu1mz3ew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdF5uGjFa7OF+1e4MVq90/7Su1W50gzDxe3MmoHbqWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:31"]},"IP":{"Case":"Some","Fields":["213.196.191.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b441:8b77:46ff:9406:c292:7673]:9080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Cerberus"]},"Identity":{"Case":"Some","Fields":["HzmOIOyHY/wt2Je82jfuJMRgaeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Xt75/wIjQGbrkdP/4/Wy7lk/p1aBS+CxmAtnrcnVTg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:46"]},"IP":{"Case":"Some","Fields":["85.1.110.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WhiteGoldeBlizzard"]},"Identity":{"Case":"Some","Fields":["HzU+L6vOgEkrFWVlorVDmvgWOCc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qige+tsGdzrP9xCP93XTIXY3A2zu9Gxt3FpmmqDht6E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:38:27"]},"IP":{"Case":"Some","Fields":["45.86.209.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f303:463:374::5ce7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["euphrates"]},"Identity":{"Case":"Some","Fields":["HzIpSQ+0Rkjj7m+MPuozu2zpdnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xL7CQfGBKttMy1CMJdjfcShoRWo7FFaN8UUmq4ylG+U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:14:16"]},"IP":{"Case":"Some","Fields":["162.251.116.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Hy9jTW2Hz2xTWME2f5vV+SbO8/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6P+sYT3kRmQRKjey8FCv9Q8piuXvAOKUKvn/ZOanyk8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:00"]},"IP":{"Case":"Some","Fields":["188.68.58.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Citadel5"]},"Identity":{"Case":"Some","Fields":["Hy63AmjOnhjOhk1E15PiCR885yw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RmhjYf/nREd26VahyccNgc0TuKgRF/YQ8biQFsNP0Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:34:52"]},"IP":{"Case":"Some","Fields":["46.4.57.75"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:140:1465::2]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HyTCXgqX9Js/MZUCeATqhQc+0aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fOzpK2TuTZBocxt3SvKTUIlIXIRexK2An2M/eoHMzj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:55"]},"IP":{"Case":"Some","Fields":["185.204.109.7"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plutoa"]},"Identity":{"Case":"Some","Fields":["HyB3vwHK8j+BnUiSqJiDGWq6hCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RNJZovZMrHR/hldYT86e472YaxQRCitny5cZNhhJOkU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:35:46"]},"IP":{"Case":"Some","Fields":["37.235.48.247"]},"OnionRouterPort":{"Case":"Some","Fields":[7654]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:f80:48:37:235:48:247:1]:7654"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Hwy/n53h43L5abox0tIU88pd3s0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6q5UFBJO6+VupvHGgmrQkk9BzpUyuc8v0RC9ALoMa4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:29:34"]},"IP":{"Case":"Some","Fields":["37.122.208.220"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sepiidae"]},"Identity":{"Case":"Some","Fields":["Hv8nBNGb9FMFu8ylPitZo9F6buM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QTWIpq5HSpULwT4c1eM6HMJMJIUQybvVnlI80rH2i8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:00"]},"IP":{"Case":"Some","Fields":["172.0.47.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cb1820"]},"Identity":{"Case":"Some","Fields":["HvuszSigf9ateqbxKTF31xOX6Rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+IGRuJDj8PMWv4gJrzcLlp/EkW4syZvffH7lD/wOJUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:49:40"]},"IP":{"Case":"Some","Fields":["144.76.3.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:190:7385::2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["initramfs"]},"Identity":{"Case":"Some","Fields":["HuolEUcYCP0mMi9k1paayxiTZEg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d+1nyFC3Lrv3JF+MoXO4mdkJPhBgF+yw2vVgoYmBmBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:06:56"]},"IP":{"Case":"Some","Fields":["114.35.245.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:b011:4006:1d03::b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuackQuack"]},"Identity":{"Case":"Some","Fields":["HuFROfOJ/aJEACOWB8tMC+XdjHY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["72IOjDQe4yZdAwBaURVK4kPJLOekLzO2QNF0xJedPE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:56"]},"IP":{"Case":"Some","Fields":["160.202.162.186"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["W4LS3R"]},"Identity":{"Case":"Some","Fields":["Ht5gjF4ZDIaCovgnZk51hBYQRnA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9H6GiJaJW3BO9hTMhwifjGxwMtxL0NjI54dkf516gTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:50:51"]},"IP":{"Case":"Some","Fields":["185.156.175.60"]},"OnionRouterPort":{"Case":"Some","Fields":[8092]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DynamickaCibule"]},"Identity":{"Case":"Some","Fields":["Hsd1Akp/L09Gv+HnxYfarNxSBNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0INPfyrHMGF6iWRHLHwtogSqfO4XIGFmwYnnQZfTybY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:22"]},"IP":{"Case":"Some","Fields":["107.189.28.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f1f6:b1b2:cfe9:7a71:69d1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ailuuchequai"]},"Identity":{"Case":"Some","Fields":["Hr/HM8zZUvf3YW67p7xrjm8vDLw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vr3zCnGYJ5pHXlrjJ+U4WAgWDz+46Fq328Ou2XEPW5Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:45"]},"IP":{"Case":"Some","Fields":["94.130.58.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:2613::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HrpWx2SxxWviW0BchMgsWPEmsbY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ILpLy6ycKpHR9+fs9MjM4ssFTS71IBTWyERwbl89hbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:56"]},"IP":{"Case":"Some","Fields":["188.95.39.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bobjoe1"]},"Identity":{"Case":"Some","Fields":["HqUtHS8F6/6QuivuytewOcK9qpU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LFgf6T51bDL7wWTnxSm1akp/UWK33DIij/xecn7Mybc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:01"]},"IP":{"Case":"Some","Fields":["75.58.62.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:1700:6b8:800:0:8000:0:3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipdb"]},"Identity":{"Case":"Some","Fields":["HpsyoAxZSwMll9i2od95tzRTFTA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZdA+V0ZIKPttcv3EeiSdivN6IZHBDfVrmJIoXeKA5Fs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:19:55"]},"IP":{"Case":"Some","Fields":["185.220.102.243"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::243]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["HpRjTMjTiSeaHF6t7G6BcXnXT/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mRgctjn5AKr2tDTeb9hZ8+jgXff9lua0Ak+94gQ2ho"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:22:45"]},"IP":{"Case":"Some","Fields":["23.128.248.29"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::29]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv09"]},"Identity":{"Case":"Some","Fields":["HoWY4eKnR+dZlAF+aVc16yqGYw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VeyW5BL/B5Q1T4DNH6FlWWApKyr0a+ckRgO6o9bE2CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:43"]},"IP":{"Case":"Some","Fields":["162.248.163.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GoodColours"]},"Identity":{"Case":"Some","Fields":["HoJVc/jv1WNeXB47hcpkfPyEuoM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vnl0GHclddgvzWrfMrUCpHuvkm9/9TrzBO5kvdKLWDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:56:45"]},"IP":{"Case":"Some","Fields":["23.105.163.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bambam"]},"Identity":{"Case":"Some","Fields":["Hn/jZKgUNAy9eaorM2XnGNOxpnw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1UAkYF37T8lXdP7pOiFzd1rzqIeXX1THNB3LurHyvTU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:56:40"]},"IP":{"Case":"Some","Fields":["90.231.149.18"]},"OnionRouterPort":{"Case":"Some","Fields":[39062]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["masstorNY3"]},"Identity":{"Case":"Some","Fields":["HnOsOrvVUAr2hQwtWSw2NzRFT6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["23OTNBIti+L8Pkl1nvt68vIEnVawwXUbYlNkGtD8+Hw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:43"]},"IP":{"Case":"Some","Fields":["107.173.89.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73"]},"PortPolicy":null,"Flags":["Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Doedelkiste16"]},"Identity":{"Case":"Some","Fields":["HmTazhN6SmIj56SnMGCiLspG17M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PRvy/6jKCr7EgUvaGSskdfkKNfod/VuX2uYLT4H+rAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:16:31"]},"IP":{"Case":"Some","Fields":["91.143.87.51"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2fcf]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Blankenship"]},"Identity":{"Case":"Some","Fields":["HmPCztO23c0QeLKk8QyKSL0sMaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwUyneQz2zJer8ROXZS4uUO2f3GuiL/h70lo+7GYEb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:29:27"]},"IP":{"Case":"Some","Fields":["13.124.18.130"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hazeltine"]},"Identity":{"Case":"Some","Fields":["HlYYwHnXTPmuDFNw3kxuGv1cCzk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xSoh1yZQMlXVukCSvuE1rBRNSR56vqceI12cZVUaoVs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:12"]},"IP":{"Case":"Some","Fields":["62.113.216.173"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex43"]},"Identity":{"Case":"Some","Fields":["HlE23cUvrhIZII8Ka62wumJYfuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwJH781jphRacXHrYVKbyIppE3vi4xsTIuvv62KUrHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:29:23"]},"IP":{"Case":"Some","Fields":["199.249.230.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e642]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["HjwZfIySISj/BJhW4FNv+ctOXow"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JHJMiD3Vgr5eD7WzCE6ykIdLglkIsn4Cf25UTKH0xRw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:50:50"]},"IP":{"Case":"Some","Fields":["185.244.192.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["slotor03"]},"Identity":{"Case":"Some","Fields":["HjJu/jVauYkSJyr3JNWRdrXCN5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YnCM5yJDkT+2r2NH3mH7cw+Pp8qUI56QZbEMRKCznLY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:53:49"]},"IP":{"Case":"Some","Fields":["51.79.221.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["redbeans"]},"Identity":{"Case":"Some","Fields":["HiOj4IHiyALs5hGQwhTwcjpmlxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EJVbSdDu1ikdFfR9r7jLcadRStt9YPcrnHqwLEQOzkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:50"]},"IP":{"Case":"Some","Fields":["45.35.130.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=45000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["allstars2"]},"Identity":{"Case":"Some","Fields":["HhvvLI4WlawCHJAQQl01CAIEk3s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XvpV1NRHladCugP7Crc6FWXRvNCabKdTKZ912dXbPuE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:32"]},"IP":{"Case":"Some","Fields":["51.79.170.198"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams08"]},"Identity":{"Case":"Some","Fields":["HgbK07qQm2dhjkjIJQgcQK83/zQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3FWz3OS6Ugk9hiJIWtl1sd23+0kb9An3eTJU1vxLY6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:59"]},"IP":{"Case":"Some","Fields":["45.151.167.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::d]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Goliath"]},"Identity":{"Case":"Some","Fields":["HgPYHJdE3g48nebm+98d+drqWvw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOFt3zjpdu8hqIb9Uqn026gAktoE/rhd6vMcn3WZTjk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:59:40"]},"IP":{"Case":"Some","Fields":["185.107.83.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra16"]},"Identity":{"Case":"Some","Fields":["Hf45dJPQeR3mPy1upatuvLe5hxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ixd23b/En8RhZaTHqIF7obj0zQjzyITDeCKuwF3iyy4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:48:54"]},"IP":{"Case":"Some","Fields":["193.218.118.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::155]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Charybdis2"]},"Identity":{"Case":"Some","Fields":["He7NkGr+z0lrfcHkCCn0VjUXtMw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CrialbvMQ6F833cCIzkwmr3E1qLKrSLHK+RNPeahLRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:50"]},"IP":{"Case":"Some","Fields":["92.205.161.164"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlindedByTheLight"]},"Identity":{"Case":"Some","Fields":["He0RMFLxpGoAjfrOv0w/IMYxPUQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WbnEnqeAu4GLD/RBb26pGotJVwPC8pcVuqgzJW7txak"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:34:26"]},"IP":{"Case":"Some","Fields":["45.11.57.48"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["HorrorPicture"]},"Identity":{"Case":"Some","Fields":["HecFBMbpuyI+LsT61FxowHpq6fs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZMdqtvEtfLmXbViYz5ifV70Fjb/jwiAZakzlyviGFdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:29:06"]},"IP":{"Case":"Some","Fields":["195.122.181.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorUser793"]},"Identity":{"Case":"Some","Fields":["HeRDw9nA3EuwFEGA2vSjwlu8kew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RhZ5eT/gZplz6La9dBxB8YeCAatR0eCYhQp30vwZjGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:34:18"]},"IP":{"Case":"Some","Fields":["178.19.96.125"]},"OnionRouterPort":{"Case":"Some","Fields":[27941]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2430:3:2500::d3de:3e4a]:27941"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DETL0001"]},"Identity":{"Case":"Some","Fields":["Hc/ksCIWVwSX9+g6W2akP2Hc84U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["scXDXCvQ5qxfn9bZmYX+7w33YHCi8GkjZVoFoH9uzh4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:39"]},"IP":{"Case":"Some","Fields":["89.247.201.1"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GaladTor"]},"Identity":{"Case":"Some","Fields":["Hc9KAxr5lM8Ws9P86+wO3KyQQhQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VRfVBG8N5aU0zuNO+kaTYGlzwpzsDRpurwZ44wxb9hE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:18:34"]},"IP":{"Case":"Some","Fields":["77.182.171.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:c23:8429:c500:ba27:ebff:fe7d:3f4a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sgtor2"]},"Identity":{"Case":"Some","Fields":["HcnfKEL5W1Z5DwfapwvvqfEUSXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ymQHQcok+1UiLGxpLBwC/KVjvMmwiOdCS1Rl30ZU780"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:35"]},"IP":{"Case":"Some","Fields":["45.61.188.196"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AnonimaCasalserugo"]},"Identity":{"Case":"Some","Fields":["HcQr14NnHih5RXIkdYg35n/H5kw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yCFbEqANuNVs+DZ1RlXOtQJdixbiZ/4AOHTesqWYBj4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:24"]},"IP":{"Case":"Some","Fields":["79.41.243.142"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv128"]},"Identity":{"Case":"Some","Fields":["HbrMMUhvxnD71AP66Hc0LsaW1Zg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4bia/Mrpl1hjEPNQR8gpSOdt0eV8rZLt/S3kdaiPRvw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:38"]},"IP":{"Case":"Some","Fields":["192.42.116.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5528]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex14"]},"Identity":{"Case":"Some","Fields":["HbJd9Z2qAbW+PTzriv7RFZQOvos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DTz/pqAjToUDRcZErjt00Y2BR37W3BbBtV8XW0oiIqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:41:09"]},"IP":{"Case":"Some","Fields":["199.249.230.104"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::104]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fenrir"]},"Identity":{"Case":"Some","Fields":["HajW4BCSsglo+Z1oYcXVG4AltRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LBjklCIBp1sfeH2tWYKVaySXHiMOUndHgORsRTWL94Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:00"]},"IP":{"Case":"Some","Fields":["139.59.58.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HangTheDJ"]},"Identity":{"Case":"Some","Fields":["HaiI1H5D7fzGDLwOH98MikPWQ0M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h1SeX/cI0S6dOdWWmKRoswSu7oWFbza1cir98TzbX0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:12:53"]},"IP":{"Case":"Some","Fields":["5.2.77.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["incompatibleultra"]},"Identity":{"Case":"Some","Fields":["HZ6nkjHN6PxdUYECKvjPBtg/4Ik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qyc3QMiZHu8wOMMS270fz58vOZf/tm75cVZz6Ft3aro"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:24:38"]},"IP":{"Case":"Some","Fields":["82.73.87.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MarsBaseOne"]},"Identity":{"Case":"Some","Fields":["HZqQuJ4/9jMlquEq9zWIKgFlLhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d63P2mejZfcc3b2mV99dDqoiNUPD54G9iSt/Fk3xdsQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:35"]},"IP":{"Case":"Some","Fields":["71.230.136.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boxendotspace"]},"Identity":{"Case":"Some","Fields":["HY7VTqnfLUZVitAJbdXZ3Sl/E6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJ0XXvVD9zm8c0SuJGndxZIj8kUrC8CT/54Q/4Of/lg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:26"]},"IP":{"Case":"Some","Fields":["193.182.111.182"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG4"]},"Identity":{"Case":"Some","Fields":["HY3k70v6ONNm/OckncQaVA2OHrk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mSK5Tckjw/alIf9fwu+2kfAc3LI3EwsU5j6/dc/j4mI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:51"]},"IP":{"Case":"Some","Fields":["193.189.100.197"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::197]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["friedShrimp"]},"Identity":{"Case":"Some","Fields":["HYrMH18o1SRGMD0eGXoaO5/YFQU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/m3oUEc3GE86C2c6SGSQurCkgD4wKr5vjsNOpDmxfKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:23"]},"IP":{"Case":"Some","Fields":["199.193.115.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HYEnIhm2edURkwSZrYKGvNj2xEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9PyCo1rHAsxTq1CBU+B/7I/fndlcXyRMlm1NjVZNf/4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:02"]},"IP":{"Case":"Some","Fields":["37.191.201.239"]},"OnionRouterPort":{"Case":"Some","Fields":[44100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe4b:98c7]:44100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oppaiTORu"]},"Identity":{"Case":"Some","Fields":["HXo78KiQZFwB+uZZCgF7UY+2Ocg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ryojvk0FSmz20N5YosQe16azHcdUAV0Gyk1SV5QRyFg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:10"]},"IP":{"Case":"Some","Fields":["194.116.217.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HXVokN9CxQ6cLp8Q2v7TiDklJ9U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OFJR84apw9djhu69RVQRjA0cFmpx2odwSekv/mkFU/I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:58"]},"IP":{"Case":"Some","Fields":["213.54.83.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schumacher"]},"Identity":{"Case":"Some","Fields":["HXAtpD1Yj+nTCNOHmm9eYbsuzPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1UJ+QZkUZzzhq7oy8fEO/El01MTYDTNLILCA6gnMypY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:54"]},"IP":{"Case":"Some","Fields":["188.40.147.177"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RevRun"]},"Identity":{"Case":"Some","Fields":["HWgZ1YMoUUqUcIJdawixDulfDaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+E7YnFrGv7Kny67QZKpP9z35fEfLn6td/VewquKDk3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:15:20"]},"IP":{"Case":"Some","Fields":["185.107.195.43"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9200"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TakTor03"]},"Identity":{"Case":"Some","Fields":["HWV3Hmg4PylNTxExsZ32SYnu34o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ki1qAZMpnf64W/4nJK2saZ3YjzaRUgUBsd30+7JBO7U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:56:38"]},"IP":{"Case":"Some","Fields":["198.46.166.157"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=560"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay748635"]},"Identity":{"Case":"Some","Fields":["HWTBS343UEXX6bNacrcRvi+Hlkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J9RgWGkw14mPg2eOp09IXeHI5RdAfu4vB1ywKmwKL2I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:46"]},"IP":{"Case":"Some","Fields":["88.209.77.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9846]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vuela"]},"Identity":{"Case":"Some","Fields":["HWGonxD4IYZg5JWOtUgrF2ighfE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DB164LzNHLkCMOREIKahen4MYE7ClOu1HKeJxsBGA3w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:02:48"]},"IP":{"Case":"Some","Fields":["107.189.11.80"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darklab7"]},"Identity":{"Case":"Some","Fields":["HVqX0z3ikF5Y5qkna78W2eZsg6w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["guskGTH0YkqPYHmPvsD4IvA7rMf3PygDvl60RGsU5jU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:43:19"]},"IP":{"Case":"Some","Fields":["89.58.30.164"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=92000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["isbear"]},"Identity":{"Case":"Some","Fields":["HVT3zLfHoYXuiqVhbAed2SPrV/I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BkifAz36DdVaFoYi1QQiB2/NZx4YK8TiXIXdIbsEjaU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:12"]},"IP":{"Case":"Some","Fields":["176.36.117.185"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BaronDeLaPwnerie"]},"Identity":{"Case":"Some","Fields":["HTiU4kjPjasbIr6YNXl5MVSNwGw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["boAs4as9mtPv7/1vfvOz/ZfqUdRhGIYLmI1J3K3pfLo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:53"]},"IP":{"Case":"Some","Fields":["188.149.184.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9668]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["criticalmass"]},"Identity":{"Case":"Some","Fields":["HTF0M4oRMaU+CYRD524RA83tANw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pJr86vpl+YnmQx7KVmqv3Q8SXNPSkPcqhuIStfWA1Qc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:35:56"]},"IP":{"Case":"Some","Fields":["185.220.102.4"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1::4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["HSQpIRNhDwCW/MVUZk7DO+J6T1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vmqxDTlIT56lyK5PWt8c/JFll4Zjefd5t//H9E6yj1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:58:55"]},"IP":{"Case":"Some","Fields":["95.214.53.96"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:3560]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["K4M1K4Z3"]},"Identity":{"Case":"Some","Fields":["HR+lDWBf3I9tw5oKYKcjPdNdAAE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7dleKz3Azpv7t8nbfr0YCtt7MbqaWrl2YELn3YbJSM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:10"]},"IP":{"Case":"Some","Fields":["191.252.111.55"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=750"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv08"]},"Identity":{"Case":"Some","Fields":["HNyszAaqYbyNZ5T/otokivLntis"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yj58yVo4Ue5SGZrSRAStfOO/uC/2VL8oyIBG8AvcgVU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:17"]},"IP":{"Case":"Some","Fields":["162.248.163.70"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei00"]},"Identity":{"Case":"Some","Fields":["HNSPTtDxgh/78ZQIAqE+79TCdQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0GaPlywP8JIgmhsFzgRpj/4R9w4BxN6oR0Q3XHjoeb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:42"]},"IP":{"Case":"Some","Fields":["176.9.40.131"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a01:4f8:150:518e::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=93000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE68"]},"Identity":{"Case":"Some","Fields":["HM2ryHEGeb8wr8D5c6iwZaKThSk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V8n4uSp23VKseSP48YAUOeN5X+k1WNr4+zmwwLG0dzE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:13:15"]},"IP":{"Case":"Some","Fields":["37.221.66.252"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:109]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lamacarena"]},"Identity":{"Case":"Some","Fields":["HL5UpA0cw7zaZbqPyR4SwKAa41o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BhGVfO7G2bSLEzrjE2kZY1LrdSlDGgSt62rjf+2AI7o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:58"]},"IP":{"Case":"Some","Fields":["86.104.194.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["edayat"]},"Identity":{"Case":"Some","Fields":["HKJrD1EhKY/g0QRDEFEQEcNAeKk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6IHhAjAJsfjO0cHqayTlxLo740FlUVC+Mn5obTETscM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:51"]},"IP":{"Case":"Some","Fields":["178.17.171.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["firstTryFFS"]},"Identity":{"Case":"Some","Fields":["HJ3+RFUlGsk+OmKPk78rmswJVtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N2Gzji7gVbNsZ+QNKGhmu0MT9OvzBEat/vXPGCUFudA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:07:52"]},"IP":{"Case":"Some","Fields":["77.11.240.153"]},"OnionRouterPort":{"Case":"Some","Fields":[15001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["StrongFlame"]},"Identity":{"Case":"Some","Fields":["HI7QQ6FhF0Y+qcHUYFYAMDP2hvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IYQKraF3b4IY32SzIVA9OgXJesERt6T0JbwTsowKZeY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:08:51"]},"IP":{"Case":"Some","Fields":["199.58.85.161"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["T0pS3cr3t"]},"Identity":{"Case":"Some","Fields":["HIg/rJpafbwku12dE7RHrnxOM7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zr19yp2rX5C4LxEZnEWZgwHxBKmFvX28kqiT1VWENAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:02"]},"IP":{"Case":"Some","Fields":["87.120.37.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["TheRock"]},"Identity":{"Case":"Some","Fields":["HITIkZiRHQyJYqplw+TmUwB1OW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/nf5nKizKVLorxp+OPbw+1SdqUMMzENtV1cWSMNiijs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:12:29"]},"IP":{"Case":"Some","Fields":["188.151.213.200"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BabyOnion"]},"Identity":{"Case":"Some","Fields":["HH1xolgd55xc/E7R/3XVvjDwG7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rpY/4/auA3J+fM1y5rudeN2BA864NX/6ywatsUoXloU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:48"]},"IP":{"Case":"Some","Fields":["51.15.243.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:62c:1a12::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["HHznLAymVka3JzwbaxTIqiEGkL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rDo0h5zen6wiPe078eT7z2GnV4Kvn+OoOIpKrIl6TQ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:36:18"]},"IP":{"Case":"Some","Fields":["212.192.246.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["HHxoQdC38QtyYI3Tf5kvGGr7U0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5B+YfGXpUVEWBjl1z9MI4EE694UV9vC6lnEJbSkppDI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:30"]},"IP":{"Case":"Some","Fields":["65.108.58.113"]},"OnionRouterPort":{"Case":"Some","Fields":[10101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:8bcc::1]:10101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RIGALAND"]},"Identity":{"Case":"Some","Fields":["HHkmFVHg+Tig05WeHy10pLSCY/o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KS4bJE6yt9SO0wHUM9IeZfL3yxa+28KY8pqw3+yvntg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:53"]},"IP":{"Case":"Some","Fields":["94.140.114.255"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipea"]},"Identity":{"Case":"Some","Fields":["HHcAqU27/s+iNMGt0NI/uH0ddZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ffAoC6mTHJstwVq28sDIXvzyalRmRH7bF6Vtjj2XgAs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:19"]},"IP":{"Case":"Some","Fields":["185.220.102.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::244]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nerdhere"]},"Identity":{"Case":"Some","Fields":["HF/KIixrwpdCSqoObJdpyYw/J78"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3j34gdwMvaxRjcuovyF64espCY3SyYreI2w9hmZYiMQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:29"]},"IP":{"Case":"Some","Fields":["45.61.187.213"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d3xtor"]},"Identity":{"Case":"Some","Fields":["HFPyE8m7qy6zkBXdWhvInOFSoPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EKec2g7LV8bRanM443Mooq9Hl8j6QBzjgtQ5ji3gRGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:43:10"]},"IP":{"Case":"Some","Fields":["79.115.185.175"]},"OnionRouterPort":{"Case":"Some","Fields":[18213]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":{"Case":"Some","Fields":["[2001:470:1f1b:1cb::7]:18213"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stvnrdgme1"]},"Identity":{"Case":"Some","Fields":["HEozUH5AG3kmPQKNGSf09UrYNYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0t8FG0zmGC8oAMs9kv8bjtqBCf6X2voqz1szRHyH7fE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:20"]},"IP":{"Case":"Some","Fields":["176.123.1.67"]},"OnionRouterPort":{"Case":"Some","Fields":[15901]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:4010::b0]:15901"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["VrijHeid"]},"Identity":{"Case":"Some","Fields":["HEFHveMe1lcV/hzwiFcOFFv0aqE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LR10wNuZ9nmF46h5PzZgpupDKZr+VExlRFHkjPsFWL8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:23"]},"IP":{"Case":"Some","Fields":["94.142.244.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:898:218::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange020ca"]},"Identity":{"Case":"Some","Fields":["HDxK7wNtEgLuxiMijrpftxkx4qM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MQzXjvKYULFeh5paxc8aHGWcJaU4NtNI0rXLlGph4ts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:17"]},"IP":{"Case":"Some","Fields":["162.250.191.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theherosanctum"]},"Identity":{"Case":"Some","Fields":["HCHv4xugtVsTWVl7C0bzcYTfzL4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A+vcC4hu2QPKGuvhz0UZVVEfLmS4863SsBhw8nDq3iU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:20:32"]},"IP":{"Case":"Some","Fields":["131.255.4.48"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SpongeBob"]},"Identity":{"Case":"Some","Fields":["HA0K8/8FzLuktu0mIZakxadhAuY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sLl12qNdugm70rS6WsQx57z09KEqCTRKLv1378ggnbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:33:07"]},"IP":{"Case":"Some","Fields":["104.244.76.13"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreedomFries2"]},"Identity":{"Case":"Some","Fields":["HAc2zzdEo7h8LSJpuL0ziMfmBVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uQaKwUK3eWU8sJom/e1x6zu51KUTC+d8QWtx8+bE2Ow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:42"]},"IP":{"Case":"Some","Fields":["94.130.246.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10b:3344:106::106]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=63000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor3e3"]},"Identity":{"Case":"Some","Fields":["G9vpwPcDTmeJqb977YK+IEXw9bc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HSS/bDqNy1j4FZuLSPzvkjx9QaN+lXFAjr33QFySZNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:33:57"]},"IP":{"Case":"Some","Fields":["94.230.208.148"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:418:6017::148]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funrelay"]},"Identity":{"Case":"Some","Fields":["G9ZGK4VnVOnIJrIgtMR+WdBHkQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bVEc9iuoM9lT2honXacmoM4ZCh1dkbzIwtsV93GjbRc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:39:43"]},"IP":{"Case":"Some","Fields":["146.59.12.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:601:1100::4c5f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex77"]},"Identity":{"Case":"Some","Fields":["G7yut2PKRt61ZaclH6pqx5o4it0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yIfZFbMTcxZhUr6NZrtBRIshgyLfH+KoHPwNZ1PO2Lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:07"]},"IP":{"Case":"Some","Fields":["199.249.230.166"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::166]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nudelsuppe"]},"Identity":{"Case":"Some","Fields":["G6/Dv9HjnLb3WRlaiQfqealJb+c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UKtx6139xyNNXAOvkFyy+agt/A445qShGSfHeXRkS3Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:43:24"]},"IP":{"Case":"Some","Fields":["5.147.29.248"]},"OnionRouterPort":{"Case":"Some","Fields":[43903]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:908:2222:fda0:91e7:5d68:dee6:b225]:43903"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["finely"]},"Identity":{"Case":"Some","Fields":["G6jHWGmXo1FEzXcb8/2YMcFTFdM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1vuIbjb5UhX/hiuSPc8jZVlOMzKIjkY/srhAkM2yIeU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:47:07"]},"IP":{"Case":"Some","Fields":["153.92.127.239"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange017hu"]},"Identity":{"Case":"Some","Fields":["G6L5Q2wAGKS1JiXQcbcvZIUit0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aGy59FmYVY7Z9xHRacLz1W4tRJx6e0L8jh862nYwe0c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:48"]},"IP":{"Case":"Some","Fields":["87.229.115.23"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute07"]},"Identity":{"Case":"Some","Fields":["G5+s8l4X0m4wfqfPp9RVsUSwMuU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVF8zgVNMuVjeQOHImnuddJGMbq+nj/hqCG/sEH4w0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:52:11"]},"IP":{"Case":"Some","Fields":["82.94.251.227"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ididnteditheconfig"]},"Identity":{"Case":"Some","Fields":["G5hGgJfn8/8QKSZCPfRDFeQUy88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kP60j/UvRquFT+xspm/HjASxnFdfH5fjfuXJ+9equvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:56"]},"IP":{"Case":"Some","Fields":["95.89.112.122"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kibble"]},"Identity":{"Case":"Some","Fields":["G5Y9DLXPEgv5XMIR+aV3qwliDv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZX0FM+88WVB4wbj4AafFCBIbQL1iqgM7vC8pNBxVjCM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:36"]},"IP":{"Case":"Some","Fields":["66.165.241.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4500:8:14::4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["G4/E0TRAfFyQvmECE/QRtjrVIpY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KOmZ7hpEFXYUdVujcFQ0tbV7gAgaXBrsSgURqHtdaZA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:42"]},"IP":{"Case":"Some","Fields":["65.21.235.52"]},"OnionRouterPort":{"Case":"Some","Fields":[25028]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HeastBistDeppat1"]},"Identity":{"Case":"Some","Fields":["G48AYY10MEa6XZ7ECGIgrH6h33E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G7mA/e3HRM3LgvzA1QtYe/4l/7kQ/L/3Wpj6YKpoVlE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:33"]},"IP":{"Case":"Some","Fields":["80.109.75.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vulnerar"]},"Identity":{"Case":"Some","Fields":["G39Hgn4v+v4FuSscWpK4+aSvZ90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V+oFZdffTxsTnmGmTcu2xVah/h0hIr8MOyJGruJPs4A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:16:29"]},"IP":{"Case":"Some","Fields":["157.90.179.103"]},"OnionRouterPort":{"Case":"Some","Fields":[8001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aemrelay"]},"Identity":{"Case":"Some","Fields":["G22f71wvnGtb88n6qRMdabcKNbA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lDanuu3zahqiO6XLuMVL4SyqKyF3z8eQRewGOr91p6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:21:34"]},"IP":{"Case":"Some","Fields":["31.16.217.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["G2vLzbOENktvtPNXbKcK7PwINkE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NByz6DuaoFDAqhrk3mU4whx3BAUrGDH7N0CQDpJLMwk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:10"]},"IP":{"Case":"Some","Fields":["185.194.141.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelaymirror2"]},"Identity":{"Case":"Some","Fields":["G15416HrMgdLO+LoPMzlC2mbeC4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mZXVRAJ2XPme1pQq+8fyOwbzzXAkESZLyB5T8ctdi7Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:31"]},"IP":{"Case":"Some","Fields":["85.195.230.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=67000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORNODERELAY2"]},"Identity":{"Case":"Some","Fields":["G1vP/XOQlGpuLbxSHdZjM4bwWPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YvJu0kNwDu4wP1kRJMougN+szDPWFVh+PIsFrSE7a8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:50"]},"IP":{"Case":"Some","Fields":["185.232.71.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4e:cf6:a47d:bbff:fe95:9658]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheBestRelayNick3"]},"Identity":{"Case":"Some","Fields":["Gz5I115/fmHRubviS6FaOLRUOA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["G4Bpx4sqMU54uXPowcXWENrs6ZibnUZpFiCn0J0pCvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:09"]},"IP":{"Case":"Some","Fields":["174.91.91.12"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=850"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BSSP08"]},"Identity":{"Case":"Some","Fields":["GzCYpxHQDs1ChXbrLoaO1NIslrE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lnf0YNrDJf4ZDzbeXQbf/Vrffpd9NTqgeVY+S8D1wxk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:46:03"]},"IP":{"Case":"Some","Fields":["15.235.29.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bottles"]},"Identity":{"Case":"Some","Fields":["GyiScY1m4Qff3sj6RzHVKJnP6XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EC9ZXHIbRwxrzT645Pt+By8xuxPDG8M6O32OFvKLt3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:20"]},"IP":{"Case":"Some","Fields":["107.152.33.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:9000:0:35::939f:ce9a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber54"]},"Identity":{"Case":"Some","Fields":["Gxj5hTRjTvTrSzZSPwUvTYKeBJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r2Q+c7b7lGPPV0G1wUUQeRYr/G1tiAth3KURXbN4/Ng"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:46"]},"IP":{"Case":"Some","Fields":["185.220.101.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::27]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who7USicebeer05"]},"Identity":{"Case":"Some","Fields":["GxdLD9qqxQp4sS5kFD1H7XkiyO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["91168Hnm800z49BUlmknE6GgtHKH8IwKsjwhj5LEkBo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:58"]},"IP":{"Case":"Some","Fields":["142.54.190.250"]},"OnionRouterPort":{"Case":"Some","Fields":[8088]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gigabyte"]},"Identity":{"Case":"Some","Fields":["GxCJY9z5QrbSYr/cQw7ZvRlH41M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hdEnvIzWo1ONYBWmnjcy75hnTfzEhtZLDKHK264D1Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:49:33"]},"IP":{"Case":"Some","Fields":["161.97.83.186"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2077:9922::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RagnosystemNode2"]},"Identity":{"Case":"Some","Fields":["GwzNutr/mI6Swg7kpR/y0Twzt30"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9b2597OaTzbPd5eG4MNyZVkjt2Xb1hHusO1pneebFT8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:26"]},"IP":{"Case":"Some","Fields":["37.220.0.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex36"]},"Identity":{"Case":"Some","Fields":["GulJln+Cu+dTSj1rp3p+vhztQ2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gwDR98qpyMJhn7//RdcTHmbI9IehE4YheFaXuecSCjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:57:25"]},"IP":{"Case":"Some","Fields":["199.249.230.85"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e655]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GuiYFENLdcOjBGB3KmkSvOT15GU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ni4DLq8IDyDT5pWGeEuewKgmnA3FobXpQQciCf9OWx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:42:45"]},"IP":{"Case":"Some","Fields":["103.124.104.229"]},"OnionRouterPort":{"Case":"Some","Fields":[39888]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uknd"]},"Identity":{"Case":"Some","Fields":["GuHL2qyN9xMHQ3ENig5ZgVeHPtU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4KNUA4xMkm6xnvT9fIT2TvRZXYXGqdsCUoF4Ll+IWt4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:42"]},"IP":{"Case":"Some","Fields":["61.4.102.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot60"]},"Identity":{"Case":"Some","Fields":["GuA57gsR23nktLKcup91KGSgJZ4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ZmBIDFMmXQhJ6ds/mXNVo5euA7QmuQQXNzspGOOLUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:27:23"]},"IP":{"Case":"Some","Fields":["81.7.14.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::1fa]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["948794crazy"]},"Identity":{"Case":"Some","Fields":["GsstAFGRtri+LibAIesLoWR6WrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gGyC+WCIlpI9mYZr/eBtoawqB4PWkFgo33GpEDdVVDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:13"]},"IP":{"Case":"Some","Fields":["185.193.127.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GsiIS5wdHijex6JGEPMenG0sT6M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["942nLU0weZQYqplH6maFEX+mjKtuE1FDzvgdm8UUwKY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:06"]},"IP":{"Case":"Some","Fields":["202.61.205.33"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5b:563::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vsm"]},"Identity":{"Case":"Some","Fields":["GsRQg+vH4CcgwTJUzqP3sDLCSOI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cM0F8X3GBjaAa79cRgwi16dVvm/YcYFdIUJi4Q5flB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:52"]},"IP":{"Case":"Some","Fields":["170.133.2.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:5429::b3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sdIUe8f"]},"Identity":{"Case":"Some","Fields":["GrpC2vbhf2X+L7/5yi6zaetqaQs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hw7KA2fgfcq8bXsz7gldBLnJDtBF9feX+TBl2gn1bvI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:18:12"]},"IP":{"Case":"Some","Fields":["91.137.123.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rhabarber"]},"Identity":{"Case":"Some","Fields":["GrXleoNWyUgDuRmf1KmEWFTmoKw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QUFIW4Jz5jZThcNJojcTVwMZqV8bMDYr/rmC+ZzFJ6k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:18:16"]},"IP":{"Case":"Some","Fields":["109.70.100.12"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::12]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Gq0BX02IVBOivODlgVkRaQEjbEk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uJ15cu/AA904SY8z/+GuAwSo+oljclJ+Z04KIGNXA0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:30"]},"IP":{"Case":"Some","Fields":["51.75.143.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["GqwZ2JL4SRCrlMRQkiQaujz8TIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZg+eNj899hy9A0exhmRStKNltbqCM/YZ7D0NrR44ec"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:58"]},"IP":{"Case":"Some","Fields":["185.220.101.208"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::208]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev2b"]},"Identity":{"Case":"Some","Fields":["GqaD4DbqEKpuB41ASYzHI09kJLk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qyA4YCsMg+FAJQgZQ8Fu4HmJ1RJnnByv4a+CiJeW2TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:00"]},"IP":{"Case":"Some","Fields":["87.118.122.30"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:103:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelay2"]},"Identity":{"Case":"Some","Fields":["GqY0dKsid6lE5FJknrGQRPITFOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4PsL/KL7PSyG0QktLVK2YgCeRQMCY0loX49LjMqxW8E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:23:58"]},"IP":{"Case":"Some","Fields":["185.183.158.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:a5f:684a:58ff:fe7e:8bb7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dotsrcExit1"]},"Identity":{"Case":"Some","Fields":["GqBCqoATt8eFPOKniFN99VhJhRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oW9jYrWvcnO/XW9TzU50sYUSMakMy6BFg4fvpO8M6qs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:22:44"]},"IP":{"Case":"Some","Fields":["185.129.61.1"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:89c:702:1ce:1ce:babe:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OpenWeb4All"]},"Identity":{"Case":"Some","Fields":["Gp/CuU4ztrTOOM0N8lANTCRfuRQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JktWo5owin9rm13p7Ut6fejnJElSf42Np3cpnv5kagk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:28"]},"IP":{"Case":"Some","Fields":["209.141.55.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:20:1dce::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blablabla"]},"Identity":{"Case":"Some","Fields":["GpOto2l0dnpjAh0Gkf8FgaDDL+0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4TZMUncM+ApW+OasNzbn/nW6xb4CvE5zJcCFJGW1QPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:56:47"]},"IP":{"Case":"Some","Fields":["185.206.225.59"]},"OnionRouterPort":{"Case":"Some","Fields":[18049]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM09"]},"Identity":{"Case":"Some","Fields":["GoG+4FT+XGIloNWBadcpJLJuK1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3pdCVbZPXIwsBgh25HF6cCVRFe/kYOO0NN3IZM9yUlg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:16:27"]},"IP":{"Case":"Some","Fields":["185.239.222.248"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SimpleRelay"]},"Identity":{"Case":"Some","Fields":["Gnf+BdQAoSKEm31cXjTpmrDWjqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DduHC0b1SVEMZrr6K97noW2atfurrPV7X00eJtg6cUs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:25:59"]},"IP":{"Case":"Some","Fields":["194.180.191.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:c801:1:20::6c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pad2"]},"Identity":{"Case":"Some","Fields":["GnIxbKDWmqG3N0V4mG1QjOgtmVg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sM1QRA/XmJpYcblg6EnSCBTu7dN2wvxoefAqiA2uagY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:09:36"]},"IP":{"Case":"Some","Fields":["5.161.72.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4ff:f0:c4f3::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoolComputersTOR"]},"Identity":{"Case":"Some","Fields":["Gm4nh9Ogh8AMHHpjfR9jJErrCog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0ANvwqm8/d24eWQ9dwjHLQSCQHneH+XFoGq1zzSAt9o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:48"]},"IP":{"Case":"Some","Fields":["68.99.156.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:c5ef:6000::1005]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CoVna"]},"Identity":{"Case":"Some","Fields":["GmbAKhGdb4QvVQaF4AUcSuI7i+g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Ps17PRe8FV5+PhkwL2TUdcNQyVS9Hlqk0m5TZ/JIxY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:25:08"]},"IP":{"Case":"Some","Fields":["108.62.103.193"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["klaxzynetbox"]},"Identity":{"Case":"Some","Fields":["GlRhx6GBEExqVFB7/5rj+D4uHZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uTqLJwkEdewpZXcxhWzt+SKyVl3B5VB8+/Red4rZxsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:55:01"]},"IP":{"Case":"Some","Fields":["134.209.159.59"]},"OnionRouterPort":{"Case":"Some","Fields":[33443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::9fc:5001]:33443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["just746436456"]},"Identity":{"Case":"Some","Fields":["GlLh6pXqHAXmo7ZDqprB6H/HlvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wUan130//vyEGkx+QrlhuLqebmwktymeQS9XaWdS9uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:51:43"]},"IP":{"Case":"Some","Fields":["37.221.195.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["torquera"]},"Identity":{"Case":"Some","Fields":["GlG9O0vHUtF1zFEj6DwJnyoNUAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lL0X3+hsHgdZeUOYyVLXVL9wyP4kSGtcmYGTYFxECYg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:28:04"]},"IP":{"Case":"Some","Fields":["82.64.190.82"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:212:5f50:76ce:2825:9c75:d720]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sorapis"]},"Identity":{"Case":"Some","Fields":["GknkT387ataz3gANHyGJXRxQXvQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2s35YmMUQFrmoqxezJ0gaQ4ZNRnywES/23/rnYzpz1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:49:18"]},"IP":{"Case":"Some","Fields":["62.1.21.232"]},"OnionRouterPort":{"Case":"Some","Fields":[58097]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokolimc3"]},"Identity":{"Case":"Some","Fields":["GklSjTuyI2dp6My4SQol6kR8yU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Rb00nGMGS2WWGLWm2ZD6ImAzgi+Mk+8IbPUJ1CdW73Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:41"]},"IP":{"Case":"Some","Fields":["37.114.40.104"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[8081]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SlimTor"]},"Identity":{"Case":"Some","Fields":["GkSZW1+G2t7B3Qy6uhXBm0TI4N8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jIkZqwloGm93/IdqVkA40UnUEfjaBDT/YosyrSkt97Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:08:35"]},"IP":{"Case":"Some","Fields":["75.184.41.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ohrelay"]},"Identity":{"Case":"Some","Fields":["GkJa9n1FXaZS40OlOuYUPkL6uKo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aJfQ/KVjcduacaJTY7x5yFPvn+MSAs+YgAcpL0Id4HI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:39"]},"IP":{"Case":"Some","Fields":["51.15.8.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lana5"]},"Identity":{"Case":"Some","Fields":["GjYj++WyjU9yKQZ2f/qPCrfszB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["haQKakY8KENG9FjHru4pljybXIArsxp+Rb/671BmBMk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:21:01"]},"IP":{"Case":"Some","Fields":["31.133.0.141"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4162:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bilbo"]},"Identity":{"Case":"Some","Fields":["GjKVQzCAR7BTIfsbkYKcQO95/tY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GdRIiYystV+4TmVJGH/dOpzghl1P7SN7rhPEMSCmDxM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:54"]},"IP":{"Case":"Some","Fields":["213.156.137.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9900]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE69"]},"Identity":{"Case":"Some","Fields":["GjJH7QpymBUNrWoygitZSKtZ8A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+61T2XYK0BGalD1AYQD94pFiHc7jaXvJ/GbLNV9B7k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:19:00"]},"IP":{"Case":"Some","Fields":["37.221.66.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:10a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FranxzkfchRelay"]},"Identity":{"Case":"Some","Fields":["GjJAtRVKmpFQlxgJFPGDZgmY3U4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bli3Y4KfWHx4u/mImrhsQP5Ekmki1u+saYBoZ3az92E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:28"]},"IP":{"Case":"Some","Fields":["136.244.94.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:6c01:2c38:5400:4ff:fe23:58a1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["GiQ9pvY5qcmbQ5EVjg4U6JwpdUw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VStGi+t6PMXKI9qKbZU7Zj853OhH2sSeK7Gnkrzg0Rc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:21:27"]},"IP":{"Case":"Some","Fields":["185.183.159.107"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DebatableMink"]},"Identity":{"Case":"Some","Fields":["GghzZUF0/4sdZrAtqC1Grd1GrEs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jTpmOMO8mt69WnYEmICcfO3Lr9PJCnFoFOMW5J771ww"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:53"]},"IP":{"Case":"Some","Fields":["164.68.113.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:2098:7239::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lUniversMagique"]},"Identity":{"Case":"Some","Fields":["GgYW6x+1ZAGlYQLBD8+mnnLa/tc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TdFgcf2gvRsstJfHmGE6Lu92roN7gy8ptsk5nhzhsmE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:32:03"]},"IP":{"Case":"Some","Fields":["176.123.9.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayors"]},"Identity":{"Case":"Some","Fields":["GgStKzoGuUnosMpEEr15OsJZsVA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["21Caqq3rLuSnbtLIi9s3z8RONhM/XLF7TsDRcgQHyPg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:00"]},"IP":{"Case":"Some","Fields":["185.68.250.161"]},"OnionRouterPort":{"Case":"Some","Fields":[6443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:1748:f7df:aa11:ccba:3846:50f8:d881]:6444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ABCVG"]},"Identity":{"Case":"Some","Fields":["GgIKQU2Ksl9UQVyMHnWlViqd2aY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IbdfHGKoG/aDEDfJp+TCBgqOuqvkyP7Lf1HJEIPcKLs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:30:28"]},"IP":{"Case":"Some","Fields":["37.187.103.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:2736::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Noaccess"]},"Identity":{"Case":"Some","Fields":["GfkDE7LA6wPvw0dwbyc16Bh22EY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rZZuZHeYcwXcFM430O6Gh5l0OApmL/eqqcLOOJ9gEIc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:21"]},"IP":{"Case":"Some","Fields":["80.219.136.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9030]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayletsgo888"]},"Identity":{"Case":"Some","Fields":["GfEVJthFKk0EYX+9/lJeOaapbvI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iKEkEAhCH5MN1JY7EE2ai36Qr4QNtqwXDRV3C3nH9g0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:40:54"]},"IP":{"Case":"Some","Fields":["50.65.180.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TouchMyData"]},"Identity":{"Case":"Some","Fields":["GeEK8VEWCRZeGTMKxJzP7OYBjkg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h5Y1cFhebYZDe27f9XLpej2nGNKuVIn/tAmWKi5fcRs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:05:34"]},"IP":{"Case":"Some","Fields":["75.75.102.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tawny"]},"Identity":{"Case":"Some","Fields":["GdDwKLrdEbedxYRsHXVJdnLoVRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5rMCF2vhcOXzxGR/TP25iF5AsId9Crxl0vY154vvqe0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:49:37"]},"IP":{"Case":"Some","Fields":["45.137.100.160"]},"OnionRouterPort":{"Case":"Some","Fields":[4001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QECm1r1"]},"Identity":{"Case":"Some","Fields":["GcmQb8tksSpV2LOB9XMaBRIOX9Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hl/fhK/tlPknk8XUsImCeqXi71nRl+IJuKpJe8uk3Mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:17"]},"IP":{"Case":"Some","Fields":["74.208.136.53"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GckwBDy8ki+E40odk8dHykTBYjA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOpiCz/9uUcEZiu5B7QhQxM9zQQUf3XAvt+ugaCV54Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:55"]},"IP":{"Case":"Some","Fields":["23.128.248.105"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::68a8:1eff:feb0:68a7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kt"]},"Identity":{"Case":"Some","Fields":["GcTRx3ZBYAdT6T92CQn8lb+6lPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p4cmEAgLAG1e3xWyQ+L0RQjMh4fVySqx2YpX2zuTT3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:02"]},"IP":{"Case":"Some","Fields":["83.229.73.246"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RocketNet"]},"Identity":{"Case":"Some","Fields":["GZJIikaA4Bq38KI0HtpHNzG3jGs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Po1gVLZBIBFcqxdmaAStrrUsxbagzpdShcnlj+IjExc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:14:46"]},"IP":{"Case":"Some","Fields":["169.255.0.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2c0f:f2a0:0:1::132]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blueflagrelay"]},"Identity":{"Case":"Some","Fields":["GYuSqYR/Woybm3+LXutYTTViKLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZKS1Ih0JslpWQAMZoZHQi+SZ12vnFGJRPOzvkCnzHm4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:26"]},"IP":{"Case":"Some","Fields":["194.195.250.69"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8907::f03c:93ff:fe7a:9df8]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tweinode1"]},"Identity":{"Case":"Some","Fields":["GYq9tJyMQf/fej6NfOexhfV1A1M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RKxPb2X24f0K07ylh3amR55qIrNdnUQyRhE8e/kdroA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:26:30"]},"IP":{"Case":"Some","Fields":["85.214.38.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4255:c100:4e90:2717:4cfb:4a91]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["GXkMIfLmCsJT8+rG3TCuktOPFSI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["urPqVWiJOC/Z1NoxoKuc7FCyU9JZZf7x96riCYZZEdE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:44"]},"IP":{"Case":"Some","Fields":["149.56.169.154"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GV8jSbgobdl3ao+eZE0O3RuMlTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZVbuGXCDqNIiXguQEm2pWfAZGvCDgbuHzG1rQSkBLsY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:04:48"]},"IP":{"Case":"Some","Fields":["132.145.57.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev3b"]},"Identity":{"Case":"Some","Fields":["GVcS6W/RwbGNFNCenk56ZBbiOyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qcZQTzH3/VxxCF6ogVGZmXDR55tGxpq8BfHRZmcGFHE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:36:21"]},"IP":{"Case":"Some","Fields":["87.118.122.51"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:239:1003:106:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relay08V6Rocks"]},"Identity":{"Case":"Some","Fields":["GUSpa9UMeywKfEuWV4du8HxI0pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Br1J1YGnAsI4l6SGS1cvTAI1pKHwVxJlhk8aFRjRl28"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:10:48"]},"IP":{"Case":"Some","Fields":["188.68.50.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d51b::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["animator"]},"Identity":{"Case":"Some","Fields":["GTLGsLPRX2zaR2MvsiV6XfO8AU8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1C00/l5tu48gMPdA6zPIymd1kIu5GU7IvP/4BV8AGR0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:10:20"]},"IP":{"Case":"Some","Fields":["178.254.18.25"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BYv"]},"Identity":{"Case":"Some","Fields":["GTBlvnqsxylbsvyErnHcIJcO0n4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Pn7P58sB2ne6oqmfwF0EqCc14A7L+KkFVfmOhD+cnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:18"]},"IP":{"Case":"Some","Fields":["192.81.218.189"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WikiHowRecipes"]},"Identity":{"Case":"Some","Fields":["GRyCbqkbn99F/1DgHbK5z65xFO4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y28BS4R8dg4QB2IqBaWhZNb8gr/FTeAacR6mxNy2OrM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:12:32"]},"IP":{"Case":"Some","Fields":["38.97.116.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gaunahTorRelay"]},"Identity":{"Case":"Some","Fields":["GRcwBrBbYRnZZrc652d9ce9SnPY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tPRt5okIboZohQXbdfE/tUPCbXdrKk1jy34O4aXPeMo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:03:52"]},"IP":{"Case":"Some","Fields":["173.212.236.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3006:5899::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homez"]},"Identity":{"Case":"Some","Fields":["GPNK5lZ/X7CBxDU9Xtpc7hVYEMQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["loPCmsiahkXaDHZxMmveI/M4CO3YNAgUWLlRR1zAU/g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:31:55"]},"IP":{"Case":"Some","Fields":["188.165.192.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GO94GSXt9UYzOKtFDvDFbFyqLxo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bWpeRy5uG88FZtoGEjLT6DpREfrnietyJmogzE2ky+Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:41"]},"IP":{"Case":"Some","Fields":["217.24.239.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:75e9:1::10]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GOy/w6aDTLZ0FGQMfx52XlQs7Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RO/xVMg+HwKBVzTv+nGrZTUrHGWCb09AXf21iPKaWXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:39:53"]},"IP":{"Case":"Some","Fields":["144.91.92.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GOrSRlOMUP0IWb+XbE6EAfyXVaA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j8DAJCvpZqrJfBqUAiCxKN1DjOmMi0c0ktdZJJ5mkb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:04"]},"IP":{"Case":"Some","Fields":["24.18.194.124"]},"OnionRouterPort":{"Case":"Some","Fields":[12101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=430"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex53"]},"Identity":{"Case":"Some","Fields":["GOdTIUzYJyRCgLvTaqxPjnCz7o0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CtXGd2YiY4lYTMCRw0Q76jRRYr1YqskJsHw8FdaQtvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:13"]},"IP":{"Case":"Some","Fields":["199.249.230.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::142]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["malvin76"]},"Identity":{"Case":"Some","Fields":["GNazh9TCnckEKyJBECDcsFYm3nU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3RfCb/bHNegeXDpRKy0OZ7b5OTbB+Jh/xbHmUiAy1w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:31:00"]},"IP":{"Case":"Some","Fields":["212.146.101.18"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fractalia"]},"Identity":{"Case":"Some","Fields":["GMWF4VPfvMQUuCWf55lLpSC1628"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZVkcb4cxOmssBVaMcdClXeJr4tCUQgvrVk7bYCtDIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:05:46"]},"IP":{"Case":"Some","Fields":["162.55.177.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:bba4::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["GLEz8w8ukQd1yKel1LkrxszsBDo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aMe/DlBDkxb4KuYEysZBClkTLORaDX+sydJ82FlmBfc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:46"]},"IP":{"Case":"Some","Fields":["23.128.248.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::66]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FckPtnNRW"]},"Identity":{"Case":"Some","Fields":["GKtpHcbVZCz6wrvW+hFI6za5b7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pgBMl/XOq6lO0wn2b+Evrz/9orox1gpirdhnSGFpJNg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:07:27"]},"IP":{"Case":"Some","Fields":["202.61.225.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:56:cfa:c833:1fff:fe70:d8f2]:9090"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorMePlz"]},"Identity":{"Case":"Some","Fields":["GKXtS5qkNIgydcFdbPP3lbqGdEo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IQ0IsXEhm2PcNJN3l+mn9rQZavmu8Zul39uv/3PmlxI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:30"]},"IP":{"Case":"Some","Fields":["149.154.159.87"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["GJxE3QYxLW34+1epROaBn/JFdAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EhYRpU06GlULzBQYW7/hqk0f1BiXKBsZlVK5pIgvM8o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:10:11"]},"IP":{"Case":"Some","Fields":["5.45.102.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:608:942a:42ff:fe77:728c]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["igel"]},"Identity":{"Case":"Some","Fields":["GJMEG4b87Ros4vnixZh/U0t9w+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0MAqQOE/UgAemfX4Pt8ecmnRNUZEZUwQJ7pIJnaMXdU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:48:56"]},"IP":{"Case":"Some","Fields":["109.70.100.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::66]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOPAS"]},"Identity":{"Case":"Some","Fields":["GIZzzzk3RCUXMBgA84O+U9ShdzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["W+8JwYeNzN5uJC+ZQXdWvpbycMEGn9lDZmLhkyoy5Co"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:35:03"]},"IP":{"Case":"Some","Fields":["92.117.218.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9e8:2752:f400:e65f:1ff:fe00:96c5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["faceless"]},"Identity":{"Case":"Some","Fields":["GHt/0EIPUe1cv2stiIg26m7B2Ww"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/FrxcavXSyg1dbBHXRUizUU2m3reVeGwk1DRPm58GQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:41:18"]},"IP":{"Case":"Some","Fields":["81.217.189.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["GGcd5QksZ4g7+yRQwyZ7kmGL7GY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3AosPrCiQl7jtg86n1rfrmcrw7wnA8E8gFlee/muu1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:59"]},"IP":{"Case":"Some","Fields":["185.220.101.208"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::208]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CloseOmega"]},"Identity":{"Case":"Some","Fields":["GF8y3uQ8pG8S7eBhB8cY2wDp/do"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C8LrJZIhMcoI4mMf1p00yobt+3Stt5q+X2Nlm8HQLSc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:34"]},"IP":{"Case":"Some","Fields":["109.248.147.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoingBoing"]},"Identity":{"Case":"Some","Fields":["GF8qV7DEYgWCYCdhCX0X24FlT3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JVt1SUcAeTsLiqM7KLlEt5JosKwaKMbnGmBexraQXds"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:42:54"]},"IP":{"Case":"Some","Fields":["204.11.50.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["golferjoe"]},"Identity":{"Case":"Some","Fields":["GFtsHx0NMq3yW4mAc6YV3Q/BLag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MnwDfSduApX4a7dFn9wJ4O1uQoKm+g4y+xb52dEBHwo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:41:58"]},"IP":{"Case":"Some","Fields":["130.162.250.153"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xmtx"]},"Identity":{"Case":"Some","Fields":["GFBYW+m8ofgNCgUZCclOSdHEntM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8pk0r/7GqEXT87YgXXjbFM4Z/3+eKeA2JtD4j2bP1CM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:47"]},"IP":{"Case":"Some","Fields":["82.64.86.234"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:530:a0a0:eecb:33f9:1f82:4621]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["squid"]},"Identity":{"Case":"Some","Fields":["GEdPiew+ir5AFItCTI3VOZJCzsE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vIpN2Q9odGlEfpWKS8TKt+wDxQiui2Ye3/EtEwZplsM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:08"]},"IP":{"Case":"Some","Fields":["51.81.93.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["32a3c0b02b181e"]},"Identity":{"Case":"Some","Fields":["GERtMHNheQ1a7zakLwz54XCY93I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gLsQzrWgEMqw/9AXrmtiOamlHg+ptXnT9+ccaH19ReY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:46"]},"IP":{"Case":"Some","Fields":["88.198.184.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c012:d85e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchulteTorRelay001"]},"Identity":{"Case":"Some","Fields":["GEHLlgEogGFRth/G2Hr76amLmdc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FxXibCZboI1a1GhCmncfXUR+yDx8JXgMaNeHujHNBZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:24:47"]},"IP":{"Case":"Some","Fields":["66.70.211.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StaySafeHaveFun"]},"Identity":{"Case":"Some","Fields":["GC2V9SfT7DMU3w9Dmpp9wz9Fodg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jc9V/vPLJTBkY6xYj5upYr3H0jByjLfCzHlqs76ySEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:20"]},"IP":{"Case":"Some","Fields":["185.183.98.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=360"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["GCv/AQC5dyaZvkot2un3As2re5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQmPKIoWFGj+tgS8bYZEzm+D5ZCWlMt45tGit3ULk+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:19:48"]},"IP":{"Case":"Some","Fields":["45.154.98.225"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=32000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sol"]},"Identity":{"Case":"Some","Fields":["GCvSW/pulMk+WAZaA49b0+oPx6Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A2LcYBxIa+uO2ZrCeWxI1ApveaQJKbrviJFaagEj0Hs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:54"]},"IP":{"Case":"Some","Fields":["45.142.211.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:b641:6f1:6::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeslieY"]},"Identity":{"Case":"Some","Fields":["GCYKFLwQ+RuGwZMbDc/DXAJkBu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2QcM4L8G1EW/t9gt65uKoarWDVb8AyjMLHfd8PnkOs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:02:31"]},"IP":{"Case":"Some","Fields":["198.98.62.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=530"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stx74"]},"Identity":{"Case":"Some","Fields":["GB9Iv/XUJbzsHnjaxbXw5F/9r00"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8rb8ggbPP2IZNXLl+e54AxoQAFYSVCeU3a7rDvJ78h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:46:17"]},"IP":{"Case":"Some","Fields":["51.75.68.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::1db4]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["GAsfuDASns57zdedjp4dyqREyhE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bGwqohmVkVk8GPqtBUTKJpzQgezlzg/6/rLQH3msRFE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:06:09"]},"IP":{"Case":"Some","Fields":["146.70.82.126"]},"OnionRouterPort":{"Case":"Some","Fields":[38045]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Aramis"]},"Identity":{"Case":"Some","Fields":["F/Qfja+ks2qrEOICq6FGAarh1hY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Kc966/cOE/0nYPPP6AuGoihKqtdoxyDOeHz4A/2FdI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:15:35"]},"IP":{"Case":"Some","Fields":["45.154.98.173"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["crimsonshape4735"]},"Identity":{"Case":"Some","Fields":["F/BQ9lfsQbJcr48wwXPaWc7bWos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9lPIu1bYqtLAnaoCN6tGYiZCAiY9dLEib9Rl8zpUP7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:46"]},"IP":{"Case":"Some","Fields":["69.164.206.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe73:c4e9]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["F+wEN2C5C9rDC1NvTGUCkXY47Jg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKL4MB+3zrAzRLp0wcnWis6afsu+qLwmwbmPVJ7ZrZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:23:38"]},"IP":{"Case":"Some","Fields":["23.128.248.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::79]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["netfoxy"]},"Identity":{"Case":"Some","Fields":["F9IhYSqHLdK6eDq5YcwqPP4YXPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ab3dxHHdVYFQnxoSrEGrTWSMKfQMClqxFkg4upiCBsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:03"]},"IP":{"Case":"Some","Fields":["45.156.22.110"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Trolling"]},"Identity":{"Case":"Some","Fields":["F9Adt1B6spPoxoiXwVjdj+WhDhk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I/fb+ffvFtRp7WrV1qYuKQKxbKE2x5LCxMZZvJc5f70"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:04"]},"IP":{"Case":"Some","Fields":["198.244.142.123"]},"OnionRouterPort":{"Case":"Some","Fields":[420]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:1000::1538]:420"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Conservatism"]},"Identity":{"Case":"Some","Fields":["F7OoJpq6NIq8rzXHeuPV0nD/WVQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6vRcf/ofnM5SKsZDX2muMiqbjOu6t7jpw8rODPeoeSo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:06:56"]},"IP":{"Case":"Some","Fields":["71.135.200.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PacketPusher"]},"Identity":{"Case":"Some","Fields":["F6or+DnhKwxNf2QNoeijUh120fE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ffWTPjqYkYim103Maa7ThQPFMiZBlkFZk2leQQE09zk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:35:18"]},"IP":{"Case":"Some","Fields":["83.97.20.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:9dc0:31::c0cc:58]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bereg"]},"Identity":{"Case":"Some","Fields":["F6G6ZfiWV7Ner3GMRqIHPgo64D4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZHUlMVPAciwu8OJJMJGB3bzvCLkRylTpHLb+/1eIg7w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:14"]},"IP":{"Case":"Some","Fields":["46.226.107.215"]},"OnionRouterPort":{"Case":"Some","Fields":[10400]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fe93:b598]:10400"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lon"]},"Identity":{"Case":"Some","Fields":["F5GUYO/g38Kwzw1sRTrHKyUmMPU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HEnqESH5L0Dy5TGaxN/cODQ2pfvxNPR7bgffvXuMqTQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:44:26"]},"IP":{"Case":"Some","Fields":["160.119.253.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4Freedom"]},"Identity":{"Case":"Some","Fields":["F4Qc1hlUssN5mZJ+3wEJ2T2KUKM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZL2kY+/1VNDlVBPq+1c7uaLqdQTsyvkcEvZqFxuqTRQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:32:28"]},"IP":{"Case":"Some","Fields":["77.68.73.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:27f::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sabine"]},"Identity":{"Case":"Some","Fields":["F3u/XPnpA8KFrV7Kgi8SAhv25WI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JFT3K3+FmnWaF0TiCOgopLSC/90L4Orq05csfuas614"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:02"]},"IP":{"Case":"Some","Fields":["51.81.203.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:202:300::222]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluemax666"]},"Identity":{"Case":"Some","Fields":["F11j77kXa/rdMGhDlgv8CFoqupM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PdVC8mB9/yXqFuSPXJrFGBhL5i+pq4mDbyw864YePQs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:05:41"]},"IP":{"Case":"Some","Fields":["84.75.28.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["czrpYOL8Pp"]},"Identity":{"Case":"Some","Fields":["F11Zs39l7+srm2sz5T1HVGgLvPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4T3u6LDpB38qdyli354izcdI68BbJDIifuvkM1km4r8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:05:52"]},"IP":{"Case":"Some","Fields":["149.172.239.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:8071:4483:b940:dea6:32ff:fe5a:4ba6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DeadOrbit"]},"Identity":{"Case":"Some","Fields":["F1zuP1OdojVxWa8tPKXyqfwspbQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bxGQfwX27yM6z0iio1WFX4Rb6z5vpvcuqgusokhqKBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:42"]},"IP":{"Case":"Some","Fields":["188.166.66.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7600"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["260VoltLive"]},"Identity":{"Case":"Some","Fields":["F0b+lbxuuc8QY/UGOyMJDBT4Za8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eZkPBohIoAFeW4ic9+IWE9462nu3g/Dd0bFfc2NzpaY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:46"]},"IP":{"Case":"Some","Fields":["110.32.181.0"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackPanther"]},"Identity":{"Case":"Some","Fields":["F0YJl+ZsR/gFqDS+k8wU7A3GCOo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uku6I/yiLFnxx4cY7+eWnMOvg7kMyOHuZ7mJDW50MSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:09"]},"IP":{"Case":"Some","Fields":["213.183.56.140"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fz66H6yllxhJmugCMYfl+V6L8cc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zxD1oY4jGw/eU/LQ6D3/8cQoc8nmumd2UkXv3BsXPXw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:18:16"]},"IP":{"Case":"Some","Fields":["37.187.122.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:a:f365::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fy4JvJTAGTlXdq8VCXZILHMKUvc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EalyT0B5loILjjakFsX3O0HfKcYo0UcynG7+vW+5Vn8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:03:44"]},"IP":{"Case":"Some","Fields":["193.200.17.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:1fc0:8::a38c:7e20]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FyN1GFST2dYkiwHPloOlQJ0BaPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vsnw9xGwgLqhs9CJUUSBXEebm4dxNWZj8FLbPVxQPFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:35:54"]},"IP":{"Case":"Some","Fields":["141.158.39.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9099]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PumpkinHead"]},"Identity":{"Case":"Some","Fields":["Fwokqf/EM7rMpNnB20BcnRHVR2w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HsvrogLG7P0e8jNNU3UE5zWtnWMY8P47b8pbp9vuarU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:33"]},"IP":{"Case":"Some","Fields":["178.175.135.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=71000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FwdLT/sKCBXDVWOO66N7h/oS/7c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1S6mJxjJMCpgHyuBP5aYRvOpeoXGAY1Xab0IZ+BC/Zw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:31:49"]},"IP":{"Case":"Some","Fields":["46.105.91.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=86000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KagamineLenMonokuro"]},"Identity":{"Case":"Some","Fields":["FwL2iIdX1nmvvsmEL0uY6bArbUA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Oz/1+NkLMvYQrApY+f812jmRInB3msSODs3vEbPhDno"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:44"]},"IP":{"Case":"Some","Fields":["138.2.22.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c021:8000:d00::a2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ghostventures"]},"Identity":{"Case":"Some","Fields":["Fv8uxve1qT1Lvaynym04zhjdKFM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HwYExyOWRfhAP7ORQvxKNj92ol3am8fCiLWmuizSKYM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:00:21"]},"IP":{"Case":"Some","Fields":["139.28.36.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bluesnake"]},"Identity":{"Case":"Some","Fields":["Fvfp6T1sxGk5KtC6Ago/NZ35g0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V9R5XSM+iMv/T/8fyIJRmWGpLEGSP2fxxQG3bLN0kt0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:29"]},"IP":{"Case":"Some","Fields":["5.150.196.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:470:28:228::100]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=59"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FvNsD1pvfCZ/e6Jx2YaJFomXj8Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PKeydHcUCe2r/nVh9a+vxJVCjmyv7wxY2w/RTEjyHHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:31:32"]},"IP":{"Case":"Some","Fields":["109.183.26.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9049]},"DirectoryPort":{"Case":"Some","Fields":[9048]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["456c"]},"Identity":{"Case":"Some","Fields":["Ftt4RZuEX05yhAXraU4ykp4rMYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bwi0hJ3n8RQpmfGlmSstEnSrEFD+bGuX+exYxXBtajo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:17:36"]},"IP":{"Case":"Some","Fields":["91.213.8.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mempo"]},"Identity":{"Case":"Some","Fields":["FtBiCrCKCRyTukSHaUd+TBCf9XA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zKAiMU02UKDlz+wQhKT5OMIhKptOC3p/fC1FrjwEUQ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:09"]},"IP":{"Case":"Some","Fields":["37.26.74.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ShorTorExit"]},"Identity":{"Case":"Some","Fields":["FsKVGFI7Bruw89d13ZgShnPrYPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kPGFwb16s/1gEhUpM+mEjUzyy2qWG4Vct3IHozafXZM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:38:24"]},"IP":{"Case":"Some","Fields":["128.52.137.20"]},"OnionRouterPort":{"Case":"Some","Fields":[5101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rked03"]},"Identity":{"Case":"Some","Fields":["FsGgfcaL3lRnQvcdIHge+PpZUIM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JLkaTa7Vd2In0aJbxKQ7HsR1ml/ZLvEOCmAbQz4o5pI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:51:10"]},"IP":{"Case":"Some","Fields":["130.61.233.97"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8006:63ff:8b4b:9e15:5919:2a96]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zetoo"]},"Identity":{"Case":"Some","Fields":["FrSb5Omo8cgcWc6sFhT+nP2BZh0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HZFLbGQt9BbXnO3Oo7pK2ZGlqWCMxLCTjAmjTTHu5Cw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:01:32"]},"IP":{"Case":"Some","Fields":["202.61.203.115"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5a:b7f:e415:4cff:fec3:9d6f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0128"]},"Identity":{"Case":"Some","Fields":["FqIWWgsP1L8kozc3M3iGPjp2M6I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oKgrfPqv6AL7c5CLsMZRZj75JzDVRKN044HgXliwGfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:03:10"]},"IP":{"Case":"Some","Fields":["185.220.101.128"]},"OnionRouterPort":{"Case":"Some","Fields":[10128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::128]:20128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Fp02p1EI2dd7QiyJ76eDz7xmK/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sxzTt/oh56wZkXKYzo6Goyr2qqRaViEgQdzIwJ3Vfyw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:25:54"]},"IP":{"Case":"Some","Fields":["93.72.79.64"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bradburn"]},"Identity":{"Case":"Some","Fields":["FpU1zEx1/3nG1UjUFyAGTuT+YdI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Or/YtLYw3xIzMo+ht68GKSbYerbUmOxLPtTm2wuXMOU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:37:09"]},"IP":{"Case":"Some","Fields":["62.210.125.130"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["FpSozUVk2YfFnYoX108VPtlnrAw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Wgp0tuVuBqOE6JTMlVkGg9IdDSNvRNl30+qtHrTmyM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:33"]},"IP":{"Case":"Some","Fields":["185.220.101.196"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2:1::196]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["FoxKB78djy5dnF274HWBZnZIYCo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hbO9ecmfA6Q2hqImv6jlIEA3CelzYA7m2c/9N6UvqIA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:38:17"]},"IP":{"Case":"Some","Fields":["146.19.173.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FoSzCuKt03Hl06iz8orKTOnKLgA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVwBvYZW7qd6zuGMYLOPmebqaLLWhgQKsFWcMqUHfp8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:27:14"]},"IP":{"Case":"Some","Fields":["185.86.150.133"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:7aa0:1619::94eb:3758]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["guidemenow"]},"Identity":{"Case":"Some","Fields":["FoJPiF1ytPp6UJDgjYd+VAS8IU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B0FF7Q6MonkSfmTGX5kCTGKs4ibJRWtiN9vzM0jPImg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:04"]},"IP":{"Case":"Some","Fields":["62.216.54.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.11"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fortunepink"]},"Identity":{"Case":"Some","Fields":["Fn3NqEmkfq7CJ7WEGAyz4iB3MVE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ebz0MbsqKP9OsuKC9I5rTtraKE/9RGuY9EMM2X13qMs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:13:52"]},"IP":{"Case":"Some","Fields":["27.255.75.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nimblebear"]},"Identity":{"Case":"Some","Fields":["FnBqr9olnRQ+B72Wfr5Q0Y7A3BE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o2jAG+3kYydYomcK8FxjUgFQw0Tvx+yQUfAw1aWpIKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:07"]},"IP":{"Case":"Some","Fields":["31.171.155.122"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["boats"]},"Identity":{"Case":"Some","Fields":["FmnlGo8dfXJVaD9VNtO+ZD6xFmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NKsof4d54WK9gIUlMVmWoyn0afZbjRn+41MIGsMelzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:16:42"]},"IP":{"Case":"Some","Fields":["89.58.0.89"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5d:dd7:1451:c9ff:fe68:1d78]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei10"]},"Identity":{"Case":"Some","Fields":["FmhQ0WnMeVbndSWhqSKLxFY8/Is"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Hf/1xgLmZIgYquVZmsSyIAY76QOCNbhvxnpeYY/n8R0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:01"]},"IP":{"Case":"Some","Fields":["185.162.251.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1a:5c5:38dc:87ff:fe07:85fb]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev1b"]},"Identity":{"Case":"Some","Fields":["FmJkFo6MzLskRK3g8KIuTm3e9v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/rRSD31QV6Ucsnlw9oYWn4PjE7WPkVd+rJF0i9S8fr4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:51:11"]},"IP":{"Case":"Some","Fields":["87.118.116.90"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:3132:102:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toraway"]},"Identity":{"Case":"Some","Fields":["FlpOhDE2nyRvdL+D7rUVtLHSNMc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xwymRovhcgW90dRgVFfIvah11qKZFRMiGSZbjDEz+tA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["24.190.192.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=68"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["SonicRelay"]},"Identity":{"Case":"Some","Fields":["FlPIaHaqQwMLBYSXacupL14wqcE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aj64dZet4Ryeiskbpi24G0GCQIVKZL0k5T4yWa9SKCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:12:59"]},"IP":{"Case":"Some","Fields":["65.109.28.254"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:5a:1a40::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mypirelay"]},"Identity":{"Case":"Some","Fields":["FlMNjM1qfCwTVkpXPpsjzhpK0k8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BYknFekAWTyt39B/Q2ITY96GCWeLZs/AXWqw6NGEEh0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:55:07"]},"IP":{"Case":"Some","Fields":["188.79.234.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=330"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IcyDessert"]},"Identity":{"Case":"Some","Fields":["FlFDuP+4Qkeb1c79eVa6hZC+k9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JjXKnTcTSYq42GhhcKrxdSQwG3dDSIL7FQP8t8CCZ7A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:28"]},"IP":{"Case":"Some","Fields":["140.238.38.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["DefinitelyNotTheFSB"]},"Identity":{"Case":"Some","Fields":["Fk2qAFXBTn7A3cxLl+g97fGD73Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pnNvJi7HSXwelWg83mWgo7lJBrALEg6fddDcRSV6bEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:35"]},"IP":{"Case":"Some","Fields":["185.224.83.93"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["theqube"]},"Identity":{"Case":"Some","Fields":["FjwH9C6wa2VBDoKgqx0U3t2CbA8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b44ojlzlx6xvkleaJq9ovCq4DZkT4MSEaZkHcmZgSb8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:47"]},"IP":{"Case":"Some","Fields":["45.125.65.112"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FjVcHAsCr2lhiualF6UmuKa5i5s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9sMcOh7kqu9xMLmmFmcB904+iVGZ7hD+FJROCYb3cs8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:08:14"]},"IP":{"Case":"Some","Fields":["104.244.72.132"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Piratenpartei01"]},"Identity":{"Case":"Some","Fields":["FjMD8Fg6GRcyYhQ3m9GrLShgRuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WesBEbRu5ooQqdzBNkIvArYXqZBovqq2z/j3+dUIYGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:41"]},"IP":{"Case":"Some","Fields":["185.233.106.34"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:24:591:a8a0:aaff:fe05:20e9]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BucketOfBits"]},"Identity":{"Case":"Some","Fields":["FjJMiRMr4U8Z4T/W6zIm/Frj8Fk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yyb2IXGriTDbrSvomgJ7yxAY2M/axSkrqwdfFvcW6XY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:53:19"]},"IP":{"Case":"Some","Fields":["142.54.162.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DefCon"]},"Identity":{"Case":"Some","Fields":["FhtnrSv71DYCkDCIozDvpkLn2Y0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s48ExV1VdReAgVUt207Huw1Pig1lE1NbsDfsqsQOMzo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:15:25"]},"IP":{"Case":"Some","Fields":["188.109.126.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ceviche"]},"Identity":{"Case":"Some","Fields":["FhCIqpYfnWDCjGYMgVJe9NZYiQk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0KcB+EGZMaxwahNZgm3WJmB/4UrgAhtxVag3hjIeDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:43:37"]},"IP":{"Case":"Some","Fields":["190.42.210.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nullptrf700ec10"]},"Identity":{"Case":"Some","Fields":["Fg8AJj2aeAVBWm3zqmGF1W2jHbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DXqDnsuUbKof4kb1wTMDaDgcU9dv1/CkHeIUn11mqu4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:15"]},"IP":{"Case":"Some","Fields":["51.89.148.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spider"]},"Identity":{"Case":"Some","Fields":["Ff7kI9/4r54uCBlZsMYyYHLGDaE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lEWKHxnRNPlzLJkFOZlG9/S0FofZb7fwv640zPkVotI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:59:20"]},"IP":{"Case":"Some","Fields":["192.119.108.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cloak"]},"Identity":{"Case":"Some","Fields":["Ffz+yBUiRTpYrjiE1mCmIahHKBY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mu/52L9c0TKyrgnv16ZhXkAWs+cUT7fby1I+DeS1dS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:01:07"]},"IP":{"Case":"Some","Fields":["185.26.156.13"]},"OnionRouterPort":{"Case":"Some","Fields":[40745]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:d0c0:200:0:6ca2:b2ff:fee6:2c13]:40745"]},"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["RandomPersonX"]},"Identity":{"Case":"Some","Fields":["Fdf7oKPvCMc6ekJgYZc5m3Bs3EY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SGOkfTcZDiKQR5TLkC7e89/2Y7o+b7UvpDUYJmsjtGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:12:08"]},"IP":{"Case":"Some","Fields":["2.204.199.222"]},"OnionRouterPort":{"Case":"Some","Fields":[13001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FciHcqwfKf2nAu5MXb+74Fezu0g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UIkY2pk2R1gn+Zes4tA35m/pi4qJIGRCbxHi8X+7IMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:16"]},"IP":{"Case":"Some","Fields":["23.128.248.96"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::301d:faff:fe05:55b6]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor07"]},"Identity":{"Case":"Some","Fields":["Fb4XyZ+s4kRw1Ar3gtapxpKrNtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ouSZndGq5VfuFVMjDqz9iRuFLWqWge89nGFloQg1T0o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:44"]},"IP":{"Case":"Some","Fields":["51.15.78.0"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:2415::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bayswater"]},"Identity":{"Case":"Some","Fields":["Fb0vTNCfNE5AmO1rl3c8UuJJYsU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6OSVNPWJf/CeVjPZ4gOpqs5Q9t+1vvhH4njRBwl3SWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:43:01"]},"IP":{"Case":"Some","Fields":["65.109.16.187"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["5b82I0IfxsHI7ekh"]},"Identity":{"Case":"Some","Fields":["Fa5v/g4kWoINT3TqZLTDBO5VXB0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AhraRWU9VGoakmH0cEmDej9azz/l9lg95rkXoaJBvV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:19:26"]},"IP":{"Case":"Some","Fields":["94.134.60.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoomerIsland"]},"Identity":{"Case":"Some","Fields":["FaSOcyXDTTO4SZ5uAgZZFLoYAcc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ELZyoWBZrQLJXlIrc2gbjyxc34lutYxGCrJ4XN2Cd0U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:36"]},"IP":{"Case":"Some","Fields":["150.136.142.129"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:400e:2d00:1dab:577c:9b9:1ff0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fckalltrmptards"]},"Identity":{"Case":"Some","Fields":["FZ0uYLh5hJ5V7Z0qgZIqCohWtPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vTZz9Gyss3r/yyqskVvELZ8cn127hu4NpBaJWd/ONDg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:58"]},"IP":{"Case":"Some","Fields":["104.237.135.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:93ff:fe25:f3bf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["RToRpi"]},"Identity":{"Case":"Some","Fields":["FY1BG1HTE0VtRe9m0JlYWXbM3W8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nvzax4GmaWDTN1plwhT2iou2hpEJNZAwDlIvPqXfG6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:39:01"]},"IP":{"Case":"Some","Fields":["194.99.104.35"]},"OnionRouterPort":{"Case":"Some","Fields":[13526]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bundesgebaermutter"]},"Identity":{"Case":"Some","Fields":["FYQalspcEXGYWpVlv3zd/iv46R4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FjN2AJ5xfer4DRt2z/Co1mQww/tvK72XxODznh9kVUg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:27:20"]},"IP":{"Case":"Some","Fields":["178.1.124.190"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kwt"]},"Identity":{"Case":"Some","Fields":["FXKMGrZRsCnjJZhRfmUacMpD3v0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2IEoc48xy0mAsNakX7FRJXcPTgsbakN2iTcjR3E1v68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:12:53"]},"IP":{"Case":"Some","Fields":["195.88.57.217"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex18"]},"Identity":{"Case":"Some","Fields":["FV1vV0JfFsBiTXd3dkHk6xtHxvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A+w71sXp7J/z8XiMgOFsbpaH8t+YdHCTFLnZ8KnBv4I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:29"]},"IP":{"Case":"Some","Fields":["199.249.230.108"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::108]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=880"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["speedy"]},"Identity":{"Case":"Some","Fields":["FVVxiGUDZV7bU07MQU6sZwejqcM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MXhlHj1NqQALYvgVKCBPy3IaIpqtYdE4YjzgO4kE84U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:31"]},"IP":{"Case":"Some","Fields":["91.211.91.182"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mac68tm"]},"Identity":{"Case":"Some","Fields":["FVUT2vQuGPoW/Od9CEF+RgeFqVs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k0pGwcwZsPkbgApSkrgdAGmICehAnTm5lWv10Yt2ydw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:50"]},"IP":{"Case":"Some","Fields":["94.4.206.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FUUGQBg9ZIiv76i1DujpH2Sv6as"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8khik/Q5fBVcOI6cLfoPsr0Y+EAy8Pcgux3xYtopSrg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:08:19"]},"IP":{"Case":"Some","Fields":["198.98.57.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FUNe1UtnkkzOZgLI1X1l3v02bC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hxK6AD6/+1oZSpJ+KjEQLtmpldh7xNJ1sJqRnA5Y/Wo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:52"]},"IP":{"Case":"Some","Fields":["185.194.142.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tspio"]},"Identity":{"Case":"Some","Fields":["FTKjYXLHABKxBX+7+v4nNO2/Sjs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VxdttLNu5/c7aIM1sZ836BYUGBD450GnAZ+ZypdNHMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:08:11"]},"IP":{"Case":"Some","Fields":["77.81.247.72"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=250"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["plithismos"]},"Identity":{"Case":"Some","Fields":["FTBCM2IiFD1nvz0DySVX+Rsa2Go"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Q8Ez1Ug/JhXChIWxAdK9x2+9Wvlf5hCkStsKt9BDAow"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:01:01"]},"IP":{"Case":"Some","Fields":["152.67.162.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c024:8001:dfea:1::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbitraryKenzie5"]},"Identity":{"Case":"Some","Fields":["FSkSkdgeQE+2vsFtNmYIWQ0rAkc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xdi7PFle54ZE2cKJT6xmoKEUPA7rW056WuDroNdYlr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:06"]},"IP":{"Case":"Some","Fields":["65.108.136.183"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6b:3408::4]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["casaholiday"]},"Identity":{"Case":"Some","Fields":["FSPFAql1S2tCzKXrQCqDPP8OQC0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xm9xIPguvAJmP5ZkGhbngaS/w8n267uPLG5zsI1NE3g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["209.90.224.5"]},"OnionRouterPort":{"Case":"Some","Fields":[39001]},"DirectoryPort":{"Case":"Some","Fields":[39030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BarbarianParty5"]},"Identity":{"Case":"Some","Fields":["FRDVfcRxJLIxmMeMPwM0p8JMx4w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cmze5p90Dv3NikxKjPfN2DQ8recQBE59A+Rlr99VsNo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:05:38"]},"IP":{"Case":"Some","Fields":["173.82.108.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["donttraceme"]},"Identity":{"Case":"Some","Fields":["FPI5HBKo+8LHLefUMMeC16AJNPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nSsDXhaVh7L6oey8iVQgR9ub7fGV6NplKrpVtagSmbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:00:03"]},"IP":{"Case":"Some","Fields":["78.22.225.174"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange012us"]},"Identity":{"Case":"Some","Fields":["FOctTaELZjU+WD8m7gSsDVY+p+8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XtwWC3QsuJPxpXT/vl317saKy8tbnUC7kws8QXZlnhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:53"]},"IP":{"Case":"Some","Fields":["147.135.114.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:2dc0:101:200::6c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torRelayMoniuszki"]},"Identity":{"Case":"Some","Fields":["FNoSg9kDmWCi4vS0Y4eCHb2unMY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hCy5KRT+42pnHqFnwi4OlviQbKaVP+G2xnSbHS61+GU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:04:35"]},"IP":{"Case":"Some","Fields":["185.45.245.113"]},"OnionRouterPort":{"Case":"Some","Fields":[763]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tw"]},"Identity":{"Case":"Some","Fields":["FM5ElLyLY1XSGIIffWqsX3532iA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Bf+Zx+/ByzkSJnAJixt5NarbLcr9c7lUOdEnlDoNv0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:20"]},"IP":{"Case":"Some","Fields":["103.54.59.52"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["justhelpingout"]},"Identity":{"Case":"Some","Fields":["FMx9s/b3vpjVfL7cN/vEkjLH/Q0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9VdqUZpKuSQGNXpAXmzAhA4l2Hh3P69JqS+p9pwO07A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:25"]},"IP":{"Case":"Some","Fields":["5.9.137.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["FK8D5elIbnSLZRuj+C80eK01GK0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["28TVrrbUA63wrIbL9adWuxJtxOq2wLAxnyCPQ61xRK4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:51:37"]},"IP":{"Case":"Some","Fields":["23.128.248.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::42]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quartzyrelay"]},"Identity":{"Case":"Some","Fields":["FKHWtvQX3sOLsFo/+tVm9uAD4Nk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iq3A+iJDI9BLbExe+QlvWlhMhBTF0TF61ih9wAPej8Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:21"]},"IP":{"Case":"Some","Fields":["130.162.33.30"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["FJ5YQZna1ZZvraoH9GUusV6fxlg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SDVPQGsI/R2uAsCTVm6BmjuIO5PNUaN2dO70aGppfDQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:48:31"]},"IP":{"Case":"Some","Fields":["199.195.252.18"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["FISHxuvgTrIklggMIHlsUbBg9hE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xs/x7CnmL2uFHpuSxN5GfBbVeohODg8pRvoF32dQd6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:17"]},"IP":{"Case":"Some","Fields":["37.191.199.95"]},"OnionRouterPort":{"Case":"Some","Fields":[38443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fea6:13cc]:38443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH114"]},"Identity":{"Case":"Some","Fields":["FHscbh1Nh0uylJ6Q+AdXImWsr74"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U4t7dzqTuuH1mX8wNrJRGHL2oqmOU0uZElC4Xzbq1H4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:05:42"]},"IP":{"Case":"Some","Fields":["192.42.116.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:214]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlexGraywood"]},"Identity":{"Case":"Some","Fields":["FHMh7eg50mZgHmWn+q0wZ0mx7sU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sdplGronu7Kg9B1EPeHKXlwEujwm8UU1O6bJR8/xkkw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:56"]},"IP":{"Case":"Some","Fields":["165.73.242.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackMesaAG"]},"Identity":{"Case":"Some","Fields":["FGkwdMIyXOyHRq+7hSkedJrEXV0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BVS+Yz8rXvWbX5QPxNESrrYXQ6XmVUo55+qMsPvmXoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:26:43"]},"IP":{"Case":"Some","Fields":["85.214.64.22"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1162"]},"Identity":{"Case":"Some","Fields":["FF4Yh1Yjugx61R7osbnPUSHAcc0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Frhz1m2FH3l3LlEqVEnqkZM919Zjg3MjALEmDtqss8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:55"]},"IP":{"Case":"Some","Fields":["185.220.101.162"]},"OnionRouterPort":{"Case":"Some","Fields":[11162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::162]:11162"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayChu2"]},"Identity":{"Case":"Some","Fields":["FFIjpPdh3Z8OFNzfUSD+1PmY/cY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MUF8Fx7SB55WsxVAnhbFA2QjYh9AbiVtv2jlCLqsdes"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:01"]},"IP":{"Case":"Some","Fields":["158.101.203.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c002:b0e:df68:94b3:52b1:5f2c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UrbanTorRelay"]},"Identity":{"Case":"Some","Fields":["FEParwn0eHXZIvcYyMyJqIxQs/U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IVMMyGWRf5HdWfGkSe8/S+nYB3qupltLhm3yeja+5PA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:41:22"]},"IP":{"Case":"Some","Fields":["108.28.144.192"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wagwan"]},"Identity":{"Case":"Some","Fields":["FEL0DKM6wpRB9U72lvzASloWwwc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sI/438dBWBeTH8LHsySlYbxhQY1DfuY6Az9di+fUst4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:30:10"]},"IP":{"Case":"Some","Fields":["50.7.154.218"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ServerTor2022"]},"Identity":{"Case":"Some","Fields":["FDyY1PEX88UuvdbsAzI7haE6oxA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9uUzOQ148Lj7SyWf0FsWEkBP4W2bcFA3Xe3qWZXyp7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:53"]},"IP":{"Case":"Some","Fields":["46.235.182.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Superluminal2"]},"Identity":{"Case":"Some","Fields":["FCWTT6OQRjhsOy78PY944IpzHKY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j/4yjSNHBGBJs0zW3MY+yr5odcZtpdK+xZJdx4sT4wE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:30"]},"IP":{"Case":"Some","Fields":["158.69.48.49"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::3aef]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Vulcano"]},"Identity":{"Case":"Some","Fields":["FB6aWi78H4zO2wMs3rrTIH7MZQE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J0J0tqlL4EsNAAJflnnQssJHaUvG2N9JmJqqxbkaAVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:19:57"]},"IP":{"Case":"Some","Fields":["94.172.84.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KatSystems01"]},"Identity":{"Case":"Some","Fields":["FBNxE+QEXuyyCQPLVCma+zcGE1A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aSuyty+9O1u26mM5vrEwPufB3XZzND5sW0O1MB1YaVY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:20"]},"IP":{"Case":"Some","Fields":["54.38.215.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::3eb5]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["g00dplain"]},"Identity":{"Case":"Some","Fields":["FAjuV2iiyhbHQKWcQZc10MAWd6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6B0l/5jcTCHYmIKSkRyaCJayGQLBBdG7gU0ArZR9OZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:26:23"]},"IP":{"Case":"Some","Fields":["82.66.103.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:e0a:807:de30:4066:2214:e028:3ae7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["E/vJdRbchUOZ5wvHyppFE//U8Iw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QAkUmhVSoe3XO/OOjC5o3dvbQVKyiQVhvdkfRGOZ2nw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:01:39"]},"IP":{"Case":"Some","Fields":["94.16.117.97"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipgb"]},"Identity":{"Case":"Some","Fields":["E/sm+TYfgDrRkP6Is14kHcCEsCY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ei5w/weeRhvnuhJHn8XA4Lps6q1L1rG554y7kMY/qWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:29:05"]},"IP":{"Case":"Some","Fields":["185.220.102.246"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::246]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CanopoIT"]},"Identity":{"Case":"Some","Fields":["E/fq5zHKRgCVGYaSHgjsq5sdKvY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x6RF9g74zWdTLUOOhHz5DSJaWi8fKzBWtUEEfPEoTEA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:24:43"]},"IP":{"Case":"Some","Fields":["37.9.231.195"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b78:2006:ffc3::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prostor"]},"Identity":{"Case":"Some","Fields":["E/TN5xz71KsNj06E9ip3TyexiQA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VLkLVSzT0RaP1l6qRby4Zv/FAcJjPfPWOII3nzFSO2g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:15"]},"IP":{"Case":"Some","Fields":["46.226.105.168"]},"OnionRouterPort":{"Case":"Some","Fields":[10100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:feb8:ae3b]:10100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darky1"]},"Identity":{"Case":"Some","Fields":["E/JNX8YOmdNTWmh2HC1iIwNIT5M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9nENAvtOhgkhg0L6bsPYJr3vdt278ny8IXmKiZV197M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:17:37"]},"IP":{"Case":"Some","Fields":["51.15.46.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:1828:925::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["E/EinEG4pn9KuUmjr6Xm8572i/w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KVpefBtxvkoGywGv8sPfvekntV/uY8jkD3B6xY/mwv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:38"]},"IP":{"Case":"Some","Fields":["62.171.165.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UenoStation52"]},"Identity":{"Case":"Some","Fields":["E+4OFMaidRYzE4J3wUQ6TDfdVdQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lqFXPh/sfXQ+I1q0MekbZAfoFxh0XRvpPKo+CobPcu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:46"]},"IP":{"Case":"Some","Fields":["51.89.143.152"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["t1saczhbu0dgljekrq"]},"Identity":{"Case":"Some","Fields":["E+lDx7DA3WobyCAbYgN7S/ces3Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xAdBlD4sXmVKYu9ZTlofHRqhDpyFzMncUbpHv0uVHYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:04:42"]},"IP":{"Case":"Some","Fields":["51.154.39.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:ee41:84:9066:200:ff:fe00:202]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RavenSecurityOnTor"]},"Identity":{"Case":"Some","Fields":["E9/8hupMz7gg6+YWLmv57cO6ZqQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ypEO2ukux6Jv/a8+pMhLSJSd9epH2Bxwr2z50Ew+DUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:24"]},"IP":{"Case":"Some","Fields":["135.181.165.179"]},"OnionRouterPort":{"Case":"Some","Fields":[25]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["E8rcngnzCvJKmLROiDI9tlWoA+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lFTrU0Od1Ik+is6MXJloih2sRXeDqxAC7laiVWeyCZY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:56:29"]},"IP":{"Case":"Some","Fields":["188.68.56.103"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["imieeet"]},"Identity":{"Case":"Some","Fields":["E78gZaXC+Hz+kO9DG11oCQM+rSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0RzWraUUqmzf0iYrGqgveT7pycxHkI3ugBgtM7IoX7M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:42:11"]},"IP":{"Case":"Some","Fields":["51.210.61.198"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORtitan"]},"Identity":{"Case":"Some","Fields":["E7I1THTM4pgVtOH2kvLw6Gx/E90"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vwDP9SKflEIO8Bb4i6fLnbZB05iH48+5mal2sbP8LPA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:18"]},"IP":{"Case":"Some","Fields":["172.241.140.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zion"]},"Identity":{"Case":"Some","Fields":["E6cCLEn22Fb+KO4yBWGes//NRrM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7eZrGDVI+TqahiymixjHI7OlIdAZGy9+Xr42qn695vI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:17:30"]},"IP":{"Case":"Some","Fields":["78.194.37.29"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex67"]},"Identity":{"Case":"Some","Fields":["E5yGxMm8lOibr3mxXr/fk5bdW7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l7JkLILoDBkpKiA386Tz6RH4zPbnr17PPgZO6fFy0qk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:05"]},"IP":{"Case":"Some","Fields":["199.249.230.156"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::156]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["catcharities2"]},"Identity":{"Case":"Some","Fields":["E5Rz+g3Ai272NRVJjqtRwSeWGw8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9u93F5nMcZgjXJxqg/d6v2VIm9t7n+oahGsVObNQdVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["207.2.121.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:3e20:378::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sennovakatido"]},"Identity":{"Case":"Some","Fields":["E4uV+aEOi+umsUKtrHMxdlxhrOQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0C/bYY2ZajLZlEn8iii7pBeN7z/6Uzhap/uVU/ctayw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:59"]},"IP":{"Case":"Some","Fields":["158.248.86.72"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doerak"]},"Identity":{"Case":"Some","Fields":["E4CcwcB4KHUqJIzbyBhpxS52vr0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6CfjC1FhXZsif0rGyGz9NWsLUyMeMSDG5TKWhSS8QEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:00"]},"IP":{"Case":"Some","Fields":["65.108.210.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:3711::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["QuandaleDingleRelay"]},"Identity":{"Case":"Some","Fields":["E2YvTItYhrC32nYEoCXN2+P8LYg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eoNozqj1niUX6wJqjuN0sSJr1hoS4ZYOv47c8LFqVJM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:11:33"]},"IP":{"Case":"Some","Fields":["95.235.232.34"]},"OnionRouterPort":{"Case":"Some","Fields":[59132]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jellyfixerpitbowl"]},"Identity":{"Case":"Some","Fields":["E1/0TMM05mMvL3S52Z59QzQiq9o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Xn360RvJXsTssj4vROCSjx14mhujoE1OtbgZivO1y6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:08"]},"IP":{"Case":"Some","Fields":["45.79.14.141"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:92ff:fe97:c70b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonjubilex"]},"Identity":{"Case":"Some","Fields":["E18qizL1g4RfKw4TPv2EwlAmdhs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0v2ll5GCmhflH2A4N0Mh4eGjSCvlvXTqOXV+XGY8yiE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:19:37"]},"IP":{"Case":"Some","Fields":["185.220.100.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:8::1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4chanEngineer"]},"Identity":{"Case":"Some","Fields":["E0eYwCHe5AHqTILY6ZZw/rnKI0A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U+qNIT4J+DNdAFyzaHZYPjae2rvvKMAkeZRjXjsJIoc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:46:24"]},"IP":{"Case":"Some","Fields":["66.187.123.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["themayor"]},"Identity":{"Case":"Some","Fields":["E0R+7v/UJ3EgOp9/2ztCWHuQbHs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4zIv8BFdXUeKOAOqZOx+lc7v//PucK4PIR7KbaI4VZU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:28:16"]},"IP":{"Case":"Some","Fields":["45.35.34.46"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["galtlandeu3"]},"Identity":{"Case":"Some","Fields":["Ez09jztyIKMUuvAqQqVm4jAjRjg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M8UQLHFcRcX1qbN/JjrgaA1pIynWYOTYE6mOjtlR+bg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:58"]},"IP":{"Case":"Some","Fields":["95.217.231.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:4a:48d0::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KoolJack"]},"Identity":{"Case":"Some","Fields":["EzkVehQUhKtfQfJZGQJkPwdFy/A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rbRpoCIaeGWWfjeLMxiK6xGok3rPS14WXzVVzwZb61M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:19:24"]},"IP":{"Case":"Some","Fields":["154.67.116.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakePHOBOS"]},"Identity":{"Case":"Some","Fields":["EzHU8g+Wef6p8ar6LqnJkqxvFy4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eThMFC3qa2my1WsnBHnTH7r4d5CJj1hBQM4DP91cVnM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:11"]},"IP":{"Case":"Some","Fields":["5.199.162.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=78000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809nl001"]},"Identity":{"Case":"Some","Fields":["EyoILOMvPN0b24CyQCmaYVNG80s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dZfQDwz23VohjW7FFH98ymIYjDm/rl9xEGs5Q8cEbwI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:09:03"]},"IP":{"Case":"Some","Fields":["5.255.102.43"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:107:be74::1]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quichupps"]},"Identity":{"Case":"Some","Fields":["EyBOCOv5qUMhttb8Wh8K3wLvPyE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["erYiUg5JbRUTiMBlRgOOFtitDqdrJpl2lYob4qc3LE8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:44:49"]},"IP":{"Case":"Some","Fields":["146.0.32.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9788]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffa0:59::1]:9788"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CCrelay1337"]},"Identity":{"Case":"Some","Fields":["Ex+8ij1LRN6bJYrcWGdAgrHgbSw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A5wFYCtEviJHOpvbuFrOo4ACQeFAXKvsXyXOJ8EfQj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:10:03"]},"IP":{"Case":"Some","Fields":["188.40.238.144"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["futureWorld"]},"Identity":{"Case":"Some","Fields":["Ew8zUR1To0+QlK0ENKkBPsY7IBw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DFgdiVo9D7Re/fjgi/pIQlLwwnVn5lNi52A+YTTOnWk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:02:56"]},"IP":{"Case":"Some","Fields":["188.154.181.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["funkturm"]},"Identity":{"Case":"Some","Fields":["Ew5p6PeD3vJW51f6eBVLfcKjng4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6Q6c0q2b0rK3+dPMIpHSF+pyWfjVuxRhST8iZGgVM7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:09:29"]},"IP":{"Case":"Some","Fields":["185.72.247.145"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lossantos01"]},"Identity":{"Case":"Some","Fields":["Ev/zkNTVbFQkbT+EMLR10XYLtKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3N3ThBMyQuxiF7mefeemG1dFAb22OxGxmde6XFg+zMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:54:03"]},"IP":{"Case":"Some","Fields":["212.227.142.193"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ridcully"]},"Identity":{"Case":"Some","Fields":["EviHmN1Lm/slppeNqD8ILvHVBRo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K8sxYB6shmuaqUcXGkOaMSjh9FJj2jN5IHsAGSP8RYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:00:00"]},"IP":{"Case":"Some","Fields":["188.40.99.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:221:1901::12]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Et7gEhukQxuYDlfO8fcWNMMbZzU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Z6hQK8JwEDgBHAmuz6geXp/XjYZzvIbSiJQF86/q0i0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:28:03"]},"IP":{"Case":"Some","Fields":["81.197.113.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorRelayMPC"]},"Identity":{"Case":"Some","Fields":["EtnaU59HpVkf1T2Supvd+IiWiew"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SzeJDb0CDz/q9TizesjBbU/T0JhyV0Ni/wMRWx4fPvM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:24:15"]},"IP":{"Case":"Some","Fields":["151.80.44.177"]},"OnionRouterPort":{"Case":"Some","Fields":[49001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:e:11b1::1]:49001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["shortmax"]},"Identity":{"Case":"Some","Fields":["Etl4wqTLSsF5QP6I+Jm2eg/5uq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["o5I3s8N1YvslqGEWpsG952Vqf5Mu8fbR+th38nrjUf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:45:18"]},"IP":{"Case":"Some","Fields":["95.216.141.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:513::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFNrelA"]},"Identity":{"Case":"Some","Fields":["EtVS6K96orcbIYtbv2pf76bya6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r5fOW5uGosLSvNvRPfR/2xNxELS6KsPfwMsRAg9oFdg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:24:40"]},"IP":{"Case":"Some","Fields":["217.182.196.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dbalittleB"]},"Identity":{"Case":"Some","Fields":["EtUUWMcHJPxiVfkzyDHCKBMTaYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["d9SSzfvW7p/9XpOS7wTVOYyAnfWTWcrb92IEfn6Kl94"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:40:41"]},"IP":{"Case":"Some","Fields":["63.225.188.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PikachuZap"]},"Identity":{"Case":"Some","Fields":["EtUM0DbezuXDoQTWtxn14k5dRbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/nKTVnyb3hd0J+TITPBDeA5HPtYDc7OBfkFy6nXlFBw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:31"]},"IP":{"Case":"Some","Fields":["185.244.30.43"]},"OnionRouterPort":{"Case":"Some","Fields":[12810]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:803f:b5e7:1ef0::1]:12810"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4rescue"]},"Identity":{"Case":"Some","Fields":["EtEPFmaC7x/K6uRn8bTX9srrITI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["htMWRK6xubArs9kQh8g+9aAVPJpUHCp0PDRx2L1Va5g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:08:42"]},"IP":{"Case":"Some","Fields":["213.202.223.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Es+E09LjC7l5m/wOHd39qNNa8Ac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["igRV4xIlQX2zLpW2N+NXDK8/5P4EQduRNWGjUXQ0YR8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:04"]},"IP":{"Case":"Some","Fields":["149.202.91.90"]},"OnionRouterPort":{"Case":"Some","Fields":[39353]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:1004:b5a::1]:39353"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bammbamm"]},"Identity":{"Case":"Some","Fields":["EstMDninHIRgaWBTYbHh/1KOGvA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GRSBDFwzaCD1atb1+iG+pYUixWuBGCRYsqSjhvFMNWs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:49:48"]},"IP":{"Case":"Some","Fields":["193.43.147.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RDPdotSH"]},"Identity":{"Case":"Some","Fields":["EskzdsWnCzU917RKNPtxDhMVKt8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+KQvWrY5AFHMxrUXHjPgxeSKuDYoXZWujx/ROVxV6nI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:24:58"]},"IP":{"Case":"Some","Fields":["185.241.208.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rinderwahnRelay32L"]},"Identity":{"Case":"Some","Fields":["ErGldp04/0fPaMIjXhvaMV30API"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SdFJ8sSzsMWzixXHj8vcG/VGZh7XOkBE3n+z/36XJH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:18:52"]},"IP":{"Case":"Some","Fields":["185.212.110.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:8620:201:215::2cb9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mdfnet1"]},"Identity":{"Case":"Some","Fields":["Eq0w5dJapn9Rl4DiER5hGkVf3Ik"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oA5bKWeZKq57ohFP/mKebQIzYvJoZeNqWd3bF9oTKs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:54:52"]},"IP":{"Case":"Some","Fields":["193.11.114.43"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:6b0:30:1000::99]:9050"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torarch"]},"Identity":{"Case":"Some","Fields":["EqTyB+4jHzQsxbWj8sbcgKilnpg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X55ib24wWEDny/ZLQN36fyuoEsdGdJ+QWsM/4Jkva4s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:48:45"]},"IP":{"Case":"Some","Fields":["45.33.55.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c01::f03c:93ff:fe25:b23e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ieditedtheconfig"]},"Identity":{"Case":"Some","Fields":["Ep95CauDLT7jchxJcfEv/08TKu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7h6kt3pnvjF9rDK2GcfHAQeEUlBeKEuhfdk4NLm+P6Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:30:28"]},"IP":{"Case":"Some","Fields":["82.48.209.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sasuke"]},"Identity":{"Case":"Some","Fields":["EpYRME89k1NR/SVQcTSH7y7qUFo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lMwehgvqsNtIysNlF0cvnw/atOFAgUYI17lmnL951gg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:26:22"]},"IP":{"Case":"Some","Fields":["162.251.116.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quartz"]},"Identity":{"Case":"Some","Fields":["En9jWPaP+35DfbpR1tTaxHufeKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AYKAISi5k4nhOCai9XdHUDmHXX3eOGvg2UwexrqCJ1E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:22:50"]},"IP":{"Case":"Some","Fields":["5.2.67.226"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:101:46a::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["En6AOIjYLzPMPDEezGzOt3CIMcs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZeSpT/cMcDrH1mvAaty5rx29F2F0XY0YLXyY+Q9eEIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:23"]},"IP":{"Case":"Some","Fields":["188.68.54.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:e028:242a:33ff:fe87:a24]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ROBIN"]},"Identity":{"Case":"Some","Fields":["En4VZJnAQE28twM6/rpt9CjtkY0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eHjBFkr4azYRV+imCUlPWY98ghTz1ZrKZXpx3a/lK9c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:00"]},"IP":{"Case":"Some","Fields":["92.223.90.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:2c6::135]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4rescue"]},"Identity":{"Case":"Some","Fields":["EmTbiTA8ioG5OQ6n4GUWYRlZwJ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UAA/ZdkOUGuAZ6vik9EWyL70Ynj7qGdGRjDJvLk4uoo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:23:40"]},"IP":{"Case":"Some","Fields":["213.202.223.98"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["costafastgarnix"]},"Identity":{"Case":"Some","Fields":["EmLswGnUlX0TN+g+DCQ3zIDdPfo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NyOreg5Wc00PsaHAbILyTmwixz3ECZDGjTK9QWp3bsA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:21"]},"IP":{"Case":"Some","Fields":["78.46.141.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EljQqdlVgrdmb8Cvbpp5gQmpop0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qBHMuIVxf7/X+zLgItrvsdvsH6TLtJbrXYdmVvHnt+w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:12"]},"IP":{"Case":"Some","Fields":["165.227.161.62"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["EklI/boLY/I6L7ffx99i7Umd5UY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rkYilk8LR36MhsWvvVPEUks0EkfPpyqdqFwdrOAxHSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:07"]},"IP":{"Case":"Some","Fields":["51.158.164.63"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=48000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKraken"]},"Identity":{"Case":"Some","Fields":["Ekgtw6VQBBboc40Zh6gLlLlD1O8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+Xd+KYI/lcoIZ8HkWj10+KoROAxXyqQAX21vozaTSTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:11:53"]},"IP":{"Case":"Some","Fields":["185.194.140.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:66d:827:90ff:feb1:17e0]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritdown"]},"Identity":{"Case":"Some","Fields":["EjquOgMbAjSyUBydUKxt4YAxqRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sRhb998kqgKJX7eaHAgLHa5uVHiiovlH0Wp4vh8g+Gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:56"]},"IP":{"Case":"Some","Fields":["159.223.233.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:2:d0::1107:9001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=290"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FermentationLabs2"]},"Identity":{"Case":"Some","Fields":["EjV1kpSAIkMKj+dtMS/6jFWExag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["URXvS6zBGgUd5/YxoFDPhtf4o6LWxWCPIhjFRCM5/PY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:34:46"]},"IP":{"Case":"Some","Fields":["99.150.229.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=310"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TeleMishka002"]},"Identity":{"Case":"Some","Fields":["Eh7MinvYgYI9rqPAhY1R/fGbGZA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DrHaS7BFi2UUs5IaI0vWsgMmixMftSYgZQwmFbZ573c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:00:15"]},"IP":{"Case":"Some","Fields":["157.245.184.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=780"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["LadyTremaine2"]},"Identity":{"Case":"Some","Fields":["EhvNqukP3M7ymXUPt4qiRH5C04M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tP1x8eOrcijJr5V39rX+BVcN+9t1n8/tkrH1aRCNqBs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:00:32"]},"IP":{"Case":"Some","Fields":["212.51.141.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gepard"]},"Identity":{"Case":"Some","Fields":["Ehgg3Ukv0HruEdz4UuUq/0p9Y2s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c5f8XBtS2RCABpklXPEypPo5JVk4d+lutZsh59qbrVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:59:29"]},"IP":{"Case":"Some","Fields":["109.70.100.70"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::70]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ccrelaycc"]},"Identity":{"Case":"Some","Fields":["EhGsG7uKGvfLqGvOhomqMUa4ZCM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glPEISV7TSLtw3jq3HObPzQDFK16kLwQFaioYKZMwYE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:44:02"]},"IP":{"Case":"Some","Fields":["65.21.251.26"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:344::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LostArkIta1"]},"Identity":{"Case":"Some","Fields":["EgtTXlPErPlo7zriabIk0c8PPB4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lo2lRAe72EDkEVYNzhdy8XAeWIYpQF0Ief9yUx83k3I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:13"]},"IP":{"Case":"Some","Fields":["92.223.93.250"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:90c0:1b5::cf]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AgrippaRelay"]},"Identity":{"Case":"Some","Fields":["EgYmB3eLVMIhWmhgbHw7Ad186PI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fnK1cSU5Mck6WeSGL6s+joe1d0m424Qbj1uQ7coEmFI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:07:02"]},"IP":{"Case":"Some","Fields":["88.99.76.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["EnzoTheBackupBox"]},"Identity":{"Case":"Some","Fields":["EgRs8F98B6Lbqj6ohmoRfxQ6IwY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qxm5uY4Ez3sx4gCGElz6zmHWumQtFsOLuTPACo12Yc4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:00:10"]},"IP":{"Case":"Some","Fields":["173.187.191.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b88c::5]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BasedExitRelay"]},"Identity":{"Case":"Some","Fields":["EgH0p2bStj4cxy1Cbm2fFToJsQM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jG/37k3BBDFse1+v6ceFtS2m/OJNo2HebZVTbaiiBnQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:00:18"]},"IP":{"Case":"Some","Fields":["144.172.118.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:d814:b592::134]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["schlafschaf"]},"Identity":{"Case":"Some","Fields":["Efx9nH2N90MmuQ7HHBAXMnlzi48"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B2T7fzgj7kTr++zlly4p598WgejuS3P2U8vq9McBX1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:43"]},"IP":{"Case":"Some","Fields":["130.180.63.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=350"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["EffH9+OXKZJ84jbaHjtsKEfxRFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ppC/RStLzDA1R5f1XEG8YrLnZsyZ8tZZjNTW58bBiS8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:16:11"]},"IP":{"Case":"Some","Fields":["23.128.248.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::71]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["IdeaNexus"]},"Identity":{"Case":"Some","Fields":["Eep/ilgde80fd+1bdSaguSsAOoc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EILR2pD+loqi6GockmAUPHgnMfxU4AXNuGpQCF9MX3Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:36:37"]},"IP":{"Case":"Some","Fields":["164.68.121.40"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3005:233::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EeaI0hPEwLBnPvcNm286gxlQNlY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1CEUCkTcvZSGUtoxz6xf6cnPSK8/iYpBH5beKd4cbQg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:41"]},"IP":{"Case":"Some","Fields":["193.32.127.232"]},"OnionRouterPort":{"Case":"Some","Fields":[57282]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gGDHjdcC6zAlM8k08lX"]},"Identity":{"Case":"Some","Fields":["Ed8AF6Q68fCIJc1dlzKX+BqwD/M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lQAQMLq4iUzCTZXiGYz+ga7u9CRaXOxr/Tz8JRnbyMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:20:04"]},"IP":{"Case":"Some","Fields":["37.120.174.249"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:724c:df98:15f9:b34d:443]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mekansm"]},"Identity":{"Case":"Some","Fields":["EclSnJ0GcVRervgN/iCa2Xe86Qg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["05K9FShSjl8GkGwk5NJzsuFG0JxVt+1KdR8/YkBDSvE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:02:56"]},"IP":{"Case":"Some","Fields":["77.22.42.176"]},"OnionRouterPort":{"Case":"Some","Fields":[9999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dudebroooo"]},"Identity":{"Case":"Some","Fields":["EcHyhWLVJixqfWY7AZe3rDXYmU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9TZJqebNukfmde3AEwKVJ/YRz+ZZhJ9UCTTpEtN3SBY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:37:22"]},"IP":{"Case":"Some","Fields":["188.166.168.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=240"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["auctoritas"]},"Identity":{"Case":"Some","Fields":["EcCL1kxdS3Fz9qTCdr7gDCxSxi8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mfsJbYrLVpOXj2YtqJCzSnT0zC6BUUqeFY3KuuqBk/Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:52:46"]},"IP":{"Case":"Some","Fields":["146.19.213.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=600"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mirage"]},"Identity":{"Case":"Some","Fields":["Ea7lZ9JM3mgKx4vNbrrDbFCzz0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hxtn6dH4HcUkXUn1mJkmEm6T4rA6cEbjnpTIAbL9xoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:16:39"]},"IP":{"Case":"Some","Fields":["172.72.163.146"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jonasBebe2"]},"Identity":{"Case":"Some","Fields":["EavbTQuUTxhqiYVgy4LHBDmVfco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4K7vQGbzZuCKCuEB/tAgvClaXl1JsbDWFP1QXU90YU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:16:01"]},"IP":{"Case":"Some","Fields":["178.63.18.223"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:141:431f:4::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ru20101315"]},"Identity":{"Case":"Some","Fields":["EaqZt2tGUzNEHjAA9HeZXHBJm5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dd8U8UYvW63se/Fdp3IJNFqMGmDK+xjAALO/L1z+s8U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:28"]},"IP":{"Case":"Some","Fields":["185.246.182.197"]},"OnionRouterPort":{"Case":"Some","Fields":[9333]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["EaLH5GKbyPKugYjP9kIfH73SqM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3sMMJ7D46UBIKHQLk4fwW/uyO98PGSREfHMazqI+bh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:41"]},"IP":{"Case":"Some","Fields":["185.220.101.42"]},"OnionRouterPort":{"Case":"Some","Fields":[10042]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::42]:10042"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber15"]},"Identity":{"Case":"Some","Fields":["EZ1ZWoGmfWweTWa3R3F/2VIl+fg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SOrC85KCjqm0PcGV5iIw8F21v2toNODd+SYIljeLN/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:33:54"]},"IP":{"Case":"Some","Fields":["185.220.101.8"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::8]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["EYjcVJ/fXoBU4f6MeJpjLNGHL34"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gN5pdibS3tqrVIOqNCj4VEbwq2Hm8eBmXhN0gKoWqDc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:41"]},"IP":{"Case":"Some","Fields":["51.75.143.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp6"]},"Identity":{"Case":"Some","Fields":["EYF62KplUzoM7NI/j1R6l6afGSs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dogY5y9vxfUrGU2qpxhbSK8+3bnhgvM3EAMX38WnbQ4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:39:34"]},"IP":{"Case":"Some","Fields":["185.220.103.113"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=44000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuakeVISOR"]},"Identity":{"Case":"Some","Fields":["EXKGo/XfcnXy6x8o2KrHJ3LYSTk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O6HjU6IzpS5Ioouod0z1DAxUT6xTRtmJIK6MFYLv6Tw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:47:15"]},"IP":{"Case":"Some","Fields":["5.199.162.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Razor"]},"Identity":{"Case":"Some","Fields":["EVw/7FOSKY7yEzlwalCmiuwCYPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0XAYQVPV+iFcUVdnOV11OpTC6BFk70tmY8jBYU97Amc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:42"]},"IP":{"Case":"Some","Fields":["162.226.56.70"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange040fr"]},"Identity":{"Case":"Some","Fields":["EVgjQZibGG4XbVg2LxIk0oukyfk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tHFl+GRJ5SR87OT6Vi1ShJC2F9Zpr13ojeHIrjrlhEQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:13"]},"IP":{"Case":"Some","Fields":["37.59.151.233"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4400"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yogapants"]},"Identity":{"Case":"Some","Fields":["EVIWP5HDqi0wuPuP/KjYRCEV74U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6wMTBNVYdLBnmG4tMIeAs0LlRnY2eFYrHa4CtVRXFrw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:04:43"]},"IP":{"Case":"Some","Fields":["172.105.237.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:febf:f72]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["UnredactedDrake"]},"Identity":{"Case":"Some","Fields":["EU0IUUBAFcAmXx9NS6al4elw4V4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7raw+mm+Q4j8Twl9n2gHPXPyYgYyZweGrI0mEz0X/uw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:25"]},"IP":{"Case":"Some","Fields":["23.154.177.6"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hashy"]},"Identity":{"Case":"Some","Fields":["EUxDsrrViIYbx6g/qYiezE9Ohe8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc5d7Itx4XqFmt2OnFghHEmxhnIkX7VukRF0bxyWzx0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:08"]},"IP":{"Case":"Some","Fields":["103.152.178.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:df4:1780:3000:cb4b:95b6:1d99:4544]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlueGene"]},"Identity":{"Case":"Some","Fields":["EUwArIjPoYWq8a2ixsGdGnxnB4I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["95zsh3PEeHmZ/NztMPyt1LDVKb9WtajXFQoKLl3/KtM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:40:57"]},"IP":{"Case":"Some","Fields":["93.160.17.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9025]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=730"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChaChaPoly20"]},"Identity":{"Case":"Some","Fields":["EUeeZaxmNMKQHbyW6m7KFghn7n0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zm2x9Kx40nL3Nh8oM94Ics5wpzaC9r8Oj0NHrcDFn7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:42:49"]},"IP":{"Case":"Some","Fields":["121.99.242.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["excavation"]},"Identity":{"Case":"Some","Fields":["EUBXr/fRKE9Kga4UZLiZwO1qMuc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Kqr7m42sBSL/khQweFN3xf4/EjGvRqb4+WkGAelYRwA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:40:35"]},"IP":{"Case":"Some","Fields":["82.64.139.45"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:e0a:231:6221:1d33:2ab3:f82e:f232]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AveCaesar"]},"Identity":{"Case":"Some","Fields":["EThtM/zVvxiMonllEy9nFBSO19c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qGbMeh6rbYaAD2PDkD0bqX1Ts/SXeULJloAcbEohTB0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:01:15"]},"IP":{"Case":"Some","Fields":["178.165.27.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["giovanna"]},"Identity":{"Case":"Some","Fields":["ETerH4TsLVLfsZFXF/FP8aEOs5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZVvnPr4vWWGwLBiYTOsAd0ua4wvNVwcmrbMKAduAZYI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:42:28"]},"IP":{"Case":"Some","Fields":["185.227.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fa11en"]},"Identity":{"Case":"Some","Fields":["ESGAvGylNhOP8hC8WcsJV8O/rME"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1FqG17IyqJkk628/7ODpIVID+qFKoWlupgIhlc6YyZ0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:33:03"]},"IP":{"Case":"Some","Fields":["51.15.127.227"]},"OnionRouterPort":{"Case":"Some","Fields":[7890]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1820:24b::1]:7890"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zerodivided"]},"Identity":{"Case":"Some","Fields":["ERmonnKdtlg5+yMqHg+GabCuhN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["egEAYT9s9vAIXkquRUSn9nzNhKYiV0aPWv12T1U279s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:30:38"]},"IP":{"Case":"Some","Fields":["80.241.220.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c205:1000:6686::5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cricket"]},"Identity":{"Case":"Some","Fields":["EQg3E+yI/wkmnsN/WtndqsovJHw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["56m1zQgn27T0BhgHbrIkQ6pl5auxtAyo+bHkA0eiGbQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:06:12"]},"IP":{"Case":"Some","Fields":["172.106.17.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torry2"]},"Identity":{"Case":"Some","Fields":["EPX0YHPJL3H5+/DSuNntxkLPZf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1VWP4PwZvOEzud4Pfbbt/EFRIW62PsRmoBP1/gir1zg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:17:23"]},"IP":{"Case":"Some","Fields":["77.180.229.96"]},"OnionRouterPort":{"Case":"Some","Fields":[9998]},"DirectoryPort":{"Case":"Some","Fields":[9999]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lusifaisland"]},"Identity":{"Case":"Some","Fields":["EOFgJSiTy7C5GxR+iwRScCfqLPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nz6oI5yjTHif1NScwNAwotozPTRMSz7rZSd1HciCtk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:47:12"]},"IP":{"Case":"Some","Fields":["45.32.80.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MRNobody"]},"Identity":{"Case":"Some","Fields":["EN+ZaPSqA8Z2XrEiwVBhFxi0/aA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LVRrrjRM0Car8auLGB7dpto6WmOSJrOivLbGqDQ67rQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:32:13"]},"IP":{"Case":"Some","Fields":["217.252.191.2"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["ENWhzFCEn2OpGz34Bo+AbuNTJUE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8dJJudbVmXV95P1VwtXfOEeUKwwcpzpqlqob4TVcCdo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:59:20"]},"IP":{"Case":"Some","Fields":["185.194.142.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baloonasTORrelay"]},"Identity":{"Case":"Some","Fields":["ENIZiX5PJZSvHsAcQUwuN1Srpcg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WTGVZDlkF0zVqfBa/8xD7FsJcMwOwMv+4/lp9M6cgKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:57:21"]},"IP":{"Case":"Some","Fields":["94.16.104.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:50:e4c::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GeorgeIV"]},"Identity":{"Case":"Some","Fields":["EMG8FP9puT2yRenyWAo5qRm9v0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1oM71MyROuoyuFBTjlv+iUTmfOU7YI5MB6DX21cTfj0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:07:51"]},"IP":{"Case":"Some","Fields":["37.153.16.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["movingday"]},"Identity":{"Case":"Some","Fields":["EK9lRauzI/boZOB+cOP6q9llbLY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bpJphlEA3v9xAr/ycCZw4dQPfxeS7KI8U/1L8YCl/ZE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:26:43"]},"IP":{"Case":"Some","Fields":["66.23.203.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MuddyMouse"]},"Identity":{"Case":"Some","Fields":["EKnB7DvMhcIJdn43TZOmz/XyLKI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["glkZ9MRSQBzMEXbFbg7WnFVkcHR2ofbzIuKY09+xEcg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:31"]},"IP":{"Case":"Some","Fields":["94.156.128.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra82"]},"Identity":{"Case":"Some","Fields":["EKcweNPXHQHEsAftdasnE05Q8dE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GG71kFnHXSJYuQSOlzjORESqzvLh8O6PsWU11UGY6AQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:23:58"]},"IP":{"Case":"Some","Fields":["185.247.226.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eridanus"]},"Identity":{"Case":"Some","Fields":["EKXvzNL7nBpKwg+3eaXbEbWJV6c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RMhf/y6OIIBUxYJO4Q9OOOWaNukwnez4c8aysMv+UBk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:00:53"]},"IP":{"Case":"Some","Fields":["144.76.154.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a01:4f8:200:2211::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=53000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["collaborator"]},"Identity":{"Case":"Some","Fields":["EJNTrPtuRUd7Et/i7tk1oURj1Cw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DEuF5MvpPM1R8OSckh1Ldd1teFiia0Sm1gkrdMnNsiY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:12:44"]},"IP":{"Case":"Some","Fields":["5.63.42.231"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["benedict"]},"Identity":{"Case":"Some","Fields":["EIR+UHyaEBy5m/PZJ6SyvKHCYVw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["omIawhWW4YN0WmpLmPbMH/MqO9ktCWx+/nq8PqYJ+fU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:53"]},"IP":{"Case":"Some","Fields":["185.141.25.140"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tommyboy"]},"Identity":{"Case":"Some","Fields":["EIBaODN3S4EtB+t9HXWlQCFZD1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jW4buMYEu6iNYxeJp+ybF/cAjlhkov5zlN67YOvEOaI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:58:58"]},"IP":{"Case":"Some","Fields":["116.12.180.237"]},"OnionRouterPort":{"Case":"Some","Fields":[7443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PoochySloochy"]},"Identity":{"Case":"Some","Fields":["EHnmKPxrACVlasAk8tmXXEQUmM0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/bg0hlgvsiSVO6U1I8fF2oRfTu0HVrIrrrwxowo132Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:57:44"]},"IP":{"Case":"Some","Fields":["51.15.185.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jstark1809tm"]},"Identity":{"Case":"Some","Fields":["EHYRgyZeYnUpvCULamZF7ZgNlpc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SSE39ns1Tv/C8KuUYxfr+T+xqSW4gAsogLZP6BDlpzU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:28:54"]},"IP":{"Case":"Some","Fields":["69.197.128.154"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:4300:a:3eb::154]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["panda"]},"Identity":{"Case":"Some","Fields":["EG48j8749XdLnpdzKjfazplQNjY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["z2G3K70HmxWhxGdklNayU0UJPftLYzLRyP/homeivZw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:48"]},"IP":{"Case":"Some","Fields":["109.70.100.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::72]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Alured"]},"Identity":{"Case":"Some","Fields":["EGaGEFzSEVX7OS3f3Pcp8Kyqaac"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["C6d+pPWaht8fDW8j0FY/he/LD/+ouw2KVI4BUjJm9WQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:03:48"]},"IP":{"Case":"Some","Fields":["51.83.227.239"]},"OnionRouterPort":{"Case":"Some","Fields":[586]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber49"]},"Identity":{"Case":"Some","Fields":["EF+AD9MOY3iDpk6mS8VW6CwkilE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Qo8M4f2aqekmo7qwOc2btcwuQuK39sqK7M8gERrfj8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:32:26"]},"IP":{"Case":"Some","Fields":["185.220.101.25"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::25]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["realdeadbeef"]},"Identity":{"Case":"Some","Fields":["EF8j/EmpZZZbtlk2RCPqmp6bN5c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bzGbPVMUBWkbnvUgoFcRev5hQEfQ/1o42Or1Qp/onFU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:14:24"]},"IP":{"Case":"Some","Fields":["51.68.215.27"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:801:2000::5a8a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rollingback20"]},"Identity":{"Case":"Some","Fields":["EFdJPBibtczEe5ZMeHM+bQ6XzM4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Vbnko10UfwL0CYaZLOju+eWlthu9mpm8LF52n9UaPMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:44:39"]},"IP":{"Case":"Some","Fields":["172.1.227.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra6"]},"Identity":{"Case":"Some","Fields":["EFD8ecXxEDsYUwDvct31tO3Gg8k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GCTy51OoiHyM+SNF7I/RT10RhaJUfq98aY5m80YPgH4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:05:13"]},"IP":{"Case":"Some","Fields":["51.195.103.74"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra49"]},"Identity":{"Case":"Some","Fields":["EEL6x8gEis2eqzZc9os/fENQc4o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M92UvevviK/t7Rl9Q9XUQvq16i7aPzrlfH5ydQB58qo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:54"]},"IP":{"Case":"Some","Fields":["94.140.115.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayStation"]},"Identity":{"Case":"Some","Fields":["EDM2FloNLvytNgUzmEOgp3ELi5I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nPLtMLZ0tt0ZQqnKWJy0/FX0fiXmdg/Xr4uKKJI7N3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:55"]},"IP":{"Case":"Some","Fields":["85.195.235.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:a403:13:5054:ff:fe21:7c4c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["max7"]},"Identity":{"Case":"Some","Fields":["EC6hSSEfSQwSLKzEBU8bxqhQPrQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pLEzaluDRsb/PuB/jUCtoC6zIhfV+5WiAI2qi8WiePM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:11:32"]},"IP":{"Case":"Some","Fields":["93.170.246.217"]},"OnionRouterPort":{"Case":"Some","Fields":[1294]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doofenschmirtz"]},"Identity":{"Case":"Some","Fields":["ECMeCPGcA9Wi/jqtA9hjq94ggbw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7mHLCs03ccOCypYfwALmwUX0DJrZ4/28bXhAlD8TOIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:42:15"]},"IP":{"Case":"Some","Fields":["65.108.77.19"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cryzrelay04"]},"Identity":{"Case":"Some","Fields":["EBwYiGswuyOzbLqtFZJhGIhS4RI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bkSC8+w25E+jsVyH6hD30cqx/gwU9VIeTlAsFDTkRjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:23:55"]},"IP":{"Case":"Some","Fields":["82.149.227.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:440:108:11:82:149:227:123]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AlphaGremlin"]},"Identity":{"Case":"Some","Fields":["D/n4glAfsdYQUi32qtbnXJX48rg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+qgodt+3S5yXrGWJPFrBOtHnGSF6lY8g1GjEHGbeniM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:44:53"]},"IP":{"Case":"Some","Fields":["194.87.97.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=960"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["baxTianRelay"]},"Identity":{"Case":"Some","Fields":["D+H2EQKksQ7jOtwrQnWtVjLi0xw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5ZgpNHKDynUPwkNVFmb3UpkwjOc9jgP53ZhzvhRAFGk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:13:00"]},"IP":{"Case":"Some","Fields":["92.222.172.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SchweinfurtsTor2"]},"Identity":{"Case":"Some","Fields":["D9yafWBggSPPVDL24lxuS8I+eTg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["w6bE+W6rti8OsL0wbK9IH1IccaTdIsqfCGfgV3Oyrts"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:24"]},"IP":{"Case":"Some","Fields":["85.214.147.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BaBaBooey"]},"Identity":{"Case":"Some","Fields":["D8q7jG5BLmDLhi/hmmQZGmnrlOw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YSTnQDcTzO00wuUX7vTj2pTKxgrXlCqEYKZ3s+HeDac"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:35"]},"IP":{"Case":"Some","Fields":["108.62.211.205"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Innominato"]},"Identity":{"Case":"Some","Fields":["D8i5JcmGaX1BwbFQrceLstLlD8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M3OPEse7kLLUxsxU8CNFUsP2zHcDwJhkk0OV3kLbLMg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:58"]},"IP":{"Case":"Some","Fields":["79.52.232.242"]},"OnionRouterPort":{"Case":"Some","Fields":[9010]},"DirectoryPort":{"Case":"Some","Fields":[9033]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mentor"]},"Identity":{"Case":"Some","Fields":["D8EvK33Q6Ukw+bPN0yEwiZZlKVc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["f+0evv17S+6vZop3djCeHEFub6yC+s0QAehJ27mQikI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:42:20"]},"IP":{"Case":"Some","Fields":["72.14.177.164"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::19:ffff]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=55"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zensursula"]},"Identity":{"Case":"Some","Fields":["D7q7jHsizt38hJMx6OninBgIEjU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8lqi0WPx8FMjWyGTMnsgV87mPF7Otsiu4uz1K95Muz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:12:37"]},"IP":{"Case":"Some","Fields":["45.86.86.158"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:5170::1db]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["frantz"]},"Identity":{"Case":"Some","Fields":["D7mnfdtqyHhQd+wdL8lVDxnHVCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ewbYz0QUJhi3oZHybf10rf1GTMkAvYvLIDpJfq7t2Po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:17:52"]},"IP":{"Case":"Some","Fields":["37.220.36.240"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay35at8443"]},"Identity":{"Case":"Some","Fields":["D7B2kNZM5cIrUXUYPA5ZZ4zffqs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0meBjWvx2EqOWsBPwthGMsK+vzWCQOX1AFN/y7UW+tk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:58:14"]},"IP":{"Case":"Some","Fields":["140.78.100.35"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NaruOTORI"]},"Identity":{"Case":"Some","Fields":["D6YXiuOcQT/mV2Qt3Alck7GEKnk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XXHjMU1obAdq09MyD05k/jsrV1t/7aRAonES1Mpl2Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:04"]},"IP":{"Case":"Some","Fields":["157.147.121.38"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sk"]},"Identity":{"Case":"Some","Fields":["D6J0IHNsm+LoK9ElZr80oBV8VYU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OlBWgGXa29y2ziUXRd7n4ZJIJ696i0TfqZwdX7nE3TI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:54"]},"IP":{"Case":"Some","Fields":["63.250.56.54"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RussiaOutOfUkraine"]},"Identity":{"Case":"Some","Fields":["D6FP5+NlgPaZeN9Yynr+XVKAgu0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v1fXscasUuBi7xCpWROw7N5rn97RTCOyjvfiQ0i5fsU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:44:04"]},"IP":{"Case":"Some","Fields":["92.32.77.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unimatrix01"]},"Identity":{"Case":"Some","Fields":["D5+QTWHyVsMvAac/vwvFcEFja/Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6Dyb++KAFuAEXrMWV09Xcius0wDESUu1t5/F4TMMjo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:12:05"]},"IP":{"Case":"Some","Fields":["84.158.124.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BotheredSoul"]},"Identity":{"Case":"Some","Fields":["D5wydpO284cNL+erJbWnZ4fqUt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y2vlw9t63w/Sll2UvVpIQoUNaixpOuh5CpkGA+0dOLg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:49"]},"IP":{"Case":"Some","Fields":["108.48.87.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["K3PO"]},"Identity":{"Case":"Some","Fields":["D5MecVbya5ZLPpC4Hd6uRpkp4mU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dNsp9CWJ/mAP/Ccivg4HBYpzLNumz+5mZIRtl7qVfQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:04:13"]},"IP":{"Case":"Some","Fields":["185.117.118.47"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:f040:0:8::3]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["apollo112"]},"Identity":{"Case":"Some","Fields":["D3GwFK9qIjW9DQ+9LVAWH1+TOg4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B/0hHbNe3i75eKfmhOQM8WD4WuYJqvLs1+WyHWozIIk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:02:37"]},"IP":{"Case":"Some","Fields":["190.211.254.76"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["D2y/ueXN/FptQnMg6Qsd+RCV3Wc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YQ/rnN9LE9sH8Ds/VeOib5NnKLUvQg6twMlyVPOOpos"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:59:23"]},"IP":{"Case":"Some","Fields":["185.125.168.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:185:125:168:0:42]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pilvi"]},"Identity":{"Case":"Some","Fields":["D2oEJ2y5XQQq7o0ot0WHj4J9IQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EQCEWR/i4tKtHIKncHa033CAouWcIB9Tz2XPSKpAe5A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:12:34"]},"IP":{"Case":"Some","Fields":["87.100.255.247"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[9041]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["D2Az+LSyYZ64EhzRDMabDg5jWmQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U6bsOwFNsIBbYntmeMKxTlTUCKr0YQT6yn2j5Ct79dI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:58:42"]},"IP":{"Case":"Some","Fields":["193.26.156.86"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:4c:b27:a410:8eff:feb3:1c4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whynot1"]},"Identity":{"Case":"Some","Fields":["D1O0sWdoqKGLg4ED3VAAaMTWVus"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y8cvHbagpU9NOoX1AbUD0kzbkqLMwLlKv5O2LWz3mSE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:58:29"]},"IP":{"Case":"Some","Fields":["139.99.134.168"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Qazwsxedcrfv"]},"Identity":{"Case":"Some","Fields":["Dzsby0LA5ojUpFiH7912K40vCPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yraaUujDXy0aA1z8PpLmqqBkjFIe8GTl+vofsUoJ+js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:46"]},"IP":{"Case":"Some","Fields":["76.89.223.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:8000:b00:9103:e139:a2df:f3b:e56f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MalakataLU00"]},"Identity":{"Case":"Some","Fields":["DzjY7YE3kOLFBghjbhShR99mlG8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pn6ZPE3SYpUH07enHJiQPiPd+j81ZhGvFaVcgD5CXRY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:05:33"]},"IP":{"Case":"Some","Fields":["188.115.31.97"]},"OnionRouterPort":{"Case":"Some","Fields":[42000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Sovereign2"]},"Identity":{"Case":"Some","Fields":["DzX13dFiGZtgstLLybt+NaCEr/Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e859keotY/x67H7k22R/zZpvIWklAt/7NON8lL/OVzQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:03"]},"IP":{"Case":"Some","Fields":["178.170.10.3"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::506]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DTFNODE61"]},"Identity":{"Case":"Some","Fields":["DywsQYn3SuktYSB6YQ5b+vdrgYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xiEkXby6ueDJQnaEO6PdxZzP4tw0Dg+nze7ovmxq2XQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:13:21"]},"IP":{"Case":"Some","Fields":["37.221.66.245"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:6020::4dea:102]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["cadory"]},"Identity":{"Case":"Some","Fields":["DyOVCwhjq6/RGdfjJ2rUWNUV9Pw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K12geKKDCUtNNy6QR3Sn3DYQit64yHfSVgNPsFxCWq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:53:18"]},"IP":{"Case":"Some","Fields":["178.200.169.85"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[4444]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=680"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeExit"]},"Identity":{"Case":"Some","Fields":["DxyBaN/QqtvmG9cRlNN8hn/tWiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7wWoxVkhtz65zf1LCCmHouj59/frG72wymif3bYIyJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:23:37"]},"IP":{"Case":"Some","Fields":["179.43.159.196"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra57"]},"Identity":{"Case":"Some","Fields":["Dw9pCvHTLHw8csVDg2YlYoiHuoU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["heZktSXxWFylvtZGGx3bUT1I349OHbVdfw+XB5++7IE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:37:32"]},"IP":{"Case":"Some","Fields":["51.195.107.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=28000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["polux"]},"Identity":{"Case":"Some","Fields":["DwXpahEJ3KIha2Nl1X9kgmwpvCI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X8LXcJlCIAUKdw+2V0+xfmObB52+9voR9aCfljlVa8k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:48"]},"IP":{"Case":"Some","Fields":["86.234.206.33"]},"OnionRouterPort":{"Case":"Some","Fields":[4005]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ams02"]},"Identity":{"Case":"Some","Fields":["DvmRgssEsUpxjv38wPo1KO1IarU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xUwVGvHG2d35ZXP80chOvqUCBZKSG8dKdLqkP4A6biw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:49:37"]},"IP":{"Case":"Some","Fields":["45.151.167.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:e3c::a]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EphesysEntry01"]},"Identity":{"Case":"Some","Fields":["Duw73h9V6riJ1lL5y0bwcEiRBtk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qUyWW/cPahLNYMiQWbbWvLkzpdKQYdqqLLPJ3WHk8tA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:38:05"]},"IP":{"Case":"Some","Fields":["64.33.179.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["DtTKio5s4tKNbSOyCBWuOYJkb8s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4qq8Ju2/fUnJ8TA6VShkP3yVtjTKeTy9HVSJt5+U2mo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:13:41"]},"IP":{"Case":"Some","Fields":["104.244.72.115"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f858:2704:73e1:7085:12ef]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8600"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TOR2DFNrelB"]},"Identity":{"Case":"Some","Fields":["DtDqMkyTHPQctScr+x0BWz1Xcqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6of5SfVD1z9uuNO26L8raB6TjaW8ciK076fUg37GFgo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:05:47"]},"IP":{"Case":"Some","Fields":["217.182.196.68"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=60000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0187"]},"Identity":{"Case":"Some","Fields":["DsBRV0O0wog/kIxSh3Sm4S5hO4U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lrps0s5eZsPrFL2Yrp7ec7DfWUh/9PrHzxt+84GGJpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:52:47"]},"IP":{"Case":"Some","Fields":["185.220.101.187"]},"OnionRouterPort":{"Case":"Some","Fields":[10187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::187]:20187"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myrpirelay"]},"Identity":{"Case":"Some","Fields":["Drd4Jvvv/jp0lmFtyyyw9Hh3ijM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cyh1jSSgVwMZzjyrHGEutZD08tJbCzK0cWuELCCuf+o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:10:22"]},"IP":{"Case":"Some","Fields":["72.68.41.151"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["Dqvc+F3cQSSdZCkzhkbxWZgTwRA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MSw4J9mES3LJT9ZNvP68S3NysPC4rPz2z7n/p4H8o4g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:23:51"]},"IP":{"Case":"Some","Fields":["95.214.52.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=40000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1143"]},"Identity":{"Case":"Some","Fields":["DqHXLVkl6ZmpOGb/zRaVDUMN4mc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uy5LGuwCK6ZrswxIWj+DlNz29kGwpJmZNgqqCKab1S4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:30:54"]},"IP":{"Case":"Some","Fields":["185.220.101.143"]},"OnionRouterPort":{"Case":"Some","Fields":[11143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::143]:11143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Dpz5KhhANBrss50flwDBuupRwoQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8TStnpKblmtaMwfIRmkGBUAplXyk/q/LMWV5iHWaUQM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:17:43"]},"IP":{"Case":"Some","Fields":["188.165.26.13"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Liberation"]},"Identity":{"Case":"Some","Fields":["DpjqBabaD6EcDDwyvw1uT4sNHbg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ykmx4kRODYlgF7/JRTYcQ8Hz3vhwA01Ogv4wo+NMobs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:59:23"]},"IP":{"Case":"Some","Fields":["87.236.199.239"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AndranikMarkosyan"]},"Identity":{"Case":"Some","Fields":["DpTm4oYTIwBWK9Eqa4gXCMwDK68"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hVVY45OFPZ7hsidWwe0WRGTzzTi3gs8ZeBU8Osfv+po"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:01:04"]},"IP":{"Case":"Some","Fields":["172.105.68.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e01::f03c:92ff:fe58:5755]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["ua321"]},"Identity":{"Case":"Some","Fields":["DpK/ArPBGw3RgwGg3hsWSgVG428"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RYCvn1XwpNRhtHMs4JLXQ/EAlezkinjeJ45or8ASc44"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:33:48"]},"IP":{"Case":"Some","Fields":["193.218.118.182"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::182]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Yank"]},"Identity":{"Case":"Some","Fields":["DoLoHvo6NjK5zVCwjMl0va4hzPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJlV7Ms+s3haCrDHVHYmeWFJZHu7kuxgDIIPmSDv0tc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:09"]},"IP":{"Case":"Some","Fields":["37.46.80.71"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1187"]},"Identity":{"Case":"Some","Fields":["DmmqDgCrnlu/BSyGRoIimwsfFq0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iIvK/j6zw4Tq6+aYqLDReVqxGXiSswcMttDvwESN4lA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:34:14"]},"IP":{"Case":"Some","Fields":["185.220.101.187"]},"OnionRouterPort":{"Case":"Some","Fields":[11187]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::187]:11187"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artlogic"]},"Identity":{"Case":"Some","Fields":["Dl1zBGblu2dbyXBMN02+fhnwYWU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DM0gKYQK1SCHe3qveixUGGZ7qkWsiqs6OcnPpTFGxRg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:18"]},"IP":{"Case":"Some","Fields":["165.227.34.240"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2604:a880:cad:d0::6805:f001]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MKHWDJ"]},"Identity":{"Case":"Some","Fields":["DleC4AlOvsWW9qQNdsKwEqnwV2k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["asbT/JUwSjV36iixnb8PysHR3SUF/5bIImPE61POkDA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:50:26"]},"IP":{"Case":"Some","Fields":["198.98.52.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["weizenbaum"]},"Identity":{"Case":"Some","Fields":["DlUiy09542wLsmO6vIYc/GhpKa4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["IHRgDeuqHAg8kJHHhVWSLqH4oVsK0JyGOac85yeHHWc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:19:40"]},"IP":{"Case":"Some","Fields":["62.102.148.67"]},"OnionRouterPort":{"Case":"Some","Fields":[42895]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["Dk8ZDEpvfd9/jJp4QrhbS7z19Es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["k/2wLhX5rOOAlB6MmUtPskj9USY34jvy2HPz4vf7D0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:29"]},"IP":{"Case":"Some","Fields":["217.79.181.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4ba0:ffff:58::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DjLvMYQZ0wBcMAOv9NFWapQdpIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sHl4eCzr4B3h+knHrdgciGjjo5mhdersfJ989gs8LVc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:36:53"]},"IP":{"Case":"Some","Fields":["104.152.209.217"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["Di/1v4c98v26vkLb8ELTUN55TxU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tvi+BrS3cWd7/iLrIk67RWkoHNtyjUo3UkyiPvw886E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:44"]},"IP":{"Case":"Some","Fields":["188.68.36.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["limoneneis"]},"Identity":{"Case":"Some","Fields":["Di8gqg28h8JVZA4PT0FbFGlN96U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/ydBGmwZKn3C8FefkbtAaxNobo8e2YoIJgNiBi6oNoU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:49"]},"IP":{"Case":"Some","Fields":["5.189.134.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3000:8469::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nako"]},"Identity":{"Case":"Some","Fields":["Di7sElpqyNXr9ds2t3aj2lUQ56A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YHN7wQdtr3zuB4xlV+V1DVKYYH2UbK0nfu/2IyH2ZYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:37:18"]},"IP":{"Case":"Some","Fields":["162.55.58.248"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:c0c:b436::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["uavae5Hahngu"]},"Identity":{"Case":"Some","Fields":["DiMAjwD+zjWq0xBrQ3yTAl9R/pU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QeKmSqXB3d2pfYm5tPc/M9DukofrxsZPHiPeSE9ZUPw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:25:19"]},"IP":{"Case":"Some","Fields":["107.189.12.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["JazperExitNode"]},"Identity":{"Case":"Some","Fields":["Dg7YDQQtMcmO4k7PrYnaMz+kw+s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EkvMMn/TjmPpL3L2s7qvMTtB1kz5JZooMQkqNB6KjGw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:55:13"]},"IP":{"Case":"Some","Fields":["185.51.76.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0d:3e83:1:966::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["82320e8da3"]},"Identity":{"Case":"Some","Fields":["Df/l0oRsU3lOnEuren1r2sBzKFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cnudmbY4e4z1al2nkhqpw2DtyvgFS1Io6ezYBo60mrI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:31"]},"IP":{"Case":"Some","Fields":["195.90.208.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoveMonero"]},"Identity":{"Case":"Some","Fields":["DfEQY1NoqmD6yVE1h+YBb0B+95k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/dklIKiZ8cvSDE+amYuja3JhCGUeizGASG4yNxT4mQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:01:00"]},"IP":{"Case":"Some","Fields":["185.213.175.112"]},"OnionRouterPort":{"Case":"Some","Fields":[7977]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:dc2::1]:7977"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DfCTefqUYvcyfQDmN9AAaT7hO6A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nrlyN+1dUJH0HHeaZ2W8aYyuOfgNL7QXvWS/6IC6DG8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:33:30"]},"IP":{"Case":"Some","Fields":["92.248.61.143"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=670"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NTH105"]},"Identity":{"Case":"Some","Fields":["DeE1pNDsy11X+Lcb+OIpWPxBRqc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WK0zwwi3vH1eyG9+QoSL5RaT6HerPfaNV1sH6HvVZ2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:21:07"]},"IP":{"Case":"Some","Fields":["192.42.116.205"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:192:42:116:205]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=110000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tahm"]},"Identity":{"Case":"Some","Fields":["DdOB5mHMi5ypvdRQPj05PgijUbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eVQo08Fr7oa/G+JX2koPaeCUZWLEwIuUUGuyZwe/TmQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:18"]},"IP":{"Case":"Some","Fields":["37.120.190.134"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:b628::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=64000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["avdjusko"]},"Identity":{"Case":"Some","Fields":["DdBO8LCBu/3jCC1OzIpj/QAi/K8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Mz5zmZ+vGyCvr2A9mWoSB0U3foI1rllqsrGl17UdAEU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:39:59"]},"IP":{"Case":"Some","Fields":["141.255.161.167"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay28at5443"]},"Identity":{"Case":"Some","Fields":["DbqJGnCuldStd1k6k25sBKvy584"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JZ2/Lrkg87cb3FKPf1hiaP6aYfJpotg6xOrPib0xzCU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:13:10"]},"IP":{"Case":"Some","Fields":["140.78.100.28"]},"OnionRouterPort":{"Case":"Some","Fields":[5443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DFRI13"]},"Identity":{"Case":"Some","Fields":["DZZ+rOQkSKCOJENm33U7v/YR6zc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["T59Ii6mbIBGcTOEkqmErmydiVV5MndQ4hjObDkHVRTA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:46:31"]},"IP":{"Case":"Some","Fields":["171.25.193.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:289c::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tirz"]},"Identity":{"Case":"Some","Fields":["DZYhcPuzg36F4jFO6qxJlmoVPzQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wK7vY+SDj3oNBVFtjYwwg4fNhgOYMCHcb7tZomfT6CU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:33:22"]},"IP":{"Case":"Some","Fields":["51.158.230.172"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=49000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Starlight"]},"Identity":{"Case":"Some","Fields":["DYh3OS8v9a2NjlvEOAh/Au+XuQQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["l0PSgGCdB3CNMPzKda1pN5x7dl/Tjh7k8TP56T5P+Zs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:20:19"]},"IP":{"Case":"Some","Fields":["58.107.88.237"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LoooseMoose"]},"Identity":{"Case":"Some","Fields":["DYO4pZN/aTjHTzJsIcIZWfOV6CU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HAhsASkQZe6Lw8/u7V6ceyUqQm8mCfcJW9cPsVfSDas"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:00"]},"IP":{"Case":"Some","Fields":["206.174.119.65"]},"OnionRouterPort":{"Case":"Some","Fields":[51021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["DXZhoz65ykS+wxCdvsf5xeir+wI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B7O7IQOup7/k3koZmHWFtAVmfEl3fe2L9smAN5hnBW0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:59:51"]},"IP":{"Case":"Some","Fields":["5.45.99.26"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:683:3805:33ff:fe78:a676]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["martina"]},"Identity":{"Case":"Some","Fields":["DW4lvYxUAXjDCe4qhMenRJY2DW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nks7uM9Ey4/WrLT/C4wEhFjuamao7psFzVeZKm2gzf0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:09:51"]},"IP":{"Case":"Some","Fields":["37.247.55.40"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:dcc0:dead:a728::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["DWyCNszY6ovFn+8Y06/1l0kGHlE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Lf+j/jhuppKZZrtECaIUVWa7HwNKquiNpYmB2qdw9uk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:23"]},"IP":{"Case":"Some","Fields":["23.128.248.61"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::61]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=610"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Toothblade"]},"Identity":{"Case":"Some","Fields":["DWbAWazLQBCLTgq8vxyE414koyw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9QyfUrmX5rR3nzsWpR4XirLa09OjjCKdeBffPW4piXM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:20:13"]},"IP":{"Case":"Some","Fields":["202.157.187.167"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1128"]},"Identity":{"Case":"Some","Fields":["DVqnwMU7ZevpzjpAk8uvIxnEUnE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b28vfj1L6F5TXL737zr2K7SNmCjks1+EFWVt6u2fGf4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:30:21"]},"IP":{"Case":"Some","Fields":["185.220.101.128"]},"OnionRouterPort":{"Case":"Some","Fields":[11128]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::128]:1128"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e3"]},"Identity":{"Case":"Some","Fields":["DS3iQq2g7XcyXjruOp2MXNB8LPM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LrpNBzpB+z9MrNlNUYY5yK24f4QWc+FReNDRsZTGtUQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:47"]},"IP":{"Case":"Some","Fields":["195.176.3.20"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::20]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor01"]},"Identity":{"Case":"Some","Fields":["DS1LHSdGiAa7Ht+wJxXu6R4auU4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+tRkWgaPv+v8L5pkWwIiF2FdYQc41TJv+wl0t62tUDU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:16"]},"IP":{"Case":"Some","Fields":["51.254.96.208"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3100::30dc]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StopWarinUkraineNa2"]},"Identity":{"Case":"Some","Fields":["DSt6ypr0VIZWWUVPgwK/tkJKNGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qkEx8Q+JqXQunuHGn70scV1U/MuDwolsJDlzmTCW2j8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:12:04"]},"IP":{"Case":"Some","Fields":["51.68.152.77"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DRL9h4IPrZz7JneIoDzblkvTL7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CHpxEEgqwiNz4jDNAx5m0kc1EcDwvpcyDc2cmk1FZYU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:00"]},"IP":{"Case":"Some","Fields":["185.213.175.43"]},"OnionRouterPort":{"Case":"Some","Fields":[2020]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:8bc0:2:4cf9::1]:2020"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["sellerie"]},"Identity":{"Case":"Some","Fields":["DRLY5y3tme4xuwxXeJNSvtDO7v8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gn+MDWGCD+xKYpBhGPemes9UoFr3/LDRwTinpgk1yd0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:08:47"]},"IP":{"Case":"Some","Fields":["109.70.100.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::10]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oli"]},"Identity":{"Case":"Some","Fields":["DQkYWvWQ4pQ6lO805L48Jl2JHcY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["duWN9i78hENHxue9W5jhNnfU/Ajhq7WlWo9NO731sH0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:01"]},"IP":{"Case":"Some","Fields":["188.93.140.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["mef"]},"Identity":{"Case":"Some","Fields":["DPw8AT48SVh4Q3lhBsXjrQk/Vf4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yM4DeCYpOlcRTjUUg+qQDIsVSDohPC++IjKxLs+ly68"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:03:48"]},"IP":{"Case":"Some","Fields":["94.23.248.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:2:7b9e::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=57"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["comedy"]},"Identity":{"Case":"Some","Fields":["DPLwf/BYHrvM3yCeZVaUNYqY2BY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Y8mBYWaUrJxqYf6JWVmN+gKCaVZ8CHtC7K1C6Zn/o/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:04:52"]},"IP":{"Case":"Some","Fields":["185.225.17.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SCtorrelay2PL"]},"Identity":{"Case":"Some","Fields":["DOYgGcUmE3KQVQFXQDlzf0xxc7A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sowVZ/ehG6sLjeViPMnu9IxFDlcDBgxsmVBsQPrTPHA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:17:46"]},"IP":{"Case":"Some","Fields":["45.138.16.118"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Route66"]},"Identity":{"Case":"Some","Fields":["DOO3Pd/5L/ZlOpx/kAOjK7bCNk0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["MBXqpMEp/3rPYXvIGgMrglr+ZR1Gg5BMmVLJVmSWdag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:00:44"]},"IP":{"Case":"Some","Fields":["46.9.42.110"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1900"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheLoneGunmen"]},"Identity":{"Case":"Some","Fields":["DNz7C24VAOV73X8kBUPrrvgcEco"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gi4kgtjT+GRt8bshxNEOI0lJFpNb/SX/aeTwQOZpasE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:03:30"]},"IP":{"Case":"Some","Fields":["213.163.70.234"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eita"]},"Identity":{"Case":"Some","Fields":["DNyP3YpIcnHey3kcDUZYXxa8jxk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4p6CEyaUHOheToLc3lMXTjYEL7uRH9qzPKNMWCwrnxU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:05:46"]},"IP":{"Case":"Some","Fields":["185.26.127.24"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc2:45:216:3eff:fe42:b953]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["DNZm+cmkCoz7HmuUZVl6UdOhy/g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AzOln8KcT504kywy8s9f9jm5urJ7UJsGwDmRYuC+eNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:00:03"]},"IP":{"Case":"Some","Fields":["5.45.96.177"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:5:669:582f:2eff:fea5:9474]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WurstRelay"]},"Identity":{"Case":"Some","Fields":["DMkmSDbvAUB7STTQa2zVN9RBpio"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["N4JhVLa+8RI4/NkF60FRKI9z4rnhDtuA0eOFNeJzp5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:55:26"]},"IP":{"Case":"Some","Fields":["37.120.165.175"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BESTIOMONDE"]},"Identity":{"Case":"Some","Fields":["DLw/xsyGPszzZ2FtVJXlOoYTtcw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X9HgdtjePhU+5pYoiCNn8lh0mHbLxrOooI6yr150OHc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:29"]},"IP":{"Case":"Some","Fields":["172.105.242.117"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:91ff:fede:8f5]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mgvx"]},"Identity":{"Case":"Some","Fields":["DK//5HDoivFW1nULYWmVs3kPJO8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vg16Ft3oI3ptm/jXtpW+cvDjM/7TJsP2cHtEhRw5NTI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:15:00"]},"IP":{"Case":"Some","Fields":["86.123.52.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheSecondRelay"]},"Identity":{"Case":"Some","Fields":["DK35ZQvm88tqCfKdi5ElDZPdkeY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TBslGwiok/PXPz2zuN+QWX8YVKjxEoqYW5e3pHHXGi0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:29:31"]},"IP":{"Case":"Some","Fields":["107.189.10.86"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=580"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Polyphemus"]},"Identity":{"Case":"Some","Fields":["DKvtkVnx5L6Ch59aNO2Nc0npMb0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J6NpTrmg0Tw3+psEe7LDl4xtMvTVubYaP7hZ55Iu9y8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:39:45"]},"IP":{"Case":"Some","Fields":["198.251.84.99"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:f174::]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Turquoise"]},"Identity":{"Case":"Some","Fields":["DKmcOIhvRsl5JIJ7fj66LBAfCuI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["orJhXsZ1vvH9sEXI5PK1kM2WC2X9ECPGtrrGzRis05A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:05"]},"IP":{"Case":"Some","Fields":["37.120.244.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BM02"]},"Identity":{"Case":"Some","Fields":["DKmK22GLTYI8y+HfZgLZTa/hHNY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M1kOtiOQSrI/oQTExsoNvvBzluC3Hj+ZZKSYyPeGALY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:32"]},"IP":{"Case":"Some","Fields":["185.239.222.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:2681:101:9001::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lodrich2"]},"Identity":{"Case":"Some","Fields":["DKP02VvPJJZPxGI1iKPxfi7iFt4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BpImpnCIzTSbJOAEUS9i6YNzpqxq7v2UQ6/mrbmiG7s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:17"]},"IP":{"Case":"Some","Fields":["85.195.253.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9005]},"DirectoryPort":{"Case":"Some","Fields":[9031]},"Address":{"Case":"Some","Fields":["[2a02:168:8235:0:44bd:c9ff:fe2e:3165]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=56000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1179"]},"Identity":{"Case":"Some","Fields":["DKNnfc9DFEA84UiFnuVVP5rf1m4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ly+z6zEjarWznKKcGi8mxw0F7qpfw42YTryDZeN6tok"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:50:31"]},"IP":{"Case":"Some","Fields":["185.220.101.179"]},"OnionRouterPort":{"Case":"Some","Fields":[11179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::179]:11179"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber19"]},"Identity":{"Case":"Some","Fields":["DKG2vJBuXdb0z+MitL7+ehfULVI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["le3qx/KTwqbZkj9rfXIxp2+SZqzsZQZc3g3Y8BwHUzc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:32:40"]},"IP":{"Case":"Some","Fields":["185.220.101.10"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::10]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nsaPwned"]},"Identity":{"Case":"Some","Fields":["DJs8aGQhxajCC6oNc2nNkp9DoXQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/Ykvn6pfzjOPaX2IkpP9pzV+KtcarB2naGbYoPsU9js"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:27:17"]},"IP":{"Case":"Some","Fields":["80.244.243.158"]},"OnionRouterPort":{"Case":"Some","Fields":[1337]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4d88:1ffa:c8::4:158]:1337"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EyeBtoR"]},"Identity":{"Case":"Some","Fields":["DJaFOxmbmd7Q3FajcxXOig+Nwr4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+kq5lyTBcas0u9mYQqzKSHSWPidOFW+ASncDqqeqsbA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:22"]},"IP":{"Case":"Some","Fields":["89.212.41.199"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sometornode486"]},"Identity":{"Case":"Some","Fields":["DJAkkfV3jmURE+Op1h/bunsXuPQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dUTqGNK4tZGtpoQaeFit2RZcsMrIpar+2U3uiGmhN0A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:23:08"]},"IP":{"Case":"Some","Fields":["91.41.211.213"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=930"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["DI2P8Vo7WK5KAZEFxQEw3Rz48b8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GkaGxQr41GIbcrra1dbyQv2dV+oUf+0TdMsYET1fvYA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:21:44"]},"IP":{"Case":"Some","Fields":["68.104.31.55"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["doppelganger"]},"Identity":{"Case":"Some","Fields":["DIpJ/mK3x97WS3xqlB71JA5PP3Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vMMSSOEWYnfgBD92PvzEK2F5FLVccnZolrWDIlJgL18"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:29:52"]},"IP":{"Case":"Some","Fields":["95.217.5.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:54f8::1]:9101"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["oignon"]},"Identity":{"Case":"Some","Fields":["DHsrCS8FJrx/wtiya/AwdnZeSso"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cnTUeIft8P56WJKMcOX0/QP2V4HxdcL2cNfSwi0x9mw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:07:05"]},"IP":{"Case":"Some","Fields":["142.188.85.15"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bruxa"]},"Identity":{"Case":"Some","Fields":["DFz9fMMCUVVaw6iy+H5SNDBHf7E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zXHzxIZLJrqljoDiUUFGYPdpl3EhRn6+GeeOJflA7JU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:24:33"]},"IP":{"Case":"Some","Fields":["23.250.14.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Freebird32"]},"Identity":{"Case":"Some","Fields":["DEdbpNOqPCibcW+VlUytYW5QxOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CmWhG1vuzRpK0qx/2PR1Dux4elgC8QzUmOhon6nNGvY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:18:33"]},"IP":{"Case":"Some","Fields":["81.7.18.7"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2eee]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HORUS1"]},"Identity":{"Case":"Some","Fields":["DD1eGePHW1Bcis0m+J3KLflwVT4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TOrfVlxt7VFQ980HmzY8PU+Wd/KYk9oFa/29L1uCIio"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:14"]},"IP":{"Case":"Some","Fields":["65.108.3.114"]},"OnionRouterPort":{"Case":"Some","Fields":[1066]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:6a:528d::a]:1066"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=84000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rem023"]},"Identity":{"Case":"Some","Fields":["DDWZB57yHEmUrW3ekfcqSPFuipg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fi17AaNkij2+gjZ07m1l5rU7/j3tBVyjL0P8IfQvYHs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:38:42"]},"IP":{"Case":"Some","Fields":["217.78.28.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9451]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp0"]},"Identity":{"Case":"Some","Fields":["DDI1GR/Klyx0V0d6vCB6n/7IGMU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Af63K/FlUrEneHAPcXf9QhCUpXWky43IfjGpICMn1CE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:46:56"]},"IP":{"Case":"Some","Fields":["185.220.103.112"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["libel"]},"Identity":{"Case":"Some","Fields":["DAOfNcLkDctxzYoH6Xx/13h9QtY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["r8KBubmG+yTfaBJfNnIBz3ASKpZYruEZh8/ZahbHU1g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:30:04"]},"IP":{"Case":"Some","Fields":["5.200.21.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x766c6164"]},"Identity":{"Case":"Some","Fields":["C/YG3oNtTHlMr/fKeHIPjIdmCZg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZXvawqQnwS0Pr5tIPVrjt15cgxG3HQ+SUh7JcXOj1wg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:51:25"]},"IP":{"Case":"Some","Fields":["86.127.196.226"]},"OnionRouterPort":{"Case":"Some","Fields":[9162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Dagoth"]},"Identity":{"Case":"Some","Fields":["C+yGDEX2nwRwhN/q+3561ooGJ4s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["R1dTlcxpCfq2OBbThANJsVjSBn63zqlMHw4HuAfqcCk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:58:00"]},"IP":{"Case":"Some","Fields":["174.52.254.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk6b"]},"Identity":{"Case":"Some","Fields":["C+LGyP3Llq9lgD087kkhTWGfxUI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EUOa5eaTSGDFKIkq2LbiFNfXXKnzDWd4WINGXy0HZxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:18:22"]},"IP":{"Case":"Some","Fields":["62.141.48.175"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:2:32:4104:104:0:1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=420"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["quark"]},"Identity":{"Case":"Some","Fields":["C9dExGdP+2DNHypuh3sC975FWLU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DoWwYgUUTbXfwfvQMi5usILTylWbtiC9G3NMf/DLK+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:25:47"]},"IP":{"Case":"Some","Fields":["178.63.68.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:121:12b3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel5ev1"]},"Identity":{"Case":"Some","Fields":["C8i6Msw8sPWY4MknePfAlG37zpE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7jMHI9XVnkkdaXEVZUxu8kaSYfQEmYMUmO7jFN9daPI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:44:16"]},"IP":{"Case":"Some","Fields":["87.118.116.90"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1b60:3:221:3132:102:0:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BerkeleyFiberGuard"]},"Identity":{"Case":"Some","Fields":["C8a3FzJWyod6pyqLbDWcnim+ccY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["scO/lJTMQz9IHPaN1OErgIRnh8fQvcOSkhM4GgX69a4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:12:47"]},"IP":{"Case":"Some","Fields":["135.180.40.138"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["brokeneye"]},"Identity":{"Case":"Some","Fields":["C7YTYxrqffjGs0y9GJJdGmK7xQw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["eE5H4Gwl9ZqiupKtuurduwoDv2R+fbI0nDg6fPs3pW4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:54:22"]},"IP":{"Case":"Some","Fields":["179.43.145.244"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Albis"]},"Identity":{"Case":"Some","Fields":["C63ZUQRAyb86co8stjCDb/mBQrI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3mwxNGNbavnLyIf1UxJv/e2PaYzGvawLJ8AQ3InzrJA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:14:57"]},"IP":{"Case":"Some","Fields":["138.59.18.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tdxchg"]},"Identity":{"Case":"Some","Fields":["C6MKPRG3P5XRRHzJs1vl8GgdWhw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5+oVN6+WNc4GymUj+qgGDUaesV1nN1y40Y8OBfIAopI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:31:05"]},"IP":{"Case":"Some","Fields":["207.180.192.66"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:c207:3002:8686::66]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber27"]},"Identity":{"Case":"Some","Fields":["C6HI8mr60/rvO2oij5c4LRFQJ7k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zospiA9gNYuHB7e4aw5iyz9wAeghvOYGTg8y1u5xNSw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:30:51"]},"IP":{"Case":"Some","Fields":["185.220.101.14"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::14]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4oobeivanai"]},"Identity":{"Case":"Some","Fields":["C6FWB++dAPRWTJMSeKaG5LwBwtM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pxfPI9Q/fdn3vtHWCbDblwrsOw14FKy6cEb3fQftE6o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:08:53"]},"IP":{"Case":"Some","Fields":["199.48.93.37"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["who4USicebeer47"]},"Identity":{"Case":"Some","Fields":["C4pVefQwUSFOKIVJJCBSA6gB5Qo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["iD7e9JUSuxWi4dM3B/Edc4/yUEI0gwKWUTKd7NcVVwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:19"]},"IP":{"Case":"Some","Fields":["173.208.190.12"]},"OnionRouterPort":{"Case":"Some","Fields":[7162]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["purplewineglass"]},"Identity":{"Case":"Some","Fields":["C4a7/Vz66AhnChaqd9dbekBsqHE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pyArVT+7UAmsEm2iiMvEKRXnJwrtZsJ1W5s/KMfqBBA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:36:47"]},"IP":{"Case":"Some","Fields":["93.42.106.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9021]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fission04"]},"Identity":{"Case":"Some","Fields":["C4Qctw+e0f0DIsK6LrDYBCDYfPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jkICvLGwC5f74n0P3J+vtn69KI4OR3zmbhB3H7Pj7hc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:43"]},"IP":{"Case":"Some","Fields":["149.56.94.219"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:b14a::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7800"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["OnionDAOContributor"]},"Identity":{"Case":"Some","Fields":["C3eHIu5h4cNfWUL3uudZj1PftZk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["M18iskLx2xUFvMppZ21ZbcV+aUbWJ6fhsrSEZ9xa7mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:51"]},"IP":{"Case":"Some","Fields":["5.255.99.5"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:104:ad97::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fabmann"]},"Identity":{"Case":"Some","Fields":["C3UXijjRNQGowfIfBsiS1pWhvos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["9Z9i3742S3v6ZwtPzXcStuwsm7tIYlx0iGyxVhK4FGQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:14:14"]},"IP":{"Case":"Some","Fields":["213.47.199.88"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=170"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute08"]},"Identity":{"Case":"Some","Fields":["C15ecP/qnH+f/RO44WkWpgjz6es"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["A8o/3tSQiweh2xB/2wHfmy9s2ok0zQ2wxPmirkZI810"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:59"]},"IP":{"Case":"Some","Fields":["162.247.74.216"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["C1vHazvnVTsin9PnPyau1Bwx3Rk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNDSbu6Qv7WEeCVggsetm4QviaScr9HpxUEKOcTfhAU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:08:09"]},"IP":{"Case":"Some","Fields":["188.68.42.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ChuckNorris"]},"Identity":{"Case":"Some","Fields":["C1fxa/lkd4jNZ78EYHpfaonMuFE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HWxxQOQUeeUFIw7lBzSqaYAAELeRY8ImzVivhrLtz3A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:10:24"]},"IP":{"Case":"Some","Fields":["116.202.169.25"]},"OnionRouterPort":{"Case":"Some","Fields":[3443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=150000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["poopypants5"]},"Identity":{"Case":"Some","Fields":["C1fsS1+DlXx6y+juWrp67qfOHWY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7psUGCKyDhytWofrlhOIDa7U4psx+dNIx8iH3T4Slb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:25:37"]},"IP":{"Case":"Some","Fields":["168.235.111.34"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=950"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORro"]},"Identity":{"Case":"Some","Fields":["C1VZQNN9yElyiEHAspAHThob3Kg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["J/nnUofhGosLxEzJJAkyWv7doIg0uv3cnDLj3XdOE2k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:14:07"]},"IP":{"Case":"Some","Fields":["188.138.75.101"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=77000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l0z3rzb3d4m3d"]},"Identity":{"Case":"Some","Fields":["C1O/kZuaAe1i7RDlEpKspQ3bEOs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+jN1YnDCKC5NLzrVPGgkCNQ2bd0vwJmVIlAMczFeh/U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:50:42"]},"IP":{"Case":"Some","Fields":["65.108.253.128"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c011:9e93::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ranlvor"]},"Identity":{"Case":"Some","Fields":["C0U3WizoBl6KZJ1SzDXznRKHRag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ggJpuFBLhA8VPEbjdF4d2QlwFkLnxUueY/tqAh4XzKA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:22"]},"IP":{"Case":"Some","Fields":["95.216.27.105"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:1b96:2::2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SnarkyRelay"]},"Identity":{"Case":"Some","Fields":["CyYNZqHupbxbWkvjIHH3Xw9dk4g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ls8pDt5BpG2IZo6hCrfHKCIxKBEAPUrBDUDRr5+L4EM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:02:30"]},"IP":{"Case":"Some","Fields":["75.172.18.168"]},"OnionRouterPort":{"Case":"Some","Fields":[9090]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CvmCzHGgHZXolZ12PQ7A5abGEkQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pqHus1WnvEN5CyN8ErcCZY2Cihcyg5N8QVLD+XrNwEo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:02:01"]},"IP":{"Case":"Some","Fields":["188.68.36.68"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CvkChdaz7MUqv6PLMUBN9vr5MTQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FTdgMstremduBM/q0ohsZWX4mgv4Pz70u+U14MJRxAg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:43:13"]},"IP":{"Case":"Some","Fields":["37.191.201.85"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c440:70:88b:216:3eff:fe01:344d]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyexit"]},"Identity":{"Case":"Some","Fields":["CvOZQK+WjP2iv3pgHvMwTgb0S7Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["esyHJu4n2UIEiTxZeP+L1MGwjuBcEjfHVkRbiXQUYfA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:17"]},"IP":{"Case":"Some","Fields":["185.170.114.243"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:15:a68:58bb:1aff:fe4e:768f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["scylding"]},"Identity":{"Case":"Some","Fields":["CuUcD6BtAyf9VIIOwcokqgjt5ag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sntJGlhWSbVyKOcGL2mPF5xiK83iFH2j5U5DkMvx91E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:21:28"]},"IP":{"Case":"Some","Fields":["50.250.14.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor7"]},"Identity":{"Case":"Some","Fields":["CuJeJhILaGb1SKD8zwh6H3ayrU0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xIco5Jk09CUeCchTPxUThyDLOenzNFb4CJn1Qkydzz0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:53:18"]},"IP":{"Case":"Some","Fields":["31.133.0.123"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:2044:c141:0:1:4401:1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vanaheim"]},"Identity":{"Case":"Some","Fields":["Ct9JgqYjHs1tBBcENb+0wOTK31s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8+nWBOKYApMLXk2K7EJWxvuu+RrFUTmJO9iwTHycRfs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:26"]},"IP":{"Case":"Some","Fields":["173.69.60.10"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PieroV"]},"Identity":{"Case":"Some","Fields":["CsPIa8nKKlDHdi70KrxtN1daz/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jlJMalSyMIwLgwy5pG7kKbQbhYtVG4E90+52ShUJgpk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:09:17"]},"IP":{"Case":"Some","Fields":["164.132.226.30"]},"OnionRouterPort":{"Case":"Some","Fields":[22]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:401:3100::7fda]:22"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pinnacle"]},"Identity":{"Case":"Some","Fields":["Crwev/UMilgnmtB/vXPhg/ngC4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+ETaLUcf3SMTEQJl76nBZ7+b8W9B23zi646dhENbZh8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:43:21"]},"IP":{"Case":"Some","Fields":["5.252.178.224"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Cn3kz1/kngA0VT1xb8q7mtXteSQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["+SOW7hkhKmiC2VnUrU6RM3kFgv/tjRl+3M5sTBIQMRA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:00:00"]},"IP":{"Case":"Some","Fields":["23.94.220.202"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=700"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CnbAoKch3bwyS3Ba2/yV/YBq6FU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ejd0FVOzMmsbZEW24i0FxkMHrAVX+SwDIy4qE4tndyo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:59:52"]},"IP":{"Case":"Some","Fields":["188.68.50.25"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CnQcesH6fnLtnDaEscO34barTM8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["U2mGw00WfaQE9vjtyIFFzA7GfeMyn7UvH9alag/zu1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:55:10"]},"IP":{"Case":"Some","Fields":["82.160.220.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=41000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sikrelay"]},"Identity":{"Case":"Some","Fields":["CnQTBoAYrd5RSmipGkjIbCfvZKU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yQa7Et3pnbk8sJCAiRS6wqh7wcteLRWLEbZCItybvhk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:14:10"]},"IP":{"Case":"Some","Fields":["162.251.116.2"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["notGCHQ"]},"Identity":{"Case":"Some","Fields":["Cm+43lwbYxEXr5RESq/oUACBOC8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bLU4pyURe+r+QnAs7e1r1Wh563PT2ee+r9OSz4r4IXE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:14"]},"IP":{"Case":"Some","Fields":["77.68.9.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20 Unmeasured=1"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arighttosurf"]},"Identity":{"Case":"Some","Fields":["CmABseOp9TZb08KYi9abuOrXEok"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["btsOa94vjsjLcVKH41PtodsU1Xd8sFMbPrNfSCyzJLU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:11:40"]},"IP":{"Case":"Some","Fields":["45.83.234.114"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:1854:1::face]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=660"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EatErgot"]},"Identity":{"Case":"Some","Fields":["ClaYW73bX9H6qMkTPHEVlhqmw3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qKkedpvZC/HKbDCsrQOLgbCsnQGxgZ3lT8AAmMBM7HQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:27:08"]},"IP":{"Case":"Some","Fields":["193.218.118.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FlashEel"]},"Identity":{"Case":"Some","Fields":["ClAA5f8pd+DSNrn1tHWQ2IiElN8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OYbVBf3cqqIugHJ7WKs1rkylsD9RAuQd2U1m/M2ftH8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:26:48"]},"IP":{"Case":"Some","Fields":["130.61.125.241"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6500"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nodv21"]},"Identity":{"Case":"Some","Fields":["CjujZI5Tpivc9PSdV2KAOYGLjmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sux8cSjXa8l8RcAQpFNR/Pvc6BGSWp1X/gtCwxTtCV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:28"]},"IP":{"Case":"Some","Fields":["45.62.224.11"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CjqvUwdH1wNNv4jFGAM6IoJ+PEY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["i3fKr6Nrm7HoeMKpvpP45Sa90Wmt92s1HrTKF45G1o4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:18"]},"IP":{"Case":"Some","Fields":["5.45.103.136"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:6:5:c437:17ff:feca:57d4]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipca"]},"Identity":{"Case":"Some","Fields":["CiNmmAooQtdw744Tan2hSHY2BEc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jb+ULzEDUkYOKPp0KAhglISru7b9Rb01Mkqc8gDK+h4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:51:23"]},"IP":{"Case":"Some","Fields":["185.220.102.242"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::242]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Tor4tahfahce"]},"Identity":{"Case":"Some","Fields":["CiFRwEkrihf9A+1AWYYnpwJ645s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["usTAOv4QNHA+7vpNomeyg+Q+qoUb83dgFpkQFCtsqz4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:28:38"]},"IP":{"Case":"Some","Fields":["63.227.116.162"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kingpins2"]},"Identity":{"Case":"Some","Fields":["Ch7Mt98CckkqTzf7V9wPn0KnfXE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["K3xHo6Jx1wrYwnCK95ADQrce6ApDDLoAl61FKPloESc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:33:21"]},"IP":{"Case":"Some","Fields":["45.58.156.77"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Anaconda2"]},"Identity":{"Case":"Some","Fields":["ChdUWTw9v1tbNcBNYI438oJWs18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gzz9v2r1h8/BruwVUo8Ffr6CuvwSjz6zLHOs94QsXks"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:02"]},"IP":{"Case":"Some","Fields":["83.0.60.229"]},"OnionRouterPort":{"Case":"Some","Fields":[1315]},"DirectoryPort":{"Case":"Some","Fields":[1316]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["luxvptorex"]},"Identity":{"Case":"Some","Fields":["ChHHVGoTMkEtHr0TvUw9amZE1+A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1DfXzgxXbycMDae9LrOiUeesKgR1sGSBrsMfzIGFTXo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:05:55"]},"IP":{"Case":"Some","Fields":["107.189.30.69"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["portnoy"]},"Identity":{"Case":"Some","Fields":["CgwB3QBE5wMY2ePaXxJaCQacV8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ctqXG2EgoK2FFoJxzQp17nNyNhnHMjt9DChp2X4y+0E"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:17:46"]},"IP":{"Case":"Some","Fields":["185.198.26.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:bdc7:100:16::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorxzontochoRelay"]},"Identity":{"Case":"Some","Fields":["CfhXLWiR1hrpt/AjXrfrR4KRYzE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["32uf1eTm+vVvBcH7xuZwmMxVE/BAZKUPrumcZM3v4tQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:04:05"]},"IP":{"Case":"Some","Fields":["137.220.53.106"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:19f0:b002:8f3:5400:4ff:fe23:18a4]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hermes"]},"Identity":{"Case":"Some","Fields":["CfZOAPNMiPYEFj8k03vq+SRXAuo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zPfP2Er3M9yzMIJ+QMUbe6jJFulEhf16nFWm+dEjVu8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:06:54"]},"IP":{"Case":"Some","Fields":["98.115.87.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["spiritbomb"]},"Identity":{"Case":"Some","Fields":["CfSaSs8e/EMAGIoCSdFJ6grxChw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Tq+m4/PGX5eA9e/Eu22QyUjsR+3yvG0E6CRO6fc4wPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:30:21"]},"IP":{"Case":"Some","Fields":["79.230.237.66"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["torrelay"]},"Identity":{"Case":"Some","Fields":["CfGTZYfVqCq815sRWZwETnLBOEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uKPks/3HC0PVreZduAd9jz2nvBO1I0poGSTO56Ii2Cc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:09:39"]},"IP":{"Case":"Some","Fields":["185.163.45.253"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=6800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GomasyDotJP"]},"Identity":{"Case":"Some","Fields":["CeEHsYGHGWdk/4zIdOIkfOQRtQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DOWijrO0/RD7xxE/eKT1fy21v3ONTax0fKs+zUYKT9Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:00:00"]},"IP":{"Case":"Some","Fields":["139.162.127.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:8902::f03c:92ff:fe5e:9635]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["cyph21node2"]},"Identity":{"Case":"Some","Fields":["CdIimpWJAdklGfqO6T/7FIGC2po"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hGebmWxha6e15MTf+NUq2yzIhzoU3PZwKtXP7CZrsxc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:28:02"]},"IP":{"Case":"Some","Fields":["141.147.33.116"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c020:8004:9d00:10fd:ac01:a751:7a6f]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Cc4a8/ty5z3+bvX698gLAbjGIoY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["QNW9q8gqbOEZsy6wevAclpor1heUFG2H7nZo8R+T82U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:55:58"]},"IP":{"Case":"Some","Fields":["103.4.153.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1500"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CcoZV+wGcQRNrS7qKCo0j/19Jx4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["P9EAoZZ1ix1EI9K6+lRvBXmsw3v++2y9iNUa2KElYyU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:15:04"]},"IP":{"Case":"Some","Fields":["185.194.141.178"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zwiebelfoo2"]},"Identity":{"Case":"Some","Fields":["Cb/mo2LSzkNcRfmbVhcbbaSG0PE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tA147W2kNh3jLw9FI0jyYfZ1zlLJLWb3/44dPDBEuoM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:54:37"]},"IP":{"Case":"Some","Fields":["89.58.33.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:d6f:3855:34ff:fe06:ba9]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["Ca9celmFLvRP9W0wwB1fQS/Rl4Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["na29upe5xKvS9Sus2RRGtgkneDG6IkyrW7cTUomxnic"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:25:09"]},"IP":{"Case":"Some","Fields":["74.208.182.78"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Deepsky"]},"Identity":{"Case":"Some","Fields":["CacOOW3pP1TUVBu7Dsjisjdh808"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lyMt9cN0kLAD05CF5o+7HbI7gsRYNpRFfMBolhbWNMU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:43:41"]},"IP":{"Case":"Some","Fields":["109.228.53.235"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:cd::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["martzeladidnt"]},"Identity":{"Case":"Some","Fields":["CZXLBmVbStUGifSrMDdkzXF8JY4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TE9oxaadUMuyH+OWTO5r8mdcMqiSd+RgfQqqWLESe+I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:13:25"]},"IP":{"Case":"Some","Fields":["82.116.120.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["CY+YU4ohoWMy6MS3JDBcKjSWpGc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e3Y1oq5xJsJprbEX2LlBfWl7nmMyDx279+C7Qy5jL4o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:38:58"]},"IP":{"Case":"Some","Fields":["185.194.142.194"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lrjstorrelay02"]},"Identity":{"Case":"Some","Fields":["CY73Rk/VXkojIekFeMjz7We1OkA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JRQqfJtUwkBxqBslmvBiqiCrvAonGZcHa7cxUUimtUc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:26"]},"IP":{"Case":"Some","Fields":["194.163.147.235"]},"OnionRouterPort":{"Case":"Some","Fields":[19001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tourette"]},"Identity":{"Case":"Some","Fields":["CY2c91aNJ6goj6S7OBmpmRMxXW4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uK2e1eHbS5VtzBpjx5FIW9yRXksHP+cj4Pm8QnSHxhs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:01:42"]},"IP":{"Case":"Some","Fields":["91.47.203.67"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tornasol"]},"Identity":{"Case":"Some","Fields":["CYs0V6ujGtZaOvR/YbYj41s/qy0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["v2mjqATIwlYJGt4IU73kUjM4s51EYro9WXSKs6mz368"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:30:37"]},"IP":{"Case":"Some","Fields":["178.199.50.198"]},"OnionRouterPort":{"Case":"Some","Fields":[26709]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TorWedos"]},"Identity":{"Case":"Some","Fields":["CYdEqB1cycMZKhmX1MrG9nkImbs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xnSn2jMQqhr3T94FfYsZXaixJaaYpd23CJVU91P40Pw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:42:50"]},"IP":{"Case":"Some","Fields":["89.221.212.118"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:2b88:2:176::1]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MetalsAU"]},"Identity":{"Case":"Some","Fields":["CX2DkKmY++vb2oC6x9hviuYG5KY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oZu5hM/EiT6tj20eGsSOSuhpSez2tVn29WX5oqzjJtA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:01:58"]},"IP":{"Case":"Some","Fields":["93.95.231.110"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["collyum"]},"Identity":{"Case":"Some","Fields":["CWVugepavU45PlZEgo9PtmKHAEU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mmGNF8pd6Kz6DOEWPFzcnlEZlMP+hCPYR69mLiuJnjs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:45:48"]},"IP":{"Case":"Some","Fields":["195.189.96.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SevenLayers"]},"Identity":{"Case":"Some","Fields":["CTW6kXj547UMmd1T9yOGX8Ikz6g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ka48/2q+e1inubpUenTAU3defgkM7NSgWK+hpFvCUeI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:46:49"]},"IP":{"Case":"Some","Fields":["192.124.250.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["jwt28156"]},"Identity":{"Case":"Some","Fields":["CSpwc1/Mp1PQiM3GC2D3dDCa+sM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["81hl1Q3LPU3zmNrCT+/KFBVqwYnSqyP15kXhOnn2JdM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:50:40"]},"IP":{"Case":"Some","Fields":["185.245.60.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bhsdztorrl02"]},"Identity":{"Case":"Some","Fields":["CQuDupWn4tYV1nme/XV94t3H0P4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0oYgwCYfbHWAOhZVwti2Kkm9ZEYMPmT9BQx4b8zH0NI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:09:49"]},"IP":{"Case":"Some","Fields":["54.39.234.91"]},"OnionRouterPort":{"Case":"Some","Fields":[9002]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mercury"]},"Identity":{"Case":"Some","Fields":["CQl1h10bvlP2/yrcqLpByX27Plk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H4eNGUVmhxHZrPvmW4KiVmmcjcgTjvuxm0YCGVgNObU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:57"]},"IP":{"Case":"Some","Fields":["45.9.168.191"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:bfc0:0:3::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mev3PLicebeer79"]},"Identity":{"Case":"Some","Fields":["CQey/5Q3bEHLfrBTXYcX/Z8uhLE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ld2UdefxCpHJg3jzYNUY6s8Oype1ZFW9zaplaA18ijM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:13:05"]},"IP":{"Case":"Some","Fields":["95.214.52.156"]},"OnionRouterPort":{"Case":"Some","Fields":[8179]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CP4n907Ei012Z+v69lTlFRuZJPE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CIDfBhcm3onWeZPjP/oXTEt3FC5dXE7XjoGE6G+NJJU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:19:23"]},"IP":{"Case":"Some","Fields":["217.87.70.124"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=340"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["neartAurora"]},"Identity":{"Case":"Some","Fields":["CPRpK2CGJkD2iLhoJrZvMN6nq3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7zc4Oy62YY2PKI3jXrKmpJuq57lIdTtekzWux8TIIAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:07:27"]},"IP":{"Case":"Some","Fields":["51.15.182.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NeelTorRelay2"]},"Identity":{"Case":"Some","Fields":["COpUV89m8TrInqdGgkF6YAHcYdk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AveEbNlmDCMuxGzfYpkslhERHCsZO63O9BOrdUD8jpU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:14:04"]},"IP":{"Case":"Some","Fields":["97.113.240.90"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3100"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yoyobolo"]},"Identity":{"Case":"Some","Fields":["COcV84DwAxOzuZrLENqsel9jgn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zkyHXX2he88kcT2qM7q8BxNDHVEEjEub0eCc9s117cA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:18:39"]},"IP":{"Case":"Some","Fields":["75.184.16.251"]},"OnionRouterPort":{"Case":"Some","Fields":[40932]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=280"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ZynfulRelay"]},"Identity":{"Case":"Some","Fields":["COZAebl9m6mQotysEF+bvDsq4nY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0rxvhnBVXceV/CJQeXqvKBPpRaJBFgj8GVDAMRXaIDs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:12:50"]},"IP":{"Case":"Some","Fields":["2.56.98.134"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a03:4000:3e:568:446c:e7ff:fe7d:de4f]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor4e4"]},"Identity":{"Case":"Some","Fields":["CM49v9qifbbARKZ3r2jXI1wq/IU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6DqRm+lL76X80Lk7j+eMDoiS2nJSDMviXVHmPO0HYq4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:39:41"]},"IP":{"Case":"Some","Fields":["195.176.3.20"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:620:20d0::20]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=25000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lollipop"]},"Identity":{"Case":"Some","Fields":["CM2dQiQFjcl6HydnmlvuVyTExuw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nCb2Zrh1bBcZVWf3ZiF6J2svu0BCkYGvf0qvM3CAo2o"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:49:01"]},"IP":{"Case":"Some","Fields":["195.123.212.113"]},"OnionRouterPort":{"Case":"Some","Fields":[1357]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:27ac::120]:1357"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["annatesla"]},"Identity":{"Case":"Some","Fields":["CLSIimVm9rxTY0I4YvSFKUIKufc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZLsebmTVqdoHmLdhDBAk41Q/1R8NJBm8i9XyJjWVNMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:48"]},"IP":{"Case":"Some","Fields":["5.255.101.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a04:52c0:106:d219::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=770"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["IloveTorone1"]},"Identity":{"Case":"Some","Fields":["CKnzS8flib8MeuxaqdLg9sOtTF0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1/kwx5/N7aoNH/yvp6KT7uxZY3FUqr8GmN472vSCXAo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:25"]},"IP":{"Case":"Some","Fields":["45.134.173.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheAdoptee"]},"Identity":{"Case":"Some","Fields":["CJ6JWdOGxNwoP/2itZCmX86FyLQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Gy2Lt/AsYfw9ZlhnJAN6BLl3q1fppMq6wAUuIxb4HWo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:17:13"]},"IP":{"Case":"Some","Fields":["185.112.156.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["CIpiN+7Yft6w4eOtCkpBn5Y/B4c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LBpTvbyOan8gNLL8by/PTr3NWlCP4VgFlS23bDYb3NA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:09:57"]},"IP":{"Case":"Some","Fields":["176.9.40.67"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:173:402:267c:d656:b84c:abd6]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["8lyWARGTU4wesrfy8i"]},"Identity":{"Case":"Some","Fields":["CIJECHQDSvvi+/FkY6KQ8yeOJPc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["80Qm+cDLw8155EPxDJ9WVN9u0Lg5OM72Tf6G/RpPHlo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:00"]},"IP":{"Case":"Some","Fields":["176.58.121.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:7e00::f03c:91ff:fe70:e0b8]:9099"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=180"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MYCROFTsOtherChild"]},"Identity":{"Case":"Some","Fields":["CGH0lm4ZnAup2x2QTbS8hDUI8Sw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OoUCdUBt7Dgnu1kR3WnAGwrRAShoSoq9tMafsUAora8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:00"]},"IP":{"Case":"Some","Fields":["98.193.69.56"]},"OnionRouterPort":{"Case":"Some","Fields":[32323]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.4-alpha"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=89"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pastly01"]},"Identity":{"Case":"Some","Fields":["CFUny9ZIX9R1rJg/qGg6LZAouqg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kHTuyQvXeS+yVQyJ1qfmZHTQK02vCR3to0L9sZ7bSZk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:00:04"]},"IP":{"Case":"Some","Fields":["173.66.161.213"]},"OnionRouterPort":{"Case":"Some","Fields":[8234]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["privacyftw"]},"Identity":{"Case":"Some","Fields":["CFCXElTLXbWVkog5O0OOOJSb0H8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cwphiU+uYps+vMDtaJZcxRnZGGVWoUyUT3c363rgNqI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:36:28"]},"IP":{"Case":"Some","Fields":["92.34.220.187"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["CD9Fnqc0BJ+zvRvkheATrLFpxJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H7UL8VeXN2gC6XVGYa0b4/c++mj5U69KjOEW5Tb6UbI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:22:32"]},"IP":{"Case":"Some","Fields":["128.0.64.184"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NAKAM"]},"Identity":{"Case":"Some","Fields":["CDxSBRFA24r3cL1Ax8iIPv/0yvM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CCdt5p8rMVcBGBSpAPHnvFvx5C3awUgZFjRc8fc6WfY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:37:09"]},"IP":{"Case":"Some","Fields":["212.227.165.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["pengy"]},"Identity":{"Case":"Some","Fields":["CDlMSHPIpxvp9TWT+bStaUv825A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UPQ2hVvd6jWCe5bayjsy+RyrErUIaE/tcE2T96y7V3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:20:38"]},"IP":{"Case":"Some","Fields":["185.56.171.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hirelayarty"]},"Identity":{"Case":"Some","Fields":["CDdpHnQa6OK4sMYHwbTt2y5d8Bs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zms5iMZnyeDekWHiQcYzJPTF+zSuqc+q0dq/C3eaV7c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:34:24"]},"IP":{"Case":"Some","Fields":["107.173.167.162"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=79"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheGreatKing"]},"Identity":{"Case":"Some","Fields":["CCTXx/sRfVxqwBWB/XmOZww3yAQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8qIP37GTWkGoN+S88QAWz7gNCceJ6Qs+lg5W7/9YFus"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:34"]},"IP":{"Case":"Some","Fields":["80.66.135.123"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LDLUEXRp175"]},"Identity":{"Case":"Some","Fields":["CBFMjQP7m+pF6H6xNF1Rv7KwBIw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ep6g4uyJGEZ+wrLHQlZX2zm6/zxgS6b0APVbgEJdOb0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:47:10"]},"IP":{"Case":"Some","Fields":["107.189.1.175"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RiggsOceanlock"]},"Identity":{"Case":"Some","Fields":["B/DmUuTMsKDx6I0ARuyzIuYxjIY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LrfCycZfqosOiHK0L9KFMEU/Au8iWQzKgeVQmqcHk5c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:01:51"]},"IP":{"Case":"Some","Fields":["78.138.98.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["fav53"]},"Identity":{"Case":"Some","Fields":["B9dy30ZxxAp6yR8iNLzpz18z9PQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Nqr1IxJC+twR17BjOpEaeI4AIH8zQ1+jndlg6Y9ALxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:46:51"]},"IP":{"Case":"Some","Fields":["205.185.117.89"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WolfClay"]},"Identity":{"Case":"Some","Fields":["B8PrvkHfn+hVHfaWQv66cOlU3A8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KG6pZX+YM0cWoBWZUDdXZoR1EQwgGorMLcWeemMsAPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:05:01"]},"IP":{"Case":"Some","Fields":["185.177.151.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5800"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgSG"]},"Identity":{"Case":"Some","Fields":["B8EC1rAn5bK5yULj6ULA8k3+5Rs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vbH6cfP+pPhfV+XEBwdcMxk/VkaZExzRDg2/IVPlesc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:49:44"]},"IP":{"Case":"Some","Fields":["139.99.46.190"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5900"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["homeplanet"]},"Identity":{"Case":"Some","Fields":["B7j8W2ZxnDVfq/hLT14BMeEn3wE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mjtWRX/O3MTi9tGvABEjSQDqnBySDS0ahQi9WpRgH7I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:48:21"]},"IP":{"Case":"Some","Fields":["85.91.153.163"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=270"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["debiansRelayTor"]},"Identity":{"Case":"Some","Fields":["B7V4qE6Odvp1kVuR4xtuUOf93JA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vKZe9iiUhY5kZuRhCe4nSPHy9j9F0c6i1sNUWEGf6m4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:43"]},"IP":{"Case":"Some","Fields":["94.16.114.231"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:28:900:786f:7fff:fe08:8217]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=650"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mymumisthebest"]},"Identity":{"Case":"Some","Fields":["B7NbzPYhHm2XCgFQEvyaLGdoSPk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GGowhnLnWH/n+p43/V/CRpGi8jN0WL87y1uu0sdcCWM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:44:06"]},"IP":{"Case":"Some","Fields":["158.174.11.156"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:28:805:1000::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["kramse02"]},"Identity":{"Case":"Some","Fields":["B6z7CAHk909WEPhwtfy7VTnby9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["h/mYo3zbcMItKEPip+/FAv4s734oIX68vFz2q7tAHJ8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:37:45"]},"IP":{"Case":"Some","Fields":["185.129.62.63"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:d380:0:103::63]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon0159"]},"Identity":{"Case":"Some","Fields":["B6KtsHnhRAknAg0jtHtDWMylhag"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qlhEiGJaQjdSiYugpzrBITqDnZsFfDqJ+DX8Z/w47mg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:04:31"]},"IP":{"Case":"Some","Fields":["185.220.101.159"]},"OnionRouterPort":{"Case":"Some","Fields":[10159]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::159]:10159"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=54000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mistersixt2"]},"Identity":{"Case":"Some","Fields":["B54RfguAhIRkbKdxX1L2/8gx748"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["373IiFmRZS9pjy4G8R263F24NQIR4U0ACMxIE8RpLV0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:39:23"]},"IP":{"Case":"Some","Fields":["88.99.104.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:10a:189f::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["SingularET"]},"Identity":{"Case":"Some","Fields":["B5BaDYrRwTTTA2hyFAsdset2F3I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oziTd6p26D1YVWWmD5Yv+Yj7TZaWG8eCChlLXHJAp+A"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:43:14"]},"IP":{"Case":"Some","Fields":["185.212.149.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AcrimonyOZ"]},"Identity":{"Case":"Some","Fields":["B4z8yqPfBcLRL+Y2nFqCBZRSgFU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SS9p3PYJSVqcLo4nyBzAarVUN2PazduMcaHAV0uVxKk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:50:16"]},"IP":{"Case":"Some","Fields":["51.161.202.121"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f2d:1ec::]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORpedoSHAdow"]},"Identity":{"Case":"Some","Fields":["B2coktEco3QLalDyebDMykyhyjE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ReWupNdtGYxQ3578vLbMOMGiFm6ahkSzgBlxQsCkJTk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:32:27"]},"IP":{"Case":"Some","Fields":["90.92.72.109"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["B0sgwz1KA0U/sZqFNc3OE1JlilY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gsPn83BWn9anF4f/CfjVO3CgHd2e8c9rX0PIfO8o0pc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:51"]},"IP":{"Case":"Some","Fields":["93.99.255.254"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:5e0:0:2:20c:29ff:fecf:4819]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10buc02"]},"Identity":{"Case":"Some","Fields":["By4og4VK2gxrD8FJdUTlKdn9g3M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["4xRfKEeFIbFO0F25wpV6QshnfWtQmEeCfyS2AkHntaQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:48:56"]},"IP":{"Case":"Some","Fields":["185.100.87.250"]},"OnionRouterPort":{"Case":"Some","Fields":[9443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:12::1]:9443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DarkstarTor2"]},"Identity":{"Case":"Some","Fields":["ByhxQ4kkK4o0YY81vbR3UlOXSbU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["6w32p1Q06MD7Fd4W6uS9KCTsia0i495NcebT+6bcXwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:04:31"]},"IP":{"Case":"Some","Fields":["51.89.45.83"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:126d::14]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Elenore"]},"Identity":{"Case":"Some","Fields":["BxG3IGKKhLFNQhB/uMlU72mbODM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pv8+FAazNz4ND50Y7KWXb5qKD8z+hvI5v0xZQoHzt2c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:06:14"]},"IP":{"Case":"Some","Fields":["81.16.19.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:55:d46::3]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hyrututu"]},"Identity":{"Case":"Some","Fields":["Bw8Lj9FF6+qXlA4nT6+YSoQa4TI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["a+ye8Q0ijujywp2XS4yrl0UQfadaCuNPRWBkyNIYLYQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:40:07"]},"IP":{"Case":"Some","Fields":["46.226.104.191"]},"OnionRouterPort":{"Case":"Some","Fields":[10600]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:4b98:dc0:43:f816:3eff:fef1:a10a]:10600"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["panoptykon"]},"Identity":{"Case":"Some","Fields":["BwsWRQlA8As6HIjBrXHrILbGGnI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/H9x3fh7fAkHa1843KixV6yn1qnb4i0BKqMP3DFkztM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:53"]},"IP":{"Case":"Some","Fields":["51.68.155.201"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=980"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["execs2"]},"Identity":{"Case":"Some","Fields":["BwsD62K9eal5S5A/Ojiuu6Jd3vk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ddhQQmhD/U968aIjNKHD23SdJFqT1uOPibMYpEGE27s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:21:37"]},"IP":{"Case":"Some","Fields":["45.58.156.75"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["thorgodofhunger"]},"Identity":{"Case":"Some","Fields":["BwQGL7mlpWWTYaC49CuItkGaG0Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WmDlEHk9DHY6doz38Bs3bqqefhpkyyxCQg3psMP7iFs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:52:07"]},"IP":{"Case":"Some","Fields":["94.130.10.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=99"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayonbeshaba"]},"Identity":{"Case":"Some","Fields":["BuwsFmnlqBHZZA4HztV4baUMVzc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["EIWV4hsWw02Hok3MHkGMXej3p8TIyQ7//8w/dQkdDUM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:20:22"]},"IP":{"Case":"Some","Fields":["185.220.100.245"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c0:16c:11::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=87000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["wien"]},"Identity":{"Case":"Some","Fields":["BuclJrvgQMUcWt+6oHrdmuteH6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["s/NbtqPNIlvX6UvuBjvLH+C6Y8k9zRce4NZDPnJVD+c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:44"]},"IP":{"Case":"Some","Fields":["94.23.247.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=52000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["whyza4"]},"Identity":{"Case":"Some","Fields":["BuHvQMtGNbfIJLZ1fAU09LAf4us"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JXIRnKe5GVFdOocgOiXNGzTeNoM58PgL4UIdJP1cvmI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:47:54"]},"IP":{"Case":"Some","Fields":["192.9.166.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["COSMOPOLIS"]},"Identity":{"Case":"Some","Fields":["BtD7nGhg6Nf7meoxCgFnB6+qcc4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1+ytncEpz0x8zYuG/fTyfGU5B5F9aIUAo+4l+A7K+Dg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:45:54"]},"IP":{"Case":"Some","Fields":["154.57.3.214"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=470"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["r"]},"Identity":{"Case":"Some","Fields":["Brvqpvc3WaF5XrRh050qoWjzBdE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uAHJ35O1lSd+qdk+qefYYA3CqhdlM17/T9QgZhIQm3c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:44:18"]},"IP":{"Case":"Some","Fields":["77.68.94.106"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["BqxSeAafu0rMJUh+1LeCLxwR+JU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["2idPp4KA48X3J9jLVzFhe6oGGUD4fvD2XRATOnxntkQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:26:23"]},"IP":{"Case":"Some","Fields":["95.214.53.20"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EntrecotalaPlancha"]},"Identity":{"Case":"Some","Fields":["BpAyDWVJPhglrHCI6VTm7RIFuIk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3HsX3MO1iKwVFrY3ppRbG5JOgP/x9BfDWRsVGaVjZbg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:19:35"]},"IP":{"Case":"Some","Fields":["82.130.171.95"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["paradeiser"]},"Identity":{"Case":"Some","Fields":["BoBOY4PulOg8lFPzmx5STCctbYQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["p+GpLTv5mlOMrcJXJd298FbhAxsS/d9KLhutAUhVppY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:02:26"]},"IP":{"Case":"Some","Fields":["109.70.100.7"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Psyduck"]},"Identity":{"Case":"Some","Fields":["Bm/jxOB6GOpTsoKPdT03iNWNdx0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jFNHz9/hg5PT/cVmB4SZ9fOaJ6sOuXcMVpyrQXWOOD4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:50:52"]},"IP":{"Case":"Some","Fields":["102.130.113.42"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5200"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1153"]},"Identity":{"Case":"Some","Fields":["BmzSxJPk33MAsnMer34xdDMmJZE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["x4OK+MpcgpeZpJFFRJXs08j0+Rq9X8uFv0fv3yEMrVk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:51:56"]},"IP":{"Case":"Some","Fields":["185.220.101.153"]},"OnionRouterPort":{"Case":"Some","Fields":[11153]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::153]:11153"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode3"]},"Identity":{"Case":"Some","Fields":["BmYKIDB+ImYZ7/KpM9JXnnZE34M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["lwGULQDE13LcqoeBTmFnfC+01O0xV4cw+bcK+7k09f4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:59:54"]},"IP":{"Case":"Some","Fields":["184.105.146.51"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::90]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Raptorist"]},"Identity":{"Case":"Some","Fields":["BlGGNcPMvHDDEfm830w1lrtzbv0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["y56oEcjIQcZQQScbLVtmUythaXrAv2isHUBQ1G420ao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:27:52"]},"IP":{"Case":"Some","Fields":["78.132.17.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=820"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ElectricSheep"]},"Identity":{"Case":"Some","Fields":["BlF2arJ61b96j6jzdFnPxMotI1k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aiBY2Z8aIEaw26Q/YabnnxDRMS9EpwiaPUqyKBtbi6w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:36:23"]},"IP":{"Case":"Some","Fields":["158.62.185.135"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TheYOSH"]},"Identity":{"Case":"Some","Fields":["Bk0YPTTey4T3LEM1sMJNHolGqbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S/AsGdPmbBTdVWNw0m87c02kWZ47Cm+d2v5tc5UY78w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:53:29"]},"IP":{"Case":"Some","Fields":["85.146.92.119"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:1f0a:716::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["WakNETX1"]},"Identity":{"Case":"Some","Fields":["Bkj2lGNs2LnDjSn5oCdl+X7C99E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7XjX3CU0pYQljJRo0EY75gDukatU8/pPhihs0lQ3Ckw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:01:25"]},"IP":{"Case":"Some","Fields":["185.130.47.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:e03:3:26::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["lakeshoreCrypto007"]},"Identity":{"Case":"Some","Fields":["BkWoCheQnTP6+1VI6KEPgKs45l4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oABa78kJjItr8FmXEYZC7mobF4gDw2xE2Wq4A7/S3lw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:44:12"]},"IP":{"Case":"Some","Fields":["45.41.204.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:e0c:13::7]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=440"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CloudOasis"]},"Identity":{"Case":"Some","Fields":["Bj0j7Wplzcy/iiqMwjCwnDTwH88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uC35NFshfsjpPbF8tFFl9Hboq8YDyG+C0t7ogW5b4wM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:36:37"]},"IP":{"Case":"Some","Fields":["104.200.17.42"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c00::f03c:91ff:fee9:6481]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=230"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bgbaeveRelay"]},"Identity":{"Case":"Some","Fields":["BiBACCTmQSKq7NJxwbanD0GDnMA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["LL6UJgHqkYymxSkaTzMtQE7bRSC4P+mzb8VXaI013kk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:44:01"]},"IP":{"Case":"Some","Fields":["85.191.207.22"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["loglessRelay1"]},"Identity":{"Case":"Some","Fields":["Bh4ElpMdI6gaK2hckznTaFfdD6E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3zo6qcq+wMlIY9zmWxb15+YKpEizBgr3Kmx4qHmyDVw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:39"]},"IP":{"Case":"Some","Fields":["163.172.184.32"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["xbHnAiyz"]},"Identity":{"Case":"Some","Fields":["BhdhnBuqJhCr5s54wl926l9VChw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8k1jxPGbQO/nUJT0jJ5d60BZ4cGtFyz48yJsjLYX+z4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:10:03"]},"IP":{"Case":"Some","Fields":["178.17.171.109"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:1dc0:caff:28::cb68]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1177"]},"Identity":{"Case":"Some","Fields":["BgOlCfceeGuuBpS6NdA7PjklW0k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCcbbKiBSMXeGxz/aObvUS+qmms91GSouiuGl9NcfOc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:58"]},"IP":{"Case":"Some","Fields":["185.220.101.177"]},"OnionRouterPort":{"Case":"Some","Fields":[11177]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::177]:11177"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l1st3n"]},"Identity":{"Case":"Some","Fields":["Bf/OkYlNpqdM85wMY08ynL8JQj0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SNNlrkWjUwnd2nkAcoLdB22PUPR53YFGdNuFCiUHOMM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:10:10"]},"IP":{"Case":"Some","Fields":["135.125.250.251"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:700:62bd::7465:a380]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HelpCensoredOnes"]},"Identity":{"Case":"Some","Fields":["Bf+jnXHaEW92aepO5ToLrqMVun8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["odxVOYQCd982oeZ3A0e8r68pYV0EsLLCqIRN/LJhmpo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:05:55"]},"IP":{"Case":"Some","Fields":["85.93.218.204"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeUyghur"]},"Identity":{"Case":"Some","Fields":["BfUGKUMFRkbMemVTLOUlmAUmKPo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3fGCc8jBi/+IRWgFRy8wpAHKKxTq3Jgo3tAmpNg9RBE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:02:10"]},"IP":{"Case":"Some","Fields":["163.172.211.16"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Taco"]},"Identity":{"Case":"Some","Fields":["Bd27dKq28Z4AMYhwKx5U8jA10GQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UqDvMR/IXID/Lo3tWX3dDYIHYCK3LYGZ9tVK32aMC6M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:56:19"]},"IP":{"Case":"Some","Fields":["37.48.120.47"]},"OnionRouterPort":{"Case":"Some","Fields":[110]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=210"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["madblock"]},"Identity":{"Case":"Some","Fields":["BdAdJDu3ZGi4BnDM+PB/XpKWc20"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["H+27rlkiPT0BJvqJLFpFhQfviIUg+nqnnQLpGhL1yMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:12:44"]},"IP":{"Case":"Some","Fields":["94.199.217.82"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=640"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["electroncash"]},"Identity":{"Case":"Some","Fields":["BcYhtE72gziJrnt+KgtHZWnEfjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["aYy/ILJCsGMRkI68zboBYMxzJWhySWRVfmL5ZF1TO/0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:55:20"]},"IP":{"Case":"Some","Fields":["193.135.10.219"]},"OnionRouterPort":{"Case":"Some","Fields":[59999]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0a:51c0:0:136::2]:59999"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["h3u60M7iPf"]},"Identity":{"Case":"Some","Fields":["BcRtFVSVkWohAhMAa2TMmfuQPNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JiyJE1ktJuTb3/gdRBkOyn+fYLY6l+wHBV885DTPj6U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:27:33"]},"IP":{"Case":"Some","Fields":["85.212.98.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORtuga"]},"Identity":{"Case":"Some","Fields":["BcMsXuFEVODEzYHa4PPcMvcp2ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OAK5yI3p9PAaCkv94F6XNVsEctPBswmsrMCakWC9O6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:54:13"]},"IP":{"Case":"Some","Fields":["144.76.86.5"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:192:1318::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=85000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ranchiJH"]},"Identity":{"Case":"Some","Fields":["BcKe8BLyChUrBgVzhtWoskUwnQ8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["BPW/l+6TsuQ8VZ88SYgoG+FN1F+dK4qVI2bS8M2D2sQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:58:43"]},"IP":{"Case":"Some","Fields":["129.154.227.10"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2100"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["sonolbellsan"]},"Identity":{"Case":"Some","Fields":["BbFCq0/LwBSCucj2WIsiHC4ZPu8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["S7EjGeuuDcZDKP+8PxssaCVbL0lgNxtJCHAp9nffpRo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:15:23"]},"IP":{"Case":"Some","Fields":["121.50.43.135"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["relayon1149"]},"Identity":{"Case":"Some","Fields":["BZhR5BB25HyLORKSvw5zvhYA+80"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["FGujj8lVa2TQiBW8V2evfMRMgK/UpKQONqZ6BNPUB3U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:32:16"]},"IP":{"Case":"Some","Fields":["185.220.101.149"]},"OnionRouterPort":{"Case":"Some","Fields":[11149]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:1::149]:11149"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myNiceRelay938635"]},"Identity":{"Case":"Some","Fields":["BZOhGlwQo/o9xpxyVqgY0pSWHJg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5hPLZpzUhloaNCsqi5FL8fCk1eSMS9T/7O9r0erBY0Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:35:52"]},"IP":{"Case":"Some","Fields":["188.154.144.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9847]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=630"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["BWgal2eDTZ7am9/k4Vob1zxP388"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ayw1A8dHxV52BG2DWPP47u6H8G1YIjb1MUcqtfEq1uI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:02:42"]},"IP":{"Case":"Some","Fields":["109.236.83.11"]},"OnionRouterPort":{"Case":"Some","Fields":[46810]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tor4"]},"Identity":{"Case":"Some","Fields":["BVurwJajb0H82hngiFn7HDSrWlo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["O3/bTUDHpK5Owh+7gWPumP3vPLfzc6f9aHCx79Ta2hQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:25:29"]},"IP":{"Case":"Some","Fields":["193.56.240.73"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["BVeRDYFy5COnmE8UhEMpLpUkcRs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TtOkqNb0uQPTGyHp42CFxyrCA+0JSNAa2i0wwrO1mIs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:29:15"]},"IP":{"Case":"Some","Fields":["2.58.56.101"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=50000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KatyPerry"]},"Identity":{"Case":"Some","Fields":["BVMOdR6A4RcS9726B3ZZsvBEfIQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Ft1Ri6h7s4GsCWyEUHu0cQ5ep3XDpCiISupOUT+DbOo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:00:10"]},"IP":{"Case":"Some","Fields":["174.53.167.73"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3900"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["KubaJaKubikula"]},"Identity":{"Case":"Some","Fields":["BVLbSvovKA2iGPzOacSd4LVsDek"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3odmqyP0JLP7ZIctpM0/i3IOp2JaC8fDb8oG5vXI0gw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:28:26"]},"IP":{"Case":"Some","Fields":["85.4.8.111"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a02:1210:4ea8:200:6d4:c4ff:fe4f:354b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=620"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["RelayChu"]},"Identity":{"Case":"Some","Fields":["BUr1rl2kqguB1xVVQq8gQlLLbWE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Uj4BOZ541IjlFFfiN27y5AsH3gEKyVUSTmJEhbpYaiM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:01:31"]},"IP":{"Case":"Some","Fields":["150.230.20.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2603:c022:c002:b0e:f620:461d:1cc1:fa75]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Mesolvarde"]},"Identity":{"Case":"Some","Fields":["BUddlGt0jhIE9NmqRABFddsqPKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yfpe7+wNN5XWbxmEuUt8v6B/ZiBtjnUcxn/EcmaU+E8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:34"]},"IP":{"Case":"Some","Fields":["80.13.139.249"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:cb08:8e80:b900:54c5:dbff:fe01:840]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["captains1"]},"Identity":{"Case":"Some","Fields":["BUHOni3ajAsdmI+2QNZZFrBoPDU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TffB9tuTEs4GcVSgDsyn+ozuPsXaATDaJHM5ClpKkY8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:35:00"]},"IP":{"Case":"Some","Fields":["45.58.152.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["gh0stx74"]},"Identity":{"Case":"Some","Fields":["BUAq7HOFVMUwj7B8polh1TJtXUo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3yN+9K8IQPwlLVvGi9GRftxH7pzN8TcHKKMyxONmrR4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:00"]},"IP":{"Case":"Some","Fields":["51.75.65.102"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:701:1100::291b]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mevPLXicebeer01"]},"Identity":{"Case":"Some","Fields":["BR0npO/igy1cnf5c9Y8kSKBbSJo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["X3FIra7IDlA9THrldBOGfKNENO37nv1rCvQV3lqpLtk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:42"]},"IP":{"Case":"Some","Fields":["95.214.54.97"]},"OnionRouterPort":{"Case":"Some","Fields":[5118]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:cfc0:8000:7::5fd6:365e]:5118"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["icecitadel"]},"Identity":{"Case":"Some","Fields":["BRvubZ3qPC6fIDwfaNaDzNbyrEA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8dRjZDh4sGJZp04p6JOx2imBF6Uif+QcA9INGhrzqSk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:47:06"]},"IP":{"Case":"Some","Fields":["54.36.174.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=83"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["AccessNow007"]},"Identity":{"Case":"Some","Fields":["BRYIXWysQO1M3O/fxcz2sA3mHe0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["SEJDEvlufRmVKVWhTZN12sYbTEL9XBCN74+1a1Zng9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:12:08"]},"IP":{"Case":"Some","Fields":["185.195.71.9"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ADeafMute"]},"Identity":{"Case":"Some","Fields":["BQ5gebafb58tFX867M/QEblm/z8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oGTPpiWA6q/OUo8ljF4naD8pSIZOJ3XN0YmoFrHdt64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:35:29"]},"IP":{"Case":"Some","Fields":["89.36.78.165"]},"OnionRouterPort":{"Case":"Some","Fields":[54939]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["adhoczone"]},"Identity":{"Case":"Some","Fields":["BQp7JsDKymrpo3teNCs9XMVseQo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Pc8up8YYCjZTgcDzGjdmI/VomE8wlH8LWYWgi0p9+hg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:46:21"]},"IP":{"Case":"Some","Fields":["185.206.146.238"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a07:5741:0:504::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["artikel10ber57"]},"Identity":{"Case":"Some","Fields":["BQoSRe7Ha3Q4M3uq8Z9KsGZrN18"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["b9qFEjAbkm/kDxmsWfNe/Md8Dq35E8yNetQO6RB4jS4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:09:30"]},"IP":{"Case":"Some","Fields":["185.220.101.29"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2::29]:8443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=43000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dorinne"]},"Identity":{"Case":"Some","Fields":["BO5eGyMSfSajb3HGaBDYiwuAu5E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jnwvYUZI3sYwCBq1aRfteG2rkR8JAbeT336DtA8td6c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:24:57"]},"IP":{"Case":"Some","Fields":["91.213.233.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rofltor08"]},"Identity":{"Case":"Some","Fields":["BOO1kl619mxuyBCj13AuDKP51ec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["noAvgw6wqfVhGKYns2Ic1PGPH4xzlo+QNG21PYhggWQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:06:52"]},"IP":{"Case":"Some","Fields":["95.216.136.46"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:c010:2e::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=30000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["takei"]},"Identity":{"Case":"Some","Fields":["BN/gR6zfemYgrKeC+vxe8a5/R1Q"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/6ClZTe3zZ2KMHExHEV8sKPArrbyvZjdtPancaSU/UY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:57:05"]},"IP":{"Case":"Some","Fields":["46.22.212.230"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=33000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange006us2"]},"Identity":{"Case":"Some","Fields":["BNnOqNd4q6EwsBT3WMK8rdMdoF4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["TIgLB8LdaUZV7XxORlunlIcTvnHWBY/tldOogFc3tfg"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:41:32"]},"IP":{"Case":"Some","Fields":["207.244.238.230"]},"OnionRouterPort":{"Case":"Some","Fields":[9201]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:a140:2050:8019::1]:9201"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["MitExtraSwibelePls"]},"Identity":{"Case":"Some","Fields":["BNdF8xvrQH0F6/eziA/MsktWYf8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zm2w3sewFzz9k4UkhtcWshyG+IvEvxYQBL0n0FlmY1U"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:57:58"]},"IP":{"Case":"Some","Fields":["91.132.145.129"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["aaron0x10c"]},"Identity":{"Case":"Some","Fields":["BMNGi+JHQDR8vMAFNMlA28vKvII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ONQfF/gh/hQ4+e4jcuu0U46pKz0LFIvPq4XAjcvt7/k"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:03:12"]},"IP":{"Case":"Some","Fields":["51.158.187.110"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1824:421::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=26000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["myOtherRelay"]},"Identity":{"Case":"Some","Fields":["BK5d1jA8UhavCh6cY5xLMjOQZNU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DW/u/Q4qUO3qpK6CjrVuZgbFuOaypWeTogDAe6SZg+g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:22:07"]},"IP":{"Case":"Some","Fields":["93.218.178.77"]},"OnionRouterPort":{"Case":"Some","Fields":[9006]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2400"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["darknebula"]},"Identity":{"Case":"Some","Fields":["BKKKYvJ9nEpg+e0MQmTpi5iMZaM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7lxZxOl4gEO0ib/X8GWy2kgt4YSn7NRntubwGUdpLgc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:22:53"]},"IP":{"Case":"Some","Fields":["163.172.169.253"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2001:bc8:644:c15::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["reallyniceplace"]},"Identity":{"Case":"Some","Fields":["BJhSoQgFg16assVR1sQ4vm3oskw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/0KvZd9xylKyJVI4h3B3JEeT1D3Z4eWzpFpFYpr1czU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:31:43"]},"IP":{"Case":"Some","Fields":["193.218.118.180"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:e586:f:f::180]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9600"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HackerBobRelay"]},"Identity":{"Case":"Some","Fields":["BJcAuJ2QSGaC9PlrmMWJ8YcxJn0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["sTo5UvI3aXCIVCvuilBQA71fAyLYrGNslIyqAT3hcbo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:18:53"]},"IP":{"Case":"Some","Fields":["85.214.49.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Scarab"]},"Identity":{"Case":"Some","Fields":["BJKYmGR3qJQHqnAxFkXQSX8eD+E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8TUJVbPIxj8m6hZIq52Vrn7QxViYK6sx2LWz7fFHr64"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:09:40"]},"IP":{"Case":"Some","Fields":["146.19.213.39"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:678:6d4:9114::11c]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vhome"]},"Identity":{"Case":"Some","Fields":["BIzNAQGTBulehX97vJrjLSW1OKg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0bNJihKtR1JVFYsOlzpnbrmzRTEhwEONgU7p1bNTJYw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:34:50"]},"IP":{"Case":"Some","Fields":["92.205.62.207"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=190"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hviv117"]},"Identity":{"Case":"Some","Fields":["BIUCego0nUVNl49sHOzdKeoXdpo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oA5VCETD47NO8BtWexn7bF8rl8XCc5tJmAsot+0g7ZQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:51"]},"IP":{"Case":"Some","Fields":["192.42.116.17"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:67c:6ec:203:218:33ff:fe44:5517]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["BHSc1qa+HAsU7mPf0PE+657+6Ks"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rmIh0noDz/Qj5gQxjUu+b+sZhKJSgBuCxpj2D7zYdAM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:21"]},"IP":{"Case":"Some","Fields":["185.220.101.51"]},"OnionRouterPort":{"Case":"Some","Fields":[10051]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::51]:10051"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zwiebelmett"]},"Identity":{"Case":"Some","Fields":["BG8tWahfrmk2dqh1M3F8V0NiYcI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Yu3IDyYNynBTxh2h9ZaxQBlbmPV2wv8cNh0+p8iuwdk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:48:39"]},"IP":{"Case":"Some","Fields":["95.217.62.4"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LAGARGOUILLEVIF"]},"Identity":{"Case":"Some","Fields":["BGooQaUm49VpDtM9Vo6YkcOVA9g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Cib+rZ+GbsVdjeomwcdd9DFO0Q+qK6zdNqLT6wquQI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:07:49"]},"IP":{"Case":"Some","Fields":["190.211.254.210"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bauruine"]},"Identity":{"Case":"Some","Fields":["BFu8qWAqIsESmE8lADzUiXz/ueU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Skdh5QaJJIqG1JPWsv3geuVQqc0CC1Qa3ArWPhis85w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:36:36"]},"IP":{"Case":"Some","Fields":["185.229.90.81"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1680:101:43f::1]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=58000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["vovis"]},"Identity":{"Case":"Some","Fields":["BEbHXnEF2FyRKdg3fswT0FEEpH8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UXLH/WTGyR10LZGrBl5234wWbUUWSJ1UeTPk38JMmv4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:39:31"]},"IP":{"Case":"Some","Fields":["201.80.78.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=72"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unnamed"]},"Identity":{"Case":"Some","Fields":["BDv8ouxm7+/rT1yGqkdjn9bZHck"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qQ1UJbX/1FvQeBf7mP0VKxh9Ui0EqWfPVsm4cTvKmRU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:40:45"]},"IP":{"Case":"Some","Fields":["27.133.132.212"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["johnsrelay"]},"Identity":{"Case":"Some","Fields":["BDmrc7srhzD8sVsYJSko/Awu35E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["zFOUg+gus98d5O9hnXlWckqy4Bi8TwZ5tVJNxcwoQkY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:20:13"]},"IP":{"Case":"Some","Fields":["95.216.22.87"]},"OnionRouterPort":{"Case":"Some","Fields":[4080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:16a8::2]:4080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=75000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arbertDelroth"]},"Identity":{"Case":"Some","Fields":["BDK+6Cn8sVXOks9Bi3KA+YSeEtA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZpxzhYG4Lse/eq6+EHhrybYB/m6C70FPP4vKrtz88G8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T22:55:24"]},"IP":{"Case":"Some","Fields":["77.109.152.11"]},"OnionRouterPort":{"Case":"Some","Fields":[143]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:168:6426::11]:143"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=100000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ecuasterces"]},"Identity":{"Case":"Some","Fields":["BCvN8tNteu4HDghtrUtX8nsvEUM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ynyY+JbF0fuZz/QF66sQYPLvsn+kTOmI4h24qGgMTjI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:04:57"]},"IP":{"Case":"Some","Fields":["66.175.235.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["QuintexAirVPN26"]},"Identity":{"Case":"Some","Fields":["BBZGZAqzBup0sAGWboYWmwTMiNI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jCmRdlneNaotxcfDXulc3eZXTq6bw22v7ePYqap0nwE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:37:30"]},"IP":{"Case":"Some","Fields":["199.249.230.79"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::ffff:c759:e64f]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["EntitaetNull"]},"Identity":{"Case":"Some","Fields":["BBFTINEeJYPsP3+UStLUGfm4QQI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ek7gFOPs83jKtWvDPlnWqTkqqlE2fPGmj5uyDhYWfvs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:50:18"]},"IP":{"Case":"Some","Fields":["85.214.156.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["BA9e3m+0Zx5O4Szy3w+4IVHcIls"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UJRrp1Vpj2K9CpekXX0SBr97qdTtOsF/IHV3NnLGr6Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:13:32"]},"IP":{"Case":"Some","Fields":["23.128.248.83"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::83]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=810"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["stars1"]},"Identity":{"Case":"Some","Fields":["BAlgXoNDVip5D/6EbLO9fARCn3A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3kwRu347R08zVokqn2uw6XUCI/mXNGVbHdMHz7oc/lE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:47:15"]},"IP":{"Case":"Some","Fields":["158.69.204.36"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8500"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["FreeMirrorOrgIL"]},"Identity":{"Case":"Some","Fields":["A/jHfcBaogKwYipvpEovopqLU0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xMyddy1PfBc/XElZjQ3e9MSPPWjOi3iRedhhXWhpotM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:25:40"]},"IP":{"Case":"Some","Fields":["109.207.77.145"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=520"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shockrealm"]},"Identity":{"Case":"Some","Fields":["A+593ZMdkrtXuBswOK58QKCKsjc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1JNJfmNF0QGNPqHJ9bbIveio+yAh5nhKy7FvlhwlPL4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:55:09"]},"IP":{"Case":"Some","Fields":["123.30.128.138"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1300"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["4pyro2eu3org0"]},"Identity":{"Case":"Some","Fields":["A+n35mnI+RHF7sPsCUUzFR+FdCA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["nxu7If3EAok8CnTgDaRVeKDSKJlKON67xOQlTjbq+Ms"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:00:02"]},"IP":{"Case":"Some","Fields":["217.155.40.118"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2a02:8010:60a1:2013::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=840"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Wildtwister"]},"Identity":{"Case":"Some","Fields":["A+EHo2Y+kSZk9Kk03/RRJiwhg1c"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CclfjExHhqmEzLBKDaI3DzjYnv4piticXM4VfuBGbhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:54:30"]},"IP":{"Case":"Some","Fields":["94.100.6.72"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=260"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["itzme"]},"Identity":{"Case":"Some","Fields":["A9og/XHO0YjIt2UugZQcUGck26Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["q8HljNSWyNQ62SnKdhg3B7LEhPI4FnZ5ItGmjnwGDNM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:01:47"]},"IP":{"Case":"Some","Fields":["198.74.57.57"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["blackfox"]},"Identity":{"Case":"Some","Fields":["A9HvPvK+UUUVDFisxyUZ3YYOYbo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bixn5ksZnhWLNURL46DmL9m/mg3ULwBxqXR/HYy7JjM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:18:20"]},"IP":{"Case":"Some","Fields":["136.243.3.194"]},"OnionRouterPort":{"Case":"Some","Fields":[8000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:211:1d41::2]:8000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=66000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["NoWarinUkraineNow5"]},"Identity":{"Case":"Some","Fields":["A8woMv7V46pHHMOHQzi5icpFlrY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["hticnoAP6peOE6vbIOnIOMCbaAy4o5PQBoLDUju5FlQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:13:32"]},"IP":{"Case":"Some","Fields":["164.132.207.62"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["server001"]},"Identity":{"Case":"Some","Fields":["A8eUQBqS8vAzrV37L8AF1EWRBlQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zy7xUFLB3EueYQiKHzUbwwpKxjWRQHPpu1upTg+KqhU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:27:03"]},"IP":{"Case":"Some","Fields":["185.163.45.212"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Ichotolot61"]},"Identity":{"Case":"Some","Fields":["A8MGnoFOKW6xh3brYbHst1Ttif4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["c4pbqnXwbr4c8ziHWeNgG+5TJMicW3+Hnoy6a2nO9cM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:57"]},"IP":{"Case":"Some","Fields":["81.7.10.193"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a02:180:6:1::2f16]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["929oi1u23jd987j"]},"Identity":{"Case":"Some","Fields":["A75z5YH5nv/xmrWC7wx+jmUxzto"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["COIJVhKCSKRfKl8QpHnQbdKzaVBBATI/kTrUc9YP+d4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:46:11"]},"IP":{"Case":"Some","Fields":["85.215.91.150"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=13000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Totonicapanp6"]},"Identity":{"Case":"Some","Fields":["A71WtQcvsH0rTXni+wQ2bUFe8+w"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XSTfU9OuIDJ2Hi+7PsczZ4EPYQqirgGYBEB1qNtYRhQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:01:03"]},"IP":{"Case":"Some","Fields":["163.172.76.56"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["snakeskin"]},"Identity":{"Case":"Some","Fields":["A7qsh1YOhbKCqU+mkSjgBDhmNRE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dPDPb4bJwxBorENMLzWyMzUV/j66pKBIJIBSsuAcuBI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:13:36"]},"IP":{"Case":"Some","Fields":["46.148.26.44"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=11000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TLCOnion"]},"Identity":{"Case":"Some","Fields":["A6M8NFT8D5rGlm8S+khpmfWiKJY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["B+oaXUqv2VL3mnX/qjlrz9oNeOZb3tJ+ctTBfv1HjQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:17:06"]},"IP":{"Case":"Some","Fields":["96.66.15.152"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=380"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["psychopomp7"]},"Identity":{"Case":"Some","Fields":["A59Mvf99B/xcgYitwHP4Yyyclwg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DmFEuaSfA2tuoDIKWCQWI4/1dDmX2n/B5W0+vQPePws"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:37:51"]},"IP":{"Case":"Some","Fields":["185.220.103.114"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BoomStick"]},"Identity":{"Case":"Some","Fields":["A5o4P4zluY0ahNKDjSSTBlfkcuA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["kFL++QDaSAVesoux6dkRm78MsHL0aGdVK3pOH3KzKoQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:30:40"]},"IP":{"Case":"Some","Fields":["45.138.228.251"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a10:3781:15ed::2003]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=61000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ry4an"]},"Identity":{"Case":"Some","Fields":["A5ADwyDZmA4KdA8QehqcE8mcX+M"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["fuUBzU80C9vD1GcQ4RwiXM0rQDFup6W/I+/fMVCWERI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:07:43"]},"IP":{"Case":"Some","Fields":["45.79.159.52"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2600:3c03::f03c:91ff:fe8d:a3a]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=480"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["turnt"]},"Identity":{"Case":"Some","Fields":["A4ww0q0FMUfJHvsSkVJ+1iHX0bE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GatZY6s1X8s1qUtlcB0N/YYQpLx6mCBJ1EwPqrGInsI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:24:43"]},"IP":{"Case":"Some","Fields":["82.221.131.71"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8100"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["SLOG"]},"Identity":{"Case":"Some","Fields":["A3tsYNrU3zL9opv0WNXIyBaqjz4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mU4ZbMWQNeRoqtGhnQqSrgpjb51NA1oQI/e14jF6U8M"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:19"]},"IP":{"Case":"Some","Fields":["5.154.174.241"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=22000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["hong"]},"Identity":{"Case":"Some","Fields":["A3Hk7JAcT8d/6iqlvkIY8L4fbOM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uWq4UBDr5FSS72HbxCF265k/b+IBPvq30x11NBPfUxs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:43:53"]},"IP":{"Case":"Some","Fields":["209.58.180.236"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["TORKeFFORG9"]},"Identity":{"Case":"Some","Fields":["A279LmHeo9L+5ZhhukJF5N6GQRI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["PFLGNHF2omX5yksjQJMDFUkd5pNGZf8oEGqfAUq3JPk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:36:51"]},"IP":{"Case":"Some","Fields":["193.189.100.202"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0f:df00:0:255::202]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["parsel"]},"Identity":{"Case":"Some","Fields":["A24BWthNPGBWZuOjMGsePhiolII"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ATX6VpAeYJK25mHdpm80wQO1CRcohcJoEo369NrqeT4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:22:52"]},"IP":{"Case":"Some","Fields":["172.107.202.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=36000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["arrelay"]},"Identity":{"Case":"Some","Fields":["A2kSKZ6tCvbN/pIuGELDrn3e/jA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jXAT/dYwQmJJHhlOtVzEBTU/mUVNUJG5NHjXpA+52T4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:18:27"]},"IP":{"Case":"Some","Fields":["124.170.102.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=410"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quetzalcoatl"]},"Identity":{"Case":"Some","Fields":["A1+BMZXwy59Wft/fYMZ0XKNroL0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["NfiKQ65I3SLQZwS2HB8/LDh3Rdjb96I+IYb2I6vcnZc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:48"]},"IP":{"Case":"Some","Fields":["77.68.3.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:da00:1800:21d::1]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Lick"]},"Identity":{"Case":"Some","Fields":["A1YM/XWxl8f3ZuzEKb0K5mG3ujE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CetnKBfn4jmyxtbJY+0579nai6AgYR0SC9DKTbwj698"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:23:14"]},"IP":{"Case":"Some","Fields":["23.160.193.3"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fea7:10:10:8000::d]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3700"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Riley"]},"Identity":{"Case":"Some","Fields":["AxmNXoejnKorhV3rZY/fCnOktYc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["0R/GDp02mG9ZzqaxyW0YNbt9Ghjz5lyRtu3BTD7FLzY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:35:41"]},"IP":{"Case":"Some","Fields":["72.95.19.36"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GladesvilleRelay"]},"Identity":{"Case":"Some","Fields":["AumLvgsSVw5OKXTip0crKX+NmVk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OwRPZYxnMXHSMa6NZKgjkPrgCK6q8Y8gJX7hA7VEu8g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:14:53"]},"IP":{"Case":"Some","Fields":["60.242.251.188"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["oxi8xiG1eiyo"]},"Identity":{"Case":"Some","Fields":["Atgy8ALUyj0lrdosu7LQnuQaFas"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7bEzA+tf3eHEFiVmsGUxu4xPv4y86FOwToJPtnTfJyE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:21:40"]},"IP":{"Case":"Some","Fields":["209.141.37.94"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3200"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Fearless2"]},"Identity":{"Case":"Some","Fields":["AtY0rdm0FnfSg0vyxSA7aDPec4A"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["REqfy5ya26yCbSIPKK9WjVkvtw+CQcYI1HfQiGADZDk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:38:59"]},"IP":{"Case":"Some","Fields":["178.170.10.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:c70:130:1::529]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["toritdowntwo"]},"Identity":{"Case":"Some","Fields":["AtEMqmXmt/7lU0O6eJCy0bbZMTc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VSMGR+Ux4HqfQzEynTCL1rdxcsDiKH0wZKHcgmYhPQo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:54:02"]},"IP":{"Case":"Some","Fields":["159.65.89.192"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:b0c0:1:d0::e58:7001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Shado"]},"Identity":{"Case":"Some","Fields":["ArS1uS7mDVMXoNswEXVzerjxcYo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gC+G0cJdeEjJNxJLkSah30Tojm2i65cKARGfTAlAKWY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:41:08"]},"IP":{"Case":"Some","Fields":["152.70.140.84"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9400"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["onionDAOrel0aded1"]},"Identity":{"Case":"Some","Fields":["AqjMsftwmEImIxKDWW2nNKgOP28"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Zi8TTzY02+CBbThxtBxREr3068XCfyM5keSVqIAkwyA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:51:05"]},"IP":{"Case":"Some","Fields":["5.2.79.190"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1700"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Unknown"]},"Identity":{"Case":"Some","Fields":["Applvq7lZz8yrsyykj+IN9sSuiE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KjfJDxPnPptszcX8yzsQ2kCk7tgonE6LdFbAsvjGmpI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:08:21"]},"IP":{"Case":"Some","Fields":["185.130.46.153"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3400"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DataIdeas"]},"Identity":{"Case":"Some","Fields":["ApBMmuisjuuRn31cXv4ItANjyzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["vR02yAOZhZE9+YUXKnzxGhdJ577XDdWt9EZ1bqAOU24"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:57:07"]},"IP":{"Case":"Some","Fields":["23.128.248.223"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::223]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=570"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["AolaWZSmopHTk4wRQuv9O4wpZwk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["V7IYz5BDsQggP3zp6bTwB4eTHrZn7k8DLslg42yrn8s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:24:36"]},"IP":{"Case":"Some","Fields":["185.44.81.21"]},"OnionRouterPort":{"Case":"Some","Fields":[9100]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0c:8881::70b5:bcff:fece:22c1]:9100"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=18000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Digitalcourage4ipeb"]},"Identity":{"Case":"Some","Fields":["An51yS8SMa5fe9ThU2aW/jBAxGA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["DGL2tJ2LZyKATtdf5jHVg3n3wKfaBGl54qB/U+N4FMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:16:52"]},"IP":{"Case":"Some","Fields":["185.220.102.244"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c1:2::244]:993"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["zagreus"]},"Identity":{"Case":"Some","Fields":["AnQPRy0dpcG3dHXxiUD+efFa9Lg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UDqn/3JvsuusgbBsG9Bw7eDmS9plesTzCsnFxQ93W1c"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:05:40"]},"IP":{"Case":"Some","Fields":["81.169.222.158"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:238:4224:8d00:f3a9:25e6:4cb6:f3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=450"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nologcz"]},"Identity":{"Case":"Some","Fields":["Am0RMUsW/lGh7KquOIZ70LSSceg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["cxK+/CN1KBZjiqynZhaT9gOb2zJMqkGeovAF8k1gaGA"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:31:59"]},"IP":{"Case":"Some","Fields":["171.25.222.203"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:a900:ffff:1116::203]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=29000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["middleIsenguard"]},"Identity":{"Case":"Some","Fields":["AmVLi5gDd1hgzfLH9xCf9ooTSao"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["VZIVuXK0lUzZof8KTH2DIBhHxVkltvkC/nmXsY0xs1I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:51:36"]},"IP":{"Case":"Some","Fields":["79.20.11.198"]},"OnionRouterPort":{"Case":"Some","Fields":[10101]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=14000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Assange029us"]},"Identity":{"Case":"Some","Fields":["AmSPLxNccpaiex9Z0q5O7CXZqHc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bRw/FwMd3R1wTpTODBp4FaoRhB4b8kbKaFLsqja6o7Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:27:47"]},"IP":{"Case":"Some","Fields":["104.194.235.104"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3300"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["howlin"]},"Identity":{"Case":"Some","Fields":["Ali9rps1FxSwvMDavh15jWYuuog"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jYgxcUHVlfTs4w5cqjDsMVfpS/tFGJTkKg2RZu2Gdnk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:16:30"]},"IP":{"Case":"Some","Fields":["45.141.153.214"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=27000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0xdeadbeef"]},"Identity":{"Case":"Some","Fields":["AlbMf3bkYVf5VwXaxY8OPvnNFYM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["it/kBiYCzRHrk2v5k4syrs98dBklqdHQ37eNSrL9xkc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:15:38"]},"IP":{"Case":"Some","Fields":["195.90.208.228"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a00:6800:3:fa::2]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7200"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rome2"]},"Identity":{"Case":"Some","Fields":["AjV5EbiC8ldnbnWwfs//WIXks0U"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XkWiz2eeEGa5nRjAPVIe13Gs8SlGANBOtzuG9Ol+3PU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:13:33"]},"IP":{"Case":"Some","Fields":["185.146.232.243"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a06:1700:0:16b::11]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3600"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["c0der"]},"Identity":{"Case":"Some","Fields":["AjUfyI0L8G9s3lRSZWZB5hGdvX4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["dYZ0lxgIGo6XGrbEED3t8hk9bvVxyO0JfH42CloXlHU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:06:37"]},"IP":{"Case":"Some","Fields":["95.216.20.80"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f9:2a:14af::2]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=73000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["GrmmlDag"]},"Identity":{"Case":"Some","Fields":["Ah3c1of9UFt+p+ddps7w13iqB/s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qyVqiTkH+ObduIuwLHfhth4OJhcXv/N37bPRSqydXWI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:34:04"]},"IP":{"Case":"Some","Fields":["213.239.215.221"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:a0:90b0:789d:6a4:95f3:a78c]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=65000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["island"]},"Identity":{"Case":"Some","Fields":["AfwWnK9EnV5e9nUj9pNG58tqBXI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["JxaiDzFMbmZcloo7KxQNBl1Mob4VnGu2wA+EfyOq+/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:56:17"]},"IP":{"Case":"Some","Fields":["109.207.77.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4500"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dcslTorRelay"]},"Identity":{"Case":"Some","Fields":["AfuIxAYsXAAu9q02Yt1ukLi5+A0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ooVasBFwe2GMIH2pq+b6wBX4fzFmG4LZ08IHiVq7/9Q"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:26:36"]},"IP":{"Case":"Some","Fields":["87.62.98.28"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a09:5e40:3056:1a0:69eb:f035:36ab:2e]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Zinc"]},"Identity":{"Case":"Some","Fields":["Afc9vZtWwx49Oq65X4zx3rfZpy8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["UVVBpHlzx3mmy/jrohuGVICn3AuWo8J+kMWY30v/1DU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:50:09"]},"IP":{"Case":"Some","Fields":["185.184.192.252"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.14"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=140000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["yvrTorRelay2A"]},"Identity":{"Case":"Some","Fields":["Ae5HjW3zm6zc4PPemcRaew7qTCE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["bp4rtwX/sLvMrtBtPvPa/fga2twqw9Dqwb6nlhoxmkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:03:10"]},"IP":{"Case":"Some","Fields":["50.92.81.149"]},"OnionRouterPort":{"Case":"Some","Fields":[9031]},"DirectoryPort":{"Case":"Some","Fields":[9032]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=860"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StormyCloud"]},"Identity":{"Case":"Some","Fields":["AeG0tvIvR6zSC0KNnW9G5AbcKa0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["atGa4AjNLvsp7+MaOiqaj3P3TWrk2q7/UcKlTbFMAuM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:28:52"]},"IP":{"Case":"Some","Fields":["23.128.248.45"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2602:fc05::45]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Nanna"]},"Identity":{"Case":"Some","Fields":["Ac/lABQq8ZslLIswNy/LK0eQT1Y"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CWnhWDmdwJsi3PXwwY0VVLu9vIWZRQLBUj4ZsPO3tvU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T12:19:38"]},"IP":{"Case":"Some","Fields":["83.137.158.8"]},"OnionRouterPort":{"Case":"Some","Fields":[9011]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=31000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Hydra45"]},"Identity":{"Case":"Some","Fields":["Ac/MJUUjTu5SPTPtJe8eeYB6GKc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["CfIubkeY6XQ5ifLcufSyAwT9x3HR4I0/ywSHJOYquMc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:19"]},"IP":{"Case":"Some","Fields":["213.164.205.169"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=4300"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Overjump"]},"Identity":{"Case":"Some","Fields":["AcsuKXqPWG27z5jwKKPRpJsKt7o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZoYgoXccKEgujjnGuxgL1Yb7b1PzJ4mOBBopAEUeOmo"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:56:28"]},"IP":{"Case":"Some","Fields":["103.228.53.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=46"]},"PortPolicy":null,"Flags":["Exit","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["root1Moh"]},"Identity":{"Case":"Some","Fields":["AbjxjBHOKHfoGQ+iyBgIzQh1FcA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["/kNzFPLt9NhKkNTqR5Iqt6SwjmmpKXORFPOxRod7BFY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:45:14"]},"IP":{"Case":"Some","Fields":["89.58.34.53"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a03:4000:64:fe8:c853:14ff:fe86:7a3d]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["rixtyminutes"]},"Identity":{"Case":"Some","Fields":["Aa4t4xQnbIL8zDYDocLzI45lRMk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HvvVbTcZBIjUeas5+N5JhB/pVIC9Q3UtUHVf2m5R4Es"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:24:09"]},"IP":{"Case":"Some","Fields":["149.56.233.142"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=42000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["PyotrTorpotkinTwo"]},"Identity":{"Case":"Some","Fields":["AZ/rIs4Ey9BIm38kvgOFGLZPoiM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["qgfTQGWTY2DfOI0azDm+FOovWR5/6GMOlQGtBFVnkk0"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:40:02"]},"IP":{"Case":"Some","Fields":["142.44.243.133"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2607:5300:201:3100::3e59]:9002"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LeftBehind1"]},"Identity":{"Case":"Some","Fields":["AZ4g41JIG9RaPOfWaRoQ+1MYUPs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xlQJ5S4BbSis+bK8zms5ASQDDw2udajbZ0VCvNEY3wY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:48:45"]},"IP":{"Case":"Some","Fields":["111.233.139.41"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.6"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=220"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nicknamesomething"]},"Identity":{"Case":"Some","Fields":["AYpdmyM+/3D7rbLnW1SoPy6dNA0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["wwv8qwFLeLLILeZsFHfmqaoJCzvyk8i8w9D9SU4P9Ag"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:46:37"]},"IP":{"Case":"Some","Fields":["87.151.169.210"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[8080]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["prsv"]},"Identity":{"Case":"Some","Fields":["AX56Nk/sTm51Lemn1sUhKSl/IFs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["ZNpp2I6fqunqhH5hHPBDlBk1xTwdH6wd3a7Aeh1CAUw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T01:20:13"]},"IP":{"Case":"Some","Fields":["194.32.107.172"]},"OnionRouterPort":{"Case":"Some","Fields":[9000]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:94e0:ffff:194:32:107:0:172]:9000"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raptor"]},"Identity":{"Case":"Some","Fields":["AX2Xuw8oHDSXIJHAeSvycZi2dOU"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["jx5k38hHtr2gvcsO+aPVgHW1JrIXs+4v/D6HBMGl500"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:03:43"]},"IP":{"Case":"Some","Fields":["135.23.97.216"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=370"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Bigdaddy"]},"Identity":{"Case":"Some","Fields":["AXsIzBY0JM1qukrdQEK0F01JRzI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mWMa2FBcFqlZTSFebQWT2gzkwmsLJLaJR5OiqgrWsV8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:43:01"]},"IP":{"Case":"Some","Fields":["185.21.217.32"]},"OnionRouterPort":{"Case":"Some","Fields":[10042]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=69000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mikrogravitation01"]},"Identity":{"Case":"Some","Fields":["AXWbql3l+hnjb62vfZvGTBVXOrw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["gbVbPNVcpoQp/0TLdCydZLZH//nhHJlXo4t2h20bfPY"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:15"]},"IP":{"Case":"Some","Fields":["45.14.233.149"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0e:1580:1000::2dff:fe0e:e995]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=35000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["nyatorexitno"]},"Identity":{"Case":"Some","Fields":["AXNC4Ze4xXWlxTAc0Ah4Ddd1KGM"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3nbX+vSCZ02U6nR6ApG0uzMMtKDUao4B5hgCdnFGGr8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:46:09"]},"IP":{"Case":"Some","Fields":["185.125.168.28"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=81000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["LastResort"]},"Identity":{"Case":"Some","Fields":["AXIqYNwOqmTXkFrWCjJCxgkec9E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["WN0dKq3ERHzHuM5PZEJFkqFNiT2eMapkQq0fNvcrXJE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:22:28"]},"IP":{"Case":"Some","Fields":["185.112.146.155"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=160"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["ForetNoire"]},"Identity":{"Case":"Some","Fields":["AW744ivuqB8wU1l07DG2lDaXyos"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["uVsBxELbz1gTxvymlSyZfi0i98MzGRG/s9WOEi+2Tz8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:47:59"]},"IP":{"Case":"Some","Fields":["5.135.182.131"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:41d0:8:bd83::1]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1000"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["d0dak"]},"Identity":{"Case":"Some","Fields":["AWCT7kuumvRz/AyBGp0Q/aqco0s"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1sCWdRJVuQW0nGlTqGuJYCsL9TV8RCCd5Mhjc7capkI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:01:54"]},"IP":{"Case":"Some","Fields":["62.65.106.163"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=550"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["raspitor"]},"Identity":{"Case":"Some","Fields":["AV/TpcOriWJqK5jG+8g0rWfWF0I"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Cf5rA+KvPQTqXUHdRJzJpnY1ZFDmYwZBcNQNgbYF/0I"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:29:00"]},"IP":{"Case":"Some","Fields":["86.148.202.76"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Running","Valid"]},{"NickName":{"Case":"Some","Fields":["marsmellow"]},"Identity":{"Case":"Some","Fields":["AU7iS8vaFg8jayVHpGObJ+MDoec"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5xBsTrRnleloDLd7Nug8PwgIQ+xuB25FyJPNNSS/vIU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:37:10"]},"IP":{"Case":"Some","Fields":["20.224.145.181"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1"]},"PortPolicy":null,"Flags":["Running","Valid"]},{"NickName":{"Case":"Some","Fields":["insist"]},"Identity":{"Case":"Some","Fields":["AUvQljY3O3jMKLpw42xxkOPeI2o"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7OBReJX/TYbMxDK4jJsb+Ysraio/AVruXwODjkJ/3Gc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:07:12"]},"IP":{"Case":"Some","Fields":["5.57.243.47"]},"OnionRouterPort":{"Case":"Some","Fields":[993]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=21000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["b0rken"]},"Identity":{"Case":"Some","Fields":["ATq67Y9M22d74LUhLkslg7hgNe4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["5Z/vH+c4ovLLTN+iRujyhilXo5n7SuWFQFN7VUc19Fc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:54"]},"IP":{"Case":"Some","Fields":["45.129.182.225"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:4000:47:631:a437:b1ff:fe5c:74a2]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["bang1"]},"Identity":{"Case":"Some","Fields":["ATZpawJaxVA4R9c2/p89ZesnpZY"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["oY48x+Ov1gm7TYm01F91Pnl9aOrN25g2MGGio6zprdQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:05:47"]},"IP":{"Case":"Some","Fields":["134.209.159.74"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2400:6180:100:d0::8bb:6001]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["disobey"]},"Identity":{"Case":"Some","Fields":["ASpnaF8D1msj1hftg/hCWWbp1Ss"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["KQHgrg+drJ239mYxDvTJdYDU3PHPEpfvEEs0hyPdn90"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:53:47"]},"IP":{"Case":"Some","Fields":["172.97.177.255"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=1100"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["securebit"]},"Identity":{"Case":"Some","Fields":["ARyLfeyAm7L6iiI9cQEFjJ9wK/E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3q8kccE4ku8pURNsMAkTKNWW/ou2KND8WRsX70GhBao"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:06:30"]},"IP":{"Case":"Some","Fields":["194.50.94.247"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[9030]},"Address":{"Case":"Some","Fields":["[2a09:4c0:300:c232::5ef7]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=20000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["motauri"]},"Identity":{"Case":"Some","Fields":["ARgbMb5YYMfWbaiPiK1SLAZHD9k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["GH7KuIFUknybRtJbbttM5JB+aWEUMJaoQUipNwtWDtc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T07:07:09"]},"IP":{"Case":"Some","Fields":["95.143.193.125"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=390"]},"PortPolicy":null,"Flags":["Exit","Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["DigiGesTor1e1"]},"Identity":{"Case":"Some","Fields":["ARG6m2BGaeY2/9W1A/OCpLetboA"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["e5SN4aVELlO6sPZtOlEofsDq5aw/5jVTwXzaxoq+e58"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T03:34:44"]},"IP":{"Case":"Some","Fields":["185.195.71.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=47000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex85"]},"Identity":{"Case":"Some","Fields":["AOs6Esd+cPGfZqe70JTWKWmvNQ0"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["HdZIDtURTkLpnH/MrPTsJtWdEDp6dyTDqrZyKlrZLKE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:26:37"]},"IP":{"Case":"Some","Fields":["199.249.230.174"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[80]},"Address":{"Case":"Some","Fields":["[2620:7:6001::174]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.5.9"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dragonhoard"]},"Identity":{"Case":"Some","Fields":["AOFknmn/kdfwHnSl5i7xT32ZFeQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["tyJRBzv2zgwC+6Ksy+yL/LViNSCTaTmQBrI+IS4508g"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:33:08"]},"IP":{"Case":"Some","Fields":["116.203.50.182"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a01:4f8:1c1c:b16b::1]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=15000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex55"]},"Identity":{"Case":"Some","Fields":["ANyurj5UwygJ5/fMS/Km/Gj8VS8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["mmCZFnpwqQSK58aUJvFyJ+GiWc8rgCP7F10PBnO2ltI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T15:15:14"]},"IP":{"Case":"Some","Fields":["199.249.230.144"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::144]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=19000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["tried"]},"Identity":{"Case":"Some","Fields":["ANLOPCFT6gl4byEF8msTjPdZQk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["XUkbIT1+jreXrOgBhtW3JEKUcCH/stKd9jdhprOWgNU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T08:26:18"]},"IP":{"Case":"Some","Fields":["107.155.81.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=38000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["effiorg1984"]},"Identity":{"Case":"Some","Fields":["AMzmqE5tY6GkLhBYObyO1dSxZmk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rWkL3SYg9eFLVfxfmf2KPctal9hr3PtL3xz+3oDip/w"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:10:12"]},"IP":{"Case":"Some","Fields":["89.236.112.100"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7900"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["l25"]},"Identity":{"Case":"Some","Fields":["AMS5E3SseQyy84ZdLzb2LfJ/Cg8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8mqti/QHb3euXKCSK589uu43CqvC6xqqpLbpRYRKNCI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:27:57"]},"IP":{"Case":"Some","Fields":["185.66.141.125"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=130"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["roterechtehand"]},"Identity":{"Case":"Some","Fields":["ALwRxEi3DILGEA9bE2LflQpgnwo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8nbqM1iUKzTLwXn3jsyVtQXo4p5/jhgj3vlvF9jtkF8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:15:58"]},"IP":{"Case":"Some","Fields":["185.183.194.94"]},"OnionRouterPort":{"Case":"Some","Fields":[4569]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=8900"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mharelay"]},"Identity":{"Case":"Some","Fields":["ALV79hT37TBRBztdRSb/CyOvIXs"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["g/ASbtLr2fVMin58JmdnqV0mwc3yyMOh2eKwzo5C91Y"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:43:29"]},"IP":{"Case":"Some","Fields":["158.174.145.139"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:9b1:403c::1337]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=37000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["HEExitNode1"]},"Identity":{"Case":"Some","Fields":["AK5iWCxan+62r4LGSuAi16hLULI"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n2tR2VUTDdV1QRjDMAU53v3dtYIRxyCMLicwiKaDvMw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T00:36:16"]},"IP":{"Case":"Some","Fields":["184.105.146.50"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:470:13f::88]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["0x616e6f6e"]},"Identity":{"Case":"Some","Fields":["AJhfcQByeAxQ5ZEWsDKLjSoIU3g"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["8/RH5dbWDtVBDuDKnac7CJqU/P0mpPh+BriZPa/k7R8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-19T23:32:48"]},"IP":{"Case":"Some","Fields":["79.110.62.244"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["BlackBeluga"]},"Identity":{"Case":"Some","Fields":["AJYtLdC5vzpq8dXrIBEyOIrKFCQ"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["3Ip0JZI4SIadLOU0x3rExyuyPSkH2syySaqDvS+pVPs"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:36:58"]},"IP":{"Case":"Some","Fields":["5.189.155.39"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=320"]},"PortPolicy":null,"Flags":["Fast","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["mb8aku"]},"Identity":{"Case":"Some","Fields":["AI3Uguym3S7tHit4FIogUpvWbkk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["xD4m12ZGlvYELlOUHQVOIhoqX6bWUxpuT4jYRlVBO9s"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:52:41"]},"IP":{"Case":"Some","Fields":["209.141.33.170"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=5600"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["INSRelay42at8443"]},"Identity":{"Case":"Some","Fields":["AIGW3ESUgsc8+pcSRFIjkX92CSE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["pywwn0/V5of5ek2IbcRA2TJi5v+toZkJwk62+EjtJPQ"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T05:59:04"]},"IP":{"Case":"Some","Fields":["140.78.100.42"]},"OnionRouterPort":{"Case":"Some","Fields":[8443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.8.0-alpha-dev"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=10"]},"PortPolicy":null,"Flags":["Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["venenata"]},"Identity":{"Case":"Some","Fields":["AHfd3bVJVCFM/uD+iqhd3IV+fIo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I0rQZbSia0QlouQUSxz/SXiIvaMvYOriOVW5h7Z1GXk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T16:49:42"]},"IP":{"Case":"Some","Fields":["71.19.144.65"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:2700:0:2:a800:ff:fe2c:cd37]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=17000"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","Valid"]},{"NickName":{"Case":"Some","Fields":["Quintex13"]},"Identity":{"Case":"Some","Fields":["AHe8unJE2z5qXtJ0boYXAGZoSIc"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["1TTcTyS+FBXPpPJG4DxO9wVOLaWpXDlT3GeYefWHIw4"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:40:31"]},"IP":{"Case":"Some","Fields":["199.249.230.103"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2620:7:6001::103]:80"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=3800"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["right2"]},"Identity":{"Case":"Some","Fields":["AGVBE5WXY/ZTySr/B4p+w6e70tk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["25sjY05+pVXDzFJAwZwo8qg2f8dCFI44Y0AGJgzTIt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T09:14:35"]},"IP":{"Case":"Some","Fields":["174.128.250.165"]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=24000"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["eisbaer"]},"Identity":{"Case":"Some","Fields":["AGHSKv0fBtTm81AGvT2cIdeYHqk"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["7UiQ8JSMEi0HFvY6K+hrzK9bz5hmIZkehYgwK/s+NRM"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:06:04"]},"IP":{"Case":"Some","Fields":["109.70.100.73"]},"OnionRouterPort":{"Case":"Some","Fields":[8080]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a03:e600:100::73]:8080"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=23000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["Athena"]},"Identity":{"Case":"Some","Fields":["AF7ZchP3JYZ+QiuNwEQzYbuyTjw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["OaWeyjysCt1H0CB9Stxpj/kW9YBPc+Lk9lbw37wPfPc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T10:09:01"]},"IP":{"Case":"Some","Fields":["104.244.79.75"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2605:6400:30:fb10:d07b:edfd:2c84:bb4a]:443"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["namie"]},"Identity":{"Case":"Some","Fields":["AFyL+BoOH3CNtCpXPISvAlpAb88"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["I2bRikcknXdQOn3xwCu4L91hCIUbH1MBsWHKoAqK9fI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T13:04:09"]},"IP":{"Case":"Some","Fields":["109.241.109.93"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=2300"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["suominode"]},"Identity":{"Case":"Some","Fields":["AFYmkM8z9TfE9MlYdlX3Rphoxzo"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["yW5+gcEudV0vrF962L5bv9vjwnSXuI4IZ34bROF+SAI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:24:29"]},"IP":{"Case":"Some","Fields":["37.16.105.85"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=16000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["dc6jgk11d"]},"Identity":{"Case":"Some","Fields":["AEClsEx+MJ03y+ftsrctPhXQV8E"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["RebXkemb1dep4B1glT2Re14omz6lyNoZewttn87bSnI"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T14:07:10"]},"IP":{"Case":"Some","Fields":["51.15.75.120"]},"OnionRouterPort":{"Case":"Some","Fields":[444]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:bc8:1860:1329::1]:444"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=9800"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["ForPrivacyNET"]},"Identity":{"Case":"Some","Fields":["ADb6NqtDX9XQ9kBiZjaGfr+3LGg"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["j0YZ3QM9Ec/sfD88MYBk4KONtixMhoYER274t6XVHqU"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:19:47"]},"IP":{"Case":"Some","Fields":["185.220.101.33"]},"OnionRouterPort":{"Case":"Some","Fields":[10133]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2a0b:f4c2:2::33]:10133"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=39000"]},"PortPolicy":null,"Flags":["Exit","Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["StarAppsMobley"]},"Identity":{"Case":"Some","Fields":["ACg7VWTjBy3N2rMdbvYi3Um/Uk8"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["AQ4qn2l09Mq6p7CpJKG4XNIxQrfMoFcPyP15PHHrbpw"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T11:47:13"]},"IP":{"Case":"Some","Fields":["195.15.242.99"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":{"Case":"Some","Fields":["[2001:1600:10:100::201]:9001"]},"Version":{"Case":"Some","Fields":["Tor 0.4.7.7"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Guard","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["skylarkRelay"]},"Identity":{"Case":"Some","Fields":["ACQOyytTWqTB4YdNdE36avLl6UE"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["n1S9VmyN469C3VwtS+wER87B6B2KJ8AQp7/SI661zt8"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T04:40:06"]},"IP":{"Case":"Some","Fields":["95.111.230.178"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.5.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=7100"]},"PortPolicy":null,"Flags":["Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["earthpig"]},"Identity":{"Case":"Some","Fields":["ABUt+rlyo/iwhkjhSnsJjMKUg+k"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["rf9Ck3bhxjdUczTTc02CRCc3GTurEoxoVXN/qJF6Wbk"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:16:09"]},"IP":{"Case":"Some","Fields":["41.216.189.100"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.6.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=12000"]},"PortPolicy":null,"Flags":["Fast","Running","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["CalyxInstitute14"]},"Identity":{"Case":"Some","Fields":["ABG9JIWtRdmE7EFZyI/AZuXjMA4"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["Qs0yOymbVs6GgnbYYduADsxleU7xFUOnsQoMOC5nCwc"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T06:37:42"]},"IP":{"Case":"Some","Fields":["162.247.74.201"]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.8"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=34000"]},"PortPolicy":null,"Flags":["Exit","Fast","Guard","HSDir","Running","Stable","V2Dir","Valid"]},{"NickName":{"Case":"Some","Fields":["seele"]},"Identity":{"Case":"Some","Fields":["AAoQ1DAR6kkoo19hBAX5K0QztNw"]},"MicroDescriptorDigest":{"Case":"Some","Fields":["YcEe5/d/nL7u0lMKmuQTGaSjVE5dAROlmU9VZ/9XRbE"]},"PublicationTime":{"Case":"Some","Fields":["2022-09-20T02:08:45"]},"IP":{"Case":"Some","Fields":["104.53.221.159"]},"OnionRouterPort":{"Case":"Some","Fields":[9001]},"DirectoryPort":{"Case":"Some","Fields":[0]},"Address":null,"Version":{"Case":"Some","Fields":["Tor 0.4.7.10"]},"Protocols":{"Case":"Some","Fields":["Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4"]},"Bandwidth":{"Case":"Some","Fields":["Bandwidth=120"]},"PortPolicy":null,"Flags":["Fast","Running","Stable","V2Dir","Valid"]}],"Sources":[{"NickName":{"Case":"Some","Fields":["Faravahar"]},"Identity":{"Case":"Some","Fields":["EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97"]},"Address":{"Case":"Some","Fields":["154.35.175.225"]},"IP":{"Case":"Some","Fields":["154.35.175.225"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["0x0B47D56D Sina Rabbani (inf0) "]},"VoteDigest":{"Case":"Some","Fields":["75FD97064EE7E338E4CDB244CEAACF4DE6E786F0"]}},{"NickName":{"Case":"Some","Fields":["gabelmoo"]},"Identity":{"Case":"Some","Fields":["ED03BB616EB2F60BEC80151114BB25CEF515B226"]},"Address":{"Case":"Some","Fields":["131.188.40.189"]},"IP":{"Case":"Some","Fields":["131.188.40.189"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["4096R/261C5FBE77285F88FB0C343266C8C2D7C5AA446D Sebastian Hahn - 12NbRAjAG5U3LLWETSF7fSTcdaz32Mu5CN"]},"VoteDigest":{"Case":"Some","Fields":["BF99C6627E5C3203D4CA12F5C41BE5A5DBF98BD1"]}},{"NickName":{"Case":"Some","Fields":["dizum"]},"Identity":{"Case":"Some","Fields":["E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58"]},"Address":{"Case":"Some","Fields":["45.66.33.45"]},"IP":{"Case":"Some","Fields":["45.66.33.45"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["FD790065EBBD5E7AE6D039620D7F81CD19147711 Alex de Joode "]},"VoteDigest":{"Case":"Some","Fields":["253F98BE09A1498E22FFB23345ACC4C26136DC2E"]}},{"NickName":{"Case":"Some","Fields":["moria1"]},"Identity":{"Case":"Some","Fields":["D586D18309DED4CD6D57C18FDB97EFA96D330566"]},"Address":{"Case":"Some","Fields":["128.31.0.34"]},"IP":{"Case":"Some","Fields":["128.31.0.34"]},"DirectoryPort":{"Case":"Some","Fields":[9131]},"OnionRouterPort":{"Case":"Some","Fields":[9101]},"Contact":{"Case":"Some","Fields":["1024D/EB5A896A28988BF5 arma mit edu"]},"VoteDigest":{"Case":"Some","Fields":["91CE4979C25A4F227D6F0B927B94D33056147AC0"]}},{"NickName":{"Case":"Some","Fields":["maatuska"]},"Identity":{"Case":"Some","Fields":["49015F787433103580E3B66A1707A00E60F2D15B"]},"Address":{"Case":"Some","Fields":["171.25.193.9"]},"IP":{"Case":"Some","Fields":["171.25.193.9"]},"DirectoryPort":{"Case":"Some","Fields":[443]},"OnionRouterPort":{"Case":"Some","Fields":[80]},"Contact":{"Case":"Some","Fields":["4096R/1E8BF34923291265 Linus Nordberg "]},"VoteDigest":{"Case":"Some","Fields":["868A010676C297B727D4E9AF085FD9510D955D6C"]}},{"NickName":{"Case":"Some","Fields":["bastet"]},"Identity":{"Case":"Some","Fields":["27102BC123E7AF1D4741AE047E160C91ADC76B21"]},"Address":{"Case":"Some","Fields":["204.13.164.118"]},"IP":{"Case":"Some","Fields":["204.13.164.118"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["stefani 4096/F4B863AD6642E7EE"]},"VoteDigest":{"Case":"Some","Fields":["F8EFC6506570978DCD99E7680A2D49BC28CE6263"]}},{"NickName":{"Case":"Some","Fields":["longclaw"]},"Identity":{"Case":"Some","Fields":["23D15D965BC35114467363C165C4F724B64B4F66"]},"Address":{"Case":"Some","Fields":["199.58.81.140"]},"IP":{"Case":"Some","Fields":["199.58.81.140"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Riseup Networks - 1nNzekuHGGzBYRzyjfjFEfeisNvxkn4RT"]},"VoteDigest":{"Case":"Some","Fields":["0F4B77E189D5F3634828FBAEB10BA78EB009B819"]}},{"NickName":{"Case":"Some","Fields":["tor26"]},"Identity":{"Case":"Some","Fields":["14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4"]},"Address":{"Case":"Some","Fields":["86.59.21.38"]},"IP":{"Case":"Some","Fields":["86.59.21.38"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Peter Palfrader"]},"VoteDigest":{"Case":"Some","Fields":["E1EA245851802B749446AAE4B7DA0666538DE206"]}},{"NickName":{"Case":"Some","Fields":["dannenberg"]},"Identity":{"Case":"Some","Fields":["0232AF901C31A04EE9848595AF9BB7620D4C5B2E"]},"Address":{"Case":"Some","Fields":["dannenberg.torauth.de"]},"IP":{"Case":"Some","Fields":["193.23.244.244"]},"DirectoryPort":{"Case":"Some","Fields":[80]},"OnionRouterPort":{"Case":"Some","Fields":[443]},"Contact":{"Case":"Some","Fields":["Andreas Lehner"]},"VoteDigest":{"Case":"Some","Fields":["342B422BA3BC35F5D34F24D3095DE4443665DB9F"]}}],"Signatures":[{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97"]},"Digest":{"Case":"Some","Fields":["21FB228258F9A729F88E86D83AB77F88C272C75D"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----VxpW/fSnPk7m5/f5Lo7dZcLXVvmqtBcOpI5ygW5dQjVpl1ebseUXWlutvn8+hRAfp8GCMRLdce5oF7gHu7Zg/SAQ5cPFsL5r9wZfEGdTRf8+woMfPG877YnOlAnFhGa97USSpE1d40kzBawVAGEmtPMWBM7Kze8fqfJ0XH3RE5cuk2Mho5ukOA+L+w3LTdoEcYA509uMxbsaGj1/j43+WxCEQpCXf8Uo9tMIErlvGY49yay3TYADe8vqA3Jd/IMg2yQ7b3+hIg5HmqUVbEuME4IBa4MxDcHQy6pRSuxJRj2gOwCD/cCHDxMGJSVbmBbaZVrqmpnplr7zhMvMqRew0A==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["ED03BB616EB2F60BEC80151114BB25CEF515B226"]},"Digest":{"Case":"Some","Fields":["B0794B84C7868261D06C3A9FE683D3C9FE804065"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----pmiMx7HPeO3KtXfIMbj6/BYfVvSw7FqvCNf7XEmDn/XYN3liDiVo2B0hk1uR85N2wXSpZ56ztFwcpUSvCNUS2w4ARe+5foCGyfEZjbIqboH6U6mMx+yDpHfQaXLENHNBUn0CrxWMOEfUUQRTjwfDUQ77h2nKdYttbJO6yC7V6iShbVdyp/djyxFHD3vGbsibTy9nU+HYoqVuNb08SJV20lqCEY899AhJJESxDT7CHBGksS1nn6hOl7XN+G7taBnLPL02HNxAyvf9U+bHpVRnRu7MFy8ZFZLAWAW0506OiVUDYhvu8BSXyGpIwMwUyCoJIDFjGGlP4rsjw7uRZJBxKA==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58"]},"Digest":{"Case":"Some","Fields":["0B5340CE4134B252118CFBECC491F98F107798C4"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----E3cKVBDmeqq2JevIC4ZKOUeoePZ84Wsl8yt6uZT/HFND39wLgIyzRJjp10C73WvcYnVaBSlPsl0NzBbO9tDxqJ0QS2xrsGNiex0p14/edBwNbL9vdMHUUCSYvEz8E/to5wxdDRnY3VRxTG/rVf5bh+k7HcOHgD/HxSixUsfHk7Hu6UE7CmoeB1hmYZzqL8qdPmMe3EmJNJBFgMzCt0wZ9H4UjVLcjZOhclahdWjzdEb72z8FVJ2zhHRjZUp7SryCH/GKfmnG6LFrJuVSeiDaELJmI01u1dW+rKxYZy4F/xRjoXicFTXd2M1dcFeojFu5JVQe4X0vj8VOpHGGzITGMA==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["D586D18309DED4CD6D57C18FDB97EFA96D330566"]},"Digest":{"Case":"Some","Fields":["8EF5B21B3F94DA1E6F2EB09A7ED05AA68ACC0E19"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----h4IyRQAXckPfb1Ye3bWfvw57A3nbX/SUP2Q0A4dksE9d1fMqrSokVHqcjeMmpI5PoCe1NVTpJSy319Jc8KfNuw/k5wx6e1OtPB/ERgDwj41qI+40vb0sg5Uv4CWjruwkaCIrBlNMoncK+2tnqlYvs76v4PtMtDOkwfXG2lj6zEFmjTSc9nCtQoh2TTdvXD3cxXL6994kx9jbhVh+VlmSDUxL39fNwMlwVY+HSIpPuxuTyhcSS6JIWH17Sk/w5ZR1E4xNCYSPuK+HUQcQT9Sqdgkl3pglkzOtUTv1zjQom9ssBP6BEU+ggHh8rlbn9mll1CnGpYRQ7QAlcj0sjwgjNw==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["49015F787433103580E3B66A1707A00E60F2D15B"]},"Digest":{"Case":"Some","Fields":["DB47FB5A2A042523A663A9FD328AF67EA955F2EB"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----B+q7GxoMvEy5l25s3vRQw1tUseRTU8VQTxrihUOYy+dbtStvJ88YqqhJAYlRkNuF3CASJIag2jfzhuM84f/V9ELckhBSHeUG+qIx+nEqCV5OuAtKn7WKzMpDI23PzOkcTyI3wpIyV0Gj4WKXTrIs10ljyrz4l7rMWX3g1GVwcsua6OaJRV/CY3wl4oAtQqLyxONauOyhQ303SK5qrKWBJmDxbJmohRwys63nyVSH/qc6igiWqKXLDwLjB3Zv2gc8UDR9Q2DpZ3MTmvvbhmAVfNnDz8Nk/91O5kchffNgJv9mRroAmQ5dNVAw5bnJgQlBIQt45oNucN6QXjYkszQ4YA==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["27102BC123E7AF1D4741AE047E160C91ADC76B21"]},"Digest":{"Case":"Some","Fields":["6BBBFADD5D17017136EEA85AE030E4B2730E6FA7"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----OjjEkmSsoyo8qiT2WmCJ2QRox3o8CUcWEb4Gmplbo8naxnujCtSSt3Gt3EiAfhWVYrFgKdF4/ArxyIMwJdK7ovr/mNcaTkC502rWd+pN/E/qc4URO977UHDiFNsJ2QGLegz9EJmSZhwqR1D9CzxHvzVkEYqxcVNLf+MnWBPiCQ8YQIgtt0hacWUa5RPSYzhVQ+04VPWI/HHoaslTLGNHoXOeOPBp13Pp/22G4pJIWqSYS4NsIvjz/wktvVX+a5zFyOizqWX8NL+/vu+wTdBrqw6lD5JmiS8wQd1J8uOsq2gPMjgI8T0MhYaa877I5hfeFWjnDOl+fV46F/Zhj1OuRg==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["23D15D965BC35114467363C165C4F724B64B4F66"]},"Digest":{"Case":"Some","Fields":["62EA5595951196DACDCE605C53DF6FE025641864"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----GpNn/5S+IWuDdvMmcvJfpKy/O+VHYfkXnVlgI8waCbShHDLF5AO7be93e8rbfKmvOVW9IkhSm8AUttJOUAfE2Cu3grQt10xVhujiwhwsl2VR8AByTb8af6jXLqL4eYP6HLOBZGSy33OnWxV2nv9BgkDqc9gqgXOgTizjSLlAl6eGx4JLq7X36pd2O2yZw+/MTVrPzHnSuYLyFteVSVz08/4xEzHj7DWn1z8BeWdZKXwGxiTilPQIaw/w0LTBBEjIaBjhXBxHjOI7KUvX5M5mLyyqJaZfgNSo8QcrVMIi9QMYygMBVOzg308eBm+wEtTf/TW20YKBQOFA2VXIk2pGCw==-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4"]},"Digest":{"Case":"Some","Fields":["4A69B937C66923151A7B98F091135E5E7529F375"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----FZCPiK8Khh6EntevQ7+zKbdb/q4dutYMfesbI1WgSEmTkSJydFX5OJkx4uDDYVqAXSyXoFRdqGRsNqs2bi1G8g4YyIfXl47Lgj2bkoclJhMxesItg32Q2Cd1aok/rYAZrPcspmwZf0HyGqLOpp/SqFrf62Nsx3hrRdC3qh9qSsIg2eLNT0ESW3VtNg2ijdnhEjqLXwGxIHpHgaaQ0/qMznnE7sEhzydTYhfRrAxqayXI8IBJg3G5YwRtbrPSo/Xt8YmUhQgyQ4cZIOA9OlLSz7uNHOcAH7A8B+CI/nUuo31nPUXLNNQG28swMLnu07MF7/msPUleMjPprM2ILSdgNdkhoSQzklR9FZsUDTg1ewe5cNtaFhENgITvsd/6pRbFeSdNGhtdOquFNuJ+bDCUVKFWAtmZE+wSGlk0oZsoKG3dDu7AfsCJpdZbtSwNryRftLxvY17HKqS7MAUKVSPOy2l3QKJuczeywMIbbFpuwT8ByOLsyNF5R7ltRirE+rDO-----END SIGNATURE-----"]}},{"Algorithm":{"Case":"Some","Fields":["sha256"]},"Identity":{"Case":"Some","Fields":["0232AF901C31A04EE9848595AF9BB7620D4C5B2E"]},"Digest":{"Case":"Some","Fields":["8762993F29E1DF05ABCE3AB0CC15D3ABAE6448BE"]},"Signature":{"Case":"Some","Fields":["-----BEGIN SIGNATURE-----IrHgB3ibljXpN2cwDswLSTGZ/oHfnAN2Wmetse6V+JIV3imitqxxGGEHJ2uLDE1EVI2dY/brBZopyWwlhFPRXHwDZNti+NdRIfA1xVGiadLS1YbUoEcxmKl6CMEqYDHufhHO/IOlfdIYaxCjFG3TKYEHrzIQMAv+1rsh4iPiibp3AD8ikxAKqDmZUaAjuAkOObm5cqMHWeAZsOZnyaR76sCqLBOkh+UmIdJXZj1ecOu8dg/HDYGVkH0Po/BuShzDYeqmdObd+Ez0VlhmnfCgOXWMITqcoxylqDJga02KTbtZ+c7onh3wb+6tjOICR5jGF07ux5T4YVMXEhOVseVKcQ==-----END SIGNATURE-----"]}}]} \ No newline at end of file +{ + "Version": { + "Case": "Some", + "Fields": [ + 3 + ] + }, + "VoteStatus": { + "Case": "Some", + "Fields": [ + "consensus" + ] + }, + "ConsensusMethod": { + "Case": "Some", + "Fields": [ + 32 + ] + }, + "ValidAfter": { + "Case": "Some", + "Fields": [ + "2022-09-20T17:00:00" + ] + }, + "FreshUntil": { + "Case": "Some", + "Fields": [ + "2022-09-20T18:00:00" + ] + }, + "ValidUntil": { + "Case": "Some", + "Fields": [ + "2022-09-20T20:00:00" + ] + }, + "VotingDelay": { + "Case": "Some", + "Fields": [ + "300 300" + ] + }, + "ClientVersions": { + "Case": "Some", + "Fields": [ + "0.4.5.1-alpha,0.4.5.2-alpha,0.4.5.3-rc,0.4.5.4-rc,0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10" + ] + }, + "ServerVersions": { + "Case": "Some", + "Fields": [ + "0.4.5.5-rc,0.4.5.6,0.4.5.7,0.4.5.8,0.4.5.9,0.4.5.10,0.4.5.11,0.4.5.12,0.4.5.14,0.4.6.1-alpha,0.4.6.2-alpha,0.4.6.3-rc,0.4.6.4-rc,0.4.6.5,0.4.6.6,0.4.6.7,0.4.6.8,0.4.6.9,0.4.6.10,0.4.6.12,0.4.7.1-alpha,0.4.7.2-alpha,0.4.7.3-alpha,0.4.7.4-alpha,0.4.7.5-alpha,0.4.7.6-rc,0.4.7.7,0.4.7.8,0.4.7.10" + ] + }, + "KnownFlags": { + "Case": "Some", + "Fields": [ + "Authority BadExit Exit Fast Guard HSDir NoEdConsensus Running Stable StaleDesc Sybil V2Dir Valid" + ] + }, + "RecommendedClientProtocols": { + "Case": "Some", + "Fields": [ + "Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 Microdesc=2 Relay=2" + ] + }, + "RecommendedRelayProtocols": { + "Case": "Some", + "Fields": [ + "Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2" + ] + }, + "RequiredClientProtocols": { + "Case": "Some", + "Fields": [ + "Cons=2 Desc=2 Link=4 Microdesc=2 Relay=2" + ] + }, + "RequiredRelayProtocols": { + "Case": "Some", + "Fields": [ + "Cons=2 Desc=2 DirCache=2 HSDir=2 HSIntro=4 HSRend=2 Link=4-5 LinkAuth=3 Microdesc=2 Relay=2" + ] + }, + "SharedRandomPreviousValue": { + "Case": "Some", + "Fields": [ + "jaj43bDL+z6z8nV6JOrHRMd488DD+/t6fHZp9bOMib4=" + ] + }, + "SharedRandomCurrentValue": { + "Case": "Some", + "Fields": [ + "cvXb9GWk4MPwCyUXylg6IIb3AlnGAv4VL0QuMPUCwOw=" + ] + }, + "BandwithWeights": { + "Case": "Some", + "Fields": [ + "Wbd=0 Wbe=0 Wbg=2771 Wbm=10000 Wdb=10000 Web=10000 Wed=10000 Wee=10000 Weg=10000 Wem=10000 Wgb=10000 Wgd=0 Wgg=7229 Wgm=7229 Wmb=10000 Wmd=0 Wme=0 Wmg=2771 Wmm=10000" + ] + }, + "Params": { + "CircuitPriorityHalflifeMsec": "30000", + "DoSCircuitCreationBurst": "60", + "DoSCircuitCreationEnabled": "1", + "DoSCircuitCreationMinConnections": "2", + "DoSCircuitCreationRate": "2", + "DoSConnectionEnabled": "1", + "DoSConnectionMaxConcurrentCount": "50", + "DoSRefuseSingleHopClientRendezvous": "1", + "ExtendByEd25519ID": "1", + "KISTSchedRunInterval": "2", + "NumNTorsPerTAP": "100", + "UseOptimisticData": "1", + "bwauthpid": "1", + "bwscanner_cc": "1", + "cbttestfreq": "10", + "cc_alg": "2", + "cc_sscap_exit": "400", + "cc_sscap_onion": "500", + "circ_max_cell_queue_size": "2000", + "guard-n-primary-dir-guards-to-use": "3", + "guard-n-primary-guards-to-use": "2", + "hs_service_max_rdv_failures": "1", + "hsdir_spread_store": "4", + "overload_onionskin_ntor_period_secs": "10800", + "overload_onionskin_ntor_scale_percent": "500", + "sendme_emit_min_version": "1" + }, + "Packages": [], + "Routers": [ + { + "NickName": { + "Case": "Some", + "Fields": [ + "nestor00patof" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "//v7UKg6QUzCG0zak6lnSwBHBeg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R42nQguGr0wFhJiYkT96zjPk35BTNKB5xN6vi9X4IAM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.203.134.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1337 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "viennaOnTheWalk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "//qR8YZj+Mzo5yWiST+Fs5C40zc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6wQBNtJmg5AJipzhS/YOeudZgC05SFRoqFLQFqaf+BA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:41:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.159.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:423d:b500:d308:6847:718e:e2a6]:29001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ddetor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "//eMRLpua291JQlbvhTvfL64l0Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pYWdfEdZXcFugP3a34dtEVP7qaX3TIqx2qqwxJ2RsNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:30:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.75.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:191:9388::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=950" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DoctorWho" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "//WZlUw4IaKGIOlcCMvcYkXp3ao" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LY2BL9w1aKHumdXtgU7JoEmbpnxKYKcfgXjmW7wJM50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:47:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.200.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DarkfireCrypt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "//MDHROq1Y7oSa1Lc4BR3h5R59g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l+PlXOkaTlX5b1EBXRz1PCKFXv/vCOvgN4WAT1Lm9as" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.7.175.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorExitCz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/+o3ttp2xFjT41R23X0f0KmK5zE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WB9UBWKnwEz3aPhfr391VobxRJy9ITmJBZHOyfGat8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:53:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.247.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:9403::215]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bionictor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/9SzRqffegCrcshWPyacNSj+Qe4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FemBEjuzXjIyeigGk8veC1cMoItsUBblUipJP8vHNs4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.193.108.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "euler" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/8P0vk1cOSJG3Ho3slamFYw9hWI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "shXlPx01EWdJgX2HZLhxMgDUo3L8WYrPSESZ4E/ZHB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:45:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.10.119.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SSnetNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/75MdAYtkHe4vJuzPSAHJ1b8t9g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3I/O1VDxTG0UinXm++1U0mK1KXyGqadfONkjy9iK8AY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:00:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.235.37.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plan9leia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/7xpRns31qxmWYu9KV+bDXQRmtw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "df8Cnl8+RKbCOZhcSQkyh8ptB0IH+VKN/TWXECWYsE0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.239.217.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4433 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlazingMonolith" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/7u6fxxzsHqA9a91mirvSB8UOJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k/mXRyCH+mcxg8/cpLmQlI5JMTwAay1IPTtZcEmDFvs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:12:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.42.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:4e17::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/7YFyG1gaZGt7XhCJp+iWgO0pNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "12J9YSEhPd59K8irmFSRS+mBYwYh9FQD9fbOphtdVvc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:04:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.227.174.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lule" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/6cr1oO8L8+Yg1bmvsHkkPMT+wc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YWu5KMogOQae+3kqNZFt5htX34pVyHn3ovdcnuZL3fo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:35:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.11.164.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:6b0:7:125::243]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay3L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/5/G0TD6Jq466LI2iGkdxBnw8i4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bdp5pHxi3OIHNo9Q7WimOYctqcv5QzH56sHyiwaVbQg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:59:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.164.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:12a1::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "1jcbcaulbxid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/5KaAftYuJiOmtenXejEFEhqgus" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SagkyOdAD8Bz/eOQ0b2fzGeOAMbQxeZFWB9PhIdXD14" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.136.0.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "einNettesRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/4t8rV9QiXJQnXn5M/sk0vUkq3U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TmfzjIb3vu93yEdVYgZB090ObhZVIZqvhhjiZzA/Qsg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.3.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5d:b8f:1478:68ff:fec4:27c7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MehlTor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/4fknvMweLBKXeJqrhcN34uuE58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6WD9MCRkRlioZdQxylaHZl2DCKj7sLFSZYqGypsSBgg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:37:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.36.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 59001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:33::1]:59001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RicsiTORRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/4alnjWiz38nRNp2jfvpCGCGhnY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4nfV0RBlqPcqYaPn4enSp04GU74ylRrCTwc3J6P6Ymw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:10:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.176.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4a:c5f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ssrv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/4MwDUYWqQNbN1KyWVS7f4fFRJM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CRvJERoidoC67EWzjQOp9zYDr7tQzmALWitP4bZodM8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:41:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.43.228.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/3wmBO/ui1iY/eEUWkyjXI5eVgc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qzB5Gz9HA7FMH4cFgQsC1XDoOOhOXiabUuH0hS4H1HY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::62]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay01V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/3JI/sUFm8U+cP/+3cyMSYMb26E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FXEO0pcaeMmauiRGfJKqYIBmDyOSJHCNyGyNHPNmFtg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:778::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/11Ti3LayFTUyP46Y3wkL1tUZJo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JJUysR6rk1w1s46Fs3lKME0YSv+LCSQSE3C2G70Vif8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:27:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10038 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::38]:10038" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/10wUF7pRUpTyLiEU42O+YZjLJw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hKRVi6r3l77OflYQTFg4VoHGU4Rlz+JGDtIkh1fO+OE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.254.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:18:2:44cc:3dff:fe89:3297]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0170" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/0UPaDt75JRwO5CCfbLb0FtiRHE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z4ReKHGrM3/V77jwVWAYfyEW/6CLxY6ZRF7aeYwlLH4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10170 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::170]:10170" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privexnl1exit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/zdZL5qn65OAxe+BfdGlSDqV2Wk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9MDNL+PhRejm+hDA3uyDyJyF5ZFzTD0P9pAloYT2K2k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.47.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a07:e03:2a::bcde]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer75" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/zXvDrRVBDytCRSWQd8CpjlDwdk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jR5euqSuES0zUoR9WcWDQh64dHgzWyCZu7oM1W4MMVI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:11:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8175 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fuego" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/zU/XQEeaezaEKV7RtBrx7P+sZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UiiQgLGbUkKIim8GYVQ6Dm4XbP6DUC0G48cZGsx4o34" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:00:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.90.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:7071::2]:4080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=90000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/zBZ535dIvHDsgzL4SVpGtJ1iN0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eKqltXPvvinr6P/Z0uwXjOugM3pq568k1HgmxSKuCfQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:11:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.45.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hsjeufh24h6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/wbnoGihymbOWT3OheJHeAfEgwI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xcakia/TtBOzqMUXoQlM/actwfp4GMDSp/0Ueb02T+Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.37.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1820:e50::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DareDevil" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/wO+To+efkHix9loLOTWSW/uBiE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C8OkwazxUL/280M02cfXYmafA1fpBqXns7BZHznqkek" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:24:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.73.159.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tgtor01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/vT2sJAO1JLd1YYoamasGU36kBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mWA/V35ZAp9TGPUo055vCgdiXy2x/vaSPVjfB9pxJvU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:03:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.95.52.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eierschwammerl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/t9JmJUadQ1deXTfJDA1SZ6EiC4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UBEHrbSt7uTTLfs6utaHe9yI6qeKw0xug1TLlQ+iOyg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:52:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.185.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorNinja" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/t1DqbmvmsuyZOWE7jVsVdg0UCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nKM90BTY6furnqziZkpt3kjpRhtKkb4lUaubvd6A/l8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:37:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.119.82.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba8:1f1:f05d::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/tzapN38uYpbdAnw3XuWmZTBX10" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jTjQiH3e9j6WmBZ7nzRiSC7hdIaHRZ+hwxbKhUNOqxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:55:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.38.183.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:305:2100::165]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZeroCalcare" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/tL12BzKBmmOVApCA4yz1q73R8I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eElcC01wnJLuNolSAMspUMN3ba3gh+5o9KCRV7jWCwk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.70.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ADKP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/qrpusi2dHu8OhTZ6aw5JKD946c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TqzAhkEx033rz7OfAgUnTg0lZSJ9WqXBaAyhwGFkn0w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:44:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.41.154.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.2-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra92" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/qp8gC29Z3jVMcXLzfsuW+hLoss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FvMO8NKYm8mRxJ3C6cdPg6OhNxSK+2937oK3d3m0kYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.141.215.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Chito" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/qMh2PStdzIg/A1KKuefikpZ20I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RdLBk0/7yMT8bQKdEghNX6r1s8ajGvEp70rxTKajydQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:03:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.78.27.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:3840:8078:27:0:504e:1b79:1337]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "volodymir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/oV8MENBL9VFTtX+9VxMVy5bcM8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZNBRh5VUgGiMo3556MwdeEDNYBgJL1LxhzFVkNf10fY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:18:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.229.55.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Voomoo0o" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/oAy3rpVOlz+jKjSS1ND3G9vIc4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "piJ+DLSC1mFGKa43awYqJ2n6mol+D7ZHX2NPUE518Sg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:24:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.101.105.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/n+cJVYsoWpX/xdgccHSJP9SUOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AJd05IULN0IB7D7wQUmIHwuIKqJdEImdC6hisMQ9Fuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.20.57.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=0 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rangiferine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/nWlY9cIttFFmIQDZj/Ki/2I7BU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i1cinrRXoyPCL4ii3B85RHK4YaYnjdccZYwQ97TfpvQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:42:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.247.210.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2401:c080:1c01:76f:5400:3ff:fed4:c583]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "W0nuIKVExitTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/mvIToSYnSBYGDnwpy8Y0Edtekg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eRirzHH/Y6X0TAGoGlmFP/2E871At1mvkZ07MLOvEEw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.71.238.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:93ff:fe03:94e4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "juliansTorNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/mI9pOsrpyeR2aoRr3ySmQX3SDI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uyg131tbHfSfY+Ot4HRho+aD7KLc3fSQo8N7UesbuZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:31:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.2.206.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HandStanderd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/lvkRqLJSuyoLLtDY2fugP1hXKE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hUVmqHof/BoXprmfJcO27TRtuo8Oza3uQUfn5vUGK2c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:20:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.20.35.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/ljsed1M0BxSSzd9Gnvb66ic9tU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NYVcfeu9bsgn4ERFzpvypFdezao0Aks/PihgMRVRDtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:47:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.142.218.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "turing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/lbp5T6PaQtrSLSnYhO+ZPK3sa4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Wy677pqlelOzpZZeFuS1UORgUxKuy5nZRQMh8aokdUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.183.60.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/kaYoDPlRCxsHRuXlh+hg7+8e5k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qgBrYUcLiiEU9ypsYn07PeMo2tQcHutjLUmDZNNx8Mk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:40:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::1]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/js+yuOYH1rZ5bRSyH9Albt/za0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8xCEChSXjimnNZCyILDahDaAjkFTreBadhQAM+oSHpM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::73]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "x2lans" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/jn3wXwe7XzRDYT5mGpFjhgMDxM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uO2PA0Fgg223pPtm3f4sfBd/Gb6WRjzEaVRIK4PI5iQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.131.138.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay09V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/jTjhT3vr0gvplji5D7jPziWLv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1bC8DSHqmLdXpwJol7OtyPPQOPa4akVEIeRp8mOYrDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:56:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.104.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:16f1::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/ixBqkfDAuFNkxhqt2BDSSuUDxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Wxw+6wyQ9qnt0g2Z5U0xwlM7UuS6WXG65CVtmX4BYHo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:26:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.64.218.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1bc1:56:1000::f1a:87b2]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PyotrTorpotkinOne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/ilhgAGIM68DqOrNWJSmFGI9P3Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OgZPJYxGCr6fLNlrnLWNaJyKcrvDIqIzeuhMYlxDNpo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.45.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3000::17d3]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/ht0x87gSTYTkpqS+aHYkOWNxkk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zMxF9zXkbgnJA29+TLET1ijuis+1sK8CE6OsYHO245A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.237.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI25" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/hNkWc3n9ELw4QCb3jyKRoVrUqI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CZhuYQmENW3r8Q2BL34VZYkLFqZ9r+mCEU6bdMnNjgs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:46:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:2::235]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueStar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/g+4e4Ig+BpfHTrgqjWQL+n4qtA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "On9KK31X6SgXqWn018IGZaaw5WZ3yc8ESA7RK1bEO9g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.24.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1e:c88e::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "COCAINE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/gjb36tttUzsp/JdJZ7fHVl90ow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HoQVeeSTGh/Q+NYHmBIvYGrWD6zzNnkdsL9tF0WIIZA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.148.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:189::3582]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/gCjqDVoDmf7vIlack4mV7slPpc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i+wxsXtwhtC0vDsocNYKFz1fej+zzIBrfljRnqONBtw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:23:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e641]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thebigowo1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/fUD5cacmf0W6Bv3hfXC1pQdlxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MgWc3xbKwvIRWmcY+K1sVyZjEf5yZWQ5ZnZE1bXU6bE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.171.209.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:10::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marmotte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/eGl99EojxD7PpXOWmffLVYN/FQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uGxdlp/3Fd11S0+JVIyCpDYE646Wg35eJD/IYGcZGX0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:43:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.133.0.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2044:c141:0:1:4571:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI17" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/eEnMFzEECZeZrqC+1o+gBv9GE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jt6D7q20ou3Ey2ClyhFKtxFXWAwe9U+A4ZXns0vsOyk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::78]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/dnNdAZYLgtWxKJ9RBJq6EPq9t0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p44PT3PnBc+6S78mIF3lbT3gc20eAgMcdDdytEXi3N4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:06:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::198]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN24" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/dcAx5HMa7CsHCCZqCy8NnrUt2Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q5Od2YKnlbv/L8DmBxMH9bnE8BzIqBWposcyo+snpyQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e64d]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip4a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/c/qGMxkRhRV3l6j/DGDTGtC/sc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/AC4x62fb/X4QYE7oNj1V92nW4idz9JF6shK1j73MPs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:20:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::251]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE76" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/cRWtAq/BO0BxNLfYuPjQCX7jdY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jqgZud+uGA3HeKVTvMHDp055yKN235SxHVCDkjbGbdo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:51:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.67.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6030::4dea:106]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/bqPtICZdTUK+DZZiKNzANCRA/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZTg5aXrGeOfB/BN8GKr5XQqHQLydp23dco4mUccsPo8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:14:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dorrisdeebrown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/a7RXJjP56QW5WdvYUJU94QGEFw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EBgE8jUVtsHeG4oZhLeORMbCtT7abqt+abZKiC/bets" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:34:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::4]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vicarious" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/a3VnJtavFc87SIkTrHub+66ClM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UcPyOmaJf3FB2nYUhEA6qsuNn2DFoLSXMjevXbfylno" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:46:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.98.171.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1984 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "camilla" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/as3IqTqaobjXZrIQiLz4R8vbW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "usj9YGCTFPobAeP3UU+gUYW7VM3x98IzRJ6G3D6+xxw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.51.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8000:6a00:2::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flowjob03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Z140TLXamNoqYOxlH85unobC+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S0BvbPG/8ro17B+H8r5P1V3f0X912owd3csyUQc/wY4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f847:745e:86ff:feb5:b3c8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FQ63HLEW" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Y8RyTFaeZgZiC0OMEv3nyva5rg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/o4t+zdX3Yn2gPV3vjSRvtsrxKfkIVLey8sSn32z+Co" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.85.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dezember" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Xm3+SMIWLSOdfOJZhhAxwJREHg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BljxfjyxUKRGbdTnDhD5Jf6V1TSOLGjkhgGmrAkUmdI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.55.13.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:31:141::1337]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "drymm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/XmMVIPD7YP8o5BQxWn/6bemSYA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "itNGZRbwBus3bBQCd7rlRQ4MSaoNDYp2MULHZ3tw7vA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.146.119.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/USRJ9MNj10SRlPZ73Nu30oStNw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "stOfyicx8ML987WQA37llEU44+OWWVZ1k+WZ5rQmA/A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.174.62.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 43261 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:a468:8d92:1::baf]:43261" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Desson" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/THsKZiB4pN38Kh+4HmvPapV+tw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ied6931/DbVca5Qpew/eLpPJFoTK+LG+SVx9DstULtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:54:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.98.209.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nova" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/S+biBrGQBAMQo30fcmoY9wvJTY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qPBzm+RS0gXNn1Hh+GEHf5+PGukF7v4qEA83ZpyD+ig" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:35:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.17.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SummerTIMEBlues" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/RlSsi71PUkeDX487LhcPO9jyrs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MsEylJFvJJdae0FB1nujPsIJlvLe0ILDP3WWJAdeCxU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:51:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.201.108.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "velarde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/RJ9EBTtPTav5QVYqIvV6Ns0pkU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zjxoaXpAcu9KBh11r/qUYn6nOq+PA7cGP3sUGORlCMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:11:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.134.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "inthedark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/OX/v6Uo3kvYZ0rPqlruGd2eC68" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5M0076FHsU9aAflE6E29lcaFUGzHhewth08hCs/qbgg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:16:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fluppflupp42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/ODAX34tC4JfoP0qN7pbrjw9bhM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "op5NmVXPp7DEPppUdqKJ/fmWdANRXkRHLT0Ya31MBLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:30:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.68.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:31d6::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "voltorb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/NV5Qud+qDWQDR/UR7wftaMlqS4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hw+FRdYJ6U8hSOpB+sr7TSYdnX1BHQC7pjN/x7qjke4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:15:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "112.213.37.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2404:9400:2:0:216:3eff:fee1:b8ac]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shrimpmaster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Mzs3EQnPGf7N0IAE4Rk843fOaw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2XYGh4jEtUP/go3yHUv0dUXN+Q+yaRwYFRANWqrLXmg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:15:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.239.76.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6969 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:302:2200::390e]:6969" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChelseaManning" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/McNP1AMLqYgBBN7ATcgGpOitX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s2XtNrekr8sKOVz1/shiPKR4vDQshNiB+xw5buHCcCY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:31:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.219.250.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 26918 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ktj8rmhy53b16bwqg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/MOS/CClwcW16Vq24kc15JPjrrc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BU1Xuzh/PhbF2BtMfUfhXmI+WG/GvQ5Yi7dncyFehOU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:19:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.131.16.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9050 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:14ba:1400::8857:e4fa:d28f]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "urkle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/KUqKR3t/Octa35TilqRvpA+Ff8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LQpVYA3oiO51Rey2Y62tqwlW9+D/tP4V4t+jJZwf3Lk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:07:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.35.33.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "saga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/IL+o+ioZ4WyAvTBRR+JxeEqigA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8ttpgnuGgb0AP2nLB0Z73/v75zn2iO9H1nKBgb/3LgI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.53.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:183::8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SSGserv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Hmq07A9P4A3uXkJ7ZgrjTnF+cI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1n/ZhQIkpyFG203qdx9EgZX4fx6MiG12uqs53BaauDc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:00:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.39.130.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Donatello" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/HLZmDx0pnviGrGlOG37yyqgwG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x1Z/7A5hddzUvhFzStgfUW5JKsZnfzuF2ltKdGDO1aQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.10.8.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/HKPMpyS1npDXvuh00tZM9qmD2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2I7/cxXQoVPTucemdWz+90wAEpDqNnAI69o61JkRzW4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10139 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::39]:10139" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/GqEoSUYFbyqRHvugvaT6EfTJac" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HmMs6/U217WUp3Qnw1i7SQplFZYIbPe1VriUJ/ZJag4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:00:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::37]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GhostNetKennel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/FtPkNGpu2tYhcprT07EfReDlS0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E2vWMhqWQFL4s5Tyd6p3yiovybdQ+4NXDDju7DuJCVk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.155.3.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8010:67ae:5:4f4e:c47d:1783:952d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Valsec" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/E0DQD7NkEYxmLny+B4LN+16/h0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BXkcZkLlQ3f/JQbQCSpzajS4CAgRg8ACDEJiVRYGDLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:37:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.90.177.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bernhard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Eot/279jAZSsjMQwmTlObNkJGk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+vvfaoeM+wBDbr9Ho1vTFWz+rKBjxArF0V1QASZD2rk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.211.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:83ee::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nanotier" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/EDMxhkfk9RRSt40elQvviY9oMY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q8NURqbFt2GV7N7rXJQQT/rpTaXRTq0faJb2QRQ6afk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:39:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.38.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RobRaspOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/DFDl9kBLumFeXgm+CsjiEQium0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K3Nh6IFNRSqGaL1a8mk2N62P4NJPzmNuAi6fDwNt9K4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:07:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.245.93.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/CzVMOhcDlb9+/2+2rkX2dir6wU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QEMMoXktT9TenrwSPwvRoaNzgt4PwHjLbAAXuea/E8A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::48]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay12345" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Cm64t1pQYV37f7m5mPHcieCKrc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kH6tJ96WIn7uD9T4/YEA+nvU/6Iy9MKGIqINrf0NwRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.8.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f9d0:8d45:cd51:c1aa:271f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeusVult" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/CgjJv9IDCOBHvIkiqoAkhtKf+0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BFkiwMTgUwfsJyV+HFYMyLCbRylh+HV4YkY6iwdwnq0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.202.40.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:9002:255c:459f:9c0:1b9d:2e1b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torcatgirlcloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/B5EHgl7o2kwqi9hXvsyWvdtJZU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9p79rB1fqoFp0KaBK+9EfP7gvHmXQYpIlHBy2O1hsIM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:48:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.41.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kaisa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Ar4taO5UwDCoeCsGsnQCZsxATw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EpPyrmJaH+r/+DPaTVR38tD426xoh0OLHFMks6u4UIE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:08:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.69.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/Ad8JbjbsxMtOX198DySv8FMnXY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nAXio2hVoHwTjkpfsi+t7Mrw9WOIIjmHFTfblmmUjdw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:38:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.121.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:8a8:dead:beef:ca1f:1337]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HyNETRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "/AScE6D9RdPX5FS35ypXzuFa/2k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0CBOQAQuIygUE23etcyKDxhXEW57rQGbymUzWDyCfNo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:21:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.148.249.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2fc0::bad:f00d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apollo245" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "++6ExJwDukqkIyhETnzDoOiLvew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nn2MoKXgHPo6h3IfP0HkZ70T11SpvkHQsnZCeqdrO7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:04:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.182.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NochnoiDozor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "++Va+726BGVD+FEXg3YN9B27IG4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "imo3CSzxd8lsxijLArjg0M7IOIVzYQhE+3jUf3vVL1w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.204.15.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nononicetry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+9QJN8bhUjynFwNvxP1ezIMqk7c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qs9h6Fk+8+JE2hhvdxAKgBYYKux8sPVLzuy+ubsZMK8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.58.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4825 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f808:948b:b5ff:fe41:2238]:4825" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeliosReaper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+9IDh/ZNZ+1TrFvS4DAtRLLaNgw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "un7X2BshSw60vWq+y+PooyLH2WIORNwMBn/g8WeWEL8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:15:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.161.35.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:205:200::1f8d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PPSStudios" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+81dhCjDQrAtlBVvUjWLArPy5Rk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NZTUJ15imuiYxJXNeocYeCc2Ad9QMGI1ViAt2bXrcIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:40:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.203.30.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+8XUwLGCb6alurdQCOKSNJ0rzBg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BtkScH/TNsPa8sx/jNrYFNCPs5HO3QL2HPMWZxw7pfY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.228.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BraveGiza" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+8KFakhwXz7RflBPj8iexkM+0l0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8qmHBeFTRzeWbJI6Zpobw58B5MzGgiKMlKXiocVLpCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:33:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.49.20.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pnamstor001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+7cl64wvCZMXkz+MVGmysiSfNsc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mlMtK09xjIz6/KMwyb6s7pCeuda/0sBpXJNdbR9KuTs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.209.85.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:2:d0::fa0:9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=87" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thorion2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+7ML+QLOakYrX7jDdutencavWnA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q7aFEc+6RnBLc48qILF9uE+hvVqOb2FNQplP9OvR944" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.120.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:a28:48a9:2ff:fe5f:5356]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Yanush" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+6g68BwYKWb4xUoAJaatS72LTBw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0+1WVuIMACjde7kutUnhLbU/yLzwzOdNSKPfVGLVgxM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.59.34.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pangolin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+6DdEkr7AyGWRSYjIkc89cWd91w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yHXIyoIvY1kz1bXnLJG8hXCfAc1d8GReU4ckO6CFPy8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:13:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sandefjord" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+5qsOi3kDgbcmC01jaq6sA10VUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VuCw+/86UmnQDtTSNkF5C1098kRrD0ShpNOnLyn0rQk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:35:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.174.128.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:79c:ceba:1b0:0:100:2851:ec96]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Small" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+42upKoLhF1RhCN1PG4SUWe6rGQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r9eSzwW0ald/DxCNQPvYePAVBC0qYetkNr0dA/DfkRI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.250.63.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra72" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+3myvnB/Jy+/4VhPRKP6UVb38c8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qrDZi1yL2k41CgkD/gK1O6nkM35qsxTaD3/q7jBN3Tk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:07:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.38.127.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ROOK" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+2koGtNcmb1kMu+NTtkAXo321OQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H3RofIFGz0XG0oSdjSozSmh/x4L3ceJzbymr9t0DD2Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.185.248.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:5f5::19a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jjc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+2RtkV3X4VMXZKQqsUlBbn4O9Ck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LelKHgY5tiIFsh7pd+gMA2g00zC3Oa/bh6zgCFscSlY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.132.133.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9035 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=84" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jeepingben" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+0sLCmMlraKqOFLSi2gNMlns5E8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QPeK3eGbI9OFloKeZQ+W746vOxHNl7qhsQ4kw1UPU64" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:49:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.105.141.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+0oOT0cLNueokVmoVpUwpHwpK6U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CUh1LhCxul1hSu8oqynYPSTM5MMgjvI7QSkVgj5uljM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::1]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=93000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PankyBG1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+0UxgX23MWiwQQrUv+qv4gbxp2M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lppvX9cCSSJ8xmWgghePHC9Rf1F8dN871mqMxZIcbAA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:05:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.183.63.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jcmediator01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+zqP6f7KeTWztwfrmZDaoujWCcs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3EeGFRYMX+yonGpUVcGbnzvsigctngdoiUcAH/bonhE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:28:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.230.202.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:559:1b5:91::12]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KrazyG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+x4XRUVJVIvm0z/55phzXDHu6lA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/rQ/BF8fSBhi2IkjCHOwflUoLR3svTSiucrBOJvQ9nw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.94.89.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ratap" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+w3f6RXLk9lInT5kTvRrj05Rlns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bGTYFQfVvEyOEfM6MM205LCaToloPG307aUtU2bxeFo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:32:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.155.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Najdorf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+vCogp45BjZp+mCbkE4PuNXh8j8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w6Uv8r7ZyU0XYatqgswfCAoIF8rv/lwyBnXKvMdl+wU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.57.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:fff0:4f:266:37ff:fee5:cc35]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BadGateway" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+tjLTHz784434mFkxHsTYkQXs9c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "34nj/Iub3WA/41NDj3/vuwaBaPADEhEw7rlK5/BtRmc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:49:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.55.163.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c010:86ae::1]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MoneroToBigHold" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+scwf+kFQh3EzMDKBNNq+MQ7Emc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3eQLR1HUKIcHaMiJAXjxbYtZWRaO036IfcXLcSwE+1M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.236.231.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aster1skRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+r4+a+bzFiYAFp+GKtxXJ0SPdxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GTVZkM0wzXWrZ6IHxp4mbsFswYAMryWDGzCtVq/n/7c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:38:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "121.173.56.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex96" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+rluAGlZbKytzx/LokB/zlBe0G0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b28hBC38xlEJHieF/+Qg1QmihfHgOw8pq/SCGQLVLYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::185]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Overbite3513" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+qQtzzZ8ljdosUHKSrqtoU2Ao/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sR8SG3qqVL/ZywD/cg+kWUJVesGp/g1pmea8jxFxrRo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.138.131.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:1700:c983:1000::ea0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Planetclaire64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+oX+gQk/5dU93OotuihujMycbd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dM8QGhV5WsPgmNN8gbfOMX+E/KcBrw+PL2W4Ke7rPN8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.85.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 465 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2efe]:465" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "namedrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+nxrT9vc925H8s8yNZgAs7o5Amc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J8ycC6/266PEtRxTGqLAfg7Dv5TXz7HwEecE0olDxuE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:21:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.110.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2035:4794::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Morgoth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+nqoCUlJTc4sHiZeHvoe5lknCjY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2TUlMv8v1p/nwgdMK8ZiShYZNEDrHQjfzVPFmmIMrq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.12.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:38d::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hogman5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+nJHyzt3r5v2JDDCNOt2I/AlKdI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z71S1O8bKBksZhpPsXTRTRE7asAl0vW+AY+kD3lGn/U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.204.116.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:13f0:8100:6:3dc:f2:43cb:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KyleDewbrow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+mn3xRBn2ahBaJYsRqykgKkM01Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WDH/TVwVxuKWbsjcS5aBbUN0Dxze0VMiO6lGATDNX/o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:20:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.165.228.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "metaverse01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+l8as0aPgIsvsF8hVcBIGjUyx4c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A2A9HLS0YfsTnRKMmmzrND4yghMCb1ETOPDEzwup9uI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.97.32.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:66c0:1:1::34]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "53c70r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+lYeU03d5jgw+gsKSEI17SO7J6M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pRXHB60EL+qLcrjI05mfgRABzoXeEwpnSXjCpKPpffU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:27:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.32.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:64:d04::1]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kllen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+lW0/86rvTu32WfnkHKuDoIs3ZM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JOEOQZbWd3weLpFo6AX3lU8OoWawMUoI2uIcsTL0WEc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.82.136.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+lS9v2BUs/UigemTscAeu/nFmHM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m1y96fjX8ntcwOXN8SLUPh/2nCdOW9Snu6XvtzVAd58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:04:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::195]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "charon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+k4VhUXoAyRKs3WGs65bjCWhL/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XzYzEpiXYQ4RCVlmpEwi2uRrz5MelxdQtemBlunzVSo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.136.30.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:49:687:24bc:e7ff:fe86:785e]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "p8miz7ttgr5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+k0C9x5bWdpD65i8lpSHUVT69v4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9/D4ZlCS3vUNuWh5f9zz0B9MWG+qc8xO9oUv+ZeYJSI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:40:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.168.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:500c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+kyWbAS4Cyo5rVoBde4YJO9mE3o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4i6+m6/wQZfQ9mar2yjdbl82AZuMsBW1jrSK9CFpy00" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:54:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.105.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "erklig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+jsuPfNHmqFTOpJdxXAlOlfUuBE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3HQoi6Jx3CjAyu6RW5Cv3HLBF/HDjL96I13K29tR7ME" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.170.122.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 28231 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "barnabe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+jPCyAaWM9Qd5QP5p7xBYfnWop8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L0VZxlAz86fxG3ysR+YFwWQeGfjmC6G8IGPHSJD7P5M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:44:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.78.197.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hohoho" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+hkPvlK3WXUd0SsOLuSnBmepv0Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hgtlaYMYEw8J3E3sXa5TZFRAahKSWlECQ0wlPmsBw9g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.59.233.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:304:200::c48e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryKenzie2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+hhFwxO4jvSei+HyOwLNCscCtjY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y2Bj27qZGcF065Sdyl40vH9tO1okSAvttFTTTvbH5qc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:16:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.136.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:3408::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PolishWingedHussars" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+g6y7RkA0s3h/FV+T0k6tWj45dM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xkQsXVw5L/dRd1r1qxbZcJ82ZGpckBeVxiJ/FCXZUbI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:41:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.89.172.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zw1ebelSuppe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+gmvUZiTJ3RHLKMnBN1jP1+VmjY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FmUE3N+VaQNskKZoadYzMHN8hAs8vQv22+jzDUqjjpM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:55:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.133.251.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lucatona" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+er2ipy1VF3g6sk7SjGm0gadNtY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tT6N/rs29WFFNDxzm9MauzSS6mj1dc+qRpdQRbRhP/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.161.51.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9991 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4ff:f0:1256::1]:9991" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenTwilight" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+eMtQFj3816bxPHYw7LaoMRGZmA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+D7i7VjXOMBYA4SOW092QNCvpSF0Z7GHwnl/XUr8gm4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.148.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:2dd2:2000::a]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+d1bRe10pDnx8O5mNkULulyL8jw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FYsQPMdRMr5ODfWEOAAU0QRkZNTFdrcKe6b44smyPQA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noeditconfig2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+dlC1qMgd3lAoFHIpLPvPA8orTg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NH+a2MD6fa5o1fm8VucpDxSeWHhGB/KK4LHxUq5q62k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.157.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mindzero9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+dDDOMTjwL93fWaBoJBJAnF7qjA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2s0ay8DdtT3J+aKwVJxMIZmHLmnZyNH24mTd5VxPocw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:24:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.38.255.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+cs/1MeATwMQWq8b97bH0tp91SI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XFiJWJ59j5aNvwPGk2LTmZoWJHFoSqZIlGJUBxPYuIY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.254.45.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SyrxEditedTheConfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+cX5q0oYu6giarEPR7MLPEJ5zn4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9tJzs3ZFKQ1IbE/FIYoohRSzN8ak0Cw9E8s0aq8Lb3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:24:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.9.247.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MasterOfDisaster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+akZDGwOnkyOHzjMAzGxYyZStRs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7A2jYBhWzej+IoOYkUi1Fs+iH0kxjcdHpJrvLXSRBE0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.94.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FriendlyExitNode3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+aKKtx1+TkRjCGQaVW6lO6Vfy1A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Djc6wljgS87xlQCQD1HxlTRABqvLg4ls7aAljTtBSaw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.45.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "recodex" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+ZEM4qPp1Gf83Z1SKGlboYJ7AQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TSG0EuGDSF7tBhgl04CGo4b0WeaY9EkfJriFNKc0vMY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:10:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.132.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:172:2f66::2]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MarinAsagi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+Ypw5UJ7/xEWQAEfeuMeU37PHdI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NMjqW0FRMfbdL8q3tCi9s+Nc/SpMiJVpUY7mTcmmgeg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:34:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.239.113.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheBigShow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+YYN7c62K3SnKLUO43QpOsSDhto" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yDwH1wXGXa2qgDhuO33v9l26g14gm6MxMRG81YPDJdI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:46:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.123.98.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay35at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+Xz3bZEhrChyfCKQJoGptTmrrpk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "72qOVlxj6P0iQW+ivNWYJ4s2BiLa+qIGpb2xFDZnwek" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torlux" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+XlxSCQN6sRt6+VRMdUZH5JjSRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AtrxN6QaBkAgVxZZ+uZSz0s8IJvNLTiUE6t4o/BIhr0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.140.230.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+XcqyLVxAMDSu6j02llWw/GTmA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rpaWiHl01QgrerxNY6PqxC3FJy0It1Ub5qU0U9X7mWs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10060 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::60]:10060" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididreadtheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+Wy/xcB52DngGQKAKnAClIbSrYI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3ZWSdIlHp0TiRr3Jazth0flm3570zBUn09etb+EnUIQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:55:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.182.232.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aloha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+WdPRaJcqpd+e4coB+CgcMEh9fo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GLVJoDRZAY0MYD+7IroRXSFx8x51yIs44y77KitcnGs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:58:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.136.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yihwa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+VY2CqXx5hBk4mcf4jHFBk0q/q0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ywkwx2dzR+ByuXXEphBYm3YZ/clUPHDZrBHNBiUK6Tc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "187.94.253.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0137" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+UCMFEs214pHursLtT3/Zx0jvlE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zrld9WgsjDEDSdEEYuXnd554nTxaDRt7b/gw6dssdDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:51:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10137 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::137]:10137" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+TivoqXo7ZROK1Bt4smcz1V4Lo0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NPIkPfu0Pdc8Y6dOaGbNo1bssWcLeCYRyf4l7N6fxH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.8.1.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt98345" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+TbHS1yu86PnLqZrjyLeTeBot3Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TP406XIGiXkUOuv7Fu6RSZzaOWftsIa4EKm58nL9bOo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Freebird31" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+SRt7ytlOAcjbaE08q6rED1Yq/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UrtXQ5qcWRMXbOKnl+iTAkRVxqh2oepJB5f50kfecyU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:18:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.88.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::3d8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+SLCP/aKqtvSyaOERxtjaUqHm6U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y6YlFvFihfKegrgtH5lDtR+x5FUIlOy/nuedvu9Pzmg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:59:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.104.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:1750:680e:2aff:fe12:6258]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Feidhlim02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+RkxwlNDwbBzZBtcRtK92/4EufE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Xm5MN27zTepNSAYqQM+W3pj1tOTZq5vX+G5tU6Aqqw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.134.234.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer80" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+PbanW3XnJ6jxov59iazabc5j20" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4aWdMcILhqTYfMsNCykf13FC/uP4f9DISNOlHgIrAtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:14:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8280 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fluxe3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+NJ7FjuSR7Iyou7mjdi2mGlcKN4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "esAts+ZacxdR34/juYl945/HWtwEg9Zf21NZGBfo9I8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:14:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.18.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:120:4023::110]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vanguardarchie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+LYtOjZ/cmzQEeyakxtU9Lndm7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cYyZNeOUXjjCryfucjDN0+VdQis6etFagJdms0xvKGI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.128.48.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay17L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+KqNjMugxfKDbeYxXN+m5KMaCJA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "54Eowte4mnUUPeE1wMYTaWRTUUlCvkQWK1xOALVi5z8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:52:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.34.183.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27a8:0:a::197]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+JV9YeKaYmQAApoDpjSEAOdQJgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3IBvWofooH5dfiqjmcoYE3sgg4bhxjXUKVqSk+6RCks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:01:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.161.139.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bwanzie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+IchsNGENhrSSxTP1WgygkoOefI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K4P3L6G+7kmxUATclMrL50m860bWtvTkpxMwa5HIqxI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.183.163.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:2:d0::23c6:2001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+IZDajRJe7Cj3iNbLsO1NY6Hw7Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DTzUjN+N6V9wp4GW0fP1p8TWvhktUdz5Cd7cpX3bZCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:40:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.223.70.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9666 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:8105::1]:9666" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "screwTheNSA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+ILkpLc0R8VhYXAFyOaSsKcICAI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T6kEeo7fN4W5Rw7I4VdDxlk1ghmBkV8kfwICWrbWGAg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.70.197.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay17at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+HisoppkT/Nh2Ziwckhj78B3rhc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wMlC8OkEBCdELiM7ktg3UYMzPA5HeLWKiVQzpDcNqh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:11:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bullseyerelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+HOiOCbvm4I1+2Nd7ENoQhFGWXs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "esjfv322rs/7uWoqTmWDM42FAViXfmzm4oKeWrcDv7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:45:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.165.122.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torushopyard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+GS962bIoR4glFaEZJnC+ZVDV5c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XN1dfVzqgzPwzvU3GEdkX80Mg5HMDD4Osdb+MZ4/nVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.139.3.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ph3x" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+FJ5719X5socuHGGLDqhglQkrbk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1AGGFvUpv3TtLqMby8efA6WHrQZbWwawXppH9cB8L8c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:31:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.59.119.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:858:2:30:86:59:119:83]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+Edp7i2XtTgHkq0g592DjdW6/0k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ALZhB9XqdSeUt0Br7/c2tpADpga1RNgLo0aTmvcSdJs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:44:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::226]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeeEmmCee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+EXf2w0uyr6/hbN9CSQOaZagjXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4SHMzeywn5n+eNuu2QZpiBahEBpuaYuCLtHqK1vYKjs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:17:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.195.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "udeu6Piengui7yoothe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+D/VLU8Uzzl0zrzxE0tWoBU7yDE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Th2QLQedDnt+0guVMvN52+Yijuo7s7TP5lBjueTJZK0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.246.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:8880::1846:d8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PXArelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+DxpnyX1m4Jy8UXOpxy75lqlkdA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XWFvDO08sEtsVcw9LzrmAkEoWxnoO6JYMQtZnUdAUpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.150.132.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cyberbits" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+DZEZmPx64FvE3CJVfEF0LL1yOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7gjTt/7rshqQg+G2udoM/CLQIppL7Wy/sOpXu1TKO5E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:46:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.129.32.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+C4iIRIet3ot4+aUECcmUCfqI3g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FcMxXKNDXJldtz7Rk8lF0l/dvg1VuSP9kb6+Z12QjQA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:30:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::11]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PaellaTeam" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+BZ/TmhM6oOMyCmZI3MpbTsdxHQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w9v4oDojTRyP9BEmVFq2NbMHrD+QFdDXlV3Jis6nXu4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:58:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.156.41.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:8a84:2040::232]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TARS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+A/eJ+/LP2p7TizFFxM9v/p4ui0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iNerMydMXefxRIKoGD1F7hQqbheoNOWapzQXNzOhPOs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.183.48.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:f900:1:100::53a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Elbasan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "+AJ0q7kxN4LEdPcbwX6ltL9cB+8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ofKhXjiktqXx4feeMaUeoO4jQNGRlBZR47BkqBAcbn4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:53:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.171.154.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uncloaked" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9/misorEfzKN/sqmbFknGfzOHo4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "109G5a+AdjYEwS9LqQ8+jYix5BtSzebNcyhYEjO/zW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.121.103.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:1:9c6f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yrl0tjdevde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9/bHuh3/pNSnKO2u0RxE10Zqowc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yWyRoMGT4+ZuXl80Vk1qCNmXJ5fyw3WUTqsZ+7ojvkM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:08:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.252.121.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9+1BWLcRRhfo9zfGXb6H7muDRFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J+KpxhSH6AYW63n1WYlIGEZzbGnZxEBje7XXbQDxzTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.42.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "landsend88" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9+XNz/uHVJUyRzGUOT5hOFcYVPE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nng4jBMcrdsplSm+2j7n4Faoisc8JjEQT0/m/rg8zQY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.126.111.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mstirner" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "99rv0IXSQDkr8eA2nKgRm/Ikec0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uCTzhqBQbPRIeN+9qMdOE69bPwtBa+wQ97oUtyh22a0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:45:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.171.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lupin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "99C3jjQ1HB3+A+LIh0b9mZsE1F0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t9iCk8GEqt6o08pp8+Ri0TiRKdX2/JIws93xXyku3lc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:57:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.211.247.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pooclown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "97sDvHfOtu9mR4xYo0MCiVjrdpM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rt9Wzma6rpA60/AgPoDKyQvfeqtwqz3vlzULPc+aoVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:55:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.227.173.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay0vpsfree0cz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "97Ak2wLGARhcIC4m3/0q1SXBajY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C09cCbKKm26qa7L7cAM8yxszRFJp8NA7b7q1s5nW2cM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:57:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.205.8.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "968M1MRsF20cj42h02lU4jcGmFM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7c0D1zp6V3AIlSWbFoDgOeTtefxP1Y3xwwpqJ9HQBlA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:46:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.232.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:ad8b:50::b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rockstars1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "96BS1O6i9LyULfsFSvLcVKKjfl0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rSO8gfk2xXoEKHGqE1Z5yYN7GW4F+q0zEatSRjxdUXY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skankhunt42de4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "95NwukatwDzBCGaSTuSjxHC6/pM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5YOqam90+vU6dqPbib315dZF9T2hVI85ZicQGSxjAlM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.176.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KRSPYCHICKEN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "943eGCDInjqQjqZ2DSiHTP4EBm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "35ozNJaPc/hsBZ9NqEeMuE/AIaeg8aVxlIGi9wEzXv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:31:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.0.21.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Trolling3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "93EG7j82athclbBplsynq8ZuySI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R8hOhopd1acwBu29QfMVs1FA7J1KflMy/ovEeG4LM2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.83.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 420 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zeus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "922OqGQ2i60Y4kFSmWQn0TF/Vg4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kKhmTHtj0DtlHb2KduCh5u2bdDtXg9cPdxDiK5d5Q3U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:47:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.149.155.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:6600:0:135:ec4:7aff:fe0e:757c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "92vrikrEG/g2QeOYgC/hrabSUxA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9SKS9RqcqtAz6SwjE0X0P3xYX9SfjLf/TT0SUGzEJxw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::210]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torchon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "92gkkKgwH+56u6xkuBiCalOboag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aY/wgtGto6I2vhDFAb9dIKahM+BZEnPF1LPBTzfKLNY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:50:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.65.188.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:240:6790:b9f9:2aed:f31a:b612]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masstorCHI1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "90+qJjyQfw/dfRP6YJLYi63gn9w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Y8/G7OtAxstAgplk/Aq3Up43N506bgCPKQ1mxobJ94" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:48:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.245.134.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "90qb3Qyi7+B5B9cKoYtD2SPj50U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XP7mBBNQe8eNj8VNkIrfEPROY5955zI8vpA70egi25k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:35:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.185.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "90R+metcvU1euRPuDjWsZCtcHvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FZXFOALG500QzlOS8BrzAMv/7aj9qs4GR7NclFD9p28" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:42:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::120]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "90HlEkyxJwDalGt4ybLdF11s0qE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7vGcUb/u6SJGn4LLNqJNcbmpDxrzDB/pZJJtEuriyVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:58:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.154.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:600:60c::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IAMWATCHINGYOU" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9zcfVx3rKDiRAIoXXt1TO3SnQyk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x+nIXzm5yDGVLKhzIznrPJqA7t5XPTB0URE8JoHxl34" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.68.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oppaiTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9zIwPa4BpO+a8oEnQllQtJTFmSc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c5sbGjpQ8Kpu0bgtu0drPjXwLPLTiIPoANWcwaC/LYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:51:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.97.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9zIbKu1mrs8HyxGIDMlFPrN7OCg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "If81Ksf3z4HrQC/5kBKubsIOYsbFKyU+hjc27/rBwbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:18:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.146.232.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NonPersonallyID" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9yVcI2FQCb7C+K8boZ5qsuU0Xnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FQYw7SnrVdzHWqGs/egB3lELVV+u/XmByZcKaq2YNA0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.95.141.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "knowledgeforrussia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9xT8ioa3bNv0W1ZzeiXmAdebXI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+glgijYR20GTsTaNMUKDrGK3mJ0vxGSK+2BqBKwvfkA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:31:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.209.242.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9333 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "phoebe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9xBpPD8IaBD+GZEgjRLBNK0T0kg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xD+6q/C0EBjcXCYk2MRgzrGYzFZKEsaxo0j4S7FQay4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:07:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.79.15.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wedostor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9wt8XNctdMf58tyE+p0g1RuhNhA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0RvF+5LOxGGEwORF3rBvgyj5zAuOs0X+/EF9lmDfLAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:07:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.28.109.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:1::4205:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dragomir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9wJiRoI8YyKSHzq4dTfrsCCrAeU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Esldu8uXfahoSP3PDFJU9hhL51xwZo7y/3yQveEDjD8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:57:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.249.90.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9wGVPsu2km8pkSaYB4hY7jwqMUQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8YOB4uY5ZYm+sJYGWdD8CDO4UEZ+HBMxZEQ0Sg9RWxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:52:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9vwFml0coFzbuCToVEaMP6sebwU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gMEVgZQubp9PvA5UB2eZb6wVuXRSnul0TesxmboE8zc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:27:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::212]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt35265" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9vn5QpEndgZvRNi9rOycXNo2hvc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nOr1xwO8zr3+lJHhe/emUxBAsAYbviRNEP+FFdWZcS0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:38:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv124" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9vWbZLJJTymJnoByvLDms+BwqRc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lpqb1llubfuHkG4V3Zx4etXqQrGEMVGR5ujwWGp40g8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5524]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tondro2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9vTI2Yp0MP6pW+wel4b241KA+hE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oVw2srT+SF/5miYDvEi1lMpfHFAP1U9NDuXnECK8YiY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.16.229.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay22at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9uz9MaRvUXTCVmDhbDxi55l0+d0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pd2zXN7QGpNm4lLkT9AQOpSNb/d3zXyxiN7x4Pqtjhs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:25:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JPsi2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9uxGkzzo1PrVzNqoscWjd2hfxSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QEBCiKg+ooOy2zMZjTbBZEPBRtY/TINTl8mR9kkQDlA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.200.99.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1158:3::1ba]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9uW/yL6lqfMy7wmzitaDKv8T900" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "itJ5aex0SUWs2SnxI9Ij0yc4ufb486v0v4meQnqiR70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:34:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.67.104.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dhitechnical" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9uJP2w0gjUApLtknT+t/r6UprCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zTsmxmQXBMSTMZ/v0gF+bG5m8iBuFQ0L/DW3jV0wsfI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.250.2.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "interfesse1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9tYAzxOzu+KpGgZT8eydAOfLOms" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HS7BMalNGA+Ju4hgXYew2ohhkqNnkJJ+ycmDJC1pI9o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.208.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:c603:b01::42]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9tNKop/FUaXhcG0WS0SAnW3AkkA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BO1vZmS5/guNaVvooj6RtnvgtyI80IHKZK7YLPR7Oy4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:10:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.115.60.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tRooo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9tMLWt4T+Pa9yQ6/FAdBAqeWKg8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6ltlGpvrn5nEatw1FHZbryfQRsuFXtQKz6KS8qb6mU0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:13:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.121.52.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "imfrank" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9s/rfjbdF39JfSTa0ev84nD+rhk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gERyqYgDRCXkVaYSYyf/ScWSXrf5SopQDkb5sLWd4fY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:56:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.207.41.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=890" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9sqSXNzRsS9pOktux56pFNzcmAA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z4hEU9j0JsDg75WzPzqpWFeS2TRe9gBEH8UTzXmuC/o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10045 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::45]:10045" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bartleby" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9qyJGSkzs3uJ9t8sTJvHb5iu45c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WcBE0FLksGGNvch1opJWwBlKWVWnF1kasVrIVHEKcvU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:21:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.116.34.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prawksi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9qNY3TZ7MoLW71gkydReGhnH6BU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3tnGAQLaNUONUj0wOlag6pulzsFnonw7c6VZH4l1HB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.160.102.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:132:300c:c01d::8]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9pkFB4jYVIl5CEh+CLRKP8vXX9c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WqqvrRzhNXHqmjLXVS3q0cQ8cAozg1fQUDcyt0rJFpM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.133.192.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OhShitARelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9pMfRlos8eXsROgrpS5IDvM4JM0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EZuuL/2BBJXEuGQmhBFWweZg5ll2xCaccUJ6pUfAjBo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.28.101.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pretzel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9pELZRb6rHdj/2uKUF2cNj7I21Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nDGnVEOuv+iRSs1NPG0gKcGTW8hY0WrHljs54/znVus" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:43:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.174.93.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Infiltrator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9pDgKE16uqIjF7yHFwxnw2rpUKg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MRAgTFxclu3jy8Mf4Wg/jfwsCxupnOKscS5VmzqZvfE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:00:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.206.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9op2Ui01b4m+woaImjgiJQVnvi4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X/QdaOqUMShmtf/7HptZ8cw1mAELNoaFHxUPaxOUvF0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:16:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "poiuty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9nQN6r/V9iYS+gJaUHnqcoRrH2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "khSaVQqZ26mzJ4aCLb9CqglGHtZs1GHe3wTODsMv2G0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.204.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:1a:a093::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maikastorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9nIOSRpK/MrRrYpvkCK5AlPFcA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VlL69RRd3wdDudsky3vI4kBU4kcaFIo8LUOFzWwRRVg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:21:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.255.219.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9m26Kr2UHMuCphQ6+NHNPu8WIvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KeMnRzCsvEG/iQV6mOw0L7l3s1TSpk3is0lWTR7Vdj8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.187.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anotherRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9mkePrfKs8h2qqiF5oAbY9yZjDk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0cGX/KRVHfkX7/iywRPoMyrjDAl8Fkedwqte3ChHQ9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.217.4.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ebTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9meYt1f/zAKEHik3+PWabfsz7TY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NoMjmdUR96C3XSkXc/lKyW8YL5Gz0oiTzGIieYGxw8A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.238.236.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1337 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:2034:1631::1]:1337" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex79" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9mTl5QtNIW5ZQNp+nPZT9fncVhs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jJ9aFyRAXSqKuyHOySG2v5DGlNOISxaKC+K1SwqpWog" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:26:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::168]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "saltedcrimson2o7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9mETHDA+KlkxiZ27CSugNCMIHB8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WoBikxg9n/6MSTtSvUDupb/oYcrMlhobGaqcCqEYzv8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:52:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.170.17.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9009 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9l3M1dDn6UpIScN8pcF3zpwb7Vs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/WqHVBhKB0Of2dlplDrpiXAV94V+4IEQISRwTvB+QE8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:09:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.43.195.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BuyXMR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9lBQLpCRZyqZBUuzR27nM3aN0/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CNuNliGwzw2l/GXS9iXls3HvFMiyhyGwQLfXxFzNnis" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.187.154.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE72" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9iR+TORSMaC0Q3f63IVJ6C5P314" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sCALJvVDxFunMbZFQN/JSSv9HeC6Z4dXorW7iAxoIGs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:14:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.67.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6030::4dea:102]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "giganonNL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9iGr24+4b7es0nretwf5Oo4yAlA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4SkzeF8wTC2lacP2QmKurFaKxA/MxSwbMGPjKVqatxY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.166.80.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lena" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9hyLFEw9dp/YDjnrWJyn+OYeCMo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yOur439IGGsrxCNIm0wssRliWrd5UzaF8Rb9xJXL8Fk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:48:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.46.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9054 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2db8:13::91]:9054" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oromis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9gQTHcxDA+UduHagF6PcloT9Yms" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/X0mt/WsXFe6llN32eyDsVWGABCVX6JR/lbleFWeBOo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:09:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.112.131.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis72" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9f1+9DB/jFw5gUeHfzKp+fceIJI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q3TAaIvO/6w0zerMM6Vq6JmKBsL1vCs7NZ/OqrSYL7E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:46:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.65.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8360 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6010::3aed:101]:8360" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nap" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9fhJeznBAivKeGASOQ4f2lWrc+w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Suann9WX/IWsD83vJTv5fo1/DKrdD2mon7rschYpT9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:34:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.73.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:6bc::1]:11143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trustn00ne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9eG5a/5wD/i/Cd5aAhgeu0jiGPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C9Q2L6py2FNaskvRzDKGqMMA7nedv4QmFzpDvG2wE3Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.234.250.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "summ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9cdHsdd3tP0zQgOCADOCWZLGTGM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2N08rKjOXpf3z5J9XZVh7BUnbTJgC08koPVV672cDiw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:09:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.77.4.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 27015 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 27960 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1280:101b::2]:27015" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ansarelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9cLrV4uYQgad5WDwD4CLa9NVTio" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t0zox7/MVNTdb5I9hcTinmY8N7/fYsDKUM9kRJQwQb4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.78.187.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "golTorNode1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9b8sg16G3ykdx9ht0eFUL0iH46c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V0jBi+Dw3gMXCMM6IruZ3Al8wtMJFNxrewI+n731gkk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.190.109.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myContribution" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9bmVKmcq8qK2dm2Ap7vSmZAAl1w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fe7xCtMi5pTDiZNh8WQ2p89TGcbuwY6bE6UF1AP4Hbw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:34:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.144.249.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bistrv1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9bWP7kRXPDv9fRdtkYultAV1Gdc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4pGvwusucZE1ahhOIHdshKzcrkidtYs1oyuiqPutgMs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:41:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.47.227.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47a4:933::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marinsThighs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9adl1ZHcBSAeyqLBjAlbHRcIU8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aZFKQu+HE3l2aNOa1vZ37fHvHEdy1TGfbTi6cPhVmvo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.4.166.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Torbuntu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9aHQPAGfntTpdqC6x6R21+r3tT8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uv4KEPTUWrkQXwawE4ML8uchZt0IkAkjhhhkBelT+0o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:56:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.63.230.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2601:246:c200:22d2::8a7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WireCatLLC225" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9Zao+RSv4vB3Oq977iyoJmN7RwY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eB3s6dCHeSnplAfsaCuqEbET9UHj44DDQbt0UDyGZm4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:30:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.45.225.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 45555 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc52:30f::1]:45555" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9ZWaHxFUgH0+Uah7zcpuCWNTV50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VK1B0IBadv1V9s7eceQ4PLwnnRAf45NGojAwSfCxBqs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:04:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.54.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9480 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ddgserut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9ZHbDtj63aY43rWZ2LCTCi4SL3I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "smiaE4zeIRprnslFA3iYaeYGfWk5V9bjUZwvpDGccf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:01:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.36.218.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18364 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:a140:10:e7f::1]:28196" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9WEqdUVYANzUJ8j9kZ71zOHVGVI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V7lSXlsnAAYjsOjr13KimQElNizFcefA8sH05KfDEe4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:19:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.93.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MeowRelay2718l2137" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9VoP/Zfxcq/niEaZ2hvwjA6UNU8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i4dztJd54Unpzc263NxNWozZMgP5GrTs+HjgH6dh7fk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.59.3.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2718 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::51ae]:2718" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9VR3JBgobBPxnAuKT23Ao4XqC8U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OHvt0sFuyOWaRw+kox2VAZV+SJe5ymrQFf8XoPLTGWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:45:457:d2ff:fec3:e823]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whynot2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9TGwuRvBWmjBtk6tj/eu4RHgYiQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZXMpgWYSsE6ywVig9C9hII+BBgNFhC6/lhZAg52gHJk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:06:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.134.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "1blu2DEicebeer74" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9TFplZIj9d9zpwX+cmHxKdumZUU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RtdJB4oYR1yFVhtM63qB5Lxn4hoJ6vKFmboGgfplelA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:53:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.44.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8174 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elhackernet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9SYR2n4e4UNMi0U2jQhyxDegKVg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M6GmfMUOEWI9fkTOCu5b+vTI5OKOYSkvMfoI2IrfOqI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:27:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.126.217.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9SBNmKs4lLgHoMJBImf0tpukkcU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2KD2I1Fo4nM2kmNpwiDrawu5SJ9JJVa6Juz+1JJLkwk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9Re6nyQTYTxEds4rgsOgPGW2tnU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IvbCcfGlMA/AvrEPX/K9Jw8e1x/gpA7mLS/DwUtFEcI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:07:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::70]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9RZc8mllonyQtisBYUHGDj5t2fU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2xJbCamiKRLY0Z9V3dNUtEtepOi1MA24wp+cxgC0th8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:17:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.246.108.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "momo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9RK0oEOFnXvt4ojY7iEWPXYJdPg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iVsQNZXlfLwokiJIEBI8X8SjNokT6mmJ51DIZ70pvek" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.189.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flowjob02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9QzwKg5qnZsl9+siD8Jve9G3SZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MC1COBv9OyGFsCLBoHc3awUrp5Ck7JjQLO6EY7G9rRg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.242.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:7:64d:547b:27ff:fe79:b9e0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trumpChugsDick" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9QqPFsVVrf8+WCew3QNc6G9xoOk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/e+7X+4pXoL1uJXpVB3nMGMlw7TRCRhftt11cxhDCSo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:00:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.46.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:521d::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hypervistor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9QdV1QGMI/bNEV8jyVzLLci2CLE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "spZpvC19J3MJH628GzqCKrQniFxxv7otxAfw2sH0Dsw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:54:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.19.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:134f::2]:9030" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KingJasperTheGreat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9QB0jIUvo6hTn8f4ZVIaL1rS+C0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ApaBTsLUaCxx50rSWGbIEJNiFaxuT0LVEZjY7vcwPVw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:18:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.159.57.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 61461 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 61462 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2003:c0:bf1d:c500:b2c6:8ee0:75f1:24f1]:61461" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DidItWork" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9Pw2fsxbpfAXelU63eESAUhKHaw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SA4ciakIduqEWoD3xfxpnuhl5hqqFxNli54t0m/YsK0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:44:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.151.198.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9PuagDCK5xyoBX9BWN1rPI7jdfk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RtqmJDAIfPnDnaep3GIvfYBMRbNPh72AD7G6MKbexPU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.15.250.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:7:b74::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "puertasecreta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9PYFqiHEYzzLW427wc7uXFkMbc4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V4nBgyFAoOZ52r3ceiheSw7bKtJXNsiqvshWfjcr1AM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:41:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.231.93.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rodebardwaterski" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9O1Vp6FLZI+1TJAhZfgB5JN7Vpg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lF3Sw8V+IdlcOkPdvTUL5bIbIVJIfr+mi1Y7Xpz5gZs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:02:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "143.110.156.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:4:1d0::fa:1000]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IQOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9Nbpir4GWA+KNTRwZSA33YZFtHQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9CSTDydSYe/QO3hNGWBLEt0+vPBAKCf2kLytBkzxlCw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.42.125.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "XtorX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9KTXjxbpoDU61bvvRjLHAi4g+yA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Smrftut0gGwqGQfviAcudLijIh8k/ni7QflE0OUqHg8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.171.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:2000::678]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leafspring" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9KS5adJuZHXSqph5BPuFYbzc988" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FENY/XZIdTWNQnYwunIZ53JxPTj8Pnk/HZ/dY0+CobU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.38.0.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9528 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Islay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9Ic7PsMyW4HcNsfjitOl7RKy8zk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CRfrIUnKZh8XhJZ2YhID09Olyz9OJT9TtdfrOMfffoc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:14:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.23.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:17e8::1]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Elenagb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9HsTv85O9Ize9sTXx6mSCOu5crU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GrNb8ZWaRqWBIGg/Vt+muSa5Typqs/d0iS4DevfnT0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:00:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.233.100.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9HZ181Lng8TQ3BUFbrkdyk9DwL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eaV7Seaw5ifzJlh/ZNkNCB86pxuWucwNPerUeq4iaq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:57:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.195.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:747:4804:22ff:fe7a:e606]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x1ea7deadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9HXlmH5EorexQ6K+4/gSju/X5aM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H/1v1dYOMpVu6Hhk4Mq6Kd8+Fxz1zHstaRIgIW5HP5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.45.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:47a:de1:ea7:dead:beef]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privacymiddle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9HHLAAB5ctwtx0jdV4XABaTqrXE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q8KyOa7A4rWdMLhtHwlzhh22sctnrelpxHADu7/aQis" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:32:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.12.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 500 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:60:cb7:3450:e2ff:fe8c:ae3f]:500" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "origan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9GhU7azNFoKP6q/Gxu3cB93wRBE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CsAZwZYxknRL/ku5a1QR65s9w2GDY35z+CtFqoExOvA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:11:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.32.222.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:e17f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OpenWeb4All" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9EUYUx1n9+yXZFqT1bXhF7WHxuc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8F21R2UoxGlQO/+Fqsz/HdoA+b6bvu9E0eMW8OQwYRw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.6.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:ed17::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheCheapBigfoot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9EP+12Wx8+/0twnCxQns/c/1oo8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hlwCHr8uO+daSLUMVwL7FvktZbzFxuGQxrpzxqQN8ec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:18:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.128.255.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EvilMoe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9CYydc9UpoNu571SexMog2pvBuE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9CHe4Aszy+Gosz24quh2XrAz0VtMAnUBeBnbSl27i/c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.102.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:266c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TaurNuFuin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9CKTdDsLxKM8gKVCpFHubGSyfek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oEEQIlOZKH11sg3kn4XUf7IafGGdrVuOBA8QIz2L0es" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.26.174.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "clubaura" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9Bz/GJ2oxMACmsyuWjmTBlIYyOo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8ZiKHsCDfo0Cwb/SfJKqN7VVbuuK/UINQgM0qasjv/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:28:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.81.44.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt85328" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "9AAWxaLXRg2lzL+KI0YTXWu8PdA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bNbopgugc4CC+sbJ+feboUz44ofX/YckTteWrXFiHQg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:48:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PubliusAnonymous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8/nMlV98WZOPJEWR22uymct0Vac" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nUCbUZAYvul2nhMyCRTyakNazA2M+EvIQfbrO1eiayg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:58:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.74.96.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1917 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 1953 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.12" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=85" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Merlin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8/P0kAuHz0prSn+UAlAvxFe3sfw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sXasAnaavShLN1UX/kwl+BiUt9vwKRfuck34Uq4NmT4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:36:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.35.4.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ganymede" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8/D3F1cZ4D7QX2oEDx5pF2CanhU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xgFVheVeD5vT28ZVzyzKr2PtA6aEQYAqDzTONFBr56M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:25:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.208.141.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=840" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pkj2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8+1WjMWvfJELo79gl12EQEEMep0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C6Fnyk8mFDxQU2ckhdX4TZN+MOnAASbplk5f3fcT2Lo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.127.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "teutates" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8+seH/RaPN5OAvvU6AXU/DekrVY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w/7O+Eq2L5MvALelqDrgTyvaB5suceESAGVJQCL2F7o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:54:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.190.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8+bwFnHAh60xi7pH/NCLZdGkRg4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YgAHLh21Tk+R7uC8ogb025Srz+pz0tk0i/9thGsZMrM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:18:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "89er9Qz1EvyTMjcWlT9cnsXbK5U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nm51Y23b66NPwR7e1leT3nxvo5iOMtjfTSmE6GOsUXo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:46:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.5.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5e:dc0:94bb:2eff:fe23:c95b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "89UTNtWowVSJyQNdKyKTKD0FF1U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tfK46u3u+o3aK2C3lWLqXZan1WB5ZZgTWvozd6/Xpyc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::d]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ArchieSoftbrow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "88awEEU5JFmZv9GUlZvxMbPkFM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UXFR/rRYXBKwkRhFRKkgxwAlQQC/0dnXBacbOJib/MY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:44:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.31.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev4b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "87LMjCqzMRUOCW3R24gQ5KQ/OZ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w1FBh9rBR6fvFMhYrxiBCZEsaLSO/dst/a27Ff2RCjo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:50:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.116.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:221:4134:101:0:1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deponia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "86t6xnQEjNVq8ydap4WZZ7sQ4AE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bo6NLDr2Wl/52WIGGdZarXpJiSU4NXm02WjkQa/0KI8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.248.85.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 57523 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Reichsfunkmast2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "86lYj7RfdtpN5bNQxCXBMPb/qYM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vBpP9skO1THV4qzTN8MxRN5xO7FjJZsvHUYigbI0nuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:13:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.147.108.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fumed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "86ZMMsHjs/1sQezOEQxh5Gy3RiE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N1bcvSGg3A3vNdAsK8pV8BvHJVqz4dcYpbRru/ugXkA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:51:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.109.1.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=790" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "53labsfmt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "86QlD2PyU7ZW942uccdd1gBjjpU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9eTxZ3STDecaoUgAHIIOUsSxU1+ZSVeUnSwzKR8Q7ac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:45:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.196.37.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1:dea::111]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "finite9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "86ExAvHbplKFpkyfo0ZvcqWqBT8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i6I5E88/RBxiFkOKWnnLSvs/XiM5GivLh+NfC9Cj8YU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.233.125.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=610" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ccvpn8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "859XL9b3t7July8unHuC6puq1Vg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bX+a9dBb12cpMHDag7GWeZBbyWC7HuWA+mMd+sy+eJw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.152.32.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:9000:0:35::8a9a:9dc5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Dingle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "85sr4PC53P09Q6qhLWvhaxSxOnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RnUMEBbQFik6foDXcbOuL7+CyJHrMVse2NvWF/8Nuyc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:51:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.111.179.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LostArkLux1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "85Nvl8FO/P0YFU30RDuR/t0HH0c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YTPYePG0DyITmmQDs9dJWkBtNDTmxykPvfPpLpeuAKc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:34:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.38.163.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:83:2908::1c4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ichotolot64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "84+1WozKagDN0CSl6iz+yzikjhU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F2QhMyf0zdgkGcEWDJVJjNhSiAjGadbew6KEk8va9pQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.108.118.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:86c0:f001::d0ed:e1:d00f]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashEagle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "84ieLGimc4SMqQlPb0o2U9dpIQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7WlLvK7UFYkzZeJ8qBeUA6enaeXRozt6sac8JInjRpE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:28:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.29.163.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:b700::5:22]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt81678" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "84bSP8WMzuaEbnBDg8hv/oRPRNI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NY3q3io5CGnJned9XYTfoDMnxh88XtFUcSjKheZ3Hpo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bishop" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "83mCaQs1i0+DPWl5F+CcO+ekrU8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b7S/aZvPGtXd6cFGy/hs2EFY95jmeqLGq00bDN3jSNg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:34:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.204.177.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "electrickavenue" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "83BvJnD9IV2GPmh6qJAN2m8scLM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0mo+iqXcmdJNkXW9dpCS0Ptf4Mx5DVyj9SYoRm20aiU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:50:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.100.6.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gweicz1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8258h0ZkkHfaJUOX9yGFGrvUtSg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5UNm5zCowJ4qrB+HWT72cBXrIAv4nnRsQR8R0xwPxNg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:11:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.70.129.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 56905 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Iter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "82iUSDCbRqm3pmEsVMIFuvCXHjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8jBu6j/hrgD2JlvWnduFPgRrYlrtgPsEoIEMRgWi6NY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.150.130.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:806:3::94d8:87bd]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedSnowden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "807mcxIlGIc+cXwSjjWjibcseDc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DMSGhsAK3eIwOGitcScBTbBJdXxgY9nptQSqm4wjUSA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kaeferbohne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "805oGvgibevJE1pI9h3vn2iWa6U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RKi7z4ly8rDmxMnCW+GXY4fsl/MlQkgGReWn9AzDuwM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:18:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::13]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GreatCamas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "80sSV9sWjUBrV/9x+KOHauAZDRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "84soY44LsCiKNYaL0A2/ICOFgzz8truJqIsctIggpy8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:18:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.236.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 56395 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SemiPvt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "80guBGteYR/fJ5r1m3CoioBNFHA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DsL9hOHrD/W7DO92M9HjUt5cqrl9+5BNMpiwfwkueN4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.39.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8z16cvB0kKjYyYhBMMXuzNie76g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5R/pAzg2Je1PWxBe7WjacB9WYuK2xoNqietIc7kXhh0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::142]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hogman11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8zcCGrqfB/x9r4WcB9dvovf0ye4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xCxmmvKJsHUL1DEOqx8DjcSbeAsa5maZz2Yk5DqoKTw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.88.196.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9004 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8xRYDqIss9yxNdZOkhCL+4/SCa8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1a0qFfO8+TRPPqYEo8N03pyme2EeqnGN0NQ8F5S8bBw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.253.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:1362::2]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelayByBT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8waQuiFfOd9up3Qk3xy2tbsP23A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tBpgywv1GidY735fLTXgzoHzSIuLP8HOKhkHdJHxhjA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:58:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "125.229.28.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber52" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8wRPsqjOc3nS+6m/1iTv4YD0HCY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W9ljOieHbb5AOgbgSwI63HgauhFMlQCkTQOPjg/876o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:33:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::26]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashDeer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8wMX6f0MOlYFiSjWRUBnK1mQLR4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NxLvgcIOy0MJHLr7WfedyS50rqVebtA7CZti5zTT7x8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.25.100.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:12a0:3:24a9:8838:3642:9244]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=690" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "runninglizard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8u1QMrUgIee627uC5llPGocv/Qk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DYMdXKfz9JonZCno+0v3YXLyM4Oqeeeog/HVSDwBq18" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:19:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.191.217.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Krombianschniedschn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8uYN4POb6oJrUOthmgFK3Olhk1k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jdO1WyridoqV5ctxEakkM7amPMymaXWEVP0LmwpnDjc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:11:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.117.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:d8fc::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8tyt+yhdutchjg76BZhxXbqowY0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5ImfbmqLSuyUDmv4cbrhVQpD9m3/T3g9DQyBlW1ukuQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JamMasterJay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8tevVhu84yKhZC8MI998DLIr/Gw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z7FZLd5Z6tKW0VNFmDJh549mQpZ4dPp76zLD3nJwBTw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:18:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.195.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DoubleX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8rA+W8gatOGLrYYmZ2xtEp+lwxs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uqJ+44JRSUUeywRuZQRSccF+taPgJx6jJjbuLKL4W9U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.97.125.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "inconnu4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8qsOYu9tYyukerG6czbeJAA/bg8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NNTIMUMFXtwtqjc2307Q9e9vLUcgoRdgMF1ztgxueZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.9.235.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t4cc0reTor3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8psPGpG1XMt/bNyiodGMY1cfdms" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xWaxRYF2hj5XEbFAkolYrY4N+dDZx48frlHuPK5kq7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:34:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.44.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1864:1324::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8pVle7e7dPuIafqOeQNGG1DJi50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WaJH6E4Dhod4a85XAD2uOJ0KLIf6nEd5x1Dxtl6s6yY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.104.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gork" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8omZgeOmAaey3cfd4CwkgGlwTZ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LyQaoMr5AlEE7fh5tgjvOksQNLAHPrSQY+N01bsllHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.118.242.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra84" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8mV/ahe+YI/ZT1ZbxFZIMT1he2M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gri5bhFPeH6A4QY7yVyTcrChTX8nrPFdaGETOBVHGo8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.32.107.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:194:32:107:0:60]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "meatyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8mCZNhazGJeskLWPkxYrhetu6Cc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h0ZU3Wpr2ZFePw+OUuSi8Y082xmQdCz5wVzxx98Ek6Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:55:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.19.164.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8lxhXCL79YQCWHtSWbWmgerjoUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FEXgWTtLo8jFN29Y/1EH4xriW7cS473GTM6ZTf1vvuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:15:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.244.207.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:800:b29:116e::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "staysafeandgoodluck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8laaETmqsie7boMTonEjh/XmzSs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EOfh2j5WdPGSZPDfh2qrskVkYARAKLcD8TqSew6twJk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:51:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.181.61.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:181:61:0:23]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ktor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8lJORglPCM1GMayw+V1DT0P+JzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YOVaSvVlmetN4/2b9HQ6XHi4YAzwZgaHbLAj324jXZ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:20:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.161.84.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4ff:f0:333b::1]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueOctopus000" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8kEzDxava9kCJsyRMNqOILWKrDs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CZ4yZ6tC5ONlEoERuaHVbYWm80+7C9dGwN1BrjAte7Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.183.184.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 60000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:0:d0::633:e002]:60000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gh0stNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8j8C8oHXrEqFQH+iL4CDk4fNe9E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "92SfuZf30lRLHt57RDe4SR0CKUDrU1eoNBDz01YrhQ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.104.148.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1c4:dada:bad::704]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeeJin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8h5KctqPLxu3dxVUOVpqbQsbdM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6IO2fDc3ZVQSWSPIuhZsI4BuDpKCBuunEPTSPxowEls" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.56.154.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8h3px94xYB2XFngeF+JDgIh4g9E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qEBG3G7w1o9CVhYdVYMq5oYwNOcP6fHN0OiluCgxxC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e64c]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ReleRapido" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8hfOg2vOPgbkcxVnIQ749hAdkpw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "giL7yWEezrMNbknFmb/N2VscZi8fu7x2C+W+hXyLuW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:49:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.99.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:104:d11a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayondemogorgon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8hdg5j/iu0Vim7FPzbD9Z3SF2vg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V0uv1mPFkLcFMWzwE3cQ4mO9WJZmveIYuZXcNGLFVrM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:25:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:10::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0140" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8hGnAxoU+w2hPUZ/bBuY/cPypVk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4xz9SNFOWQbORey8eu8OUWhDBfWl6xKIaaAJnLZzEq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10140 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::140]:10140" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Komodotto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8gw0ZxF0SmOa62nmrslB+HbIHbI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gSHpgd98uQKaf/Vuo3X+DrnusxhaN4uaBe1x9fo+WAE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:42:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.248.101.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gabelmoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8gREE9rC4C49a89HNaGbyh3pcoE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rsIPl2l4PWADCEzsbkURv65jp4s6ZZyZRyJGbFc1oL0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:42:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.188.40.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:638:a000:4140::ffff:189]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=93" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "heytea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8f5xk6seQq6WVfPgNsJll0NSETk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0iN+JeSSTD4h7e1Z5AtBb/pToq99aIdSYRv6q0oPRAI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.77.67.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "themis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8eZnagVRtNiCYlNvqrSIuGGqyho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "46eEWQqjwcP9spXZMWOnF35s3JZEnDftQiiopNixqQc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.253.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1:47e::443]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididnteditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8dSWZYZFTfRGT9biLyrsLcbioN4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xW/JJPd9Mvq1g51OYdp7AgaTMWDvDBx3Dj+xQcOwVBI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:10:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.79.163.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:fe62:716a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "csUniHB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8c2HDXqPo2TkWaunCxc31AsLS7M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gOG463P+pWGQ6apAHiOf934ORZ0IMCFViDk3WoOezUk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.102.200.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:638:708:30c8::65]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tortoke" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8ciQGlafZ2OHSNe+l5aVQbPsxZ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "glBk77ojj4333xiKZ0BcpXLb9bU3eBSsb82rHWu0ZHI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:47:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.41.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoBoDy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8cOwsHqsmYT+LsAY2eIVWXhZrGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i7vqJxtHYc7Dzrj9ieUXJDCdse0x1Tc9RmDNTLwCHyo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.251.64.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididnteditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8btvOOdo7CNqFr1nfAEgHiGCFs8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m9+0CEoTJqYomEwK6nVaSkuyJvr/lLx3IwrFn1RbE2s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.126.26.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bbkfry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8agAdlZkyn2YOJfRM8gllFwoh0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "34JnY008xmVZjYgmaDXEIIFqHSOS6/VCdsAq6D9cUGY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:27:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.156.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:67f3::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheAncients" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8aFY4C6QMP/QFvyvQtKE3pwx06M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AlYqQH29UAVHnc8Q2fKcBtJBS7anVnWpEL5TUiBgumY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.173.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:602:caf::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8Z2YQZyH42oLMHuFVZI43EbFYxY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gl37flE8g3enuPXykibfe6DNZrdqcu8FlCpaKV8u9l8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::206]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "usNjBobVps4806" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8ZK9Ue8snKVTZG8oZo0op68cqw0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aVJE4+hsfoDNrkuDQFbGqeMBHxVoSAvFz7klrCEzXUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:00:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.28.58.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=590" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PogboxRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8XFlfPX3Jgc9Ot1UT1OPa6GyMQw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bqBsLVbMCvDouTQAKi1sK9oKRuD9o2K38uo3HjfxJUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:55:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.158.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WitchNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8VoqCL+RAX3PtgQhcWNWYeE6glY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NEUrU/n8Sk/wmLns91jU/wO2NygtQxy+T+du2ae6dvY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:46:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.91.125.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2033:4966::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BriarFTW" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8Ubdcd7rtrs9emOM/9w71Dp1ZA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "spxgtjY5QAX/OI4uTyJnRJN5bRgnXd9leiftsRS7DWA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:28:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.14.208.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "outstarede" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8TZhZ2a+4PBE9P3+TiNj3I/O4ns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EvVBGQ4x91XoQRegQNKKabjcXyvIM+CtPfYQx9Vqrps" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.235.67.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:32:7d3:18f1:1dff:fe25:dc29]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tesseract01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8S+N/d4ZadTllAeB49qzJtKMEiA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kbLnfljZ50mrXc3CUi/HSJNivXz9EBFtlZkcpZHT+PQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:41:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.238.10.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LightSteelBlue" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8S0X8pbHko5TTTzvQr6PqWlh1VA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fNu2khONFMzyHL411SeEtOrNoy4l8Vw9+qVLRXvM/b8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.116.21.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORneedsFreeBSD" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8Ruhf/YlUzkUmHrzzaxlJnlc0a0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JYmXoyDVS1PmmLgBSvqttBuR2MEsU97hUQu4K0hrNko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.233.203.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42564 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gusntwrk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8RK6Z5XYY/IeUjoGYaE0oE9EkQE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xRE+PDq3p99/02ykAHG3Expm+afkpKDZoXHAF+VQlC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:22:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.250.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ParkBenchInd001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8QveJ5rnFRXdzMxh3Bmsh2X4o8w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eXVoLeGLdmtLddteqZIf5UEqI84YBBc3yGv5rICjOyc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.70.112.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8QdDTXjy3+Tzgq+DbMaO4rP8724" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5lzaYyCMxyaG6LYoI48Ti4UK/HMEH74E/kvPHQQnYZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:03:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::54]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=710" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk7c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8PUHSm2t09wi4fqhj9bYnLxSdxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "32rpBn9kqEtXWejClMhIbDMMfs1jHeHkBKOIOUXLH9A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:59:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.89.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1864:e00::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pinball" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8OQNLNaLzuFvprdo/kgGKu8JOx4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AFxyjSNUL2InuZLJtbGo4H9rlmcoPB1C7aA3qUHHKkE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:04:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.65.91.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9020 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8N9xIuW415YeYa+uLUE9riUnvyw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "llss1QlkrSfJ3D71m/WTLolVbWZQkIsRCpJtImevnRw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.54.108.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8NAesf3FCCeas0Eq8/yVC7HaKtE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x4KfHpfrdMuASBtgs/GimTMNQ615HHoWRQzlHxIigUQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.136.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8M0UXPM3UzjvXPOF5ICnxIiVku8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eVsIE7sJga1hzn4aZGNJOtVspkbWgQNvDoPgU7KwJtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:23:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.236.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TTIGermany2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8MnAfRt8b8hUf1LKwQFbSnnirBo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U0CIAcZualzCY67IULLc1pOE9YuqEKry1o0M8DPpQ0w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:23:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.9.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:5b8::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GrindItIn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8MG0DsLP3nAt0+u1Ehaw2o1lTv0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gc5xV+CyiLus3eo7DnQZlbLeRsb/Vbg9fvASwP1KYlo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.34.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex87" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8LYNJcLoPqcHwohs+lnN/gJqDVk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xfxTJzGa+0M3H/KK/3//EAZUO1/evB3v5J0ql8Fu1iY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::176]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vm242tornode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8LWAeYuzA7o27RJoVo4q2TW2xIY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vIvoUDoQYtO7WpHxyvH9soLs/whdxnrn24sjGkRo0pY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.34.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Deteros" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8K6SK001jzr2t2IiolJrBHDn2RM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Byf7zpm/nAQ0A7FFHqDhcGRfE8Vu+Js/6IWKebXmcN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:48:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.66.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=78" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8Kgq19WPSeupcfdQSuIjtKhktQc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GlhT2Bxx8XorKYlS+J84pBCmUAIANAHl6Y8ZrK1kPzo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.55.42.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bambam" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8JqbMinC4z1OpxgejqsKsCmE9V4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3UqtStWa0i2+e8Ko4sRalMWg54eCLwTES2slHKFLxZk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.198.219.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheyGlowInTheDark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8JUBN7UHb9HGlc6DmMu12y8r2oQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jrp7kGoaRdUGp1S2kDynwJhBOsPfnePudDMf5EzaW0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:59:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.220.70.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dontknowmeAT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8JDQbdkIyRSH8KZd/9+x5M1mQog" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c3aNiS7ku3S+c466ndj7g3alv0L4MbaGMx/baPxoW0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.59.115.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:858:6:1500::666]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8IpSWsqWXPalXwWHv0tzc9mLlU4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WtZFEa5j5/KbEjx4aiJTagbY1saAAZ3VgDMXUy85xN8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:51:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.194.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fec3:62f4]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "winR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8Io3RMplaO0oVFwrfBvn2Lony94" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h086jHzlRIKECBDkNO/rRxoftQhooCrCSx4E4LaSV5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:10:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.248.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:f230::10:4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pffffffttttttt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8IezkSLBgaTJdnK0YLKEsyNQ31M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e3wR4LBbgWAs1j9OEftuhvKCf3sCLvB1Jtyj11jmG3I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:38:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.62.202.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GutterTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8IdR4nxrybNZC1qeIXc1jSzxksI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "emvQWq1nw4Jl+Qc0XUy1L/p8JWIj0JgdEq92LCSGIzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.24.251.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8Hj+HXvam8rhMTM5a1ZMc+oo/6c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Dc92N8Ko8mIDHFRqb9GV0ksYCeV4xsw2ugyEqazGBQU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.0.64.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chickodee01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8HYCvEN5YPHjk3AImpzJVqktKt4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "greB2dFN6nCvFVFfpE+3KY9xnNjkeYS+LaWSGS7Il+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.230.23.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0175" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8DJn54Rh4ZjHqNPoJRRolbGb/Ro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZsMq1KKVD5ph8kQl1h2914YLrI+D8r0g1XkEBlF0fw8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:59:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10175 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::175]:10175" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ValveCover" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8CSOirMt9iSxHC85s1tlRLxjhf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "idOlBhm6/JTYd86EqGnQ8EUmx1iGvweXbUiTyR39TjE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:57:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.52.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FriendlyExitNode1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8B44LaUkpX8r+zxP8nCiPVzTMR0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OEDdPFKX0ZA+xycsdph2s+0UiZVX9zm8Y6aI0dKH+CU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:04:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.54.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PancakeWhore" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8A7C4KLKeaV/56CRigh5h3R9dy0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iipMQ30Gp2MMtmMPaNQSq/QdCHfY7HyfpD5+Was7baw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.154.159.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f300:406::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JennyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8AyLdYn+5SvoQ4fNtCLB8ThpecA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n6P0FtY5BRLIwXG9iUa7lOvoUb4GGT/S6EIkG6NKUjM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:24:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.118.20.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cloudyDC" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "8AuAu1gOH3i8Hje69bb97Wfk3Do" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1sZ5gb8szenvid1MupoF67qHThSS7z/SPDmo9l4pqo8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:44:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.140.234.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orca" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7/lFD2iRh3b4cLvFVPjjp9bhyVM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yoGyl21iRizZEeamNqo+TVH5OgbuFN3Hhz8sIWV2yZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:12:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::76]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jeevestor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7/MuCyuhAiUfP3F8s5iIlu6zqK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vXVwjxgD5CXIS+X6Pd5/LHF74TR2d1C8z9+WP5ABYig" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.59.28.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7+3DEV7+S/oR/Fm55o+Gxl4h9dU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JTbkp7yIAlNQ99IT7yM/C8TXN3BrKgoLrP/ygjtR6Pc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.115.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=70000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Slavyanka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7+iez07hFhOhkkh3fruihxm/X/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AoOTA7OOzNuUJE+vzNoahQssE1i75ue1zhZUEbFZKzI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:56:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.182.179.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:c47:e00:7cdf:4b9:a0ff:fe00:2f0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra41" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7+iEnRBRmrF1Dhr0dBAFlSKADTI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vwlbyOfs7ZpiT1FwBAg/eiPtmnSt09eD7jrOgI6FGO4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dashcloud0010nor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "78Mg2Fu/X0G3v8FdzluwRLoY9Zg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m8Da42UJMxoPYe3XO6+BQzVKZDu/GWZTi6HJlkxYerk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.216.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:216:0:93]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=740" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marcuse1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "765EcoJkmCIkRF6WIUwV+Qdd7h0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tOTuCcfYKrxOgn9+VYFCsr3yfnth/RlR/dR0a6FS19g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.20.55.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1b88:4::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay23L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "76LnsHOqTOLa9xYPI8kNuAWUj0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LmBQJhwQf5u90vX1QS0NpMUOwWULxX0nR71tOzIUuik" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.128.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:4307:8800:e806:8131:ddd4:af0b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PLUTEX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "75xGEfqnwhFVqLoqch3cPSeBYDU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cKyqabppJL+h6LKU68D+8el1VCkUSJ786tnF4GQOF/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.69.67.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:16d0:0:5::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "madonion2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "75LJSP24OJbdvfdZb4J9d/iT428" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rr+yOVm/VEpslf4Tsp9XsCzDJ9PInHVTdK5BMlj2XJ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:24:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.140.180.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1430 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:c5c0:0:303::2]:1430" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "74gnJJCaapHViMkIHsW1EH84deQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HkB8ll28J8LABIMlzvP5LP/cDqLOYtnkQhm+uTwdMJM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:00:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.216.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:216:0:92]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flodder" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "72YEuVqULxx62AffEPk7ngDEems" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qw/LL/X0g9aVrwDihMrpTIzlzvw5gXBjzBW5OY+Lwlo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:48:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.207.60.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "71pCEV27MXhbGPbnPGQYlyQozFA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L3nTqj5XxmavadqOQcHrhfKfDF2YIrj6nR5SdWkkm/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:02:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.131.94.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x42FF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "71cg7b9I4a0EMA7eCQaXXm80kmw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FlsprPm8oRHzFBKovumhbfx2hiJNNOXjynznCTNpUWs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:48:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.166.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "70zR82noCA37WkYYfPqXaNeFcII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sUcoFLCJ6zP8RL14yA0c+qgTSZsDyKcHMAJKiZ9Jp0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "70bE1miHLqIeihln6ZAtE7fpUmM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wfGHwS8WsxUADwfI4r1GlgryyjqCuh04c/3+pIjG1NA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:36:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.106.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "justiceforall" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "70CTOt4pnnz89LnF/PwzksC4cSg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hcOnS9aM6wBdMk52RbkXfbhtfqPv9VtXrD0X01LBkjE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.101.192.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:3:d0::e43:5001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ahplA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7zz00oI6bJlcvb9B1cVahlz4QdE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ax6KteHRPP1lypuSTnBlrDuBqBDnkTbFDWN2Rr6nNJc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:09:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.170.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:cafe::39c:8624]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dodson" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7y8m3Z0k3OsAqkwuoUbqo6bHuhQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hcnx6Ke1tLOhsRNiyxkvS24I7djmgvYKisnI07P8Iu0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:25:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.42.194.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2601:603:217f:8ab0:a8a1:59ff:fe05:d01b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x90" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7yXB+b74xKPyhZSTx8jFFIcltOc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YoXXCvqU+VYrEB9/hGyptQ9HSikXRyk+O9p/g7+XrR4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.98.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7xlAhrGFF44b9Umo+V3owD4t6/k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WfUm5Y1jIDqeDi8TyJD0YFsGqUykaO2nNatX4lATC9o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:36:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.7.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "v205" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7wkWPsPwPC9jqGW7vxzlZCxllaM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H1eF1eMu7zzday1jJa9eHJe/5R1OCOMz97cr390qbHY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:52:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.192.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:821::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QECm2r3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7wfSkN6b0RPWIkDklkEwDNgZ1hk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N05nqCOUlI52pyaOZ41665qaVI2zll+AwTZF+Bk10N4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:13:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.71.60.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JetiTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7wTCvpz1ZtvMu2g/fQYPxIWlA5E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e3O6cF0u3EEsGA5jD9qDWIdapz/qJx1w1L0pnhJdPrY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.215.21.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=0 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ozigbo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7wHn5tXBSPp1HUKwEewZ4ht3Gn4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kzpgo3ZnIbUatKR6vkd3nx8FywNJ8TA8Q7oawonjZt4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.165.228.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stateiscriminalorg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7v/A1TKrY7s+nK6tqCKXH2066NY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q09IVlcu8ovlrjcckxJ/v/uHtYwG5tUIwkFoEryzT1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:13:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.180.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:84f4::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "g0bbles" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7v9MvaQWPJ179InYMQZwqNN4+X8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d3GykP54v3y/4k/XxPlryYeRPeb8aElDdLJpP6xKzv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:08:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.101.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:106:1d53::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7vQLTN2qj2dGhUkeRek5kXmqGDI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AgIH8/j2E3ngyYU6yneDnJOxnFkAD5qC6XR7EbpjbYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:53:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.192.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "st" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7vILoAeagQp7zgjn7KvT6cyf7U8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/jlCCy4iw12mDCBu72VTR8alAu3mH4nGm0+C+Ly4LmM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.237.13.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "adamsoftwinds" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7u+aL8g3vg4OWFJKBRj5jf/tKSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bXu+fo3gfMB9ULUETxhVQREKxSU1W99I6IkSCxmDpW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.140.250.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trash1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7tuf78kWX5tBtRWigvlaV0qAf7o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dvCoxWPI4CQQoOprXQU7QI8smmX2uTBoe2AlsiA2aLc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.56.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yourmomsbigass" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7s3KSNniEQlRuulKhX8Fm/TrfXY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "frSRVrYADe4ejJtBlFiIXMk/3NHXMjgh5m3i7ndzMAM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.8.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tghb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7syKBsTerxmR29ASdFl8sRQ7NYU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gCO1JJR+9wNxXIOuiHfIiAReI1wAS0U4ks2LqHy/1GU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:14:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.201.178.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jstark1809n0n0n0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7qhVZ81+vrHLxwrul8ReABm9vfk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LlZdYZ6n9tizUQboVtUNGhwMR+Phf84K8/QMe6tPlck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.32.107.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:194:32:107:0:206]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LisaM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7qUAohbaqD54FfLEZ4ZlKTX9c1E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LIDwxSe7eF/mrUR65g+wW/9n+n3QowwUH3NlUCm9ncc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:25:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "13.48.17.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sandbox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7pQDDQKvWniMYupW1INUDDhGDhA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v6Sh4PRIdwjl7iZrpqZ9d/1ykXCxuse5LQRnS8JH6hk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:59:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.107.176.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:1741:0:12::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7pCy7YJI6sIadmHgySUJFNDTVTg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SOZXpcnxHDGK1hbaRxec9AGwuNVC7UkI9/OGJLKGfO4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:33:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.85.154.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cb1tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7nL4VEvEb2/820fM25VOWsZCdWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1y52YkeIuhcU68WrNQz9MRm1XG0dBRH5hwAcbgEvl1g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:06:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.99.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cassini" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7lSzViTRdcbIV3kT+GF6IXoIhPk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T9LdUjY65xJcNyIBmJUAyGGGYoBVyeQ+PO5xDDx/EkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.58.160.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7kskV3bYEbQ+Yg+K4+PP31OiB9k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EZQxEIH16jNkDcF9kKZWUUWfvNwDFeMw2HZCaBX9ahY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5118 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay7L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7kr2MgWPBzTBQmsa1on0dEXKIFY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XIZMfBu7AViZK+diFOPpL5iBNx9avLMTEe6A8h1z4Qk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:23:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.187.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:c:111::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anonymous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7kghFrKkmitkU2Um6t2N6TL2kc0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "De0RLi7SRqqJymfLoBJtrs2aLC2YYZUmyuSD6XDknt8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "155.4.110.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BenVonMecklenburg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7j8UEMTh1km93kVkRveML9DMmMs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O4dbbv8gJA/RZh7ZYoaApWRL6uz986S0q+7rh+7Qsdc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.131.92.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ATP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7jFdvSmxOExHBxybanLNZIHLoIY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5ETl+cSgEBG+p5akA7XVH5kFjzFPqy3/jvlPCqayhHc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:18:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.28.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:848:240::240]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "antonov" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7jE01te3A6Oe75wMWzf8hCss1yw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1aJPhdByNIy+XwYh86+zifAcW+WKdymP2y2gr4ETILY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.189.157.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myzwiebel03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7iqRCKntv8tcRPKZMmdXMYgXaqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hkPk4GTAn1bTMtsi2q11Rgn3ciKG7Er0rGS8efpB5Wg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:35:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.225.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7ipiEEKZSylFLBL/O29i2elXdYw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OwGkn3qBW0Xwdof3c44pqwNe2KYweY9KV7L2+hTpF+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.239.41.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=94000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer84" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7h0ykjT95eILJgK5CnUl6sTteLU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2erBWd44rWuxSvQ+l+FguOzAxITrfDOh6qVi42VRVFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8184 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "n1c3r3l4y" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7hjokc0Qjip4Q43R2rxblEyDBds" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hi3BUOZ67KrJi6aCxxdkHPW5t7W+aCKHQAkURW0NWb8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:50:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.112.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:28:5bf:84a1:a2ff:feaf:4fc3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheBigSleep" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7hRmMOFVun0P/b6TFCnygPR5eEo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mdd5uVuLlOaF9mBiijq+/NJ1PA81x8I9YgObKrMn78A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:11:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.207.38.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kryptonit00" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7g4ywe4CscA8bUPa+mZO/SwV4gI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2ZBvWJ4vWdqa4fIlEdc0UaxuX5jPK9PdNQWggAF2Mbo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.75.166.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HoleeShitSnaxx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7f1f/p2XrcC6/jCjvYRU82/972k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oeE6ICN/JlVFAUjtznR6dV3k6bllGnOx2bOl8H5ONWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:00:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.154.192.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=690" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "charity" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7fNX34pr0jxts3EFANwN9JjzexQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "znZov7TZHagKH2iHGS3kPZs/6+MktKrvxIztiN+YkK0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:42:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.209.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7e24eXhz00Ayi1/tvXdEp9HfFR8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uhf5G4xmSDCkmSh6tXS7D5CILbUo+07Y47gJC71s5M8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:16:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StandForFreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7eoZFy7IsUY73RnjoYd4xXVnEKE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v+HM6pg2YyyTwD2D2Lq79Q8/zLlhsmzCuPVECBclvMI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.114.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex74" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7c30JHXNYKjr36fP5ktQBqufp4M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zIadaGdY1McXUlzrJVU1ZksNq0sK2nH2iDchXaHQv7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::163]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "digineo4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7cswZU0FdASjqk71WvbbUFGTutg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7+F7jJhMbW6WTPZEom6kpYUlZYA3KZFeIjGvqjyZWtw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:59:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.117.215.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:8781::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maybetomorrow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7cgDNXxdeLmXA2tBfYFWJebZmfU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "88BjEqByuTKXFpaRJfVlqCMQ7v+/hVhCyVIPUi7fVRI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "182.55.245.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2323 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jasiuwarsaw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7b5Ewy5Z5L5Gy7pm1QwtOtkAGUM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5YHgZPECKHwIfyGHrBrYLSVVWgR6cj3QJK+coHcB5k0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:40:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.51.200.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pangea07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7bzSlR0JfNpuqiqE2/446O5jSrE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KnurCNv2LrId3bVY8UT4HT1Rr4z+/GZyKvB9S3FwuwY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.16.33.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "poya" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7bfzWtuag8SDQsxWnfc3PE9I4LE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FkZ7JR0sGdaBEIclsFrWZO1i8m7K1yLLNc43oLCBUao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:09:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.73.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eggu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7bTjb9kVDV99qbV5wluTyHYcKAA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EafL/70emKVCuuf11elK63N5ou02mbHrVyEnIqRiT7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:31:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.59.102.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Karlstad1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7a8wxY1szzWeoGLGaMcYChcHZEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bzVlo7NQ88U+Mu3Lj0beaF1LJrP4cSkks7ONcKBhu+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:07:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.11.166.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7Zy1TAcU0BjqXkxjBEenCpAadxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xES/Q0uKlH+zU5+uCeKdeZQ7MEAlYbSxt7JiibohrJ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.102.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:107:dd2a::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StayStrongRelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7ZpzE3NFb6BxwSo+Y+LIvvCm5yE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pK4gLa4CN3NjE/VyDqUOJWGItGJL+XAHIruheUUM+tQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.55.91.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gnarzkorf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7ZToKpTNfl1xuxRSLo0hOHVjJFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PwrgRGIbvdmIn4oZi7EEIdzy2H+iYCtFkW0r9jn+8+s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.191.168.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7ZQ9XTKzk1hikWob4z53gNtR28Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hA/0j8S9F7J1hi6b6+vR67XU+Rz5QXlcC/bc4D5VmZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:48:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.133.69.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "testalpha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7Y/wwaugc/bmsPVwlA4USBxow9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2iQJKeQk9R4GaGZMF5SUPAtvVXbqPea+xUhEdIZlWd0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "122.161.176.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pXXXq" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7Y2kqFOxnLxohVeSFyAnJXPLVLE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qHHV8LdmdS7eNqYQhLt+BLpOHxzXQ9jAo3VVpZZflH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:35:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.23.15.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WallStreetDarling" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7YVF9e+TmEpuqliU8dI6rXz/Z+E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e5XoqCYbOsVlVu5TiYxevUJ7fSzvuoQcxowmNfLPG/s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:20:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.157.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c021:1:1f69:43e2:46d4:a7d5:c42b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7YH1nYgech7ckoCGE8f918zjjx4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CpIVs+7eC6OW5avz73Zeur+3n5Tvb3SHzQ0N1OLtKgk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:18:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.54.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:e028:242a:33ff:fe87:a24]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Planetclaire63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7X8r5dKsf8+CGpCeJIb/+5XWUnI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eUGLl2zbnqTE90DtyED9N11P22b4yFmsmZa4NvZ/+5Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:39:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.88.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2efd]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Enkidu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7X1qPOw8QKytupGILNBP924cD0w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T8CXvD9FFhlBLHqDPjawVt6xRrnMHPV4wvAfJQID6o8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.105.154.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:403:4251::9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sunshine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7XxlBnl/7BKAmK8KmTT6uxKdek0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V3bmUlpi/Nkc+hEjkyhdSqGnZK4oL8+wlgnGWMySDLQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:54:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.103.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:108:60aa::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7W7kiCt3HoTVMwu2KACr7zFCN+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vJ65jXNkRO+OXeBzWD5Jjm6x8r5b29wmHL7UzhNeKGE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.140.141.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e3:ffff:198:140:141:0:52]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Naname2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7VzNLpDla3Ys9U4Ri5nMGDX/wsE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LPevqe6TqE4fH5OovaFbitRvgVGMGH/1u/QtP2lzrLw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "182.21.27.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk7d" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7VtgFNTFyRQIawYVIHoYbu9EWaE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7GGvrwY5WH1qfEraqGOW8zacKiPLzOM4TBHzG8nxxQo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:21:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.89.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1864:e00::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LondoxzriaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7Uj1sr5/ZoTmGwNBKzjEvZ5e7bg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tzK6n/mohHji9Q7WaIIAQ0JaOx4b24z3/Fbr1EjT5g4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:02:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.77.224.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:7400:84ea:5400:4ff:fe23:183c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7TYSRRX3Hi4kAdcNnvw8rrCNYRs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "di4DZ960MIqpqJYLSQ57ZdHLFg7LBKE9nLgFvjo3jgo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.195.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fedc:ac35]:38443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SEC6xFreeBSD64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7SM4ysJxGz4zE5Lh7SgxIZt5QCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9pe+cra20qe9b7IEHZMBwmq99W897YJxP6Sny3uOsHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:43:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.87.28.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:230:3028:192:87:28:28]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hrushevsky" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7Rq5UpqNlp3LCIAkgAWNk0gfGiI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BDV/79pS4mLprM9NBQFOPHsPU9QHesnEniyH1kVSjH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:43:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.246.188.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 36371 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sepi0l2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7RqJBTsMMxAQi5G5TvyVPF+b08E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jt+jNB1Jo+LKlgicaZvFe8jPLvBKOHmHdl+wYE+HUiI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.239.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FileDitchExit0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7ROQfjvSkB1t+yA2gFZA6joz2Xo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FJCHj6YBADfm9yDVgMmUSKdmeDQ5wGAMd/kswHQwEKA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:45:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.142.146.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra78" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7Qw5cowEEKGmFz/g+MHJZn3ffWY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zZFBxgPopv9XRNv4RjDq59c6LrzvqSEerokglbpRNFk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:15:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.247.226.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7P5Pdmhtb03rtFO2KWJwIrzr2pc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ACytftrVK2ODmrs+LPiqdjfpcUOdmJ9MVLVZf6nFL8o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::803a:d9ff:fe7f:d540]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "romero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7P3qSMip9FpyQa7aPDhvTYL4lok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uUtuNTpqje9/CbOKFwatllY9oNl9xMijGaQrBzvh9O0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:20:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.72.244.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vigilance" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7P283/JM0KLUzs6TzFHrdKWha70" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AQTMzVD1u0MHugl96HPKQzA7xCev7QpOW98v3OtA/iI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:03:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.197.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ambient8exit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7OgxU0QmJ54y5TDNySedNuKmrGA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ob803xYqdPCaSDUMS/PJnaWrP+S2HyMoM686P1cC5YI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.97.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:102:46e0::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7OEHPKnyLjCwJPw768kBs5pFUqU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p6DJvJeN2s38qSntiuxPil+tRRGkdCUWH3Pl41brmEM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:44:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "106.185.159.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[240b:10:b1e0:a600:80d2:5dff:fef8:d3b8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "somerelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7NxAXkkYOy6vV5rNQrRDrqLPNyk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hf99EmtoTm5YRWvhbfLQYPNnHfnWSeXNsp510ORsq0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:09:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.81.109.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7NBu8NetM20spPN9t19sr6O6/fc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kw6RQYeU5WdvXTN4jAZr02/bId0Go/0MQ2RPCRfPE60" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.192.202.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kelvium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7MUl8nn/MahE5VsdK6DQenjER0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/R2dQPPu4RGscxLHk4GtKkYIyKayLlewtc2EjdMh3HE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.3.250.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8007:3b4d:6275:c3b3:ae2c:d51a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionEx1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7LJKMm04L4S3vWMM/b4aDNzgJFo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cwf3lpPrz5OxcE9uRM8emzUfcENAaly8e+LmvTv24Vo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.78.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tenthcircle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7K0UhjoNIXrlctxq3eGCeww5paY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Y26k8tAK4W6iDFlLD+44E90hNx3vS5za1wtidxvlfM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.19.210.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 56921 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "definitelyNotLE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7KoJcyQmK2A5T+bzzURqZqMxlW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "19m8anOUUtkpWpOoYHv+cMt1fqVoCQYqbSkrsg19mqw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:05:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.180.221.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3003:1408::1]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zinho" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7JYhQz3yyZbeVacGO6r7K3HDwBs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6PneAgwk5pWyCc07EyHEjcT4R/9qU10pz/ekvXbbpzc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:24:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.204.141.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LePotator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7JTzBTLH29so2/1hWUPhNNjU/Hk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OxjOSV6yZGJYnJ2sgZ50pv6v5sxZVlDAJZDDZRl8zh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:59:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.127.234.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AESOP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7IL6mJm+/G3uaOJpa53jZNF/rlw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x2BKieE6IAfA0eMsziMGQkaD2iHAfiscxXvOnlq+HUI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:29:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.174.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:42cc:9e00:b1f6:528c:4e17:6793]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tesseract" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7H6ppuvKDp7W8SlSIxMevVWuvic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SpGrVDhIAPPyBH67U5OOLkfrzkppoy7XV99c/vhbNFk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:25:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.71.206.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7213 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torwar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7HNz5r7DcEuwYKFPyVlB1CEiMAY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nL1hrWMOLtaAY/cYMwGGL8XfCKQByKi7uyVu2Y2ScFM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.34.247.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:f480:2400:12ac:5400:4ff:fe1c:7b70]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "demoncore" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7HKIGhEo6xsoPuU/VJB0dxGab+Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iRowpX16aDNULSd2Xp11JebGs6EsWd9cqj7mM69nnA0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:19:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.15.92.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:b08:0:2::17]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oknp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7G8jUff9WCw57jEPqjSQqI/kYtU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O36jJB3yQWzaOOrh+WaPalEFoU+L1+kENLlzqkAvvoY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "180.214.72.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SerpentRangers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7FH9OK1ESteoRjv9oDUoJ1W17sE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zLPns+cHBUflnXm66ffmumAygdMO5H7PDrPAR/F9xe8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "119.161.100.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bektarRackett" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7EaU0xN7om07yuGiWyTYhkaMYQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PIMM1kWw6/IOgaYrfO61nf3srv0ynkBPeix+Bh0yqOs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.177.105.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7EaSibbosKrYpgeFVRAo7EuzYjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vILLi9In/mKxKskSoVWB5vjiVZzTrOlodaByXZD0InM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.150.233.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:b102:170:50::30]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orwellkneww" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7EKZhgeWmFlLTSKgoGDWZx4EA+Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6t82lWxCMnSIyzbmYUhE7J/UQcszORqPRkEXH+UQpMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:23:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.250.44.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VeilsOfTheOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7D7C4mycV7Rmhunv5+6r1LVw1tM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CCRy4tAcMXPxVMPuscRPN8W8vBVNgzZojecjzjrvzRo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.210.178.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:304:200::baba]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "katharina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7BbysdE/ZYNv0reFaZWCjRjzLMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MepqVgNece7S9UxA+iVUX1HuUVRpDPhq0Tgf2U8EceY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.125.65.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zensursula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7BZ7jJo4oPX3nUoBR5A1dg4NPWM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oEtW0dIeS4cMinPc2XZQa0XguzZBPAGZPm0z6O+AZZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.224.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:2b1::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7BXbYtkQFIHzZN5S64MTyDi93Ck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sBqwOGzFtPKBPRbXFv40GLY4W8QVUGfKvrnPcSsLygc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:51:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::119]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mortimerAtx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7Aq6gR5Osz2ti8i3A32GK/Tzqig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BW7VdaIBxtc6MUqYwAsQnTE3mItFxHzWByuM6CItL+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:41:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.49.32.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "reallycoolthing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7An1GPZKN4wxMw3EcWlP1t36MBk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "apXSFuQQGY/TbjNIOYW7lACySjiBZudkXGCBvmit/wA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.210.4.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "redDragon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "7AHqZ0nJ/0TspPGtCKaqKtELss8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HIaiQRPEmqcGWuShGgvLo7zEd85PHmjKTSH+XTfnCLI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.235.49.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:f80:354:37:235:49:138:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=750" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blackpearl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6/mFOZs969rIgJf4FCR10w00CLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Sku5nVJkR8D/gb/Wp/2yvfabAUb2dyenh6dx9c5P8S0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:25:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.157.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:6080::1:5453:e5f9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6/ZI4c8/o6xGqicoV7yvzNcNSfw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EARoxCX29r7qm45Fy0JUpB8BjOzIlVkUV4WRfIQT6UA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::201]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myBestBridge" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6+yTvdFn9RUtv6tfAW5XgL8ylOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NjotzhGM8pRksIMcgcCxHAIWGK5BdQYA0PpjJSLA4rE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.143.217.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fluxe4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6+cY4aSe4ikHFwKWT42x8xgHX/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "npvVpyyUFOTtYccTnM39Y4H40QJHggNOqfQGlUEHHmw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:12:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.188.40.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11180 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:638:a000:4140::ffff:188]:11180" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "5d82520d2de79c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6+C+xcs043vxFkv8cgZP8ro97GE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yyaRLnXLrA2mGw2D583tucZUfD9mPxT5VQwICwIV7VU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.185.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:1742::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tiger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "69LL/h0RAeW4sTiCPMIUEfOVNUQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EMRUOYjKRYgOw7EV0fRtw/ghmpVYmLNFGnp7Wx0d5sg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:53:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::68]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "amazing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "68zCIeoEagII+cGr+M1omFDjonY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C9p1OQ3fZPR/fFzrrdajJOXyvn1q9KmmM1Md+nA1tgg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.53.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "68VTkTH+6gBMQZhsC9A7XIW769U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yzVrMvEUlDFS5kN2i+kKY0LoP/zsxvUyngAdQX1YlJA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::247]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "67jmc4tiTS9hIJS1fda8ddMpHeo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0oMffQAG8bDaOJp2Cu4XaI0CS5DT6BrciRG/HpZieAQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:21:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.78.25.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 30973 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:3840:8078:25:0:504e:1924:1337]:30973" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OperationUrbanWolf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "67eZ+t1hXpPKl75Vg+Xrl90h4Q8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IbFWcJnZTKBn6nZZfYnQPjB27CVbU/z3zEuA8kiV/Bo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:02:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.73.135.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jdvnsjfnHBDkScf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "67dtCW/1eHowOyyB4hv/mBbG+g0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HrYmYnSdBvvSdwVGwNatXC71eIpZlMQo8w/UC8xkpTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:37:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.120.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:1201::b5e4:ac7c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "66PPsSgVAvg1mkl+T2ce8ED1OLM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nOUdM1Fq+zsyTyT7tuQ29iqteYRlI+3E+q39Ctq61mY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:05:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.43.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:689:5493:bff:fe57:5c27]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieditedtheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "66F6U6dzz7QKDV2fMKPQYd3pLAc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SOeVjZbyiGIlOkisDlyvotboMF3PRgKCO/EwsBsgIPc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.59.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "66D/pXmam515o74tvWAeMBrPsIc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bLAxN2D3Rwvh2jPy432c3uoOt+Ug7HCgaHntff+/Hns" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:09:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::5]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=84000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "653YDmTdgppffHrKXV/q3+v92Ec" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U3eYdHbg1ilzkLCZAlbDgpi2M0bB33kBhBddJpU+XLo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::206]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnnamedRelayA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "65lkAKHjNTka0N/P4vshAONloOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nylXeQxjgDLvexVehbTDDGxJdd78OHKJnDQKG6UtCF0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:15:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.210.117.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "coveredinwhite" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "63SXxDq0AR4ovZ5VmpEi8SD1K0Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LAQENZe5zds48YDLRWLZ5g7Ej+1eAGfC5uoNjkfAIgE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.135.138.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=0 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pegasus08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "63Nk1M7hOxQEx9z7PMNILyJt/Sk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hy/pbchIK5ISSHRTftbg6XLqypEo7+DNz3mmAc6Wio4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.180.174.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:c801:1:e::50]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay05V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "63G92paGEIxIwh+aSEA7Kw95MjE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yiwMA9bpcScGn1LwkCv87M0poXw+uYhoKc2WHI2zFts" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.51.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d519::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "62mFW0G7WrfkNaiimj7fSECgESI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0VJf2aHAVd5/i9i82xrgr5blmCscjrzhdJxE5kQevvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:52:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.118.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "athanaisland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "62aPCnVaAP/YyyqaCS8uaZKxWZU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f0pA3aLiKvqmCR6zn41rapiVm3MX2gPTSYN9Z12e6F0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.242.107.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wrogregpx2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "613wEkpewoHoLwA4svRfp+x8fHU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pof41CWKQPHk2RZXOxxMf3t91uCsgYUXyRe0Tmhpxgc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.121.81.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Jupiter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "611mx69TkT4J+kdKF72AKrZotbU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "upNZYw+6RDXmRLpCfJMzR0mElgeQE6EXuEg3wzk2AIk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:44:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.214.5.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:5b82:2070:8302::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TrinityDDh39" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "60pJ9KXd7qLOmx/Azfl/0CH0SeQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dRJqPtBrQewJQ7uwFVXDakBJFCs7nvBBrO32HTMpUpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:29:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.254.19.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9056 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9067 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6z2pO2//ppnB8nFMnnP6gTu4+CI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fV6xc9UPw0QyIijOvrwPxX1++dj2gnJSadKoW38UD/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:58:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.50.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dukdukduke" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6ysmq9E7L58Hp3xKxviyzFh1KI8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CVbJ0BO+StUrUZVkGsrHEM5qEfcDwI+yN45d2GPbncM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.58.173.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NavierStokes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6yHCVgf54PW/ENlKPdSmXOdMhOc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UOXQucPACJqA3DK6Rw6cL/20nnClEU/RarKCTtAEBFY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.86.228.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=840" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6v6HZVoFbydimM4XoNj6vuOyD0k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FYkcodDA0G7n7//dwCGRLMio1YQXT2RCWni8chx3N7k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.52.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EncipheredEnigma" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6vgOBewRajAyPQZf8P+HUd7vzI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nvJVX1c2U/oHSJB7halQAPIP3Gi53OHBeYeVZXJPuak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.180.174.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:c801:1:e::13f]:7443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "crazymodding" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6u/AD9+W0k91/AB6ViO9ajpzdCM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TYLrcZx2xDRMf//RmIjam9o5zheV9QJMsDTXJpB6f1g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:54:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.134.118.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CanisLupus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6sNeKQgt49O3ZBJS6Yw7BcgAXyw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ErIR1LVGn9yqbLVakUhXh+acTpSo4VF+c1pF60yIMAc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.100.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6r4CbdQC6JGE5nVRIEK0Cd2ZyV8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oOAp7Nh5v60AKf9uf2lCkTJkRYZGkiuAlexE0UWosHc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6rzlGSZ1OvDtfqGLQh3SbPCHwco" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G9dU7mtkjpQdhoXekfr+G1eRAVUTIkQAE/agyV2ZNE8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.138.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex49" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6rwt0NR7XbEfLTfrPGDCpNkcEPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BdIHHgCPiA8eceWcgRuPqh6bUtcWRHszN83rSBRVPTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:40:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e648]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6rs5AyP4DURXuqXO7lEUVXAOkp0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EIKYMKxkb9l7PLfY0+Ky853gGX+qLkeco8T4r99d1Lk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:48:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.105.107.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt56166" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6qmhmzdYEPkjW27hJBHz2+/JtQE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TW2bSJsTUgX5nUfTCIlBb0h7owp2vHr65JFW4ABI27s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:11:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trift" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6pq44hjINDd+lXXtT93/oP2CVbw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uNI8/B72kUKRS5vITa4d6NNJFq8UGwVbfWxAEdbwZ/A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:08:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.220.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6pU0pJqgZ6ShBRI367pR4k+2xCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vvo7OBRHE3wp/Weh/fB56Ilza5Q0Nyifjkc1YcPP7z8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:11:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::19]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6oVCjyJOytwYuEeg6A2yUajWZks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aFf0v6qJL3rNPdMdkMLdUJpOXZGCJrR5B+Cx7N+FwXI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:58:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.227.32.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex54" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6n1XXJG7H1PCVRD7+RuH2BrhRkY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x9iAhRv/yloEesDMEoEBzq4Tbf10rVcnbnqQB6sESqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::143]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schmortor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6nZCxpQL9lcSZ/Bo7yibk76C8Wk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ms3n46vuy8P2UiNSbNujjNm5IbEshoQJWEXiZ/KnOHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:50:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.236.87.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0151" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6mvSAYHUiKg7JVQSdbN09boapFo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o3TdliWwPdzGBBcaEH8GRFy+2LtqDgX+Y3ft9u1zuDQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10151 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::151]:10151" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kennedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6mmBgX4n14sAMgS5A7BwURPatxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZQEt2+W4qXwsQYkx6CFWx5pbU0lI16STI4kAfnbRv5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:27:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.118.21.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE67" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6mdzGGMrGuod1QdSCAqi+CKax4I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5IxwBrEQ5qmTR7q+rH0D3Xn87FRZ7y2cs0WHikkCvmg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:21:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:108]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fountainpen1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6mas87Rj08uzv3cbv4Xp+S/Vfq4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DEXeP4D0xOCNB5Pu6Yl+xzQsdSwVGV86Aukdnkk6GMo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:35:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.171.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:1f::8d74]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "enzuru" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6mONuwFOzdBKOI7kTHnwHPwHyw8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ei4oLQnyzSEdvfVfDmrEl9xMwY8+NtQbcbHuJCvILtU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:33:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.156.225.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kaflooie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6llthM3vKo24n/hI/qfbSlKUoa4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jAsjo/zkOkoP14+ibHkM33JfpfPwcNc7dJWCpXLMVD0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:51:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.155.69.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AlexJonesWasRight" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6lBvV+M/JZflbfXTa78WG0rLlm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yLGBvmdGCa3IVJo5ALMAF4ODFoxdD+ZghzG3xOtsaNc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.36.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "monomorphic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6iffMikzc0XLrMCzhvNlcJ1hT5A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p+5tEgJY0JkarBDc3nt+boTO8VoCKzGGygp6Mf0osx4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:00:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "125.30.23.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer81" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6iX42USPQl/mmfGSPI9T4yzko7o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XUFSd6twjm93vsjrXZVkuNp0pLh7MFlUw3gOLr8+Sxo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8181 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Darkbian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6g/Gs1zu+y7s+wrDZoIXfldM2fk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e0jtkW+Sn+KJNh8/845ynqlbuuY8IJXo9UOsPnqhX7I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.70.34.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "redacted" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6ge3PsbBTW2NvrGH4bWOToMX3SQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jLsfw4TuqgQb5w6yzj0WeN9pXSKKYBy4g1d4fqqd1eA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:05:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.26.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:8008:b000:8008:8008:8008:8008]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "warpventures" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6gE5NpqTQJjYmhTbj5Q2NvwXwM8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OFuWouXTbJ3Vg4ABklSn+0xvqkcVbcTdRU8+NHn/wU0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:00:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.29.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "libertas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6fcawG8pshEOP8CQFrDlBAdETuI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2ToY+XyK6D6G/iimTRPC541Y2Pu4wnk594aZDyTIn3M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:30:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.233.104.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:24:b3::443]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tachikoma" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6fWZsBW0ts+Yv3NEN6FS+iif8h4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nbmZa9JKawsNDeGMNtDxZHU1EXvsZn+WCK/npinJk5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:41:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.14.252.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 60024 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 60025 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=630" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "waltw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6fJ0LDyfL5/qeAHul6vnaTbVJoo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rtCWEc3AQtcT/4ly6MYto6E/vWxNa7mmcCzoDywVysE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:06:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.126.173.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Urgl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6dpBAbDg1xit9SEAqbMKZ7o1pnw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+y5KhYLbpb2dxWBC7p/5NWC1jQGsw8pcObgdOPruM3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.202.205.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6diXkxoLX+Xk3GCM2zGq0XNX3Nw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pXnTJV9EsCSNLJzW/eLsZO0tRlyCPsTuNh3tjZHn9eI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:12:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::16]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Superluminal1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6bBtNd77Gg/6z3NcEN5pSw9KSfs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GjQAH/3sFBCskzsGfhQ/AZJPMyY5/Xx2wUyg+I9aLAk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.45.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:305:2100::138c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toro01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6abhVJMAw1UQcbcaxUfiVo2ffO4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "orAG/TvQIJ2viElhZzXt4HbMruVmkX9CO3IoJqVuv78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:13:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.171.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:5d::2d4a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torHTHosting" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6aZD3Da2OW746PpKbr/keqYrtkU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F7kn5FeFb911prjAOHMN0r1ncNMzgNM30kPwONr6TbU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.202.223.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 81 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:157::200]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DockeredTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6aCOEa22BojeNaO9mSt+L0Ho/lE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8DSOVKdvigjzYdsEFmBvOEMSY98/UbdHSuUyqKV+VbY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.239.5.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Ye90apG3UL6vYV0+tZaD4Newwo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f9Gy4j893f5sZ5f6a/ii2Fu0R/y8/27H+suhtH2ARPU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::213]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber60" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6X+9DV+VJrn5dSmdkcKF59oAE5Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XG1kt431oQ/sGLWxzc0KDQ11jdYvDu7m8pdhjpLxd3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::30]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ohhiMarc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6X9YwG56pxdfm+KjxwgyXAP7L7E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6pbRbRi2OjPBDfwD6MStQKgrYO8z41iHQCb+fz8pCF8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:59:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.251.167.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gsrv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6X6ymZ//+w3cHFwCchpJWUYHlnQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RRhqn6DtqCdu7OwAIPETTaaYaYibc1cH5CLUXgZ0ZFY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:44:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.9.202.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:cb19:81af:800:48f7:8dff:febb:8997]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mgnsrr2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6XRMT34seiGbOza3aDXAbGeq+mY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h5QJR2wsIg7RzJprNDXvBpCic92OZ6Y3Nqs5oggcA1g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:56:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.240.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BigChungus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6WGM5mS4CanAutMZJhGLelHVdLk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WYV/KzKEv1ulFEEME/cuJfCyaqhaOIIAqjHY/IvVffs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:04:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.9.147.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kellersau" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6U39rt14QuBE0m5FFtr2v0cJy2o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c+p2E2GztUK0MhTIGulaZHG0HmGcwjImwQnRftEoW4I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:58:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.254.156.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dgplug" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6UfAKQh/ocNJm+9dQ3KUfFEiPY8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R3cf+O9edtSm0t4IO+lq7iAF14BhXVWyQacNqmG0Jvg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.105.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maRn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6UShGjLwyeCQUyhCUEHDml9MZw8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sV6EKIFAzeCmrcpl/cI2GTm7dxMxIWLPcTcuBlfV2Ck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.81.4.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9099 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Horizon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6T3LWH64QOLRbtRjIzzOU/0lmrc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uSTLIP1I3AQi/sk5WNt68lsDQOgdMzMLUt1oAID34gE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:16:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.196.69.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForBetterFuture" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Tu6bVrHvLFztdigu78wboUG5aM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E3NMBfUCqYBBCgfv/E1eocNteE3WA6j1DxJZKe4+NNs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:48:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.189.132.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DJh2o2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6SSFx0FeLwIy/ikAnI8NYfvpBio" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/a5NKnAbpP+E0NBnO354vxNWvUADmBVljXCywPzhxeA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.146.68.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt28156" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6SCaNE+DISRSuH1cl/SOMbPvEmA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fo44GeL1VgcMmq5ZH1NjpKGnUFOybcSz3ztRdSyud0k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:57:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tortoise" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6RkFz+sjCxvqawMJgW+e6cGhqDo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xq4wRfoa0kD8K48z8xo5sE0oflGtSMfdxgsSJrGllHc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.149.80.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JesicaJones" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Rf4c5jH5F7izOSh64fUZHSmUzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B+cxk1nqdj0+7NCXYqFNpqfkwrGQ3yo0SVS4pP/S/Ag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:23:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.73.159.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6RSrIF+lq+YJBquefuUntoCaRsE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RAyh6TgfTc2mt2F1mqU/LoQrtmSHJl+ZB/VOt0NNbh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:51:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.228.129.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 31749 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tengu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Posm2kPO8Fq3ppIA84sURMvEKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6kFqhbIphEytDlODLvPeo+MmL2Hm/SaGFoi1ZynI3pE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:27:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.183.173.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gorgothzilla" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6PCuFBUUWKV6OBLvsTmpfMSJyN8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uVJE/xKvIBDHfzpSpyDXxwsKxp+vYQT8dzlT2yKQzUQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.177.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=970" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tortue" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6O1AXkekd9ktnvsgH63yj/f7r10" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qYlUv+scIJm99uNTpxVvc3CwCx8QPW/t4WkDrByXgSU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.201.16.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torathoooom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6OQZzIpqjOE+c3iJvQJfctCh7dk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lIb6JTQEQH52pN+G2PTeGBNTzf5Lz5fkpFuwtY7dkTo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.138.230.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnonymousLover" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6OPRyiq21EaslzrztboxQR5xuwg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zf4QIti9JmzAzKm9utOBRmoSgR9ggtTDIl8+bYpbHhA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:17:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.192.76.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1515 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "klaxzynetafx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6OG0+N4AT6uCmbGlpQYPD/fA5Sc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jNC8eIyTohZhT9Mkl9pcQ+pmk4QNT7cpeA8Ugi4FRVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.13.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mentoreth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6OCYnoVnZ5pIdT5AKFIPUWaRTno" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ItneEEWD8tel+LHa0HeTPohu+JX1LeMV3Bo93h3bD2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.251.167.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:6340:2:501::20]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "libreonion1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6NEUs8eNjm5/6xAEZQ3WMsIUPJ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zSzI+A7Yh/3RUApKn2H9y5r2uCbRUtVUROKw1NqRp3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.4.132.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c500:2:f0::5492]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1174" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6M9XC0q0OdV6YYsHtEZncRqBGCg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rHamSETAm3WllsnAMOr6rSbPc9z1Q1DfRVxLVdAABR0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11174 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::174]:11174" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6MhmfK89UUjlLs9zansgSYL3jqo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P8+sqB8uCtX4bE303jP1Km/7m2FjoWdIo0u2ysn1tss" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:2::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6LiM4253a20AnZ0MzrduvpOrUW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CEACGjFJp8Sqfcy1g9aV6QYGGh89Ug145h/lCJ7fu4Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.238.182.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6K2MT9w/4VIVDABbsuqmoJkLdN8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WMHeEYMtsTnMwm5/FSSpp8cr3uTn3f/tyTT8LxiuQmM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:13::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE51" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6KRwiUZ/huiWhqsyeacLfwzDi18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Mds6M1KWlBEtGRd3U9CaM05pLsYUS6u3cRQHwyO864Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:57:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "170.231.236.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreedomNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6JxtyTJ5duYq09nbHsCVdm+DGiQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e/DpjkEeorSA6ePLeWW4Ia5raXzvsAnh/hydiD9MLMY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:45:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.55.220.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:ba9a::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Azula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6JaGEmE8VIv8pj175Ufi0cWU9To" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o+gRc8Ucr8wtskl9964MtBNNdl+wh8koq1cNk2ZXI5o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.80.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6JZaefsvM1GUFB6JaHVVJIQMRLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0toWgrnU2n1Ux94ei9TdHs2ucdvduYcg7Ouw62j6xKs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.171.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:543f:78b2:4fff:fe7b:fb6a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Planetclaire60" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6I+OchAHCeIm8i32pQNlSABU7NI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q37HbRGIUgUKmqzP8Ty63IQWMaGbnBUwfqqyvL7Imsg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.83.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::1af]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ORelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6I4uZiKIPcH4IpIUqET3mowKcCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kCTuwxIKetV98nP9P/oZKNMa+1Np7b3h+GSBBfAH58Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.159.197.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:800a:9b00::11]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6InJ7IVmAxSnzlohqhsGVADkXTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RfL3yyl41gDQ26V4KMOicjdEOz/7ml9EM2VSYDGE4q8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:58:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.236.228.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 43893 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH117" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6HLtQjvZCV7OWnla9TuUQRUOauI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JoMDYpc5T37+egXtIbu7dthHHmbjvZ6ieHbsPJu7ats" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.80.171.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:16ea:90:45:80:171:211]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mailus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6G2FjyqvneKiuVKgv4ZLfzXtyKM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Fl7SHAk9eSQeNfzfEM8V+XAn+AaILf70/NflFpbHbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.177.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:171:2684::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6G0W0qDjUD5plx3pmZiXV8aTEZU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ryhaRcNu7QVTvjzN5tVqgaV1Jtzkbmjoeplr/yunxy8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:59:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.114.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torwell1984" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Gqzio8lr02iNCy5wOhprwl4DhY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nIeVrp8jWGdsdiyogA7kgNVdc6ePupmGc1SvLfOaATc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.160.134.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute19" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6GY5JP4qrU4IGhftaXbQroAQ9Hs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yr4Y6tFGUM5WjAlfIp+DLF2SgA/3Zhc2RttNK36GSko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6F2ARl+ujSkauJIpLz6g1vsII1E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4GuzVRoweBVO4G9RLyOMY6uUZJtwdg31tvbiPECP57I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::222]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Viscofresh06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6FyOPPssiEqJb5v0lJ+76StvM/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M4lvrhOyaC8ThpheOSJ9XetZf/MjbEGUsQGLkGQ+dNk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:22:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.53.186.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=750" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isoedideditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Fn/4+jQkxDyZkurja/vM/XNJG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FSOrc/dCZsEFX8Aosh2DYSPoXRH+PyK9HEljr8g+QAo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:21:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.39.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:481::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor2go" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6FYsfPvrZQHy4C2gAgP5WOixaFw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8JlYK7i92imnm+5/aDJVaiDu3gxWUil8mOCpxLY/G20" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:21:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.177.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:92ff:fe82:20a1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6E9B+h0fowP9epmjXlCs70Jphow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jzD1jLI66scessE/xZo9QLc/r0cvYsVeq0Dmxu3+H7w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:13:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.198.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:9:26:6831:11ff:fe02:b39]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "natestorrelay3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Ex22b90aUBFUG6SK4jTxD2+1iY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n84iSxQ7MT5JdPK4wbzvrARdBep75PGakd4SiysxOWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:10:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.55.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BetelgeuseIT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6EZuAsiTuaZgKiUczqEA8lLiW0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dywch08OqwxZtTa8kOuR1JbZZO8+6bjm1U5jwryn9/c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.136.106.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:29e0:2:6:1:1:30fe:8547]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kanagawa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6EUHvD4JM/4GjC7Qup4bh0uQVm4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mhZshROm9FWxFYwq/i3YRYYLgFGkMPOGEOQaSIz+Yp0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:46:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "100.40.211.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dominate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6EJmAY2J9PeiuyvKHFuD7TEmtb8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hCTX45DvZM4bgjho4mn7cdqsmei8sLdh+xklJvdSIoE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:57:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.238.170.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OhNoAnotherRelay03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6CO18ACDWmaekC665ezLmjJPRsk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LtGQxui7vigwf9J/prDFXcm0Qm38yWCe/O7hh37Cr4A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:11:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.61.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:cdf:e985:affe:1b99:1013]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ProxyDB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6CLUvLnLxkn6LM0UPv/xgmzivW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Dd64UTui7q5gLp2pCP7HwfBulYNLlImMiwA9QwDo374" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:56:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.11.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "b0rked02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6CH83Udzww9aFSbhHFL5YLXlb6g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/aiAhNtnbP96wYyC86gRtD4Kxglyvm152lcW4y7K/ys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:27:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.20.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8006:63ff:a274:5ee:c506:8c54]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Chimborazo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6B72CnOzgJ+JZPc3ZrAbqgoXHiA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t7RaL7nGAQ71pNwNnIy7IaCxTWQ8fhMWNIG/OgORjfU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:34:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.47.244.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "obiwan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6BmT6lK3MoXP/QL+wANWnSFIMAE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CxKopgFBcIWR72kEShYs6PnejnE9SAQvumCPXFqgyr4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:50:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.104.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "llutztorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6Bl4159fvGfdDoD26tzoipenlVQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7Rro8Wd7XS5Te1xfr+4S57ptLz8pZEUjETjzpS6LXHI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:56:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.199.213.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:51c0:0:147::52]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=630" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "homebox57" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6BbE1M2pgQ0ssTcSV0Yv9rzk35E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kRR0BcX2T8mYh+RjvW/1PpL88vzTf5QBRjXYfnN1Qwk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:56:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.115.12.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor70IPConnectINFO2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6BY15fIoD0yt0PjdsjBope8hblg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "40eHZByJnRBXCGvrt4e++z0SSawNN2lM0WCgncmzvEI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:43:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.5.96.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6BK34fQzywaEO4wNMcyHiOo8dTQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ySl/gbnuWt6EBdx0uJTrTH8zBjCAhlffz8/lU9aHoCE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.228.40.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorDedi2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6AKPDJa6S1DrfTXRqk2dxwnOYys" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uuWEt8Qr9ZNUNdEsaU5J18KxgQgRF8V+/ZNRAMaY4ks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.28.107.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:2::762d:0]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gertrude" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6AG/6QSBBvs+OaGwdssDZIzpPY8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RQ572HiIJb4HpbSlxr5i9Zw6oagy5yx1BpPsvtvmhjA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:03:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.58.100.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:fe56:2656]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gumersindotor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "6AFSfRp3MvPTC4fxRL5ooCjo7f0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T35CqZVd9xxa9VsGNs85Is1/LZJFDg3Kag4RYp5pNGU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.21.125.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5/79qujQGY/6LWAU3bOm15VPEYY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gwyNHKjBQLjG1ZAXWWQuZIwJ3ta4IVKYenOfWKejLmY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.3.81.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elites2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5/t/IdaLPlmMCY41QLaWXcjZNPw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Wk8H0o/+wustxZNcoB74J3gtdSXxtNbmu/umyDdGks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Silverwing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5+9ztHIs+vDoqiFR06p4cB3l8Zs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iZ/jsbeX2/0KGkf7vPzoriHO/8rqVYKvz6iOPz9sWig" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.22.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5+3WeJrf0OoiWV83u8Ku8Bno8uE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T5fKM63Oclc2Pz9h7TU9MfWhya/5Lg9Z+ITTzQiDi8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.223.3.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5+AJLdyDlu4rV/bEaKrd3UjAz5Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Eo+AoTYph9AT9koecMxrlW3cCT/uWvZer/+ef3kMPjk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.219.136.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fd23:1:0:fc0b:dbff:fe0e:b25]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zwiebelPrincess" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "57b9Fx9PXr94cW9jt9Etf2RxD/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IRMjkbxoem1x3gtMPxEVOcKv6/JWxT+hV1id5OqGziw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:58:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.249.90.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2002:4ff9:5a30:0:921b:eff:fe46:a0a2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "57HXRDGaWrDwkliyb/2c5EYzlUQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XCutdYNy4ofitCfwmfKQL34QOX2tvpKX0OkinyVeCiA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.155.76.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 24752 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WetTrash" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "56VtVvItcFJmepyBCwjHCd+ZmbM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2puYkhMPErNzxe+r8T40882O/G8sRzy4yom+RcQ6nzE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:52:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.180.214.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "waveguide01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "56PaQryoZDDwid0yw/2jNTTnbxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u7yvalELDlwZ1GEXwb0Ah++3iMdz45nL8F2uSbuW3ko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.30.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c01f:30::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "55ggJ265zcadHB3O2F+5ivWMCHI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Du1PiHNL5GiHRlCBx6126yu+2Q3KVu0O/3qs76xaXNQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.98.6.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jobcenterfotzen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "54j16tNtR8FOQ8KJ603k20aLrBk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fy9G70kKNzCgRzSv05kN26itWqn2QqQ2DCfSSmYVa/g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:11:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.152.40.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "54WBP7vTUmZLwfEzzjGlTvWWxb0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G3QjFVrQl9/BLlhr/CTyFpjV9vL7ZnqC4shHvzaxEOI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:08:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.3.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:21d::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "52+oIDwLH9PysTvDFuCrupxWDRE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "brwX/xIByqKChG0MIkQVA2znsjysneaMtN6V3CBh0bg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10053 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::53]:10053" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FortyTwo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "518qyhoYKRr+Uua+C6wfgFq8FDk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cyGMbySSJTizEktP94nAyHQ/CGs4no44UdC0iAFrlgo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "40.131.187.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "51q/KdS0F9PTVlrtr4nk+dFuc28" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TF6fAECMICqbc6y+NKEWD3c+BYqUtS4blgWuYlbpWGE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.206.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:feab:5d7e]:38443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WorldGate2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "51o/rIGp7BOresmrCwQqAr2SO5c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zc7w5QgOiRrkfaneZDeoUV3nnDhLyTdHQd7HJ+YNHoQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.65.4.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:cb14:604:6700::1545]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipfb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "51FmztuDl7ht5RK5t5uMpyJey1I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BCxw2/WgiJNvThkDM6n1yiHwBGOBIVJ9Hfz2peZocP0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:19:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::245]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "50ZzcaDAYaZKmvlD9TDyU9VDM+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FTgDflIGLFs/NL+0czr4bFWwl9Fqe+mbOwoVaEV+0Q8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::198]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fezyqelo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "50YRLS9FDdwGNulr2WMeKTmcmxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i2kiZkg/Wo3qWUSnK0vkW6ow4hKHVIVMbW2IC+T3kAU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:49:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.130.229.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10600 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:4780:3:3:d82f:b918:3557:6774]:10600" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DonBronRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "50NxJD7MK/xkcSUN3no1mWyCw3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CuFNn48fPnPLeUiO8rncnBBIuO4Ai8pWIrgWxGy/Y1k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:18:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.33.168.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rockyrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5x2NEVkIyxGWqb4Q2PQtL/0OJy8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8sx30YBmZffrooibmMnlpgzLJjA+nWLH8eWyOS+akNU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:37:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.79.181.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:93ff:fee0:8bf9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5uStLbxt45o1wz6dAWXASv9SzJA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nFACtfyJAsRhAKk0kSq5Rzb6AGw/dv7uFtRccbSMDYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:47:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::230]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5tQzK/QP3ueBTy28kmZQ74AytkM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8bHTjee2u8QJ0h9TmfeexlTzItVD7sVI29Qxz4ZCX4g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.44.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:190a::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DogesNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5s06uB1vRYHtE/rs9quxoCDm3Ug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/njhJU7eIR0EAIHi8YIJZ9DRyMcJFQUHssmq+vw21WM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:59:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.203.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lazarusRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5r9RL+VqVIyx/YljYH0iATjER1s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qi+PoYhtbbBEcvmLg10BK7UTM73SuHckD4JMYqvSzLc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:48:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.204.41.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2002:3ecc:29d5::3ecc:29d5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5reBaGLqLa+oDIxBwxOAwfp4ViE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fttE8Ppo70XI2fCHcUrBTtSm1w1xlgJ0s0J2MzyAI7c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.169.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PaxyTorProxy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5rFMUNpbK74/v+d9blaIAs/cJOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8RX09OWhhx956SZ1TqOEn0YjpNVk5CRCmKb2Rqj7xBg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:49:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.175.97.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:22a3:100:64fd:a1ff:fe93:48c1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeverlyHills" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5pAi3sAPJZsYsvbqYWevH/S1SPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qCOwJ2GfYwIB5shDflPcBU1Hqj9Dec3WoPz4wKlEe8Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:41:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.87.189.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=790" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "affinezeussv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5pAQPz44ij2cElk28a5cZMGibVE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pTH6gDormKeAyJDzUNB0BDL11fE5d8Is0x2/Uaupw40" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:16:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.65.174.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:3d09:667f:e110::37f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zwewwlUA2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5ozJwuJi4BxMccj2bwdRewq14kU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8QUf/teQJt2Iwzjk5qwT9od9nX5TVUkXtpei0/e1IzI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:07:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.12.221.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27a8:0:a::12b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra76" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5oVzOkovGEqzIIRglGUYBqYmJ7U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NrsqcxOEWDsUC34M92nu5BK9jY2r/bbdrSNAdaUOhuY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:34:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:db::e9d6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheClashFruit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5oMVgGE86Sp9IT1KVDPe9FLIua4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gpFYGOQOSxyKHS8rpylDWC4tG+iY3pVEY0k2c9eltYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:45:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.119.123.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JupiterMan300" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5nhIWE4eRiHdiI4RrZxQR11+Rq4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D8zTXXmNorTmWjiQQm27qrI0qrP90/IPIlxs75+SxOU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:08:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.99.147.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5lY74+Rb3+N13+RHaSXLmXklGYI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6nqix89LGi988wKjCzbpGh4DQ+WU6MrpbnJgxwaYdwg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.22.173.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1838:36:20e::a752]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5lGCOgVjixqjQTcFxDR0DnCISSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XLl2u5gI/V2LUb+3if1AvD9sG2tpL6FlCqqCrZHXjFo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:02:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.144.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5kuaVZOG5e/Uw6QmDst3XALDwDo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CMqRv5b0JiTNQVhY/gFYGJq5M94aE2KYbaSpiq6ruEc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:18:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::3]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Xternal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5kYl7VsBofDpe88LXUMaQyok9Ag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RTH0QrMKpnVYu6B4y81A36O9b+javIyunOmuS7MCUrc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:16:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.39.8.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MumxzbaDoRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5jlU5ZTodo59SdDGYPf8ramb/Jk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xvgoq5FytcmjdgLnR5wBN8FcWExakPT87K0VoXpPUwk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:36:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.20.77.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2401:c080:2400:1ac5:5400:4ff:fe23:5945]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay23at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5jeqCtS8zdFkOtu9bnveGxNSeGQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TMbfmnXRTpf9QKzStdTDwfc4R2GbNfMecos5iKKkyL0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:51:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MickThaMouse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5isBgkUUA8F7PzNcFG/ML1Sd89s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i6abSKH4hTvUgTk2u80VNxFh/HWVguKP9Af9QsIqUcg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:20:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.9.79.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5ideisByZY4Za4njiRpZe0lxaDs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eGMYGZFlgJV+ymh7CsKDxvOCk9VPu4Y+vAWodQ8YwzE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::15]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theark2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5hIwYyWuA/DILCkKyvuMckqLW5E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XL3tDCsFL7PI8afJaL5H868vHQ4n5nUvRxAsN57FyaY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:20:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.123.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:89c:b8d4:46ff:fe68:40db]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorKeyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5gYPCegAf8fPrHvCRHf52HiyR90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jthrcZcCETYpct1eS5F80pO9yCMzNDI0FFQV3KuaA7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:05:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.51.253.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "askatasuna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5fPt2ScUjF6018tx3LyROC9Xp6c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Efmzg4UjUw1+lcNcm+2CwoqnkWO3ojskf8t84oNR58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:14:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.2.231.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "liveinmoon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5fH5RXZLuWn7JOyT7e12hGuMEEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "COMp3G3J0n+aBo1j2fYLCAjNbBh6vtT0YDk9m2kIU0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.62.117.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "right1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5e2h9FAmjmiObE/V952pVjCyrRU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6uoRkpdMchzM+z0tNfh4Ud6IWuC/ilWhIrNZVWJ2rBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yyzz1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5eVT9R2CA1os5VXbx9iD+qMu0LU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9unPK47S85HnCaAP9q/4f6EIWzUVNJA7+h2cR/+Gnzs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "155.248.212.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c024:c000:e400:5d76:a308:5c3a:b70]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Freedom216c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5eDQErx2uOAkky+sRvPohzVOt0w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0WmJg3r6wVx5xYUdXxvbzqq1F3PbHAaC4U8FanBrEkI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:47:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.217.86.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3100::572c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5d6p9lcCB9uYQcoEwkC83P7DIA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wjYSKEetlNFrHi6PNwNYl76bVEuSjBr4T1qAsK631EQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:36:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.78.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5ds5AerFmt/qKCN0k/YV2jq4icY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zZHmVy9WcT8APAiGqNBxhS5bDCcQeaVoqrE5pxRDGdE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:52:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::23]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5dfTU1fpxVtH4q3ecxmRU4iL1Ms" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gXxpq8wiFe7WbEv1zM90xWpb7z7T0ZbZ4sMITS7WZFc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::200]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "asagudentor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5dToEgPTfAep0TI81jD/qLn2D1g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8l2iryk/2h5CrTFiVQoJ4qNwzPF8ZBEj411g8a3xD+I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:40:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.80.102.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "emergingtoadgiblets" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5bwWy8opJaeJKvkjlVoqZo3yOKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AYsiVIAi9J8hn9VkDPibDVQd8Srx43Q5TslGwXuOst4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.51.38.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "securebit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5brhcjX0/HSrNiR3AEz8zUOaWog" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TuHKaTU34AFS8jPi70RX2gH/ApGHlqpgXUsLc7FRMCQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.202.203.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:4c0:f00:55ca::cbf7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelaySecurity" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5bf2XDbBxbieKw00EQ1kmjVm7qc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BdFgpD/zkdLZF5NKC03Zh0wRnkxg95ZcmSaxbQpyEtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:54:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.52.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8901::f03c:93ff:fe98:cb68]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5afNMpAwj7mehVvK4fonmvGbFCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mMZzM77j2NaDO9Dfpr2MNTfRwmZHfgyq1+z4xKC23sE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:45:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::57]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nutellabr0t02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5ZrSS+VOQibPyGtPXTcKspI0KKc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XPCsBx+bUPY9e1PmxFz914Qt4d6kEvVdybtXYYftNu0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.171.209.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Norman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5YpIpiM2oIzDxrQIApI3VOZaJgk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V5khaA2wuCzOCQjmoGV76JV787QgM1hC265p8ATFzWE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "52.52.230.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "epsylonhost" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Ygci0YFLyl1uPwchLfMBgcO/ag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xmDiFQngRzj+7iB5RMK5sQJVXXXZcD8MYAn005Z5ZhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.3.61.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayofthehearts" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5XQUkErGfvU9H/9lBZ7KiaPkbYc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jcw1ihw8EmHi0HDkguw4s00Tfv7XX3Arqwd6y4/fIwI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:46:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55615 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pangea06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5W8HdZ5wTE9TM04WEGbxL69/fJc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CU7995jiKtaOEgh39SW0VCQPmBF28oee7SaEg8LG9Qo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:47:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.167.244.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5WDY6kk6N+2N5rjErQhjSD3nLvo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aWSHiEW9KLhCYGA2KuRy92y3wgUBWEPCoxs6l38bzyY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:45:457:d2ff:fec3:e823]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "datahoarder" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5VB0RNrARTm43GJCmWFhQbDbZNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fpzsZdRzY+qIhB2cvwD4T4rD+jgHAxbbTCamzrDHVfM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.86.115.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:28:ca:246::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0157" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5TaD7fhG5tJ8ZoX6SBk1+xYzlSY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OiGXB8sHV86+d0kV4qjQhAhaUFOkDk+mVWMWek4QZwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10157 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::157]:10157" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber33" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5TLUu50QxxcolWHgP6yyvy8Qlv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lQSqK/xmeCo10zy8nXL1fNL+nMNE0jSZ1jeywVd60+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::17]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5TJKlEf0LCPoGpQL6qlRcy8emvY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OpL3uJr2XaKTO8WrHxuqUd9AP4hq7uezzgcSz5xl8Go" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.80.46.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44300 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 10080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "commonly2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5SaLpnIAbxe9+mXGKkqqXXJ/XgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/DQUp4UmRKo8i+PJdtQWlcWY54SjUuQU9SB1Bccywr4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:56:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.40.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fai9ve" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5SHQFianYoIquX3Nnsw0GoohLX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QicQd3BrJIKsv82SJO5lED3Fj4hW1409tCtjAyz5YR0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.72.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fearless1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Rl2We/xz5dxtac+GesfFwoQslA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xnyn0EfiOBqnOErHs3ga/6oqw7EbXcb23l33DxycphM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:39:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.170.10.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c70:130:1::529]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Rc2WlGJnyKOmaIunk71k0cYD4A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v7wzWXQTJAbj7YMrJR0XP+0UZqbE2O9698thLhyC9pE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:14:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.68.107.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3004:1426::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gugusrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5RZqTloErbrcDLfqhUBZOJjx4QM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rm4VPftlGYM79nJ+1usWu7+S4CS0QPXNlh5uAzAzDwc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.197.183.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1620:52e1:10::12]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stargazer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5REr1tBoSD9wW1jSUlTKgUMLxEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MWPt4hHFnppbdE0dEBdttwrkCDs2mE5AmKDl+RKFD4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.55.240.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2916 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:800:10::215:d001]:2916" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sandman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5QC2V5ybNzWbc7WMHuPe6S6bTzM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x0P5BjmrO8xzgbschbYz7BsQxL1XOVHnNvSrNcSm1YQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:37:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.238.170.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lucuma" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5OzNjuiJ6Mw+g54NjrPTUNsTwog" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IRacKk84qjAIQ+2l6SkbzkJvODDhHZZjm5f5Vua56k8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:38:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.18.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5NHyXfvkhCCIZrpKGpWLcxJ8sK0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sPQoHCedS3ef2uB+uYo31zTT3Fg8P5wpND/eJ++rEcw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheBlindAppearance" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5MEr+zrC5vFuTx80qoB9Edkk6QU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U3qmxRLSMMU7XXZdqM50HMSBJ2CwGFIa90k07T21kk4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.73.134.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5L+tSdIdODhIXGLYQpOpfaqqNbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WiuSpk0nlgfpEYz9tAoyx/3MSeSzDT+bLknLrFhnq2M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3646]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5LDQq/dvrrwMlek2OnWm8MoPXhA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "db9YAd+Eb4BJy+ZxBZL8KmuYMHqhnAbHbcV4IHFv6KM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:34:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.169.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fusion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5LDK0RtUh8Rik3WaPUt0SEz5NQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D9mUTIofbtn9gHp7+7NJRwtbPYoCjT7OImHJ57No4/A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:05:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.46.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:172::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "irons" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5K1g84tA6CiMlGI5hrcUm8656Tc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FoQgYqJjsCwJXdMhnKh+Nngsr/+bPbdPH4Aw2UBL2cs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:24:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.117.148.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "threeletteragency" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5KsusPf+R9Zxk3cstWSzF+QWGEI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bVCRTS0yXt7cwLXaJQwWSqoRVYJrHqDVIBQj9/DZW74" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.2.150.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:7c80:0:171::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Ki8guZgUo1bC402wIq0S3c1FzY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KXC+ATYcshaf+LIW+qAAxzKvx11TFIyzqznatmVT7Eg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.152.211.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UseMoaBandwidth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5KfPMtHsgVIeI0yL9GOE51g4qNc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SeDmnT4W7ZUWlSlg3WMW5GJEFPPLjWpzZUBQaEW5LkQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.60.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5J82ltwTlGpo3yqqbtpGC8FdjwM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RP4+sA27409+8cJlyosZEErdFnTVJbEDMVEgOjEL4a8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10033 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::33]:10033" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5IrQLFT9P4w6TqN0Us4ygaDSRqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qqz7/chfdjdUr4Kxk71Q3QWmhVsCTnb1LR0uVqEn2kk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.143.183.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9200 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ToolHaven692" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5IXzQaauVB3zE6wBynxeHdOCCl4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kLmmCGCgd6aLxMPo/6XlZop5Pg2XfYzXTleS8ZJi4Fc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:22:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.149.131.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex34" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5IDVd/WOeCpbxPpvSaZlDpOJMC8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D9y4UC16BtpO9M/eSCgwV76l30Q3NmqZkkG3SD4hl70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:37:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::114]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=720" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Hw0cWaOp/F0w7KTeWVEqRfg3Pw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "90zN3Ee9K99Bm2UR9mVJVIOPud+2YVrWSjNRuczX3BA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:07:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::225]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mfet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Hwwzi45fM2vDt6Tc5eJNnkH2ho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xFlmQ9oBbvzEbOGqMiYvEKnH3rfzTWN/lB0rH/s3wvY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:37:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.38.29.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "highwaytohoell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5HPT7eWbCqRYIXcxsEWI4PT+BkE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "swm62QT5ZeivCQAyGsBDnYH8fVYAtW2Hhm16MiGVmOQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:52:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.58.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "teller" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Gl5owU9Q63xh0Y6bkhWyHW8jIk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XkrgevIwQIGylUokxYsE8BCRQ2K4Iah8rEFQcNNtf0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:24:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.164.221.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fe70:357]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalist2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Gd3xu+2A2GQ76rZsT7p0OdcVRA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CB7IzHJuEyPoK/Q5dbbDWz2zpbLiq7J3tQn8237B03g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:40:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.188.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra19" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5GWtFmeYo80KSGb6Kou1rdFX+9U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uNYzhsjZI0WzTimAUkuijQ4kZxpJqmQTeUa3VL1APUI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::125]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Secretworld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5F4T2Ln0mEX2qREO8boq/4/yayU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RkdY2LU08l4K2KWF2n+Jg05jvunESFjWQ6eBhgXdAx0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.248.159.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AsiaArgento" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5FngI3TQOF0uJRXLvnB+ogiWa88" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zWfRWn1aTHrLVehlXf4ejAaYXOeyeQ8fFZfTbkaWO48" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.94.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:208a::1]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torx1steack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5EY34gtNugpJRCThGPABESq40hM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e1egU0nEoPkdXRSosqalQinuZELPnbl+Z06PdbeRAqc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.9.173.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shade" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5DtCwVPi9CFdWBoSG32tVo/j2xU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aGzGutdV8YH1qbPiW4mxxmR8m/t4rvUyZw4VHgKbRbo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:22:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.84.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:151:2234::2]:9101" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HSLtor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5Do0bLgd3zZLb/aCNa+tug6Gkrg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cxm9nHG2YlVQtm9v2NA+SAkwrBbSxbMvhOolq8RWFpc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "punki" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5DJEaE4Mkk7AgrjsxzX68vjPHEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a8FPFhkkF1tXkKEwoKwQWDbTuvOw6EcAbsBg1yhR+CM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.32.66.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "monkebarrell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5C4w2fnCko4VqsQVjsAfsV09Nsw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lj5HhITBf/XWYekjmUxI6dUAd0YiA3ssjS9ZGEHXNIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:33:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.214.6.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5ClU/p2XrvTLycSkLKvuy1kmtfE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qfY45lY8gzBLo1nRU4kczHPV198y24M+kiZavU1oCU4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.175.8.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kptorrelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5CE3ERRXe32sDTQ7Kq9j3mE1MIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "46QQSDA7+eOoXWKLcZMAvipAKViVhFdV5OuEPDIYdos" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:14:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.181.71.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PrebenBits" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5BsijDLanCsRqi1urBjzRXFi5m8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pi2s1H6XERY3wlCub/yxflgjubH7xaB2BZPBecZmfPI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.60.126.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xmission1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5BsW9931LrsdtCaKsv40CzetiQQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A4E/nX2+D4BhKlGcmuN3vd5q8MfczFtyaknVRv6IPqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:33:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "166.70.207.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZeroMeaning" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "5AEtOw37XLdDohwspBIxu6KXhrs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+PxS0dzI1wBWkix/2CMockjWW1Zyq/ZItmZn5JTXWu0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.50.175.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1d:395:2::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Finisterre" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4/mMhsngETjdjqBrHmYKDNtLJ4I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FFF70tT7uZtHgh8cTS/Lb9hBMS7f+9TNvDphvw+8bNQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.115.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "90377Sedna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4/fafMfVtswIV5muBASqTS1QPlA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g2XGDXXp6rQ1zpo16tCIPUt/AnhDCcu7oVOemOLVMr4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:08:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "150.147.56.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fidel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4/cX4HbY//4xxb6Y10YcnVRL9gE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CEVSI11pyc765Yeau8stFhtXBnZRKFFYcDU1qLdSgjA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:57:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.166.162.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TrumpSuprtrsRDegens" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4+2bTVu2WjF8qpmNupSYhJgusAI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RtAX/1YKQGBOYv7WsDZQpo6nXRUq2Il4wFkkfO/oezk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:24:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.120.173.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cebeta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4+nGwLVfHBlq3/tm3Mm9wxqeTyE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+fqtO9DpTPEGyAsjDYkOvIJYEVt77w4EKi/Muz34mvg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:22:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.183.119.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BruhRelayZ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4+dwFdBIaIFZ97nc8MiOcs0QA/w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UBMhtYtz/RemkQwb4WPWpKTCbiNLALW4x2YO2UnrlPo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:17:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.8.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c04::f03c:93ff:fefb:588d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra17" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "49rwZ7AoRQsxz1zhGPL5rFMUar0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1Tyxy4cFElDd1dyLUFlVV/uJtFDwWkk77CXwr73c4Hg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::156]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pnkantor001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "49EhFsvm1l88AYt6li6z893B17E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rsctlpj0WUT8SiEvzEtokM7nE6GNadQ9Emtx4jlw0Ic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:49:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.141.234.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "las1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "48gLkWIPm0NSxAOy1pLAlAPaJZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NCAEp9ywqrb2VjUucp8MQMWo/rd0B/V+2D4+WWCnRqE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.50.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:104e::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AlleKochenKaffee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "48M5X22miT+zPahts3KLOHOE0sk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5QkundMLed2fLCg+rIQSjYAOIcwUoUOOsCtXfnhPbQc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.13.131.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1398:5:f604:cafe:cafe:cafe:9001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toriligadaze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "48L2i/WJEmpxQOwhitZr7l77ymw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qQMaarTzhk7jeMKxyU3UjBFXO1vaUXUkcQL64Xaj/8o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:04:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.219.37.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex98" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "46SR1JDcHDgy1/aGFe60UIyFfYs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xPHtOzKqIb1fL8H046F861WOC7XORjyJbEce4o3SEcc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::187]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=590" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedelkiste08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "44j3vRlvUZWu8RRVJYUVLqaUIyk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SuEqLMdqfxBO0BiFQmn5x/FiL+0+146PyERxe7up0+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:19:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.81.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2fce]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PXArelay02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "44R0gpP8RCnitCc2DbT51MPWGdE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2Mae0L54gZRIp7CoRfFktBKhVrmrqBUuy9fc4YWxBA0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:41:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.62.96.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hackeriet1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "43mmys76/huOpoUDv8/xIVvx7n8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5ILo7AUS5BAG9AVJye54xYAlmvJLTDwTJSacg/bmQe4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:22:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.35.202.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:ed06::222]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YATN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "43gpO+Y6cI2quHj+9Kb5zd3QLNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M5O4xJYL3415KvvZATDi3heSG7+AlgOVHwuiKOQs7NM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.21.228.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 30002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "quokka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "43XNI9YMIpG9BOl8v057qQ4+VOI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MSt3MgSu4M/QeDDiU4nJSxj+nbEj+RXTamabtn7PjX8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:04:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::73]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "naiveTorer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "42U2QEIAp0kw2xZYWL1btVTSvqI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2K47VkYvZeN9l1WPPg2/Jvt4+vQKWd6V63IDGCNQBco" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.6.40.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 995 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "40+l0hibqOVIBUAUcRo/hDC/O90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8XR8oWvslO1SC8eLNU79PoFSGkXO5rDlkK/cNuvWiq8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.87.42.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "40jR1ufhIiCFanfFtSrMF1Olj/Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FWP8OhBoVexN4fdHzU84o5pfc5G7AdhHr4oYOmAgTEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:06:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.42.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay5622095" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "40DT5Pr5zQvinBbka9mCoS0rKdw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y9gxQ8WRtou4VEqi1BAn78ihp5blZN51kqgGFU0sR4M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:48:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.142.53.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10283 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:ca00:0:8000::f9]:10283" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SamicTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4zz/1vA9U3hJk4ArM9+uKxeMYMk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "baQtXMQf/UFCyc1a6Jll4e142T9NxMv88OzMzqOr0t0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:24:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.60.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:4ed:1:1:1:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HostingOSde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4wvvlySUQ4l6oFHgpkMQZz/2NUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B8+9H/tWBrHUe9U9ArzxZBIWU9ko8kyvU33jWHlegwQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.40.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:66:deb:486c:9bff:fe2c:bcc3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vale" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4v7Mj9ugAHjCggEpUY2eGMIUiVI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZKcp7+kaXVrxNgvYmoaF1rJTZENPOLmk4FLYSzh6UGY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:32]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "daNickname" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4t44/eeyL6k01fKhUGjdB47ibyo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZYdqdNkzcqQEhsZlftgJM2ZDZohd89PEub/a1C/dd9A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.66.192.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1111 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ElToro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4sav46NHsUz2OCpeqMY7UPfEeRo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "82Kv6n/rNPFCiaLN5W71Fv9dYLOLR7VGDpCzITaHKrY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:34:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.119.68.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whvger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4sK3Pv/7PqWTOA95us+7TEuec24" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NTzOpAE7hFCyn1exUGS4//S0CUXKFsU4N/SXjfFBKSo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.123.99.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv113" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4rqv7OXD07T/5hc7MJeUjg9zBiM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zXjo64UDI7+3OVh0JRU1wt8S5ojJBnLDcVZ1MC/jExw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:22:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5513]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "terNOicebeer16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4rfOAeIIYzKYbvbZT27MgKDE/vY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IAmND4hsttp/5MPSM3bVj3PToZDnhIM2S5oamMMqeY4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:42:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8126 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:41]:8126" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer77" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4rKMD0WjE5r199TcS10WxjTjEMU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t4kiR+DijiPSi+zaHQKNfO7CVv3vmdjsb23vlJ26KCs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:11:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8177 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4q9YefOf9A34mU6bj66rJRiu66Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LJ89BQwbGmybuRkA7zosVR/8Cyn0ydoI7VaD4H0QfNY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.129.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra39" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4n08D7HgBJvhW5tT0CkF9BsMBCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mZitr81j7KkEvm3DBT0ijWVJRTURNYIYpL6tEUn0Z0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:13:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.31.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hecarim" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4m1agrfMCh6Eahv2RYE7/GqMsjM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qqXhyDhzRV7e6j7a3gNEKKz4A2d9HKUJspJGzlQFMng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.217.231.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 33123 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IteraTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4mhtQEy6fkvWYAw1d+0PxjM2gE0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7+xHFb8Jv6L5JigQ7g+mdu8L1X1IRPbWjFiBibP6Eq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.128.1.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NvorDarkdrop" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4mY1+e1BzahGfCqpktgQdDN2Au8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r2F3P+xiXLhXsrz2RlJ7iBo4YQ9ug62oSr4ihRjFwV0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:06:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.197.166.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bitcoingang" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4mO4YO+hd/Dd4ww4H4k/KAXBQNw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JDKWRe/EPEBkjvQuNneypkNDNTFly8KlcDssDI0b8UU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:55:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.236.53.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MovieParadise" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4kjtWcA7d5KsGGQqnNMI47BhiGw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pVCdA4107cLTOQNmJll80MeInrWgf/LIOeuqV5BREhk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:05:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.242.61.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeAssange2021" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4jvi85HFG7FDzCwCUb2+LekIuEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zh3K7Gab0+QmzmFl123W4QIFQ+osZtf4QNQeRQdePJY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.132.186.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c010:16ab::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thetdrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4jkxkjEh2mTBLLaqILbyw+VWJ/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3EedghGNiimIEmkyTnvwd29VMW1oODB5YEgx9KLBa3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:23:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.250.238.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MAXKO" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4jbwfXZHLJFLCbi6UpMO7TVV5q8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h33NibRZPEAwt6B4tS0P3HldWvJcg2s4XqityDzKAf0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:06:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.95.169.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4jX+yNrH934Vhw+xQ695bFKAgO4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E2vTM2MYiYz4pVg0GK7qReOjUJHCD2HWj64CPuZdhYQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:09:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::41]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YouOhKay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4isB8J2hqlYIfW+WRcSlRxcIkHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ngiaiT71Z7fuj1MegR3j1MmfhzibGQtG/bctItFiF5I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:37:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.17.63.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:348:70:46:17:63:214:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev9b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4iaU6D2nvPMN2vV4Du85TNA3DMQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5aDdwJ9X3aetcJ6Zi+sbH5WvOhJMBmAst0R+wrKzs0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.121.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:8a8:dead:beef:ca1f:1337]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Jubilee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4iYz/xyUEq3tcx97Mam3UyFCyJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6YRI4pKAV9X8gWWycdvqE7fZfzSmdVo5Ru8UueaSI/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.54.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "solis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4iJWxBVtR5A6aD+rKQzYHKDXSE0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4dPiEAOgGaUZij5LdwXEi6MQ8yJoJ2kZNpOMNZVSgSI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.212.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Relay48" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4hd0bLOxM5TBbPp81IJBVL1Rn0k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B7hrs7IaRw43ajDb+aG5Ark/2d/E3gbXwh0d7T/WCUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:49:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.142.138.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MetalRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4hM2pdWwKDnGPh9o3BzgOwZ7rMg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RinzC9cBVVzADBbwWjEhgcBhXSchYGPhmQXZ2Fu+g1E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:15:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.208.206.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5130::aaaa:2d9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Rudimentatious" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4gf2J+zkNF5nDgV1uQGWhCFlDI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DAYQYyyf1lvPY1krFuZxUG0AAz9CKtqx1vS6kZ3WGNg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.62.157.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 59001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 59030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv25" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4gJ7ycXyzivTvgG4gNy5QWrJZxg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DA6LGaslZfRbxJdJirYr7l2M9KBT4Peow14FWluMU1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.224.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LxcTorNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4e6qkWe0CjZ9mrQwM2SIAOmuLnQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wyAVog9sHm/k5Of/vcRlPbUS+SERGlwmjnKb4uGVEHA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.80.171.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:222b:84::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Liechtenstein" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4detv1JiaBnUmetKnj7xgI6SQuc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "44dkv3pl50YLO9I+H1At7H8Y+82tchRaMqIr7QOlUwc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.88.75.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Yee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4dSGzcpF0y25EQYLcKb/PN0nY7M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KZ6lA1gXBHYfYcENyVrAg1qnEzRPwKUxAjUjCPTSpW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:36:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.214.5.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:5b82:2070:8300:5d9c:6e11:6f98:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4dIyjQ2yoG7oWr2djXXMXb3f2lw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "44F6nbSv+OOHc6Y1zYAlhk7zKedm+aAubwc7tmKkWe0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4a9Tc+MkBWa1mPpIGtOGBUn2Fos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0gWM1iIyPxImt5P+XwZiKEmnVZekv4Kl4K0tXoKWu4s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::199]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idejasautors" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4a2CAVQPd3tkYUsnv4J9RwO8yLg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uEgFVOxWsApargcAkTBsETn3/TzSyFFjjtNETe45dP0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.254.143.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bbhr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4aBtAcNEHFsfcwTYGoCuGDHVSuk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZGKa4GultCGpU/vE3eYomKN+6TsWXWTapUTE+zC3m1s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.195.139.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Carson" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4ZdIfGPFoT7apxFEstMaoXTv9tI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ywm502Ms6cAB5/GwzxL16Rp8OZUg3A36uQmhsYjWNzg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:22:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.107.201.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IhazTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4ZHJWUU0YTZUS6Mmp9rPIVbL7fo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h4W6Ws2dpOwIl0ZKZwkyNjdqMSF0voSYwTKTddXixO4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:33:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.189.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:e:17::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorPi4Relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4YUkyhjW9Knm+1SMZcfHcTZe/L0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iXrfxl9ImJWm9ToNCJEWjuOa+UG4G2LW4qukT0Wzg7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:11:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.36.0.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 777 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer88" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4WbvwwuSNkyhYFxxb1Oxds549f0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OWXfojFcYJ/LQwe196gh9z/WBppx3a4PkjQKAZKN32g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:22:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8188 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4WaqC8D5fCXvAhk9OXlEKoKDZRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kJZMX2rTStnnThiFxMgK3+yhoj0wBLT/p9H4ucHukqc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:54:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.114.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VenusTorFIN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4V663ueZ/2aMzI1fwS+AJfR0X/A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D9nBr4tjTbBd5+dOFscbYvK9s6vHXkxRqXgJjRmqIzE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:39:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.92.80.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "edayat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4VJ2UuW7+1kYzmngQUNgnY1BXvk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eTSlPsMwFFF8Ac028Rb1cq/fC8oPDnv7gV7e2YQf7r0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:10:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.148.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VonKuenheimRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4UswqD/4DFdrLsDyyKXynUG43I4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AwapeOP1rsMJuRRygkPWhqCYL2F1n75jM5ACS+aYug8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:35:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.64.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:d75::1]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "legoman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4TApZoO4lqEXzl2lMaVkVkQXhzQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dzuXHSa2usdMphKrJ/zBgD0Ho26cvTlbIMDVGuMjrW4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:08:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.21.216.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4S1SvT46iAmO7dOJh00wgWgBpGc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GM6735F8XvrlJ/qwewPhPqmY6+Jhjv4G/i+HYxU5SuU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:40:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::1]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4SyL9CGw99o+VdmpO/m81V+k77U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J6dUMlIttWSrHEHYDDG91E1d5BmqIp8Nb1ADUFQ4Wv8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.153.31.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ub4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4R/HyD9BeAikzdhKWr/BEoRMR3o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dLdrQarYz754TBJGRRkeVxy6JYkvNS5r83lYu6cWh2w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:58:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.46.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:281:be00:1ac0:4dff:fe23:e65c]:110" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KryptoKiste" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4RmsLVyJ1jL/BiSXB9vHDz+HcA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "597e5SkHDfH2oBR4meY3QJKMAIX/gRYyqnh2a/D83u4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:36:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.159.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:1763::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "berrycup5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4RSA83VQ4RAncY7p/K3NrQuRyLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Slz/Pv7FD9v1fqK8DBWSklQ50do/oyWshxu1lndmtAU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:58:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.18.82.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4PwrYDO8wa1crClaCxnPbPU+7RE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cw5+MaKPp+j7LX7GD7JsqwOeH2I2xGxCG5iDyTl3luo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:22:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.158.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4OxtsYyjZ/5thHjTLXYDRuHEPxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+3IQ/3bZGvAIrEGuoNobPEsHeQ+ZUvlVy2SY/Y2jrTQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10056 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::56]:10056" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH113" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4N6Ugxi3fOpAiumjlVV3/+FITYY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NIIDW6NhK1C+KRBtgIsqI9V8lTFyGk/x8E+sa9ekNiE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:11:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:213]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pincopallolandia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4NR183+dOWWC6AIv8CUKrTUrsWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uZewQMHabnM3keKxBrU/VcBvK5mRTFGxykqer1D6uro" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:35:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.133.59.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9070 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=920" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheSpy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4NIvO1qYiqtWa4KSptPZe3vlTgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hI7B/U9L2rO/MSsMFrPNckeTb3friEdwsQDSDbrf3Mk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:18:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.146.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "i82blikeu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4MfVUbVF3NnNI32BQYWOJX1zQrw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "++2N1ME4qlSMNAh7oZy6J0w9Fcikav+1xnYjElpKG1w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:40:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.217.116.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 21698 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 22503 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KherNl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4LOxAibwZ6GyFReNGaGe8xHn/cM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KGCgZnLwVjA16qlVHHvFktM9m3aVAO+n5hxPNtE9UlY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.206.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:305:2100::7cb4]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UseMonero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4LGYadCHUr4DCRLEFFqNsoKZN8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7nfs4mH+vHDdU/Ri6PJBC1RlTKXbzdHaaX/ybHqHpIk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:08:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.202.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:8aa::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PrivacyNodeWAW" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4LFOhaqdnzMIGK3dW4NpwDPcPik" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "59rlRgWcXYcJikpk/MLVRioASR9EI6jEVgHFJPuTaUk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:50:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.59.94.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::5243]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4K2qMekRJcSNQbt8JnGyW64lrxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UcCuVxjD/Tux8x9kY8ESbfAZB9f11UxXmB8LNLMdQ3Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "redsox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4KNHHCTJAhzFj793QgMEb9K8iT8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kQoAl2kGMB5TImajKO26e0UQ0Kuc2pGYgfdQb0Qm8uA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:39:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.126.83.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dappertr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4JeCxfEZEx1d88d7g+MhRperY3Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nWb3DSAK7/l/wLkHCyUqXczoDff7zpHhDnJd7KUk9tk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.251.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kishaver" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4JTnev1AwIAwGVGvLMKXl1uTWLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "11UGplc1r8/Fzpwq4kIIQ4Z7O0wgD0wJw65VBDV6Vec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:48:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.120.111.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieditedtheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4JTOM5LlkSm0SwHbXGOqUvX/RWY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nW6DgS4PRgtWoxGoQs0thw9eq72nQIa7y2ewO/OHyok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:35:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.247.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:241:448f::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LittleSister" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4I8v1EzBa3AVE43JVQemYL64hR0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "56EujLvYFuFuhgMfqihf+jmfGO7uUuQU/8CM1V3tTTc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.21.217.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10043 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "galapagoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4G7HUvNc7ZpEQ4cZ2n/sbrJK7SQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dLbSj52U2KQ//iNNxu979/k7ImzLGdLb3lj79CldATw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:17:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.79.252.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4GZfczs4Ic4FoqdUUQU3GCHSWHU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nP0SW5HpQTaQKzY+F8XA3Y+Hj01veZdFCBZ0h4kSRAI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:20:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::78]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnnamedRelayB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4GXk2XG+KqLiHYjCyOPA/WGgVzw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9hgu1LB/68diPy6Xv9ekpuz+NB3bcDDsixT+BZgYuy4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:54:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.210.117.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ProjectExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4GQRRTIRhWmaSbnQDuLyK1t3lko" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Al85pmXrUnzMKOkkkw0UJPhhvHorbvdI3O/dh9hRdqc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.129.64.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:18c:0:192::250]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BurninThruBridges" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4GIMyPtLDdd7hq5zkgpqWrWInm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c1AItuSC2M7K3YmGD+FQhUMYqAwU67e8mkmvs0oMHak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:37:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.91.27.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "albator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4Fyskp45F4cHcGbClGGp0i7PCAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HYpv54xpEthk1hpnTjQK15gRmp1GvxCidJqR3P49Ru0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.197.193.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cancername" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4Ftn3wMmsm8FQWcZ1ube3UpXpEw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TxTgJ2vQtsa20+nJLktRm4B4NJmQV8SY4Nfj1rfvfzw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:46:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.97.20.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GloryToUkraine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4FVi3X4hEmd2azrWf/G8mBoKQyw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Syxa0Oxuab11bNXeoo/FqehSeFbNRRHMwynM0Uc/rtw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:34:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.99.70.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:10a:16d7::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Uranus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4FNBGPm+HeaRee6Lq3SLigpCiJI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ecl5rTcZXnKeq3fJhqCT8G2b1gZoI8vDiHCZDQuTW5A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:23:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.98.8.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:9100:3::1411]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rEsIsTaNcE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4E20vsT1UT1xoYyBeliPIhgMqjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qc0HZOFc1ySzi1pjjW0F0SZOYPU3KmqRmP5QQcmDT3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:26:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.51.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:182c:50f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "4A7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4EfH14UUuiY0wi1Gd2OzLeA1Kqk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oCH9aK4ZPy/jKXUZHgClzcjtyxocdsYP7HVkTwEnkkk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.161.104.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4ff:f0:87de:0:34:2d:4137]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "M4dm4ni4c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4EPO96O1G/eeibG9sGilhhNvhEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T8zEWcmA9Ju39L39mIZVZhQOmwibsud6/Hdh+2rQ4Nc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:21:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.208.182.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4D5YGqQqIR9p3GNgixmA8QrlLCY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oavNsmRsIvez+XN9EAy/JwT+7qCmrfPTvlIsHjmb6nI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.195.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fe09:486f]:38443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PacketPusher" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4C9NMsWEw4ThDljHLLPU959izl0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k0mPJSXUcujWwxsR3hmo/tgpjRttGymiFeiEbB3YcPc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.97.20.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:9dc0:31::c0cc:97]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Elli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4CLRiKF7k3XOWcJxxQZNDfFBnQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "st6QM/k46VF3afWPaFWskKCi/62KlJTsL+TaQO03QHc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9017 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HNLexit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4CASQ20nJmpaoUhPPhRS5WWgP2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ypma5xANkTXZQ4y919VBs9DxoERW3q26uyuIpIZpYCY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.239.152.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MexzichoRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4BcrcADafxE03JiKI6D1kPaZkY8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jBXimbM0YzxoiEFK9wFoebyWemjZLN3Y8ahdn1XP0BU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:41:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.238.83.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:b400:1c35:5400:4ff:fe23:597c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Labitat2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4BSvvbRj2tC6vEhoybTfSqpy8ek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5rOK6GLeDBjDTcjXX+98Au2WHJrQSRfHzrxFYcHb4dQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.38.175.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4262:1ab:ffff::131]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DesTorsNeueKleider5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4BRoYZEahUpV4BxQCpfavaDvNyc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rf7gmuv0Kme3oqDOlBJalzL226fappp/TejpndegnKI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:04:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.253.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4BRL+oJrzMPmSJWzKygngpYyRs0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hjBqy80eOa8XfqiBP2Z4qr8K14VKSanZrFtypArQexU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:52:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.32.223.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:e257::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "despacitor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4A39VNwWXVRS+9NTDTAYba0Bagw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hra+U47M2I0F6kImr2yw/tVMJiwlbWIWUTzcrKUgXf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:20:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.53.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor5e3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4AbqBMaWu9bjVAdTgTEwX/PLjBY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H1XtwlAqjpBtLy3hmjC/yyLqqXYGva1vrlYmtWHXVB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::24]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DerrickJensen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4AI6wUGAESov/wCoTGBJhiuz5sM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8UzHB2UfGqbgqNWrsN9ughVsqiy1KyIXQ5qtrLa5ZrE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.112.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "4AHSckzqVhXoKNMBEbhmqyd+hsI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h4pjT44Dmt0r4/lYV/ABiQz4UQhkvLqwwibC5kO3Z58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "9500" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3/nnQdAPdJmP6DzWJg7k2eCw2/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ytDJI1TuoqTr2ObAjwnh+mwvQGO+QQ6wDF/A6YoJ6R8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.164.128.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sumsumbrrr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3/jLwdnabFCR6WUscmimtsjX5Zk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PPrw7hwI4FJj7sYnTzxj+iE4t8gukACCY8cnm5omOeE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:09:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.80.32.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:e:6ac::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OdysseyHorror" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3/OkRcTlU7D5ibrLumhP8S8mEos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dIUUjxGzFRpkUPV3sBl9PWPaHjUcnn15rmqwzEPqFq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.219.30.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thorchic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "382vimX1IyErHkIothgV5yYU0lo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0k7KDJ1KHMnTeV+p5SdXk5laVMJ8kjGQKBkuKGlUsCI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.243.68.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=910" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "36v/a8JjGDFSY9nB8YOHcjFdseg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yl6HCk6gzhEaDpj6avMFILCkGcbCif8AzZ+q7FoHxKg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:33:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.89.106.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay1337" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "36rSkiAEbrHnMFShrqwrJv/XCV8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uQv9PyKRiQaHRe6rmSFnTy/ZaB/TL7y3b0PaenKnn+w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:50:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.90.84.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "36l97Uznn/bzHa+RfCgQzOhynp0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aJUHlRM5xH9FWkLXXY9BsIuiVqqcyV/9yZhOEofXgHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:55:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.195.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:713:4489:4cff:feab:96fc]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra60" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "36k8WCnPcjz/Jm5FtOykgvjWfiU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BBDTA7sXZx1MF+a1M6ycW98eYtaTOMm2CFB3KI61PbM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:22:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.127.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "36QDBr6m6vKM70r+1HOih3qQ+bU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qKfr32jQlMrd5XL1ySX0pPZm6FO9Jo4Uia3aI/6UZRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:04:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.88.105.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 33914 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NeelTorRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "35vL4Phex0JPXgRp3sqgBgcLXhU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v+nvWdcJ0dN46G92Aut1do8BsyVh9gv6qXyfefG4Hrg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:13:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.113.240.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isaacmach" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "35blqo42jLH+bV+sBzus1imwKhk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "27apl30xRXfN9GKqdgL8Uw3WRUkb1ZWefL0qNacKVxY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.38.243.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deltersvrAnonServ02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "34nUu+np+85lEkwGoI/d7JOt1Vk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T1tN8WoEzMd0r3+ocEM8vn4NWXpiycUf03QC29VhU40" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:59:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.122.209.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hamburger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "34heUGUZA6IS7lGb5aWDl60uCXU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mY2D2i/Qz31177J7VPcO3p7hf0LuAA3E2qtBlONhJCI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:53:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.108.55.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange007uk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "34YJiWi7zZY+OOA/w/wYN+9mfBM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XowuKHZS6PdvD93rQSEhXkU9QBH26TWyJt+OrmQ5BZo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.30.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "j7rly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "33qtDg853rfzWpIytcLDvhaiJik" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "doKuf2KIvJ/rrkCqLLQTZ0xSpjNIizwt1iqmw4AGcX4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.170.84.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 17946 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tornado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "33qhbhpgN8X8u03tTzps0mLKN5k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NbaMgMQrP3oVbqHw5hGxgUouA17QltxVrWEBCbzGrSg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.253.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "applesandoranges" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "33ho6vhWZU5z5y93S/POH+xcsEk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2oRjmoG3IlPCEdrA/oawyuywf7LNoOYr/T2ZK1eigpg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.93.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorchWood" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3295COf97uXebdnJL3yd+yCwzio" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kebOPBqb0mUrX6SOWINgvtZgE4Q5KqV6k+lDZ+25V1Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:26:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.3.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:190:73a4::2]:9030" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orangepeel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "328rkckycHccjsktJDp8tiNCRKE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tuAw/G2NiT+4jpGhrVEPOrX+SWYYOkK31miwNUon7HI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "58.185.69.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "31XJDX64ehOwRCWZUcp4Ty9Zbo0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n1BH7GvBPGywIQJDbHS3H8FJQY5OkY+7BiAUw27AuQw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:07:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:608:942a:42ff:fe77:728c]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayongorellik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3zkIYLVhC46ZxaeLQJmjcFzTaxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "37GV1w5ZaE39FyOqIsL3Mp7yncTCSLKRJuMSCO10wAk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:21:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:5::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex19" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3yBJfkh6l5mV2FGlvOwxPfflvFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "loibkxN8ZGVBny4Ccn9QEHlWvXwdRGbHq3vHhuXlC2k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::109]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=860" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anityatvarelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3wLjV7Joum6QKfpt+4vCied2P88" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BUXbxro8go1+Ar+mWEBq5MAzYEa0zETH7ONf6ymvnJ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.164.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=840" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "odg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3v+dYfpEP+pCOs+wYjM3HHYFjQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gr5/PkkeBwj0nirLVhcBXrkju/ZH89G/iNLaFFEG67w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.239.192.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:f73:2240:500::a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Torly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3vNc6PzFte013sN5qe30IP9Blnc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "92DfiJcq2DaJZRKGTbmj1fGrURAFEk0LG5Ht1myyP/E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.113.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:95c:74be:b2ff:fe41:52]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Joker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3vM2XxwBL4DlaHe17wXOcr3rDMw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YSAer++DJQW2Ug2gEsSZiJIHQW6xcg4vASyERgRtSUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.210.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3uimXtKsYZ/4CpLraI72TwQM7LY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wORXifounVWijEBwz1oshNzu/tnlhzc9zQ3iBXSH3nQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.161.193.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 57532 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LiveFreeOrDie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3uFFm0Jr3Lu7ge/p/EpebnosBmw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b3P00ZU6AgP3yR2FnMu9o64HI3P2TUuSNXFlzPrM7Mo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.161.47.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4ff:f0:e33::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ariolcnode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3uEyRvkhCmhXA4k4n6CMwVWQizQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D08reH/Cmngbo/9unWfF/hbkigo4806JjZHwCgrCu10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.158.27.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hackster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3rYWs9fZwxx9Oe+fDroB3vIUUFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SRj1CcwJkE8PEEpG1DaNycFq47vmrH2JvVa414nRLVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.204.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:c800:1:1dae::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlackPacker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3rDnEe3rI0jRkpEe9tC+5ify//8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lcwckloppdUUKd82FBwajFeivQQf/v/HvI+zAuIsNM8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:06:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.75.225.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0136" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3q/4umTMeJivxdlKG8+of//PVlc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SdCQ+JI1HhULURg1APpjQi2MRkV53SmGrMmZHfVUc1M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10136 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::136]:10136" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "windirstat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3q33wIsqWyheQi5HKJiDQZ6K8w8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ec4As5Ysd7whG+n/SXQXEBTVdIi1/zE1PTzZimXthTI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:44:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.219.105.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2401:c080:2000:17af:5400:4ff:fe14:3473]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EFKTorBSD" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3pehpb8KTUmBM7NCJLA7Y9CO2aw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wYhniNkceoEDgLERUkRjcqToY4x/iUCGOjfiPDSwhdM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.99.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3pMXocS1qVr+eOysgrXbanAYs2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZXfaKcOrRPH7PAb7oDGh+4Hc4ZYdNOnhxOSJrdN3zf8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:05:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.215.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:8162::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay40at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3oeeuvULkA4ZQKl7BIKTAGh06pM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jGgP2zizWEGFxtmmlaV8K9CYZ+t/usho+cNsFowgAt4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kohlrabi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3oR9lOeLLlYKuH0nLckBktMUTxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kfHpZ04sCqI2kUw1bZpcCHiVhvfyaXH53b5Wy1nUsOI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::15]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gergernet1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3nToxPPPD7vLfnYbswcgUNHU3Yg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xqWPLAk/Y+nMk/zQQqUE6cha2qkoElguG6xJz0t8bs4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:44:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.199.199.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:4d80::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SomewhereinPortugal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3mc7y+Q28iwxomRdIVXRwDKLV9s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R3QXpDih1jjgnf3XN53fFlHvawQf3srFl685RqK3Jy8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.247.237.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Darkheroes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3mHzFJuTKY2HI3Is7musmeVHhY0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/Ncqqp/oYXG0VghbDsgQoclO0vsfm3QIYvNsxZdWPJs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:11:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.75.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::3fd]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mindzero8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3lXvfXOa2XCBJRV3C/yUUrpDD9M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/qXjoI9QYA9X1zSfN8viRFm3vsEgoeJeoWajBbSvUic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.38.255.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex62" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3k96ey34aJsfjSOrqeMg0XY46v0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C1gP1cmXLWayTS9NZbq0KeTrgz72Jhfq8fhUETbXoxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::151]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoxTenebris" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3kh9jSeR8ra0fDDuUNKSkUqCYAA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zInUj3icjBv9XoSUQTboJqaF0jprwz6u52mwb3/fAcc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:29:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.146.232.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DestroyTerrorismNow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3jsUK7EaPAESxqtB5NJ/YKy5xQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sFLth/9ynw/SliZOQkul8OEeofqCRuHGcXvxGrmFC0I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.37.194.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3jkxVyry+ZfD9/HUMujOZY5i13U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WL9JHlFu36xgJxZTfDRWxzwpfBoxEITLeEDYvLZOudA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:21:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.159.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangstaHetznDocker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3i+uyqDXGk61Q8ae1Bi3elLKmEI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "egvZXY4EDmMmrTicRxVO8KzTaT3nj6oCdjj7Q7Jo+F4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:57:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.195.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3iyGg04cSoTMv1zEAjEeorDrKUA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jwdFwRW1tSwXv+wqJEDKTZRPAQZHZxGGM3SCd0BYS0E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.107.98.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Jehanne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3imlwNs4qiKShrI3eY2IF+5rdeI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N8V01oJBUGGdH3Vxo9Gz3szCEvdpFO79qyRDO0AY568" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.82.179.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5020 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3ieZjEUXSbr/cDUL/itFappRxs8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2WyUe9T5AJLxhFtBHsyz1jlgVFigR31GLRcBncp7whQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:56:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::207]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3gUwFej2Nww6przTFxfKw1OOUeg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sUHlMj1mG0dP3zl8UNljv83GJJs/AdlYZdytFRnXsv8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:55:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionEx5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3gQh+9dx5hiSBdNTNmh0sXkBhcc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gfQpPSdwTpuYJvMEH6qHA0hytEGsW75NYWZPcIPMqTI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.144.21.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ArkGuard00" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3faxkkdE6c6J3h6DTiHyXgbMM/Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H1aZr2REw93ndORNA9rVVpYYBuAj0LljK95BmVaGTtI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.199.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:5309::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AntonKlingRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3fDvuYzdSiiJZmiupIlmul4j7e4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jiWqM+U7kHb4HXZZMWpRgo4PBULuX8y69DmpdhBvK9c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:37:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.4.122.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4433 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ccvpn4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3exH2j3EBpiCfq7W8vssK6MW/cc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e/iEniqwQa4hG6t+vABVsySW9gqxfNnlB6X5YmnOvfI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.188.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:3505:a000::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3dzo42KgE70wpkP4tkajr1tQNYc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4p8tRJhK42rV+B+txa4rZvTZO/IFua8WNY7CgCCsg/M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:39:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.169.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MYLABSUKTOR01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3dFW5BHKon5l7q1zu7IH6MrU/UI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "whEuFgTL2rv6ys/S8vJE3qzECP4kD4e06j0xcwddYCA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.166.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mikrogravitation03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3cPYFvKyKc7/YT5NkSzXnuNAJO8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1MpJBwY08nLcKZrtPU1hV9IQe0FLvHQzNNpGy20KVic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.14.233.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1580:1000::2dff:fe0e:e9a0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "twinky" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3aoRLRrmfJYgBMNhG8WbeoYa+0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HaBouW+3190L/KQ8GUVIFfdYj0+bSLbcLVxwMOojwAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.20.35.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3aCq6IMFdiMQ8kJMBK5WrHcyDJA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "24J/JxhR3CQvFS9pWNNr2yrjDo7jG49DPlGqJLEFGfY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:38:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.201.1.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8001 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:eeb7::1]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex86" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3ZhJvVzz3Hafoq7b+fFb9blqaVc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yMVhvUGnTMhz1JCXPi1WlqF19VzddR7JxteNTtuBeBQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::175]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "damnat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3YxFrNn7+5/z3nNryjJsbJoo5zU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mxnsPG2C4w1a+0CExAjjfzdxlDRQ7kSBwZeOxQDWIGs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.31.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Elcano" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Yrq9RDfFT/P89aR3gLA0hKrAEk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e8xBbH0NRKw8BMFcFU1HKBurGCZuFkdSaI5xTCL7jjg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:42:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.40.67.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=590" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange014nl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3XvT5b0LpIqMcLDN8Bf6WYi4fic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X6tX6RAcM7YlhWOTQ3hXuBp8dhKrQ7iBVdZ4tZLN7A8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:53:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.182.211.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3V2iHMUDZTOuIBDeLH5yvizfnF4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2aCX+cYmL7Jx81U8rfglew0q+vfL+uP3ZJ0tL1sXxxk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:53:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.250.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nonbrokeneye" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Tv1fb1ENJp/epo6j/471GMHIQE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uXXLA3R0Jv1E+W5Xl6GnrekHCo/7z3iWpZwt7yulqo0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.145.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hands" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3SznnGH4OV6pOjGU/oc5SsQEU/E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "92HawFX3haIyBYO3OQKy7yCWO9/7oUeCCVqjsC7LZP4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:45:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.169.33.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3RowV+kdjf/V1qVCleUIARp7mJg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Dld8VWLPnReRPhdgtZrZ9bSuSW96jAaBNP+W9WGPzWM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chaosDelroth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3QyO7FykAqn6RHjxDDGkQPcfaIU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w1M2OCnl460GxWIvg6Yr4cHD6DZv4DqXzFR3c2q2M+g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:22:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.201.9.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flowjob04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Qqmbdnk5x/6+rZY34MA8c7qA2Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g+hTnVBz2fryxmFYr6ai+ea1sD+olzkSmjw0dkBeHlg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.242.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:7:649:e8b3:63ff:fe9a:5e24]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "youdidthisvladimir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3QIZvVswFSh8lL4TclNKf9ytnzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5kk+v+ZmTo4tPA7e2f4sJmnAxbPYPx5i5yFN4NULPP8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:58:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.111.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:84f2::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iatetheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3PuptuQXX4toIr9/xrZ9h7WaHdc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EFiCth0AISykrkanqqEToXaowBCXH451BNcIFXy0AJw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:57:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.28.98.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CancerFighter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3PqjCqUKYr4pLrcIHvMEEzm74w0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qbHdYUo6f810L2antgATA9ZTXdi3DVs6vQBW2OJVZB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.70.63.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55555 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "InfiniteMercury" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3OWqWyKHZjvn2+nIdjX6hGE42aY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4mQJRC8pd72sc5J5I9b9jWDe5Ef9aSr1AlhM1GgOsvQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:36:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.17.184.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra70" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Mu5cXzYsfAxuaOMch0r2WFWl6o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jwhODwkDRERJWPaGlItDh6lLX89Z6YcvhWhJoVyO2fQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.95.18.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belugaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3MlnPisfNTgDtooaQGIfN49sm0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i83pObm6l15S4w3TrsNnKWPZyN01IQY+P5YZFfQoZcw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.167.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3LfVLJQlY1O6JxuLd2mZSKp5soQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mUhNTOHVb6KDyZdUASt40zHgWc6OsS4VxcU7h5WTYEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::79]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyArmyOfLovers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3LUPuL49n5XsUDiVWQ6OLLQN22c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qevpixoePmdkHqIO7JXIIxuQNAHXmyEBOzLlCXfDjuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:30:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "189.91.231.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 32566 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2804:4ec:121e:fd00:3a9a:99af:8126:2667]:32566" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChaotorumRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3LC7XfbXzmRn3YIZPrSoWBoPBkU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o9X+uE7QyL8pm1m8Tss2z6C+kVWJsHJk9Rq9HUvyunE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:41:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.116.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SweRaspiTor3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3KoXb3WwQocTHG14t8/drG8mkdk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lLRxtc151QEfV6Q2bapHqqSxmOJ2cfXnLp7g1oIydO8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:36:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.34.149.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iretq" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3JzCJCExRfSzao3AAge7a67Hdp0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7IghGf4FcAWD+OQoZA8id5Q/jLG3RAZpx9eOdrdXe2E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:59:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.227.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:4377:c000:aa6a:d41:7918:2216]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=990" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who4USicebeer20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3ISTzetPxSp6qottbVj69GHTgZ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qD7LNDTuiaTIn3Kt8CEGMtuocVniMzSMgPbhuq6Cf1Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.190.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8158 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnExit1W" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3IGqOx1RVm2/J7+lYuQEeuscUto" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m8g20NSqYdDdq5gssH09AngTuo7AQGzH6vHxu1NG55Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:17:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.132.147.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:37:645::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "s6tor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3H59mretUvA7hW5twnjp2SvxmzM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vsTXUHGF55dJQfzCb3ahbus90SJOeB0PNOggZgW86Mo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.67.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4b:4e97::6666]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "luftballons" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Hur/zxeScki0jneGlxSUvUdL4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wyv67lQoFJ+wn3SyVyayF9nZU+wHAKhsyR0XvyV+sLI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:55:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.92.210.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KiwiKEK" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Hf0SQAfxymt9a2vJ4e22dKwFso" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nJ+bI8wIamMnTxczySaSh0fE6Ef6fBXcIMdpnvhS9cA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:45:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.138.131.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:1700:c983:1000::2d7]:8001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3G8ziuZy59P0/pV0/Jqn/u8n5F0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "weVonrXgKFBFI/I5S0AuF/V9x7JGLDCYC5yz8oaYPds" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:58:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.157.78.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ArcaneSpire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Gu72Tmt2lX84hCiOlwwlZYK0yk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AKxCiJCPaij5uEUDhEGSiKsPuZsSbteSsoMDi9B0Y3M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:59:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.97.240.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay24at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3Fus8mnv3H/pE1byqYrdqkm9guw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ToMaYYo+7p82jxBLYzyg0bH9varDPkXwppvcClGpO+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3FcWrdJwzRwfgoTbgXBqPG6PnX8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SaCqRv334zZvSxvSTm1q5xyH+5NWttXvyGKaXhYQrEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:31:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.55.113.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ThisIsForEdSnowden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3EClnU10Tyw8emVexr86Wa+hxmw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qBP/9teP9qTMwwnsBntrc5sdbClKCxhgxRfcb2cvAbc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.139.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:678:b846:78ff:fe18:5ec3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3CGRZj3UuuyzT5ScysP9oATOW84" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gT9SESWv0r9J/rfwS4ZgyNW8PgxPGczxWiw6waVi1Tw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.122.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:239:1003:103:0:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay6484" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "3AghhIO2EcUlWl3z9IijBXVhaz8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YaOtb6jR95gdrmNuGC532Np1GgPYXmiuUs904koU9/Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:22:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "110.147.177.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spechttor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2+gvojuf48skYqb89Sid7Ty/Su4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4+TJX8pgQgp39Vdny7v4vGx+hd6vNaL00Q690eOKuzM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:13:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.169.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:171:35b0::4:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2+OLxaOI5ZbYUxmXdOtIqB8RAJ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Dhg7Os+c5f1pAJlhMF+kAoCAd3qkx/iG2nCO7opOjgI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.3.220.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nocabal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "29Z3Z2QBl/+W7GqHaERk/Ej2EbY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0AX2rTbkONShmh5PPW9wQwZ1GKOvDUJumCx5nTTzgfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.52.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:120:7335::2:9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AncanRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "29PtKTpoWmbGhy7DklhOIP99Ovo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2jn/cQDw3UL1dvUuQ3lvsFHuN0jFe8ntnwMMb0uzSnA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:12:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.174.112.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "25UcLPIHPsr/CO/2rBCLaxyeZ30" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KvNukiyE3KB7oqBUVQ47Hh4SxHrXYVqCYbqrZfOhvvQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "24xhml6QYDtM3ilgUy4t7NLtGz4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Iv+Nwz4u6Vqc2zfKiZecrriF9xLJ/5tl4Um8Rz+PNMo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.126.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 56660 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xcn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "24VvtQ8EQAcKH8VyrEfzIP3KsEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TcVqQhhSEjlbgEsHmquEZSPzNbWg8zJSuctED5fSuhg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:07:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.158.223.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wienor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "23MDvk9Hnwck6aXHXOtaNZtvVYs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CuTKXJU2FrKbT7hE1wHhY5E5/z+A4GUAuz7X1td+o0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:26:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.19.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:4cc0:0:fde:cdc9:89ff:43f2:5af0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dreamwriter2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "22+z1uZCxeU1WqVPqA9kqBrkgI8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FwIpqLJYxapqM/NoS5b5cIwcDhzykj6mgKFMXxou5IQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.116.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c0c:5035::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sauberesache" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "22rH37JcnPxwNrU8ePkdjjqSec0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LmMkeAmpTBYFWol+sJXT2no/sLsLKws5iJwWIlDpsRQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:09:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.239.197.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18732 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:222:141b::1337]:18732" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlackAndGold" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "22gXRbpObYum6n1TgfZXAh6Sgho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N3OOcOuTlAlbBqiTEZsg/2VasMVBcV5EybtYayHxn4M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:11:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.100.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Songino1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "21/26IBqZnTie/adHh6/MI2ah6k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8J2i8OjbVBhiuGmrAUBlmk7yITSn3Z5thVDDPvRWHag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "180.149.125.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "213oi0kU9gze71gezKjepZ7yapA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PPVudADKpmZVXuYbSNlDDvxNYtCPjS70mDb5Udusr4U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:38:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.162.249.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1a:6f8:98f0:87ff:fe6a:29af]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Wellness" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "21lpRrGCBsxxtWq7NquQj44L+nc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nCvmD09sEegOV0D5xT7vO/2oVgAy/bXfSI+n76YyteM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.91.74.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nC982filxW8x1tkWAjI" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "20UQN8I689Aorht+L4K+XKd7mKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wZUOFAHSxk6CllNnW2yEpvvPwwg3vSNy1NLyNfB+ROw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.8.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f49b:e2ee:34f8:c854:6f63]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wokwaixtor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2ydz1OwmRkLajGLb+iVLDM4OuL0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t7bGab9RtMZibbykwL7FzAeXYxY84fKaFRqq3V8o0SY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:05:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.196.89.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GermanCraft2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2yaCFTrAzK7NK9Hp6+mcaBWAeh4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rxyjljo7yr/4SDDzq3jAVjFcTGoBQQ7wpEjFm7Jg3m4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.237.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1137" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2xbHc6DodTD9T8bV2B/7bW6y5dA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+V68Q4kZRW8VqwAqrKrtPUmgVUqcTaLEiKu0oznApZ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11137 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::137]:11137" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "swlt7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2wiUEwsvwL334juADZEBfWFF06Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A/E6PLxizik83b+vlBq1tpye9Z4myQSI5x5islmUunE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:32:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.164.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "poopypuppy32" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2wJETqNEUfjx80LNX++ZFNznyKE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hf+eulDb1JoXuu0LEh4PL3cmTUUK2K0s1wbcV17/LOA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:35:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.171.66.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WolfsDen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2u+Li3mccRqGNQ/cQzeys6dbl8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pYre5UfwlVKkdtKu7/EYD0eWRXcM2du4yI8npLUxx4c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:28:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.255.150.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex71" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2ulIdxmbkl1fecKwDXuDTRaZOvk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7XuqvlHZLY92WsOO7M3v3KLpceDrp7pQK3P6Cpv1ARc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::160]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pablito" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2uZa0yoHTOyzCtP7t1BPDNxhbNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v4S0mBFDWNu4cFOaRtJdslVNgs1MEvvbGQrGT2hDQ60" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.239.213.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:a0:8070::2]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2uYFHV8X2GeVlSuEVvuIXOPl5MQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KinMrE28/RmE6c27YySlK5LqIOqpvasSSpQvwzs82d0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:18:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::76]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=790" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "scatterhead" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2txzMI1TC3Vglpy5VM3b13wBD8E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4wzhWYe83tTxoJL8CgjorXxITA95PpOR/lrNRhlqX1s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:12:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.207.122.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:232a:99::45]:19001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "malene" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2sglu/BdZ4q96hwwhujZnPC78RI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RmOVmnAuBq1FDJDxusIAD594LsZxx942e7fLvNiELlE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.73.220.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2se78fL5LnSLHrWblQZ04sOf6lE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8L9EftEg9sdxoiDL0kdnhclowsQecEJgACtidKd8BVA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:23:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex76" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2sD9TRptGKv5WvJIk17Fb0blqSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "auSPp7GJmIyI0RWjC/xyybxtvRKfyLJaYR32F/wngLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::165]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2rSQ9o1l6M6GyskUX6hfCpGY4o8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SKhuDKC9qtxZTko0aAsy1kRFK4D9a9ux1qWkPdmuRWM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:03:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::47]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mxcz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2quOeqgR3kAgVg19Y9Sjksa6Yho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aXc7gyCp4UNJJVg8ELZejhxWJG8R3vc2I5EGq+8FYIg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:53:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.20.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:14a4::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2qDTsNc5fYUZkP3ywBQx3iWR8lM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "orseNUhcS0F7PafGue18Yf87jWWWBeuArsBUvJDVSSQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:22:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.16.33.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "babywhale321" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2p/McdFQ6kzXQfOz7N7AvMhv9sM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MYhXnTH4fWlAVKbQPnJnL3Q9qKYGZeXF1XeHtDdeMd0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:15:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.116.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:1c58::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bigmekk01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2p4Cu4CA5HMVcFL3BDm3iGqoVp0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "it85U0Gg+0iBLaFysETwn7esl3LSUQv+dco8EJpAbLc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:19:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.177.67.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:38:4c9:83c:c0ff:fe61:fadf]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2pq66kn7+edensAgOA42Foijsj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UmPYeqTGffVnYgkSfcC3v7guPTzniMxZfLlS5q79z34" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:24:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::10]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "z0rb4l2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2o129fWBlpO1yW9Jm6GfdAQBR2k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4bYWPFnY395QnjRkKnxA+/JI5Kh5udP5Hc1OhacPt1k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.11.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1180" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2oerVxiF+36bR/Zuvl0ePy723/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TqMH1XMxACk8eAxBVn71MyERxHhb3esXuHkam1WyrRE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11180 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::180]:11180" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torhammer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2oTUF4O7tgWMud+MkGl+jV6mR8M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f9zWbg40H87hejijtieq6Cm+GSVMyRMniUrwgdwcmVI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.226.204.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b425:88::beef]:9010" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kyra" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2n0OJ7CPAyx2Y7WMMgheJSnLzaI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "if3tXNKAH+6z6Z8F/aH8eVUbe3jBRgy0bY0cSddX+Xc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.216.111.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:19c:10::60]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2nuzdS/ArSvqF/GJnL4pzD6Vl2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u+tmBuhMVic3u3QALqFPV9IE2kfgKk4TSoT6ObFruP8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.26.192.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex65" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2neq/gzDjblYQytFkQ9HcU1hSqg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e9UIB3upi1nVKxZiWi4jlUJ9TY/NxkxRa1a1oMLkVts" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::154]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blackstar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2nESbh0LEWBVM7etOZ3Vp+yOLw4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qm9vJmQLIDvRnlNaBUS2NZ8pxItTea9QiGBjRY0MSiw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:54:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.80.171.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:1f:1::5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2m+YraaEAeKhaRlCmLNjQLJjmGk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KFYs9RDsSnEAPJP0VeaDU4+OVHVfkc3tU2xqu1HK5MY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:47:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lancaster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2m4jH6fAdhOmRHPMcJ6lWsgnQB8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bwrOsFVLUWJhHt0Bj2ju2shB5+tX9zqTjxV9sNlOS+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "106.68.240.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2mHoSwCbMEN3wIy4KUa+pYOYt4g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0VoCmLUAS7w9d1LrckT9MyTK1gyjtksxwASbTmBMMro" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.167.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 56890 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex99" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2lyaWNvUnoOCG8Vvy8itkgloDKM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MoIK1dX8Q4jLKWjPLQcZ20F+/aD1/xPNWZyInQXl4+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:04:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::188]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LowEndAdatikrit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2k+cT0seJTCOS2rBarbaUf8HosY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ad6MTJ2ewXQXja5PkxAGf8aHcuMS1WNuDcZmp5NaLUY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.193.126.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:3840:1337:126:0:b9c1:7ece:1337]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idefix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2ktIjCgm37vQTWNdoecaK6WyB0c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XWVvQtOwRuf6qpJywLLw9tEynh0M6tlTxflWZJ8aPUE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:18:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.70.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2kevBn9Cg+tsjkDiGW9uxf3//c4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DYlskDXMLTwdrq9LXFzsHe11weFCCX4j5xn1vR3cua8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:37:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ExitTheMatrix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2kXamfZVq4vNqgneI6J2u/h21YM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s5hjPWTI0W6ATt8/pv3QgmFPu6/VMZ5HtLKLOqIYpOA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:44:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.45.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2kUs+KnnfMy5VFmOWchNlNxaTUs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7EwmwSBmx4Wo3Deav2t0i9mY1MiE4c+3u0MXgpdYSqg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:23:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::50]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev2PLicebeer71" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2j9vsYz8YDfWakRyF/TEH7GRgms" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WpadddrRXpZocQtR/XgFGO+AnIxDKZCPAMsuY3NeAHI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.38.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6171 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flowjob00" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2ihKElmQq9e9iu42fYjHhKXruyA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Iuol767e9BhjfzqJvbMc6vsXI1VlBOBJstlqxR2PM8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:39:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.123.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:a6b:34f1:88ff:fed0:52b2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LoedgreemOCI2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2idXDeqRkBiJgp4/+CsUATtJQjI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2jZdEnkYbvXOSYDfl0OSuikvoyVuKkiuVoIGy3mkG0M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.162.211.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1134" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2iLAtYmVmt0U0WYGuaKlEs7WHE8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gPA4Z/447o1AFBe1beBSuISFgg+Kb+MaKxiCG1fgcZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11134 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::134]:11134" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mjolnir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2huLjWF5CZAlcnkM6LuZ2lAsZIU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ju/QoUMSgVLIiFnNvT62GWnyRP94arh/xN7fKP9JDoA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:58:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.117.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:3ea:c2a3:1162:7224:e5df]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IloveHK" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2gS/II02GC57414apOOGe1rt4t4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0psYe96u3ZSO7BZwJ1DbWyebM9TOpcXN/cDl9I18PaA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:13:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "218.102.182.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "letsdoitUS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2fne/oc/nI7YMmUrhJBZQJVWLkE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Oe4DG3OIOXedx8b2H/qyCSKA6Ze5dVX6Icbu1RttYJo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:15:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.216.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:fd::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "brrsundae" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2e2z3Mj0mi7ERksQP4WzldCp7Z4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KdOc4mvUTVh2Z6SKuzkzZ0grookBbJcAcGjawzJFPnY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:09:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.245.90.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LIN0DEXX01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2e1XSmD7V07GFRjWw0w1A23KlCA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u2eTvmxan3cuMMi4NngcHYjVijP04NSD3Lsv6DZ5zkw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.9.8.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ledevin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2eT3+nQBUuvZjD3nUl9IjnyoWfo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x521bCE0oZYQOauyEHK5WqMIIPy9LLygT/a6uGCrTh0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:38:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.7.115.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "traktorzetor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2dbDXpMv73EAoAyZwZk1boLat+Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gHeWCQoNw8OH/46CjzVvwGozSEGfG7I/aJbWZVJE4jQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:58:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.157.197.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:1::2f0f:f001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2dLb6sd2IVsz6Z1Ov/6PulwQDbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cFWfHV7NrASzHuLEj4BnCug/q2qNZajK6mic7MG1vFQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::167]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2a3+JaQvWcAQPlLE0N4lt4d/oPM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ax6ua8cTXLujLVDngB7SM5zYBFZcjZ4p9Fvp65lDeVk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "P33Vieh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2Z++L+z7q5T3r/0RSNuvCvYW4QY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d17w7qYlyh2oueDBYffMpZKzmMMU+/dpNx9NJWIvLRQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:12:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.119.112.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "harutohirrii1998" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2Z+rBLF6wwV5UOya2F2PjtG+YfA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K1HqPrJvcy5UxBYTXZq5eesInYwOG4/G291Q0J+jUzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:43:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.242.118.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chachahamas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2ZCpeMbCekhnuMKoSRQUD7Zp/CA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Dz6MUEo4ttCdoXk0+cK9nw3r94bFuPCduYp87t9UeU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.104.194.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "refuseGlobalJam" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2XTHQxHW5gq4g2EP9zqeiB+eMPQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZsindeJbhGxnbFjl5EQm2f7k6urA3UVmoby4XGyM3gs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:50:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2WQouDqLFHf4/6L+bywj7jalwRE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gw/CDDFTWi6MvzRJYTukP1ugduN3k+nX996HIDVL2kg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:50:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::68]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Splinter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2VmAwV954JSuJVuo8bV/1sgfK1Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FsmStHQQ+8znXOiDVZXHsch0zUTWxhyWtqyDZNr2YM4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:51:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "200.122.181.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "catRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2VJxkCTyH+6mLAesnpyZbWgGuy4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ag6tiy/p74ehA2Km5VrDLV7r2I0yeyYlkoelKn+gntA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:56:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.7.3.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "franovgnet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2UdiOzDJ1uFC59kPxzaLGipPUEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ag6176S3lwmCe4dCWIJkAGvW8NrgTsLgaI5AmrXdQrY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:52:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.64.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:701:1100::205a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tardis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2UHTgOUijntNNyr01IRimpbcSLk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A5kJti9GoRhbvlifLZ53s3euOL4x7mU1D0vf4I8+UZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:02:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.255.212.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:f80:ed15:158:255:212:178:2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Odi1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2SN1OIaC/K7pjn6JL523YA/GRj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qB4xtra0dEWDlQ0/2iONKXQBEQ8JoOVOw6uccfSR0C0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.118.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yesch3f3r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2QnKtODqBEao48yc2E3WQs/+ZCE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kIOxUrU4raiSRaELrlboqICmBmLBINzqdRIPKghDBH0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.254.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:382::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor2tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2PecbPOG3PxbaS4TxQiYlGBQe3E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sjZ70njjCvDXNCXti456N2QTI2TuO72aavDDecbfAnQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:42:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.55.190.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12333 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aRC0C7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2POwoZpx+ous7Es24KhkXu/wHm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B7wI9T3iLhatZl45OPGh9OPj9bbeHEn35cqI7ZJeNzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:06:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.145.62.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1234 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tryler" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2OoQXnmAP7AECowqZ22T2uos//A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gx0VI4Bh6HmlYqM4bsA97dzG8xZfrKH/VwlknQjwjQY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:28:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.117.82.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:21bc:1e::1:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2N+WYCYbFYqd9sPX1j3ZKw/Vufc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QuA7BukHen8b4qT22W57WcjbJbrStOJ9vGkCMSt+xB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:03:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.61.148.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:43::e636:5252]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "qwerty12345" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2Nx0pVvM0G35324/BWiAnTspc7s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ty0lPrGUcIVStt480V/jTACXLgCyacRGKmwd3pNbOSU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.197.218.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Papazof" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2NOfvfBUvQFhcAlJ0BFONrrn8Po" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/MtVKmN1MRYAaV1V2QCOPibhPmZcn1FdNwyKnfvJ6E0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:00:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.45.199.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1412 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cepa2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2LmuLM+vMKeXSq65s/6vA1sHDYE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wGcynflOYM4kQ1Pq2gAUMr9LNRO1vQw2buSfOKBd4CM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:3c::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aberto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2LTDHk2vnLyJ7BPj9dlorWzci/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OVW6aVdSdw+oYQs6Lp0Q/+50N0DQhhDt5VFRT4wGYBs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.5.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2Kvxam/oZKZ2KH0cjJBaDYuOxpk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b3M72HXOwobykfAINl0Y5De2AnMhzGqpF6CRHeSViAE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::26]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "porthill" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2KLQCAsMc+HcDsnzO0l/ZOX7P1I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BhkmldM2uB09Gf3T9upYun91ymwCG+fWkPc40wd0e+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.176.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:171:2593::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privexse1exit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2KH1qOoa9T40FLnEj+axDDGsybI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eFVR5D8oXdCqdzLsJDNEoENnE27kpDsXGB2jA5Tu7CM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:44:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.44.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a07:e01:2:13::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Friedrich" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2JJn+xC/Yl0x/3aHr30SsDu/dXw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eLHPhGiwqJ37oOnNPKT32jk9/5SnQmnCudjxZnrVfl0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:32:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "35.182.71.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iceberg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2I39va61/nl7vWWtcomMyTLAt54" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U+PAUdI3k2CDw1lht228lzY1kMuZjxMMZdrpOCuNiVA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:36:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.212.52.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=590" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schattenbahnhof2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2HqSfaF7n7eyzr7aNJ8ja8BAm8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3BFnG6paPtLjhsfk4eYbJn23Tme9xOFQvVrKEuWlksk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:16:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.53.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:e34b:7cf3:194b:368:22d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "saberrider2008" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2HMwSPyOyRAkZq2PMJhiK/G/cf0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BlWiFCqxVqEKLcoH58MNkGWTYr5UN0r9hPxwu+vsmXI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:05:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.91.170.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f0a:5e1::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smallrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2GlmkgQNjjWSIuYLZArf2Tdqe3U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZFAyn1fYxVdBaX9H/v4RtzLrdTzl/+GOPLAhE6mDzto" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.227.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ljubo87bg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2FFjIxBRdLLO6emZsBga/z1jyTo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Brf/uAN+T3P9LL3HJiFixTwDFyv/AbP+qcVus+t9bI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.109.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trout" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2DgwEhR2LAe3hGyCbSpeu/zQiSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7ZWVSatIaAtgQ6jwKJMqpgJI+kbDg0Dho1mmSMfhhyI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:29:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.180.203.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9876 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:7002:2ff:5400:3ff:fef9:1677]:9876" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Precious2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2DgOCN7fbJCgnsN40fbBiB73lHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pyP5VtpI6EF4EQhBmFacpsL/gBJihr/vvXZvJmpb0VA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:54:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.215.45.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:1619::394d:31f1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flokinet1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2C0Y6DWe360LN0iHACq98fKepDA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4Gsy15IG1oY1V0XxS/U6e3GgtXG11qGKq3AUlKAb8fk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:55:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:16::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blue22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2CsUdxg+B5Fay6ByUDdDA9k/C8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "01Q0ukORqvWKmyUMaKMnc2wU9rkm7uT5iN38n0Rvm+4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.195.115.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv120" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2ClDQ0skIE+/G0uBjP6mTyBd6sM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UQwgA9ubP3TRt7JoIj2KVWQgp5CHK5yZvC1hJF95w70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5520]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2A9kkibMlrvg/3tFs3kZAVaf5aw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZZxZqIXVOk6NKytJu2dlnC+OUUMTX/OEvzns+z8rf8U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10138 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::38]:10138" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2A8yLK9H2JMk5Cr1Ygm16GBxA/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JrTMxSHRH6Vy6r4pv2qjEufyscsqi4FGsBnXqGk3Jmw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:03:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.237.207.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bonjour1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2A6iFia/roBE5AN/52UlLhV+NYY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wcv+4bLjGQspWzhWuBMHD3Tb90DghHvnnZIugOg/lNU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:39:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.138.33.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryKenzie1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2AVsrUo9bufYJ0gCdHS/XFPladk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zMXMSIA7W4q0NwO5rr9gsWad3OG0J4OZhmL2gTp8QQU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.136.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:3408::2]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeBeePi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2AJrc8vnbhbklTxc4/jINJZpKB4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H12qWUIsXOJLa4G7FdxIRVu9wkD1obL0imPmLCzmZ4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:03:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.123.38.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9602 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapBLR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "2AGviDT97RwzmNeP05T+bZE1IgE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3eXTJw5EZy3I6XJJg6grXL2E6GiDAbz7sIlhxZM8KIE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.59.38.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:100:d0::a18:d001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ygWegnHEQ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1+uTtQpNHu28U1TDEkKGgPOqkCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TLyKoEAdC4gDGVdmeSQxfxJt6iad3Zfz1ENDtnoXouE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.147.11.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "19xLrIgWn51VEiHiLDR2E6NpL8A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K5pg2gTqqkfraCiSjmuWDWIy7AvBxbXEHImjbJZJpnc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:47:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.170.128.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "loglessRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "176oGfb76WmuYIEymR1KQq7kCjk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sgz6EjoH7rO0Now6w6QXxNPywbILrS/0BjvNxkziFtQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:52:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.145.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:600:e2d::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Platypus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "17NVgCAjXB83TuyL3hRo4ZVBHjo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aJjLTWqUK/dOJKr9uU4h3Um4HTdujjjUoSxzhx8QUNA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:30:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.76.159.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:fe::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "goodvikings" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "16gOlYkqr1H/JM98LOSTEZMbVfc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ujkpEqEbXO1Yf45G05YVzL0vPc702UpmTKr53WvNJds" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:11:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.50.128.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "niceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "14KaIXJiIK93QBvlsrEyljoL6Cs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gIBWMOCPRwG8IFmt2xrbTvJhGAV9qIUF3SCmI7J6LtQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:03:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.254.74.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Centro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "14DI3nYYdgYJFdfcObEfO32+N84" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Glk0KXE4NwP/0vnDk7iVc/Ojy5ltEN2X988zMiD0hig" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:51:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.223.97.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "slashcrypto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "13fTH5UIHQ9yI6rV+KdJd9UkFF0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zDyDVIUhC0l3JDvQBhsNBBl1fi0VsM8pQS+MVK2f6Do" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:08:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.235.66.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 587 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:32:401:4d5:beff:fe5d:c220]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "13c4zhUIeqgXe7VoBonbOhPp3tE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zCn15UPYdPBL3AtBTgA9hU7tS767I3UvtAth2zK+sMk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::39]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "2propstor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "124f3Ho9iZKCu4gvdBEbNqbRS2Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S7iaRtRMB8ZUGTKUNOzuwpKtaVinGL44pCHghDykM3k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:54:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.73.63.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SunshineInTheDark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "12nVRAYbdW4Se/Y6G3spYMBNxGw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0xVynrXMT78MRKyH6Zyhy8tgtnoWGtdD58L5K/PU0xo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "220.233.178.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wiwipower" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "12eXn+TJnTEKRuxJA36f5+P2Tp0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FGOKxrMZ4wFGdIQck7w4RABImU7wK3EzKFctuP2Z8bE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.20.103.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "12EQ53D7X20Jy4AdY3nDOhpsDMM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HEUeLKjqD9Ar1oK0zfC2Il86s1eVm+8WsCf0IL6SQEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.152.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3100::348e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DizzyDuster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "10379gQ7kXu8Q14Ul9p0TQHR6/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3AHH3lfnbxZSqz2/d0cxCeb3M5dNoo49s7vp8dJP124" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.80.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "claire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "10eifGMbHJC+djiLxa9fo4nTDc4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JvzBlyz+X+a1qXKbFPMyLAaq7dFZKXpNLK8W13ObbIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:54:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.204.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:c800:1:1a07::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ThreatLevelMidnight" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1zixYeDCF9oVxslMGD14q2WO/Io" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QroKcR/lCcqIfz1HgZD76vyBO816cld2v0ECbcbUJNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.10.16.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NuclearShack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1zFr9/1jPddHSxjDPh1f3rBNJqc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "plXxl0gDF0GtU7S9ip4Czmdx5eLgMFIBlyWr3+ItCzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:05:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.205.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3000::da8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "weizenbaum3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1ynGiDgswqV2CJcWvhBJDS1m/OQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XARCv1WcSAqVV2U0f8dEayl2pQ2V3cMqL34qoSF/47s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:46:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.102.148.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ratte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1ylqvUnBS/UHJiJ7+uGspCOswik" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g0eGc1xEiYZAYTALfDgcBgfYRa2QVAbj3bHMjL8esLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::75]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1xscocncfoymQVjhBq13CiEWD+4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fW5qpnGF2G6H9XrG6/4uRjlyfeZFEC1jlJ8i8GfeJBI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:11:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.34.33.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 31415 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:99a0:0:1000::2]:31415" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "berlinwonderland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1xsYxC1xVJxgZv4axd8P7B8DaW8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RnxsaijyFtkaaDAF3NWqZALX9dg66T7cB+OFBeFQhII" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.50.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:89f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor1lhvmct" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1xlCSap31cohm8MX4tz1tJqFeD8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XmEP2oGrlHCUzD3DrlBAvt3Tt9z6VJxY2deBrtMGrvU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.117.9.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leaders2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1wpeAewU0HgWTV5YdgiUn4X9dxs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3DEJp+Qo5XjjtKqVuz8T67rPSRzpYsojHTR/rlgHqAQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:05:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pushfd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1wakUAuxqQqwdup8wN195SdKLLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QY0li5HQx9H8xQYzHNUgqS454zrNTPlyYJsmcfbOLXs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.109.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:51:9c6::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnivUtah1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1wGsr4ZBPpJSnqjjIIjH/EXqb2k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yw7c9srgUD6Izh5jDCuD9IQ/zS0li8vUequBI1E5G3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "155.98.5.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN28" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1v8ml86lwMfahHl8LnEWOBT8JGY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uTeVr4Jdw1OBNGIK26qieHPXfPsR5fJqB9ScmUtIfBU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:42:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e651]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torzpi88" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1v8M6EZW1RIuX/6YArA2caFp/2M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B0FT8rQ305zWcrPWB+rU5H+5mNWqq8z+FlO19Ph9pp0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:45:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.220.198.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=940" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DELIGHT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1u3TMqwEsdHo/vs/MvTAUM2zqVs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mL/1mgjZre5HgeBvy/n6qKPim8G4Kru4jEXzGd/X/Hg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.141.165.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1uu89PZQJYYIkRPYw3sP9aYVKlA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y05HRR9EggR1z1J9q6IxjTnwHAe7q5FEoT+uy9d7rbk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.94.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Titan01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1uZfIv4AY7Vm5cKz4Yu41ehwVm4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "owNy4Cwx1U1qwPM09RbHrsUtd4Nc+kK9WUMXQ2CkifA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.89.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:71a9::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BienwaldKA04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1tlnMQLfFDXBpm9MmOaLVvGSFvc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9cMowt9Q9VOK77MSLaFWSYPSDxl2m8y9Ir0WqGqQsGo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:22:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.250.38.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9004 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnosognosiaRedux" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1ta2YUye8trROsDJRIetjtO2h38" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MNibpolZdqfzQLZudW210gEL48LKErbYHVRfVFQK1b0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:37:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::8]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mittelerde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1tZ3AUpYPm94OgP1I6bF3C9jR9E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l76PEbwUQungsWm/rB+IuUNN0RmwFZGQH79gPwOcFJI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:38:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.186.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4711 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:992:98d8:54ff:fe3d:fc2b]:4711" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fourwinds02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1svg2F7Tih1uRd+nAzkKno9geSA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pK9zE0AqzHDzfnmjEzmBZfKQya2bcJfkuzjEoCkXLKI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.98.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1sIwESEOHwFI+p8Z/UaaFxNXx3c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GNksGD3yaYHuQa1ck8rbebgimNnGwviyFk8sXuYpJro" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.98.255.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55785 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1r9Dv6WYqff6UQIu7QBhrf12TaI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iww9o033XCZ3XVSZP4F/HC04es+BroMH0cMnIFRcX9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hsalc2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1q2gSJgOtDFJkNfyu0C4SNYF+YU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uhNrSWIL1yYfKmelqQavmQlrzWu/vDu6sSOWG2nBJVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.211.130.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6d40:72:2bf1::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pipit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1qnjIHF7wcjDaSkvxecpKz6ZTtY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EXsdDoiyV2Haz2+122cBCm/7QYXasEydMmuRpRTuKLw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:41:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.254.238.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1okS61pnOuwXlY0enKPwu7CU0fM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PjBapr9GxmxuUHN1F5wcNpHaeukrNA8pF9Xssq3CXqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.141.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "XeSh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1oXbFwzI/Ss2MOjhzt2IPx+LsOM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xd49GGDIIL3PjifbpeeHDDTUcrFtUKuAK/RinmShEds" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:08:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.111.31.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "drogo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1mcPtUshgYznwTUkqgAyWLjjXTg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3tCuI6VpqVNncbq3SMX3kGO414R/ea+adfrNq53iTDc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.100.6.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vanwatech" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1lLVDx7TfAhKTxWGbg1XY393EU4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1zIzgFDqVwyMndQWBVVk8fY1qHD1BwhDlqsDVHcQjtI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:33:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.28.246.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:cdc0:ffff:9ab8:4dd0:41ee:b98f:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "glowie2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1k9Uu+KYPumrwzmh5Ew8mmHQYpI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z9WwEATj9F7090cYiLY2wXJxwDEB3S7yMkux7049G6c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.59.39.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:100:d0::1e0:4001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as204750relay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1i1KzWa5+5GsLqp88p5lSorsHDY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mIGCDaodWvJZCUD2yCdYCmUcNlDxP8mnDWfr5J1QJg4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:55:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.199.138.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:97c0:3dc::5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "itsfavesun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1ibQBpcqGP56hV3PV9C/wOkGTn8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gxHZg2tu/ghEvqNwcYI52YAbzL88bdBZ/u+0S9XTfg8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "43.128.201.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tuurtornode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1h/pC1ypdjHoraf7ZBzE95SJn0A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "co16r398uZyVnFjqTIHtExUnC8IZOKFu2KdN/Nfx5JE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.80.170.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1hrpTrlNUSele5Fh6sZXEb8XIZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oJJ/IVpyf/r+V2kIUaZWv7HMM14b8VKIWkKxOhl874Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.226.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 41938 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1135" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1gTHv5ARkeWdeR74dY0Z7o6MmnA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SA5tjncwUs3FKDnH5Z8AGeseq7TyojZmmW52fIVazMc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:30:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11135 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::135]:11135" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay41at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1gFd73BzpVDbTnl8dqcfNdKEaKI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4mR/MZt26DfPzK1XawhfG+0zAfIjtvvi8shoXFaWZfc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1fuA5qmC8g0xMYY9d13rKyQa9VY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RZy+boKB0qeHD2k65sSI284P5thjY/acvm+QdHNTL0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:38:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::14]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1fc6fUoNe5DlFdmcokYqLrJKdlc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mTK7JulKcJW1YvqH55hJyYWI2WVOCBKhmLQWnVtpAvQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.56.240.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1fCUl1SKOQcdFKyemqkmoPinSPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RSFGtedspoT4pHn1yazUg2Mqno4cbaqyRLB7o/X0PG8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.38.184.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:15::62]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "strait" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1eyBinmycdrkXX11gQz6Ud5JCPA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+EJ+9BFl05hhi7x1KR9/HB8aaMTBGtW4AwoLUrDS4Aw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.245.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Osiris" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1ek1allY5IkaEk+3SYKbMOt/jSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QlY19P1gREx0Zym2kFH3JNOhNp83Kh+POpz4hTn+Ua0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:56:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.244.238.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:800:bec::aaaa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "piSORGaming" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1d/HK7c1a/TrrWKmuZkQBDFquXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ddI/j81qAbc87pBdPN1zhXcA8R9tx23G7VwPF8jyFyk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:15:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.201.248.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=0 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH102" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1d4lfjDlzkShh9MIKYyPzcGwE7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5BfGOCzJjyS3YpqfhMr2d12mP23PHDbFGa+c1VnMKug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:37:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:202]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CheenaTorRelay3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1djDHh+EW0ZWSxEiM+7PtTkGCRU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ev+8kAknVb8R7gkhEtesAR7QFcCHumG0LVVApbNJlAA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.135.158.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:d8a2::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relaycrunchrelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1cuhZ3e01XFWBJmzGQHwA8hZK7s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IzCmfSkI+c6iqkiYAxosyQjNRELXpXewRrF9/5RkdEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:40:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.148.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:172::2]:6999" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1cTYiNgPDVvpimcrXhC3jqXV1fI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Be4G8JCi3OsDzqzFjnwimfBjzBQQtwRrIjfVDHWQ9+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:14:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::4]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZiqiaRly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1aLHSUv8544YJj9UT8Dx14D0y/w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9pic4MsDVkpwABdQ8HX+QewmyK8SCKBaEzyzP78L2zc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.82.173.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4785 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=98" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "komeru2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1aKzrh6ARwF6C7xyCf1iTbhNR84" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sArmluk427E2+aaBgoz+5ujoFPpT6yINZWbp14FrUI0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:24:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.76.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f99f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Enflurane" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1ZjihlFkr22ZWPyaN9glwoOoDDs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ilft6fczCTwmF8QPR5+d23ADPuCSSCWDVubBg+QXYmc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.83.38.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CoolRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1ZS8QkRjbMNClztZS3B2hdyqDIc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gvwXrAXHpenQpseJLCwEa1CV9t5WUks2/POALkeEpmM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.182.140.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:400:d0::20ad:7001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "krustykrab" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Yq8hWRPAhY4AQMQw8SzURqKQUI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZRrsei1E49+jLuZ8JQ+g5HChBk6XEVmfPU46AtjvBwg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:51:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mamadu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1XgFOewFjTWFDw5kWUuJUVdF4lk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZELNZwoyY4WUT7v8keapnjazudn6dHD05pWjTRIFPlQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.238.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:a003:0:216:3eff:fec7:70b3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sTORch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1WqY04/Dx14DR+7z3ZwSdJr3x8U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Vuw0xXRKhJuZWb1n1Bv7+lfZa9nl4PZFEOPI/DAHxsI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:27:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.196.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jmlsteele" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1WImSNcCwEsWloFRLU7EUSe/ujM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1PI6jjhnmov0IROSS1Vs0EBiqXoogXXa2r/c8xXcRVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.243.168.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=740" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "peppertor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1VJ+SGjur/iZG9BPa/joe1CKN8E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X4FIcxzDXGAEoUN9cqRMNgvH5JLwOEBGXJTmoQHK0Hc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.41.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:66:f7a:38fb:a3ff:fe58:61aa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1U25OhDORbMnzmz+ZxelWcy+9lA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VEZCSqY6bNgHnOT41vDw1YrrPRjNhOcQV979asqf27w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:00:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.104.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ProtokollaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1S6KL3O6N/L4j1QQHFZvIRCS4XA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gmwdQdV+sThtE0g2+MZ3xTxcN140NhAw662/0Vg340Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:57:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.248.204.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Waldmeister1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1SoWAwPGONn7A0Y/imt5NNV4f0w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r8TMUM9oi2p3HPZHdddDKCIMO3GPz3yP1bAFmcU213A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.239.7.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RandomRelay9998" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1SZ2Jn4FCjiRdp6XdzoeHoftPxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V1L8dFxGbXnQnA3LT1Xme5WUTPQ1/c+Ed0+78VDnWI0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.183.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:8840::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SmokeAspectRangers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1SKPpaqf2zgl5vGZr6n55vlSahc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HMsCSUe2MSBz/pOtO8pud9SmTKc+Gk1GqSyCNUmM7ak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.128.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TochierRedux" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1R2doVhLqui8SgoQ4fsgYYqJVww" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mQ3rNAWrzA1yPFwCBnc2NV7a5T1TADBIeqhHE1mYPss" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:10:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.52.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "default" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1RvU5ZMIsCxr5BUQOPQX1BnWLm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LWbxfer7uyTqCSSRN0gqVdM8TXY3tXMzhAxUEO9ZOU8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.226.66.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2003:de:2744:b701:bde3:de9c:63e7:6ef3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev2PLicebeer23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Rri+x1pmy2fsR8rBI5+A1yYS0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7eHq/E8WaqbOUqIueXJkVI/42+EXK/q2+kaGEJOPBes" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:59:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.38.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2120 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "indoprivacy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1RAVVNCU+sn4DwJv7ogWaobVBuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B1ltOmEznOggBLSQNet9Wtd9ctgtJkxIFJtKBSWD6HA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:53:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.167.34.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "insula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Q33aYLw0r/bKKdTB5zdY6GSwy8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Dj+Ki3DARwlq6MbFpOlty7fuRZAubUPK1e/0thzvkQk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:36:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.79.134.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:92ff:fe96:d244]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NICKNAME" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1QX7lcM/jf3ZHgu7ch6+0il2LsQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0ruaKMI75lhmcvTe1mH850hCRVMnlDOsT4QeKFSNQCM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:46:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.91.98.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3004:5297::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ELPrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1QHpXVIZcLR/3dFE8nTnlYl2pzM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D6wUyGOcLq3PeFwtnOypvHoE2etqybVnPXo3nbsGw1w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.43.27.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8070:c187:3d00:2e5a:4e48:fbbf:95fd]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex80" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1OWFzg43qLNPDVNMo5a5cjixK/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CSetKGwCssh3YbdRLt3HBv4m+HqNtHpJZ/ZWpI1leD4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::169]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Andrea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1OUNJKNSE27RNJD5k2efpyU+TNo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6LHGIZdxkCJc5Ns2FTL4QM8yhpAFfWU6b7lv+dmBuFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.137.249.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc24:11:7666::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1176" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1N1B/jaIfhnJC1l/innGg90Do+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X4e46QEdi6Ft/J6fLVUhcVPTaB9DWp7VatfYDrtkDv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11176 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::176]:11176" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay34L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1NxwslQJuOSw/UgrinDKaj9KEjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0OLkDJvW+0DdVqPgiS/KZ83caXmXp2/j10qorBmGufQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.253.176.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1NEHaAsIl9/+5QDmJamKqoBgx/E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FYlXZv/fN6vFfcK/o/CZpvhSz2uo8ythk917ck9szJg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:39:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "168.235.67.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:180:2:1bc::b6a3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0155" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1M+yPWiAE1uL8gyCDlnDQCkVNDI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "89peQ5tJ/TzAvl4aGLRyxMbVg/046hpooAO7thsWd2Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10015 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::155]:10155" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev8b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Mp/0E2r9uLLZ5Qm9aoyBbZA0Uc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "77K5iOaPbRZNsxbXwnmGZ2VM4PSL0t+JU62rkYKqF9A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.232.251.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:2b:66e:dead:beef:ca1f:1337]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1MFnMudl61LrC3Sds13BTI4N+ZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pk4lCNZkhaG8xYGSfk/MzBPwH7h2/PEDpZLzSso88S8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:15:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.168.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:4423::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Layer13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Ju3UUx49oMD2HmvfD1dZxSPWZs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1LKoOmuxR4qWNMSxvUfbqWrnz2LHwlEJz8ikHoYeSwg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.232.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 21 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:600:2340::1]:21" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dnb4ever" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1JpUhi0fwA5c5UyzK/MXdGbAWHk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W2iF3c5tC68ZYtRCwme0tFyDoNx5303ger4/G4iQ36s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:50:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.122.119.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cepa1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Jkb8Uv31LtoTlarAqRKbKY5FgY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yF6XPB6Z35zoJvtkuAdUOxB2tn6dnMYCnSPVJtaqxME" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:3c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1IOC3t9bzBu76g5b3XIiqkglJVQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sVxwOGpbpX4AZ1t8bmkTe3QTuGrLoe04WkX0jiL5XJQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:58:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:20:3467:a5ff:fe26:453e]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Eigentor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1EfYGA1ftn0OOtCKwKEj75Q9hNQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "soiIOvjj2jg5g/ajv//2OuzUkHB3K666SC6DLkjjaW4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f776:5862:30ff:fecf:d2c]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Osterei" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Dn8O18KgXlvRiIyAZepADLK5Ns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ywTfRrBAut8g+rZtWSg3UEbHsP5Z4c4DHWw5b/MdWS0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.143.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FarmanDK" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1C0mUF82/nnM/c2y7tYgyqnUTEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xrxA6wOw0tNrx0uwzCMz3+Z268l7AnEiv/aJd1BJ7JM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.210.58.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0d:3e83:1:626::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "harsha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1CNs8mBSKtvcs9uVX4+WXDKBizU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2qZH4NpcmGpEnW8rmx2t4PcZolBj4FQ9EuUUJV2xCH4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:36:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.102.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:107:2667::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1B8JJDa1yKoQvXGEr2TC+Yt7Avg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eaV3Fv1amgsjxSSWWgo1JODWuL/6sGzSv6DNvfXkVZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.250.22.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dreadfair" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1B0XISOWVrvH1EFzUhbAHaI3l3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tReGH7vF5HmpeRH58VlKiFzJwsvSrVTIGozD46OXFTY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:34:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.166.161.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Bnan3dvmyR7E9bCzEv2Y6+spIY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N/VrfL0d7/6YME0aIKkuave8H03/MCmnmby9gQFj63k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.252.112.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 29030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1Bb3yNg8rZE/PgkyABQXDVT+aqA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MHoONGUvW6rhOM/baOeV0hxVPsObWGlRIMffnRR4jAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::80]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1BBTdpo4v63m0G9LurmIxrNN/Fg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "enY98zaSKE2XWFxoP63byqtrdJhxiG3iQVZkn8uoC2E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:27:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.206.225.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15804 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gGDHjdcC6zAlM8k08lY" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "1AX8zwat7fiY3y8pyTSNy2IwMbo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gqzul03bJnrnUQnQcLK34cnJ1cpFje4Pm26umn6RA8c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:21:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.111.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:2388:df98:15f9:b34d:443]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0/ZhYDREje7jaXgslvhP4UB+QgA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5CHZeFJcVR0flR3IpkGof7561hpHkW6caRh9A0aUyIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.29.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f24b::2]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "transtbb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0+n4Z93yjeGR6mEf02A1PIOE+Ks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I3372+94ngBvs5lR79yPCKhBnYfp1c3GzrfnaJkK3U0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:29:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.155.144.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 14074 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "09eqH62r0fxE6hr2FqLszkEnUcY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J4m1DNoVqVsb8TdjLmOgZFA33CzRYiJGwY9Dewm4r4A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.255.140.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pissnissemoldova" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "09LkLY5iXTZIkBWrHoCBzlIN8v4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Um8LqbpYAqCSULsuKjIgLPED9ckQ7sBM+9tzncOE9u4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:56:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.208.162.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8081 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5100::139]:8081" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "str3DEicebeer63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "08pLEbTKHaDv/8milDQi0NeGayk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "63FFEq6a13og8Ba5mQSoE2aXtOCauYKPVtXumyDcYd0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:55:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.199.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8063 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:436f:5800:c550:adf7:932:c52]:8063" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelaySecurity" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "065B0y3jiR45OBMz7TcVyrlKLA8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DLYQkwSK/e1pjjvw3awgihB8MPtARTPxdzgwkmvxN+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.53.167.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:93ff:fe98:5600]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "06jtNFxhupalOC8mp5HKls+WjKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zv4zXkZ6GTtV5hTCcyLrJvuR8hPGjootuc5J3r+Wu1Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:01:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.255.85.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex92" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "06G33vNwy8YFXz/FQKUYyFdtdXA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2tsIwn47y/vt7kgHOmBmskVonGUzohj5/T2SJNnb1xE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:54:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::181]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "3zpzl3mnsqzy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "059m3kkQ064cNBXkUBIZ07meGE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YaXXNIwmJGn/WQUMid6gOrKrn3jPns2aIGZWe0hdLvQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:26:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.56.90.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FuckGoogle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "058s2Qojb5SmG3Zha0hzMp2neIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OSvhBmP1Q+AB+zgCRCRW2ympvOnMn57Pco/ENTJj5Qs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.112.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:214:3235:104:0:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "044i+kPKD2ESCyFHi7Do94sOPug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X291I2ido8rGYkJ0lDanKtDkBkFA+rsP4jlTJdSn/DY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::98be:c7ff:fe83:9a08]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mule" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "043f1ueaDiT7HPMyrhR7Wn3JqhY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7TS6F8jqrJ+TPy3XycW1qTWT5iRkxRhO7noNgUejjiM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:38:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.253.41.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "beachyone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "04UKulL8HEdWHo73KmBI5fEjSHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c0L63hZ/IL7KgvzoJbAxWbBbqMrf7YERtJhSuGAD7VI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.185.253.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "03+X3/pVthxmFUhRoq4kbjKxsZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ggbeA9H1doGSL3VQI3orLpQ/ik25kWtZLdqAddgDsB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.223.3.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torbaconexit4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0315qTGW3jPiOLA3ltA/5qWHrmw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZjDiHwv0e5PQSyTXsxrl6zSw7EFIZ8pXIdK5lCazQ5s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:08:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.217.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c206:2094:3600::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Belgarath4TOR1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "03FTCfiYJ/StLdHrcWZ12gLdd4k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5tWYKz4TZNDvOD2Pe0mdJEPxl7AwqeWbekY14zFkceo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:18:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.65.114.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 65187 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 44444 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "08eRPfaL2Relay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "027/skSBaU44R4f6q4D1aqpczZo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wgaN35jxCMe+mRko3xG8qPO6jUK7C5Heq7DKtUR5rCo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.112.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:ae5:8441:4dff:fe92:25ca]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "n0x0r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "02pypz+B7eUegffLrRxEC340vdU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hKsPGXZ7dCx4wGQoSWKh40BNznjLcl94WB+NKzTQj9w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:07:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.10.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f5c6::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "makarov" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "01ktOubNbFAEXVQp1O/wq4o5GjY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2vA0B0Ym/A/zEjMfJ2lZYspA97hx0h5i2Vum5+AcoQU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:41:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.65.45.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BraveKhafre" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "01aCq24p2RqgMOA6m+tCcA2Woe8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r6/1ROwHwdUc2JxiRmk3Ja33LQvEmRzQ9uM4/rp40Vs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:25:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.49.20.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "boots" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "01BDmsDCSxmqwACnOXY7q5qJu/s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1juqB5T1o+y9RnfardaN3Rm5lbJnFVGjpIzLLMPB/D8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.84.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:3:16fe:d191:b6c:c1ce:4baa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mevPLicebeer10b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "00vicbhGMNXgjQQHQZzevSyTERg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "knLvfpFwoaWGBGIWo7JOqS6juQlNIddSwJYCADTv8Jw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:10:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8138 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0zKS/t4k3UDyOFKD5VyH+FwJQ7Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vVRdtdR1xz7lMR7ZO/Lc8WXGG28DrrECLsSBWcA1X1w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:41:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::121]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "satedaprime" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0xr+CYlvNKTnh8hvqXEyZRbfb1o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "prc5Goo0+c7eeGSdAz7uM7MQXBi+9ULv58SEr9/pwlA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "121.122.107.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 25783 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=830" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oppaiTORus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0xpZqkVBYpWFkOK7wmiACJdDvTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JG6ZFK/A6QeFTgMisb+mwt1UIhm4CsbBC7Ddsx/598I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.13.154.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0xASQS2dc8aYAxicRXBwJbyOMV4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YTutziuUPdVPruStTgBD1h2UIlfI3eHC9xl449SZgks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:05:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.37.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1801:31::1]:1503" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0w6dTWOQaGEdbZaGHJXCCZFAuAU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O0IG+NKUze6aXptnzv4BMa/sqItCjdQ//G9liUdY6Tg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.237.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:2:e5::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cairnes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0vTaxZGLsIKlz6xSdbKfrJs5mys" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rlu3f83rct/Cy2FHkUYW3bM98liVENnt97F3HTffveg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:12:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.210.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0vFedJVFl+QeFVRJoM6bTbiS3/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nKbfLLssrkEqsoj2nAsSsKfm2u64XLEPlQ2BMh2lTbQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:03:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::9]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0d210s" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0rhF1Q7VtJqLi0JatTDDjZUuXDw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7Bg8tD+yHWiY9gG2R7K0SBlLUaNiIv3aVaHFWKB3Br0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "13.48.138.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:d016:15:6600:2d1d:4e4:d058:deb1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Germany" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0rahbUTei1+xc5UHtaS6+KCgLiw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gxucMoUtC5nR5Dtwv5hrzhKxSEWxdzN2KaSbteGdcE4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.39.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0q3Wi6n3NQMYk8uKWFSDdegxtFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XH9NJI6d/ESaarOcoYzjUYzZcmT1hBMIz7Y6qMb5ah0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:17:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.194.84.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:1ce::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orwell2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0qS+5nVKlxHrD6xH8wWb5vwNcsc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nVbxRi8Pu2fhACAFFWmWpyAD8/bLUs8DI2I2rlqfQ44" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:18:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.230.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange020ca2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0psx/bXt0tG5TNMcLxO1z0EbEmg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3JG+hdwvwNvJB6+gwtgOn0lLf7OUdVrUFNVrUUGvdX8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:35:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.250.191.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leaders1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0pOUbNNmRrzmQx7I38JXfrckRNk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u5AjgRdjDJseh27KtCezvCRo47l0PKJO4Z9/ASmXIvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZynR02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0oHMtL71I5Hc1+kOc7MuMkBDqUQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HyZPI+McT6PsxkiSsJ7+bh/uK8k0StLRssaWMnhO1QQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.27.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44202 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 4037 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:62:ec7:d42a:41ff:feac:7169]:44202" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MollyLee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0n4AYYMQMs39goT+7np1sIQ3ro4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W+Rv+BHSXUME3Q2HFx8xfehBWN8ocTwotbkNxnwJ8M0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:01:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "43.251.159.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "roubaix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0n126CfpKZesa8s+h/9uYewHCZQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0/XlKdeCLgFj3+v8arQLTec0SgGrjMwnq78TqbBomD8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.196.73.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:e:7b8::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zlasvegas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0n1IQcE7h6FA8JJG1TIemcaCS7I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DM4gFNkS4VhrYr2borUgE9iRkc54exbinDLVbZYkAxg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:19:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.41.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ymybe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0l1BnBZ/PMjU0FzSp+KUW7KHk0w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1ZM12WrAYnEbERXscIZBDfO2HeOmJXAcTwUimY8o8xk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:43:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.139.8.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2454:4c1:4e00:3062:c7ff:feff:6e79]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Anaxandridas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0lYQv+MLDNfCJm6t1+9YYS8KHqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3O4CetNUFem9AAFQPqWJgv9n4yUzAw7CeUiV1MFe33w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:45:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.138.41.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow004" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0lUmi6y7RWJVTPIBR3Mb2g2MRSs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "roB9L73Bv8riU+Wo/xZeFTQwiKEoMn3OolMDbOUCA50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexPhoulRules" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0lIQzgfEnypPK8elBusPXqf14sI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+jpKNuZBSgQBlsVQBD+PcJigIabr8KaAueP/K0KPMHw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:40:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::112]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kukuruz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0k0MKKtIdoz4t53XYtYdtP0BVnc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KDA3G7Z0qwE9jhZ+ftjIDUenvLsEj7B8rXK1qZ1FtSI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::14]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IndigoMagick" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0jgHRZN6mU/h4ZhZy+vxgdu4BEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AWyDnaL/sjGQXL4H8byAiep5oWe7etdHEZ0kQTQXRXg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.25.51.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:2180:0:1::fb6f:72f2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gianni" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0i+T4mdfF7/20jL0ebWeeI/q+QM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LtuigNHOCpNipnZ0ilSPbe0yt/99KZj/WuOxuSA1X6s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.88.44.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6969 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:49c0::1]:6969" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "klaxzynethex" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0iOlwR3FWs/qZZpX8EafJjSIwzY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DbgBGnZgYLf8Hu4zVR6SyC182+Agx/rsf8mPgt4MzvQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:14:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.156.25.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1132" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0htjggmasOLXRzD5Csu0lQSPpKQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0vKxw+eKcC1td3vGA199kT0XyQfkgEB00aX00VZc2/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11132 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::132]:11132" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0hhWHaWfCTq5SiJiDgY+zoc4FXU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N/uqAsF8nRX/26azEJ5+4gV9unuxKnGZPT+A3fNX3Rg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::192]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashBear" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0haeZBssEMrOombTE3BHkgC7mtc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eX46O1owFZ+G9/ybBpSB+uzZs2hzYvMErvHm+/8vTU0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.22.174.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1838:36:115::8a3d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StopFossilFuels" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0hC/CRYgYsBekx9xuuzZPdkQLxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6E47bqmr8XsifYj4m8bJeWhIs52fDvSZXfCYBDyJtgU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.69.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0gd15f7g2bsVVV8xrXDaTH1W1lg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L64zsBbLZmqIxFNLJ2K1IMIyfZP4TRWSV/kkZBgRcI0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::84]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moon3000" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0gbuIqoar5iQ9qBLKB53Tvkf5rM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "npllppoQaPcXYQNI24lgmh0H+mJaQeKuN42wjBGJMss" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:15:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.42.177.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Amnesia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0fe+w0pmSY/FZbwFdjImkV4xfyQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hrispJHu5JLSPEyZNbbgoO6AN+EOOLKRdfon8vzzX5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.238.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t4cc0reTor5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0fLFyCCz+WvmFEy/uE/d+dDsCBA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NnG6s5OAIFV8RCipRBws2IyzrWcnSQ9jOd6dBnEc8Hk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.81.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:2713::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kriefukegtai" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0fH1qlvPXatExETe+CghuL7GYUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QVFXB9qAhIvHdeXSWHfhtIHZ8MUoUhgV4doMwWfdd38" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "181.119.30.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0eXEBtFEKb02usxu7mTmuMWDPns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3p72oYp9JNdq1CPvT60OwHurDX90vMZ62qofXPZ54jc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:28:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::2]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AmorousLibrarian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0d8K5E5p4GFKdzBbOhLRocdxXAw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cWCM5f56sMFBPVm3l+NfLeViVhGCH10lvjw75Fjgc98" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:32:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.17.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8446 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:c800:1:5::d7]:8446" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1141" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0dXWpa8blPT7M3EDSxH/cstAqD8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kyEgUKxo2iNV6KZoaSeT9Je3CllUVFgYaS86swQiltw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11141 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::141]:11141" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lint" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0czAqOyg2tgK5S/rO0LSixAYxvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3TGJIdkiCYF5OBC/QG/Pc7DGdDDMu5U7FMwgK8jJ3fo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.211.247.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=980" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AFlat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0crjGnCIfYpeTSKye4/6BCEb/mw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7/eJ6yleU7BRYiULHLjSTGMOYp43qEVckesghmjFY+s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:45:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.254.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "juggernautrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0cYPm88tugendZePZsmSfTqUkLs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0TyyFiy0InrTW/H6K2nlfLfbncMWWXdNWJMdNfp1dDo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.232.250.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:2b:673:24da:28ff:feb5:e5c5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapAMS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0cUJwMuTqLJoK46YqplIawM5riQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UxgMdVwRnprXVMK5Mep40fGKSy3KLME53oysjP9pZZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.34.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:2:d0::1300:c001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=87000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0178" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0cRfqtdm6BDtokATNcyOvejqhSY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ocO1jtJFO9KjpjpMbMQueh49YzG4G4km5CLu4K3P6o0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10178 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::178]:10178" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0bhT7Sfk39yjpU0/LiacTZRnf2Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4VlpZ3/b2Qy8ZbE+nZ8x0xn3eYZlcuVNebFUhE/CD0I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.96.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:20b7::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thekillingground" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0bMAtO2AQSu5zvq0Mj2pJnGwaBg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Io4Jkkji9TiMASGmDw5qG35wURseD5h2wSRnsEeSM3E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:22:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.34.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nullptr9c01c676" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0a43V8iDSLpa2nZ5/MjizdHHW6Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uiL+v0sPs7HTCgBYc6PJzYL3Sd7XRFhXKTGcNWB7rSs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:05:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.95.55.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WhatToPutHere" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0aC3liQmLs8QVfdmJN8DzMsWFWU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "voV/XeH5AZyMNKW6WweYFg/52pdesSOslbrPcJKuqQE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:26:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.172.206.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8071:4486:9100::c4b7]:4444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "east" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0WyX6QPJHuCGj/R0oHFpzOS/kJw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m2eD3WhS07yPREuaJIvdYa86XOhGKOOfh7O5weqTlsw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.70.96.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieYood1yaish" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0WszWnHpEHBl5kGazF3jHOxOMy0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nwt5WoadG+jfIABgk/aEb0mc40Ix31f9AoJ6mvZlQ+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:21:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.13.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nxaat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0WFiMRgiURRk6cbOL8YuSKBUiyY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "asBMEJjiyNEfdpSXGRTgkXLkymrjLNc8N+uHPJA6jtg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.92.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:3e7e::70a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RUBY" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0VPzQNlC+/BHT1xEAArtiu1YjJM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yxTdoMWlQuge9Kjn5sqV+T0afDUCrVmn/LRIpYFMVZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:55:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.189.223.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:56::ec]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nosplash3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Un9puPaPg+qyzaWkujWXV3ng/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lmMbJzQRyfvFlNB5/KgFJpsuZkCPwRRfzXmxIqzv3sk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:38:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.186.203.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bluecrab" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0UL0f43FWZU/ZhmfH+fHxLoa5u4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qhnlidPJQk0IAhcv7EhxQsT/1XhK5CX6KmOEeHdlISg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:39:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.123.97.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip7b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0TaS2XI2wLjo4Z6i3ZUrXE+QELs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Oq8SpvbANV28TpNWaBiGhIFpgxDrOY9XIY0vJUTX/fk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:17:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::254]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AugustTORRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0TC3qTIpBtOXyctBvCFFDT1ksyQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dQMEYtNcFRWCGjl7iUuv5KFKuBiVgsgFohY4Jsn7gv8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.103.195.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:550:9601::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dmsdrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0S1x3NnahITc0mfRhogjq4E7cjo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jz+0mJYcxBzNO7mPAPiwTZJyDkUu2gktbA90GqzkPlc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.196.70.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:e:3e2::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bmwanon3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0SPA+PVigEaTxH1oxheGAjspXpg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qwoV4qZUzNnaxctSDPpNVCmqjUBV/dsWbH1JWM2+C4I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:17:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.1.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:141:31c2:5054:ff:fe00:ea09]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idol5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0SKYufL6jfs5lY8oK/vOyfLLA4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VGGeilcMKHOX8bywqLgRZF17RLHffD/XIaf5YX+rsa8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.40.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:5cc0:1:1::8512:4a91]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gazelle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Ro8ETu9bMeonMarb9d4P3dJy2U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pVhPqvw66COkbswPO063UdaQuqZJPaAkpKnHgnLVlos" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:18:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.171.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torSiliconhomeDe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0RcasVdOxKGG9mE2TW/w11WDVvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "enE2J2sDaSZd/3jj8sPIuZ6yrWWuSo8QITUYyLAfqPQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.195.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:bbc0:310b:2::102]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0RZlN18zM1biGg/itqr3uRuZFto" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ixu1aJkNrKhNqJd7DvN6KodOV2dTuHNyOoefMM9/4l0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.99.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:683:3805:33ff:fe78:a676]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kienjoch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0RIXtEhz/XyHnlQYRLTCC5p+XPs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AJyqlRck/KZI0rxzMZsz0veCy6h7/FzR57Mivv21mRU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.97.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:4203:7c00:2dcd:efd9:ce81:dd6f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moses" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0OGWKyRgulTYHhQmMA0Jcg5tQ+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FGXPSMPPS4P3ibutnnJn4eJ9hic/07JQh2hRSRty30M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.164.211.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03:e000:34:ffff:ffff:ffff:ffff]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hotthing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Nmcyja0BvgTy35coXzuWPveiMk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LvDg5/i1ucIp7YdxodUjKfThkvPnTXmsoQA0V3oLIcc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:17:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.150.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OROGOM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Nk9XotGvXK2hhe0AuLbwW+KoEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ot3xevk/T9RWqUS+5f2svAAu8KvMILJjUxhWW4GX17o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.7.8.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:49f0:2920::d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "loewe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Mx+CqeSHeQ2TaUMuQqDyzK5PGk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "//NUflE5cnawZZ+Ty/jz5c01U3R7TaJtPjAk5K8SYik" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:09:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::75]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xiellettalio" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0MXoCHQ2yZrmKTJnY0BdIsLlqwY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uw/jYhK2elkEcc4R+pfMpGojUQr7cZ/qjscTJoZGbJA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.92.149.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation58" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0L9qZAAIHaYDFTbs6tWfeb2r62U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SV8Th/u/CsG+BOR+irNUxEESvsTJo25F6jh1Kl1dVM4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:38:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.143.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mortefidelious" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0LbjfVyjZo+D2lGEV2zcXIiHQy4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SORzhlccTx25tXq/wm5l3mU1eoRFfwJu4wlGvQwf5/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.29.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elites1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0LOYQM9Xk5YGuarCc9CQcIQnNtQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y3gNjyGKmsz8HZNgrLxak0r/Vu8vLseqb2saQ3gqXMQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thelastvampire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0IxpRIWgAxaS+v6MMgX7u9vNlAI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qzsx7jySSmju5/5oC1j9BU1zEAOqqotQ4VbkxKt1p0w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:53:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.109.100.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spruce" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0IhqSvFAEj5HbXgE71HKdLrhzl8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zLdFWIMmB1ladO5Sx/2DHiEjNp1Rp8hQcELktjQuXJo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.58.145.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SNTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0IZgttcLYkmlfYm7eo8uoslSvTU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sC8vtIl165iwNtLMtAZ2i0tyDSKgAfatqon1L7Xljvo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:30:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.89.149.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2564:a120::57]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Transyl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0H538GZafF+RGLNdypiMNGsoBIY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4jc+daU8yNnM39GdRLzcX4BKuYmzeTwXzeEYlEcUQ0M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:34:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.246.188.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Ht7kYURmYXeu7L04Z9qGep0bO0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mvKZDyqtE6ytBDLByhWlsPHquBZk2y1JnswrSpOXW+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:22:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.73.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1214 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:46c::1]:1214" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OrkRelayForWaaaGh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Hbq1ISG8Fst8jSwhu5f6Ax+4jI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bpJzNLIrMBaYcx2Kfe1uq2I6d/ctkwBLUo1nIg8v7Dg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.83.43.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Skyhold" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0HZWF2n1yT1ih3fj4F1GM9eD644" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0bMZmGDaPuhI5ROdZFNdpm84TnyguuB93hSN2vrv2n4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.41.149.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:b07:5d29:9575:2421:ca22:4b2:a431]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ajourmag" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0F9By3igAxHY7Eq7TpUVgugpjQw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CBtgKDvlyW90n37k0QISUHHaDja9RQZZ/eqM68qDc+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:49:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.181.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c0c:4162::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mitropoulos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0FYrt0pcyIctEbIiZ3AJqJIvw4w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cty8DxaWh46n+5m5tTv9qCoPZ3gHV4naorS82cqqcRk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:44:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.61.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plaincrown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0E6vRHjyZencDHtJcmuQ9YkUKG4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NGS3BBXLmCkUPquDDXhpPQ+/0uWLATFd3gHBuC0es1I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.120.8.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "c18aa1b60d3c06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0DQbSWiX+WCEVwtJM9UZyyWzXHw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JWK+xidZv6O7CNf8VlIC1aaxE254vZbS09UJzDFBDtU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:12:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.164.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:73f2::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skankhunt42de3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0CetTmpXdVvICt0b9si8f1HoorA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pi/TqkeZMtL+UAkriw8fAJZpG4HoysbnJML6r8vEGls" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:41:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.90.201.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kimchi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0Cc8hWbMmuzkx2I3bJsGb+Dx2t0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F2MjEtlkSQvII5XOHxYfFFTQogXg4QxK1qlUbeAFqA4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:31:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.120.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PGtorExit1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0BuR1CRld34STVHCKbD5xXr5DwQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Enfk0DpVIGtNdrwg6lMoyBxlFAdXxca+RdR9T84FfAc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:31:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.34.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "someTorRelay0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0A/NHyUMcfc5+JGFtcQxMLPNjCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FgDbCZUDArlY1W747TWUvN0MIqbGyvw4X7J4762j6fc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:05:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.65.134.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55868 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aStupidTestBitch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0AeVMw13x1NExU+4gAUx+rPED74" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MoO0OB2WDvL7nsxI9KsKwCX4+xQOSRuzrRWHTKrYyvI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.77.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f503::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "securebit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z+91VJQpOwyWJLWaFJ4YcEpHVVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XQFa/Ayq9DVH7GBfPK7l1UbFl/LUU5moDQnRg0p2Yp4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:29:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.232.117.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:4c0:5700:b9e8::75f7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pineapple" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z+oghaP90Ao495vt+bHp+POdRYA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OKAAYRC99jA145jdtsT/0Xo9SYTgwmE8Quowqb2yUok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:15:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.50.144.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GoldenPOP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z+HLI5QC/kGsClejeBRHQYkHhd4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HCxsBCKeFdtffQns6A2FbYW7JLPVBrgwO+9IFxG4eSY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.112.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UlhasTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z9+Z7hkj2HAyn42uVDmP1FQJ8B8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GMklWNleh1csSmiqr6tO/8pFtW/gmyms0BwcAh7Q0sM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.32.240.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORNETMONAU" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z9N2SdP8Qotbu0XErjK1svtcT6I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0BxbYZkS4zp6FbjnNCLKSjGfRbceNkAdSZfZuE2cEHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.26.51.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BraveLuxor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z9NLHhxP4TY8ORadZTic84VoELE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DrE/x0lw3tUMIdYJVsodwtU+GZTPzmDfO/VwfbjD0Ho" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:24:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.49.20.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z9KJUgSuqoJDQ2O1XZU3uIzm3v0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e5+r9v19UWoMOX+MWcdExg6Kri7LqK2KErsrQ5yEGEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:25:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::139]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mytorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z7jOKNGxLuuGYlEa+8HQxveQZag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i2rI0pd+vsVdDaUUoFk0IJLRlR2KereN67/u6P3G/0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:03:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.149.69.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kochan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z7ffn76vnsEmprVXoa8XfK1Llqs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6oZhcFpNV5B1t9YyPsEEt2WHhA+6aX2xPI3FLcFhOkE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.108.10.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BFlat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z7Y+WUccOOSvou7e6y5JxN9QZYQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ABMkM5aOXmI1KrGOhUz65r2tYE7inmY9evsda/rEmGM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.95.215.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay37at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z7U1cVRCvA6favIkp5S7+gLQs0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MIgexqBAiD2DWX7MAQx0wmW2sbfdxxKhChJnCsPkb/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "serv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z6dEfGanCZMvA4/uawKLhKbmdug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KL+v9+2GDVbVIeBkvyGl+UeN8zpVs8NExOfsdBNVmjc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.119.32.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PeeVieh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z6RaRzn75HfYxlAINLWfQadJopQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MQD1ON5LetVGPZt87G7BdvlmDpMVIHCKgqDMNbf8oVI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.119.112.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vunreteqrado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z5vrPjVUxcNDAkZBqRzJrmuEmII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oOXRceW/PK97zchwbtcE5E/Uf7uEua3/OnZP63tnua8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.120.237.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z5pUcIHJVmTIxzW63bkeYhD5eVg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HMFRXe+xuH514XD+M9M27g8IVVa5mqc/g58xELS2kj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:26:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.115.47.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jelegend1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z5Mjbe4fV9QHLu3B+XUtt79JeJE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4lXjA8SXgQgNsmTLqzgY8ivW0YDLY1uwprZb8kZB3lQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.22.109.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:100:5::a076:fa9f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange034us2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z4zEdjKY93/2Ta80DSbRu/M2LFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/qEjXHiZJZ1lnTMuuCaCoF+OxRxtRgvFcUEoYL7kzzk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.212.158.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thinkindifferent" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z4J812pZ+s2uYOElmwCGrP9y80g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dYf2P9NXJzEdKiGLzomOUK21SRneTzgdNsPM72gG6Yk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:44:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.116.51.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fe16:8f3e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yudejp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z3Yu88hrEEwwFRGJRUfHI3H5UqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9y6gCvm9le/D0Xnl+IDbOrh61bUPaenAGUEAU1TNnBs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:55:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.69.198.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashOuzel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z3L7AQvwKhNygrfz6s4gGQXW4Hk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ELNsLU8H1Qyjo+SB4usiY0KHFB89HmIxvZzfvoCPPg0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:52:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.96.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:101:a59::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z3DMVC5GmS4jACBzZjZH95CetAw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jizmm2noBfHLgYvGGUYkF4LnAsmQCwH81mYgKzqMFRE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.211.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:b641:6f1:64::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Faravahar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z20Kr7OFvnG44RH8XP9LR5I3M7w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "71A9GvYqtUwnOpqaZOHmDQY4bINLsOIBjazcFK9+zTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:54:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "154.35.175.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:8500:154::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cryzrelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z2pggAkbshCqOJL+/i9qOW2gjfM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vQK4PfbOg2o2RSkY+QYJk5ZzOdJEypUXH/BoDqA5kSc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.149.227.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:440:108:11:82:149:227:126]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Schabernax" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z2WStT4zA/aUcenGqS6Kbuq33cI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ri/NrfikGpb8aQ4PxQs5H//QoHWatTW7sP4RX2RnJ8Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.56.233.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:7846:e95f:101:47c2:2bf0:662f:9efe]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GreetingsFromTheNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "z02w4EgP6x6PWcPXdOuSdSg9V50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c7xZ4LLDi1BTAEALFr8G4V89dAxgbVj8Fk37aYg4Naw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:04:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.180.40.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Taniquetil" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zyCpEBpplUQ6ns+gdVGir4cxfZw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cCYorKc+vmgscmMj5SZUTIu9H1KiAQdWxiAEsINilmc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.25.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:d1bf:4521:600c:c37c:3457]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zxwYBMM81p2KdVh/q8Y9XQ4pgPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zIIB4h8daN9Z3lPY9G8pe6KmQpXRlA9NyM7Jx2oJu/0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:2::234]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1140" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zw9JwBftFO/VTpU/QorjUIp+2Fo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i1Np1dcmC4Rjqs58UmbHcfq/p4Drx5knxmMdXu5G2I0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:31:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11140 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::140]:11140" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreedomOfThought" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zwGfHZJCcRMlCjOLu6EJUEQr6og" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "163Rmf2n9+3S5ZkXqnovcw5mct9tPSHw0QtYyzT6x9I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.236.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:42e7:b400:778d:ed2d:68b5:acaa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=910" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FSF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zugE+gOoemXKpryzolC17ZI8CL0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FPAKAGUTgneE8GeIaCWktoET/p37S/bJEtouHOYCMHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.51.188.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:142:5::48]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "strayWires" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ztV38JHcsVrYyH+9RSpR6p5gv8I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9ss41siOawCHrB0hHQxULMC/z16DhMLuIxgmdMDw0ww" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:21:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.16.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "simonjester" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zq7WmzfwdRzlIb2MzpR4xCoIl2Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a5rB3+YW7ZjfeS5kLa5rLzAaoTYV0Bn7mmBXWg95BRA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.167.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer76" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zqhsMIFnvU8NKuaRkYBduW2FZxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P59LIpSWGPqy7FSVD+bdkuhF4Gz7MXyJdyTaBSmLJv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:11:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8176 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SpartaNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zpY3Nsz3q2Bu+Dy4MhC4ZWhQP9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p7hNF48kRm46OM8bFjxEb8L+thwz6Mo612DyZFSpFEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.236.210.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "webkult" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zpADIIoEeWAkYFLGBKITw78Jb2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RSqKv995eWnkaMLRS6HrbvGyOAlU/IR3ALlMbBk7qho" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.219.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:92c2::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mj4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zoY8Iq1au+r2Bq41oieBxAnYleU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XXvvA7TI+Fj9T7FwXb8MPrdi7C+h7W2jvZp9dfAvP6w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.115.86.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RichardSnape" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "znZB3y8l88zDhyTmnTgstQPAaDY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W3cMZ7nUhIEW2ijxiz2JYotgOtPQZXy45GI0H+E4d0s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.189.182.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "updawg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zmmRYqd0leh6ivNztnTaNsHqc5c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pOAj01Mld/KXLstm9KBuPvSYs3RaSVbRk0HqdlusKZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:21:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.77.151.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation53" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zmlLqNAZ7mDY54OMwXfmic6oJeo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lHuIrkYApuS3DPR5nApf/5X8pSpMn85M8QtWhLtCncY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.143.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0183" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zmURlorKpDQCY41movrF8y+aRcQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qHeqCfVESnbu6xquoi0kQ/OB4jBcSfbL1f2hQax5B4c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:08:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10183 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::183]:10183" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev12b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zl70+2RFRNsvQwpgzG64b9fim6Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fXx4v4BP8fk2fEdGL2j7tAfAJMDxtLtxHBRW2vGDHmc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:33:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.246.84.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0d:c2c0:1:4::2]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "guidelli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zljPZm8gmFdQL86vHLUvY4r/vWM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1QqsbY27AQpuHzMuJAh1ct/gDOrkjHuj5WrBbA50mgo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:47:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.187.249.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WindowToTheWorld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zlVHVOJF9z0HdbTHkilt2uFuIoY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iN089hfDRR73g5pu2AzqlvkkIrep1sjCR4x3vY1Yqz8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.67.219.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9500 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "juanovo2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zlJhH7ceK3jq/gxh4kHsfBFseos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dKv+oM5kQFvpN/LzkB2alx4T3tGPFeXr8bJc4kLgLao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:41:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.115.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rymndbjcyirjoytu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zkn5MpvxGKHB1CAVN1qtKYRPkwc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fqeE/Lx4AmXNuIuc6ATfvNAlQ9vlLseLK4d43ZvsTQY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:21:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.164.24.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeastieJoy61" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zkfwNW2GzwoaIAjZdiMhbVYPsKg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n0AxWpzpyAMtEGPlp+Q7ucg/bcvlDUc9H/cuU5deCuQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.43.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:f48:2000:1031:72a7:e81a:29ff:babe]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "altenfurt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zjuYMj3aQMKcnUhwW7eL0siVMPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WkHAZvVFqc6p9YLGwIHWEkCIoSQv1MtfIwba3cZVj0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:11:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.114.74.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42299 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:c23:b875:cc03:b841:b9d8:9d8d:1b1c]:42299" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=860" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ahehfxubzfxwspvk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zjawu0yBtG+9hmXHf+h+W9SP4LQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f6UD3IQYqx0F9rpey6Eg+7NkffCjwUJiX6TBk22OpRI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.239.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:42e2:ce00:d4f6:291e:2df4:30e9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UkranianStrong" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zjDOOW1itryd78g0Taib/WAINmU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TbXC138wZ5GacsZsU2WJEjI2kyws3VyUlmqVD9+nEIM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.139.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:100:3::680a:e7fc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorFakedOrg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zhU+PIExhaUWw0HPjCvmvvun064" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Wd9vN9NbqY7xqQxxeVNc4skfVKclgeAIV/V4lceoPSk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:20:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.66.4.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8109:8000:d:b46b:61d2:be19:167b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zfauzqmpCSyphZp4ZSrmDTWaRPY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JFyIUrKafhQmZrxRSOIBLWxOa9jquKOBq3tFU2LYvsM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:33:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.186.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:23:489f:4fff:fecc:5244]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra88" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zfVvKq+kK/aRIGlSkRB+I2SMsY4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x7uVG4SoDnTLEqyMY+ZWR00sM1vX78DiMFxKg5hCWG4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::130]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrresdemorte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zfNksXW89jqQM1Tl9XdktMNB4jI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0NZNjSDeW3qPzCDZ9qquT88cBZ3SIAdSG1ogbDf3EO8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:17:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.8.146.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheBlackH0l3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ze1hWtHMz3DBGIe9ipGNPQs5KQw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y7iyfOsDlU+02m0XToabbTTIOVHO51fI4xY9n/9hFus" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:56:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.24.145.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f0b:18e4:1:2:3:cafe]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=830" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sidlecompote" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zeiv0YFoRI3K9V8YXBxRe4Fdy/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RddddZfZdL9ykux3sNRwOTqDKkw/V4XTXHmRrN8NBaU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:43:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.152.88.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:23c7:d381:1301:4262:31ff:fe07:9b45]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QECm1r3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zegfwBUB1NnQsHpzFMFPSjaVjC0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bDI1rUxkWdpqkQxlNyOUHeLdM+7wyyOr4IddjgPhhUI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.250.119.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "silversurfer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zeTF3J1jnpFbmbRh7iQwRPyiZLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6u/c8/EJXLZAx6Q7kHx49gMNPnqSLpagmTk+8cmRbQ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:4::b29d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zeSSs00UoNlxqLBIIW7LK/R9wN4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2Y6WakiSnEucZLHzjt4MDjaWpMwB4geWBxqFAuak4Cg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:19:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.238.182.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rotorstator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zd7DzEsP1QVMmbLShD3otgmkyro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cZJWxErEYEbspTrX9MYY+Q7SVoIx1Y6Tg4rYrjlkhFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.91.21.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zighimilan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zdKW2MOOqmqUJC/PAyk+DW7EoNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Mtjd15R9iNdBBpW3+HIc5nnC1afmgBDHmLsKf2TxaJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:13:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.55.235.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bulbasaur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zcZD5Z0E9jrf3g7ERzrHKNmni9s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0rJYvWWYBoe5Fq14OyWC5GrqRVR7ybDHi61B/UA2D9o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:13:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.241.140.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "2mpdhack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zbJgXSvSjaMcyRlW6LrRR7ffivk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AIwsxqmfkprsLT5dtVQutgBHgYVXSKTxIKwXjZhWwFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:20:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.61.235.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jonasBebe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "za66RY9hKXdmQ3UZNAdqUdhRw0g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jc8HvwoPAlqSS35dSQGl1mOzBKFl3UpkTxlrWmQi/x8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:47:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.203.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:4683::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "2fjsaf2ja4da" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zaLDNq2H4i3wKYOIej90shBw0C0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fBETQmz9KrsWT2GCEKBeqExgdPjJU688yNXBVjK/NmA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:51:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.145.46.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:42:78:c4f9:9fff:fefa:980c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YAVTR1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zZyJW6cf2US1CGHedv/xJnFwd3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F25TB2aH27tUQt21zwOLE+DowJX26gCSIdzln5TSy9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.156.24.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as204750exit01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zZNIaOgBhg8fPesWJh5MS5vH82o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EsP/BmfoyLZheQx9GwQ6tB5csqMOJ/Yy+h0eU4cKQMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T18:31:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.212.153.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:97c0:3d2::5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "khasan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zYCs5an7C/4CN71N7WaS0bu/R5M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TYCar2wUAnR3hZj92IcUXMZgzTcAGBrkw4AKilf3Iek" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:25:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.93.233.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7a60:1::a06]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uwu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zXka2T1HLVUYvnUS1Cho86Con0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cVkR8Iz/tjK+SFv08vrnMa7hLBCDXBDp9HJUPytn3Bc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:54:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.171.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:6c79::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TRFIAntti" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zW6MVIcE9M5UTNcTZdRvEQUY++0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p4yo5bSvCEzRg1Bzdy5IdhyopmPSqUqEcfscs2i7paY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:54:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.140.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:49b::159]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mars" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zWiQRNDmX1LZahrLm20PJMAy4a4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bw2xCJ/ViQNK9i6aMwToTQbLqd8LZReZ+Io3aZMOwx4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:02:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.52.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "porree" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zWhfYc3a+S6hlE3IrNzS4qp6isI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B00yJKlO+EYAmSD1A6hiaqcyyzoipidvDHqxA9ntHBU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::8]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "riceahap" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zWP/3/Tx36uaBYwFWs1ckMNKboU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7HLk7xTmfSAElGkV2HhIZ0cOQPHx5rnuOFoyWD+LteA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.144.183.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "execs1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zWI2MPw/+NiqkrT71gq+FZpITBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lgZPr9o6YOe4oOM/dTr0YkBO1Zsu+mAVDKq1eZsK9CE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:30:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AllieRoscoe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zVzxJf7Uvl2l8ln3WvPU3RgsVNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vaZqmuVTCoJaLBge8zFXv3973HSbyxq7dFZqYsnufWs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.12.203.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JAJTorBits" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zVokLX8JXTCPSM6Ac17k1L5VqvE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HHXvPf6IupRX9sqSt5wVrYMvp5+69TaMaJ3db175xzw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.117.132.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 543 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange003ru2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zVMWp1VUwtrbh+82JOldhIwwnOg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G2x4mZBEmE3rs7++QbsSTh9LSpwIthyGnCgRdNAYT+Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:04:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.22.172.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1838:36:29::9201]:9201" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "normaray" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zTnCWCZbJeqkq6T9yy35gQTKo2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qjcpeHgJmJxLJRuguXrTDwZD4nrnGSNshDVplcKozEk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:22:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.200.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=88000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zS3VK4oK8MISzNNAJQdAK1hwO30" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fpHJ/v9LRvkqrvnMC0jKPhRAdaYy7pRD7hvzKhBcsRc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:57:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "order66" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zSScwTtq3TQm1gO57VtR/HG41yg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tSPx71dbPUgJce27Xeue79uOtlkw/UpvUxPOqjKct5g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.86.148.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:1619::ba45:e7f2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arecoque1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zR/SwfMwoyk9pgaOaiOGbQY9bcs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nt+lfJ2JLBsYLcEsHS4JFcNF5Hy26hmVjQwFY8jkOnA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.67.167.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:e701:1198::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=76000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hamburgoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zRkuFSFQX5Aqwx0X+p030DJ1vGo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j3B5Gq8JjtwWmYIjeGLefsoe81e6oAz9bE7X1ay8H4A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.48.46.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "geheimkaisx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zRC1KsyKCtfRtMQLhJdxvR0N/0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HJQV9bTbZ74XsvBpYQnFrq5UacPR9R315GnZ6wDiQZk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:26:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.51.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayoneltab" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zQnNfH+IFbNyEMfRpihZnHjSLW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2bnxTli/+VEm/GewlJfJNJKgq+abIgqUEKDNDh+3LVU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:7::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lazonedemerveille" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zO9lIsxWijTYXcygY958YYzl7Pc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uuu/LyzBG2CmJyufzSe+iA2buJjcD99mpNJVG4hgu24" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.35.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zO8Lvaj1LC5g40vBUM2Otx9b2o0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KmYqcLH70yX2D5zbggjpg/vhwa30DUxR8npoVXIcTf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.98.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "funkomaro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zOCeqOJ8re+2aW2n1UlhlTTfiZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EcszOIcRy6n5997QYdSoJMh3UK2aWVXr8HLB3qFWc2A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:13:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.50.212.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:7d0:4dc0:7511:d01f:7eff:fe6e:408a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zM/Y1f0hrHliNNkU8bfMM63OUvg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Za6XR+DWDe7VBkP41d8hO85Bc1HByvXGJLPjmV6lJXY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:55:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheGauss" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zMtysWrbtOx9vzcD/j7c3tPKOrA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8kWqSzCljvOcOGT2wdbsbdAiXavP/gZJbecxzDB/Zbg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.41.144.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9049 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zL6x24jSCYuqMAbwrOxhlRkoKh0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gC0LFQ2u4wXvhN70LVUNy2C0PM44Fv4Mh00di5EUFr0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.52.236.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "guthard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zKpiDVyrNM6V/jyGPZ5lIMB0Udg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Id8E0a4h3WlpuuQ1Syu8MZC7pyK4sI8QP/gV4sD4j3o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:39:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.118.242.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zKmXONZOz44tR4+rqdOO2ua13P0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HkRQxv8IhDmw0BpzI+qoYJiQSMrjtCzSAnvTtj/dtZ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:54:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.107.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SVRelayAMS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zKU3FOpcfOVR1Q+W5+GlMHEiWoM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DRDxUFfQE8n/OA8OANAm6OBZdoTRWVqCzgEOlhSAY/0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:33:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.23.90.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenInsanity" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zKIlCbhnQZwQIlQ4aIwY5y5zdYY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "46yo7FXHoO1NYpjvgRgbBAfo3TQG9DrRViij1czbZLU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:35:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.148.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 995 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:2dd2:2000::a]:995" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WeAreThePlague" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zJ8SemQx3WQiZKPMOGj5pxB6AZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kNZvXg/jgUGAGRCnuEsYhqJQaoE/+CNRwoWiuJGioDs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:31:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.135.89.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mikrogravitation02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zIshjtNhWCel3PAI/GJZje9TO08" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jJwEqNOd9Rbak4VxVQAmiC904Skg+0DcFFJ3BJ2ceFE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.14.233.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1580:1000::2dff:fe0e:e99f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IG11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zIcy5uNNjBqmGjt/6V3dcbzpyIA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QpNPyQw/jWvo0GCQ2f2kNweY4YHLKSZo5gZtWP0g67Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:24:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:4000::eb]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zIQSoM4xxVz78yy6jqXAU0iEbD8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1wcIzQJ4B1XIsHxK+OWNPlw7+WyVqSeWr5hvp0wQpmg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.192.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "w000000h000003" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zIAcfjyzgXg6vIETpz/9gvAis40" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yoeyJ1j8HyvKKnbUM9xsS/TUJ9JvpNyAHmTqYG/Ybec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:24:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.170.37.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c70:2017:1::169]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sutsuj" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zHAfzobWr5X8PVtxZF00MHlJEME" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Px2Vj1Bgg+O8mcBZLyADuGais7UbU9wnJQYmMt8xeoA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:39:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.183.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Camaro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zG4emTJQ5Go4qc8gkGZud4isTvg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jRm5l7IJMtx0hOqYQjKAc9pTQeqmjA1Vu2KcHNbR/NU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:04:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.139.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zEo66WDjYX9Jv5iHt5GGwUy6aBM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tq7HjlZ06QxPpv1aieZJJus+NEsaCtAJzM0DzodLQDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::115]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zEnAgW+KhS8dJNDUUR8jerNe1+k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PpEVZJ95DM/KXzbwD7ie0MFgMyqMFZESD5nUqQgysOo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:15:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.41.142.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:25aa:1:9000::1584]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dustrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zEQcp+u3f337t++3fHi7Nxrzomw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IjJnOj3wsIWweHmJCwkhV5U1DR9OGsh6nM0paIPm19Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "123.208.202.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=590" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zEF7MT6AhyiwGdgkRwfR3eBNmCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LsocjAiu1Qt71d4Y3XA6X+SX2psIMj0jHDFfSekKcRs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.217.0.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49834 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "taxburrow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zDET5tUNLMehyslGJN0tbAAh9W8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CrhltH3B+Knlxp6TmcV+GlQMIL70dxqJ8ix9RYYCzTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:13:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.193.52.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PapaJohns" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zC95MsmfmHijTu4BqQibTqw2yPs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TvwPfkT20r9dJeASaHc7G0EphzVRPlRLDfHauxp7QfM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.254.118.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange019de" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zCF5qX1OxVv6VrJ/IwDFMWLOu24" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JZXrcuy/w3AKebLOAVm3/+ViO4TxM4dw+KtkFPq7ne0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:54:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.226.71.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex38" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zBTJfx0j7pd2aCj8jthYLiHhFmU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a0Q2zO/i1ZWUKKo7EmdKFTmuTk71A22gIoRKX3nP0ns" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e657]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maulwurf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zBHP9FPq9UtPtQwCq2mlFAkj9q0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aRdYo/PvfVvylLUXqQKCvRSHrrUo4p7AZO8nkL/i+fo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:54:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::68]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zBANwBeiXiRMNclku1GOQwhBWsw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l9EjkbmqpIrJ6XqMic9YEY4ZJci8gGTre/l9PLKZKuY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.195.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fedc:ac35]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zA7R07/H1ojzPZZ/uoIEWq4nkM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lkOT9o12GFZEEA5JW1DdbogLZcjOuY01psQ2jq6GGZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:13:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::4]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Grexit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zAqJIX6ZmmR40DWBFskmYl+E6+Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "joyqBh0l05Xgo8Wk5rjRQt6XrXeBVUkgziR21LYjE1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.4.132.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenStar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "zAnfsBYIGtUGhtrJZEC7LW80MlE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f8qgPyirrTkKOvt2SuKhGmvnGiytgWsK3UqYqmWq4ZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.148.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:2dd2:1000::a]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y/75DnowTpUVoETGHEEXzZdmBQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L8yfyZz8sMMsdq5HR5h2gH1qsgVShBvrm6OUw7bzEZg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:23:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.30.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Charybdis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y/Wexbn9EICSrpFJ79rkH4gtpmk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PA2m5epzjfbKdK4cZ6jUz7Y4l3f6JPL874pXom7d6Eg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:52:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.205.129.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nope" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y/OICZzO6eZ//dP/qxGPKh2Ajzs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q7x0J3/ktVXM4rt+zKNDlz57L4vBid6Dor4wxp6TRYk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.98.231.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayonlaogzed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y/DM2dgNei+C5Pthw2+2iYpOulA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "83Qqv23GtvWydyeJlPoSxIVYqn1q7aXql2UFrTjQ6mQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:19:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:6::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bad102" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y+E/740uoxxSYXfsJd9522hNVSw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bxOAhXCZj5htojmOPMvgtxp2llNazoRnia+EDy/bVR4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:55:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.68.52.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:2:d0::2105:1001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "reRelayJI" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y9/66ZXwW835b2VNdCfVr3CHSA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rte3zpD0K6c61ZUcdk0jrJQonOYmqX07cGTN/uXJ3U4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:40:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.220.7.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bananator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y9xW01RSnRzZaIJ1DQsqNEitBBo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VRdfbH6/fvRUzVXzz3Fq513QKjcJO0moQEeEjzCM92E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:49:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.172.215.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=97" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nightie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y9tM1y6oCBGdNyP3zaRK6taD/No" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Wzev+ITqIn7EWMu/ObvndNMih+X9Tj71LF4FS4vd6E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:54:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.141.156.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PacketPusher" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y9AJWKO4l3dOMz11wk5qdfUiDcw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YgkKoL6BJ30tWZ7DeYkxHrp4vX38uvC0drl02NV2S5s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:14:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.165.240.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RaspPi500b2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y82cS4aZG3tC0MIht5ZBl0r9+rc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XmqsmHa2CaayNA0RaY8irL2+qYyU/QYxtAMxJKMK6n8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.209.59.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y8yF8zXiBwX3kc/IaFlRyQ4kE00" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hMcwIWCkBC4KD6YPWCUUxLq2fKdUnP/wd8Y1pWBiTLc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:23:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.56.83.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:e80:3000:1:bad:babe:ca11:911]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y8gmKqushKrrklTD/Dh38Mli888" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IDTp9aO/fQVtA93hTH5j+ZJzv0awtJG6RMT7su4aC7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:03:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.188.203.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3128 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GrmmlNott" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y7pA99nyhPR6JD7iwIHpZoJ0HSI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5pjMihDxGhzIAB808EBbIGdEfWOIxdU50Bbz1AfgjcA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.39.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:150:508a:a62c:457:6b0c:a1f9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YouSuck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y7TujOgx1lM9UeoeiNoKV1zUhgM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BMWaVr6BNz2DUKxcQ8KqgmPgszhDHBzOzA1G0X4fXe4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "101.100.141.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "teutates2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y6ZTuGeM9773wsG83KCAfNRJqKs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9VqzBPWW7rCO22sXw/Avb2bC7ZXyFhs09hloqAoIN68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.190.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y56slFgyzsjTbMF4nJ0xXaji7+8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B7Qfc3VARF3VLHiIoWXsZ/7Bvbc+aQhq6TtRppKdbIU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.26.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c04::f03c:92ff:fe8f:4c25]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pinkiepiie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y5wsrClyIPxneANfnxRybQLRElA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "llYxC2219DSB8bnkNb158ILptaQ6l86r7GTn1zrTJH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.182.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y4+fP9aolHujxb/dFNe74KzOP9E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QYmaClw9QN50WW/T+R7WyPqYKrQzsXzO5Ip28OVLNGg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:40:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::82]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "presidents2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y4L+xBVq4GEmDEQkzxk3u/7TTW8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p4AUMTL+x3ukPbuG3hRp6k0Sv1j02pnCadI8VpKmzOE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:08:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ss23voyager" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y4G8/UT8FCYWu1mDZIvYrwGTB4k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8YKMoied6QbUXZbhH/krAZwTwmJc6rv56I3FZyj5WIQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "114.23.164.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noconname" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y32xMXLhXUrX+UBGZwId999umko" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r9TOYgYsNIFAXI9pOZgWEl9XmxwVZWLb37I4oQ/cgIE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.213.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN25" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y3wNhB/jdu9D94Rf8gGwKQwKI54" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nqjq9A51Rh8t8tylt/5thRjE/KEILgi8MPwgsoK4zLs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:40:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e64e]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trash3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y3QBlNZgZNimbLBxvggHleP/pxY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nkt1/7MOREBJBFbf/XG+0/JuTu/BmfaRxYUzw8x2xRM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.48.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who9USicebeer19" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y3Hd5wqeydxrSK0Nb1/TKsZsytQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dxp1BmWy34DXf42TTP2nqwMYePuzdonkcQUMV3XURkQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:07:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.150.32.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8116 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Yuuri" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y3EO5/PuMXpe8BRKfutbnbBqIKw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7MGAi80IkfVhipHEQR17Facpj81w0if6GEmEn0Dzxx0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:06:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.102.157.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y28Huz2Boy7yVp/E4FEeNr8kwDQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BWPccMR+5vONjMwSXR5jvUSGwCEWRxRh8zwtk+6A7WA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::140]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=78000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jehovax" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y0qgefnpBh1UHlqu2w6VKjiO7UU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3ETuI701jQ8YMYye7QfUbA1gBhdKZ3gj5lJA0Lme7TI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:05:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.72.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flokinet3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "y0J3Lj6PNov1EciQ4AUajfKoTD8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FMc2GyDMb2KndWNojCfmyBUdmbjgY90vrEMaTFlS9YY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:10:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.228.129.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:1:1a::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CrashMe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yzudmTKlHyouEg6uC1+UCe43HoA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kd4EnflVqNy3m3u5tyEgI4XW1uNdbCMboUQelcAONTo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.252.140.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Krelln2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yzCQ9vWTdvBU7s/wZyqy1Yv8unc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4GClSlrEc3b7B0qKB9dbZNZ1dNBuHf2aAp3uPsvWFA4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:34:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.203.66.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:800:10::81d:3001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay26at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yy7I2AYkym3VCS4aeU3qSIqBtQo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AeW+IX6uucLjtoAUosD5DUVt7/5r4BCFgHw5GIS6YDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yyiSXaYQaaQ1hAMNJhBHHx/9QQA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aUgms+/3mmBFs4JlN+HqbwqQGE7z6Ke01ruKtpYI1W8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:31:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.171.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:129::4938]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leonidasI" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yyACNwkSn8OjE/t/NWjWVk3Ts0A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zQV46JMtfz0BeOJcBu1d5PbmxM68SkBpABj6W3/cfdE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:39:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.138.41.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "esojcmlin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yw4pIOykr2S5q9fjRuonUvu4Y2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xk4uzR0xoY3c1Gau0YRF+ajFFjfsHMChK+my8Ha0zwU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:08:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.116.35.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:92ff:fed1:4cc7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay0001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ywQIRsZH8zjuGVDGzAMmcQIIjFA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xMPwT/ekJWuA2QmsGKuRSYzhN8UI5vQe6iVCJkX2+y4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:14:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "153.126.128.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2401:2500:102:3000:153:126:128:94]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Benis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yvv2NlI2OgSVFSw85HpJHns1tKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kx5iUmIjXXheDei6FBtCuagrLKc6dmyWKItGUCeJA2I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:48:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.118.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maschinenraum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yuimS3n2HljZuKn69bLkijIbKpM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JXdHKBCE36+n5V63/JmP4aKFUhkTc9LZzYn7Pe8yCD0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:53:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.135.68.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "beroal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ysWQO6dL61hd2UfrZXsZWOJfbMM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OG4CrEZAcCtcirGNC0eDfvPJq+bLOtTepXgovo8cd+U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:30:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.162.141.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yqrgVaGnfSNg+FG5Y1fZxth5z4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HKUBJp806S0uxdwhBGfdtgjfxJkjgNkS6ogNFQvt3zw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:48:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.244.207.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:800:b29:116e::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt27791" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ypka1IsEaAh4D6B4Z8SII2U5FjI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aN55/YzNxfRp4C1KPnZIZZXuqQPfquxSE3+tgchYzKo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AS62788" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yphs7gkJC1ObyApXxb2Jt3AnsZ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mRoR1BvsBfBPnkp/xWOhvIX73O/2vk3wTya0OTNGkp0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:33:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.219.136.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fd23:1:0:acd9:f8ff:fe5e:d77]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "renewablefreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ypRwQhcmDnSD2ohxnKzXqUxWTVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OgDWPAO4l8tIHYGR/jxIWOd0OYPySBEHyoLT5/oHW5M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:37:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yn9HDGNEJRSgvUVQpRgJndc/62g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yKaU7y3WT93Cnj9OlFocXPmqO98pGVJdO+fq+XJRS1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "27.133.153.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "taskbar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ynvdHOubb7O52LL/uarH3ObsYdY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DTtiBS7A9+QIt+5mSZIU9fnn0xzSzR9VxUGJeZmayDw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.217.255.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hkff1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yna37QSvIdGvOLhsd9U5pMA0zxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L8rSV2ps8wJenhQrMzMlmsoKSBIolWZfIx2iJc5Gq9I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:05:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.62.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "foxican" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ynaaTEGfu+r32NMN03Ohjefj2Ic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OpcUPNW73yd+K1y1G7b/FBD1JFapTepiufOdQ5rU6io" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:44:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.171.137.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yvrPi3relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ylnRLOiyOeTmINwtoC7f2r4F4FA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ato1V+NX7mszXDg5TgBt8RY16VK2POAwftF3NJG+vzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:34:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.216.25.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:569:5197:1800:45a0:7316:2b70:2ca1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NYCMesh1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ylLkI+y/fQe7jhE5o5tNhmjP4qQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c8bLb50lYXOGhyMwG5bPwgiCyYOIebuKe4/W1zbpPA8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:35:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.170.132.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "webthegreenmileplum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yk24Jl8UqT2KjViOw86FG45ySCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1/5vJaLUF5G7Um3GCqvH55Bj48LGMxy3JnVRS137aKw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:09:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.39.106.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "clanofxymox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ykkH/i62902HuFpSjpeF9fSn6GE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XNXm1v6dyZZH2AwrNYcHEo74cTXseW1zAvNNmK4dpLA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:53:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.119.119.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:14:164::2]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sillyhydrant" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ykcMvxsHn6yiWmI52VnLy0yomos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L6LKymTvz6DDBiSGHA1UwXfXViylSlCOwaj/gHhigGg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:21:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.31.215.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ykX1S9XCFY7i5kyUM1he3ISw4UI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wp8izanGc3Vn2yPHZO7Gb4XdNoBc6PbiQZUbUaS/t/g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.172.193.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:730::2110]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedMKUltra" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yi64pdxL2KDIfkwwBU54IuU9PiA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v/3TbaroFSTClyj1frbHxJx/TMMDhYShfP1Xyx1K1Mk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:32:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "beckett" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yhiy82tR30leEwqZouAYwqwI79k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GV0qvBWdrsd5YkDO08GRR9Ky5cRLuJ76X5yTap1vByY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.9.171.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "D4rkKn1gh7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yhaEUWt/7PPbdtQ/0C9W2Lleimk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UUuxu15pcgrI++jH4fZztpf4PLITd0i4fkQQywFneW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:18:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.132.157.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:261:2ced::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=78000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pbx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yg9ZFvIUd+rTblP9ej0O6l/aL6Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4rgc/b2EdR0U5pl/mW2XxgrTbezWE/tWkmg2NC/RlFg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.116.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:43::f2d7:40df]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jetplume36" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ygrwqwPddeg/yTRFZpiWQuPV5DM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J78M2II0iy5IS2HysuXrdurj8QAwIc693S2RfKjFswE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.88.74.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "d0m" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ygrJGTtWZYGOpTIreUiaohlRxlg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nDSaUXXEBZshGCzjt9q0plqGEBgIpUhL/RVbrgvaS8w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.148.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8843 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8873 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:6010:215:208:a2ff:fe0c:6c04]:8843" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lantern" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yeLqwXWgFANVxkclrR5gBOcHLz4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3CsPL8h04optWgyV2pHkVwAGteYvJhCaLv8sAfRKq3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:17:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.170.204.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CamusprOTon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ydn6fsBW1izJZx9IBPIqCSahGHM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RO4XmN4DHqLrTW+KZW06fFcKhqodUAKd3iBa11wN9fc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.228.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "8af34cb1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ydArFkS9R8E243n9+vSXPRoc4Hw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M51T2CNbDadUQvtJq4yx4YSi2j3gBa4wob5Y4cuTHXg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:51:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.111.26.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "remember300baud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ycHRGkDW9CwZQsrO1s964nAGWkw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vBpytwTN1IsiQhrgcd5TmtIMLgJhQ7xkAkWw3wE+c+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:52:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.83.91.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fit4research" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ybdauOYVecfD0B2ZztVq5U6TPLs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/JYHWY8JCmL+QuWCM3OaaPS4etFnJ/mBhU0P8xVrGp4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:17:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "150.43.248.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sybaze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ybaMgCyiDD5PpG13FT1u3IDxPPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IToEuAtzsJaDeLPL12XymKW+haNT3Kowi8xBmG5Ovnc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:25:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.243.0.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:41:216:3eff:feb3:28bd]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Charles" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ybNKvyww2la9AGt7QmEAmAcr70w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3eJylEZrmQpi5Tj0mfft+ZuQwmOetV5103/ajiukhRM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.93.77.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CedarHill" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ybFrXTf1McjGwCgeTsTwVuhFQdA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RfIiNXGjSwmIocF/1BCpJAeht7oMRrBFWBWM0XTEdGU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.27.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:91ff:feb7:9351]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "a123" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yZp8/rHMvLIOZBInLMhsk7YeKiE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZeogzYOGRvBR92KIK3nGKXF4heurcrJ4w7dJDSAsHAE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.145.139.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 30002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yY6jm64sax6kRA8UOdd0RIQ16rQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CBif5NLnKhbnc6YkUTLYf+FXyGg2AZ/iPy8EbxtTt3A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:56:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.196.71.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 41899 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:e:49e::1]:41899" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BrightestNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yW1q7XluG5V4m3Ux+ISKyOxhbDw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bq2Y1jMH/UO6mAqcrvdDwR68BkhA+TSUR6UJtt0vWQY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.79.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9009 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yWLYZa5ytvLvCOd/OxWJS5U5wrY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M6knfPir9iVQdeQpAIfbcZA3ExHm4t0STRg7eyk8mW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::2]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay41at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yVJYcuOqkmQC2JmAhaQJx7vfrlk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kks0OkZiJt0legKLXegqJw6w+Vg+tWdoYntVNa9MWWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hamster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yUNDMCtjGhOm9RDpZISWCUiOw5Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Sbmlwp1CJQlWrvDGjPVtgE5J/Ej/HPYohlFKn1p3rRA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:03:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::72]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FileDitchExit2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yS3pIcNKyxwbTqfSwez0oKzSygA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KEUOkw7Ux6ZuekF7UXFtJWyKu+864yT1OItHWvFwK2k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:21:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.134.225.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ySpV4tTG/vVofzl4Cf5WvK5Kwjk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YAH7CHddZMp1TLtaZBZ/yn637UPZk9rDZa5k5VOVxuM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:38:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.147.109.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BantuRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ySeLYCAl+uQ5u1VLxOEYTP8aKr8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a80Gj2LQi36nQtinKG7y11pqBf9AlITxuzfJo2L5nVg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:59:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.251.87.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cowcat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yQyjt/4BoUa4Jo1Wl33EosAkueo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yKGdhSG0lyus1M8dGuy0tEsnQNnwbHYK3vbXRtUAK4c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.160.102.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:132:300c:c01d::5]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yQV8HFofdQzVKw/Eo7ti0Tmvmuw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UmNwKir9BeVxbf5fHRqGOjhpJMDziEctn4pI5NvqhEc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.36.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:221:300e::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Iceman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yQVtMLz5FmW4KPN6hdwSfKxjI7g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cfVndLuiwT3jp0vWt38cxFYrypNbA4DxPVMjdcYx5x0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:22:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.184.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AAAAAAAAA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yPSkdTbadXQZzuRF7UrVVuVr2Zk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iMiZvzKK5b2X+6srprAdkqJ1kZfqj72oM3KYB/x16gE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.124.228.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange003ru" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yPQC/fieW1HYYq1o2MF9+lo3G6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UWDQ/sksaWFrsXybKFFkU/gPQ0KbWwRwISK7F7lD+yg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.22.172.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1838:36:29::9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pros1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yN4m0tEZvn9Qnmcu4aPV+yXcupc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yp8TGSgmTtENi7GAnUKYuVLHgUEVbJ0jzQjfSC6y8d4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "saucer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yNIH/gHSQfmshvKihRzcLmmY5Rw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4bSoMwWyNq+79il1maD0vFhu9Amg7KUifff1cwMiaVA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:07:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.250.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cressington" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yMO5oRgwMUwVOM8Zq8OrJljtaz0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QPDQD9JNUbdMg3q3uomfZcIuwUlYayeT/DkZ2LdlXyM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:13:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.10.8.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Rigel2020" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yL7z3wevOLaN0NqRsjsZ69LHZn8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "91CswAQpJjJnadGGn6xAaavz5fNti3PbfRzdfpraHJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:27:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.122.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipbb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yLcV+WFo1BTlgKmFY8H4Y3LT/iY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zmC6jN+1zxH9/k+Fy/QmbWjevLyFO2gu740mIiCGgV0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:28:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::241]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dustsandstorm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yLNPwxnjMBhZ/bvCOTNwgTAviY4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q4mr1908JDtsGjQUlkugRDq6EKjp7raLYWDbprEctuA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.157.177.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yLI+pUP61vgg5YQag4DcKMg66g8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "76cx9XrQ2CIRVlrg8fKUsbgivBsq4U6XwOkQXR1j4gE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:50:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.187.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:64f:5443:78ff:fe62:7ad8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mayforth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yLDHcBh08LWvzasLriMf4wPIIo0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y3UeV+Tm/67WetC+SXTPqbCYaD3FfO4O2kmksIA33cs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:37:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "43.252.37.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rucola" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yK4m1IGVBNAVetTF3n1aCn4ZDRA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P+Zi0VJvrPb+6x/003JZRW5NCEgMN+WFUX09uJE6+YI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:06:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "webhusoB2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yKtwRGg/gmGPrV1SG1XHeyn8ByI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wR9tJJoPx3Uj7Jeb+OaFrGXCpaSIps1TqypVBko5OhI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:14:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.42.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:66:fcf::]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yKny5CSxnkeatbnPYqbJprOsElE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lw/nKbqcZuyDBiAl1gU4ID73VuXVHHXBhbhWOrsrjZs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:51:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapNYC" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yJnyDcgAUDfIaw5EeFc4PZX8dCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ipE6b2SuybffGjKvO5u97AzmVEag6k3gLEs7CLyiRA0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:13:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.205.139.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:400:d0::237f:f001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hogman2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yJYdu5sePb0RxSeciyq3GAvezIU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9sA/O8Na2arwshYh6uOZT/JkjtRzRSyaU2HlI+x1Hvc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.204.116.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:13f0:8100:6:35c:4901:8a03:8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jabberwock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yIl4LhL3OOIvCEjvVZyealBBt64" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4GGu2MrW32YIjIvG55WzN4U3N2U11Xpk+ZF491FSCxw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "137.184.42.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:4:1d0::4f7:f000]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jstark1809nl002" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yITEmb369+fV5mZya8Ox8j0vH00" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "id/miQa7qnbVyNbqjH2jO7s6rsNEIdfKncLarPYOe+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:39:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.96.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:101:164::99]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "waphul227" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yHPZ2N88tqT5KwencZPxoTk2R38" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yPk8c0h5q8J3rqgh0BW4WqnKmt9Ql8GiOPiRToQAsI8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:10:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.132.178.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "newton" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yHHJFImIbV4ulME+oaX9xLbcUgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3SvDwWrZ2Fg6iz3mdIioBV7Ibc64zTAjH4jNSvir+pg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.211.120.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WdTor3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yHAJFqyhHGnpimmlOvEXpKvukQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6bhejdDn9NMHT7ptJNL/EJTHGFgf6LOLVVPoANuRR5s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:07:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.37.136.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xkcd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yG8PdLr5G/zeGAB3zZfDOdz2ryg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lFbSHOep/Zh4ND5NERhwDJl5AzqWX40FICxqOjPEZj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.223.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:201:1e6::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "charon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yGxTjvCiTgEDQvMNvKzCp+t8qDM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JWz+K/4Od8o3+2/QOnve86QnhSM1aYIRkXbb3EkgQuk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:23:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.249.8.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3004:1074::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra66" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yFswqDVugmQYy5ASVLdZX+FDBhk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p2IX/0xZpsIxk8nOyfQ3O4fG7x4GL1AQ1gweqD+Rm34" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.12.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "athenaharmony" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yE8kjTskZVzJbhezz0HguI0olH4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5IYr/jxbgG7Bq8L7SnhWdGGqJPIYIy8Weov6FgIxOsk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.147.65.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra74" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yDHP66JAfvSdkW9okPe5NnqotJo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1KisQ/eWJRxoB9aJM6K9m4SLEsnwhH5mVMjukyRGEFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:40:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.126.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yC9GE6Jvfihro9hc8ntgJ8Nf3yc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KyQwj5ZY18iSiv/ws/jk8o7k7BYebNuqWu6aYly7eVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yCmzxVfLZEpfq1mOjlcUmxFcSF0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NZsaXrbjV0ljVUZteIwJcs8NAvSh1lDHZWh5BG5rorw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.75.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:d4::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yB++tr+l0XzFcwMlwp+YrwDuzU4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qG+W4Mw3x6Lhu80DW2rCNxUActiUOI6ZgthlnDP50Jw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:24:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::141]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Moonbird" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "yA60txzotzssJXqmNHOab3ZVVhU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jf0BR/p48x0rdhdDJhZ2UtzTtFpDwjJvmG8RM5ia+Qg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:08:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.59.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MCdrKNe2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x/9gbVnH9r7KijQdPPEbQj84LV0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HOy5aPtgzZGQTNGMAlOHqKsbrxlCMsV8x3fEP0qVskE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:39:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.121.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OsamaBinError" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x+n4KiSlvwRiX65qT0sMWn9EG90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lejdaESR0jmdOqREAJ/cGeDSWTQ6HAjaAk/2bEaPEag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:38:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.140.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x+SmNnA4SfEvn4Q4/vomtp/fJBk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "12rG2yXJAujKCOsiAtzH+PJ7LF2Kv/dVStQolaO5pXg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:43:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.132.158.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3008:4592::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lptr01ORFzF4Zq" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x9Bm1nJvD+oDY5kSL5/eSWh4qT8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HfFCH6XQ3xnPVwQje/4tXCZx+iWKu0WF+mCrsiqaTok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:58:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.188.235.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "webhusoB1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x8cGaUfrLhbJlO/633uwal8eXiY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aM+mrcgrB5BMvbqHuaQDAZiPbaGbYr0+Sxpp4rkJn9M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:08:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.42.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:66:fcf::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedAssange" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x6grRi7+9EZRx5nL0wYh/g9Io+o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j86DRS8Ja2lB2ewtjA5V4eYmMq6WblygLQ0fZeURZdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:32:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stars2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x6RshmuWP8D1wOnc43XIadQPI+Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YNlnAVpD0oMoDsYEQoQYhYVU9//g56OvI5Cp013/fSc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.204.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x6AW4fhc991zkUrkD1W3GD0RuP0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KF9zFsJUXI+zbtZsTlLatmZeIUjlmdvokG4clFzscF0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::207]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x51P5uyGhhI5btZs3ednj470Zqk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8gAqqFt0GXFhORU91EpHVYYZZxOxvWJr/dCXZWXwqVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.57.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zeilentrafo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x5gg8rNIWyWdQIUWRitwDpkASHI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kSZ/QFAEeKLfIch12uW/cr+Gd8gKgMr41vBAE14Ge0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.199.214.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=720" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t0adwarri0r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x5RtmhkrvkTByKkmqLE1rEldZjY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qqo2kkxKjjXDPsQl/u4/89z1G3LBW16RVCdNz1YnT9o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:12:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.50.238.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xqw33ds" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x5AuOeQjz8SXEP3/HOELo0Zz0KA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gJMgiB+FSzNhS92pbHtORph6OqzAHDytKrg78xdJhbo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:06:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.109.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c04::f03c:91ff:fee0:ba5d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex46" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x4r/7uMg6g+GCWF2PmE/0vrIVfU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JLGIyYAprLfmRMp4bcMZ/AQpziWOuWVr49+8/m+Qnv8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:32:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e645]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RealityNews" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x4ZdWO7+lrkjM+PIvjwKqqAADu8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "URGwMTuCT/vPggf9cTMEE53HJ9iCN0huEEU60DtoIpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:05:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.77.182.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1b62::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "busywatchman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x4P7HMSq6NppSKzYoMBwTQrbpPw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KInkIqCf/gGnBnmLOojhtYcsMHTUAdgcmPpnImmG/0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.230.22.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MINJUS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x3jZJ2ahu04gand7FN3XJZ+x1zk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sFygM4RdE/88k7hWq3/HhCb5PF6LFRRDrj2JUX4v/9c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.118.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tembi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x3NfsDaQlO1jURMOgfPf7SXWf4s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AeYtDp9YP3zBzUgWxbYpyyB8RFMvVORBa9A/51iqzS0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:613:9872:48ff:fede:289d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "north" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x1jgNYfPHxeKx//T433MkdrHuYE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cuGvuxGIxQ7bLHgbgeh0WSQgQRzino4/ho9x5QEE2W4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.237.96.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x1Q2b0bf+uqAw5SxvO0uzVbvsJo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XyI+v+NgH1c88G4oDiXCfDS/rrai/JTDpquABto59pg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:24:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.90.161.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:8881::f05d:92ff:feb5:2932]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Midgard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "x0bxrEfyw0nkIJxeecJ+YDgJHjI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "avzZjf8S4r4vp6HWGHUdruUPC3v7N4VKv7OJNV5yuKM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:07:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9023 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xzljJd6QceWO71pC/Uh/gRF8/8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j0hyXWSzYku83ULUyVpyw/jJu5y+JM6rZ24daIhRJXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.88.200.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e3:ffff:45:88:200:0:95]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt98345" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xzENc1F5occpfmg0qjTAT2ylPU8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hunsDgYAaddXmMItMDG1xvLKOruQY3k13uaP6QfxwGQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:11:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xypQYd1esinN8Wutp0CUPuru/lE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SfRoW3I8TAVKTzg7tg7MzaKeAdyRppMlZ8aR+Z+UNmM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.37.102.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9901 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9930 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yrh3W" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xyog/TP7Kh5ohJVoFIjDcVpmy6M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MwVV3XMdYumzmhxConl26UshRpXbMuIndKALMIAjuIk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:36:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.103.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:108:a34f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xxeEOR8dolYlDAP3rL1IAdA0S7M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mS7w/SGqe47VXrfJFGy1BqqyClFSdUeZiSQnUraA6Mk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xxBvDGp88PWSy6/3x5vYEVOxtfU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k8CZJ2toAlPFJz4KIcSTbcY34tISki0euoUAdoulXTM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::207]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PhilosofRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xwJedc+JV3HEBpOhekRRxUKbx2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VMT2B8JOFi0aZ1jqpzrBFkS8w0WsNMP9g94MHAOHDM0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.147.115.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1142" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xv+ywXBZ4Tw3NllRWYMwzUkGWwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wjY9j0LH0JbmF3KHwLuhKQXpBWbHwKLNNtm6OoP4PB8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11142 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::142]:11142" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bobo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xvRgnTDBEOvhj1h1JAZYQe79sTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IYa1n2O96QY24yYaZYDqAHSytmeDGE+MWeoIO1C1HxA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:58:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.43.142.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LSRodentNinjaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xu8RXZlzF6MseErA+ZRK4Fgco34" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3UoAn8N80LvtacPb0UxKdhhj5WRg9bFuz1j6ozkU3o0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:44:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "52.47.91.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayongrankhul" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xu19N6o8yqWGsi4KMLOVpeWCRAo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zux3EZlGCr7W+K6+v7x/5vhfQK5+eObg1oyl/vD/fBg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:12::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=87000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yrl4tjdevde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xuzPKsE5ISQlJq6URGE90+dZXaI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1NsDg0sAcm6VQZUY4nkFGHsI1Nm5bzz/LGnQQdPZD10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:14:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.45.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange023gr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xuORDLrcptLX6TKrMaA47dam+3k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ml9TH7KFHYfrBPbUgJs3ca8Y/mlq/hh+neqN9Y/PAxo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:47:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.4.134.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c500:2:110::2d49]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torsten" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xuIzRenbUyW2KulWym6K5tq20b4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "18A44JcOAkdDgcjQIahEyXl/RZ64btd6IOc5Er2NZsE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.174.235.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xsLzOYNuKh7/ZLna/LAMGg1I1cc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/yPNC/t7CJEk745d7FH/TVZJ9M8Tk5SzBzZqgzoUKKc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.150.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0172" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xrR+Hw08dfNvoAz2Orq7mE3ROho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0hwn90ra6gVuTAcOM9U7ImGjL86ZoObTFYluEblkhLM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10172 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::172]:10172" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tesutochuu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xqx2J0A1VkmSvge20SCJmMZnorI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h/WyOPl2N1cbVwC6uFKh5X2WkpiZ1N7jEeGrYq1XYjA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:55:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "14.9.101.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8351 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[240b:13:65e0:900:8557:7d07:ef6:9efe]:8351" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "T0NY" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xqlavtlW2VsBQ18ja+ZtFyhY+XQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wgKWW9yOvSrPtkLk+DPudaTaK0n9cjdMbYnthg/BYdY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.15.141.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42069 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "enigma" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xqWLxf4KSV6eMiwjVhAeJ9sVLZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XnlqQMAO1ZghBHogYrFXSfzZE+0t1ckUoe31lQ6R3XQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.214.214.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notolok3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xpRpflrzl5Tfbs1+9qCzmXLYf2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2k96vnKXNqH37+WBybAlpTeoMxwvhgDM1ilCg9KUX3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:20:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.56.240.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipab" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xoiz75qwNU6yeUF0UZu57Z5kZ+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "08Si/2ibOdi7VBas4e0qsUkVn1ccrT21d26E3Ou2zSo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:51:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::240]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE66" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xneolA68/JrS3SRp4jCuB9xT7Iw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WedrMX6d5KEGwwdaJiwOoHILax9ODDTQEoeNe4L29ec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:107]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra33" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xnOv5c+cxJ5fhk8PgNX+KBSlIjM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C4LJlXkxiNe57ljEn0Y4eeY6AXPrff018emCMHNr3Lg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:04:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.75.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frxctxr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xnKVvtW8PmaVBZFZ4fBLJq1Oh9I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2xR2ThRu4zw0bBu00KYTVz39XhYNDEuE62v5yfvfdOg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:09:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.45.76.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:4002:600f::666:1337]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Northpole" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xl67PuXEitIKH6xjozZa8S3zRvo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vFG7d+f/YMNuLaj8IoWpxqew5Ot+TL+UkEucMe9K/LA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.195.223.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theseekingchild" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xl3kpzgLrKyUeFYZWdxZ3R/14bk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MiweFa3m8V1Gn01reH5i6nHa4+7+y4LivfhJ5HCNqhY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:53:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.102.46.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xluagOpcb6MiUeqvppHfbcn6reE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wauvN5g9PQbvVH95wCxwssOvAR7WivI0GFaLiS2Bvy4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.240.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:b1::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marcuse2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xla0Gu+0ChQZZ+v0nW5pYDybShE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aLtQs/eaIdd/PceSFNfGXXQWX0kXCnh2jyrn6vxgtqk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:35:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.20.55.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1b88:4::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privexrelayde1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xk60VTqjCNj7wxTXO0QXjkyxHDU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DkDETDX07s+6SRUfqP8WYEhY9FfN0Bn6LkIYlqvWakg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:42:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.183.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:211:cc::2]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xkgCs4tBqPIPiEkyhAQp1vYR3LM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nEXNI00geDFpaVdG7KIkGxq4ZuyAl/4mkCdM4MyDREU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:44:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::4]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "parabellvm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xkNLo7kyJcb+2qMmPYUvkU+2YaE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y/KSkDVR4l7FVtx5vgRQxvjIYeY+WhI4IokR4t+f35Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.223.217.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:2:d0::13d8:4001]:8001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lapras" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xjnfizjqLhrS9VDyYeW4AyzRRIA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lj9toc2criTpTgXIBqIqwxZ9zsWbWEzLkagDHLr3ock" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.127.92.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xjLHdLbYRgAj9mSMX1/rePYMwhw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3q92cnxFZQlVbjXH1oYJacn8f9Isl4Pgr4ElqAfCP5Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::18]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xiP5eFjdwg3IAJgmDf3wU8YxMck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cf+Xq5jcd/VpWZSxV+kugbCw7IXzxmWYNtV8t3NbUmI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.49.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smallting24" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xh0b56Q0pXxgpnuY/JClVR395vg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NmIPpa3Rxnky6AjXQ85ULxqbODz/Jcg1PBjNAlVkNhE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:59:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.103.110.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sam" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xhlBEtvtjHmBrVxQXLJD0bqJUL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "84Uhcyh3TYQ78Lx5mkVNMNq+H3Aih1sTnjQwdwPqoyU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.188.85.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FCKPTN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xgHfqzMG7w9+3zlvt3IGF1L3b4g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hVMiat4z5k07Dy9+46omAEZIXXahoWBDQenCCMCEdks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:22:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.136.151.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AlliumCepa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xfIU9/nMvwkyTJqgMnYBUCQ6GWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wNgp4e/hDqQRjCAu5p42YCfLsAmKlWSJ9Ri4KKueNFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.178.82.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HjelmEnterprises01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xfBZGha9aOuIFw2SGw4zHxgOYks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xE0YhpSgqK1gOHqfSp52Zb30kXKXP+Are4OK/WhVhu0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:15:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.121.108.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vigilance" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xfA+enmMojfnvdRAkb7+NfL1muE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p9tDV7qiIAdFAmJHWQ0F8vISKd8SXsFabRzetMqM5NA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.197.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BridgeMcBoatee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xewjsFjSdfjUjKFycninnifpzPg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2NO9POtdZz9FusL9TlQBw5LhA7Ru2n72eymSWP+tycI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.132.171.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7349 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:9d01::1]:7349" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=89000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xeunJOLRkhTp1ipHz0w/stuUYZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1CiP3Z74q+BjPA7mbSJ7IGof2cnvhqjM/pDnP/D3NGA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:40:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.230.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anoncicada" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xeoyctnrnZjnT0U4XdVSpHsGRvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DZHlZPUGuzLRCSGggf2t1DdGC6e+IVEMkfiykpF/scs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.79.71.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3304 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TreeFiddy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xeQg+vBWgO5ZBUKuchbHdgL+aNw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2wbOpmRIkXlUMShr/3FTIT01kEvrKY6WUekiGJMNHrI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:44:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.223.229.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pudzian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xeD/aE+kN7kF9TruRXSdqxho1dE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wwbmvG4fjWqtNU60Y0/bt8JUriGhRT6VUGrAI/gctS0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:46:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.24.163.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "venusisland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xd+guEq7AZA5IzzUo8f7kGJ+Y6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P2gSosogGsFwHl87KVpNhsx8Q8HLPy43zHnoa+bcOwU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:41:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.242.236.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smortRley" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xd+Vq6Ypn5n1ApktRv6aZNqxjKo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tVEnvasEPunkcit3aVzNuJmhLWKGWrmocKwj8J4v4Ok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.130.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:2e69::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aggie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xdXmNdEVySHAYJKf2+oI8hQokZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "To2wiPntWBJPuV1BC2my18LsAfK+cMrzxO1gELdtqa4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:03:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.170.219.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:1:20::24a0:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ohsally" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xdVdEfJsUqa/7o3SPCUFSKpn6aw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ALtEfEqZGyeHU7S0BhPqdB0MqUCbpY0iNImfDdO4X9w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:01:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.100.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stoychev" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xb8nVg5LAHNl+6ltMvnnRhQhjI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "91jDkKPEOCWsiTC+x1pk+OCnuwZDWkXTsZw0QxkmoWo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:23:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.238.167.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedelkiste23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xbj7wCN/SgTyBVEo8lff9unBRbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "agy7FNneA+QYSd3lf/IpHEuCs7xCJ3LPYOfUo5KHi0E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:16:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.128.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:237::10cc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leshy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xbYi5SZUtXCt/WVqxht0zIS77pU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vZI2cZfLroYF1HYnMCU+KvNdv/ZIk5/RJ1NeL2D/AdQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:39:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.12.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c0c:75d8::1]:9101" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xbBF1vyn1sSc5TOXWQzbw3OXj8I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nh/4QjHfeBnYqjkePNRTuMCuj8QtqAatH+8b7MWz9hQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:44:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::219]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jivin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xab+5bw74Z9bnrCGypXa05PYpPY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m375qp0pi3FK8blnFBzkgtkiYOnNdzCRPs3aTkLpMlk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.28.52.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:df7:7400:c10d:216:3eff:fe79:59d8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex17" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xaU7zBdO+P0NyyI+Sqkp+lV97bI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lHaIzSe+fnUFqDafjVgM7whTLqmDqv2l8d64utHIzvA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::107]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ibibUNC1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xZ4HlDc0DjrRTmeFwKkaW28yhWY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rvqPaojpuY2+oBaoABiqlUxqqk2ZMC7K9GXlEqbxbjo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:06:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.85.191.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xZDzZkRWXrAM8ZZi/BE90WYMfoI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "czGTvZ0tygZ9n8ABXvDreKzR8I0tfDuK4ffdyWlO5Ug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::bc5c:57ff:fed7:5ad3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gopherHeaven" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xZCc8RfF/nidkmy3IeHBXA9ssyA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sM8Y/wViAv/Pmu/liFZiaFMfHcmcMTwIv1lh01C6nC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.212.229.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xW+RAiLSwfrZ+noVyptAP6ASj5o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mLrAXJa0dBp52C/r21CPCxp1nb5CmRCfXdmgrVT4rEk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.141.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:a0:1421:eaff:fe45:fa99]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whocares" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xW6Y6TTtte76kyLV1IGOCTJfeoA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IMy84ZSfecvyd2X6Jgmk7H8ddBIbu1vTvhmc8p30ji4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.205.17.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra56" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xVCfzO9yrIKDgod+zpMBGcX61iU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P8y9lYerQZjGwG5HftPyWkLcrnkuWazsONbPZj8VwuE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:35:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DefCon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xU6B6wR9fsHgWwrG5yO+G/XK9SA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bur2TAGtmCfLWzrFbG6NIQjw0LTpR9GUpEc+vDpT+Ew" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:22:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.61.79.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fedoriansRelayTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xUq388yrAbr2Gm9zN64fYNi7lA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hsnIbMqdPywiGZlRJ+qiW7RFv7zzCDb7hzbMaa7uhUg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:25:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.195.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:8:61b:85e:b6ff:fefa:8752]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "literalchaos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xUpbCgxeLv9Lmxylyin/qVRbYm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z5w/FT22hDnzkURjbRehMQxIOP1adAjRh52TwuzmoAI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.193.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:58:9d2:88f:58ff:feca:3aaf]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xUaHNLVrWAaqB27GHNAIIlNMJLA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xjkv1hC8ssmKf8tlr5PrulIucMB6A1Gfle4grHb7Slg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Dystopia3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xUOw+fXargpAPDubd+fiQOvDxf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uJ2x/NC947D65yvMol1RZbHgy4Nl+QEhk3tTMbZNO8s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:04:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.106.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:bf0a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xS96AmSufGUJdhZuoTmCUB7IEM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ATmvXSZqt5rltoHq4r9sGaPQaNltZaHjqAnVAq5rxYk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.165.213.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 52743 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 52345 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:2:a09c::1]:52743" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xSiyLUuiIGOfnc6GpQu5i90vz7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1erztvXzafHbnPF+w74V45gKTa334DVUgG6734xNX90" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bazinga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xRUDQevkLC386ZYxAFFLV3+jCmo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B6BUkb9kPVmmFaeXjrq4IzzN+t+T8PhUcoTvPCuands" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:39:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.19.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorStinkwuselBs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xQ9SnqH2PHS5l9pV9+w+JtpwrWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NDJCFxcMos6oyOre/9ZreySLqMDAdfSwOki/SMJcImI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:47:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.2.30.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xQz4XL4KMn4y7noAEWHEe7s4znY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cd0QuSX61F3mFUbu+8wcb1rd/CiqlpfbE+QOBwepsfI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.142.147.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra90" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xPfsmZfwSXl6+vWpQaGwlpM99/k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lyAcdClaDM5HzN2qdJH7GCYPFieBConeygfzowZVZDc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.171.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:125:171:0:100]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "keepthenetfree" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xONRBdUS8QRRYaYaUjItdwLeSbY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0pwBLnxN/gcaum8fWx4OBYWrotMmCpKJhssLj8SeZVk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:14:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.200.77.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xM5Uv3zzVUM/9unYAkAHD2W2uW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ni41RhUGwnRLAucYc18FDuQyFiaSkmsRZobMyYM0oVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10052 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::52]:10052" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xMUb6fCHCX4UVk4F2Q5WScrwm5g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a9LT2q85cZf6dO05yOMYWu/5thXvmBpITimKKZvGoH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:45:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:2::235]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "s0yb3an" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xMRiUG1U7cjvyOiOMvSuAUdVA1o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "27jqC74VYhPzw8ZQcejQb7cB3HDzCfCAYYiQjohACZs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:09:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.171.69.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10222 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lenin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xL2/0QSe4dT2l3xCSF+UzV+XupI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5m9s1iH0AUoxNjeuZ6TcROPdcL1Fi6dSiN1EgsGHIu4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:11:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.12.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:c5c::2]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FOD87" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xLhUNFgt8yqV1CyVUrudP9nw7eQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7TeyBR1cpE0yIDvT32tKiQhK0leEepiU1m3K3CJXZlM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.219.182.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ff36:2:666::666]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xKKXX+aEJrlCB0wFo8lpSVKxn3E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r3OxSW8TFDsayenHhyJf8OWamGfyYPDrs5FOWO2cEGU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::11]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange028usX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xJ4+NFkRcqU0Ch035bTj0LkeDxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PpOgtjA+4XYH+P9qSU6nM7h/YYB4fAXpxgSFsmuPxLs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:04:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.196.2.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OzV8Bogan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xJIH+9Uw+58wfGJvVb1QLaNiPqw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "39fH5yluHg7JyPkDNgmUmFMsCNNB3HmS/18UviLp0jU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:40:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "175.34.246.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KaaTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xG5nKZS1MZJzcUwrrgdBHLTvWh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/8OU2iZH6ZCvRcB/u/4mv5ddaRgi4cMzh0r+ILMyVno" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:56:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.197.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:5be:f320:5c7a:b8ff:fe7f:a026]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lamia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xGVI1EwMpYVcF1zib1gX04+DPJ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z+ApAeea3p65Z8WIyneUfJPWnzme3lrMpb+dgrD9lik" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:44:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.149.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:101:200::b63]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frozone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xF/lxBrMN+TqRof/xUp08SRzna8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gv0c22tOako9//hql/DFbfNRrDNzQnmnBOXm1eQBYdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:06:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.166.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:428c::2]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=95000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EiH9W" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xEYedRwpz0sJSx45FTynZtYnJEc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H/KXPXlEz++jNNvfahIdYHMIe40bN7tJEM066bZBSrs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:02:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.128.114.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv19" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xDFDs+rl+jZC8IKlKG2/9zQ3DJg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pl+imZZgWQ5hXveRvWPBLHlUSYKLSEBAANRd6Gfp/5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xDANPAO7QfX2K66Pxix4rA6Y0bw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3nfD+UkJoxT4wxHYxGQ9kzCqGABQj6Da755efKNywS0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:53:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.94.141.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "speedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xCpU7C0twjaUIu0c+5Hj0eH7Dxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mm6fK9nUJDQHJ4HvMOwfD5aOCSO0Mj17p4x7bN0XxGs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.211.91.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xAzgGM/rcGVHJxhEvuRxC106egw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SDtVbbHy4UByOO6/zBcgxyMBJQ30idBU2rmGtXrb8pU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.162.251.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1a:5dc:242e:cbff:fe4d:cb31]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HodlMonero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "xAoOee6+PdphH4qkfg++5S2M008" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XCxvcn+at0+D/QB3K86hMgh3NBwlF2E97dKMHhD01Vo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.236.231.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kul5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w/w3phlP3XBTGg5GzhmEQd+qmS0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "imgDhCQnh1He/qH60N6/kaeet27e53Jz9X5IhKhXZbw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.34.18.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryKenzie4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w/fz4eMqZLIrLwc058ejEvmT0QI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "smKadwnD0z3GHNKiLIxMgc/utms017r62PMRGVC+RS4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.136.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:3408::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "imherefortheparty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w9+3vUCwcuttRlePG+Ah/dnWBxM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O7ZW4X2DP4JSvElLMw6WrTNtBCUZfpkZUc68irywGUk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:51:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.55.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:10b:439b::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mangtor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w7vxQVHQ3b0+zdj7PyPO/JZ0P/w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e4hR0sVt/Vctghi8WJFNiqs1OJQ++kPsr7ODjGNbyeI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.229.65.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privexrelayfin1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w6ywSSpkTielSbw83zt6EpGG478" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7nu/GguHeXmimf4VJBMLE7NahALLLKPwmwOs5NygZnU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:20:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.3.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:3d4::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pataky" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w3+HwBJeJuas9UNm+iGYIJ6Far4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z4lVa7zSCcxOjXCflb9npbQPLoNCJ/YDhkGLu2W1rbs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:44:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.80.222.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2498:f000:0:216:3eff:fea7:a0bf]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cebollero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w3r3i/ieaXlRysbf1eNSs2/laqg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yx8OYkrypqc5IEquVYOTptg9Q1CXhV6ysTfD23Zfrfk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.213.5.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torfan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w3FPRBGKG9f8Vzlk7aqvU4th6ho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l263LrcvrvHNzQM2jA6NIGjk5kBhn656E8IZrI6swqQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.115.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev3c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w2x2mSGYMpwNjzTgHQkr8qzgtrA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "caUQQ9SKBcC0pcgv4w5fkuUSQTJYVc8dAhbY8sf4WMQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:39:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.122.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:239:1003:106:0:1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jorcanada" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w2Y5HmeinOlZoVGT0M8vntlPNXg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C/aSJP7ItUrahiQ5YFEu5Kyd4qx+hy30gCoV236negU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:17:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.197.207.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w2HpGtYxx0vxCNIStjDr75th20c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JLtHtlxx+KSYfmvLZTyXsGBjxOFRYRbr+s+dpdkrpEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.14.97.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:14:97:0:176]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "themerrythoughts" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w1yfo/xQG9wiqD/AUQJzOVHjhtA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jdQjCudZe2EqNHgD09V/JIxE1qKYp1I4z0mxBC+/uEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.126.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:5000::c0]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lachrymator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w1A3cPRl2m9Un2Blr/e4z79iwiI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fMkguHG3/VGae3/EM5VBYfJ6fKobakolDAhLmem6JQE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:16:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.79.166.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skibidibopmmdada" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w01qynzn9Uz+gzw3i62IcPWn+oA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SrLnlR9nVn6NQVIXJ+qh99Mu7bOL55U3WGZJscx8ovk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.97.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:ba1d::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheLightSpecter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "w0OKt0BoL0byIWcpkb71EArqFDg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HNHkdwFWN6xudfJl1vZ0CMb3xLZ4w5ziUI2q1kNd0iA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.70.80.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cir0X" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wzs229V21N4UFEPSgSJXXaFZ0bM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TN3Wysey4am6i3xZ45GqSU45FL87QJvxKtwdJ0uNVl8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:12:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.178.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mistersixt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wzJQ09E96rsD/tzu71HPCXfy0Eg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5wfweLT6a2Z5DOR2Yn/AfQEymHApWali2hd8QXGkH+w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:15:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.114.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:28:365::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RainbowBulls" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wy9LalCzVxtcs8fAEkIfcdzGL1A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7szfh0MIy3/xwRR7uYG4wvLXsc8jGy9yBP+bY88axgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:30:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.181.136.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isekairelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wy7lPaT90Rm9mMLK1VYMvQ3561U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4ePQ1xYKwdc9jWtxwHHuxpn8QjCXZ0Tmy9NryBKX2XI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:46:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.144.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FinkIT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wy563gHskO9wF3FyJUKWb2xYdVk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9KchFmK2xniDNqKLTXpJPDUQOvE9ou6YD1XAuOkbTtc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:27:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.246.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:43f6:7c00:7dc2:a993:e2ef:fea7]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wykF0Y8rChBLA5oQ7UHD0MC98Do" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kRUMGEC7qvZe5LzMfg06/SlzMQwwcIgPHMJNhQKoYgA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10136 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::36]:10136" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "itrickl02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wyd/vquUZnLUaOkKFrsCe0ysxTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t2mMGbi271Rsp6rEHanl6HK2oq/FHDRIF4i69GDuB1k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.204.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5b:65a:6403:7cff:fecb:38b0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t4cc0reTor6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wyY/S06SEnt80V6Pl0a0OCIzQko" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i511tBCRTo+VF1N9krUbHobr50HVMUVKrw17cKHJogE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:14:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.91.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:819::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DicedOnions" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wyM7F0epcPcEPwkECfWJOpBk7eE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2NYMrfbu5JLx2Wtwy0y6ZjP1NeH/RCKylk09oT19mic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.51.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:2417::69]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x766c6164" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wxQTwyPbK9VbQ3Gl1GiA2evS+oA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ws7nwTwDqVF6W8cdKiTEppwRVG8qHbGc6/owKHskiYo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:15:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.127.196.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9161 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wxLEhaflWV2RfhkluhXVUPtxpvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OPkHBAAKEVfkvR50g2eF0YAIV2nxesKQycL30gJ1dOc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.10.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wwMDj9zHKAWhYP9k6ZQzOkns2nE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QZzATD9vkAKiEAvJQnDy6IjUJOo4Vq5QfAvpml4GJ8I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:12:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.38.219.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:73f7::7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wwFHMnVoViCoiF4dfzA/RV0CZf4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yzCUQW10j6de9IXNyk6NSDfhiHS5NrxImaoGmRygJ3s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.43.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:66:d8f:d4aa:d2ff:feb8:b2bc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RocklinTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wvs0bs6kj8mArUQrrbfNEOFOU6Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZAPl3XDwDzDudCoTbWUVDgX0rjVAUTgf4UPBJgqyYs8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.14.151.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bastard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wu5A7oRR8nwjV+ix6h6Ob2Qic+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K/wdsCP/GBFkELt4luznuS+qLg1V/+EX2S2ZHjpY910" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.197.86.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dckdad" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wuZuGqIKYmP8MCkpbGQT1Xmg5o4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "giAf5quKrlTIUkqlm9zdVJhfDuyuC5JRidS+7P+9KuM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.100.126.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wuSysjFvGBJCRUe2W/u+TEYTeS0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OBIHKSg/CZsNeFfg4azF4+k/L3rPUR8TyxYfjwyBDTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::51]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wtWb88DMTyPXGqgLUCj/G2MRH6s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YMoY8h9BOG5gZKgC54kdMwd4j8SJE0zCOYXk1Xxw6bI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:37:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.200.196.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Spagh3tty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wsTJwOH3LY7ujfQG+AeNzldstTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/O5BYDJYm8RNbwsD7NzUzWGN9PXfbYNRnkTDMxBh8hk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:37:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.13.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "secondTryFFS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wrr4PF9vt74SxK+BY5lpGnU46vc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c2h+B/rRxdft/nmfsjdud7Jd0CAaiy/rqWzNiVwuL2M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.114.62.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thxFreedomboxTorApp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wrhnh+rjMdBHBoLmsO7TkOkGN78" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xlzBRCj7M6SffuTXvDX0+1xV3KCz9RkzG+q720q7pOU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:18:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.75.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:8e:8b20::8210:82fb]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "c0ca1eaf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wrat9O/qc8ou+yeJ4rdMEDTB9fI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LC5ahPHeRuTk8yCZDShF1SijzAM5sS4BHNmT5HmEkts" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:42:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.91.77.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:4ac4:42::704:c0ca:1eaf]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t4cc0reTor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wrRRmfxvmOIb+v4IMzSPKI+jN+M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U3qqB3wHdaT1F0eTLAGt41GSGP/IU6mCNS4xRC0tEbU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:39:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.39.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:e42::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wp/vakBecw3gfsdMzwYj2V8NOk4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yRk9XeAHCK7ghaQ42TAZvPDNWWDnGjIGOWQ+6FGbV6w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gh0stNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wosIAIb2zzJ/asPNN2M7uR6QkhM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5RQiMFFwD7hTaCXsa9wQ4uMoJmujSqDiNLsluAXOEMA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.178.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "erbse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "woIkhZfRyFIqKnUl5hyLd7vDdhQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mdpDrGeuaE6C0N2dI4iF3P5sbp6/sdtZ0rqN+iCCP2U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:53:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "woCMrAiW0KxO+q1OzUZ/4kXM/fc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dUUg4ZjSl1QAGD5FrQEyGPdMfjKWAw6hdJJpLg4/CV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "viennaOnTheRun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wmVRclcVSr0AOGHyuRTjULARquI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3l5lOYUsoeczXDlfPxbqDIO7FEbhixoV+D144oIxmtY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:25:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.186.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:429c:9600:40e6:e961:9cf7:31d1]:29001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1131" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wmTPfAXozG3H0i0DktExGx9/XiU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bf6M/H0vzXNDeEW+orLlP3N9TYVa9/2bv6DogIyrdak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11131 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::131]:11131" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KeffalsIsNotAWoman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wlWGQqgfTsH2eedCpR540pYgUxY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rUjB9WXFsRxij6R1blcTA7Sm8oxYvy0qbwIuZBMUER8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.76.137.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:803:2::18f4:a2fc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FaerieOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wk8i1CnRZ2fokj34d7pogQqYOTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X7T3PfnRwOK5OmcP8IqMH20wQjWkY2KbvEmRSjBMx6Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "119.17.158.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15151 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wkb9nfHDlzCqZOMUylqknM4Ihx0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t0C0qOtzJ+zkNcEKt14YZIrkBCS6bKQzZSe0NE5dBdQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:11:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.165.171.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ShorTorExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wkUFr+Ra0CfYIFp+6izaNxdZ1f0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PV8kMucV5tupSh5MbmA+cJPiArlPP+N4S+VFtjpJCgs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:37:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.52.137.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "downstairsfull" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wj8TDrkbJF99tslLjasLUa5pCn4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vbdZ7oxxHP18gLUm0Il0QMY0kWrzCFWYNHozDatzwf8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:09:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.137.249.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc24:11:212c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pacoCalienteRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wjc5LcEh31DGTHB8P7lQVeaLAMo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uHguJkeeFLDQix9LDwO/xe7oZ1jvlMYP18t6vy+zGDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.242.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:654:1a2e::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wjSZtikj0mOwy0DEyMRcPrJd0bQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wvyfOlMhsJHolrM4GTlcZoh5j5NmfTZ0kWPSmftONv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:07:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FrankyThePooper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wipZH/TuV3xAja/SbHUwJhXlFl4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MP9zE3AI3RVF5my57QciNVaAhXCOmhrQkFMtw8QvVwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:55:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.223.23.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:8188::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AwesomeTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wicM4Vzi/8Yp4JIySSKbEN9OVR4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4lfyQKK9jXETMmc4HjPEqeA8TKElEYM0yavpO/Pp+hg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.217.126.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 666 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c206:2069:6284::1]:666" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smortSmall" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wiTolwuy1E685RMcEaraNdgRzKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3wuU15RLFKKFhDmrorXe0xK/5uhqZuK0pAt+Ws/iC48" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:28:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.208.136.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "whipEM70PvXkufyfICan2jlY2fQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2CZm2H7eu8pyobs9B+K7co2C0nO/qAvEqtLNiGEYaWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10046 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::46]:10046" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreifunkIbbenbueren" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wg+j+smGfduMfAZyTN5hSqNkZGg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n2w201lg4s6+aiQe+ktjvy8YI9Q2aacqWGuE6fWc+Rc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:12:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.252.116.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ylxdzsw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wf/yejjfjcizENB4wT4j8ICvKVc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w1DleviF4u4ymafSJOJPN38PVCv7vgDFarbmsDVg6+w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.180.198.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2028:9179::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "46620" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wfcpNbGjKarJIWEBua7wvIhdbkA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n3AMX93w3Ka2BdZNFVXmOTAy8I/2cCId4ZhaYjp7Qdg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:25:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.222.4.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "satfreaked" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wdzEcMgPbXAsXtEVFZNkRL06AlU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gnC2sL5v+ZlrBk6agLYf2I196Fp0doevCrww61BVn+A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:00:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.86.173.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15020 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chickodee02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wdS2cOim5hQAPedc7M01q+fDmX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "41P3V0hTir5c8JSygUMi7n7X0DocT5UbTbdT9iBiK04" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:07:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.230.23.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay14at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wcpOYD8VLoyG6GT0+/EWKjv99Yc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8yUxHH9z6NpjLr7xwkJwl9zQ/SNUbpRKb//mA9rso0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:43:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gofasttwentytwenty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wcpFeg4daeXJpLfruXYEOv8k57c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yKsDObPw3ldFRfuBtcXI7LGzXw7q2NZN6qQ/JHDIofk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay654398" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wcomQKsncubdmOwAFgbu9J7BKxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m12ygkaT5wZhmWA6L1GVZznRjARabqWXrrVZmMSgwdg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:10:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.214.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9842 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pros2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wbtn0/vtaNS61ADRpJxbeezjll4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3WMX/8kd0tvGEW3MQ10uYmTJ9zSbnRGK8HFgO/8UzkA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:02:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MapleCrew" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wbjGiHhnztJWRFQFj5CCMR+vGsc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kz9ak49CvQYDj2iuJzWUR/ujORoSARISNsxD/w8OxKM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.35.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenSepia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wbav4YxvZWMaTvZ+GhkYtZMW9Z8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lY8KUv1g60GLhTYXbWiK62Pu53VUy+QsvPg239QZpc0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.34.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c021:8000:d00::a1]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FJB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "waIhJPxu+4sqQHky77bxljBgqFM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JUbPsGTLlHMvJvTft4mnqLPE3Bhiavo8CDEgXQBEgE4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.204.1.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VTIWith3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wZ+7wllT2qeviTQEi5ebkd7mTrY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eEvRRkbUqT9Z5X59+sohaFoDaskV3E5f4zLY+yTHY0s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:26:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.128.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relaynig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wZjUPD8y8u6icrvGjJKAPvmr7JY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kUE2lccsfUyqBXxehcFVFt/KR6K6LB7SopZBGxOyg5Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:52:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.250.242.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:5001:3498:5400:3ff:fee0:21f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Symbolic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wZfZ+h4rYppd2C0mhhwD2he9Rp8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iLQk33LMbCaZOei+Vt+eCjGbun+xm3oFsnqifZg6CRE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:22:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.98.243.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay10L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wZOdNmSd6YogJCljHY78cBKNX18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jTZpdxjVRYPdE0ln4y8riOC3dhoJdRUrONJySImsfso" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.20.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AussieOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wYQeS6fEoba6AS5DIFcKvvZtYLA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/iG1ZqUOVSosrKjsCIQtemNjmkgCn6beIFFhdDVHXlQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.170.32.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.5" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bwbtor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wXYoT7YezIdhoG/Oq0mNqEhRmxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LAhGxSA16Ycv/SIjNPfyBloLljVInerkpKXXImadv6c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:05:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.45.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a07:e01:3:1ed::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UncleBobsRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wWnlR7NVlwhQNbEc6KaeRDRagu4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MElkKwS9n45n5mM7k7elALtX+o/48LDb8yo57/VAijc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:38:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.230.61.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Liberdade" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wVxnQQG2arsW6GkT9oMHGmPX1tw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hwwr9XAsWqYPVlSYYJhKoymPjZDWlYdUDc2XfiuVwNE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:37:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "20.206.84.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rainyValbo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wVqL5GoAJTccPEEkfPiRGtgqehw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kgj6nDLVmeI5SGSopRQe0+Axq+p+VUyjC9wbtSVU8o0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.141.71.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4433 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNewRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wUABbUnMtnOm5P4ZMpOxoK5EayM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O/vo+C7dedHqaVfheuaJuPXkeHCohOrDh2waomlzoPY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:45:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.239.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:51c0::2f6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EpicTor3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wTCg2MGCIuahCNZc24n4+z8pvD0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HP64AC2LSEcmqGc9rXVEQ5ry8jJNpwqA3PQU31G58qM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.42.186.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jbktor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wRxy9+C0m5K5xOrVIjrHQWPvuxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RkSqg9w5g7ojU6GnKmXFhf6emi7vY8/JLkzqjtwQVt0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:38:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.181.1.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 62306 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "azbycx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wRVKunnYlZW4YcnJeU+I5oOW12c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uilz6ub7uXRiANVYNSIMfy9RmlL0985P4IhJsBfsdmM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.85.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2025:1163::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=950" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bonobo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wQSvmgfvN8y2K7BITSGSf9spR3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5NJPv+YMo4f6W5hn0RHlUjAu2jIE0xjx8lJX6dC9JZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::74]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GASERI" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wP3UOeeMPUuhQXMkfoS7aNB5ewU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/v9ohyvI9biJpNw0iyDE/IuqdW5l24fyIVtbQXgpWdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:33:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.166.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:182c:39::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rittervg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wO2wjXVA0d08ppgJ7RfZefUbZuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "soLGvWWq/KYuKR0V2Znt0Zzbd8AX1cpU/vH9EaH/r2Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:38:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.107.139.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fe96:d927]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snowballer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wOtZN+O4qi63GH6Rf75tphKjbPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L/DIuNISvOoEoKSrPqoIvtrkKhZoqTv/HOUhpqO1oAQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.184.93.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cupleak" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wOpuwjeWXyLVdSECiLi66s6dVU4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S5AosvyIEOp3ScFJEP5HZy8znqn7ozpW+8Vs8YXf4X8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.90.57.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:9406::33]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ytm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wOn+v0cEwdvvNsiXIFxg2FrCqPg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6ONF2bQIwuFdn62koeKVK0BdsASjEazYSo8YOBebtSA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:05:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.36.89.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayonbephomet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wOczShgRhKvQdpjQStwZ4V4+4YQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HHLs85ryiC4SJzRpC2V4NVOAqN3h4uH1pniONKAzTqk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:13:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:12::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreedomForParrots2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wOamZwZDhbnLWmhc6wa4Xt2mqgA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kciVPmkkZI6rRmB3SyKKWcX/I4MH16+CAUqjtKw7huA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:46:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.123.155.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thauriiya" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wORGO1PzPT8m0RJ8iG7o/l41/Ds" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iKAMvqQfmjD8VX73UE82Vx4ZTLLCgLGmZY2sIqTvXBA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:52:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.26.0.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mitsuha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wNqq5e5GG74TlF/ktS8yq9xrw3Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6bBmx2faqljDm9/xCloRYTiocQAbEn+Don0d9TopELE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.246.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47b0:1756::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zinha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wMiGSjf6aB7Gdw3cvP/v/+hUySQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fKiXf0Dr81Nlg4lYUmrx9cofsn1zFxEYL8A9ttjZK+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:16:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.204.141.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wMMAvC6EpQPU9Rpq1js/a/PhEsI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hlmlFPstQWUvHAsosgF8a5prMVU9tAmHusOwx1hIHxo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:21:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wL2rZsCaMZMx1HPaDhK9XTUFCv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nCjv52qfy1SeKqXEZMSjlnSDQ45U8DeNDuV6n6ZCS7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.44.203.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19385 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "twofish" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wLq5LdGP+D4xXMEUI49xz254LWY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t6QVm0AmBiS54hbYXMwbPIooDUKypjBYVRx7/txspSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:17:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.160.129.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wK6robVVGf5ThKpE0DEr6YIW2nE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P6AbVcRLa9EK8a6fGywEj6wwK/NSgMch3oIAcFjBdzA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:11:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:14::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wKsyTaiS7WWAASxPpMJZov/HfpI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uBx5+bfFca5byrfutd5cx+LYxnuerEX3fKqF7tokV/s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.26.192.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wKhnCdSuOOh5QmVJZg4a0YzFAM0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aVsUIkToBXuHEu07NfJwkvJ63+YVGSlPMwaJkiEVrbs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::6]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YAVTR3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wKLL3a7CsfygeczcYm56BQnnl8s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Lmr0TFsMsTChAT+1SQDVK7/wWFhpGDr2wsnCc4Rq3Ok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.83.233.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheOnionRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wIpbxQS51uzOKqLuUeaRJaOdBZU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/7rXZ7b5iJ8z+SKdphxP0NEdRHHuLBybE89XuBvKFk0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.1.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:4010::3f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PCGG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wISM96F9SRePcJOBKFIfCbwimEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/siHPVrOPF9S3HHE+7JHlhJLOMbjnFwLMiGrGY9a2Xw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:58:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.187.101.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hera" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wH3KCyMb4FVKtNV0rAV8dXK9bvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yt9UpunZ/iAHpj9G1XTnJ8m3SWA/f+HULjCAjveQoLA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.232.68.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4e:c87::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SmallStupidDonkey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wHvW8gwqURDhXWPksWqY/1fQv78" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7rByHopIGBurdbHX1pS6yiuAz0P0rcKAGMxuOb7PDKA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.1.220.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wHBE5Fl5N9U0OMtTm1jas4xrkQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pLtByoEwLtsH2INuyS97aChNzZ0FBgxEPAXU7KMBsV4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:39:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.192.246.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wF3Mh9dmfQjuQ3DWzbjL624LQxM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H/lSS1F89/BoQwXmYlzmUzlFAcab4g58/QC4fgTmTYc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.14.97.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:14:97:0:176]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "endthefed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wFbZiHyZno2dtDzzAOH3On4NHXQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "exlQEt0eKUvbxlL2QkxBc13CwaHzawDia3xYGvS15sw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:53:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.253.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=850" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toritoinfinito" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wEFwccN1SIUpb0pZNawbwcq9vDE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i5tV34VxRvG6XZEe5zW7E4CP45Eu/aNJduXevzVH3Ak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:26:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "187.207.96.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2806:106e:19:2f73:2ca:5aff:fe00:2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay36at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wDYOtmQBe4Mf9z/ipBoVTOJk+sQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C8RlQYc50PyUet7HToEWx5ZEQdtS2JDKvvS/g1LF/Z4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nobodysawmedoit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wDOWg6qLzRGySY0Zf8frnQd1if4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1DKdtxERSJFV/LnDA/3ZX43lrUHYUpAQTEyH9ss9RyA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.196.8.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VrijHeid4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wDIJ9UvCmZJ8p1gRR0NPQ583yss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UOaXwfcKQnNLsiOJiwwROGIn9Hyth3b1+wMb0zo9b7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.142.241.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9004 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:898:218::2]:9004" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "manipogo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wBkv9D53clAIQXX05ZrBuiKQzjg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L9y29ZAh9ktmSSQwCi4tZlMYQrnenMI4lYndKfgd+eg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.160.102.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:132:300c:c01d::9]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "striga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "wAySYSTJ3MZkeWSTG1a9h0uTHo0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "882lWeuzLmEFXyuX0w4lQkr3LVP8fPe6sy/9WanRkd4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:26:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.250.14.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ufer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v/c6X5AOl0n7opI6/ELagDokp8o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "etEDlaf/DWD6hgmk4/2VVA3e1M+ko/H7wznOUWLkyfs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.35.85.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MazeParadise" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v+qovpBIRg6X3jg88Tlp0d+mML4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tRKViY1z5U7yTqxDrLP/we842nimPINXBVJTdR6esVQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:12:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.126.70.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=98000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xangaen8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v+QBQ7IsUPQmH8EHUGM/FzHuDEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ixqs/D3zRYikrigap6R2c3HVGyLEGB4oeUGrvi+5abU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:18:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.191.228.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v83nxE3I8iIhaqz/RtPijXItMtM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I2XnISSrM6d9SxNdPa4NPrqJ4o6byMCT1S7ha/9UDC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:54:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.80.227.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk12c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v8bn8pjVgTRN/Olbt+6e3h/AdFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R51BPmzNeq0hh4tfNqfPsw3HYKINz31MkWmxRDgR+bo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:37:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.182.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47ac:63b::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "antifaang" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v8QEQRkIDYvucCGJeO6Dw/wWrno" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XExWnanlxajrMikuuDazkx+++93y33ZeOp8BN1lgKBw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.123.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:190:62d9::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ckaket1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v8NGn6VX2nYX5nSKMeis5r2Rl9U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zp7U3ArCzg8afwoZh6Im8Gpg8qnEZif/keYRv97vdcs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.55.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:1fc0:10::28fc:a3c7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ncbanerelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v8EwXIs35RYcLjcTXfLU5TzDis4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0bh91YjQsHFeRRO7FsfPY4lYQIEPBz/R4vgAufeuUis" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:23:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.46.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:22:62::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "styx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v7OZlN7nTSOx5p7OcCtxbOE7Qco" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LvWC+dWk8xptVPqmF2pKprP6qpauCncQMVOh6/1EjfA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:41:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.149.14.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "justSomeBoringRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v6clgRr92Jw9DO7Ewjj5cugtFxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0rpTUQV7wXEk4DTPBrCDAS4cWTHGXy0Tb4hEFOVILs4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.242.78.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42069 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chfarley" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v514EAQ+MlxPMRTipmtRmMRDn3I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0MXJkK4y6PtxiT1h3TVQKj9VnX9L3so/FjxPwdwex0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:37:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.135.199.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "labaliseridicule" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v5NZQ4SgLedonE/YIeJjjaLNR5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C3BBnQQHteMQOcKhkxcTqPAkjg5FLnrNHnJHWwywcxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:46:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.153.32.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "partybitsys" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v4Yc6Uo9I75MGdXfdX/goMiwivA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z0oaE1Ik0KrAvp5H6QCKUV5uVonEhzVo6DoXET4ZlwU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:20:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.64.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:120:176:146::69]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hkff2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v4MMaMt3CR/jcF0WSHBNCuORUqA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kGUoc54klcOAmemqCpMhKXSkqLBGo7xTDQFnlp+hNvw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:00:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.48.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v4Ah0uyKjcck012VkPn+8lHwBtk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EGCTaoGYjZEUPSHtnRpduI8NLRrNdCYyNqRQ9MPg4tg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:27:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.78.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f046:56c4:177b:1cd3:5449]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iDIDeditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v30QyB4aHlv15rA7FezGwp9moxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GDO2Qji1k5HUOaTHecHw2SesNX+0mkmg/1J1yMecXjo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:20:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.234.221.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:578:85ef:f00:91fe:cafe:91fe:cafe]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "covfefe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v3opxnsFAs8wgrEzK7+8q6rFUNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AcJwkL/Rmk5mKJ3oRaxJdKixh4Vqbe2uR/4zfXTrGDs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.58.104.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:5179:1::233]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange018us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v3FoYjrU/1QqnpQMTM9XXZvhYyM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5oOPc+bMYSRAHVJg8R2e8MEEVEkX1c0I2eP4Fsh4x+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:32:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.160.32.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lenny" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v2+EFaVyWb+3yHjElWxon7fssko" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d9IvLq243hNYuKTHsJPOlxFGFc2FvB3m2Tz0GIOQEKg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.67.204.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:810c:4040:20af:6749:9bc5:a9fa:c730]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v1wMXTocZlT+ul/2awBzTfBz21A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "11iuQjy9GR/MNADKUKz03HTt80u+uLN4CqG3XNLHbZ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.4.209.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:60:e1f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v1bHOJTBPyHZjJzT5Zv2rZaOAds" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "25K+5+3xCVtu1ULMIow5KCO69FLj3lxAIC8sbhsDdDs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "transliberation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v1UnnnWgQbe87o4s5SZ7nMi9H6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gb6s3krrA+yI8I6syJZhNyApMYRJpUMJLQljNXMyLW4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.226.104.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:43:f816:3eff:fe97:4d5a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gesdm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v1TuMZN1FIFXm6fMfY4d8KAa+zA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pWoD+PfM7aHkuHPcbOekt6h2wfI1TjBvVidj08qVMwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.18.82.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LupusreginaBeta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v1Dgnu0luChhz5XhqqQtz+9T5dE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "THC8BvdOws/69/ysAdhLbcK71PmzBFQH3NAgDosgZ/s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.113.4.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6881 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=76000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cordel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "v0N1Kp83U40E7FwyLVhX/kjl19Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AULA5PIjs3y1udhkV/HYnJibky3J2zoqsXTgEUIp9N0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.136.198.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrgDE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vz9vvbNcm4TxWKLKkW9ZZf4J2l4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+ESpKMpDSsZ3WgxmM9FS2DHFga3jG77tDymwOYeXcJg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.182.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WodRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vz6bl9POQJn3OqS9cMoUtjX6POo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1G6AtDz6EqT3F3Upa/5pvJCjoOxcyqVBjqPevM2oawI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:59:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.120.126.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=98" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AkisTorNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vyVXkQAGAudKvi2pMgQdZNTtVlc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WYbs9xddbZiYiYjpwF3gUDIuQuutZ+1KsNXVitH8oeo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.19.81.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "34b666a42d0b46" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vx6+6gSgwNgIGLK0Z/28ah8KHsI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AyvOrb2dyYAhiJJ81IsFE4cZWnhciyvp/kG2fGa6Reg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.62.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:317d::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor4e2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vxtmLR2k5V9wDBMKxYV0tH+3644" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t3647N1kvzuHEEz0Q8/xVI2KRtOEADSrsOdQ3hkMMCE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:39:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::19]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chimerazkp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vxsb/5F7oOjXnkse4z5e+dGpmlA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8lIR9iNKE5Cb0Oap1SgluBs0ia3xSs4RK0MaDB33Fhg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.27.199.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "erwinsrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vxp3W3KC7DH8r444/JPR/sRDpWY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1boEtIg9FlpsRu/+vI1N/aWrusZdIyBe8Ufu90iFc6Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:14:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.77.238.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wolverine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vxVc0uOKojBrcteJwZUsg3PEkOg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tJ2onvK9er9WG5wyZmW4XUsPg7/8l5UmMeV3j/STkDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:05:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.168.44.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "quadhead" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vw+1guN/c4zTPDZREl8ncnBbuOg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MeVgQyZXv66t6ddpTCY0zhgYf3F6zYEsBF6vofqgMSM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.190.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:211:c68::2]:9010" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lwbghtwox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vwD2KP3h8yDg2pR/Eye5o81ySNI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JHxSrOwUVjpr4mVYCNRZXyAdDRuPMo1797tt3Vsqsgg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.75.237.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42842 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oranet2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vvsAv6AHswOeiUONi6SimdCXjUA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VOLU7KsJXdlrcTiue4xjsLfeI4NtO0/+3kcq1CzLdlU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:28:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.101.160.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hogman13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vvmDHMCzn6lvYQrTpd590mqo9R0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L7Kz4XZbTdsFWAzgbyFnp5h4TRq1E06k3yEjsvbun7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:56:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.137.249.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc24:11:26c3::1]:9003" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OrbotRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vvHjk5GPxNHTUIT/k3Lmylt4edE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bqdIb7iepcOTSuvaj1XhwSH9Ye0Qd/yjl7OmskfpG3U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:32:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.228.183.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idideditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vu0obz5BYVX1y4vJ1ONLoijydLo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fN6qpgu0WCdrSStZmPFPNTvABAM+SEB2JTZiNFzZqMs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.52.10.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vuBx5SGkfHQMn2GE/rz3i/9fEnU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8L2T7p6S8uQZ5iocBPkiWvbjaDAIJZfuQtw+BALD8Qw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10034 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::34]:10034" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Leg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vttY24sjhh7zXL7DfGuO+3pxaXU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r4jjF+3jtWisJ9WYvkQSHxKMHLaEpJGKFiGfUcBB5u8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.3.135.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "node1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vssASvHncDT1qre3B0zohd1orO0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dE9df1ePISDSUttR3SECFmsqbPst8LfXGd4uFnIAv+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.66.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9119 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2b:2c5::2]:9119" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vshUJL1COXXhHtBb9P6rOnUmUQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m/q8FHxJD0G5EEvwToZQLhDDYzOb+EGPII+55XkRRrw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:54:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "220.233.73.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2406:3400:240:6d01:6db4:1a6:1f94:100]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kwasikof" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vrw3CGsiUEwuquux3C6ERHpSVEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WD8WXUorLzwi+3bC/eMDfYYEXeYbw8pGwVx2sFW35c4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:37:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.150.4.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeAssangeSnowden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vrjiR02NswdgfciwG1svPflUdFA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mTNzC+Y1r2M6lYMhgdoBtbwmMAeF8U22RquJatPFrQg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.167.241.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NootkaRose" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vp6lNKZm5rng9RBH8YyMkQ66dHs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KjFT6Kl3/LBbJoc3vGzHG1ncq8UpEWdDF03VeF36w/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.199.137.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toroQQ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vpe2ibbnqUEXeJ3Z+Q0ehML5EVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5BXST6BHXON24UX2stSBUKLLaR9M9r0tDj/htDgqjhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.22.210.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vo8490GDr4xsX+MyWovntiJb8j8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nqdukjp06QVhgnz8Yclnv3Ih68SIHepQpbgtQT5R6Yk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.37.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1214 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1801:31::1]:1214" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "supersingulardog" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vnvCeP354QY3ZM6FeyhyDE2O+bg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4tXhiV6ski/pF3I8Tw+zOkwn9KsHVedFjTt2VV7xnfo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.59.144.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sideswipe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vnb7tfjRBx2/7XfFQxUMHJ2KIcI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Ihot96fir2sdIIRthc3FdYA50pz7QZiRONACO5ziz8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:21:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.171.214.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StrongHoldMonero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vnDOIYG9OmgvxNre7mrHX7wWOoM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cfj26BzvrhwrLvaRv/Ic5Vm3KpZ9GqvokWyUy89Qy04" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.228.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ClubHorizon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vk8y761ZGTKWOguocPkTo8v+3T4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o/WRajvrMZtAm75yq8AXVLSD7MrPA9mb4fdSF68k71Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:19:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.9.76.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ledgh53" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vk2OlfOPM1hAplA4MnH6imDLpYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+c1gvDKttOcq+gzcPp3xJ7p3LNwysdI86aYDlfUhvCw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:42:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.57.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f832:38fc:feff:febb:5c26]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeeJin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vjuQJKDrvnL/ISl5+2lfxhF+HvU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8oxQW/AwxMQU/KEiZzIURbzBFu/kt0ZOrYLSDm44R5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "223.25.69.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NerdreichRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vitouLiL/DUzAjYNWKz5vZupgCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3wKEkbrz/GoQW21RF0mZlRIfsh8DcxYGlfsKr3jNJ+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.3.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5d:e6a:d8cc:e3ff:fea6:f015]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MrOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "viYjWKkbeupWiT6B33a1IgTE9ew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RuuOAb55nSF+ymr+ojVHJIqCxBdT9SqgEihv12bWQuE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:42:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.122.27.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:400:d0::21a9:9001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelayDebianUK" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "viX1KBUnpzkdU0TuLtkJUD5t7mE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R5pdG86z4eMkXIyyDYikxtq2CA9+2bXbnZ4samAT874" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:47:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.134.36.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "justAnother" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vhEU0bQYlcLWfFlizjVq5onODNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "derd2peI9IIm4UtUBLZaw640F7H+QrEiFTduJULjiJI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:44:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.54.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GrgaVPS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vgdSH2a8xDCDRFtqsWjt62u/SvQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vYAHrCFpduir0nnbS4UNz1yr35eKlKrdDWKLLkHXJ0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.44.107.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 555 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "r4v3nrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vdCdXbeCtgI3kdv/1G8QCx8COrs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RS20mzcCvJ7eOSL86MeMfLRgX16ecWQt04smdNej23A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.59.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tungsten01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vcj6qyLQ8llt9Aud8ilKlaTeCOc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9Iq+NyzVIWncTc8xb3qzMRIXikMAvuIPpgMZKnyMvmE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:16:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.155.56.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GIZeStiC" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vcUm2igPoARLhMXrLcCmfJvhK6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L14T2ScHpKMsOCZ+U+TgN+C6mV4o35WRjohHaQX490A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.72.123.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1220 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cragg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vcEXTHlLVWxHt8zmH/5l+xZye2w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WRSDKHAxJTPpXjxu6nR1J0wTjcnmIpkxBSEbdPqe0V0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:36:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.10.8.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tiekoetter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vb/tbornSgNuUTzYzWu/CZZlnAE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cRtpndx/EwJ51jIRlwJc0/HkAo+dOmI9oq40tmYr7LU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:00:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.223.37.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Skadi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vZ75LgIBAzQZpxvWn17H6xgd/J8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZN5YbeatQl/vhvIutlhymvYRO87+ZMxaJLDnqBB3myA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9025 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vZdk7yY3pWgQddbv+Vzb6MhFGKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JnSWgOF1bEZxWXUvb20PQRjlJczuIbKnXb9QN84kZaI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:09:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.98.240.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PiratesCatalunya2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vZTz6P1MWzh7QsI5A3cjnDFChn4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vXHfqlL4MbJYi5cH0A0ue5Tl1h/7g/LmawHvB5WQyYg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:35:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.106.236.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frigg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vYctC5tHrwD+tE3KIShiv4WtZmY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2N3Bqu/0cUyv/dLgB2vKnqx94KSUbqdsnX0oCfM9FNc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.134.28.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=930" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aprelay5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vYa0Jk5S3hMuViJP2doh9MLyoh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tfLiUTxaD8wybwCj3/gSpyyAIYEDWt8oxF6p+Oa4K24" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:08:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.223.17.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8054 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:809d::1]:8054" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=830" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "defconrelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vYFck+nYf/syIGw1QL2FWQA9MyU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GsTl5bSC89vtyjkJ+tIBa2VMJOCrYOaKtVxAAZE3dVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:39:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.230.231.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:559:327:231::84]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bonjour2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vW//GtWoio1Dhw1D7ERQCBtLK7o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iy8s8G4EpU3yHrxF4NBgral8w7U0NYGvvY+3n7n+tnw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:17:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.138.33.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maatuska" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vWqCklXLCOZvvn03SDY1huRrOBA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8ppMLaS3SyQSNnjhKKYfUZRY0+llVDJMMUAOujHFgsI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c::9]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shimmer03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vWSGmcr+DsedSnonzJ58xabfiiE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dJnUBw1ds87WQ4hBlfgv+S31ggKH/uELrmSGfXXBBzc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:34:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.234.251.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HouseDimir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vVahw2GW7paLKjRjzNZAGbTlJtg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d9b8neTxusBEgcBX8NDBAUf/AwzRO0o2tvRV/WFCU9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.115.32.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CuriousLoophole" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vU9WMAGkYRkxutZ0wYxINXcXxRc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mjDZPKwJLB5pp/+iuaKHcQXZAcIikAKspurtb3SkdOE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.231.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "regar42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vUxkdQgWL1nLROTfwcKyuKk4fMo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZpWWUsGHtE1zYriQ6bDzwS+L6Cy/Hb5rG6YYAyGb2ow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.244.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:3680:4242::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RealityNews3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vUrzL+G0GbSlBJoysPwtg/1U30Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "89IEmvW+KlVp3MPg0EiQdJ+1+JSDTkdVa+VR9IzTZuU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:39:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.77.182.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1b55::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vTPvGAsRGLAL3wc+J3EhDjvd2M0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YOwdfgS1NtLO1J/SEn2wUvKqwuHkB5Ry1GxDilqkvDw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.178.86.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay654399" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vS4LW2k1Zk3/6DB84f8mnyq/qOw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EBsLV6RPWp8ycQTdHjyEVY6QauejfBnFn+WxoNL9uDo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.214.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9843 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vSvEFdXYrjw0Qw5w7ILPOwxhvd8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3vPubBSgQWE9pVLG9YJKNkwMKZK6GrvLxFfxi06tk8o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.126.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vSo0reTmA6Jy+q0jrvOJgBuyI7s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JCrahvppEfjZUlPpap70XBL8ULdMgHTJ+fKXoaCboa4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::210]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "qwertz2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vRyMphpTgmp8M4hadYb5+hPOeUQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mRV1BAwmY+2miAbN3ib4lroqYcALY4CJ1nuQ/qduStk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.201.63.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra44" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vRQHWBNaFWBZlszuO7+kEn+XsjM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DN/3lGzwWFpFKsa2kGVfEYPBiCg4LxNxZ7pU7BaGEPw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pluto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vQINjts1XFNxmUIKryZJ+gRTbJo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0ZVgn0S+Cxs/3J3LK2A7V1A2Z8kq9iLE6PFfALxz/pU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.127.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3004:406::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "metricspace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vP5UjqP/igs2EHecI4NQEkqO1t4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AN8okpjPky5nYo7szPnBPTtwfvjP1v6Mdh46c7cFxqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:45:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.106.232.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f11:617::10a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor5e1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vPVfhl7m7xfiXv6vhRvEKfGQuF0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "14bVRbTpqKTi2nNLM73u0YfUk90BV2wJreDDGo+QUoI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:30:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::23]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EldritchReaper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vO+QgZWAXgPpLM/macSHOOVWucU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R1DHq6tnjg3/vUn6qvwa8OZ3jf18NZaaBfNcrK2Hty4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:15:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.231.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:1a:f500:0:d0d0:15:dead]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gurgle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vO32wZOqaHrkcbiiLr9rxXwtKF4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1nFNFBA5odOVYr+kYUzfZQPhlfxHeVUAJ1msGffWkMA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:29:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.96.155.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oenx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vKNfcMsOelg/xuy4P3VbCD6eLfs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GOA/nzt5wK4KkxN/4Ng7IgMoc0owCGmWkmqbSKysV9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.28.183.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:5801:836:5400:1ff:fef8:30ea]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vJJvjB8U5dyCf+RRvBiZuUth0n4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z6mnVkuN05EHNdqfOxgQX/VhxvYZJz213YmG7XfElEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.37.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vIXObM9S1pFem84YI2iOC/41BlA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h/+aVzZQ8aIuRC9WkSTKC6ABr0WyAvHrUK40yboLTY0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:39:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YagaTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vHrPrASFTHcWfH1mt+RxMU7YxBA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "keYro3Roe1sInH1MHNjHeLGAPWM95qhhQxP9Pe35o+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:15:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.140.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:e646::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay43at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vG6AdEMU8WBUpk7g8jAvCCySmVg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Dker2vI3QGDbNyBDklzUc3dpiwb71kTxfDtfVeEOol0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:00:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv119" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vGRQNmTJC0qdqRNzbDYd6tMTsTA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pcO55am6xb57p+9MOs0ha01yGzlHR6mg6MjcA2ug454" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5519]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vGFjZUbtIaSf7ApTIGTblTj3xDA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UOMz0a7N175ijSePnTghi3swlPuKXW6DIrecgtWh3dI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:08:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.138.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nognu2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vEBZByMxKORt2bK79d3PJQhVr98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VJ0+Zfvk9bWEFOiVjh3+RHelPCcCtQeRnOb1ZaHNGgU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.10.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 45531 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:66:bc7::2]:45531" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flexbit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vDkkfGB/q4Y04eH7KfwE0jxj/ig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6WwuKSR1pnS9uXcug0V+1htpBGgig3Z2SEUABiPYgAw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.233.203.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 123 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:9203::190]:123" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "h7nOq" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vCBmZYA9t8cwwloTFoiaTX57/wM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rhajvR6h4sF0XHBYb8KxvudSBFyL/yOblW91+H70I1E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.143.214.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 20 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 21 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:ac00:1:8a99:5054:ff:fe01:3103]:20" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "razek" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vB6fZ/G5n0pSKHCW3aijJPP0v6s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2cZla8pBL55mKz/IH/i2U4sIdI2YarxsXBcZ0Qnp+Mg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:49:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "181.43.104.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlackMesaAG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vBI9t/YenbMfI7N79ioW2qEBD8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OX07zxFa7raFN8seHvypbS5e1EVM92gKN90erH/34yI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:46:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.215.88.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vAgKwNL3V4Y/Pj8UjCaOXIWE6K8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V1nswAkHGaoNUqlskRoIo6skuZR2w78jQat8QRUap5k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:06:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.215.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:8162::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "vAakroR93CP9YwguOIuzCSTatLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YXI2cOJIIWGUBvV2GxPpzX1VKF5YMZDz37oj0MgQnS8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10062 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::62]:10062" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fuckwar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u/h2PFUfh6HMy2ZSu8CsM2v66i8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OuN57hIETCqsOu+xZW6U3nyfxqTX9HsBwqptBjLff3Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.196.11.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=610" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kator2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u+1CgipJl+lOWyilH7ZDmqi4NPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uF2AnWVxO6b0RfZXpN9OGZKZFFZXInW4IMrbvbrcKYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.157.78.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Liberation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u+r/JKnTQG3MlUhN6zt935ipmYA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pv31k0F7HHwarZe1FIYO5cYhJODK15gdo1RsuoIj8nE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:58:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.199.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wombat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u+Hb9gCbYmevtN73ifYv2dipQKQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r1freMiQKCOzvqROQZ2ucOeyvJsZCAoHvkW9PIoooYY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:56:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::69]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hanktor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u94SwyD9HD/77BUgL0bVYg/BRE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zoRidu5rDplbt6LgT14YNOixvKEXb9/bNj0kNAAY7sU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:cafe::a3f6:4721]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ambrosia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u9lfOM+RxKYgD+CaOVHGi+EY/54" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c0absO6Tjr/jadXBaVyJcM0fNB2bobp4eyV/sEGrdDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.134.238.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4430 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sprucegoose" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u9j034/1xppqmJ24we4sp63+B1U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SCjUNAbCnJAW2BYfblyCRNmlQCDIctm1Lo3XdPZcUYQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:45:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.206.4.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blazkowicz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u9GxoiaVOWx13/M4qP96EoBKYHo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nbcw3M57hfFAzJphhy6A5fUOJR9wVpUsq6hw18YMsPM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:23:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.162.194.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SaruTorIruka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u8Ya0uGK/nDpvkJtCyKpglIAD7s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hn3VPQoDGZmzi96OS2AHl8K68nkDvS8vhBrMNspSseI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.199.131.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:0:d0::1a6:f001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u8SiFVD7lXugPkp9Qb4gMEhST5Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FwaFeb/chCwZFTTNgLx3pJW1mpkw2PZPyXxXDIBBq/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:09:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::55]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "caligulasAquarium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u74PlG418Ls8xIYF0xIC9f8cjzQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mnrFkGfb6XUJ7kvek4WER45/3YtYmpsCq5k17F1PCIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:13:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.251.89.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f154:dece:a5ed:dece:a5ed]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "motor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u7u61FMmPXhuw0q2igYhQoiRA0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t+wd3ji48OLk/g0z13FZyMUuKlxozczfF3TEhOIZdVI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.172.112.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9321 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6020:b2c5:d84a:bbbb:bad4:5326:3d78]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "andrethemac" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u4kXpHJH3XW4OjmFsgdyxBPJyRA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9zcDJ2s+BRzm8R6TisCtNiXK95a6Mr3FbptleTwxjqw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:57:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.196.9.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mullbinde6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u3cjvFqsqKiH4zrVRvGjRlDMW7w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XLwxtHHXljcy7VBVnLq/9OY8JZFo45c2aKrAVDQK3M0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.17.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:4cc0:0:fb6:200::208]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "porcupinemike" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u3ADyvs+SYalzP5xvUOeuJSeueM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oAToHormhN+CTXRAE5/nzezdwQ6b5WK3Gdqu6AfcEts" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.250.88.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "c0rexxxpallas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u24aeshwLsYk3/m7bcSvMJflfKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b5FdoF5r8Kgu+J2jrvRQS6MlfGVHOtDR5vS1qn0Bhnw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.252.245.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:2180:0:1::35da:3bca]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HumanRights" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u2W12Imd5fj2AY4H4lfNcj2hMlM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ePIGzuLQZ97HsX7ojqBtzI+UrI8InMozkz2n/S7V+/A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.28.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f67f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YonderYuccaN1NoExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u1+uULzlsTyBDNF6kxoEmORoHUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a1gPW4syOv9aA7qfM2RhWAZ1IMILX7nYqgsuRCFpiCQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:57:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.136.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:6a16:1130::31]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thefrenzylands" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u1rC7HiajDUlodGWfqTPPXtBQXw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4+AGK4AMQFRh2g9CNzqkyKqUtqXL3DIAWbVR6Lk0/nY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:35:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.247.225.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange010us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "u1YwlnYH2Ki2yoVK+VT+g3LRZio" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TtIl6+CYgiMZiN5gNPFZ5SL9LjhuYauCfDfk4uRHzhY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.114.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:101:200::2d6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "soporific" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uy3XhvionbXL+1fhupmbNz+phA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AB0TBx8DTMoWCUjP6jwymM/ayBL1DT6UTL0Kng1vQRw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:48:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.238.170.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeroPlayground" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uyr8F0v8/wLxVKnSSIZXXjJrd/k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BeUFo7hXzxUiF5GxPFMUlaPY1w7TcbE+C2KhPEwf3BY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.102.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bruhrelaynyc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ux0pEKSSaGrXIdzMFwwsOWfzqCM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bl3ioAjuy04ZunKoBtY7nFo1DkM+N4/zSkY0047yCmU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:02:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.223.120.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:400:d0::199b:2001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uwfpgj3nnOyakG7MjK3FamU1e+E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jcajfbKAbIFJPdKVtzBBquFHEewY2nzDPfXuiFbPCa4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::c047:adff:fe9b:8d65]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fuckwar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uwWaWuNUFBLdvM9JNWptSrCBfT0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "68KIbV8nXwFZZiuuiKTPMj8Ny2nQk6BIlZ5P+RNO3Co" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.101.51.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip1b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uwNMNO2eYPdwntk/tDKpuhKi8rY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "frOuMa2/Gw11px9JvG1MfS+J7S/8nDoiNU/LtcjW0PI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::248]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uwBMf0xcn65eABhkU3+JOIRE9XI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gX/2PhWT3N4ecDfcpXvFw8BG+mzQ3j0rFsZZbgdg3Ak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.201.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fe4b:98c7]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra85" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uwAFWPEMHXYNnIxWVao02qOGnK8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w5y1UcACbHZdO41lrJIGThLE92t0mhTQBmSKA/Th7wU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:25:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.146.232.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "darkwizard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uvIj6d9i0yYfFnXGz8Tl1Q8V+lc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9VQUn8RZXPLiMJNOnOguEZoDaD9yyvSnj214JAm6vuI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:56:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.171.137.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "amer02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uu8x71fp+vOD0OcJn4yHliR5MBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6JoBP9NS3bfOJo/6ylM63OE8K++6DdnLozrxHhPjcKk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:13:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.32.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uucLWmGxKj0x3ulOaXrx/ampuC0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aykzNpFo9YHZYCwjsKyBMksNCrMs9YfWZaW3RGixYL8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.224.58.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DarknSpace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "usywdwWxur5cGxq0jiPZz5923us" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9Ke1fZERvrjTUj2HKupLBjsoIQuOuBa4Ypnd8oZI7Ug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:49:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.40.13.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7b40:5928:dd9::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip2b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "up1/uatO0PvKVpQdoiz3dwuhpLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ESP99P5UClggAQxy4Eo+0taxziTOZzOtf9nCpVpJeng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:54:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::249]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aesop3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "unw7la+nSgIdfSLIVvh+Kr/vybU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y86ALnfVZhnE4SQzJnbw/Egc5h7osQOBgB2XDuIXzQA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.70.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "unhy+8lsxxA6zzpZgWZ0NFTWkKw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rI5RIJLOaUS0Jeznkf48P7xCNm1h8WNWTSJ9NGnpqbo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:39:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.19.173.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra86" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uncUm07adlQ2mPBRBPXCVH4wbXc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7Ww/rXXBgj/FThJAi8PI/Dba6//Y8hNE83BrwWjXHzo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.14.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "twoandtwoone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "um4GRZa4avn1XwYDqCyQ6Vjobno" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "49/q6/BKAe1GQkxK5wvqQECBFt+US3/bBSchvQiYEkE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.52.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ContaboNixGut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "umcbcOaWqy+FrKPZmLgAjRRVZxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0a4hxKdAGV1yA3CN+20cZQFEO/B+EGiR8Zu2k+GJ8QA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:40:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.78.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:101:358::2bd7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "welcomehome" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "umXLYfqYwOHKI/VCOO4P/snBHf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tfnQwWsf015q+XNNxCa9O+FwJK0Cv41vnXgr79H8gmE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:48:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.132.130.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Echidna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ulciKg7J7N8AOu1mXfsLEofqA50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3swJ4qtgGJrdgQVqz8DsS/YnB+1wBMhtXedyXIBy1Zo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.201.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:202:300::cd0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "3raserRelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ulOfMwFORrz3aNYbRiBNnd6hfkQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SrLzlKFIvQu2YQNs1pWcoC2wTEjYv4whjEqUdn+XpuA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:17:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.37.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:b3db::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fc3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ulCQt4S0O8LRpBryumYw2nqZ+BI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wpIVaO5PW33SHpekQnynfd4N+NDWVeRxvb/6mgzSjZs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:53:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.37.16.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dattor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ukgaPIBEfvtngRk43dObH3nhwG4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j8pCbxjSJIL8W2/d0bGdYgBj3VcdCvuoTX/W7CECXzE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "137.193.65.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Serge" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ukSoieZLk/qisRTgLConmoVVxTM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sG4ylP5agzXxxBPIZr468grEzj6LiOaKlve7cscR7F8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:47:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.111.2.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2610:1c0:0:5::131]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "At2lanxztaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ukPkvc5EmdvyJ6EBVWnhWzK0ADc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nu6ZTLcisGlxWoV3Lx3m7AOOYo86cpMWqwDSoQSVkMg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.32.219.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:5401:15c6:5400:4ff:fe23:bde8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "7d9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ukO8pbbM+GJ0+M3//3ppL1+Vt3c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j6te5FzVPE1Xi6IP3MG25wL7a1MgTmUAPuX+4oVq1b0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.57.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smallting22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ujqk82k7+nuuXwmZ9+Y5kFF74vI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1/MdYqeKTE0jMp55XQDBh3GO65VIlpssnpq/ESoC9F8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.204.1.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WWW" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uiV1ueE+uhWP2RY5TFBGpr1vYZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xRV1BaihtV681+g/ytV8jhlh6JpOKcd2IaVIUcfVY4w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:46:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.94.71.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:304:200::afec]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blu3Sun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uhP/OGH3iN8ZxUGIIKnZF9wmvhc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7HMi5IEst6Kvk4LPyxYS29r8XigOLKyp3MY5BdKiRy0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.44.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay10V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uhNMey5o7rNhJNrI6+lEzXL74HU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pjcMdh24bkVsi6AjPt0nyUWDB0n5UKQAnTKoho9Ak+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:33:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:773::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freeassange" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uhMyRxlIXcO1/yWMIWAyh/Gv/QY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jCkgy+mgD7hfB7DRsw5aoNQH6kOxNbarejB1dEHKNFY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:14:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.201.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:82ca::2]:4080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schuehlein" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uhIz3BMuNYzPjYlaWFdDFpVCBnc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P0chqSLyE1FYyMQhGgy/Subd9t1iZ6qO1ygXTgpFUeg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:35:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.92.108.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uhDtLdB5rfPuftUWreGqsI84D3I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LO8Ap8/4DiUhV/SOPBZTUSqiZaO01N1Jk86diVQG52o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::204]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "straDEicebeer02b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ugU8cuR2weudBSN9DWoonBj76Oc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bgEZLd8rvX2JHOlpIOG14Pe14WdSb/g2WCATBgjMJrE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.169.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vanbo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ufafFE31vi/ZLdv55nxlnsxeU5s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DxsEJOU71rxDqSkF2Ijr2T1pg30B23wJ5pTuEYrNvNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.3.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:201:44d3::2]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ufWnVl72dFZBkqwY1t6zAboKFaI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2jEr6TYE/kR8TYFjKVxRSI60Ly18rxSTqhdd4USY+GM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.224.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skiff63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ubrMrt5wK4UnwGzRZRoDOVabrLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fapNnVZ3FthPECASuJnBKi6JGa6xx8syVYN4+idkD8Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:56:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.94.107.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lUniversdeFrissons" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uazjFvkx0J9c7yDHNxz9yGnWaHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "utC7ewz4R9vIXfM558qMh2oi3lWJCJusFcF8gUpS4yg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.103.179.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uahPYh/wTTs6lrsxTSfBS/pUptc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KUXLtEpi8PI+np0CfAcRBWr+rknmJS+t571iYi/5nXg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:51:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.133.210.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:e880:1:f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uaXLLYTWV6TA0pBHhHIh9fuVH9g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "foAd7R8nSKuBNjgWX0kj58a7u8XWuwRv7xuCmIpw53o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:30:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.70.190.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uZxot3rgbND9PBnm9VUocr4udgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YdJd0iCbcrsY+x/cg+JqhC9JQJDb2lqcbxA/Xkw/QLo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:13:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::4]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mobbingsyndromde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uZYsGTrkMT1iXpv7lBXEMGIU0zA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3BXqGrQtz6zpRC1E+4GGoMbU6S16mTOII6ElXWbsKuA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.95.148.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myRandomNodeWw2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uZLToFdzHWHmDYIRbs6wMp18vrM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V6h1wNZecFdgZ+PP586txnL4tSlBOdtHLe8fWUQTE7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.143.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8059 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uXiMRQsJ58Ls1mrXj2/DdZr67DA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TijONyIUJ/WgnL/E/yZ2LtHrCwpivlmTj0GZQK553nM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::9998]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay39at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uXcVyKHucmecdEgPMBsRrAFbTFQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bfEi0LC6hAmMVQBf54kJ4IB9ctdAkTRgrBaK1W3ZcTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gengi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uXTwyBXHB/V/l80VmHR3BpK9p+o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Qrs9NLJLGH6Z/iNMwfliOTax6bL8N3ODc0IkU3tTVE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "42.191.75.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hamster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uXD3Il/X9gK5rptn7YtmgOjRTCo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zNv1VEmc6eUED3PpJv1C9bbjTbuJw+rAPttTjQefLC0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.95.167.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Guy1Relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uW3SABimZSYBa9SCGEKfdUxgf/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/flCXksghzRYX0JtzKBU8vB33AUnr19JTXHNyRe9Izk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.126.9.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "brokolimc1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uWot8cI9+RadcK3gmTvQAzEfUdo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KSQgWd7cw+3UUedm+ob3pQVw49l/it80hHuRGf+1GYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:14:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.11.218.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hooyah" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uWmqFpjztwIK0ulxswBq0xmZbiI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W8MItYzAjiTzANnwXmR5HJoKTsuIGooFK1hRAIT4vPo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:54:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.6.151.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "defconorg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uVaoKpVZ1ILhrP6r2Jj9w/KZEAU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JGsNnxtrAz2yqKaZp3J0LOtAUD80iEocVcFWjtbLCeI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.230.231.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:559:327:231::84]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MightyMasturbator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uU45RU2Ot+bcfI45+Mi43MoAM8s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EDIIAVHgwjNVIvMGqRo0il0BJCc7sTAyy+qlm28GwkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.229.210.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay30L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uTUD1FjZ/pfeXBLSEQgocdCPEoQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g4Y6ZMabKDqedAsqnOfqAhN25Jx4c+dkwLg8U5H4fm0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:13:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.4.135.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c500:2:217::e528]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "seth0r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uSfpv2ZgPca5lrWKLCt6bXITrh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6gS/qL2OrDWiL6BwMBBa94g4QeiidXZ180OSitaiBIQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:20:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.122.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "456f" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uSM1iJF8X2t9p3ERhwcJBZG8TIc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oi6cXuKnea8/QMRjJ0TlZOJrgtvuz5Km7vwrFaL2Rpg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:05:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.213.8.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bitplane" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uSG4uPkBTn0P5y3m5cQx+hu6GpE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yo2Ifg66VxokCdz9aP7R98uWT9rC/fQx70ggVPUKf4I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:36:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.116.186.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2606:6d00:1ab:e701::235a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay16at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uSCOrR5ojp7kOgUVms1GOOtN/Yo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iUiEfNLXB1+fITIqt6Slx/t3XCCi0sVx+GvdrapPT/c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange008fr2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uRoesw5m1SAm780elr/A6WbIPm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K5724z/OO5+/RAVz+rM/fhwNKCBs0/c9wNH4c6AnI9Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.105.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gandi24325exit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uRb6hz4AoaEITbpA3XZ/tlm+o2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0l9b5o2nO//6p5vBpGdxVDefmUpzR3yOF/S3N7CACcs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:08:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.42.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 24325 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:9d0:c8b0:10ff:fe6b:1cf8]:24325" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aplestia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uPrk3jw03L9CV4UgVAigBLecaNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ye+8o9lmhYDajFHhetnd29vUAQSj7pquVdKqgnhNGgQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:06:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.249.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:bd4:a109:2316:1352:1488]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uPLNoT5QgBvB4G/dHKmEredrz3s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DdvEFW6JxVzDSDoQX/AVLG6dICBvT72F0V09yQmMwTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:44:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.223.65.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:154::b9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MalfunctioningEddy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uNxOrqmEYm3NUtoevQO+8TWrK8Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9rfp1dwLUNhlnJfCATsuyBtT2HoyUzaz7ShDnZVpmDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.192.152.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:558:6017:16b:e5cc:c5c0:daaa:dd12]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "soltor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uNjgdEjgQF9CdeUohO2c72P+5KM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v9yOSd+iAK1Ujl8SYPl8zgDeP8wFCikiPskk/IVl0Es" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.55.74.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "memcpy2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uNReWONfYiAbkG7JJ3ldM2SawQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P6OlJwQ6I782M8Z/FGd+4JmX+qp/2ic76G6NFiGpHZA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:15:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.148.237.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8081 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:c001:6eff:4be1:c987:15c:da63]:8081" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay40at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uMnKepCi2UQGxtmJk0DraNpCZbg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mjsVpD28TsqVyrNzZsOHrhUCyW/eW1mjBhVUOpIWRvo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange009de" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uMfVa36Hs5vQh4xdHWkTBZbQv60" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "du0hc/qFv8yTAR3isRZAy2w0OP4Xo2Se4FdAbN4cIrs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:40:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.239.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2031:2233::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pIetr0d1C4rB04711" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uLtAcC568tv+odH1xCU+qtOGmCo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KuvvnK8TGfr6Oh+JVHJSU2iyfHq16/a7N2++H3arJ8w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.189.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uKwlnUABcpl9CBILO9WkCQhBsG8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n83w5AfUci2zv4UlDi+g9/GL1vd2/EW4J2Wn62V65Vo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::205]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayongrolantor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uJHLY3DPfFHG+yTYCUevt+1GPQA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GKfdaYM9G94rkMdZd/44zpBvFbidjFlqrKKjOE10JRk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:9::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uIi7r1lbufXxH0t71BOKwATfpfQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M77fs9qGLYXJRbSsebJuLdPAhgHR72qWqARmf0C/es4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.67.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3006:3185::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "franksToeKnife2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uIINTQnJHObehExaWCS9Hef9dKM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZIkh1xMxsijcLWg/PJ6yLy3XpKAWE/cuXsuUS542eNA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.182.120.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9923 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who8USicebeer41" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uGt4XeQW2v6O1mscgpsOb1czRRg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4Kqol/jjB3/Hc419a9+YYMPn4W19lwpnWZWgCanOQqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.197.160.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8552 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeastieJoy60" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uGE3rpaBcBkBxnIOVcFoBbRr2OM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bc3mdeqS8Z7gJCnfYX4c162SFVPbhSa6lpH/x0OCRUg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.43.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:f48:2000:1031:72a7:e81a:29ff:abba]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mj2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uEmCT4/NeusTDfNW9ZK6QMaGygg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EWyaOQsYD/jq/G2eXm1yafRiDAPw5ezqcob5yge5ozo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.115.86.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mdfnet3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uD3BVY8NNDU7uZLvk6/q/bImpz4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SNiI1b/2zf+E2JsKMG/F5yMphfPEeWYiMJozIU9A2fE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.11.114.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:6b0:30:1000::101]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trustn00ne2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uDeJRmkg/6qkG5IzM+I4OahI/BY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9o9bqXqllDQiqhN7G5i9KSwhCMm6DKsiMZgZXUp7+pA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.234.250.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheKrustyKrab" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uCX2FNZAKzbhuOjY9Pfhw60Mu2A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lEXxx5/fESKQQR7K29NUzqUp/WFigv8s/BXcjafizuA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:00:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.173.175.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "respecttoall666" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uCQKTHFaJZXOVMgqsXXIAhR2i0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gwBE75Kv2c6O0/vVp/CE7/H3q6vCNCtPtq1RfIdZWwc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:54:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.35.162.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12813 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Harlock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uBs4kCvwJr8lkcotc7mc7rA/CGk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j8h1w7rkmkwpD97ZIWU2NwWaAr7o1U1rPweSzRjXnXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.205.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3000::4dc0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uBI1UL5qOf9+wtAVyGdVUXkHVX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nbqMHk/yrfeoOoDzucBhN2mg5H2Ppuy6mfj0K4wWh2I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.95.39.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "p4r7154nRelay3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "uAwGhT980LQ1/sv9Vyq4UEOf2gI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N4lfKwWhCP4wcAJeifyLn33esnQeUTfW9A7MRhrnsCA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:49:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.175.235.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GummyGooseberry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t/kFKEjbd8C5ZyLppHruwlea3JU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QqT9AFURE78Y68E6rzSBsSWxiyJ6qSFYu8uxMp7HBew" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:37:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.199.137.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation56" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t/YKgXN85jXnUcW8pnv9INryYVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tEBi272jfkE2Fp0dgOnd0UqzFPrS9czigxvwhA3j4as" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.162.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex52" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t+zZxqkQoXC1UWV0IEnLzHd0lPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SSKRsoK02J/WhMke6h8gP+BzUi5Vh9+sjbUtn0d1yEA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::141]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t+mEnURvxX1L3tk3uOF/Oqzh+gY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xkPpCEmouHbxgzyK+o2mLAbK+r4TeSwT+h1PrU+KfRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::203]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cogi2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t+PxQviOK1XmB7ODKA4ePvbmKss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0lm7ipuwv63HCgx9LIyVSL3y1F7c8y86iwNAeO30GgA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:31:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.31.116.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shibuya" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t9tJtE3ZM8lktHw5mlD11Q/fkYw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ofQrkM2/vaLSILxRxsa7+x6BxNaOq4X4HDY9J4MEDpE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:04:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.197.199.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 48912 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "peep" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t9dz4hlttbQSnTwFDAY9sPjfkaU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RLsbSCW4aQdQWfRHB7n6FDNJ9hH8XeJx3tdfwi9mSa8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:31:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.201.94.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c0c:6f8c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t78C6FbyA7KODXEIjXHxgG0LatI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5rGoHQfqGKvXmSPtb21T8hPmfF3O6d0RjisHay2BvtU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:50:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.205.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BonoboDanada" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t7lEWP51uSGH2+waph6SjYKhySI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CAoSGwEaK8wmIUpUgNmg+BreDk+Dln07gwcoGulUz3s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:40:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.71.120.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "glowie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t6nz2pL73kmJpHb26LnHC2EW0sU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jkVKQJS58GYhgov1ZMYPFrHG1CIK+AFwwtdt4CY1qzw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.195.253.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8907::f03c:93ff:fe08:4486]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t3a6FXOlVDRCFwpnvcjq1N5zHI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/YtiIF6roAnRn665ZI3HVWDR+VMHkrVUtyumbBfeJp4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:11:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.225.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "movingdown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t3GsjxPbHaGzU88FDEwiwhB7ymU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eVvFMzINRftZGsuDlR7EyZoJNexfnLQKLBBmLkau1HU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.23.203.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fracturedcode01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t1yOAU4gtqN1/j1bAdJVTNnOxK0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jW5Zy/W59J1uNg53q0ZLOO9dxLxl3WKemsWir5roCZQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.82.16.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6910 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EliteZealot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t1xDnzJnh5zi9vne41Wza0SFmWg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UYJRJ8vuhZBSlRdrffss1Fyu0Jd2INpyz5APjCoH5sY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.107.239.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorSL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "t1JtoEYBDPCGaSdF6L0FKLA5w/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xmgt+TDNV+czGKOI6OdNyuSYsmoCF5nlN55sLkJEPFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.128.141.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freedomRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tzf7bL9+UU3Y2LQyoUl7nb0MRdo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ArLdX0tHlWC4WlaxcSqTAyYHBHJaeET3VHajR2RWe/E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:27:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.55.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Maine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tzJ7VZyhUx0YI4biG0ho/Lfw9FY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Oq+K31MtdcxJ2LygpobCHx/J4t4cfwnJ8sB6hKB+Ggw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.174.138.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hastyfire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tzJiFanPsTkmGIQfI6DZ95NasQM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o8kqEKuXAawXLsNy9My4hhT3od+ZUF8naKztGpvLvCY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:31:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.5.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Alien" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tx5oqAxRVnRd3ndB9t5eMgKr0JI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1ZRpIyQ0RoZ2T7k75Jct9qdt+NTOLJCJ90rWD+k6uXs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:29:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.145.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mesrouilles" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "txFySlvNfTBDcSHa972foljDjZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4jRFFZv5/lMcvJhyTlNm5/7V1BKFPxingFy0EgIt7ak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.24.157.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hdjfgsfkmNflnzjg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "twl4ijWO2DXvhgjSegL10dYy0jQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dbECWPZYfNnY7hRdx6oiHF6xR7ftcYWeqWwPkOFlBHA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.250.191.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WestonReed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "twfJhTspWMef/qm4EuVHtH7haDw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PYvX9UjPTrxtHWU0MsnDvPnoUqWtmqh0axlV22SDkJQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.134.136.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fb9f::dead:beef:cafe]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "twR/venFPDkBHKhOXLKo41QwZtA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hjze1dhBgWB5mPZ4J8724UztyUDZwdwWmIx2JUbctP0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:41:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::101]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elhombre" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tv1e8oz0TYgmYMBC09q+dxSgWd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SNhPPM+QKx+TML9w6nIp8dYSXTg18jRYMF1vH3pAeAw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:08:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.151.242.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8081 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sliderzz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tvERMwZ4fU9Y+qwnWa/wsutClEE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gaFvHr+/KFZAsJZ927WkdUJeunqTJveQkpJhuKj3VqA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:13:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.10.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HerthaGresham" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tu18Zvtnr9Bx00CpBAQbHiu6fM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "foHd0Yb77IHgXyqRdAO7Lw2AmWbeVtwIuJF0RuWwdmc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.80.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Neyo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tuQBZ76ELyebEbKg9ZRxg4eqdeU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k/8IGT9ULDq2C+/96E2K0muuRvFgFe8mUlBX5y4fxEw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:39:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.213.31.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:75c0:3c:a257::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ttgRCzS9QBrfhbetByXERcVetls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4fdvz8eXkU00Rv8qZtOvCdy9rQIUAw3vh/u6PtWaWFo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:7d4:84fb:5fff:fef3:9d56]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PXArelay03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ttSRapjZkCfaJdQtcNaG8LNmPzU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CSFJbGmiF91KvXHeNURvYueUgIny9kzHN/FJHQ4gUxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:52:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.62.96.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "monetlemmon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ttGq5n6Me7l2yojMSGnK6WA4aMI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fnyT1d+AmawolBYn7fuAmeZY9xEZUsX9EhEfK1ldvGY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.62.231.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0133" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "trq5XDCyof91uAteKwiVuX/4fS8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sT8LWiEygAngAGXf5Q0pj68DOkIMd8Xg73QcqD1RRII" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10133 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::133]:10133" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TerraDelta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tp8eWdpsf9C2FGp2bqXmHYSTd48" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "le48f5zb3ER7j//b6EIExTr5IZxSwYnzOA6zVVxI/Wg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.137.249.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc24:11:82fa::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tweinode5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tp8bx4q1eVpTEXyY1JBIOkkad5w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UAB5IpSU8zz71VkElxFVlfMSHY34CGm70Q4bbE8AwVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:07:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.26.159.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4c:fe8:acab::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tpP/tP7G1a/EtEAQtRMFhTsM3As" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KZFBZfLU2tdDEDjbLVhvOMJJLsG/edEmXn9xx4r+ow4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:612:88e5:73ff:fea1:3bcb]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sauberesache" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tn6OSzf+AN/wKDqRrMSHIZf7S/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p0afuV6d0TeZXw/z2a++BKDMVArIS3GV61a3k+lHhDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:04:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.91.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18732 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:26ee::1]:18732" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tnxwObBEh4VBKaZrFvXuPP/LtJE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WyWyj/C3Dvam9x5G7sdn6u3OTvp0C9Q0R4f1G35So9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "simpletorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tnnGuIRv7lNpzcGaDS0Db0EA9fo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+lGt1gwrG67gvFPl0NnvmPZSpG3qxYBdeYhHLZbU0o8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:57:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.135.92.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tnbo/sEQnNpCQmrqDG6/VJDbyFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "maPdiFReRT1I+8x5O9esLbtaHq67iGZCg5JwbDRw0Cc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.198.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:9:26:6831:11ff:fe02:b39]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tnPyoBboajHtoXPPPMR7+3IbbLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0lygOpbBRC14ly3Mo59TA2Q+GEw19g4QYocfcijWEpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:55:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tnCwvhV8wqGbdvBDQbX46ZUNRVA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l/bUt+bLbJT2XEF3iaDpQ7Y0ZQOt5kW6jhxq4AsmkZw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay18at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tl68jVlrvK0K9gksczwAhylZ/Wg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kLF9q1Bch38GmhXMzxHfzjRRVrJaG4sdmeTSx+oDxeY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:06:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vps2249555" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tlzpuA775GEziQavVh+HE2A1+Go" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y3KZzwTvMbRgs+b5aCNo8BrOzwmRW0rUTbABQxW6pPQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.186.200.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:e5c::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tknK6nygO8F4ImCpM9qyXDkfXBo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i0h2ywsMJta7Dzi6ZPB8j5vivpNU9p+9lzX5xCdsMBs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::194]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frell2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tjj7wDIXTKqUCbg7XO/7SQbUNDQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ktEL7/h0Oy28dPupBhBuQsbisA1LKNdPPELyzzWVnsY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:31:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.10.240.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:141:282::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PacketPusher" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tjZlw1fxDJz6xEicRDwmUcVgnvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BTzIclBddzYzE3VxDm94x+vmVonHbk7KFBcc1Q8Q19k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:34:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.97.20.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:9dc0:31::c0cc:54]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trumaine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tjYmo8pvBSGEeFPd7G1ARMgLkD4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8RenAnVmGjMyILXc3OPIPu44qZEZYezeJC++SIJUzl4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.124.7.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tjIORKIwMCx7+TGeZ1l6m4eIIkE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KKtV0dZT5JAWS0nP+rNn25IkdiYphErdPAu4hdrWeuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:40:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::e664]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "thrfpZ8gIw616jrLNwH9FXIE7IE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q89Yfm9xlj5nAdIBhnf+MH0rI8NwJzP4+Z96At1X1nE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.247.198.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0167" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tguU/A/Y328tnGEfd/x+9mZGpFw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n03rcXV38Ii3y9q/i+hWw1Pb3gonZ5yV827N512Jg9c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10167 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::167]:20167" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Linstal4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "te2Z8DkfKXatq6zTmkUFQt/QIIw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y78EQGfo1zgXtP35VIVE+ftN3/TFYs93AeyQimCQSKU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.148.21.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sillyotter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tew3trqDB10yYIFQxXlBpDU/d8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4hDXicZJL/R5E1z7c/VceTwF1Wu17Cr4DI6KLGg3nPU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:04:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.89.238.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noname" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tecsT2IhF2cHV3kK1JqMNgokCSA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AElfZvTyJOoH1uvEepGPWlLCz3IzdpgyKZiTIY4XJr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.123.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CharnoTorEntry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "teAbDaVQsViAvwl2r1S5CGnH2wg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IASlo0+XGAxahZVihcuJxqh8p33+2+jHFAXCmcaS3uw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:16:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.149.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:5735:5::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Uncle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "td6Cu+grCVCir7SI8dUeySvwpvY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LVs6Z9cHaO+72WTnFV7DvGbfQwSZ7StQ7dkf5sigAQw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:44:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.126.253.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rainbowdaash" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tdAbIKw9BNw1W27UtDCOXoHbX0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gnRF26+cp5Dn3M8Zu5Hx3qsS3aWwroULfxqM67quy+Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:06:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.182.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor4e1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tc7Wg0vujjjSxi8AzLZxXwRA2iE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4/FLk31djzeDkkhRT4oYSz+L7IRIsSSdUIQi+3OUn58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:39:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::19]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "C00010FFD00D" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tcl9eQKkjlNII3CAOw4By5L+sI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rlFvUfeeGLRMLIP4UGpwBb3KDh2+nwLN6EIeMnmBS2c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:55:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.134.98.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 61000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lagarennePIrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tcY7OsMUFIpoXXz8rRJdMHXl1yU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Dvp5qXn4k8Od6UAoODgtXOoXHZmAhTJ5irxDB0S70BA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:03:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.173.202.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:372:b0c0:5662:3d0c:6091:512b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=750" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maiden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tcNCXI/g6aizPFQ5UeyLhXdSXIo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NldFw4QEL8a3L91DVOokcHN+HgXpHEgbbxN6SB7t+iw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:05:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "168.119.118.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:eff5::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "olanstra" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tcK16To4b1+LLljP5LmP0d66b1I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KlS/MNxNmdH6oHd/URy5TeRyJ94mVf36m1lvRrWXQ84" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.56.240.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "taZbmXyJhYP5xMoW/mA7c0fIlYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zQxPIJzgI4DMvrgeenQ6cumG9kdBM9T/8HtZorQ/U7w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "heaney" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tZTv3boqjxLe+Cff7mmSpusxCyo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "in/C07Z9oOKp0ikaxUI7gP4Pp9gyDBaiKfI7+3nEcMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:48:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.115.241.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LasagnaCarbonara" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tY2DGTmzXELD5Hsff2ab3+Aao2U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4BTMAzKFaSxk2V3dCX5eyqtEvnDa0zaTx5ca+V90BC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.208.105.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mwittig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tYARGFW5xFLrIkynkytibijTwuo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ciYJop5bOZk5ZdWCM5H8o75q2VwGQ6hEAJyZs/yNhgY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.235.146.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:8a40:f313::29]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Paphos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tWuf6T+DtPppI0sXoGDoqOdEbRk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/LrkC9yCvtQUzBZkY2YxIsjhNxKaE9huK6FkOvBpgVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.205.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oniontb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tWK/Mgyb6JZSueFMVLULc4eqDAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PLCZNDjeRtL3IDHvFtzFK0JRF4kA/nrjSGvEMQ73aks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:24:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.100.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:105:9a1f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH101" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tVWM+nClMIWCsldnyWmObb5qkLI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g4+3POvM6JuuV1FbNiFBxHD3kUMTO70Q269KeW6Fl/M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:26:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.150.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 465 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tUvA63z4If4rmm1xFr7nUhf87jw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g9RY4qy3bBNFCTNMtz3Xj0XgvP7NQ2TCOa+vgWDRd4s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:52:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.2.154.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tUFYHLBZmjYmkZbvzG4j9nt1KFw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iNlz7+fJ+btOLWT3yjmJ+v3saJnBLZrLlvpe9zlFeBI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:00:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.96.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:669:582f:2eff:fea5:9474]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dreamwriter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tTa3Gh9VmcOfyLGRXS6+Og3rFAM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JDerdENHrDNcY5XePgPqJ/ZhxkfaTyGxcRmcVNT58VU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.159.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "firstor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tSEttoWioPz7rkJXOOR40SNhcQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9xXsK2aoNxkYpZH49Y8XflSiNQ1osu3TY0u6tmizL50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:20:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.115.97.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:75c0:36:2124::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay18L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tRcZi4azhZwweFfFn2ZgooH8i0c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vY3vtiDHFx/mHOq8yV+9gUdxqUV8aRVww+XcA61ssr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:04:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.127.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:5000::16]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tQqYJnpjcT83MZ2JXqEVHEsnvk0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/2mERqkGD+LYEgtvf7ZEoAwHkvhc9G+oJ7+P2eGasQc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.128.229.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Stephen304" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tQU6v/hFyWsd2PRdzzLmvh5j8Sc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y8tnfsv25tOdevvty2K6gillnjvgjRf+FcrgUFO3GJc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:33:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.236.201.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tOb8emEyKH3vHbqxL1KQ31RSQps" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EFcHPHtsfAliYo9qSTJ1e8eeBykh7d/ReZJcZ14NwFM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::67]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tONUawWP62VabYaY2XwUWaLfjnc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dIgEfKlKrEE51q+Xlho+ln+lZVAKveLXWQBNkM5PUDA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:33:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.225.244.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:878:346:1cf9:446a:c4eb:4548:7061]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "greek" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tNPdvIPjQvQLxaLplyIZ/ta8B8E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B/NjtKb87Cr+/c2iVatpPcWu0tChKif81+l7SfUZy5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.247.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9040 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "netimanmu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tMr9nL+zTsXarBRpINx9+v6R6iA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LQi/Pauj29KchRuFdH1D6OE56peOAxWf31fvOyDfWt4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:10:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.47.233.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:630:194::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0162" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tMSYlmY4TECRQZenZ+HR0pnnNnY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+5Q3o5RHBvQrDA4yFqKkNVYwdpislRKoc8BZ7Nen8fo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10162 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::162]:20162" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "luraleen2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tMOa1GGyGqSNtPs3GwAdkaMEPAw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uHwhTlSNeSdaYmiuZuWHpCNhU8NrIOuBp5z56sOrN14" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:33:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.175.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:53cc::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tLublwx+v7AhBWwZLEM36ChVF8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ky3F4ZwzKfE2Gm3A3ZVBYIgtR0bSX8zjhXHbk6h6144" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::5853:f7ff:fe2e:8818]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VagueAnger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tKIAgtofZrxMMg96YA5U+K7DuAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BNiUaXD8XrMoSz6p9abdgj/TSS2WYEsccn3UxULxAAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:46:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.67.45.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bagespottedtide" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tJ6q5GkOXOdi0d+LAP3gWXCIDq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HPSfBugCe7Hcrn2l+w+vB3I0RBODxkcrQrGAH6knz1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:15:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.253.41.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "digineo3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tJZJNAuqv3Tpyl1QFORRVTguChM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NaIbAGDLhe1M8ziKrlVs57dDbuaM26VvlCBVeJa3gJE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.117.215.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:8781::9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "samsrelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tI8Cp20C+5HXiOpptm0qAps6inw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N0zJxHdgRJ2WOtnsCE5eHyAzGxx4aDTAJHfs+zFla+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.229.166.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PIAjpn2exit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tFWXysHe2VgFaiNFirSvuOOKunU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xQyGH/0vttRUM85V8JIkdoi98aRbN78QFe6d3I1ghXY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "156.146.34.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tEvBlMn/3qvxETwm22B+6x213j8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+ThhHUQOtltFk8OQaBxyTgaKxFyDLSCDb2S+1oH3eEI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:39:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.71.33.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "firefly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tCx5fMjNY8YPtkPoIKEdET309cg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Esw3Mk0Zu3bn9t/FSvzelQ0k58uyDL9mJ3Ipn/ZgDAA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:44:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.23.8.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "traktor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tCa7WS4gAIt+2enXrFZR7YsOs54" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "39k7dRUaqud51OO+gJdwTici5t1eX9/YqB+E89dE4fI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.224.163.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:738:0:600:216:3eff:fe02:42]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blizzardpaw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tCYK7Fbc7MMByJsRfXVMYFsPojE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "58LjJzRjAwJ3/qoqtq7hCTODcoWnpLd6udbB3fbDRwM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:35:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.7.33.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Dipoli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tCU8o4eq7wZB0Opr2uHF9Ga4kP8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wK+ioBvneH01w1fDRBkcN3qaREa0PiRIsPMLybRf/CE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:42:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.255.244.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "diggers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tBtnvLxUVWT0OmvxLRZV9tjAOoc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IR+hyJqcs+gZyjC7vgMefHv4shIcZh/dRQTxt7pCX10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:09:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.120.77.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "transformatorbrand" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tBZF8KbvtUFvNc/gIsetRf03TTU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TF/74p81mDUOxeznB/+/HPjmgUGB/9K8OnOQxg7NdAw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.106.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:7be:aef4:d6c6:923c:e658]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pulsetor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tBECfJJqm//PfakePK8YVqMh7/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m3Ty2gCNEcx2VYBcM0iaDa5eKtVYwfCRwmTmmNPSbh0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:26:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.76.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:1e42::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "seeder" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "tAKDJ1aaBZ0VbA2TuxYINKiwnPQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HMnHIcRJKGYxzRH34QnpyAynVq7TDAKdwegF/u53aFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.183.173.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s/3XZ+7xXdddyNJeX2rpLZojU7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EuKiO1Rxkbss92AWi8SvShwmaS7MVnSYF0mHwWaY18g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:35d9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s9hLIJRR1gioH16HGJznnj36h7o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rp2awZQw8w6byyJFbAByx8U0vxEyf/pWYuXomcK6cKA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.74.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "geheimschreiber" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s9Yh4GAgqFigbDeDX9GaB9dID0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0gqE5ryc88P2Uju5PF7FBKq3LmkW5dwn8AOmv73r2gc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:43:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.52.239.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "punkpop" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s9OYs4b68st4tEf7pGvyZIw/SM0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6vaYs8GdMojLSRScQzXuF0B90aMwD1Ax+zWnjet6MBQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.55.131.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:271:5d58::2]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theseekingchild" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s88I6d9w1Gu+tRZaQtCH2zUidd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eEz76KUlYSWQlBfZhXy7JWKULfo5E9wbmhc0GQCUjeI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:15:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "180.150.226.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leaninglibertarian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s8cvQtTIQBL5gawa4O7TYjezUrk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G/Sp+HCGcE0Vy7KccWg4XtPLulKqvdYRsXGiNka3s4s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:43:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "125.63.1.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AirElementX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s7pZkklTxZkbA+qfxQhLs9tVRZ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eIGirBJ/5rQUx1gnaB8nIFusmkm7u3fJeo9XDL81eJI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:25:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.15.115.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tarmac" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s5vcCkp8ge97PzUJfcQUnwkFa7w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WKKaXEWTP9u96n1GwAYQUxeMk0wOyvcuQFGSlcLejYQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.9.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s4/nVNfl4Vy4p97fiWAN0HPaddQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "04f2QHItpF3riBydFZbOt/qZuo9QseYg28ws2pd40mg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::197]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bonkers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s00Hv8u/F5zW0PRAKToXd4iT63Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+ABsPuiJASGD214d+nfH8w9P4rOhjPwt4faUdDQtiS8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.24.164.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s0zJBWJQhH0ZgPCChbAc8LcYwLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hk4utaDVG7dWInvgW3ENZTiqfQ3M/PV+X5XE/rJmqQk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:39:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.72.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rathergonaked" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s0g28gJ8FOQEBHh2iYa/6oJ7Rig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k3Cff4G46AYJDrtD+ygIk4fOCqIPwL5VkgF3huuAKvE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:11:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.85.169.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ephemer4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "s0Djulh+NkYtjeRNrg98q2dI8GQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y56raFN5a46Pitgyjg0PouspFy/UiYKiy9At9aR83FA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.232.18.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:630:212:2a8:a6bf:1ff:fe25:b961]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kalyptos1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "syy/1kHBrQGgQzEG/hOqpL2fPD0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n+Z71U7+DOJU+/Ks9cA2WdCz2CwRv3FCwYrK2keWRe4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.59.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RagnosystemNode1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "synP2kfKJDB2huBsURI5dWjqnyY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TZnbGaQQ75oSEBVVZ8nslm4NJ4DhP1OD5riRcUCodaY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.76.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toshiko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "syHONgVT1+Hp+hKajR5NbFNaaB4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HXkPyonvUV2pI5NodowaMwhjUy7dBggl7WIgQcoXW9w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.175.245.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torflower" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sx2Jgj/KrDHT4hJ85eyiYopsGuE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9pluqcU+to4RzxSTBgAz8UgrQaBIw/N+wy3ssWvfUB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.2.176.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuantumOnion250" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sxpnenSkdiG8YHOsMgZvhfMDNZQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tekvgOVXLLHIU04wZKhShIZKrh0yP8591QamQPN/U+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.147.122.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sxHzYvEFF2XalP54BInLDkhNejE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r9BpsRLouplu+xeYdeSuOYJ1o/4fnO+yixBcAtoxTq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.32.254.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44300 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 10080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LessIsMore" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sw02+6PdMA4RkWoIbXFmpr4xaf4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+29q2AXY5wvXrVneOABNd739VVjuOkw6b41j2P7Hiz0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:56:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.147.108.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9105 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorOnChene" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "swoMl4V8kmOHngqP0mcoBPQ4ty4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ry9F/a7JRTnlVI/WGf9JTyPrmfC1rTwBKlg7lSDZn60" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.57.20.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mangold" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "svs6MCtW79vwygYehL5FmTBc5Hc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R7zO505wZJHgxHy/VgTWaSJ7zd2kI4B63GDa6sOz11E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:09:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::10]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BraveCalakmulII" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "suDzOxp+cPIXRMPsN7R1+OwHEuI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WLNI/yfeDrL+P3cuI2eyVXFDny0Yy9GLMKesU3RRPC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.49.20.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ecrehd2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sthWC0w26IdFq6smNQzv9iKTp/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pdzJ+kbed6L/07rVeYVMyA0lR8SnTD5oFnAjcfzipiY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:24:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.226.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "randomfoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sr1U3sKC3+XGMvofshlpoXwTgic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aYy+AQRGIqxX9d8tQBEV98mGTqy0zsg1qttcq2Pz5qA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:53:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.232.37.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagaminesConfession" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sqve0KtR+uHX5oLLMYSf/xAwMLM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GcxMcbn4cNqCcWyS5ttueBj+73scFjkbiBzN1eFUD8Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:08:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.2.22.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c021:8000:d00::a2]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "spY2rUyzk7m2sjuCDJmgUBeyqBA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2eRW1XK9VnKBCvCSSY4W4qtVJwr6GCVVoLJ6wYl1fiM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:18:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.176.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44945 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onionGhost" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sn8eh8KaxGTot48BzwtiuzpuDSQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ov5HmYKED1randChcaZUdQJuP+xuzHe0bzCE+uyX06Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.41.231.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "radieschen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "snzx3O7NUPeZKwfXINf2vw7fnUA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZBupcCr8gkdzdHmDPtc0BLQEsDrkXHc4Fjk3zbrYc+M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChillOutZwiebel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "snSoAY9YDKWrGd4eXeZCXu4unA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qqRZ3dFzwSNtRGMUM+2MPXYMurnaLisfQtC+YLDdWi8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:36:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.20.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "snRZnNN/TVssQH3IHkeBNfMpfv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6X3kQGo3q8ovOwZekoRcmRuUBFwmCcInXwja1k8F7vQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:28:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.78.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f046:56c4:177b:1cd3:5449]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheBaconaTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "snEVogsF1AcwpAIBRe+mM4HZ1Rs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ivk407iiJJgmjEQNJM5felF8QIy6q3CDU6mvbI3CwcI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.68.135.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tsarm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sm00XZlvuIAtsUKCv+GiSaQEnKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mjlezLOkzRq+YAmdSJzJbPQjZ8uf55RkJzSr7kDm2o0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:30:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.239.46.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "7d8d64935ed96451d1f" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sl4CATowaTVWSAJ0JAuLOSqwQXk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3lDnCtqOIX6Q3Ew4ARDCnjZc+7RP3PVE5TXosdSFhCA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:51:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.149.227.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:440:50f:3::236]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "slLZR02LNvwSmfbbKchT1okAw5Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IZDfKXxL+sirVJN7FVaqdshrLYwEW0AYfNSTH0Zt8RE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.137.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "qwertz3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sk47s/Xl/OuQkFTmgQFgk+YFFHU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qbXOpHjnCrqyT46vhZr6VE2FJ0+5rXOUsupWuRcoMUw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:35:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.41.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=84000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OrwellExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "skr7SfVjY9t0Fd6SY86hJFX0wUk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LhHnjt6Ce5AgPblAlkGOHnF9DfPVlpLQyujXS5qwv7Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.226.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "amer03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "skiF/iGHTu50vCKMurivEPm3Yqg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nD1QaUhhbl6yNweZW1jAMFGcFsoVhUndwj1TWHKSRnc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.4.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Labitat1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sjgHBMU5R7HXLny802HnOQHvdEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NyCSFE1EpV4Ninx5P3RQw6v7lB+q5reUB0SZdQhGh1s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:56:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.38.175.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4262:1ab:ffff::130]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuantumOnion251" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sjJSNHwzaOw9QkSa/DFQK08AA3c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L/DuY4cViHeXXIg4+bvArEyrumfbdvyjpPJEnzkA/hQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.147.122.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "beattyNetRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "siMqzTYtOGKTMORN7dDqyafTrOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7f4vGWZxkCpCWrNuO4lZ55BxGyQn/l9LCl9p1ok7adE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:03:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.64.108.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who4USicebeer21b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "siDxjwjMDnsEe8ZZlEDsCF+HGxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dNDhoxrbJ+8wb0tPAIcneEcBB0VWxbigA3eBs+dpIXs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:54:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.190.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8120 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex41" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "shl8I6T/XRxJ7kW6doi6i8zYmgs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UqfW1gN5JbMacub4hGq7B+SnK2BFuTxH2dC1nhfK6rY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:23:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e640]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sakura" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sg+mwbKw91SOyENKRvNhFwDAV70" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wt8ukEPVPNKeRsuHhomzXeeoyqAilEhKuWkJmp5zDhg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.212.166.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=87" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eskel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sg8ImpSQLrQ/d2JtT00XrIiLihk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MDDEHDL6IRWBgIVq8Tm50nNRE9xUzctzbf7rIRjabNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.7.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:b107:c02::dead:feed]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sg5dnbUpHRdBFsJuCRemmu9jXV0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7HtAg/ogcwGgLwNF4ZKCOPevHMJ7ozwe46nt/PHKqGg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.76.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f8e8:b7c1:9d5e:ab59:545c]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sgrIzlxdF2Z1nDD2k2zu9Q4/HXw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/VDrKepNeJUk1d8BXa9TbhVBCX1dySdYVTBMSsp6xYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sgTedbNwZO9qTGuvlVxXJFeNCzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dcTl/BeFOe598yhyikbfZrcaBxXTOd04AoUR5yr/Bgo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.115.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:610:510:115:192:42:115:101]:9003" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev13b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sfkm2jiVqJryiGI/Wk+ROXkpnFM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "csKZ+3ILIeaAYZwN1GKMtFYPcnYCITdmlxy7eSzWqKE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.59.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:1419::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ThankYouMrSnowden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "seN7eNWzVLmbaRk6m2zvbknfgiM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "03CrioWK2eE/DXmPklQRli5PlzWJlIGZaLfN0CKN93A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.166.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c206:3006:8483::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange033de2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sc5LWnp/EuLQ8i9oNBAdr/ua5Os" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ljHSwkfy4OH8VZjkEIgCrUoTgbLw4JBICjLfNKB21LU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.92.204.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "neviem" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sc1X6gpjzEXM0U41YM/I9SesvY8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m6TJL02GTUPQuFvEI26NqyFojFmWBAfAxiH6BnLSOfQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:20:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.41.161.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7149 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yetiready" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sbaHw8TvRiSdY43Od93HqqOfKZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tnhdvpmo9CYd2qQzvJy6I5G7/9bvlqQo+U70sEt1WqY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.144.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenWoRd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "saDxFDeJRmqt1frllIyBOFSO7Ow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NWxg4bQ0S+1Wz0R73n7nDyZDC2B7BUneoJmkAa2SmxE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.101.132.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c021:8000:d00::c1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bazinga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sZjAtLjFUfF0+7hBoXJhbj2zEk0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RMDxNWVysc5564zSzkt7iVxW57DA6glhA/LqdOpy2tg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.180.157.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1158:3::2ae]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EGOTISTICALGIRAFFE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sX1zxqwapdan769Th2i/NU8lR64" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5RFMXsExJTcnpF0d2vOO5xK6F/GwS03vWIM/tuqOLCo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.54.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:6abe::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sXxHmIBmCete/wzsnFh2kNnpReo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZSyCcm10kq8rUW7jklBkK5ypJsTc9YLvP5bu+ApfsDo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.19.188.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wedontlikenotseas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sXryY9KPcawE7W0Kfpel6C8t8k4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x1R3hx3TWxsxRIgO5Ixmn8Vo4LwFneKJ1cORcFcZbC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:24:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.22.191.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arthur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sW46OXoHz+SiPmMPxusTaQCDcVo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3wml/dKSRiN4tVSNJ4ILzDVFPBdJQeK58zyVRuEl7v0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.44.81.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 20 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 21 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:8881::e464:4bff:feb8:16c1]:20" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leSablier" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sWv+XF3S926rcuP9QaBicGkSsPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WzFJexVVBTbK78UE8fERY+uQ8y0GoofMNTtRz0FjDNM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:41:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.253.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Loukanikos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sWb+riOWzTpLlMfPBtFTnxcrpA8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a8NLVm6nuvEGJf1dZSwCZszTVuOtZGVPwUrLO7JElvo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.0.36.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "waka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sWHgNq1D1/jSK6GPthIgDmphOKA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xyln8AWliXSittPx4kmxErXn8z/EroDGrPtKUd4oC18" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:46:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.251.55.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:d0:fc27:0:dea6:32ff:fe44:be84]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cytherea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sVwAcer1CKruKdudB2B8hKot3rM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MTqH8uavXrIgPw1IjpkCPecTjhwQQaGgxm2mfwWBhhk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.105.67.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ASCII" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sUyiTX/GlN3h6NOy6xXQ0PhsEr0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u2luIi9r4O9QOcYGkV+EudfLPRlEJCRTRjAXJ6GYxtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.170.128.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wardsback" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sUPUObctI5pBn43OB7io6xtIb6c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g1DMbNv90k9q9/wNIsmb/QEofQ98ZZmNAFSUFb3Djpo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:32:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.129.62.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay19at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sUM1lWDhkwNHgl1EGvkec3pLnfM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OiOfuRkBt2doi36eXC6aBi1Gu2dD1JzFAzGiqD0EFjI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:06:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "porte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sTwsVp8/0MUwt9luX/eTPfeg6DQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MQYNtp45/fdz00XSOyZAXTnPHc2q784BAoCXsw2/XhE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:32:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.208.144.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:8740:0:3::13:4008]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedelkiste51" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sSfeS9w8zoVkyErWt6S2RJuQpKQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZXso8OUo7zTwYHIrlQe7hRtR/lgiQ3LamZxBkwR40UM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.128.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:237::abba]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra40" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sSU28vG7/gtH+q0NXQW/rsbC3p8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mbHCRUy/rt71CFlGF6jqkvGcS7DDYXRPsSZ1hXAphOE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:13:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.30.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sQG4Hzy3woSt3xnNu7zwSgUMYG4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TXFJ8XV2DsN5OIhGnMYu7CjF8UciFTeFmSrLfWRgBzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:14:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::80]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sPWm+b3iGu25Ku6lvJ0CHLlrfcg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Tip34R4lLT5TaOt6grtI9jgcILvrOsTGp/19E5qrFGo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:52:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.192.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "root1Moh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sPR5p3FOQw+v+jAHFiQ11qPB+mg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/RLdiSQ4fLEGcvJ9S+SDFMd5pWb7oJAKb3OKuuOnNNg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:02:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.140.14.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sPHVRbmD5CaA9/Igpp15/4IcUOY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jZXHPQMXhtGEFCQ60Az/Q5kazv26AN3FoNj14M3kLg0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.106.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididntedittheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sPF6VvqGhsyzPT8wL8QPBvRjtK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ubH3EZcC11c3lyrbUVhuk3jc3PGJakaIFaKIU7FANSM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:44:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.93.169.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SkyLights" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sOk7EL2BclCoGKv39cJESvNk3Wc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "59ulu0LGGNH7APw4r+AnxNTMHF77drkuVqYTSvDjuYs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:29:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.237.206.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow005" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sN1Se+AYQtRgMCZfvZkoIXpwnyg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ar0urT1GeLQAGcHIIdgxztuuw05d1vCvdBLW6AXZGJY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TARDIS42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sNsvFz8Ns2S6v3pGXXlrPASPHzM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VtGuh+0C96nTDRxp1tPTTTwtpTrczMrOR6ZRNY1ZwT4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:35:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.250.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:803a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sM8xMagJf/r56bVFZvEqLG5WDEg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N8Hc8liUzHPNumyrt6eoCSOKY88AHuYjHhEZO641540" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:35:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.185.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:9d5:84d5:45ff:fec7:6887]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexColinNSarah" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sM2fm1tgZRrcWRnA8eqofbodkkk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DKRzDlEYDB6ZqNIfzjwt84/tEgawFTiRxVv8ejX9pqE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:40:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::111]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EnjoyFreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sMKsST+IBpIP6gBClTMpIwnuw58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iXXxF62oXEuJmBnJ9cWSR/B/55vErXnNtueYUFIiIm4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:38:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.41.84.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor70IPConnectinfo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sLXfMkAW3N3iIKAfowlUXKYWTXo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kA/C5FDx1+Cq8/ZLd7WzAAFQmKgPjLgVctyHSv3qL/M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:06:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.5.96.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:440:f240:194:5:96:70]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Reichsfunkmast6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sKE0yvRJSzkT4F20Y0djPZxKios" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zCwYnhCplkjeZOJaTWwW7zKBAMsIzZG9iTbgEDmbMrY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.213.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:7c43::70f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "XFMRELAYS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sJDGDM6OsHO4lxHfPZ5EVQjGaZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZTNzN3qmSzxwYRCYBMzpR59j94yOPO37N7x209+UqHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.214.144.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:9000::94]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lokit12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sIm+1TnM/2ZgarbhIWolkBx+zm4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ea74VKXrF+ky+fY2TNWP4tL00f8BW+o6SmCSjt7T8po" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.254.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:11c0:1b:aa2::5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorExitMoldova" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sG8JOj1N+tPpI/TyinSQG9T3TrE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "goRvR+5/jhm5+8egnJ1Ob5nJtdECPPOaU21W7AtpcGQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:37:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:8b::5b9a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Schwurbelingen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sGMCumv7VQwug8wkmmQ3vzt9fWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ti253BzFXBCOTDkD9pl8kIfxqylpAv8ZBgQfEHUk+nU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.192.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "coen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sFtLtk/+U3Pik9LACHmPupyQi7E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qhkLa0wp8Ly9TTSOjqSTqmtIwEntXf4OatT+JDZOMyI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:48:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.154.154.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:b107:c03::dead:feed]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ipressedplay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sFj73qaXdMKOrBER4We8CtSpBOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uzAAJgU3agoNb6hR3ManlOMSoO745mNGgSfiAVZgd8s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:17:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.90.195.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:82ca::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GoingNowhere" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sFXBf3mQRaVhyysKgaqRcnFY1Lk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2zs2hpjFTVIceL9xGUGN2AH/n260uSApdL7zhgGVnvc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.164.210.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zwiubel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sFUxdarbBQHlph/GHOo5cL4TD/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p/otTLGt+jWF8Jfw6weH5IqklrJ0ck5Xia6YZ0xsSZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:41:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.115.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c010:3bd0::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sChweWnY7YTm3qWXqIT3iq1HGXE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "263xdkCTHBp1jBwSQcSgixYAyPfNS4fiD+KuvNP92ls" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:31:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::123]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra50" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "sAV50aI/H/sTog/WUOpg02fzZQY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NO7PcsOxWQhbTjAGnySsbMvkTd9tRbf6pMfJQERrfDk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.188.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Yahta4ee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r/0UfbzAZaXO9yWLwTZ8w1hVpDE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MlCyquNanySMsfrv5eeB1NF9uSSqI2qLX1SkgnbIw90" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.156.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sulaweyosrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r/j01Y4qX+rSjR7Uo4+41g5AajM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kWOKm2sWMnLbgX5GGFxp624Donvk5oGiUZkbCzN3qzM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:45:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.146.66.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=820" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "osterreich" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r+rzqeDbHYN76P8Zg7oMZaPnHXM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VPRCuKQqMIr5hC9m+iMbEDIUmE/14YdCKyTLp8d5b84" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.167.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thicantor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r9hITw2E+V6qEdYtgidn/mOBqV0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iuOFK+4YlUhReSdsmjZExrt3rllwC5fit5rZyHdyV+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.165.6.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:2:c513:0:dead:beaf:cafe]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Saga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r8DJ6uwdg01SAWZjuKpyI2jxtZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tbW8ZBtUlevBS40vhn79OxxmIYTei7I97XBYcgqPDg4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:11:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9009 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WGL4Freedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r7ZSL51SmDC8cE6H4D44HlaTuUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MJqdStf22I0wo4wd/UdQTaVw0TRvY7qum0TiSQ74dpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.148.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeerWienerInvader" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r5r5/CAY1ry7tXwvFBF1qlX+YhM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aYTGkDRcRhsrA70LMR/YYulSqCaQ5/UnnjlCS61z3Lc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:45:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.247.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notoloke" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r44thYWWV5vozEhZXBqwmOW4Pnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6FuCDMEzXUd00ZJOVZfZ5DTrK+VVRVN9mcxtvCKYFy4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.112.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NLfreedom1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r42ydZYCebh/CYsWzJx4CS4RjbM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jvJf43X2J/mw/X5pmfY1aqwt9qAoBOiMLxPeNIYfqTs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.251.167.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:6340:2:501::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tashbacca" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r3gbx2yX1jcmgL3GdaK+i+51vTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Miuz0hfNTn9PfmuyAVIPWtmaJNqD1lcxYyppkTMLyMc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.98.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:103:234b::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r3CUtihk3pQdzYii8Nuv7POZfkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d+LxcgFqt6NoSkBGAnzB5UU2mHotTTfZlpXPC1Zd4ws" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.114.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:928:dead:beef:ca1f:1337]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnonymousNamespace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r3B5DB5qNSFA6wOcFsqm+Z06Wfs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jHl1SgWjGhbPbp1eLVC19lQhittuL1AVAp7H3q7pO/U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:55:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.116.25.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:5a80:1210:a800:6af7:28ff:fee5:6b3a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cerberus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r2v9EBwNtXV2x2fkinz911CQZyo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i+tFfQrZnbiW3dLaYfW8apHm2qGcm2XFSyf33ijUUyo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.1.12.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:770:21:193:ca1f:66ff:fec7:9862]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=76000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex97" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r1cnXQZ6zx6t5R4yhgyOVpGQuyQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tDDKMFIdnQd5DnR/+0NHP7iP2MXF0i6sIINCnouWaXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::186]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DuckYou" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "r0mXc44M/AFM0E+wmmcNLF8eeaQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qDzUzfxFnEJ7ObH35hCL3rwJMtoCzObZSUbBzXbZhx0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:24:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.191.204.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra31" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rzUR+otBjHVr26l6bt6XDR908n4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UQ364sEFCSObMzJXQXCwJkYQC/5GKeqCLswSrPtItmM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:59:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.11.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "saturna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ry5g3uqZcfaVakbOC2vJTvVYJA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DbDJVvOEqz1fFpCsIbK6uw6C7dTfkI13yB8z8Ep/8xw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.255.215.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7654 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "justinjoker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rysBTL6Y0uZrKIMjtH8ujd3ZkE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cUC3EhzOZgVBmS9HNDnMZBF65+lrwme9xOoJO2ocuLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.166.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:42c6::2]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "duchin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rx8VgZrHZtZQiisF2piematRH58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FIp0i4K4COiUaeNX20tcLL2D1Gfy4gW3OgOvoJZTxHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:56:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.5.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zebra" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rx6IsAWCzYLqtoxQIR3qR0KdXos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RNDjYg7xpj/4x0JJ5xZbgYJ5ouwkbiC/YLxDwqjMKJw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:58:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::70]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lonninator01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rxhSqs9JB1XtAKJFRhjIyNFy0wc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R60j/VBCqTwgqp10Id4tousJzvMTCVCrPG0Hj+RpUX4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:21:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.61.104.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MidwayStation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rvbB+6D8FvSTFji/BlCFuXTT6Q8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mhhPYQ5YGta7UovN2hnl+mfRGoXskPBaNDdEIyiFibQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:29:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.32.233.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:5377::aaaa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "glxbltrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rupdjLLqGb0XrnBaaOKUqybyeaE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AKGyZ9uqcY6moyTdvaMDV2Z8xCyNSKMba9gQNsavWiE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.15.16.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1c80:1:1042::1009]:22" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "str3DEicebeer64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rt8fzmoc5/qpJQRjdXt2hgrlgmI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o5DTd8cP8ypjdyBpf8laEyIWraSUAlpFVwGTgRDbgZ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:54:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.199.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8064 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:436f:5800:c550:adf7:932:c52]:8064" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "linss" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rtrHCBrhS40kHs8P8XooWKtDg9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3j/6Wybp8otVD+sHD5AVW8v0rVH5P/8jzi0OlLAz4pk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.108.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c01:e000:131::8000:0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra91" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rsjVRd3twDEfp/n5qIXWdNHxwv8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2oOP5C3lg8GbM3xD/hqKdoVR9q408YEX8X6wdy7ZWTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.171.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:125:171:0:101]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mustang" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rsMub1oM9DG1m7PqGJ0Igr916j4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nZBjJAvc5jP+Ic+6wD+WPlkz89o8hPfX2a6ffnI1iUE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:31:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.135.167.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rsB0B+cwcbhung7NwTwD9aOswb0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m6tfiEAkuevK0NZzVqzmjRKbP4mBQrBS2GLLo9pJ/98" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:58:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rq5M4vsMtz4Hqu05o92O0Y3iK5s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t7i16PfHTn7SRcgcfndPY+mqlBy84Jlsl9J5W4/q3pk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:53:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::56]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rpW9o3pbtGhf67fwZknWzpSbUxY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I7U48BsdQhbr6MxQMtvWpvTxN3634kviC+Fkp9zCdWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:38:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.31.229.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rnol5rZWpiUNn+02LlSNXzPmud8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "thzj0F0t3Bs4sxr6x02dFYsfOVqjqrE2BBtccXCi6W4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:19:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "59.106.211.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "1blu2DEicebeer73" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rmzitALCkw669ZphboCtQ/erEjs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oBqsEO73/c0el8WaXzYhk3rJIyHFcscx3UTFJSAb+Sw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:47:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.44.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8173 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedel21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rmqMGOdJm1hs02JGrEvK/7v5OrI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X1wQTWQ+hSSJv4qyUF4S3sACpAoXdPQCFHSoxda1qhQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:58:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.128.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:237::10cc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=95000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sc1ptk1dd13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rlv9LPo/73uRBnvh/LILYs07a+I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fq5ikX85o+E+G5k29ggICB2DwtRuN/NgygltoE3JR5A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.5.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:60a::2]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tadpole5643" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rlQdBrff/UwqJUIDz8QbnL50sFQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+hJNbgumQ881tGL/2V26pMipjHfjaH4bbpSvLBGD4kM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:00:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.191.39.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:5:53f6:5400:4ff:fe11:b4b2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sinkrlogin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rk+uLrXcXQeEWPD8vys39dc/CGg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6HUFD8rOaITd0O7Wsk/AaoRjTOgz4jmtkBWPKjcEp3U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.198.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "umbriel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rkB1Nd2Qj/w8eg+EKM4xUZYlRBA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eIay5e2j2Hi8UyHG4LdIAqtRJ75+4h5UrnLLlDC47uM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:78]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange005nl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rjw7cWW5EuGqXsTxd8qOTafI7Bg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KmTBlacjJrhxLenJLa4ivs1r7n/ASSuYGfX/LlLzOt8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:04:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.4.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "south" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rjN86UXQaZZP14qU4dMqqUzX2sk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QGFI8EbTDBshVeQsDkjh7kMbSjwguQtHsxRGjFMABCs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:28:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.229.71.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "6329cogwheel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rh0+zLkn8P8e31nqCrmU/nUcVYM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uVCKTRqTl0urn77u5j0onLBq4998lUzHyUlxCdpHVOQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "114.34.165.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gayming01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rh04a8rVcEu4cwCFCUAsRXmByPg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w8DD9huyRsyIKbfDCBwTFwjtlfYYTWKW5Kt8JKfqpfM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:31:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.203.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1801:229::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rockstars2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rhsam0Tch4IdafBNxJM97MVV5TY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SEKL4aksiZzYmPjaQkf0p2YMBjjSGGm2ZHCIUzBCo88" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnR30L2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rfmhauhHjN0gPKNmSpuMo+OLd64" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "crkfJYos80mOHkJomxMH01BbVxpqSd1SgyYhCQF3KNY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.4.135.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c500:2:217::e528]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rfDVGUbaMpTB8kKwrK3JH/XwWO8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kv1B7lXkYQtR6OJZYc+PIx03qlSrSc0plrK5qosnIoc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::206]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MichaelAngelo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "reo9Vgn87B7y9EJsSTE+uC3+Pms" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ySiagQ1Fqwqp7FsBhO1M12v/rpetjqPxqMHuV3ufi4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.40.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:120:205b::2]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=94000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "l0bst3r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "reHP1ppvu3rClw195OQCu1Kc9i0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6/DhB7927kuA/xWT0ZjGXQiO9+SuDnDbwKH49vB6doA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.249.49.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1ca8:2e::c80:519b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vaN1ph06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rbuImo3LLmDwAcyerLw3rdhEw1k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5aQeRuucSnS6qFMvgZB0AXraSQWkhQClL5YbS0ZYkrQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.214.35.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange008fr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rbmLJ9ej+1cyBo/SNgKhvLO+nzg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gryDaI25962BzoHG/Vh0telRpE9XzZp5gngW3Idquyw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.105.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BerlinSpechtpark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "raqwD3E82RM+tltKr0tV0u5qPMw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OEEtwmazkIALt+HADCWnW0TT2ec12YG5YRlevWBhA30" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.144.172.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ralMSPLZoO0K62UxHA0dXLOOE+I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RzWQxN6XMDAj/HbAiWt1Tvw5lvxw7H09Cx3i8ZflyuY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10135 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::35]:10135" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rZsiQ7gSP3OtBbBd1D1UImdW9Kw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/t2IVl5hVuTTPUVo+fBRmARp0mOrQ7ZG32Iz+guFrwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor1e2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rYbNGklXPVKntvSjV1DxYarYnIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fVwMeziMb0cNGOryhLvc47xaYTggecc3a6xb+SXe3Mw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:34:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rWREwCgP+8UeCIsqfGi2P5EXytI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NJVVmWTwc1igJ2F4IplnOO/nBU1LYu9djs7acEO+UGQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.183.87.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNickName2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rVZVXDzM6epJhylnsMkPFp5+t1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tdrPHjCJpcJ5MVGmhgBgCLWLCKD7fE22vQrRwoCxNVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.98.22.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55555 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sputnik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rRlJDH27JtOmjvyCT2fmmwqW5gE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i4YXGQM2leJaeFAMM3t0X+I0VTx4nlqFDdOLP5LyDJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:03:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.128.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:221:1ac1:dead:beef:7005:9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idideditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rRR5htAz351GmEYmISqyUQ2WNNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "33X/jzIxPkAsWRqJFyaM8Rq/Lw2ZOX7bgCpfmGGONmw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:13:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.198.37.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torbogen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rQ/P2D6kiZ2zRzXlmXAVkt6hNpA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H8RF0kORZLDwELk7RjVxCPmx0sMoIfcT69OXp25apCk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:45:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.197.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LutziLebt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rQ12GLbnpNElq7B7U+rLIUb/yNk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vDYTxp0u4CkA3amG7szE0lMma1t3IZ5sdRm4T1afBuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.0.64.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NetherStar64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rQ1QhpR1o6I26nq4UsIVvhGlx3U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hk+loM3R7vMp02jIEc+vLy8THveePCDHq0eznkYxTBA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.93.80.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rQhYSsaipCHa7fIn2m8N5T3+QLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+MHZ1bSii96IGTpRhHpChcud2nMAwAXLwp6UTMu/Zec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Raphanus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rQZS72MfnJnOfOIfGhVq108n7VY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y7VRs06eSspR8Iseh9KmPU2puYAA7OYEjrlOyJOvSgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:40:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.215.1.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Alexandra" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rProWJcXs/EXZvDegmQn6PpAWL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7GHwo8qqgGvet6SXNbbDZtiMz69lWV7ah/v1Fdaxab0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:29:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "189.147.190.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mmagtech" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rPrA6+c6oFjqFnUaFp8UpQLjbXs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9LU6hRUcF0WqN/tnfT6zSZIxr1aNw2x7tfYGzfh6T3M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.43.23.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorDiversity" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rPj8bBQDKgRbRPa5hSXuXARy3VA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l0ik7cgZzB85NZ1hoHukoWVvcgiIaaL+Ee4kCoeIqf8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:07:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.208.184.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eggu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rPiwecBaMTpRINVk3q7/LXU7GRY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aG/2deUjBRuvVRJz3uoBIV6FZFw2uIbpqPWbzm7AKZ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:07:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.76.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "laukur3000" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rPf9W3NoG8AbvoF2xj5GdbJ0ER0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hbwtKdwKnUskDCOlh+j1aMCgo0hEEcYk7DCz7NbrfUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:04:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.63.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8901::f03c:91ff:feb1:8ece]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "qwertz1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rOQghyrx+KfgZEA9kmadFMXOdK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y2/ZAg8MineVa1oXKH7zRh+HzYlEJTwcJuiRv5GEcUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.233.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kulcosictor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rMh0rW1NOsMIy2wERiChWaESMZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PPxgU62RDMX+Du0nCwuM3St4oCDlL+ZjrhtV2rebmu4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.190.168.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "centorLyon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rL89UEz/PXTRmRr99qwHBgYjKxA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xm1uvBbrCW1oy2HH5IM6CvgZVwjyxMmrbViBBAyH4Do" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:25:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.20.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 59001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 59002 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shadowfighter0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rL56IiUZTgXCAFGylI0GmpeUgC8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9qWHh6X1n0sBDqRQ6fku+E2hB6UmqCdpVnJtWCyF+TM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.148.245.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9025 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Planetclaire62" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rLu0Js4dBkGlkL8fwc8FQW/A/28" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uUitGUqhl/sG7KBXa28Hwu3IZM9dqaigSSrgIVKqjm0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:55:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.80.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2efc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torgate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rLWczYg0AK5QVsI1G4ZRaj8wWIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hNB4g8jgMICusOkjvqg//MiIq5S9pta/IPEzm+Jm/DE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:38:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.235.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryMay0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rKrhcIFE9khar/1Zw8bqoepKqrI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W1PxoPpsyTUNZpweIREnnd89bWAUzLHNwc5JbKIt2DA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:04:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.32.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:221:3641::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rIfbHZZTYvvLn8i6MphnGNPsarY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "etB/vQoldARlDZ9QYh6hm+JCIFkw4VojVpxsmEhlLko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:07:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.216.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:216:0:91]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "churrodawg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rHyI1nM5uQ8sEP97cC3LHvO41mM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6CCnry9xXklDXOVHBLk3VP+W1pT4q/+onmriVb6kTpo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:13:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.196.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:172:3e99::2]:9993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=84000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rHwPnVfa2tXY9FaO4VQ+8+IqR84" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yqp2qqq3DagM0ljPHMD41FyjkRmLBXfdQ6lnqM95tWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:21:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.225.244.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:878:346:1cf9:446a:c4eb:4548:7062]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SODrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rGM8kOEm4LypbxTs5dIitYb6DVY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P4ub4q0CkFlgbHiYp5saq7V5OD6yVt8Km7kvh0YCY4M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.92.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:252:3df0::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tortempel2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rFrKptkbcXLIgM/Ew8JrYta6Jn4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fXBSrtJndHty8Q+bvBrX+ZwAn6fCEopvhRCZhVeOoHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.31.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9596 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "benignrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rFcZzm8icWYXwKV7m5gBMby2BfU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IolvT69CAEMjuse3LQo/qRWh0bLLQ0qrnLt2Kd3VdkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:58:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "118.99.13.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rEGj8y1faTcGuSBDGBYZkKxRaI8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J7lvPG6B8AikQBX99KQ0F7r0ppTqPA4eldwDlytjmmg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:27:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::33]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schokomilch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rCvt0LrHKDjqfm8RP4VsToAYrNs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FlS/DS+hvGww8QlMkU58UET2GRqmrWnFhebONiBdKEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:00:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.10.107.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torcz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rCceczBaCdcrkCWii/eO3DM9yFI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "69EsB1Tz6jikiOU1Z52FntJrKkVfFIfnjrlNmMl6Ks0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:25:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.211.43.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "rCScVsEf3fqejeVrGCsTrIpGcr4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QG05eNVxwYXNjXqYxlZYB6GOZf8rS/ojzF+KfCZSWzo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.51.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q+bGW2cdDmDso88sOw/+vVImTwI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cdVKe2YvpyvNJFcrCchF2wQZOJ91KG+kWIH2N8BPnGI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::202]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "millemille" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q90lo9b80QTxPwWgrrYCfOMrehk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HPW4GXZsSt7KruDdgjq8ZStc0k0UiMwd5P5Q6Ba2Fk4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:47:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.41.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q9wlIF5HKAnVQCfpysRniyvPIz8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PeqAxaOLAreLl0P5s37as3UKrwLHz//HtS+qafRq+kM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:44:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.178.169.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q9nUbDwCbPa4hXSgcH0L91oGeZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IKsycsQfkAyzetV5j/wwF0zXNTS0bBKMYXzexPukN24" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::1]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mevPLicebeer26b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q9Y3xPqFykrybgnKhPcLOWYD/zw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ktn+lGswnpSPperB/0h3Kh0Xv6VVKh5dtkwx6E1q6LY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:11:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8170 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myQWERTY12345Relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q8vhiUStPErKgx7SSOtsZtN5Jrg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2WZRVt0J2S6GWzKQzovhs8EGQYIHtTScJOPshgicFRc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:48:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.78.178.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Playstar02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q8WnptXGCVEvXXzStJDOc2bwDWA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dF7czDcq3jQsiv9o1T6CcHKcgxjyVbh4URKdxrgW16A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:12:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.121.44.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2af8:0:c4c9:3dff:fea3:f4fa]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bergjuden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q75LTB7wGzwXZe+g3sETyoMZRvI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jtvPvcvzHkPCrEbHR/GX9rIN26Quy+/7M4W+COQuYpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:11:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.198.71.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:151:52a1::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CzRelayFuckPutin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q5r6B8MSwJiaFa5j3FoA8sypCuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i7DhUJbzkKCjp8i9K/nuRvEmfWnS+5m1S1n+rSgNoxg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.202.124.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv24" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q4uPZuEpizvlF2eJoQOLk4Kw/Fk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cYzTSCop1gcQVmWm74c/6EyOUfmmQbPvqT4WGu5hzj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.224.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bunnyriot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q4cM8dwwUM7Uma/ACLv8J1ZLM8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X5R7QGxloarQRFs9w69OLMyoZ32IOpUHpEwGbqos5Ew" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:36:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.233.71.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q3NmklxEZCTn7jMXm+q0sS2GlrY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+p8GlMCssWHiEJlyE+iK4jq3B4Ne7MwGc5gOVRfQGVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:24:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.49.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YoloRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q3HytqFSh7idJ6UrR9EQaQy3I9Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NO/eCFt6CRveM610P173yOCogz8XCdlj5bblNcJuoqw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:18:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.65.148.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39185 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:438:9850:4ecc:6aff:fe3c:b8ec]:35433" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "neuronMail" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q2aQqvRfU/fzvIQuI3efJMk0bfk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R0ga3k1RAilU7EZsrD9AizNtpO8FNGlKt2KbaI3DsPE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.76.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mikoshi2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q2aMtPKVPYecKxre9bbPsyZ7gls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5A5lM8BslF+wHnnWSr1hftVcVqxieX/zTsGO0B9vK9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:45:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.157.61.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AaronSwartz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q2ByFmNmwuJF+VkFMQQxNXtYH5w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1mkBhGhxjqO7416NXvuwYX+IV7WG8h31sDjeXGUnelg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.178.168.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:1700:c0:5678::9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gaciiz1seish" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q17/+ajmyMLveNX2UH3bInjKn8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cVex0IRdT+fR/rKLR09z3BgI0L0TJe371nhMIjwjmBs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.119.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xXxsussybakaxXx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q06Fb9/7qI8rV5wRhIbn6Q7N8UA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lV8Me22Y79b/uP3iGdo32IUsIJQhcOdKvM+qLHYA0xc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:58:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.146.138.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv118" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q0dh4jr1EegwbpXnj36C93suSH8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HbHRz8kFedkbwOsgFUTJeBT13evtWhABtR1Hw6Q2QfY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:25:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5518]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Eva" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "q0D9eNik3lMPseA1XnTYA2d4Rhk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q9zKDAXORuqqik2X7T2mCH4h/ZLOAGAdHCMzF8trWq0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:50:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.164.230.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6969 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 42069 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "luxurywood" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qzIn20cLF4g9JNgw6oTr+9x9WBU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TtcWQ/xrdIYdES3YauAZvSXHMJWE+yxrN9GdXJrRUco" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:09:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.192.255.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b:26a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qx/r9pgi9KoULHAxkk3QhJbL/uo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g7/1wfa1V99b7Q5ahiGDVkhKVUVKXMnp4CJnkES46lk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:05:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.238.182.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QECm2r1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qxgQOKfPghbga8yIvULng9W8C0c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nw4tJBzon39hlyUwf4A/NOzgJDav/BTnDyOi4+TSE8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:37:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.175.14.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HelloPerson" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qwj2YkS5O5Xf8gmOpoh/+JZExlg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l3uzHT3AetOGFLbUbzypPoCKI1Q1MjDIyUz8XkO12hk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.38.176.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 13373 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onemoretorserver1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qv+mirYSOPkES27Lpi4lJkET64g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L6PCU0faNrWdoU9DazS20B8tKROXIy4/fx7gUj3r+eA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:48:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.68.106.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9050 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3005:1808::1]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jceaonline" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qv9KmXVD2w2IH08RY4SFt9Rx/s4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QLLekP8bXyCV0IPSWmL9y45vBuJkZt5ntyBRXn+2QNg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:32:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.34.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 47168 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:2ecd:caed:746f:7200:746f:7200]:47168" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noob" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "quhTTSEuelzw+ZeTqPZa2RtSmSs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YxGl6gDUPJL9rK2sXZVbCKU/UeY1ge0JyauZFiPqqZQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:34:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.234.41.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "strator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "quAVxvE88G3o/SjbkDcr5VyKowc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JCIQmaQH8yl9kQfuOKP+502eziyBzNW0GP8faadulxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:17:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.240.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:43de:1a00:7fbf:f902:d7a7:4f2c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NicerDicer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qtH/5EQ1J3tsC9xlaEqDb6NY8nc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QjvGZVLAUL4jZrjd625A1GPBl642Dm6w+w0ibZdQZYE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.181.29.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber28" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qs1OCeZboYyvNfvIVe9llQWzbp4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rMV7BS6TBOVBBB5QJzqoFAispbOa+8rOmadd5S/T7Rw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::14]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pi4TorRelaySlow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qsqHfodovQdXwYkVBqIAPhPS4Q0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9ltIzrxUX1tqLCglYflj810SxWv63fi1nAcBhVLQv50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.41.140.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tonyTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qrb4sDvOL3wYU+iv++uzOSoUO/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yMqrOPr4jpxUrxzCzdVD6WeE39pWZQ1+AlhmEL5ytBc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:28:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.226.78.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qqslGcJ+9ofjIW1YjMLGrMOwUaM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2a0o7hXYj9BrR3L2z4p6YH3Q/YzsEO6kMkZD3U8KM1A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:35d9]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WorldGate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qqRN4PaRrJp25xHirvs8hL2Sf04" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QyzP9AYTASadlcOfrEwWk49asq3AMLHCFnq2ijIGQu4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:40:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.202.188.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:cb14:b8:df00::19fc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "larrabee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qo61rT9uiX+fKDsZn4VKyk7vgxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dPqtonCnc8s4/rUB7BUEP1W6h/HzD4kWigUj5J4UoKM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "110.4.47.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "indawoodz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qojU9bBbTnsgDiniOlrhpvwsen8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XATV0jA7W0xXSmOJ8i9XhWcrFoRrxXFjdsDUCvJWQXM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:50:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.65.151.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Magicland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qof0UqIQZDwcEupsExI4v7M926Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6p8uqoWXrJbsazJD8Yz3bMuGuzS+i35ISYHw2AaaAf0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.215.185.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cryptornite1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qoXU4nQy7PXDT2SvNbMjat5lOP8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JCBHubLeRyKoSK6OlgBDowVKHXCRbjbn8WRNbuSNzqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:38:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.116.129.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "R1lyeh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qoGq6toS2OD1iou+1c0B1xxOhOs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZZ0aPoFSssEoQ0zwwcV0l0FtlNOA0+erk08YH/16ms4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:00:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.98.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:103:2e34::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bigbaddie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qn8oSBPX1dZzZ7p4ujO33HTweu4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p0aJE2QNebJPZ8/zvs42idwxmgxrJf9utMNTXGEyB00" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.185.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JustSomeRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qn1WnFL6RNeSG7gRS1AEToDRefg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+AnhM4CjgE0jiM7uYlwleU04YD7FesZf68nc5hHO83E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:36:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.90.7.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qmtY+f1R+TLhT3vYezs5QwNr74k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nWvTD6xcvlB6r+T1N1HQG5oRXA3ESsjNQfoC8B4/iw8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:04:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.90.120.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 37187 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "roTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qmFjFbqXcp6kfa2HGPpZJpxyKec" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1KgSgxrOmnseECjwJ/A/aPqTZdYk2s6iROZCd4ySQOA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.105.123.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:578:853f:1500:ae1f:6bff:fe45:cae8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "opix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ql1KrSfyVHVhG3Mi6gckofFzn4U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UCbk2y7ZPdn0+teg+kl1j6cEY1TjkG784+tpvv/9CY8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:09:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.19.200.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44040 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:3580:2e1f:900:f402:5eff:fe33:d21a]:44040" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qln7T7KnQQ7MdlilhInJ1R1xhnM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ndgAbRV2HdmlerPFS794vjhaH1NlyjEz0Lspha5yszo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:48:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.168.132.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DadaRecipes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qlHDVTR8ZxzGauiDiCN3LEPsLl0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KInfhJHxiHZr9ZtN6+aN6hRdryRT5fNz1DMxplz5gRQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.97.116.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipda" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qkryfWpXOw7rI0rviXUMpuYUHA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EN/Lo+HqEmH5k15wxtyrCCMV48Znzw0i8kIbW6YYA2Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:31:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::243]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qkZE8OxYnuovUBu4Z+MuWZ+Bado" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KN41fxTa5TPXrm3qv+OB+cC3AfI0Ycvh1hGkaHBME9k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.104.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fl0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qkDW/BCAtVzjoXGWWEKzwv1WAuc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xCGQrneD2vjdYRPowo2HaYqWhzZKsXJcM0/raRvIZZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:23:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.80.195.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myTorRelay4321" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qjXmo49x8yTb9j6NQ9+D0N0MNTM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2ywzTWMgGh/kk0B1tuQzAYQlxXpp5S/N5cNOrh3PEF0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:25:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.89.104.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9061 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dontstopmenow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qia5e2ynV79jMo7pZwUSBgnPSq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X/Nvaiy9UfDe6NTZ3GZ5VzNeDU0cQd+lgm0Y++4uSOc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.200.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3003:935::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoSoul" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qh5YQlH8t8Yv7j6rSApfyQmkSTw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xbkRtq03At4h7jWN1MMICVUKU5y/c+9ziWSSNWjk9nc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.92.175.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qhsCbuDIqVjinGfH2Ihf8nVyJp0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3psQt2bsPpcuez3ppBadApftkKmWFf04TJXX85hK8gM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.129.4.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onionSherpa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qg+DxaN+Ql0NM5mGgy+3RbpK9Jg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QCbhqN2ehFidd4g3OPBoFh2YKvwoiQwUnQE+grChU1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:03:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.249.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9050 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PERLURGroupCZKO" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qg1KJ14/HN/6z3N0cPzpypDU1P8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xpv6hXyqXFF4tIpyU9r25atJ4LlrfOPV8GGHlmHriiw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T17:54:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.209.54.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "damita" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qfcYVJnFeE41tcJXRO1Kt1Q3zl0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TqUrmftrHnOvFladjiWx69dT3FDsgbBUIr6WXU+9MOg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.229.76.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ethe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qfYhunjN8ydsp3kyrkfKsKyKJuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8VagYM4YwoNX4Sm/F8q3Z8B6+WqaPc7BTtSrm4Im+8k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:09:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.59.92.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torthias" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qeQ0Me9HO+7w7smNvd0bjD4/sHE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2lvDLbQoVGbdL0axfRf3JooIld40KHCeY8WHd2Jb2Bw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.185.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c0c:453a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SnappyL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qeBqRpwpQjpIzBLz08UhRyFIv8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jKy7W4nxMohazg0FW0jlN+/uj+NWbOqAcX4raLT/J+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:25:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.124.18.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AMSRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qdpzXJ3nyJG57da0M7RY92h+gps" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OHToI5UCeAOiEX1CRRjm8kNxQCj0LPdCf3tRc1zM4w8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:01:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.190.22.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DockerObfs4Bridge" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qdUsSqhVa0mUHseWy8lIOfDaVPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RfWI9CTFpGd/X+qarofsQIrluhG3TRZaPCSkwQl+OcQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:29:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.8.253.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=77000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "viola" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qdGobnimMO2GAPtJSu3L9hsg6xg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "onmIb5Ta8tDXwBtZSebPlqtRX4HRxvsKC81tBolJ5p0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.40.113.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "alxu3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qb6i4GmdH2BSHIoRZzQJRaQZ0QI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DaOWXNl4l39hNGAZJ0yPYVH8OtsGiCKnne0il6R7DJc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:fb5a::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BWV639" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qa4gooeyFe4EnAA3PJUvQ/CAvMk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gcWknCzqUD7vWZetzBXNhP+w1+dbnK7DgreqYlnubqE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:31:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.230.137.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:91ff:fedf:a49f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "u698id1147" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qaQhPqPXB4VzaMaD8iCMg7h1XYo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wzeX1CC1498aFKDn1SOoRn4C84JMh1Zs9B+sM9iXi/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:58:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.233.116.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "buttercup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qZsNnl/VvDyPLQBuyR+Mf0DgnLg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QVkKdpDxWKhqg9Uvm9Szum0i9W70EKtiHHQ2/LhmWqc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:11:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.78.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bolar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qY9JL2UxrjoGjdNTlcqfW+jwNVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fQep1heJ/MYsp38Rc1seCQmjYjeyKwRyHo7e4KqP2G8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:50:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.212.255.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kuba4697" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qX3LHkhgBNbzJljf34DCIafBJzY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LJ5yAonYEgo5rVOA+nUoNtEo6TH/MyWtdNjTbjHZsXo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.253.39.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1148" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qXNM+V+kPhTDdX2yHPxsyW4gB/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UTNGVUnpY+kFvp8PS92aXH4D2zJuPBDD7iRSEYgPIx4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11148 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::148]:11148" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH106" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qXA2JkBSuBh/kBfjF8NO/adBJes" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h/MAUR4Flju9fRFMQPp5vh4QbQcHv8yYCpcjyjIomqY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:206]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SnowflakeMentality" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qW/I3/MqwX6DlANUg662ErRiTVg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bVQRqxT9IYYYm4l1pVkNf4e9yaA74g/KkywkSSEXaaM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:40:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.246.29.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5190 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NerdyBloke" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qW8Qgo9dO6QqyJJ/A23r2ZTvBL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MrK/UFUsQ7F4E5FmT6hflU8LpNm/nNqFNb7ZeBtljTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:54:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.159.177.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f09:d10::19]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qWP0z7VjX8m1gy4rwfvNO9T/lz0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0kfgDwq1gDqS3R1HWw5UAPCyygg7woM4haNtOgnUekM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qUo0HrmABsVEFn5GvNzxcAhAbqg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "liuDvxhkWW0UWBGOOiw86ARVPAuCsYIZsTY+ROnUMm0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:42:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.244.109.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ullr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qTwKCKnznUjGE6SXJGqzIfRKdTk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uELzLaNbcfWxUXkafVZG41eCDGzj+F9rgIW5eSI+yKs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9013 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation55" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qTL1b2nSSpagy8TzKSKmLe/SjHc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zjNLn+M7+muf+CkjN6+BXNU6eXgfN8XUAWBv9uQIpTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:11:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.143.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wideBus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qSIk9qgursgamrNVrs/mZPR2Er4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PbzbFl68qxvJbCam6ggeAYnA53n0JOlnsjVnnkL9kw4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:19:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.167.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex81" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qR8+TSzNgfXIZeFDUl+Sp5DN8X4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5RPmMmFb+iL+LSbDgno4O/gtVU7OSr1hGGhcWXm/Hhw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:26:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::170]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qQRLmuA7yjLe7LcKlz40wC9yz8g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vEjoKIFE6tQhJRxrmDZoPP+LIPmLDTR8H3AfXk7UTbY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:55:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.105.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:cf:47e:28ff:fe34:d888]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "R5SK1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qPtz2Re3wrhRo1hyk1nhPrpZePo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c4qV+5TlZ1GjxNY8CEL/lgfUKcQP2+aW95CepyJQHbY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.145.22.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:c007:cab:5235:2d:534b:31]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kingpins1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qOtwmDzC/D4skUGehOvNRyJlR0I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oajTfg0FzjCxLl72nh1yX160ospaoz1rpfQZkZtHRoM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:08:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vidaloca" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qNNMoE3e+rePbVNBsd4AxdTX2Rw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "75p3zk3YWPGUfU1lKxHW0BvhHHqWnJvW9cHYFMtxKjg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:31:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.117.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fcd5:8:0:1602:ecff:fe6f:1e94]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qMjOIp4vAA7Ko944N1F/2GDqUP0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3PCcuGpgUujOkaNL+G+Z5/E2tolKRZCIBxafI2s+A3Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.80.47.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Raphanus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qMgiIKEZblKiFAz06J359nL9mwM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CdBg/CD3/LdX/JhO+3R771lkBCakhXl8tK3IyDNqHoY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:18:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.28.247.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Madeleine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qMWKd2khuJyE4ITWVn8aKwOYBeQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PncyC9B5fjNoyE+LSSGGfQu63lE1FQ4H8Fk11NKPogs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:55:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.66.192.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:173:7840:216:3eff:fe7b:d385]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex88" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qL6xUPS61RvGMJ7ZO/1AAipyphg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4Y3h/+wnbjckfuJCFKHV7lFk1vxSgNOC6pZFMzoYSWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::177]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex83" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qLiHs9yLhk4vC1j5KwwQ1JO1r/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qjd2iH//VRMhqMUQHvX0gbiBUWKgLST7DyLvVRZQW24" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::172]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex70" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qKxcG6CduUEj4ruZCYS4qJ4olrA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AzOJmC1VwQbuGdAc26TjXKYCXJnrMfSSpLzzdpBRlLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::159]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qKdL2IUWKyP7pdti+/HWkZxhq1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C3a3OVyWrEkokbjx89NVG/O1M8iiElYB+89U8By1aUE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10063 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::63]:10063" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "computel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qIdOLEX0RdukYqkU7Y068EVzT/s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7h98HNBvEGcDgBu1rbovgTAJJ42n6O7uDryGmH5oKe8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:49:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.190.177.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "saltishimporter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qH6uLwlQlVaPz06D/DwOVPlGwzA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u6Qm8SFHfcPi0/6HQkzHVrEpGDfqj1TJicM+O9Yt2mw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.123.143.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qHW/uDvYkfkuruAuxPxDVgP+j1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S37iB4yIq6bzu3HcqEikCJwpkRR1ASI9QaoNIYW3V1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:45:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qHJNPb07Ni/iWlX9gToVJh0GHVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3qQ6hDYCzoqY0g7QzpaA1pqiWMu4efzPRcnGggBL0Yk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:16:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::16]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex51" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qGgwMSaYeQLVHytvBt2QA4xFsRk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/viDJjfaXvHNZXUhQ8c8ZN4OVPacGAfuS04Mw99zr3M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::140]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "glacial" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qFfajzco3kR1v82G2RNR9eMCs98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9rkfUt4knDTmzz9/0wNIykZiSHLOZtRTBIquxcD5jks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:41:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.112.10.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TransRights" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qFA5A/l/8n9dHDyjiBcyn1gZJeY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QSAHuTbXiq60sSuGTBflMQP4v8knGODkRE5R/FB0lhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.238.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1930 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:5e4:1d0::acab]:1930" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorStar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qDgpa58BqeJIe8OiXV5fL7ipefo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ETKjShpFZB1NOu+RWw/XLmHIqvfuG9GuKLBtsob1kE8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.20.222.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pilpur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qCx5KF2xLoKGSx86QmOarhEDB8s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vxtckkem7qR4h9Sh+mM5pWqsFAiUQUo5CDxCNFtRq80" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.31.151.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jbrelay0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qCxOejPcQT7GMKsGqubz3NqX8UA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o8YlTU/yANs8NwH6qdL6ps5ojUsnh8sJqZcP6uUOESs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:16:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.254.119.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=880" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SnowFunPark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qCrzQtVI+kAARi4MIjAHQhD7ypo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NGvoHmlY1U7J3XaWjRgVrFQwZrSBIEF31YRyWms9zGI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:56:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.234.220.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "STSLin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qCTo7ZNGDjK6rIFVvgzKQ+BAi/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Svn2O0k5reqtUbuNmUUPTof0bRJe61lhDuwYJ84boJU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.186.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:0:d0::1063:7001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oszkugay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qB30uwtfhgYb6/wt6URkA5SZQ+w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DlvYrUiWvQhb2csv5ig6WqqPZC1G6gki3QDs7v/I9/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:53:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.230.40.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "huebing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "qBD/Hlx5g9Q7NRdQZHknS12lrHM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hXPbqAK/VRj6E8IVpWc1Lxb+fchBMuJwU6JIQIBdTow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:29:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.227.82.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WooptThereItIs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p/gKt+BMAATo3goAN/jtVCkkWL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2AWowAMmhq4rZ8TYFlMzOTqlPGMTUoBRjwSV1LSpWsw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.154.157.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ted" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p9F1l6Z/CtZO4fOkFKCtygCAF0c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W0+Rq21zrcIyKeB+Pfr976XPYD2xkcSB0OkkIFNNcCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:04:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.217.0.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p8frKg37Lj//wSt3VnB0M91VD54" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gdw9gPJAiHqnOSbavkRgxxnnHEzSpt34DOWhENsiMtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p8W0DsD7UXXohAdd3IdTHTU/Z5w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0LidNflSyzw0oo2JRS6BBdU8or3+vqLGYvciLCgN9+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:07:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.19.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=78000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IceMateria" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p61ZlGiWi/Nhi3aTDhSoe0gXODc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FC8oiJfPNc2Zjx2YQe7NsSp6azF5zne8IJD++Efp3xM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:07:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.76.227.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Dominos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p6oyyhDhvtoel2pln9lsqZwthv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HMWKYvSylrwvqEa5+VbyoRXydQoLQ9h1TljD/v+rmeM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.254.118.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "andrewhack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p6h+wBAUyi+X/0lkXcMa0drr/SM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EE9Z1GXC+GA4i4TAFWm9vy0dhSO4YAWcQx2mbePJpSU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.34.103.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Beppo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p5n99f8T0fZV0VOmuoaezUP11ws" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RmoehTFrlizZMN/ixZCg5RqMFzQ629WY7WeG8AFEFKU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:33:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.209.169.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=590" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HefeweizeIstGut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p4mkj8sng2qWUsZm+UBUVhA0RyM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6ZlFgQEAGe5Up81X4xyNN4If2Wm5g3VGa7fxRLtdfMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:26:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.255.0.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.4-rc" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "laeviculus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p4Ny7GnWCHerNPQSj+NJmljdLDE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5yCNwUje+kogLbIozXyPoBjp3i6CmYl3EShDLSV+tWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.77.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZwiebelRouter01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p4Kk+srTzqvetRq+Q4W78CP3Od8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3W2bdV4ujDnuZBvf3ochxntOPxt4orJQgNRIxPfbkuo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:06:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.148.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:190::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "doboz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p38WprMTHq211R3i+NCRT3Aq01c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JJo83umIjtAmmID1+yMqC82ql69hK14lMhwYX5w69ps" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:40:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.255.155.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jugendhackerassange" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p2uDmCk94Y73ZsediY2rHelYlJw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RUngmDetga/yHblRjqse4fw4ApEYLze8DvxqL9VC8qw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:37:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.0.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5d:fab::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p1lt3cVw75nYAH9stj4+4mw/rOk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1hAu2pukk0fwEZuDF5Wr4NmzR9hK4bP31NgBCB8iRGM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:15:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.32.107.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:194:32:107:0:172]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p1K4OsiHRXXz6qrnrOzQGp5ebtc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kQub62EI3k+DodAHy7zMig49uIqvNfIGpijhtyw1gVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::216]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p1HYvuIiVkt7plf3S2ZYg2/xruo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nAocgKTyJUmVcczucRmFK81u1TlQ9la6PaepZ28ntlw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::211]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raptoractual3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "p07Otd68R0EmpdH+7kHML6o2WpM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w+qUjTHFHrkZGzbda5QYB77r8nDoqs5o+AtFhLqnCUk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.184.162.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AktionNordost" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pz5PnaCSgBenHLH/3yBGNq+aGI0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EXC+Vmc1OoD8W/8+dnqpoNX1X2z/+jLQxtrH1PSUMsE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.121.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:3656::706]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv125" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pzeKIVSDxq2ZaK1QXaFFT34pR5c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lwD2AHwAfCl5A9TTHtSrtvzjSfZNoUzICHse6c8U6VY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5525]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pzF2c7kjtZEGYgT/0pmrLEFQtr4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZHPeYg1p0Ox934KdKj8M/m55P+EulA9tIv4voeTGWqk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:13:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.184.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:512:8475:54ff:fefe:912d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maibrunn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pyzXF72gN0JTfo5DGYC8GG3lZ3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DmjaobSsigKpr9Sm3Zhq/l0X6wuxbyYVO/JccXkGnu4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:05:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.188.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "c0d9d82df278e4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pywROmRsMmqbBuwGF1EFYjpOR6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uggAN0RQptJR6gARpIVqPNr05AcRDs6UToYNtEX+TA8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:12:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.184.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:22bd::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DockerTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pyW0Ibn0z+5obgVrgaay+Z/1Opg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wAfpHbB2WZRTjXBU3cb3QVtqw8RvFYOKfad0D7Ji4U8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:19:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.101.173.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1234 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedEllsberg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pv/RAbluhtlbTM8duZ0jG/fNFss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mOv01Jd24+z30vCh/DfmslN/F8op1dup1JcP2G7gRLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BenVonMecklenburg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pvDpaeRhkcq8ZXfUCWTu/0n2RuE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dh/2J317yxIBlTFWL34hpAGaYupApp9lzVpt17Kvxrw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:56:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.19.10.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8109:8900:21a8:42b0:34ff:fe36:d87]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=910" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dewebit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "puOjxs6WLpF6EuWGrnUIBYmcEXs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DRtFkkPDFqgm2CyOqyZpCCa/1myPM5Oelv3iroH/Jes" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:00:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.59.46.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "severepactrend" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pt7HW3qMSFcvUjzp+yWgceBqLjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BOyEDJsqMj1BF+Bx2Z7dDLRwnMgTwwWYcW1oAQVk8g0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:27:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.132.151.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:261:27e5::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "formia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "psjzWvE8ZH3KhCDzhAPf3diFVv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1thgzgow6GYX+1EsLzOLRJ2d6GeveTPjtJvevM8TOXc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.184.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:288e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OwlRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "psO2TsjuINd5h+vF6JTKbM5LUpU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BX2cvE9eQAnKG+e4B8RrwNquqUSg2dzuqw13eXg8L9M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:37:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.132.245.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:48:57a:a875:45ff:feb5:8541]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ATLANTIS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "prvTNpWk48RUW6NwYFpNzYfZi+4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8o1dqKToCWO2+/FcUcp7l4CK37uEJbU1fa8QKJdMrVA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:39:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.224.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HatOfTin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "prkwKG7ZtyM/lhsdsOD1ye2Un3k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WIpjJZzPoKIChe2GvgBORYzvUQZ1gRvkC5Id+pp1HqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.119.119.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:14:63::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apx2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "prBSHEwfuR+2Y5iq1SOtdz6C534" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LAiKjEIgWqW886hiBs2Sx/gs19C+KHfBhQhN3TaTp6g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:39:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.47.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.4-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pqqUtAB6DikZstqOzyz6PKF2GhM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "juE+age3/aMrbKDA71HSgAN7Wqs/9zYwdvmtnTgLUxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.141.48.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:2:32:4104:104:0:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=720" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Thor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pqRaB8OvTzf2ra+1vO5+QtRKOJk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b29eUyzqQDDZyQGm/sjvbqIv54V3LQ8RQqHMbIWs1TM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:11:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GermanCraft8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pqNhwMwAMQOpQ+MwSyEgNfWjj9Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E+B7I6lNcNFJOtgRhdJYaZQnkYe4xrrgRFCSHyryxSA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.246.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 445 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 82 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c010:5fdf::1]:445" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "H3rmi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ppDGqoECwCfSl680Ab/haRjM96Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zIKwqJ1pXmO8VpIbYVPuMp6F4sPeErWc52IKqHGxkKc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:54:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.45.176.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 23 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange033de" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ppAj9d7KUxG0CO1eoe6GEKHuimE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1azyp9HnDue/SUt1W9u9BTjNoI4WlN84hVnwbaCDyEQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.92.204.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "olabobamanmu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "poCX/pfTBlsab0znGH11P4uFE/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "80Nwzjzk++/jMySL3srr0dC4hSiW5cgLo8+TbSNNETM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:43:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.40.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1830:25d::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pn4ELTldVOC/ARKjvJCSQDa+KWs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ow2DmSn9p0C+OFk6mFaMMQeuvOGpg0fWUhr7LlZJg+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::198]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "alxu2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pm5Xgv5gl9KCQERGZ3b+kSrv2Fs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZJFXGl5Rngwb5zwQZQtrexrvCbBOkkh4zwNtgD3mjLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:10:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.54.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:274::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "4punk7r1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "plnqOnpTqnOgzM2gqb0t2VL/CLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Sb1MPaFMHKn5kjeVif4QQUgvj2qoxgdvdnaYbi/NDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:36:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnotherGate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "plkdYPFBHAKt+arIxB9JCA2zNus" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o1c4AP2GKJYDuJYdhz1S8FyCUZZBFPwoNDasKgOuOuk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.91.58.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:305:2100::4902]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra65" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pi2Pd3Kmx23Qf0MYEM5oaC3N0tw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/m/FQKTB4FphxhY7drgarOeIeDCvVhZchMGTfMnGwOk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:08:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.76.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Elias" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "phtWpQ0T3CnbsjxqAz+j8MV0IM8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iniqyiVY+5OWexbfzSPYKUU2LgbB6pxHxo/3hw7SVO4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:52:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.217.80.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "comasmr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "phnlq/CrBTOSEYeKKJz5OSIzwkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RwOnbcGI83oUg2TOsEqpSIpokI5nUv937GpFuWy4OQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:15:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.85.157.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Montreal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "phiy6VCTomg6ZmNje36tDVgK6uU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xqFNz7SiUxP4og/ooVgQX3KQmTS07CKsLGh5b6A+s7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.152.211.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4128 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 41289 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ffd5:1:1c6::1]:4128" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "boing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "phJOl4fydRTPiNAVuJXVaPsUmXY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ntgAWI+q7XYNr3onKV+C+SACC9k2KHmitaqnT3wYnnY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "13.58.202.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 25555 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "phGvJszRDbQ0InXihL++qBOEIWo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tYjtJGrvIfLJOWeizJKX04pNWShhzE9O2GPYt8GKI7c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.129.156.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10221 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "adlon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pgr6b/su645KTFMfump4r1hqrLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g5MbVs0M5SD58DIS89mBIDgIJRl3ue5hVGWjCcDGug0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:57:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.73.240.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4740:10f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pgaX/zg+7uLohQXdTjBcB78yaxE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a4+1cBSdywqrK7ZSVvAqH1eaBCHQkr7ADrs3b3ksPtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:50:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.147.33.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt31142" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pgVlOBZsXrUOEnTK0glN/n4sGno" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KnYFEyIXr9IHy6JDatiw4Kn/duBOCuBsLPu0XPBc9i4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:34:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plan9rain" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pgQIbq6Dh3T4CYEZJaIj3P27HRc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XStLTsWfuOug9na/1Dgz71So6LcYkM7b3WmCeZhIPFM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:45:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.56.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4433 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pf9gzqyBVMhRrv2tQLQhz8lyl6Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EO/Fgioj1hwjm15LVqB45nhHsavIrudVW71dFnZZXUk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:06:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.167.244.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "peQvGjr6lIp/L9sZVKTPbGSJ1Bg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QUdtnErbaF35GH8OdiyvDjg2wpgE7RrGy0hiH/bbwbg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:27]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NiceRelayGuys" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pdqR4KGhHJgWWt4PxttdZ8wod2Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p/xbAvu9aWT8fh6pedg6E6w5ohxpfpdACThjlOfNR00" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:47:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.122.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3b:4ae2::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pddPb19wT75qJag3D9u126JY9z0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kOMQWC8U5XXm4u7bkvMY+oVP6yrQ9M/KKAJ68G7yr60" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::f477:54ff:fefd:dcf6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pdKMuHyT0xyq7crmT2+mPfQaFTk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c46+bD53lNCi9OL1vglhGhjUNEmzeHLsEoz3xvm841c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:42:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.143.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::5126]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pdIvZrXr5mDUyB+BqVYCLWUMjL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a8GmhCHa48OzsOU6tVohXvLzNqo/HE4H5D25loGNkyM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::52]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH104" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pcWtxs6bUr6GDSVy/0hWncniTGA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OALuB6Mlr152W2t7cBqR6WEjSgyDlo+/k6Xbligmr9g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:204]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pbvCxhsfawkJcBHEzla75X3lrJI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xy8yWwPYqhdzH0MWY8fxrBgqb8ulYjVIx/0JBdObG88" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "demonteal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pbFdWQwgdEa/tvc5/KZ96MF29DE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mEomqMusb18H6Tbbl5DZE3cSgUoKxmAsTDZ+qVRewU8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.59.18.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thesistersofmercy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pZv0rtI9WhFMxWSIJtWMUUe2LR4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6VEFyp2saN9tBEKyyxHQZi22H77hhpjBtytNAhrhCIQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.191.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:10:190::2]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TARDIS42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pZrYT5Ky5aduv+O+YtOyivm/0Sc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GciOyO1BBKjcPjFAdb3HI8kvZw/0ZkTt4k5BrgJvQC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:50:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.255.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:28d::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "p20sfme" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pYxRe1Sidl3pAI4PJGypYUBkpD0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RovJ2vXvmlUxAuteO7SUHn1/G9jn+w76R1mB60qfivU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:05:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.244.14.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Torment" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pYS6bdOPc9ugcwAYz3imXuH31JA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ExSU5fnMGybLLsbk/mDldhAOLciSStcuTkdlsMYG2vc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.182.194.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FarleyHD" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pXhZTsby2elnmcVI38CJ2rPC+50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sqiSKHPeIMhl5H1knmAR+BOvcx0wf9C+ojg01JHBs84" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:26:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.130.119.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt35265" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pXb0GAbi0cOE1h/60Y5d0nj3xBI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DVp5Z4R5sI+L7gnrZZ5oUlFcsFnoVyv4dVoCpiyQ/HI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:51:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QECm1r4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pWs4RdKQeRyya86J/kzgjPfciiw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I0A5ymrwlDT1lhN1g/i3w749Tr663PcpYQ2Hl0xaGB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:16:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.250.119.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pWoBIKIVV4MgANXGj8194I6Co7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l1t9fzMBjuhPzzwzV3CruetGlJHDqf9n9C6fgNtT/Ug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.201.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fe01:344d]:38443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torbaconexit2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pWUooMAq0nk7a5zF498gHQLsIVo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1SXAKL6c90YjnRwODH/++wCg8/CdSItrEb3bk+SMqkw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:30:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.163.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:4300:a:3:223:8bff:fe8a:8e0a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lc59relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pWIFHdEz+KoKy1y4t8oC2+qUBbw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wl18Tg/WKlkfI48sczdIaHl29lAQFsm5XeFJqHoKH7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:55:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.119.224.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra77" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pUv1DFdK7v4O4+fTsrDx+qaVQUo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qpvUPPK/nflB1JUwrGtg/CKq2ilfbq31x8P90f8xGLQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:09:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.228.129.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pUnlf8KgYPogBRU35nOLPtW5hGM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hUGOV+crJIvucfhsG2XxjNfAl3QAirVm7bw93N75oCY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.98.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "waglula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pUfRceLk1LVwFB9MnO8bKnOJ6tA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZuSt7fP16nKdADP2LtfpSUkJjMjLNzTlSHlfOiERSrU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:04:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.243.20.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 403 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:45:216:3eff:feb7:79bc]:403" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bkjk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pUJN7t1akTFG5xd6ee5I+vfLhho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7sNH7zt3+oX4ks+1lfDCyVOdAP9onxTkGcEBp1Rt014" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:47:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.82.136.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "alittlehelper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pUJD9jbk/LL/WjIRLxJvvznQvWg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xkz1GaWkTGsSi71LI1diMFXwq/M9bOHVETCC01A8o3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:07:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.205.254.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pTclpgyaUFoGZSX0M/ivQvrMRP4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KqQMTVWcvl9D00fqnKJUnJrhhtnwwR4w4wC3iElkyyo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:29:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::131]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BienwaldKA02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pTVpyzM+mJWkSVRwDMB9ITWAFRg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XRv+od6SGItCwSeyEY9XPKVsCDWiTP1pVs8NgQ+7UhU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:58:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.56.98.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9006 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.5" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "weirdoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pQ8CCdDGhcjnfJJEuN744wzM2fU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/BBjv3uLe0tfHR5YMtFqLzRqdy5KoqZwZLUbU7ow7RA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.71.138.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yayarea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pQz6ByWOPOp7BvybYkiiV1ZSh/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G9r5mgdWV3OH8IEQlxKMJ36mYsyV/nVVmQDrWe/aS7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:01:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.4.175.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f598:f001::33]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheOneRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pQvFjDLTcWjAQLUL6Xf3903YFIA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UHpVhNPbBE5UrKqorZmzVrqal3wInspv38ISbLZXzB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:42:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.70.175.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0168" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pP6aH2p+tqACofPfoxOkM5DiLG8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FiFIil6iu7kxy7J8GxJ65jbNBxGcf73zgo9fxkN4I1Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10168 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::168]:10168" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pPQq5l8RY0xCo/OVLnGfRwkb028" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ev94QSA5qgF4PtaAQ1GR24sXqHh0H6vpxbeFEGeGjDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:56:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.32.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:10:42:896:37ff:fe75:d532]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pPEdaT+rbpSbK3wYFTw/eYmJYAc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y2gHSV09wRgUKrG37jpc3IOzAnKeOrVBpjYrfUv/0uI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:16:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.55.13.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 587 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nashorn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pPD1Fsg94RspA4S5tKTJKKeO06U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4/8TSpuoP1hu0F1BZ+R9JtQsgr90c9mP2jrmQjzakGI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:51:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::67]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torototela" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pOdEENg3Be7/JLwmXeKy/zm9pW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xdSEhoWi49AqgYGo0JObKwA1+4NXLG3k+PGq0y8dWU8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:08:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.21.93.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pOZfKUle0REaaaEZM+jspwsBZ5E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VlCMehbC8Aycc1/2C5PG5U0CGbfz4kLnbYJrbWinoTM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:16:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "straDEicebeer06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pOR/CLjVZCjfdrF+3Wc4vLw/Xvs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rmEev+VCQYTsctaLB0DGF472nUQMC+v2UwAqqnlvGck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.185.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4492 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=94000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pN4/wazsN2f1xASbzvVzF+ewWDw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dfAEZHz+jRPKlykdQJQXs47KTcUNlXbhBEgmdypFCXs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:12:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.220.38.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kiwirelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pMg8K+tPGzHUDoDVUkxmoRfXfFA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W9lF/h4kvDz5d80V3Gd3GhxQScGrcooCbW8LwFbKQxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.209.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:202:300::a02]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lickitung" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pLLypR9z1AhTD6bIr2On+v/aoPw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MUx1gaE1vvfHya89BM3/aan9ewYpwdPBKUWvRKUQ/9U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:50:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.130.113.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pKeeK4KUqiVytGxcdy4Un4T692M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YWty7eeGHWwNSFHG+apfmIBogxzVKDjgtB23Nc0wTj8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:30:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.152.209.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Superluminal4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pKYUF32JyZMmw5VT97f6WQm6Sx0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QA8ATFRHXrqPQoF5QChQqo3BWH6nd7MhUXx1tMF8toA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.147.4.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8003:db00::705]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex44" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pKOT/vSGQJYarOktBBk0tVNIzvk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bZxmBKYVHEGVsDWjV6yHU+l/QoWRFcLZnVBmhbOuSy8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e643]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plan9rijk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pKJe2riA/0IA9MITFvO54HLJ9GY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vf6hv7Rdoju0e68HCmeZj2TyYLG37SXrjeRYjKAmpsc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:20:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.126.175.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pJ+orx4U4yOa1+MQvvb+KHXM+wU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NMEmumlvY+QoWuS8yt4fufDoNNoP0Y0WGWu+8OItSlk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.82.68.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pJFRCDKXqWbFGIBSt7iuvSDzHS4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FTBlMzWegRKtfpuhkWu//Z1uffWxqbZhxUk7eOkYdgY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:23:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.74.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f625:20:20:0:2]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Trurangers2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pInTcHClCB2BTB8RITnu8N3AOkg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7+7abmo6cPBVSiEfXfxz88FWh94au8MvPtBYOJYcdmE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:47:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.175.158.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ipenburg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pIDYyfmxES5Hwk4z2sBBnK8agho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bddW8pkG5NIiiX2PJ3US7UbABFF8nh3W1l+FA4uOkI4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:20:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.174.164.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:a46c:5d12:1:7e10:c9ff:feb9:ebc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xcc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pHyODWTnM+3Iy0QJveB9s8DtKKg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HxiYU2qkmdKqHI2/lFMbCk2iEdoqKgO7mka1fj8i+VI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:51:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.159.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:3d:1827:b1ff:feec:f6b0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "testtesttest" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pHRGr/eIts6Qo5UJwjpbTjpzIMQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jUn6Rk5iftqT3eGoKNQGLgVBJwQja6afszd9TuAhYHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.41.148.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hogman1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pFfkL/B+wXr4wpijQKh0NKgC7ew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HzmTl6zq0X4HNJtBlPDiXTx2zHgUZftYY2R0sQtfi0k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:55:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.204.116.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:13f0:8100:6:204:c66e:a519:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pFZDP1QTw0nNi82VaxCRLqbE4F4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hS+nhBUZa9oIYeV9YL7PtLnaUE69Pe/14cm7i0D2h2c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.33.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vrienden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pENucLjX58VILvzFXVPTnsaukF8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PJcAolnNyN7WiGJ32Av8baNuIsJYrXZnzwZFr15htf0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.56.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thepastatorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pBjZGVZR2iSw9R4o5Ukj2uK5wwQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XKfJkaBQ5c2CzgaJ/HNb3pvD4inEyV1aUKoff80gcvs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.90.148.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mcnulty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "pADPg22jUa3a2bo1DBq6NQJkpOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PdVCftwHALxURGpRq01JaidyDNuTe5cRWV3Yc5+vmII" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:57:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.165.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:2202::1]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oranet1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o/UeFg/3jpw8TRJ7XLQ2gIPQ/pw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kq72wnN0sKPWhrkOXryrcEly1fgdPc1lpx6HB8XXqzg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:02:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.226.217.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "crabshack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o91As0inXzlMja8RrKEG7PcxaOc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "grNPBvbREShVnJksHxHk4RyA8G9RJ1w58a3eo/XhrZQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:42:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.171.236.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "2mproc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o8L4gcO2dNPUD9KSC7HeSVuOw+k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/DsPomlpY3hTaTrUwlHRKHqloNQlGG72dY/5xGP1/vM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:17:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.48.193.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "parabellvm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o73Orhjb/1k8w9ovIlVQfax2jzw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hgnq64PSuIWmXzqtuy+PGlSwRyT6V64VKklDwO7L97c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.55.141.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:800:10::14:8001]:9010" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o7USKkU35NDw2FKXry6zEV96FII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5h5XC9YMoV3HnUNKdIWwkbHECI200bWrywXhTRP1kJI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:52:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.115.48.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isthisthereallife" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o6+97jAjjkSJnJ+LdmbRKwnI7jI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/RAQ1RdzKs9pQsN28JkmV5Bghud8oQRMaWsv1LQ/Yvk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:34:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.6.46.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:169:4918::666]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o5gICmpy+CjcRHbeReKMWJLKEHA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pXYUAepDkpeQh2IQrHLySOqDoVJot47C9i5HTYIJuXQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10049 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::49]:10049" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sighif1relay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o5RZHogOs2EOCdJAq2OYhJGET7Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ttwqsSh5PCft6O4x0qjydpv51lvGQbAPhSwzOwfM3Lg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.101.165.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:3:d0::dd:a001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=97" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex59" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o4nFI747KepZx1rFV79c+2lYbcs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aT2fSk0qWpONjSs/nMeQzjvRwpqCVdvaJIIpM9cVu0I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::148]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelayLama" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o4eMPmreJ3Nb+kFXvohNgpL/diQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZQhwhv+LC/8O0SONuzmixYWAVzGly3YaQUzbKlpdID4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:47:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.121.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6672 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fibonacci" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o4MXzvBEDiVPtoSBOVcggmGqsPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZZeU5HNJIqGXyhqQ6yJR9ow9cfSKaTB2QHZReSoHa/A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:05:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.134.50.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:9e8:1537:df00:e65f:1ff:fe25:1a75]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "junker666" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o3fmMlgK5KIORH5doVOq7DRtogo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rogibi+TnAjIfSvNZkW1GtCwlYzkcuNkoo4ushuD8L4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:33:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.15.16.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nss" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o3IfxUnNX1Iv7gSaivGL80UGiHM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R7DNDjvsjCAk9MEaGiplyiT5bcyftzZwlIO3naUz0cs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:40:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.251.255.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thorion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "o20TA2dQ5HfgxWKKW+T+y2MobYA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lve1cfZIeRgspX0yfj5XIuLDBE6R8iPTGvRIiHaq9O4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:01:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.91.101.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:51c0::59]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GenericRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oxaNCrU7hwkWD3clc5FG3kZoKDU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+z/hekE+9zZdNTaKKIBmTmwUneYzKW0tugZIlahGB3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.105.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:714:8411:92ff:fe73:f0fc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deviant" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ovuHUjUNDcAxKVZuGX39fEsyBao" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q/rIt8BV1IinqKUHknP7S5gwH0g1qpBot/57VxFlpdw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:14:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.173.24.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor99connect" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ovXfFjEyz4/8H2NDE10zl8qFz4k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0vKPtuSdxWqawcmFPJPhRj6k/D/mpQS8u4tcp4vjE/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:16:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.54.90.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeastieJoy62" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oua7XDkc1Gs4xVtDKcNTBFQHcfE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YI4h3MHJSBZZal4dXu9pcs5X/uqxHOvBqiYW3t3E/QU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.43.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ouLHjhngLoAyMoZuhKBFUrdwK9w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "62wqrD/P9qGmnxyF38PMZi5AaO+5afn+wXg5EAn8UkM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:28:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.122.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip3a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ot0O8xgT6bf220NVBKQG4a0rdqs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2/6hCC2Bk18dy1Opgn5IRXJLHZcTgt1x4yqVqzOBdlk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:24:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::250]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RSFPressFreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "otspP/xadqcYhjvxrtvI37HLEJc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DBCTzbMP0HTF/dQlBr1x/OINn4gPEkurk4M0QaKQEBQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RenderLab" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "os4dN0QUcZiiMSc6+SDTjmbnoM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DK2o8cn0Ecfd7792SEYURm2bLvu1arTaEW+stmLI7p4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:21:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.148.242.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryTessa0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "os0y2dBmjbdkrWjHRc4paTyoUbk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ky0fyT8CCGIVBiEaxHeVblzrFv/SNHwR07fQivkwrm0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.112.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:2e4e::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pogRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "osxt54F2q1MdLn6oeukD2hXzdBo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DnaE1+TRQQeKe/zNuuZ1qCjIzc691pU145xlGaFrq5g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.49.10.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tournament" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oshdtsPWTXF40khI/YoOWTR/Lm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2qBhu0+vBAtWRPJLH17ApYFqjU/vdb++fqDc0iOfQFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:45:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.123.98.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex94" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "osPLFSDHW+2yEkT9HfHDccJulZ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fIWiqYE4/l1OXdw1ds9JnN0TrL3bG/JbF5OFeh52j/E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:56:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::183]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nordtor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "or/afrSscRM25w8F1BQL1V0CgQA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Tnu/ZtFYNLcKMuFcSVX4kb+SbpptwCezEJG6c99Lmv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.13.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:60:e0c:447f:e3ff:fe70:dcae]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lUniversdeFrissons2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "orAwIlQXQSBl1Z403W8QRgutKng" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jq+0DhfT/hWys/vGNIf4qoUeLW0yvEKKc2bNl9F+fCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:38:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.103.179.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RoteServerPaul" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "op0qeKipVIGeIgzvvrzpXS/PpU0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vS47OUbeuocxIQDYkHJDCUdrWzNI61H9hRaKbsM2/Cs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.128.3.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IOT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oo8M7kpanqdaOoEZL622GnSHVyc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TjG5zO77FgiGu1dM+EpzKQPJBuXMfQdFUY8bkVAS6+A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:20:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.220.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oo1sC6qe69KIcTNXxGz27wge9nM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zuMarEBNgjlMZj1hyWVJDCKEHzWMy1K7hlHQD/TQCW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:105]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SamuelFireman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ootQEABAAJ1tla28rZbmzitsGCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3siekV4CipBrdIhIhTJAKcsitibUJnPLAdct4eaiUL0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:34:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.5.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sabaroff" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ooDm5T25si4djAatVx5W00KPZmY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OXeY8hP0qgNCNB2SoWdcQfk3o/rZ0ujXoF7wDJQcM68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.7.179.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MPW" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "onGkjNyi9igvFAXkte2eA8URt+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E54FJ4bY/WMAKvc03DE9Z/vxzhgYs0V1b5QMc7QThzI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.200.241.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:3007:4389::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "omwifMll26v4ZQjhhoyQdJiqPRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n7inGA9x7SJIpDYK/kd8QZ1ESxRizGxhRShG3R2Az6w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::13]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idoediteverything" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "omkapcyK3kRNh8orMFUu+yPPu/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LtHUhHDGa5kpFtUvGt82CELg6l/00jfcxPtWarbGWSk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:46:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.200.17.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:1fc0:8::96c2:69f2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LawyersGunsAndMoney" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ol9r3m5eRVVeL8zE9QRgplVE1h8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XZLRavaO5PuKw4cSEpWMHVhCDIggz4VynbIO++sVc94" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:02:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.94.242.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange007uk2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oljXD4udtDrlNgnAlU1WJJ9GY0c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pn+rSSolYMlu+nto1NQGJhDtv125kzF3nAYRwSIPBNo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:22:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.30.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iVPN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "olNO8jOQyuB5sVhvD9+c4R9VYGI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NPY6fMXrbQnLhOS+NXfkUB1XA39JrxmuyerYdTB/4+M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::6]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ok6cTpTwCOA+JKIMPtQKbZPznJc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "57MgwUEkTt0V+NCBok7vcBPNYfPm7Qc+8h5+RLYdCI0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:45:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.32.107.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:194:32:107:0:171]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LoedgreemOCI3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ok4c9+1hmL2Q3/ClmPLRskMnU6g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bKXt44s65koSwTt0Yftn25qMczbB1yWRSE0oPHnYZuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:26:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.162.45.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "okEXnUl/yzDG6zu1mHysXALoI/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cT0VW+vs/AFDXrKqb0epyyzIUu12ViiyaoOhpppn0Q4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:48:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.112.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Init6TorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oiscLvIlWYf4q4qgsajiP1Aj7rg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EcANdFv//GJSqu+q/ga0+nOyunbRAycfsa5lBsBFVfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:45:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.85.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3a:271f:3::64]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "twoandtwotwo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oiEb7AzrcMJjT0JSAMgrid/7mSM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DbV9FbOZDEcGxC3OjVbTo6NTDbXe+ldrvQQA1vU/sAE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:20:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.52.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Galactica" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ofyOQkFnrXC2+klT2TSLzYLOt4g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tGRPYDBhbWoM2VzLTmw56Kw3a/r7HOUvj6A0S5MF6eI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:18:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.217.95.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nutellabr0t03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ofrG4EHuuuKFefom4k5RLY6QD3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p+kSZ1FOCTUPTBXKqUO/BKYP9XOPATxC6PdqP8Tbw80" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:44:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.223.10.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "daeyang" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ofDOeWVEmHMvEAklIwvp5IAd+7w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+ewgA2Z70fEaFmdJoq1qS0nLQCEXyEQ+fxY2/5/k9SU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.112.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VrijHeid2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oewNCGGvdt9ardwXrRjdyPQoH+I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AsGxwabPECEbLB11jkAjgtok4NHMoCoRaYgVKEifkxE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.142.244.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:898:218::1]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lilonionboi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ocUVQy72vy5pmmGE7XjfC5pZVlU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VXUqacyZN29B8CmpysdJ9I6p/ArL5IdKTw+6YH4HQZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.183.199.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 59090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "obofFTC9rawTRYo0jdMbt/RVHd4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NOubce1JMpcndAuMfR5B91qwnl75VllaItndwS0XASw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.251.82.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44300 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 10080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1186" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "obh+BaCUvxMCWA90ZdquARUW80U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QVz+IUpCvkNeifC5bh0+tVEmOOGG3PnRrXqt/3VlXsM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:33:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11186 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::186]:11186" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arnall" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "obfB+D5dpDdv0uHbp6wopxqzMq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VypuYcGdVhc1FaCyWYXqTsnF2kXnRNec+KH5033ai3Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.103.140.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "omue" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "obLjLkJvcA033/FCKOG5V6Is8KQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NHyRNsvltVMU519uQ6GU8oyxVp81/idKRE6wv3gOGvc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:36:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.134.7.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "camouflage" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "obFupyxd8jNGs4FlgaMJN7Xq/JM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tw85bJvq4EgHG022GeVO9twe1KzQVDcA9ThgPy4K4Wc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:07:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.26.156.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 46523 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:d0c0:200:0:b9:1a:9c:8c]:46523" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=950" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oasTQSP59TTH4JtoQafsr9AoIkA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LM9ZkZUHdKF2sPvE3X/RFMUf+Gn/FTxtpBSwgPapJTM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:54:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f01d:a4f6:9dff:fe5b:5aa2]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sandstorm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oaKSQVgZhZLD6Iyw3yPBTZ/mQyg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AAUOwj4llHLdK1XKCwAYRH9Pt5PUGmBZO0tPcJNj3O0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:30:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.56.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1189" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oZgfaYCsGvl1aUBmAmfAHRHhWwI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "owSaklYht+1s3jR9W8gv1e9kQAssUfZqccoeuSCFMpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:34:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11189 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::189]:11189" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unnamed42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oZO82VlC3NJUGDW2PlzhcQeI5IU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yaru01cM+g01rDGG/lGcrROEt9yqpsiPfJbItR2NB8o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.138.102.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41c8:51:194:feff:ff:fe00:352]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lspooner" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oYs/1uKwWBhZ1HttjFpymSoGDgE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fXBh/D2H/6cS/h1ZNAYsg7b7quCs6Wkv7RKAiVj+Fko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:45:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.171.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mephistopheles" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oXH4MyqgN6KFXDkEiPjv39Q4quY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rwCdvosXWa8AadAdrW+TtBjIN52ttNmPwjoYN6WUWJc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:54:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.45.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2db8:7::a6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yournicerelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oXAVO/Y6nS4vvKP82GcoasO4DOo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qWLchuHWLAvIriGYMjnpcUXb+JWj2IugV7+afHFrpPo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:44:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.165.21.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hulahula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oWuPKqw+oOpjr8/FZlOUZpNNOD0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "shiBjTLKHXUNXruHIn5A050rALPclTwWAWmq+kuKIAk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:53:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.43.210.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oWimlyNeXjfvFYTOHbP86ZOnOD8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3oZGE1vdd7EEXvzFWncQ5kI6gAP/Hoa3uyjLVHGhq60" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:40:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.59.234.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whatnick2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oWiJcuSqTyTEyaojcs04e4KDTEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XhUD+zfCq9uOhKEFCcLJfSWxG4cpsXqgIZaqWgY8OYo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.14.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:13aa::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Reeses2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oWKrM6dQlqeAzY0VpH3J7Gq9xMc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3A8eAT6d97hCRcSiwS7H50mBvUU42z33zaKuCezQzSY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:20:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.112.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oVZ29fDyunscpURG3bRr7m9pmpU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bc9aIUvqK1xs6eg1CAKMGiyJKXCt/xtFngb0jzbOUAY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:25:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.49.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d071:58e6:20ff:fe64:8f7b]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bornhack4thewin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oVJt0LrMRJkQGuWVhimN/VXSU0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uOqEJgXtytaF1o6WBZamSMAQmnwRHA2YvONbVpMg0TE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.38.175.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4262:1ab:ffff::133]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oU2W5sTDpa89flesCoWugr37D0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qDj1aoXoCB/kjiDgI21WkFBl8FhtTQahVeiJdBTaF5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::a]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oURj98Y4wCfiOCnsu2effiLvJis" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LHSzjN3r8OfVszDY0CqUXLUyHFlfhY6WwJqPerSnY08" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:33:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.30.123.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VaticanRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oTxl6XHZbiXJXtTbKWa5rLpUzr0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VEKsGyPIElO87uSbEzAgXl5npOXy6FeIL6j1+SR1PcU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:13:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.83.167.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SydDornexzyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oTKcCmnPWbhvjI6hgVPtTr96Mwc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2s/hqB+H2xzvIlXReGYxlInO7jNx+jmkItW9y+Q/JnY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:03:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.76.123.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:5801:98b:5400:4ff:fe23:18c4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=840" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Desperado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oTKB29j45ITpXdJzs+5/wUwbCno" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3dvfAUjGwIfIOZxIPdRskMXN/fvcpK+UE1kmzoJucT4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:20:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.134.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:2b00::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer78" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oSeyUMkgeYHinBiqi6MRt0/FgbI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q1ZpkiniUgxV6AJl5eqyKxa/RQGksE0xN24yLE/XEhw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:13:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8178 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "assange710703" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oR7nRxkc9IjreywSlSYPziYkvW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LzafY17EJ5WWuzo70+WtEbFo6IdQJfYNHrk1J6TxBD4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:23:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.55.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zighinettohome" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oRMSSiLLzQwRQ+o+D4V+xB3QZr4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P0wxjYY6VPneEOf8pswwvSymO/biwUN5Xu6GZGvnrHo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.235.188.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kryptonit01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oP44SG0ydRl0OpRFNsPOrjhJsZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TKzqG5znTajuB7D9h7JaNEZ/EMcbJcMClQrhMG5jBMg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:57:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.75.166.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9091 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Dhalgren" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oPBsL634jTo5qjBytAbwnXCVrJ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xz6Q9GnNE4x3L0hJs1JY2QV0+mCLFs5N4kzoo7iC7rI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:31:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.230.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YeJunPeacemist" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oO29qPJHV0KdrIKJEYHZaHBiPE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1xh6EEEPyv03V1u5qRch3cY/wgW0KnC/wEPmiUfGzFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:56:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.71.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:701:1100::264d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oOPTkbg87S8mTNbTlSXjd3XqHus" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sVncVoEfd5o/eg/ZAia/2mEvR2hNUH7HxvDx0IUWxkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.194.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isprjr0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oN+zEjHHGIKfoY6rTQzVHe264Iw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QLjbC2VK787ibGdXPz20KvBAZ2Q9TD4nEvlgg2/4eUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:15:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.151.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN29" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oNuCD+yHwEBfe/Bd7l5K3tK7mQQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pCSX94QxuzmrOHC3e0QvdIkuVHMWFYN6WxQdKYU5YQI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:16:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e652]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OmegaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oNIXHPrseAspMOBZ4DUF15kpJ5E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q217YrygCGwdMbCQAejCzUS0WWmQhxv8VX4f+8ilzV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:35:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TerminaTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oMWUELkDCsE4XEykTI2/4Tr0vJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "duC8wVI7WC6Eq6yAWaBrX3sv4shuYVs5jRehkefd9Fk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:21:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.171.142.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2034:5805::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Strelnikov" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oL0QTjXTb1YwsB61NwWX6wkgTJk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Md18m4LR+Sp+PV1M1X6bhMWdRWCVJnQxFHPrvdNJsCM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:25:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.128.172.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra27" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oKkZZwRvepvDFUx7PD/eNMArEBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h3V+JitPdnNp1lxYWzkraUyPp32RjqbK6lx8UlaOi5o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.75.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bluediamond" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oKHaxBzkyQppqgskgLvaZnpgf7Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2CzP2ABobXFKSn/w3uPjyCIx+Xb+D1bwkBRQplu+kt0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:51:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.222.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "inhonourofecho" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oJ2qrRbj93wu0aASvYoY/8v+tCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aZ4xovbP+w2kDKy/cPjVcSdbgrnSFBwMgCbFOEM+r3k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.91.65.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4610:a:4d::30ed]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Applejack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oJ0g2F0KopxHyQq+r9trekv3/Qc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mVy6qOLFWm5AFvsjXtmHi5IlzfpgdpaSJZTbxiNaGDs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:55:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.177.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c17:420c:c21c:f5f6:5559:d7c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oIOXCQ43N6a0QjqICYLJWEmBKtM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A9Hsg2C/eJz4AtJtaoS6nfEasGTbo1PWoGiSBAeuXLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:35:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::11]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Punggol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oIHUNxJBSdBkWsqhJ7pMYIKJuE0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iF2f8gkOyL4hJhY0sfcwIY+2QVNgbioUuVPIaN0jtAU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:41:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.233.75.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ddfkmuaxgt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oHF0pVifAR3HKi4FhfJn5MRrAU4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s811yVoziOnbX3PBo62Zdd8t9ZuuczFsCe4l4c+m7lw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55509 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "violin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oGzaeSLiUiutN6q9tRvJU8xBvrg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ntRzZkY63MsAFwNHK9dL/iGvd3gMY2/wHNy0ifjXVcA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:31:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.150.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vlado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oGbnmDdYx8wAl+Fqz097cbr6ROk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hqT+uPzndz5a1s03OanpyDZM0MvI4DMtYD+rihx0VMg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:01:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.76.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapFRA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oGVqAIGQLYYKc8QMTxDVtA2aLl4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D6M7twqsewMW1w7mT9tSd4DxCYnoRPWVH1AM+MzEeac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.22.81.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:3:d0::136f:3001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NetMini" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oEjSNoH+xrBzbneJvT54X5aEw+w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4Pv/jBaLIuWmaGDp+Pev00WEM3urBIrhqxsAPEN7Wz8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:36:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "211.194.185.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oClt3J7FCqQu2dR31R3UYH14dtM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bJg4zuhapgelIN5C+YatyYAlvjLS8qgnV0v/SL7L1WE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:22:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.32.104.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SunnyDayz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oBwE+gDhc9G9ACeYpv78rTfzQmQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pqBC5xWu0yyLEYfrFT3/q2kgcjY2GKARKQQQ7+jl5io" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.212.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:225::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "firefusion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oBm4E+f8UZko53savqDxjnShQ0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BqlY3RZrZ8yxKkvXAKJaIBy8U9+igZxBz7mcaM4YH7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.158.24.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "siffeurattex" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oBO78ukxp9WKNwfIR2Gz9qqrJdU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7U+TuHyoxpERkzT2nembbghywdViX2WJbVWP3tR+D3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:21:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.100.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FriendlyExitNode5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oA6QBTTf92NxBkwDcUdT6vi4iCA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zhYftn3+TC/HVuSt7LH4h08SngPvHlnMck80mbQd26Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.57.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:449:d588:761:3910:8268]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Grexit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "oAVuDzdz3ZnB7SmLlWoqzuG/tf0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vhLgNL0SClDqDsGwCXHv8uQo47PhkMk45LDLJwRS0mo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:09:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.4.132.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DarmokAndJalad1684" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n/oe5/5lP52gc5Jb3imadNysdZU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "clfKQ1AryhjacRNpDxB/3i2J6KFuX74D5AKt04GalbY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.14.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 26453 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f8da:2b2:a293:30ad:506d]:26453" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE52" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n+ltLsJcqEHWmgq9BA1FNEMiofk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pkXYqi/Yyd2z8C9qnfBNkC1YOr2BjGWdIpH7QrB6bxw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:55:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "170.231.236.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber35" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n+jLSxUtX9NAqiswc1ZWCj2v4N0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9BKfMRpbywNX4zeGl9hXhwKwuCC6NAcleHSsroRefqo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::18]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HighEndAdatikrit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n9xzHO59Cm6qoBfowA2MjyydIrs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d6I4Qb0s1UtCqcZtF6qhfDaONtQ4MkyXN8ZMwMFyO6U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:48:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.166.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jstark1809tss" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n7d6XeEeTJtIHMT7RONFDWfWksY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5VMPqmEtyBpmd5LYzOnKFeCSgZve/N8pmeeYuAX94uY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:14:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.136.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:3352::12]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n6ihYWP7a98ijkXjKbDlrO29gwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t/9AhMot5b92WAa8nTReJRjnE45dHAmM30hlUHdU0GA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::199]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MasterTF2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n6ERuIBUDiz3WwnDUwEaBP+31IA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4QYiP+RBODzsKK8Ov4JeRyevH0/6hd9zEl0imoqz6JQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.59.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra71" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n5XGiqy2fmJY7HprqUBsInq60/A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AuFMuY7HOUxoqQMKlH65lq5oJiT83LsZHx92Q/+YNIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:07:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.161.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n5B4OmcgFdTUDyKQKWS5KtDqDBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q4Dq7zT1uRWcwxzm+kn7AkBRYg3CwJqm868yX+5xoqY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:12:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.154.154.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:f80:ed15:149:154:154:155:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Nivrim" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n31uZCAYPCt2086ZYk68mKIaln4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RCqAJGS5x/ZeXn2zC8NYiIidSeaBCmfk4nepXd7lxWk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:25:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.28.110.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "XORJSRFL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n3SnfrnXby/M5ZHImibg/b0RCrg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ciwrlRUf2XymyiTxqjFRrAWuTrsZWsX6/ecnykxDNd8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:16:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.252.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sn00z" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n15/Wk1dgIuBHfxtg0g/2SUIVpM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yEuN0Hn+xRAsDdZi1HkzDqAIGOH/TaIwRULweM6ffmQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:53:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.179.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:404:200::4b3c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedel26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n1BoMQgY7XxwsLxAh6tVyxLLQ3c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9lRDI7LTdNspVzCTSwG/++tMLCG+31QWZCS5CgAO6Vg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:58:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.128.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:237::cafe]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ripley" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n07qZBNJ9nUzXwbz9XDRSuOQenQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XM+BdCzmgkAb9OZO65KKjbkDs9lNhEwDEENMq3gT24s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.210.83.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=830" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chickenlegs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n0rzB1H3RqAAC7d8pghYyzan0Lg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oQ7ONaNA50cMtegfL4A3wspgaL+ltjdWkF0xCqqoHXM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:47:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.227.99.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9099 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Infinity2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "n0WdR1aqYdftBdAA6kx1f6GaxAE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HkGfBQBWWUpeizqfGy2WIqL3VDydPRHyB9kRQLoG72M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.37.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ukna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nzU03aSGXAqI8++Eu18ebDWFQ3k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HxoVeh7jg/nJHDrDuWOO2OYgc/w3mIRprz6qQA3EqRk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "123.253.34.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber45" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nyzyqCIf3kvimmd+pasn8uouoks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WFohNIWl6z2zRnoyBnGS33DfMMnPMhFxUrl5VgSLExo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::23]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nyhW9tK4mtTvbVcj+rFn21pTUZo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r1jnmpO4EOapSqA/+sjNK8DmyllK7aF4I/6ahzOUJBc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:40:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::105]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "biber" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nwTtwk8XMbYd/4CggQFQc3pHhxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K8IVNBt++9X+nPV0ERzyY2Uvz1N0wQCOcVcUrwi82EI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:13:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::77]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nvSaB1p59ldwj17gCwXOewt52jU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z6O4SKq8icjNVQ0Gu0dEUiQXkzSuCFUFzxqLt+8sdtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.98.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NixOS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nu6GHNil/iah8naHkyMXL1uRCCw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sRNg853hwS/Lf4y2w8lVa5bzM3V6RI+Mr/KiecUTQCQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:26:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.161.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trainmaster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nuqgLjOM31kZ+YPzJFqpWnkLm2w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g8lvL9YyT87JsOv42eHQAQXOdacDVWrJNG3NhotALrA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.46.100.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nuY5hw/efUCmD34cm5Epd9Gu1xI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CsEsDECW412wY0WiNY36j9gdWDBvJwiK5Yh65aFyCrM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:20:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.88.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dr167" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ntjkXSxmbwGcF/I/9Wfp6x59rbg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MPdiQFSfys607JRXf4Z5hp0Yre/ocPCRavNl/scnI5g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:37:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.208.97.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Password" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nsT/rxVrnYk1XAcJFmRAfvnJ50E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X6KSPNrIpGHw+ui9ZjpaxXb8XHuJbT+BLIktvRGKSIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nsPcEuwiLRcSH3wEvkJgNhV+GfE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UbI7a91SxGqNLYrM52Q1UHz+DBT7kru1QtEUjjUNbec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.162.238.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blindschleiche" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nsJL0Ncdl/K7/Dlo3Jxbu1UY6cI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aOC9OYLTeWFON9Uzqo8/vJjQz3ru2HwxrZvB+VP+4Ao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:14:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::77]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fa11en3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nrWBms2l2pTM4EJEczXQBtwlY+4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4s7ZN2QZAZ3+5ErDitsGPySmsybmiDcukgdtziCFclE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.227.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7890 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47a0:67e::1]:7890" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whatconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nrP9hAZeViKlfv7xTkGgG1uZoCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vvA68YVu71EKKpcDgdpVSOmtlRppllTa3Nr9MwSOJCw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:51:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.206.184.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:85c1:beef:2011::9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedWikiLeaks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nqxhy070RqAMWg+NLBgF0nrdhfE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QHsBBQMmX+YXpkp+/cAeEUJyR4REEHtX++ogLJg/dIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:32:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lumiRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nqZdG7YHraS5prKli6oslg34veo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PYNWAM+/7tC8urgCUGKruLZWX9EkBFNInorCC0r8bas" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:51:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.168.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OldCup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nqDfDgRubvngHmXQS0hc+ylvjDk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "737SCJlJQxW3ZbrVAlAFVX4g4qU8EW6a8GRTFBcsmKE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:04:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.251.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:92ff:fe8d:d119]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "npoTVbcN5nW3TE4UuOzfcuQdi/s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t6BUDEq1ixofcwkeoY7vnoSwnSv7EqsRe8ypS1tOKR8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.235.229.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c012:fc5d::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gentoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nplz3PcIB94ZKwLBBcXobGAgIDU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qN8Q730OSu1FuBVZFo0USXVYd9qPpcPnt7v/cOAK51s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "60.241.48.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f2d:6e::5eed]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "colagioia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nojHxQ2gY5QkpkHhQ6YAAQiYoRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OF6JgsO1zlJkNXHbCDT0uDwYkgUP46Yzo3j5AQzmR1Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.14.179.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:91ff:fe96:1cd9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UntilNoEnd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nmJ5KN/l3V5RikUqUD1AiAEV36E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "15eVtSuXFGUFQyekTWPWuyDztZiCGxYmdaB9cWGvY58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.1.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:1c3::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv127" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nmJODl66MVa/2piscDvP+V6aL/Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G8Hg055DG1K9nqR0h6e08zRqtiKlh2LaN3Moch0fav0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:25:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5527]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber55" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nlaAs/XCynaPKCyF26oRcy10VtQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6JsEjy3rE7W9aY/JC7lbIIyByxP0G9Yw5Qxb3Owk4mw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:27:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::28]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Trycs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nk0Xcs7JhsdSYGVziLvFfVg+uB4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BMMN7SxlqWaELK5WFaU+GT7UHBAWDLgiUgdP5xdWthM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.42.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marla" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nkzGTE+Uw1nUPFugkJQyP9vv2XU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UqBEZpm3gQ5IRPz6qGiFKdPiUxTgzrweoW6wbzKcW5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:06:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.117.82.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:21bc:1e::f00f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieditedtheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nkM0U9M/hbcmqrrQQ93QDhcTKcE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vBef6VWKaVZpvuyo0hz/inFO+2mbbQhMY/jbgaXLqyc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.58.110.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:fe33:3c13]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "equinox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "njk8lWBdlvBk26EJTfOQCcAU/V0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7YrFtJ+uWW9OawHJe6Ki94LSUY9cnZ3k1acOBHTKB5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.254.118.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BSSP07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "njY0I5JOzDclqdTUd3JCEZijqEI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OKuJuSdf4IWkxVxNxGop9YIwF+yZxj9xjzLMfiRPGl4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:52:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.235.29.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex47" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ni18aYEmlASqGXC1OJFwGiBCTvg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hQV4bycwPvfxDmGFVKtsmmhytm6mbz757yeQb23LRTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:23:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e646]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WomTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nipLGud3EALbDMmg56BnrCLloSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PpoUTtJamNyxrwSjxlugFbE6aGOnRV/e80HNnKg1jgo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.49.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nh4Di2JCwbcGEpD0YQjQQYtEuaA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kbmxY6Oh/52DeWhnJ91KtC85grLq66rpuNq2HEkOY3Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::c9d:f5ff:fef5:272a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv114" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ngBYMAQB9mh+rln5/oLbiSMDRME" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HIbTPgKOmT1gaqsGcu3jXI9oe9WjNXUbI2SIZDNJB1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5514]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nfHC1LYYLy97Lesa/EsnFRDQ4/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CxGjMOyF4vH8vxM8F7BEPO69G07rgEVC2DSOHEC6XNQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:17:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::36]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ne2XGY37bHpxJ3GY1EiGbzb01Os" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UXd6VxwjF31CDOv/FzKsI9m6n2FRh+nIMllBE7RGVvs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.175.8.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nep7ZTG0RuoauQietZ8E51xST8U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1eQv2C8szGflsu3ZVXSZb7pzcewwtb+4UEJfntL8lP8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:24:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myHome" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ndlp5paY4sdPv2YvmGuqYaoKxVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fnPXPdOOrEujuZTCjq12UyeD5csqEoZF6P6RybzGNsM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:56:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.223.122.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "akira" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nciwKCqNPEUhIWfEVLUDJDvJOVc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EeOU+Zt40qoB9DtqxgZaQ8UxBu9ORASM3oMxNJrAdgU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:33:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.105.73.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "philotes2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nba83BCu+ywDKFfhFK9YWiUunPs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mFatIpxH3AwUKi6eDd5gWsLD/J0pKq/30ppghQ+tRvI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:57:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.118.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorMeDaddy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nbZv0cQUmDgGh6zLiJfhx8g4800" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dq0V21B7ZIbdfPp690mgI/jO3FDS4MP6LkvgF6YaEvA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:24:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.115.184.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HungryTREX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nafvnp1gcM2LcFm4qMxbQc7AJyY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xXoNZleV34KzE4HGlLT77L8gbe+S3Tv0BXdXVPNpj4I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.151.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bifrost" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "naUoSlECGnEeyqZ3yB5UCCIrnyo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zLNKcgyzw0nXdC5rOTCW2RVYeGM4I/QTuoSm9yo5TLE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:58:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.129.255.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay18at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nZf4LxYK7z/9egqyv7aLaREhyxE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w+N7XvYGOsHMzJfZybPmlh6lU3skG/ky0aYghpYiNgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:51:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay42at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nZcLf7rDU9j2BJrU4M7ga73k4X4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QNVyeIB6BmngZN9ma8SXsinVPVxvgbVyJdP+mRrITC0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:58:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "diale0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nYQcpzmTCJTSNWn6WLZjIkpEDMg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b1ltSDqDGNgSkDjqIjViooYDLPz4+0Qpn5hUqwBU8lc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:59:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.33.88.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nYGKKwmW+7UwD7l73YpxvXedGT8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tJbAFnTnfrY+hK+T06f9TBybZKbY3UbLOvw7A52snf8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::86]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who10icebeer46" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nWbsrtOOVNeEzVcXcD34MCL7ZPQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P08LP3DdPFr1T0lVsOWhydC3OmQ18j3iM4LmDSw3Fvo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:56:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.141.233.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8224 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aib9ushiekee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nWPZlTWhKlylOSx5an8OLVN8JJQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kLFKiiH/bAATXekOaAAecrJQHxggP7oBcoxbPRqZfZQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.8.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lptr02ORFzF4Za" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nWF6wXSnheHQNNIG1orzSoeloLo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4D1M4ElwOraahaZgna576UWma+SbZAft2sQIRnjQ92c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.242.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2013:844::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ShayughulRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nV1V476J1hLXH9X8XtUmlQeC/00" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N2pKnJcFmgGxC+LkzaV9RXmjy03YmWZRmZNpQx/81eQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.221.110.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nVp6gbxhlFVc51H3X7GW5KOYLMU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+s4q+VauZ5FJ11aklj9FMTZWgWnRgo2A2MboUMi47WI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:13:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:13::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nUt69fdXjrpfYRKvlzf4XULCMhc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aJOsjPk6epSEfGc60IWHCWWVSFD4rpVaHFnTdrPcWH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:32:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::59]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=94" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BenjaminDover" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nT+qLM1I4IeVpyQYRpF0SRczhik" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C1osu9B3+6xtGrR1+5DIkXSFhtWUxioydENiJDcg+is" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:38:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.200.140.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:908:1082:4b10::b002]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Superluminal3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nTBflZFIw7jOELbAzhaJqxfXAUY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o7csanNB33hqTmuFP3aJT03oTI3AaN2gAFCHz+GwhPM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:22:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.79.156.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2402:1f00:8000:800::e5b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freeworld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nSyigc5d8cyCHqBkbC2uOyya1lc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tjFWZlX6n96OBNNwxqfKC3Rk4RpNg3fdNjWe4t1iD+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "186.190.208.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nSHwNMO/9OdzfQjPd13BdFcGgB8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YpaaGDw7Oxkyk+L0qSe6uZOWtLHqkeDQFLcoFfe1YhI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:40:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::106]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nQ9kDmuNdVKuv7+mSBtENQePM7g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "395nNkEGAdD6WWtw/vOrDji897kVwgKpdeXLZDmgbog" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:40:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::15]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE70" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nPf0JADpb0lpe8a0j/pBdtWreF0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KvHPsgGKrVKLJQsXP9n4uroaXqq/ytFzFCFkWY/OuWE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:14:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:10b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "R3S6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nPfoTUA3GcvQsjgauBDwr52tJ5Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pJ+Xv9L9wbwQOPTWHFeRfzJHZKENKMudgKXT/31m0os" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:34:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.146.232.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:164:0:5233:2d:5336]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoGodsNoMastersDE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nOE3q1gk22fyTlRAbpCfaYygPm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oYp1LV1qO2ay5io6gepWKs6DnHnQpGdBx/kdF300szs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:21:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.55.245.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra47" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nNOGu4BPub7pL6EeYOkkFVXMt5o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aK3h3VEI3cgmmWQCFaX3YyOo1tT+eApM5dn4epdLEX8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:49:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::147]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nNEqqKPIwePxZF04wwmM0icMVug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FiEMOOk7FQJHUZXxkixEx6qxFZ/wUrOGu4X6MFU8NIo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.133.52.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Saturn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nMzvhegk5AT56rhP/MeseaVDMZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QoLRSVu9tC1TZISOTyngcgRb0LjQpXvWuQzkZOs8D98" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:23:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.129.32.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fed2:fc0:d::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BigDaddy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nMPpwfQZbU8R8rgV+OoLYwofzIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YZIO8sVVvT5xw+1baM4rJyT/y730jmBe6LDGVKx6PSQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:41:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.21.217.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10041 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nL6MBvIORuR4DdvITyFhXcVCs0E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ADFaJWoDFuw786blGGR4+uuifR2yi9efSi1zNxtp/ns" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:46:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.232.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:ad8b:50::a]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NightRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nL1JNxvbiPuPsnjCWuip8d4UmOo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7mAZUsQ5TOJGe32KNUH2fMP50swdO05nbSpnDWMyo78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:40:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.101.139.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "enif" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nK04Aoj8CG5oBqWenEByzXXyYiA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zW4prxl2zJU0eIYeonWee80DfDpJk52XU3EgmKlQgeU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:13:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.50.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nKSrKwQsFzrFZHnGn19Dbp8eD5Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kFYmsUlZ1kFaDBAKgaPNhjAkHeYSX7/W8GPjmWKYsQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.227.67.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 51505 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "protesilaus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nJflhAV4aXAwq/x3hEQuMu/Y6R0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q7hDFp0AHp7CWiBUqaVDHyEqwCeJHTKXu8Yo9BrkXMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:25:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.145.245.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8000:6a00:1::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bledo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nJepqDLOgqvncQJRuCcj7qCRRqw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OHynU/JRwn+MZkAbebYFK7pOA4EnW1+GogMWyZIo3Go" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.176.200.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay14at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nJeTn9cup6MBGV5B3NqQfkSUqbU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7tp67ymmtsG5/dseYhBg5zihsBM02PeQ3M7xt3TXuWE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:50:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RAPTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nJaZAxler2g9oTAC7NW7O0D8sO4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QwmXVBFBuGLR8insLNleNGtPI4LtuPKaEA/T5a65zr4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:52:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.124.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:789:a7fc:5e5:7f84:de31]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "santaclaus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nJYq75eElmEsUh0JYy5Z7QVdU+0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UdXlPDF9roEGZC1cVIRwYAZ4Uis2awBLoTiqSrgvdVY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.170.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "firstor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nJAKf29d0DTP/RktrsnMqoE9sCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "COkQW+8AgAewpDVK2rYnUjrdst6zuHelO+9kff0GQpA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:06:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.105.212.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:75c0:29:39e6::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torntgonl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nIqw1f7yQoHfzblHhKauTxuilo8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fm7rsc9qlEDXuZMrKjah0vTpzGD+VIdwXn74cINX81k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:57:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.129.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:6a56::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bashfulbear" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nIT/HxO3OOy1OA91yUM6sqGCdGc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YvHQIBnLv2GPfScKqg3VX1r7az+ucc/FiUhXMuId4uE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:11:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.171.155.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=70000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nGzeyDbbU5ELivUJsXgeFA+mnFQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KHgN2+A4x2zP3EavS9/dpZKpURHjbrez4IsXJXy5bBE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.50.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:1015::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor5e2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nGH8CgFAHt9xxASGZeU5aOgTUfw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4qxzLNRtdxXQQNMUqCEWRiQmkXcpOjGTlAKEM6JMrxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:30:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::23]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "coffswifi4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nFr9Sark4CcrrXgMbdcc4aNgEqY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ugubOemkNFDGLO0BETo3SzIVgNztD4mxaOjoZ6BPxpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:58:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.223.14.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:91::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay27at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nEzTIb/qeWzocfGGd2AB+++IZCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gcTcAUwXmNjGop1K+hsuL2xJAuz53aZHhGlkaz2NjQk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:55:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Feidhlim04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nDBbwJhSx8ti6aQfnsoQi7+yNSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ERfb1T27IGoVty/Fe9w2HF3Sp7uHsHXI24t2RkhIaeo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:28:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.27.85.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeepGreenResistance" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nCv5seMOuxo4NvoEvu6MwZLMHls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8zFa8R+xhRsHVhYqGsy7HOTMm87MucNeLHvcUVqak4Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.165.169.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=90" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "clan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nCSkQQAOZjbUBB//1mnI3RZnLLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rWZ/mSVZhTDhuE/ogJ6oL+zzJCg7atoODGASOgxhzvc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.123.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Trimblelink" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nCLAFTLQMMJJ3joxVcbjorwzs2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hipuAQlTgUkfJJdMa4B3cVWDWuKoXsjKEDaTNpQET7k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.246.126.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex95" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nCIyrezOxq4MRX0u065jQlVAxZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6W97zV30w1PxmxquObaid6KJ9UOKpMOl6XOuS4+PIVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:11:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::184]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nB59khFdQxOFuMrqanwV+4nOI2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0IhZdg42QPrjMabmN7MjQnta0dcpkBtXcSzPrGQsA5s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e64a]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nB5H/yBfNJ1p1WmuftFTZqVVSkY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7GTQqYrb/ZVl+PFj4l1XKGfSFQZpvfQA8ZrLl6qNwn8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:21:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.162.251.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1a:5de:6489:b7ff:fe8f:8434]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JanKuciak" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "nBVZxGrQJ57vb9GH4bJ9k5wwMIY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yjxf0AoXEuq2jvkO9x8ysOC4GBoNKk1Je1C+Hh/y8fI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.79.178.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:5bf::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra52" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m/YA1sBqP74oIWxYzSQaiZMcvn0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F3F6tdajJ6Pwmo4qKdr7FXXG6HyWqwbz0durh7gGYvA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.79.204.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LonelyNeutrino" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m/ShNzB3SGXvbdcQLZivGjPlTgw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zTgJeOubCBxo13liaqY3jOFIY9FiqFnq55NK5yDqJQ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.183.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=88" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "saturn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m/Gqu4t4ZC3BJB6GoqdYi4SWxo8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YdVZKM/QPRbXYGL/Pxnab1FZ5xLTU5K/urnkNz+Yxe8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:29:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "183.88.130.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9876 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wendigo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m+wiKbo+MOmFeSCe/KQoFYYR1X0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tewiIoPs8LfvscMCYewipPxBPDeOgpgJEu4Sf3e/4Tc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.82.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:82e4::1]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LandShrimp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m9Z2UIbo9LFdF/Fm9BkRSU7Xi94" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Eeb5cgI4W67bRxpLWfaVSi6KY5z2uE3Ibzoj2BRTO0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.22.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:1669::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=76000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "4mnesia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m9DuebuYeN1tjY6ioojV4wHlwTY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tER2UUt7tudxMkGdqkLwDjL5NXlB52oW/NQ7Gsk7Cyg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.99.2.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:173:2953::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lavaeolous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m8new3HRcZDwGF182kLzCmF7an8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bb+jky3nfld2oaLaNYgZiA5hGsyiwBpw/KJUjle1lzc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:28:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.48.120.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1af8:4700:a114:6::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fogelholk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m7t4g6vRi2hHDoII3rWqSyrjkLA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Js8LSuShrdQ4go2GSwEJ9U/WB3922C8gEUSWuxgXbCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:03:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.208.128.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 990 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OasisWorld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m7n5OORC9XqPUJy7qWP8gNC7mWM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9UpZhcflwjyn0PbZm9HOGyLrbNUj7XX9xm0C5jTkaOk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.124.176.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pellirin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m7a2hVv/t7LGKLTIYRyHqbbPjnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s3BQxVHtBxRi/BwGWtBLdaMsB1t+9Mk4g8tobb1BuhY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:24:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.141.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iamnordischerring" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m7ZrPmBVPl/rek27Upn+v0XmBbA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8zBDZwQYfi14kDQSENR7CvdlBijYcnxmGgOViocqMBo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:20:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.205.237.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "calator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m6qpy6MQnCyAfy6E1cnAyMFH3OY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/i5evaZ7r8o5RVMOgmeQVgk1CN0x/inktiyTgKUDm3M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:45:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:73::d735]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FASHIONCLEFT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m6kzTadpp8ltRk+eo4qXAIi2/ss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kWQphYC4LwIpcXD1YrKL7HACqa8d+4XnJ5416c7GW+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.223.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:9ed2::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ekumen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m6hOjJAINnb4bHQnyNEFkl8TcWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "honaJjm5br0kSFfKD5RnPsg7j3Lu7YrUYepjUbNhbPo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:20:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.142.161.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:47:216:3eff:fe3d:888c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pivo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m6EonNz9kHuNQKirEvNr5iDdQIU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T7GYRlA5lUhvSBZpuigkqVDn2YiFQRu0FHjnIA5sIFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.180.216.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3003:1052::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation59" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m40IJ1yFKmd+jGXh3adEMb5Qm0w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jXElPlVPZAWn2CGQTnoUBIfQR3a7VLwy/AOVv4HLI8w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:17:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.143.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m3uuMl69rYWYaNLGC/ZYjKWUkDk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SzUa9NrUqcMno63wHY4UfpG7T05xhp0OJKorkLRwlxU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.136.106.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:29e0:2:6:1:1:3abf:d9e5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ThinkPad" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m3NP8W9XeFAJFv4kOxxG2TI54bY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a01J+97HcSanmhTLbfF6MHZXWuZt6M3RgpZyhgY6JoA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:28:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.86.13.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 420 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fleischgewehr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m17TNw4AKuuyqbJeMhPBgXzNLYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DnJRC4rVPqlU5ge2wEy2S+PRKyPdS7qMMt2WN0aXq6Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.65.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1830:180b::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "5gnPr4VhxQm2zHcHQcm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m1Cb6Dh8poddPXzaR3i/keHPcdQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RXsZ5+S87mV8kEpVCuNdkXTg6LlGTU2nplikUapVlxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "61.197.78.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:24:337:21a:92ff:fe22:c7b3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "scamtown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "m0R7eHj38YnQfTJuzDmTt6DF3BA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2f42nizlZcME1PcLStK5elYOA/9Cl06MWAjJdwwIoGs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:00:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.189.110.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "scaletoer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mz56CtmgVJhMyH58qdXBFyAtRdQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NuKmZ4U4wv0vTyqYDDj05oyobOoK4aT6/iG2Y/A1sxM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:49:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.36.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1830:e12::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorExitFinland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mzHx8cFVT5/7NFWRH4LoGO98eIM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zHSyemm2QAAi42rl+DWhrC70+hyeUrKfS3fblrzPYAE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.86.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:1::11]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MIGHTYWANG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "myvH79ZhByr63FM76NzxwZ2MLcw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BaXbHZk4mVn+xOBsYlajcitBy6C4lQE3G7oFwzaiXtQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:00:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.127.69.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:29d0:8008:c0de:bad:beef::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Agafa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mynk9J4XEI/koZG8bOnFn/uocnY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b6uPylZlxjne4+49sELWV+R2vZ4xauFy60KvPoyXlDg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.120.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mullbinde8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mySyFJYxFncENi4HNWqem/wfDwU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d430t3AUc3+cX1g+ybjyxiq+p39p98Hb36AJyMDMrZE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.3.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:3d9:200::201]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "horriblefarmhouse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "myJYZZlGoHhZWZ99NhEpxPkSgk8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sAKQ3zK3H5R30qGbgtnIYheLK9JR3WprwFZqwgWAHcI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:48:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.168.126.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=830" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "myJUK6CF+OzMi20PiJe42xxubWU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vuMrELDFjAHUFKtx3oQIjnvUX2+s95LexmSS7tBEqGk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:04:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.142.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:91ff:fe08:e487]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer86" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mxwP4A/Z1Fvh+bCLXZITQweeNHo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+9FDFBrSOrb9C+hM3iwPqQQ55G+wnDre7Bm+YuRXFuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:22:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8186 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mxLA1aNDUATz3hSfg+dS5EUi4pc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+dGS6nAhN+0XruP4ywtGd5hDMYOnGfC5oVGLV31I2/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mwcKBL48k2TH4NlhuzVpwzRmPKA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TSw/xWO6y7myt9ncYOTdchIrMyNYvu/yFT/gEBtcJvA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10050 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::50]:10050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Torrible" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mu03O9lBXoO9z8c1/KKIF4gpRZo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L6WsWliLbRg2l61ER7vrfAeXXtYI+8JdIq8mgeS0Vfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.218.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:91ff:fed5:bb1f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1190" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "muj1TtSAK5K4bsCFwq9XopzYlEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FwWJmQKvROmG3vhtIVAGnx/uwgu3ZJZAylL4qY91+Qk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11190 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::190]:11190" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "muQ8va6XeRGTbIr3+24rqxlaGDo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gn0C3n21RPElEHF9sFRftfJ/nSOsWp3HDASMglMwvmc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.53.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c012:66a0::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "p4r7154nRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "muOJZCWoU5iVJGckow8t0QhbO08" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LKgy4roqGcB/uY/iJh/gHWcgY5nr7VKXJoddy2gL9Tc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:38:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.140.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fokaia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mttD2EKFL03gOzUC+pDLq58ECpU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ifgWrEV3mJ+OHjWmtMed8WjI7dhADNUE8Q30gWPS7IE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.192.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:8:69a:74ab:8fff:fe06:a47a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip5a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mtkDF92i+JjrCuDyCXbql+evkBI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Fjqctq3sa5NV/BdFKwU/IFBKgfyhlTvsV+QAIjm1do" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:15:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::252]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rand0mByte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mtKFRNrlepipEeJb/yTflIRgZxM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d8K2UZcZjk2ydmJHknhuAQt2hP4lcMe/QrfcEC+pHDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.210.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YonderYuccaN2NoExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ms0haAzL5lpdWmONhag4ioXW7gU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+MBDqP4sZeSkj6aWyvFCWuUtkbJ5p7FcYj6/lKhBIDs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:58:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.136.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:6a16:1130::2:31]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=76000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ingmar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "msHm1tZdgDakLz9riK3Cvr3hfxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5q2G0tQPJuyRU8iRaJCCiaLXyWg06HCyZJ3WToyuLNQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.100.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "atomcats" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mrk7VCIUnl3/S+ajgU4vbZZI22o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bkKYRJxYg0/K7d+Cj8hjjMe/kiy7rM2XAVVC86UcFj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.204.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:800:158b::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "instrdayRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mrjeNizVPvAv6HptDnWINdIlais" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "28jxN2hClABsGdJkFk862Lgr2Ks+fNrcaxl/o6Dp9rM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.219.192.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torexitnode38" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mrLvIinvDTZIz1+hSR3QJnILrTA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IQ8pUNWIJR3YFFhTlNhSOHDvpUeDnVj6v+vlxLFU/TM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.215.11.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:3024:1c3a::81b0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1178" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mqvfWo5dVGZjqReI7P2cSEdA12E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W1aTVpTwZCCoRUHAN4TI8HPoWnCMfevBMezXQ7UzL6g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11178 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::178]:11178" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eniac" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mqsmiLyTNMcqoZ7L6uceNGqJZWI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o5x0NwtZSKSe1exTYTL2lb5ge9KKMD/DdUg1wj7tN3s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:41:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.56.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flurry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mqaS/ptq4zmxZbawNNt2kHIwXcA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J63VAIr6UxQ2V2Vyccr6zL64HAO8+mcRvI6YB8fM//k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:10:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.73.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.12" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor3e1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mqP/NeelSdIzfpYjM9Nm4QL+TVA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wk1in6OAUBsUKyxIbdkk2HpeN/BFNifueSL60/m4cOo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:33:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.230.208.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:418:6017::147]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FromSwedenWithLove" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mqPsO9M0yJmHYs81h2EWTSJIHrQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b7wBwTjP6Yo8Rvave9D1ZSTRoeI4BupeOtPFFnGN79A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.246.44.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:752:0:18::17c2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv123" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mozZzWKynbBUnioRfrLwFPWv/vE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bplP7RjUsa2GBjk4m2H/WGbEmTD680wWYl1d+wRQZhE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5523]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mokCuYXi9YvHQGcQQOcWWskE3UA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f5lKRfu3AOkXVkO6Aj8CriGtoLyb5zYXo/W+85wfnwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "naruto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "moIRT3Z9Ci5ag/9ggVtkBErCJLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NOki9glWK8PgxcJJppC0ymxL8SJZgeU7VSE2pxjxtZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fqglu70q6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "moDLhEM6rpay9q3EBbVm4YuenQo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rn8vu3pD1ExKiUuxqkI9VLIVyjJilZC9NTYn6DUmGfk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:35:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.66.185.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mng8qp2roXjZhkRx6ShwRcv9xyY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Syhbsa8lobSIQf0xct8iQvD3fJ9UnX8PYrr1x/PsR0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:10:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::246]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "D3S4RS1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mnXMAFyg2S/9P5YAOyUkwgsFPig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MRNltQH+8KK2DdyjDoI7P6fhBJWGP+j/ZnriQN0rtLo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:42:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.43.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mmZxilT79XUadBZQK6RzjO+kgj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b0WRn2/2OO3SJESr89xdYUYQQYFNGqQ75yoI1Efqtho" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::192]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Frodo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mmMYUmoRv0DF5thvlpKILLA0eLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jcBVuypfy0jPSuTf5iGV1KnFOiSieVDU2Pr1YH3zhdA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:31:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.113.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "presaultboubd8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mkusbWsUVvs/jAkkBJ1Icumxr5A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SBtpP9CptR+iKaxpemIzQc77R6KmbgK9XBRpeBX7RZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:08:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.46.254.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raktentechnik01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mjnnOUKdvEzlmLcSV2TWwm3HP8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8wvpRijboVWohaueuk1MxDLtT/wNSN4SdZVslkb/Mew" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:47:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.91.124.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dcon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mjmwt1cJ3XR/XZSn8kxr/YC8WHs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zpGvn5vAubBHnosquND/uOIycZmrnREyZxQ7qaHzXI4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:06:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.204.40.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mjOPOExf06NgTjJQzPX192Kddxc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w73U6Cgyl5laX1vUaohhrBzzzp9BsPpOW6UT4EhSYQs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::202]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber40" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mjB2xeuNhRULbKargfnTV5CRZZo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m3VswIt7YJC/51fd0HdzzoTzjo9NpUhm9lIwGXAvA3Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:29:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::20]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Todry542" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mip+Vcwh3yxhcQaP2d9rNatQQTI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YrkMGdtMOGNDYBMaJmI7atZpHxkEIUx8sKxrhQGvkok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.141.40.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9393 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BigBob" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "miDbvGWSiSFYy7GbaFwrd0UPX7w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hA12ieDqR1EQR8mY8W521tHomPTuxKE0d3+dpWUx5N4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:57:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.113.58.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mhOaQYgcIHRrJYpNeLQ+wcv7qdo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Esu6yHVuyuegVO0n6knZRBHzcyeWl+Vn9KmQrvm/sac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::ec53:d3ff:fe97:298a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lnag" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mgqvLkO+N0TNHWzVMshh9aVo96k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ObcPbPhMgIgck2VsJL6Vu3EmO98CY78MwEWajcjC9gQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.119.249.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ThisNodeDontGlow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mfeFEnhfRSNqNTIqFkOqCNxjmbU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y2WJOIwuGv3CoccLdccZUUu0HjibfmOJfOowO1ObdPk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.19.213.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:9114::149]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masterchief" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mexk/p7w4OzsPhJaIyfCd5weeUc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZsW8Qi3Nzt3953URZuDXl09/cI6Q8lbC/Wyp4SLSrLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:43:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.66.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:140:244f::2]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "meunK6CO+Zo+CuTb/SeSvyoYxGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xviLKeXNIHi2PuXlxHaa6HHTceIns+lJu1bWggWCj4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10035 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::35]:10035" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "meY/Lrhgkh3544jaMOz1JFUdk8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "22iN/e8q0YMXmv9WTTWVvAVwVgEHkdWhUJFG/MCzE20" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:50:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "180.150.77.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=850" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ViDiSrv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "meJG20gLMTowErwzYwk8wmzSCcc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rUS74iF6iT82lbThV/V3n7dOzSeHqO5iuohMn/riIpE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.254.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 31337 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3002:3972::1]:31337" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "meFSzbEvWrvgjAoupbEmzT8frF8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xBMhlCiYb0v4INfFBB7sr3Gn0Tx7YmKrLV9/GchpcPA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:27:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::3]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis65" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mduZ3yLuUrmzoydJwS7ep48Waz8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nimdbCU1Di2L/WADpxAdZU0sSXLAnnRxLbAVMflGOjE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.208.197.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4620 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5120::5e]:4620" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyStIC" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mdq/98KOmKwIzzKEhHJMjcQjvfo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G6T3MRKicUjFVXX6VAAoG60aaPmmV1FhnpUq6UAtu1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:03:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.240.187.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryKenzie0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mdXJpacjiYbR6h13cc+BtKGSxNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "77jI1TDRbwxchwvnnUv5hmn5Nu3RakXKZ7RqMWsMLf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.136.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:3408::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Frikadellenbude" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mcyeHEv1wR1/yc8kndfgQ14FddI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bheOzhkiS+Aybz/KeK10a3E1tSxlJOnvhMKYDSWZUog" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:55:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.135.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:32ca::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prayerfortibet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mcWs71rI49PE3nkATzrGSbN1iRw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9PaNUCEjv+SWvvZNlfQkv0lzy1XISgQcrDJb1UKB6Ms" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.244.181.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=610" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mbLL9u/YCs0wPoCJZWZo7yNgFc0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xVmaZFtbXj/zXveQ37AUMeS+7zDVi1O8wPdN/ZdDRWg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.159.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Reichsfunkmast" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mabt7ET3M6yvJTmzUxGPNtJzIuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aqr3xjOLO1n8DO3wRV+3gmgNJLi/9+a1sz9xIQb8TOY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:48:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.31.46.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NjordSkadi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mZtKn4N6NF6qa8EcLx9wHF0R49w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4upKXkaa0NcKkIx7ueErKdOpxBJ+vLZMjsENr81exVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.25.51.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:2180:0:1::f1a2:de3f]:5005" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "udeserveprivacy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mZKQQAVOwe8JJ0Z+RYijeHmJHJw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vQkrvtoVQwmsru/ZPTvDGkXdlIru0neNQCy/IjknWRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.197.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plugrlogin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mYagumWqCdtecNxwgc/Kcs9+1Os" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gU6B5zvngdcTzGU4pyx34WqEWruAbqeUyNYd6UKS1XI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.245.134.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mXPh6XMKWP26nhEtKzNC0sDZIbU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jGPUDqNOq1EjR4z3gTqe3zjRUzwK848RsufHEZheWVA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:3::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mXH1GjJ0dYtcWeHWWA7SwT4Ty+w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bd6oG8+cfxNBNhrNVA6BSI8u+tPVACEye5A50cixRHA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:2::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Reeses1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mW9M/XgTAgO4DoVKTvbKI1XGxyw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TlpxUDMPgmFCZm0xcQ9ZF8fcf08iOvBziGGq8vEQ8Xc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:20:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.112.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mWvI8u6eFbOotla8FNPNJQvcVW8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IusutdXar8j+m/3RKViy0+D4Px7/ZnOtwQuNoveO88o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:11:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.173.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:42ce:4d00:9ee8:333a:7b86:8014]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mWaetxaJW9uyv0eh+r37/+sebcM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XWAfsm77XEe7V6iVmfflhfHQ4QBo+OP8G7uq/s2FY4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:17:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.35.2.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mVjslJIvElLh4dp0il7jiJzjy4M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VMZCbR5QPPayvSz/9k5CBqv8PIhvbVTgK6zkNivz4nI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:07:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.56.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bassblitzed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mVNiwE6vshS8lr6djw8LcS07t2M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2ERhARU23ERpPonbl0lI1Mnz+I2tSZpezRw65RVMhhc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.24.210.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0184" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mT0x3dcu/4w/vFpImd+F4GLk4Mo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DE3Uz7qVbjeg8b89d/aDwSV2BBJOiD7KtHpnjMVaGV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10184 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::184]:10184" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WalkAway" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mTjjqsZM6dVrdD7NiyyiNa+533Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jv/2rkeGfc/8bNmL3RJYb+5IvuJ0EVhp2MMJmTrQaOo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.43.153.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mTOfPmi8zBORvxTIIdgHZv4MWVY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7TVJxcbQjNF3o+0r5z4t+hEmtxgow6Wib9AtZ2xVITQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.166.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WaldoTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mSIUcwCA7JEG7mkS5dfYlvo0hic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ULxCniCwz/XCsZ4hwYarmJbGuO5W6SMESLULtNWsacg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.174.143.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "glenda2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mPt1dJMtvW/p51FpmC7fulD4YXU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2IDklm/Kpm/Uf7E1a49I1wh83Sn+6Sh38dmuTQ+Wuno" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.117.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:1c57::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mPeTxzIM48FaRTU6/MFldHpANm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "28mYJxLrJvVgfkajAWg99K2+NfGLplqqc3tLQldQnTQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:1::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hkff3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mPFiB6UhHQfkeXbkv0rEKWOegjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KJYZseNSEEsTpyjJrnq1R1YxiU0Kh0R/9LRjRzo9vjU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.61.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "agrajag" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mO85gfdm+fh9fDmebdD/w4Z3Ea8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m3TSZbt/w1tsw8DnTSv+UdDNnOJvOgFaQeZMcT99Ap8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.252.5.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11311 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:deb8:a5::2]:11311" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SpectacularFogNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mO4HwBk44BTDhkC2W1khYUOgUqY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tDUqncH/JECeVvBwIo/uXekFqqLKqXTHLD/2NU36CF4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.100.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:105:78fc::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OMICRON" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mM3a92QZxdvLz1Eth+P5m6XyJ3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UmMkXMkiVvQjgCf7VTlZIS3tlm604WMSdPfKKD4xFhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:24:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.142.239.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "roffelpoff" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mL1HE6bR4PTHqujDTOfYQ1dtPw4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aG6IPbZC/FU5nTckcELGCmuJUfvsBoP8rgc91DrnuF4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:48:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.106.229.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:f6::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VTITor4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mLSSO8Y2vyERwQD2ky7jOguTfrI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dwWreyPRR8UA/dSrk5PCK8dcMIGbKJwIVH9PYAxnF64" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:25:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.128.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PerplesTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mK5H2FHXd96DLNyiiBcGOonSFo4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wubGskOhy7NpbAGUbQUq0f5WVB2Ht56lGR3PFmdAq8c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:40:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.248.12.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:6001:38d4:5400:3ff:fe8b:65f6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tortare" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mK4GqbssZRd4hP0Rd0r1DhtyHY8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/D8dWJIdwIdVtXynGMdNLkKlO0XUt8aIEnh3qawCRCI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:52:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.241.106.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maplefire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mKYCLTndJZAtdyi2W+KOVVf1uRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u3yGDYbH0obgxT6NqvI6CmJVAPEa9U95GBNoqvMcYaU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:08:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.12.180.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wild" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mJdvhNRflfiDBTBJ33ihSrYF25M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jb88ep8aXeNWjngBC0kcRF0IhAPetBQ0aDb0vPSQdwA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:13:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.91.102.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mIZ/UkJQWi3VgchbHOJWCQuH8Tg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6OSD07c/ONjyUCGJV1Jc+gQnFIlVD/72fnbJZjOhgKI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.43.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:688:b854:7ff:fe48:bdcb]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freedominsteadofnsa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mIBj3w+9Pbc6j+H1ggcSuV0kjHg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CgA5alV8UT3YTKoT6spmGAPdcm+50Hm/sRLm3hCuoVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.102.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bolard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mH0HBtQgcPHiFCqfzLVrOIeAjTQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ThAsBesVLMv/EfIlb7M7tTuQvxLn5tF5HDgl8bwBe14" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.131.2.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ClubPhantom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mHz8Vv174rlAuR0IfIj4I4ZFNmM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "evQYQWcN0AVLJiC8bAIRXC3AxZTW0Yb2RUKXMKLIH0M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:35:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.239.46.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dontsnoopmepls" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mHtRQACvGpQ2t6k7+bE1nFG+xjM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zh9wzWLRWstgkG1au2YA2xNI4M2yE2dvN0wj1sR0X78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:38:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "119.18.21.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12760 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chad2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mGEyq7XVEvr0DmN3W2wHInqKnLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x96TWWs0Fath0bPUFAFVbQ1dhlZPAvpnO2OPZG7EC68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:52:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.145.38.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pilgrimgreyreborn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mF/eh2ivFR+1dgGxd9I7XChaoS8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eLCw9YEK1G8daV4H6R8uiAooAJNNg+1+zYkaQzEBjMQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:42:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.110.108.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KruemelFreedomRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mFeaYNzJGdWccTbGsGzcj+OuVxE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DudZ7tS1sMFaxLGNcTqz/ENyBkyRvp7Vh8OJZUQOPEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:53:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.48.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3456 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8002:5100:4d56:ebac:3c5d:a65b]:3456" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelayepsom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mFGPdHAiFgSSgzNZmLZtxmQEwEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2SZ8HwKZygOZlixG1mCGzAGbXRVLFG5KcInEvFflgbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:49:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.39.132.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Athena" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mE0iRNfaVDxBkVvt8dgCZDCrZr4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JwRylgUVbMddgJz4p2bENFqFfg+NJmL8CdNrr5n5oZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.135.163.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:e6bb::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ppebBSDRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mEis5lRtxBcvcOWwP9r6TuwuKnI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k1z/New6TPH6yHWJGhEdL/n2PKxoO//H4Kau8Uy5TPk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:48:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.99.232.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LadyTremaine1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mDXVDVbHhxo8G6HIqGhl1IEM3HA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZEM5Bf4BYUP+5xgeP18ZSSEua6/SFQ9CN5qdPMXuk10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:00:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.141.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mC8mHsXS19uJ19AyAAngLnUt/mk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ObwG6gBOCMMcWuS2BEwpolJo4SztfGKbzBMny6gVPug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.104.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jstark1809eff" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mB34goQiB6dZ+sjOV2UbjeiiHMQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OkwdgOsQUMp8+K8tS/LY25vG6MbsFJox5ZVgPpBeTlg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.91.26.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:4300:a:3e9::170]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "mBON/T4sjInY9asR75tr/yctg7Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ECxKpIi1x/VI0FqYuRrNDOzeeSOraCKT3Ooq86r2tNk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.38.219.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:73f7::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myOnionBox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l/wCggkSRBvC3+Os9DPkVXFLCvU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0GKkG4vr43+zps5Fu83kRGYGkVwaeN+O5ewc8HT7kZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:27:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.247.206.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip1a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l/Ua9nka0zmBziXceiYYQp8ls7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xECuRbgaRdrWwhcKvgBtRB93cqh4rSxn2GHaKpGQL9U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:34:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::248]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nil" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l+agCRhfzypY2IRUXk4Y/2ErewY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kwhqh4b42ieAEe4pXZyoqwyhGxN4J+w4po2roWxVLww" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:47:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.244.31.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 59001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l+PN/cxy0xQjKKJTrZTHQjweiMc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SepnCpjPqRpzv/r85OVN2sPB59EE10ZxXnfPwO+jNLA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::8832:85ff:fe5b:13b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay21at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l+NIznj5UleX2kgn/K6UwV/f+ao" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MAfwLEs821vWBO9RXKKemVWdvlqmijDLluB6oNR7iFw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:57:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l9gJ30CltBAvLElWp9t+cJthGDI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W0XaoK3QfjTU5jhwPoxf9LrCYHa2DznX1u96YP5b1Pk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:58:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.104.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:7ce:b8cf:42ff:feb1:36da]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "erasmus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l9cQjQsC9Zr7lMOqIjDxyDSllVM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hVni08wC1Y5mywi8+skbksP5mn4ALxw3ec4LdORYvpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.74.58.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fe73:8ad1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorDedi3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l9PYP0LQzQYE3zvJvZTPyup0yCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n6zbLOVzNeHn4aX2N1vq6t/88NIOIVIzZrTdxWhT8c0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:20:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.28.107.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:2::762d:1]:143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "goldfoil" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l81Mz3avzXU0A7JBSfSa460/DCM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VIqfu9/SKsz1IYYQ3aJPmm7QeGkbZk/apTAnDWRx6yw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.202.48.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeezNodesNo1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l7xqR0c2kEiIm4QqWfkhsGAyens" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "osWKbKSpQ8eJ/29ONH0Kb/Au6FYNGRV+NiYOejM1Bb8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:12:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.88.16.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l6XAo1Uhnu7cjCv/snymmVsm9ro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VFRC25Oa5BV+csuegzrSt/LcLgmgMs6fA5Xii4x1O70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Octogon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l5suZ39tlIIM2NZFYm7Xdtyxy2w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DDmZtlt5swU2zwb8XlzH6sXEUjOIIzFomXUmDqFYjkQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:21:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.203.32.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=890" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l5QLlCZGTCS8q3B5cRwqllgA5Ow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mx40qukW0SkGaNwmepRAsxZCE339jiqwFIhl7tKRONY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:25:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::228]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l4Gw7oHpWUEHOvo3VCs27XEBjUk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X7rm1F0SRzgMM4CprxdDh2uIl2+E0juCPVCcDRfaRYg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:41:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.37.102.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l3576rOCvZ4SxuC4uhXjhrFbx/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9Ls+VuTbgBctenDbRKqOVYq/6iuwqS2KjdT4PZ15GjU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:59:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:20:3467:a5ff:fe26:453e]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sidereal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l3dbVgdJwNidh5PbgtP/3g8fJM0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tVKS1rnfvxcCpC6yfZpu8fz/XfEQy2TlPhqEz51XhW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:31:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.179.187.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2403:580b:bbcd:0:4f91:ccc9:dec9:8227]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cvbnet3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l3VUVefcTpXw8u5mD88Rcmtr9po" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4xXhb433SCIV8uNnVxp5Zzrn4igrdxiQZ5Ap92mhoiA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:06:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.122.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:4b7::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smallsweatnode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l3LvtTU5fJQsOriAT7Nc/60BJDg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i2Kxjeic42Kho9G2I4r9gRKheGj98ycH10nYArn6dFQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.153.1.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nopejustnope" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l21iN0D5EO/m+X5ULozoVqgs7YU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ISwxg3gYx9bGZclJTzoGj89PZQ1m7227vXfwV73jTfA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.99.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9991 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arknet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "l10TjghRwG0q1SDffyRmCAKXDKE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D5UXyR8yLezMxcPUpgmPu8BI4vr2zCTGmRtXzbKhZEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:08:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.10.170.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "astolfo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lzj49cOGza9XB9Dc7UKPKBPKKF8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P1U32J4SoM4svI5wrI0k2g2QdprzQfL2RY2TkkwSIuE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:17:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.85.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:120:1381::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "atoratvm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lze+sC25/mqJ8qAiCB+33ax1Gus" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iYUfKuYTBXXFbhNl+WtbzYYiSyeKf8sYlcIUUXzFsxE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:06:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.218.242.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c6c0:0:151:3::84]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eddy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lzYHUmvpyP2gPruvUn1nrm/9Zd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qfhk0AVhs5DuZpaUuXCuzvcVsyOmY0xNH5qn1OoN3qc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.201.133.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Karazhan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lzKiMF9KtYlxp4PsVtcLMN/sMQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JolENc+WAVR21PRQdm/+mQ6I25nm4To4lprXAmKK0w8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.25.224.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2f0a:c209:1700:dea6:32ff:fe77:532e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "defaultconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lym0oc/oxiPiKqIvPFBPnCCpEgI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AekiWoMaXUfGQX6T8f7olXapyx5yYjZjtAlpoZD1Q4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.166.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "memcpy1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lx3ePD6KxNQk5UHEVPNZ8cd2qsg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nu21S+wI9LJfdEnGG2F3I7YkQp6DRGDB+hw8lPMi8ZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:06:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.2.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8081 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8082 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "csailmitnoexit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lxXIG6jFsMaYiCA191xn1tZD2+M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E4jj1wx+n9U5BFnsl2KUpv/HYtlrFvzrauspWecaQ9A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:41:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.31.0.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0189" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lwqIMrrs3M9futSS+NZcPAhLbxE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8bzX1YgFfgFkhth/n4PKyHwGnyVij+rKK7ppnUyQS/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10189 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::189]:10189" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RatchetR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lwM+0c9mVi7H6de/zr7dcWhAwjY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iR5orBncTJ8qEpApZjp/fXZQw6Tuq6/PW8vNn3SePjQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.117.118.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lusjjzuTd1SUui3KLjJoLr88mYM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xHQLjVkjH8scjQCbbNoDW0Gv2z2jXznfNCwFxUBjb+s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::220]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "karfiol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "luCV1c2/w5iN63COwVU0ZHJALDI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BrM/IQABkoG/gwLcMDpa7utZJ3XvIc0yUyf4+GO3KYQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::11]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueLightning" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ltZWOEVZkQg0z9sSjYQ/gZ1dL9U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Tnx0xsy+2fqaVg2horDXPv7o/uqErXNAZucUI6zMKdg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:45:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.89.105.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:39:604:9866:92ff:fe56:17a2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yopro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ltP5ShZ/XglTt8jlmcS0fVLQlPE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y9XQACRid2BJHr4pLCjnycgIkYQ1e/djHKZiAwn4epU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:12:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.136.199.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lsqpF/ZbzWLOzSNvZ2Ur/Xxp5S4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EyZ/fMJN/V0I1KdgzKrLRiLRMszPWF5V4S7+jEqqpjk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.37.193.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lrfkqPYz/BBa9gMtEyEeXVdqRNk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S/Yu6eJ4kG+p0Y1NCzjN/xcolyMUGlUq1EasNsU0aGY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.52.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:e047:6494:62ff:fe3f:85b8]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Florian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lrGl3vlBFWERvFLWGsmRr9vQmx8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "omxU/njtgZkaHyERZ5CApiufrLdbDbC8p2+JXYA1oOA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:50:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.248.151.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BigFat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lqBuYbkOkiko7f4Tg/5Zrv+YLcA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/RKvK+hOpDmwKhCHIAQaN7qJk5Y44mcsXue6Olk8oE0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.86.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moria1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lpXfw1/+uGEym58asExGOXAgzjE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7lffo694USblbCXQaJvFMlYKpvOMCZdHkT4K6IU8QKc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:04:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.31.0.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9131 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=1-2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rainbowville" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "loq9pNnphLy3TB77JpeyAgXgk60" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DJt8+hKSIVFGTwGz7QGhU9VTVq9VH7FnkwCJdoGGmhg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.133.45.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RedRiderCarbid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lnM99Sn1CmnfWS5PzBFtyTgyyR8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Wd2qvm4N51Yde3uHBe/WI9aanx0yrR9rWwIZS5jHdKI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.120.37.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange038bg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lmWhpuubmMV+RGpIPnXgXwU5tBs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cmb3Ee9/+EtgNxkmvtn0UHCWeycC7t6Y9jMmb5LiSaU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:21:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.217.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "erdapfel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lmGslXF3mIhPPjcn02DdmNZnJ8w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GxKV3xx8ZktwsCIYtMAiL3vE3P3ArViDUCygA9lC0xo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:57:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myfancytorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ll5bRmBZgEVbV31odecV3RziT1A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PhQqOnBmkwKDKkidQMGT2FSWQl/uX16j62qXyoeqQ9I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:05:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.134.208.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=920" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QECm1r2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "llxmdUH4ih+R82BjkLHa7TZqAbU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CiOqmOcO8vgEYBeqtgM4xcisLsTsZ02fgdSxjY70Q+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:13:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.136.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hogman10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "llHIAz5Rm75V5KW4wfdQTXLQkxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zo5MFRPmpu3D/uxbRamdomtH7ZQfwFzMArTY5mEeFFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.137.249.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc24:11:66c4::1]:9003" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MHcXthX9Eb34WYyEN7H" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lktOinUmOml2lUHydkVj2r3ZldI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vK6kDgLEkLWKbMxt9BEupiJcBTQvv1NmIqmlPHOHLVY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.67.32.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sichermannac" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lkQAvXL4Xk7zVB3YV46RMepijdg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N+URf/W4OXvV5qaNOc+Sg+KyikX1O6zL8Ezu11ZEZ/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:49:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.142.133.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=990" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "twoandtwothree" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lkODgxO9G+sc3IRMA3mnddxEv50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "we6JT+lKo5+bkj3AUL/n3zhs58A8iH8yGPXJhbPfIEk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:07:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.52.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "93227a015ed992" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lja9T4LBHCsGhaAhXxQJnG4e4+8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zf5oQy6YdXyI/Z8RRDOVM/oCufPmk+skoOJ4PIt+Z5k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.203.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:3b00::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kristallwand" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "liitt1CGL5ztND3PwdAzHqAG3o0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fiW3UkF71cSSDWrAI6DxN2JAYZ9sX5uW5DcE5puAEeQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.156.137.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nx1tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lihD+/hRP1fhGQ/Uwt3wg6AMeGc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R84LornOjeCJnh6Gmd3rM7Z1rPBTiQKEyE2cCDNPy5A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:36:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.5.123.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:59:a000:9666:216:3eff:fe7d:dae8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange015lt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lidZIRBdwtQbea11gEowFzi1Hkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qTK9Rpw9WeFNSzl+vx4D5kE8uGVbrFtU5EEGF3+NbBU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.252.245.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:2180:0:1::e308:9180]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "upsuperRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lgcGmHFNwHris3eGRiW372TjO/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NMXwunKfKWPfvtW5FP/7J5iTC22Ay6tsbftO6J3zYOo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:43:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.24.100.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7b40:d418:648a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flowjob01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lfp1hxfRhcvB1e6ZKq4IStBBkn0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gnn4Ng3GpLvOf8ii6yVrYVDPB00+G39aSP7LcOEGp4I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.89.104.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:39:e7:98ab:ff:fe95:7778]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "debaze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lfIqEp/R7lv/lSGN26g4v2272n4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sD3lIIQ9Ia7NdbqTDclpQGpxWEB/CdJkfR6U5f3F6Rg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.243.0.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:41:216:3eff:fed6:a283]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "matimbo420" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lej4R++HmKYKgYcoH5OBMkXYDio" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L+5oxorAgNDCifioqH2G4HtfddiLLIoypmZKvJHMOLM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:13:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.161.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8004:697e:954b:e582:cfdf:9743]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "leHxwQ6Tg8MpW8UXDf+yTTE1T/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hpd8UyossBd92zLo+OuqDDM+3z79tEoxVM2DJ6JlXkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:33:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.39.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:65:c7a:4439:2ff:fe4c:a26c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "boomshop1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ldCzRezIT9K/J6M7J2XfXgd6zb0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oH1VFPFuJErWIt5FIE9+8QixIrsvCN8MVfCoVo6KbwU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:54:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.50.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9901 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:150:70e6::2]:9901" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flogginet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lbla38/t1fqm93OfI2SO0s6K3JQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f3oRA6M54055EZKfBLnRAdPiXqctkUmOuVwiaXNnvvg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 31622 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lba76CLYg6+DBYOAi91M+cQcaxA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c8+mJZu8LkHriw6gMvcROAHnjy1RN8CSKyQ3Zld9yhQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.240.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:b1::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FireOfRing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "laocLkmFCyWv+S4I4fbJOtFinDE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vOvWosQFhNseTdJAxCLFPMVkHyJyGof0QDgyDRmzVZo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.98.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 127 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:103:c5a4::1]:127" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KejeonFFM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lYTCKErv1L2pDLl7zfLmnjv3bWs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dH2mZwCPCq6R5AsvXQn6qBdPbfnDLBkLWWlbtEj1XoE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.222.114.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1136" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lX+ATtXu4/vspSX8oirhUnrFa/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4uG42wtsobS1r9S7gKbpV/NG9G/u4zSYou504funsQs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:14:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11136 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::136]:11136" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jeissbock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lXte8+bKg7K/ZANlVoLuLHBNq2k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7XmRo0Z7W2OQVyZyLhU28uiVRxdTzwEsg3wNQC97yW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.128.100.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=910" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueMonkey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lWzVM7fDMcZ10wpQkAoul3fUJ4I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VwJqp2QetfmhXN/ri38vj6pP349ZnyNlz4zCR914b1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "13.211.32.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SDRHausSEA1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lWsNCAJGOfnX8/MzKD7USAuAfY0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mFb2xHqIdEb6CsHsRlj7Gy0vX/qPLE6pieyTxCvRGRw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.42.176.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:9f80:2000:83::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "STRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lWcqPT7ArpfyCKF+IS3gIRCmUI0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yBFH1Ux7V5YL7DFDlnzISwQmJBqrLm8/9E5axzDqDUw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:27:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "180.183.117.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FiveBoxingWizards" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lVT8DPmlIAVC4zdciuTpOcRZQig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VA0L1keWztvAoGYLMtPOoa6s93GdPCG9YgFmfZc0hUc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:09:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.44.171.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 81 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lVRcunGtIRNsQMkn8ZwGf/EoB48" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dREfiWmROGSn8CpYBdBJ8lG4Mv5tOtOQM0P+Mk7Wwd4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3561]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lUsiHP3D9WoV/jwp+F1f40uxRLI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mOWoNOG7/9F+wlkEEFs9Jc4AL4xLkDc4A75uSjNzBpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:51:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.116.47.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notabitologist" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lUMpH6nN7ITZBX3sPfLSrvA/NWQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WvtlFRSEskHeLVVXwnBImBHpu/4x0b4P+O0QRaVQZPQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.103.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:108:4b9e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "procrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lUL4/7Yn+hN5LhXnH4ZSwmgU5S8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/5WQjtjiK17OBkroSN9Sl6nDla/6l2kpAAOU03VqRwU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.39.86.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:203:7792:1f0c::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chopin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lT23CfKi3syNdWBmH5NOZEEURPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yVc/yHO0XImazjEusb94ySILXx8Krdmc7ys4QDidDW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.115.96.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:75c0:35:5488::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lTff8fNaI+9bAhtVFuPHa3cmMTE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eVKwZp7h2Dc1Ib/5kOK2ddQAX5abVztYyuodPY0lTXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::64]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BuNGOfAr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lTM9hiQPZAJlbS65ZxYlVjT2wAc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IVY3OYKcvGLjttMwrpX6qEjlr9IdmavF70t2KlgbNMs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.66.91.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "firestarter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lTFzBLdIyvwl+I+4nOB7yjlVfSA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8iyuXaKe9mhySCGqhcBQlZWNj9oK7y66rVB1a+ctKWo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.60.169.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bugabuga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lRHmBp3XzgKL+U1B6P9UHCTD8U4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l7MvbopmIK/k87QmfF2Kmez79tzYvZJtPmF76c0m00o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:40:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.163.128.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cello" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lQ4C2zJtKBAeKShgRMVxSiBPMiI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XJrlEt34w5Pp8YeD0diG/jaYbPm/Dcv2M0LieJKxNr0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.150.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FakeVolleyball" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lQE09KujKR7uTnovJlRttwcHdqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lBdOI7P64q49rju4sydAkSniWqmMxsSjv00wddefYrM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.212.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27ac::245]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torRelayTaledoCorp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lPakiTqAFJru63UJvvzboa5NWJg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5akA1ae4HRsFYGyYzibuBMWl5RrBsWY6OHN0A2jYOHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:09:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.83.132.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::5a7f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kuro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lPVimuXy3ECc1EZoF2WX/0gpa6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OuL6zM8qFsV+2A9pt9dKNci+/xLDxqx49trWBTtLidc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:21:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.83.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:5368::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeZion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lPNnoTApbJ65K+MuJarrfyJ94NY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VvB3P8YZXRG70SVSeMsKFQ4nKRQgdUX78KMGyJUGTCw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:17:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.50.42.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "happyfunpark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lPJTP2wc3bhf0AOPVCCbizUMObU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i9v2me0Y/pYtl3CxRhWRecanXGO2u6mcdqI7JOjBkH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:41:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.202.4.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MarinaOvsyannikova" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lPFtor3boJKVT/jsKfkjSmmUlAM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y2+rOMl11iN+EseQOfX6eVDe19FORBhm8bKPRjqRj5k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:30:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.162.229.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:a446:5ef1:1:d072:53ff:fef4:ea59]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ThirdMusqeteer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lO/naSA2TZrPqLoVfHyBSE8Ky/Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fyG/druRAWWQ9yrUQs36ji8mrkVU6/FsAV3CTJ80qvI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:37:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.8.144.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unix4lyfe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lOw0uHGTZQS+cGcbRHYLyZJC4fM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qdustKcCxvRBUkT4zygS/zH9TM3RCdTpdNqwNefifqg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.19.155.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:2700:0:17:a800:ff:fe3e:bcf8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Schweren" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lObabDeTvRbRVV2W93z7a51h5aA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4niNA1/EXvhtIZH7BAUIuNz64UuL89fSb40oXX24Eoo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:59:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.202.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lNEt91m83PlU0ZQwd2yP9Vzdk3k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xm4lIGvwvnjdkKtjQwcjH+2SM0nFIPP7CcMMxQICcv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::34]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BostonUCompSci" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lMS3uMUMhqkraiAQdTnuJnjPmig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YnX7vmfHC7X/0uQrHN7ErZRH7dpScnmTalUgWyn9++k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:32:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.8.156.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lLcQxBuej7WS0JFucbWon/SZWZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DEbgKM9R3otWmNOOAXTqg5zIWkn/HMLFKuZX+b1zwZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:36:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.35.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:171:369a::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bertha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lLLal6erpd8uBlau3BBodkdeZy8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a95TOBAgbvwgxyKm1IGcd0DVbTP9n74qtD5Qd2B+1+U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.13.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3920 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SupportScihub06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lKiXbgDGjtI2ldBmjYez5/Emr2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gDa/VKqbBqCcc3BeX+94o6d4IfKpDDx36I/BkEZKB6c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:11:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "155.248.213.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8888 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "avega" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lKMPKXWx+WxmzfvzyOcsXEkyXFc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W0ZQ8ZD10tpQ75oVKAi/CjZ4+Bir+VDb/A+D7nyigD4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:24:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.173.235.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:b7c4:1:141f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Telinnor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lJuWjRuNPMCX2SGBq7OMaThhKX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mkz+FBqPbk/dsjlrgyvaLwKdaub147aCuoFeAgfi4KQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.2.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SPFCFutebol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lH//RWz8713KsJQi4ZRajSGu7GI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZTVrfx6+UoTXX86DJCPoq0ott5/Oj7YHN/rc4lToWxg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:07:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.17.60.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lHYvV9hoTAXrulKpTesIdG60qAE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "izV4n3fftwRqDmPHL6ldCNh7VZho42cb3JmTQWfJs2I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.232.148.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:4:1d0::a6:5000]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lGHn9Pk8lykJFSs/9eSOzUX5G5M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U1vko3YFPSLQdGTb9Lk/mT77utkUfYbzkY4v5q4ykIY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.239.81.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lGC9D80Q9eWKCppn+cIEGKEgrmg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mebip/99byPP3eX9UgXOeUhQEx4WgRAut1MzTL3EvCk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.32.107.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:194:32:107:0:171]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apollon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lF/EwkRhN5yTxRGcDc3XNd3ZQ6M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "78BGtnsXb4t9qWvvFegfFyN2MgCcftRB5LhvDC8kFSs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.147.124.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lFqi9sLsZEtTPQSMeeA1ps8JLE8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j5CH2OXsvtO4Q4ra9BHbPV0RUOC4b39cQQvcajTI+LI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:06:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.255.39.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:302:2100::78f3]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lFT4LUfroMsMKkv+eWYYHb8QgUc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AFMxLCsCvFXZQdiJUCJ2BAaL8tKd8QdXcqyrEeAsomM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:27:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:14::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Perch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lE6UfKgNHPiy6+PDJHssEZMUOLg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KpQUXKZpJZ2skxZoRFoEOMzhws8+v///OTLHzCJjZx8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.162.218.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bigbrother23470" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lEA/+OhO/Z7urAx2A7CDS1worgc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Im/ViOzOW7RaX3M9IQTpdzERwDzc7qqr/iZfYOdHPFM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.66.10.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rs1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lDSUs4z3T73THSbZLWbVNYJFTis" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MKaFCEQOKA3y61TSpyusjPFRO0cgy3vSB6i2DxwdiPY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.35.107.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:2040:1:533:e23f:49ff:fe6e:1004]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "byrdeman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lDGMwimaOCbYGJnrI8JaK31rH/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5CHR9JTpvZ9venRDB7AmombKVnmSoYC4BBLHGkJzeNw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:46:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.227.133.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lCOnK7yLXGrJ3p9Xc16ysI5BVug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ByO/1uP41mBFV1d9KgQm5eL7YtrcDwzrG9VtTmrFD2M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::211]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lBuoOjVB07LA6cvlsMkka1UUmR4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HHwviYPvKClDZIl6oVi9t24nRu4dQRdzSEAhXSzyZak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::58]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=92" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kogis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lBmFzeLcnWf+wHA6j/0GHjtLqKk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PdoE2fejg9Xb3Zx2pbosnh5kA2snBz0Zeeuj3Gm7Iso" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:29:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.165.236.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:2:b712::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Extratorrestrial" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lAdZvtpFhK2LDonY78sOtUD3ouQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "daV/Cg1cSMvQJ2mZBlbk1vxmuhcRiFG52Nu6HpEqGf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.219.105.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "test1111" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lAcEtlquXgaON7+wjS0HLgHPbmI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BplKcnRd7+9Lo8g8JhdI9sKN6pIB7BaQnB2goX14GKc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:34:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.219.250.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "lACvUuwpKdpB5t3TtoTyNkO8MWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mWYdWNCxZLUZU/wwLi14dFOiMJMTDaYOIOa2WdYyIJs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k+/VonQDqH5Ei14NjCcyn9bmgp4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "swr3L8Eq241vVE4mgri/CWF5L78uojp722snp0Wn2ow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::193]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RunningOnFumes1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k9O1CIpoE/Z5pCYyOuASX7T+dyg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JP2i66UkBXyqy4nzl+K0YB5DfRn5UnLZcCxReigykcY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:53:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.75.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k8DwjmYYVOedYXjI9kRpHmvVMYM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m3tBfb+GdJbkO7g0tAF7o94jC8C24nFUplcWGL91Jvg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.223.3.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oppaiTORo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k7/D7AJav2RweavupeUQ7dz72sY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UJsceYpVPyXs1bz/et3I5oiBiWGwtBKWKambKARA2qU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:41:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.101.105.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aesop4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k5+z5UaRg55EnxcBMQHYrafwAG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bzgKxvX7mF866kWNTVLvnhPteHRWjy7jQuOgHT7gL48" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:30:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.108.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9004 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k5Em6k0lyyEqeXRsEzGU+KJMQ1s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r1erjJDn6A3neP26mzTKwSjEqG8gEhBBHIyEN4C05uI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:3::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RingGate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k5B8oltsJz9nmVns5HGXjHEtzZo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1VJUDJU3og2uUVHlQi+dPiPfJVUhuIUb77uLMxzIPMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.56.237.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k4+/1Bcvu8QkVjexnhWBymMz8X8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1dddyPpl/9qEpDWCUf/ycskO2rNsVT1W6VpK2j/80SU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::21]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay25at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k4X/E9njurk0q8umHuY+EDRuNnM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gTbUW36oYnrOtpDrxOMi2xQeuPmlYf2IDD1NU2rv29Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:45:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Perun1in1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k4WI36DKFwLEv++IiGkYyUTUlKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+q3ch++HDiULLf0cc/RaSNxemPdhLKiy10lxkcX7urU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:37:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.148.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c010:14cb::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=87000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k38gHSeXMUlT8mjSUvXJjT+p9x4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fpXGUKgRfhovMna3IuncqpDQlvUNZGT3rOXd7QMuIeg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:34:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.94.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b14a::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k3akNpXLtmwlbcyHky7oheqa9ew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MNL6XSOro6oPE1C20ZmWnLDEALJGRg3hU741ypFxZao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:04:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.35.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex72" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k3D1XUu/cvvfE8QdZci4FLQwDMg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Ed1FW3ChuGS/6lFD5YMO+mkQxof9kh1zRfUWAwD4gs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:41:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::161]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "telephonetoughguy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k28BNn1OW/jOH+5tUUKDztEBRaQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w3xCmn/yod2eBr4uXK2WKuBroyBZmsGyWXVnCsFF39k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.241.227.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PremiumTorExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k2YYW07LHMNjT0ddIP3f56MCuvI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AnLh0JM60aTajlsL4xQ1xfSihWJz4lb5f9iA3iYRc8k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:15:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k1tu8L+Vf0Y7hM+KeududfxzJc0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "225pVlvb7iGlDxw9Js2mhGHV15CubQG7EEIKJR+KrrY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:05:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k0QDswWYlVxBYCMSKZQjqAC+Ax0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W6o3m0oTL7t0cEmstbOtWtVoB21OrbLZ6eOTouYLHPE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:12:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::25]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1130" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "k0JUYA7tDq9hwkL6bsuSvwE44XI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y2ZN+a4xPNokRE5nbQB5eVxsGPsTL+KqMMXZXjq/EHo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11130 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::130]:1130" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ClubElectric" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kzwenFq4AT4wBDikHERZ3v4nhJ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pma2/t9lV2pRhvTgTMNbGa4InP7r/Lcqla9klT+9Ezk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.7.1.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BouvierPrivacy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kzt0/551Y+WuPWR2f/RYLiNHItE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x1NyOy0TSw509nl7UHnl5htnwyeyCFrDkylg1UlvUKs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:37:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.189.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aRowdyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kzbZ/VWNCeIchVpS4B2m4Hu2qtk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Npq5/YiNt3HQRda0YXf381xC0mHcDZrWN9Yxl1SFyo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.221.117.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kx45+D2vDB8TqqY3LVmy1x3UzaM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zmeg7H5GF1Rc/eSpZgKlKCuoTLgThgX6K0DPXpAD6s0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.15.113.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheLeonardNimoy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kxx2LfpxzgUXasHzQC2GayoMke4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l6u0WxO7ufMNGRhr2dXIL/wciHg1bo5ou1yHvDZsByY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:34:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.74.61.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay35L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kxwW6D3jZoUgcpEsd1YxEtGyseY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TXfrsBnWTthZx4CgOaF7jXEjABE6UnU8UfX0Mf07bxU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:59:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.40.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:5cc0:1:1::de78:1017]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ArcaneGA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kxYX+yFJTtJInUgFT4ziavbXeKI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZlP+mxq9DNfQJrAJ1LaQh/dDI922/b9JRbKop2ljANk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:36:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.167.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:4424:1482:57ff:fe2d:edb7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex50" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kxS9lQO5AUJhplwiHXflc4nbzME" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LCgBxoCIbrzhCcDO9QcfAU+n86seFZ6hzr5bKJLkN0w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e649]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TrashcanPercs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kwwyRm0P0t4zPp08PsH9NaBs9Rg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EkXCxvSOCDn9W6EHVMDwCPWcojyC6SE14wK1i5zyAp4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:34:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.72.86.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "popular2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kwMNY1qbdnHyfd7SjksXpuyiELI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "frs9FtKn8ltQeCgsrxbcSVF2MCWEDfBpzs6bJCkP0og" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:18:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Belgravia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kwMMIB4lHcqbYyFC3WeLjmPqybU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V33NSbzuvSmAXSFMrzkA4w9Pf46n0cKFZrdD5yn8ypI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:42:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.109.16.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thesergeant" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kv2nZHtDHjZbimSYUcNULnoMooA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TCDocSrlh1skEKmu5m2z+1FimbzfcabgzkHNkrNng8I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.13.81.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:43:216:5443:2bff:fe16:c6b5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aesop2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kvyHbIna+Kx+kNGomKT+PAbDLPY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KWpAeQOgXtsvqusEDasWw2bycUxDcJ8lBlIAY+Q174E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:30:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.50.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kuTUkAuE5PsRp3HDfuuqCTHPi0E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bg6vb2vP0dEeibrepo/PuUigxIIItgBA82S+PdZPRuE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rulers1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ktuTrhzXT0ECSiaFpHW79cSXsLI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2Q8Myev2Ue2da8ygFT/FlSMCwQz2fthUC7lGqJ9SgRc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "qki" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ktHcNtXQR6Two8j3vGp7uaU8xNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+9f1bjwbZGY0HsaPeWZnCCSUHt1H/VnHUTIF9CgbanE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:42:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.207.234.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:91ff:fe2d:54c3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relaytor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "krijDB7xi1uMymuT5ysf5eWxjAM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "okcOIr0Q7d8EGQ1MOSfCrC+0hD5zdO4XF87NZ35M7lI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.37.75.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:701:1100::8596]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0164" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "krFjSn0cNd3Os04PwSKWAtCu37Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cp+yYX3ilUuefQx2GOblKQyrnHf4hUmQ+yRww2ip5O4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10164 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::164]:10164" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jstark1809ffs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kqknko4xQzhv7LWpS9qvXJr3WeQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RfHlEoa5dZFBiZVitulUOz8A1ZmlXgeMQVw+lfTPsPs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.168.103.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:4300:a:8e::138]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mpan11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kqEluatJGvwITkJXtVLQ+1YJDLM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xmIgzGzB9YpTkesNp6ccKoUVB63JJmBP9qSYiC1yCK0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:58:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.74.86.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=880" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "XoaseRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kqAQOJcvNoIAsD3A0ZSyF7pEHVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g8b9kB89omnkgwr7nxCyuH2MM7PsR8vFpPJXxAoUxfw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:41:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.185.109.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18360 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1ad0:c4fe:504::11]:18360" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ichotolot65" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kpvzfGV9T2nHYyTl/qdgpiSDgTs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/jAKrB9KmTZALkV+/r63AtKSAYr65SeRdouWoHBMbX4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.108.118.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:86c0:f001::d0ed:e1:b1b1]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kpu4SmgZjONeLygogShAr1wsvEo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "190A8AFyR+f9M8PR+Ro90MG3uJI4lzN0DiuKjc5uBpI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.38.219.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:73f7::6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1166" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ko86Mc5yZFHa0yMW3pHV+2+MENU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K8FoWK3UzWecOloPHtxeWSHTtxZB6XSVGPgCxKLC0Vk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11166 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::166]:11166" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BexleyRecipes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "koxHCeZjsP8VL9Hxy91qr6O1SNk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wYwfpiqY5FyiTdFQDQGrv+VZ7d5vOwbkeNG3b+9Sj1g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:11:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.97.116.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay9L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "koi3W1/4hh7/Mqa+iCXMOKT5+MI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Np73LU+G+inFPvQos0moazgQLBxsGk3VRJJ5BR2ctHA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:35:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.2.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f825::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH112" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "koJ1qXMGxJSyAIdqH4XR0huZmD8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r12oZCPbABxEMtn6mApgiUjf8Pi8ufY6R2dQWYauxQc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:14:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:212]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=70000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "knnwDUw83F0/RuqDf2z1N7wYbNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f8iwxcgC9OPjn0rWOUdGNzNLbw2IpX3+8epF0QmehUc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:44:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.144.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kmXFHSdp4lPEe6VUZ1JwoP57J3E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XIKiiJsWofPhNWF4ngu7Epl8oWosagMkF0UK/OJK5fY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.168.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:125:168:0:42]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NSDFreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kkskr6fwddBZ6O6yhMxACzPT0DY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+CdwxrvmFSUmP6f9ugIjM6Eg4lHrPX1BJ/ZcHirJDEI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:44:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.253.78.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kke1Tc1JF029gXqnP9begE3+wsI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F4XWVJhkrra5uwct7BklL3LYr1Z6MmcQVDN0krXX2Nk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:de:80e:f2ff:fe04:a161]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "atapihidden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kiU69kDy+eLhLMA5Kygey/8UL+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "thFaLNQMorLWSQesSn9uyaP150v6yRZ0I4/YZsH2+y4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.255.47.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "khBUjbSYo/jgzuYUKUwRWsTa0a4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2OAfzqDwi9Roq2dTLFeTkNDGKGyY8zINATG14FZLdaw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::193]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oOoOoOo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kg/wkNioU5RuQHJBkW9srokL9iU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8gNENNIg6NMaIB5v4OxAmOLnxIZIZff7D15NAtBBsuo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.39.104.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "libre" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kgmQVuy0qPWlxH+ryfp4zvQ9oqo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QjGOF8c1XBwphJXxq/NofepRbX7zIKYOHBNXpPOnlxk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.8.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Krishaw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kgfwCWMoJc+4H20yOAZ8LJ9o8C8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4XtOgqchFamxmYbxG+aBxBhSEqygwCqB5y4xotrA2og" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:18:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.56.176.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kgYos3wFuCswWOO+d4phygTwNho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HE2qEygiN4adrWC6hTzjMWGAZdHcbLMUduuPDkpK2pg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.229.91.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1680:101:36c::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lowFog" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kgS8B2S9tA3o3kpWsMSux8K0nYQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VhwdRqV8Nf3lbxVF27TzAi8O5rqBzXIGdjMPOUN3tAc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.16.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kefKa40KrXfHz7j+olv09G2hBCo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o/p+tej3HLpJQn1j8S7IeQ/2ROXlGd55uTOTJ5tCbW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.59.76.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:c91a::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CryptoHouse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kbq1TGkjRU9OXtxZMTxFACsjhmU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9EZdrC8aONjkJoZnH/ThuvzzKiHhUkdYPkl4TKwTLq0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:29:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.138.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:409:748d:52ff:fe41:cdcc]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ka3N/KgwobutOhA3eyXWlakr8lE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6t8+qhCqsh/pJEan/aBmX7eQdICAf/R6gZZjEoUbPHU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.239.158.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TeutatesTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kas3qcK/78kWGkhvcXkUMWCRf60" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rnzS8nMljNrBrsRpm2beVuQQFY6s/MqJTwfFYCU0oWY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.194.2.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eficommander" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kZWCfqT9z7fQBB0sn75Vr1sfOj8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m0I5qgln36wtGDCviNDv7ui3rJjkyJ8bRX7pd6E449E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.213.206.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kenrelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kY5x4tQ5YeciIZc3jH/unhUYsuU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2wcI1ZNvAJsopv2HJMwLYF/mwohuibJ9rTBcROnjvuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:34:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.171.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:61::8695]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chooThaineha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kYknIPkmLLN7kacXbT0igPevFL4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oqjtA7H33ltagMSR9NeAzpz7GEv/xKgoHLAdhBHdJ24" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:41:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.66.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:140:2459::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oldePika" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kXHhXr9mV2j4764icdR9kixO7UY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2Uc8pOToH8dJpEPCHt6j0SCN3wCUQDoTQCjQQp9OkZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.135.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47a0:1b36::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elektrobier1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kXEQHnCa3liB9eLKEQDUBEtEJj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2alpMYPxIRBfObNqfw7KgSOQDoazHt4XD0kplkDDwWY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.138.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "defcon777" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kW3DGZ9jkWjNIK7E1FlpJo6Adpk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oZIGPZQLAVF5ga5Jv11YuH31jx7w+UcSQ1T2jh4kQzM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:24:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.136.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:210:400f::2]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kWQkj5yaYv8iyTaF02XqdHigASM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NOXJq3Z/TengG34GDD8R6E11KhYSZ/N+UdInSRkhq7U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:48:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay39L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kWDTtizdeBQqsL+kJ24XQJV18+Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4HTcVVdbqVe/qgtDebCR0ugmu+ijeOm4c4hAtfdyxJU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:20:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.90.58.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:9406::155]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pikachu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kWCl2pAhP+uJnqvTokp4xM3KXeY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DDFrImMS9C+8vmapVuI0CjWh1lCYDB4d/6RMeuvo75s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:48:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "133.167.74.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2403:3a00:202:190e:133:167:74:94]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BHCARM64OpenBSD3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kUxD0oz+TXglhKfRCJpQiy+SGLQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KFv8i+7XMKdqxdZX+y1zKAJAh1E8gZrF4eCC/K8eOOM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:49:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.104.120.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:3000::30]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0146" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kUs6s/zznOvhX/90PArBYUWR6WY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8rjNG+p2UBYkGPj5LoiB+f3d/Df5NVKIkXOtxdJ32ng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10146 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::146]:10146" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BSSP06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kUkKB928O53RRiKJlb3/o1VSuig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3CAFqEcw2ot9F3sb0PcPU/GFFx9968y7TX082lK6ZAA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.235.29.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3100::36ee]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TomatoSauce" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kT17aZIw9yaB5WJqlKyvb7xs40Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XsOxmXUTsqfUAv4YhO91y8+7Vy7ECWvHivJMGvsDG8Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:12:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.217.251.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dakkartor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kTkx7F8fnMuWTX6sGt2YaWhEpSo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/JeL3Jfq3XH9AG84p7QNvd/gGvCUmY5AvJ/kYtAnnVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:51:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.162.154.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ArchyLinode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kTOVUOIt6m4U3Ywz3syHAuUAxmw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3krYbKna4VIEHTbiIKpTAjDDj06tvF7q7TVIaWWRe/c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.93.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:92ff:fe9a:1f81]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Myrtille" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kQzhRCmIdIY5GeT25Y/SZ8H+rnA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZtlLQJzjHPGrDNzFgM3rdkr1Ri4UXtr6XwpxHT3DH5g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:25:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.206.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:1f1::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "1fdaf44b188706" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kQc0wwfhvQQPOChRS+VzRiR6dYM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VS0eZvU1CYYb9O9jPKmQGhL0QHvoaQC9y/Rp2+0J1rc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:12:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.248.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:b0ec::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marylou2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kP2DDDV6UQmrPFBSh3E/GsgRF0w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8XdoLB1Gh+IUM515uiNpu+VmYYd1kkXAzh4w2EqL5PM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.234.157.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2608::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moukari" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kOUKsF2UWG0P7SRrAdYyx5y3YRM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CTlfTXcokszElChj26NixOo9zvAb6Q/uMSB0yGeG6Ic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:41:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.249.29.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AkashaShrooms" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kMIAAYDZWIx2QehlpEirwU9AVH8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aK0OqiXh7cCxtcq5gyy/yHzKG0o9/a1FhUUVYnP7Krk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.104.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:386f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "coTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kMHo3dM+retnraiMDhNpj/h4rlE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JGryiLDcswo6w5jv9YqghaWEalx0Rpme3nUEvMl60OA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:16:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.179.247.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MegaRobotMecha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kMG8EN8IGgHVDjgtcnGVXgH89sk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BR4SLahHBKShfHWtJgZSuEHSJ9DwP3ace46KSF46vkY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.92.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c01::f03c:91ff:febb:6d1a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex69" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kL9xR7Qiobq++lA2VuvReYdCREE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hnUY7fgpu+yha7CaSyang3vQRbC0gdHBlb3EshzNsd8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::158]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snowball" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kLy/c3B5u1BHyyrq5J+8G6kbXts" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LiFFNvEx+hXIeVXFx2WRqYoJP2Ex21FIGZIlx7u0BZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:23:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.13.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:d54::2]:9030" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kLv48wiFeUCFH1Skw9Xb+UnVJjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UTlAqpSsszMSeGYQzcqv/aVgdHL0AzsEqvaOx3Dxzgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:06:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.254.194.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Uranium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kLgYkC1CgApeXzGiwNmisLMerF8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FXFHQLJoJjooz171kweQ1SGEUxiOvGyRz8JbWkOVca4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.36.81.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Haxalicious" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kKrGJFOIqanscFCBB3VQMAT+QL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HM29HHnCieSoh3d6eV6evTNpNa4NfBqzUouNawRrZpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:34:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.88.131.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kKg9Om1TYZIRkJ6W7cMMkQZ2oys" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GzU4YN8sMsCEFs5uhBVHroSnyAvLKvLxMr2hbCuoxuk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:54:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.165.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kKXRNVxLWEDpUOth5nOGOmrjrKE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iQcm3NRhkR1NUddlsCuBMsC+Y05A8nnCVuxvWufxVJU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.37.139.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::1b8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LittleTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kI1QsXyBrXlKP7EkNzxtRYQ3xn8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m50fpIxgjpWcGS/QAu5n2Dlm5uyDWLSsDrUAR1EfejI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:40:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.255.78.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kekw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kIWjB4P7s436ls4CTtxaD59fqiQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mIhjLkvoprVPC9ecS15k8QORSWlWLYIlX5rjdauU57U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.37.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kIV+C1kSBjr4dw0MJEIkaXxb2Hc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EagLabydu30lRmQR8OdiiRVdNjBPRxFLH54w8pXEyZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.252.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "binrlogin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kG80DCl6Zvyf813cki9dW5cSyXQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K1MhcrdSPYFWQ9rQ2xq6V9ZkgxArRsFlND/GuNI/O80" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.94.134.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deeno" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kG7RAX7QRJsC4RXxe3QFso8gr9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5RIcMNrnuNf9ReHn/fUyVy7u65yGwI9NgZZvnoll/5M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:37:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.203.202.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thanosdidnowrong" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kGpC3YgKLL7dUvPyj+n5Qqhl9xU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+SysLgsWW5TYQyCPSZ9AI+FhxBr4DR7It8jX2VJjPQg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:17:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.255.250.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LeoR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kF63emOFfm788E1zSlR7CZXYXDs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2xYuYIFOr6YYbW46WtR0/bQTP9NQLuExtRkikvvRzUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:49:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.225.115.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sunandfun03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kE8256/mNG9dHWaXH5IP/MR98SA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gy7KN6vGx4ydo/nAudW337M44ROn6XJjsio8KSvAboM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:33:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.46.171.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "buenoairs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kEmSg2qs3nL17dVsKFT1/0GaDto" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "djiBAdVVu5jP/L9j7ZmUTKUNbAzXjDnjYhCXirFkXm0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:10:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.103.176.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nottryingtobelame" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kDymfQ3rdM+7AUMoQKJsuMbBj98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eGjJ+VrfxzY7Nsho/ivBV6h9mtXmSnN6oznxIsudvkA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.23.65.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torelka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kDoqeZHIOOcP9aWGzTh3SbNYlmk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X6K+yf4SAZVr7gC8W812o9J0UZjbSnduoG6TbkyFL/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.219.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9111 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47a4:1b34::1]:9111" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zebala" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kDM8198mAb5zVXdT3um0yERLXko" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1zpbigbOaf8NIlFUVBMsDjqAIFmBo08LGO7zT/dJIi4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:21:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.208.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip5b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kCoTOZ8U/8fikSRjMAx4olwfdrY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ON3f08to1BtGtldcV249JdLHJYcnLfe9+mmzQab6SNc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:32:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::252]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "catan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kCdz44FiC3PTeb7OkZtsL7rCvi8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PFC1W4GuHv9vaACh2sbeBxsE5TkmXg3NV6Eq/VqaXgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.10.68.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gilgamesh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kCHJZ/k7VpirH1OQf30Plqn7IGc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+fRRFYU0YfSrrI6B8/1OAUjUFN4DiiUthidZLWM5VC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.121.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:403:4251::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kB45sYzFm8sYq8l91j3Enz33QBw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X7A+j+TqI13PPWk9ZA0zeifBJE86NAcVUXiamclcR7I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:41:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DonateMoneroi2pd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kBON2yXB4RkAeu7Af2lVB0qhfa0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7mzbpPAZjjdf727S5/zeXshPAZFbmMIUje1l1ZU+ixg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:06:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.123.53.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 896 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra89" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "kA9UsdSDpmiVnpdvN+MnwRIuyBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "83WEE9GeHhed5MabVTq2J/k2Z6oQTYaU8DLED6HzLbI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.168.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:125:168:0:210]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j94mWIeqdB9HjcnqP0AmJXcNna8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8oAT5T5BjN/hchEZZkQvAUUOtziG7W0rXFQVb2nrAHg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.215.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:1ee::1]:1503" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xeracition" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j94HN5j/N48w2VJNPFvvX2nL3tI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+OXJTBpf5EE5bRbc4q29QNauxgObiTgAauAsVZ3LMq8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:02:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.115.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TOR2DFN02a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j9O69eFOvhEk1iU9WYgq/hwrm44" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RQqbjOXOrZQtgPLTvpI0NZB+gX9RwgQVbR3dHHH5/p0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:35:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.196.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "salope7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j7DC23kTI2TKbn9ty+PkDDJ7sz0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "epM3bpKv+Bg0T+zqi+sXCzkHVLIEx+ldo6e9E/nndMc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.183.150.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=850" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BHCARM64OpenBSD2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j6hWTo5RyxB79IetKNdwA0sC34U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7vodW6ymYOe7bM+jDiRVLbHEVjttuWSn6XUVD8hO4js" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.104.120.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:3000::20]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=890" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedel22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j6N7kzlwFbK8WlJckISFJgvp9CI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ydUeZHlh8FxAJRTQUMZBgZ3gjXERYvH76aaOdqH61Zo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:58:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.128.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:237::abba]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=88000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tortenheberxx61xx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j6C+sB+levKe9twVLVSZeSY5CjE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p/M1nLywvG9OGkPgLN4JKZKuMf1uv8l5UAbEEbmscAg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.218.76.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9361 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shevchenko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j51YabTFm/pdmCu9qaecSR4sAm4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yEPnS+8nRBew6LOkR7z/xblb4gsHIJh8RITM/4sOHrw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:39:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.246.188.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 46711 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GTUniversdeMagie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j5zZN9AXe+isnifRhgT5Mhbfpqk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uwCpAiYFMYVZzPG9dGlvLpEZ+jYwjSqYPw/dkmK0+pk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:37:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.159.117.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PT1TestRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j5VQylWFsDdrqYMR5bad7cbpDMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6gufW/j7a0QbNhX4bAru4T9KTTlg+KpkpW0+l2408dw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.121.123.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15923 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jdtr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j4uureFCh0IhL/UNwPbRO11GwH0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mDA7uPDnpIGeb7od+ZGhuHWRpbG/i101SMD/hv3r5JQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.188.119.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:b98:f181:1f2b:ba27:ebff:feb7:f806]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SygmaGuard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j4nQM290RL48/7hEhLMhxIO5bCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MZzE7TyrUN4Ub7BP/Lrpv8Fr6R52+XFhrkhMPs9m6LA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:21:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.223.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:2eb:8171:7877:c6ff:fe8f:58f8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PoohBear18645" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j4krvEcVqiAc7Mj+Yxav9a1AwfI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IzK6wjNnOJL/9MoF+GGEVvnDNTpfABIeYCtoHRPD6y0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.117.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15698 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:19cb:dd92:af73:5b09:3e0a]:15698" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "count0TorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j4WeS1o7W8VSQnx4JPBM7aWNzkU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X2w1tB8mV4STiRuoHWIKb/SABY+SmGtPdTxHBFgBUjg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:08:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.126.189.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WilaDortmund" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j34SDB1Dcf6hnjwVjBgNfeTuUFw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k1/+PRQmlJJi296hJC/rFDtgupQZXCUIVn9Ntxuurcw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:58:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.204.6.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bigbrother23470" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j3UhztqatwWkIlTh6Ckmje9Xxw4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rDF254SkLsVSJxjFkeHERIoGR72iTNX2nJm24yVlI4M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.66.10.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j3RGBRmedcJvdOgYveUNmnMl7JQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qMll9oIk8TfWAMA9JHCAHjZo83mySyiYlTvtJ0Ht5Bo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:21:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::1]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Logforme3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j2p4seqRfyvyIeh9FDYcBQpwzMM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9chFUoIMk7p8wP/Olp9pZM74op5OKAYfsXKBeygKgoU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:42:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.225.229.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=70000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "parabellvm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j2US/iVfuRKnW6/RhqoThMTfSpw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9HylzbXuqzNixOe7jSil7rCTkMUeclBALsEMvjD3Jmk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.35.225.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:4:1d0::51:e000]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Martell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j1rLQLQmKARebYykyxA82usRKj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FKasgnqDGAl208qXVPX3smVovFd6vj62QvtZ4bBPNCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:06:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.121.167.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gooserider" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j1nBtVOTKNEey9wi/uCO07vmvEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TCkzyAf0HOCw18H25Th/hxdtTRpGWP5OivfzJreXxdQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:02:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.103.188.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5160::343]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "phosphr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j1lzEpjKkjnAeijulUeU/TDwZHE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5tmc/daLdmOMcY9NTYTM5wQdMSwmvExYuub4FRJF+4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:20:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.3.172.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1154" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j1LgF3rTX1kMW4OWCqEe0A9yYpo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hBT92iM+7mb7zVx7wDgZY1VOimxWlukWLY2vy5E5PKw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:51:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11154 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::154]:11154" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KerckhoffsRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "j0SRLpN/bmSWNbbkAMljNvVJjcU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pwVhe3sdwpiifhWonFQrbYAAZxf4Djj+IGQ4u78BuFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:07:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.250.151.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashDuck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jzTmTliYnmQyfAjP17Gwx8T88zY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rIDEkknpN1IPgQldsQsFiCnfgKja5BYfu6CA47MvNXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:34:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.80.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "futrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jzAVw/NwuidNPElg6kzI4UNIpSM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cGkz3JreRIcJJshpFmEg4ucctbLpsbXm2it6LWTL8bU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.22.195.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "njo1017" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jyvwFknbIBXJKGirV4g9EyEeNQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nSRqHo8byP4K7Bo/3EpH3ZJ71qTXiiO+2ydd1brbwk4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.142.187.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 31107 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra24" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jyk6ZISglzFnsVxJl6ufJMIRQ/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Iu25qPMI3yCcg2bs3wU1FelQyjm0pThJgas1dVQx+A8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.83.131.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jx1w3kLHISDOjkkodBTfz5T/8fI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w0UCtIdT/IWkVy9w+AsQz5Ue09he37Qq8rmlFAmdQYU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:44:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.217.169.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pointderupture" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jxYinVQld03KVm13N1lheBU9uDg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yPU1J4n/6aGeQg8k77qoAeRs8vBTYs3OVI7kEoRjGQU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.80.151.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mortals2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jxSBX7YLuyPkvEbhYuN8FCjqHM0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VrKafNt1CRXF9cT3AIyKej/AGkGuGOu3juf0s0tNayE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:04:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jxOANibzkFOTHKf3+Ud4wL+Iqfg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MdeCcv9Jt+KLVDnKTf0e/yVxyv97EgcpI0qv1Wl/2DY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.56.240.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jxGy4lPOxMXEY784qxymRbcpTVI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YD/UIAL3OaZjUGZVowCYBlMJIh/tDu1ZMNuCfCPjw54" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::203]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TormyyrFI" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jvdI/M8aniuWUdxqvZIfjusk+nM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6D17Az7ZurAHACLXw+ILImqdXl2YwNU8wGm+GTQsBJc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:43:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.221.66.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nels94" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jvBSAzMJ2FTWIGpMMPF60nyHiT4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gyPo32d0UsimN015FiJOcO+HAQBjNkvyF0sSrY/oUo4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:52:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.155.241.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ju2jTObW5gXtMXknj0WIJlSSMoA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ih2cOxYT3uOEhXLBLZmqX/2B8MHuc3qR3j4Ns+Nf/Ak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:14:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.26.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:31b::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "juRHF/pVcFwSCG8+zR+NnIZ2/QU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ENZ2WZZXFOOfgL4hOhvYOmdZgHf5ukj/2Ix8yXouB8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::210]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Thalassa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "juKOrwh0r5sD6715tetQWeJUc1U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rS/nFPiwHhgj7uXjPQID/9LtS1wXqRJIJy3bs7A1KHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.16.70.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kauwerkoud1r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "juDd5LSMBwuNi+VFKwwbyHsOsCM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "woSTY+ooSr5kRMp20Orlemxu+frC0m83/IQ66xp+lOM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:27:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.146.181.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42219 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZeeckaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jsuIKbLuJST5or4+GGy2kPpeVXA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YQKqbZqH2nYFiVThfqMC4rwrBbqO9uyu6WNK09UHa8I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:10:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.124.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jspAJbrpOS6TGIVZEqjnHtXdKZ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DBswn6lGcCrOFzKmzuVEz0mDZZnCsYmNNZubLRZpPJk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:13:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::87]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ingwer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jscgvjO39tWaNJW0AL823qa5fSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0tyVlQfrSimZvEKL7O/ogmzgBYIoV45shDh53HFFccA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::9]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hogman3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jrUU9U9JqyPisK6C7U7ynyzSgIw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SAvXZwxtWneydqdcvqt6unSfSUWy1l1sogRi/E0Nc5g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.204.116.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:13f0:8100:6:334:4dd:f2de:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeusExMachina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jqyPFhfwdvhGXWTZ3IKNw5feyuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y3kbKLBp9QjMdDnjGubzDfo4buy4+s78MKuFnOTcFKM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.175.44.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jqtZq4ZsuPNPH4a2c2hgxMumOz8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T8MHrPnyB9DQENgpot8WEnFOo9CYdmCGm6vT1p2F7T0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:38:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::27]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "True" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jpsLjhs+5ya9Ij3B42yXIJOt170" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N2sozE77POJKr1KVKOMdIWjCy3qvmSoPwOdIkb6mKz4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.195.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:43ed:6f00:8cb4:c347:72f5:6772]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "itsnotjesse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jpep/bwmKi2xyHtT8Szxklhm81U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NIYq0wYekx5xickv10jfoIvYVMQpCzBEl52p6fOZjmA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.34.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:7410::12e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lightblue" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jnrK2Hi71hCXwODVVxYPXVm85co" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ylrMam3N8Fx6tnKVknAu6c3p4NfCKAn5wD6tiU47zRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:03:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.45.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JimmyBulanik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jnbx9uhJnM6XXEUVYFhqX4vwv9s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wxyE9pcciMHYwqOJsYnFHCOn6NA8J4DdCC9U90wLy8A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:12:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.86.150.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:1619::eb42:8ae9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AlGrothendieck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jm7aeNjjq6iNh3w+N9bU8JOMe58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qNmn6y+P2rI+7Y+R9bzP3SW+vw9knEUB7OmFxT5z3WA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.67.172.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:910:1400:107::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jm582s4kGCVKhT1pUeyXhB5bB/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oW76glaA+4ngtKkUR2J4NGxQaDQenQRFNTD3kKfUyfQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.181.62.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:2603::fefe]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skaalz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jmIlvIp3DfY7IKL9rBq815WhiYc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FWgTpJWhIDgmMQyx5Z50JkUjyPM6tSIHqvcYDN1DF6E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.56.240.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kingyetwewillsee7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jl6pCijoiNMG+kO5IQoelGe6OuA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IrQt+jsiwnUqrY0X/4cVTf4E5JtLQDkbIWIYKDumGS4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:20:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.62.24.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:1:d0::284:9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flachmon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jlsTJvWA0C5Tn9qr+Zo73hB3JS4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vEADoFHOiNvrgt0gmfOEFN0U0q0pk3rg++5UvZD6Ur8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:13:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.196.200.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jkd3WFR/YSZZvShkyR1kFFKDM2k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4hsho0hw3HYBb7UpYt25L+Hmjs6C99Sre1e+kll8EY0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:10:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.40.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jkCfMSd/g0MfW5ohTXrRTR6lPCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wOFrzsNusmqezcBwbs42+pnMlIqVgV9501P5HNsB4zc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.36.150.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "debianRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jjrbj19Ur30edP1OuZErlqz6LAc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LVedjgooF2kmOOLGJQHjt3z0YAg47Q4rMHf0aBrAy7E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.68.9.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:2:d0::218c:1001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jjixHoSTNtYqtiZPuumwPHDweGM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LStJvN28NB3w6Pi11LWxP3IVkr5qSdmKn3NVOV3UX6E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:11:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:16::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gandalf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jjgsBsogpnpbEdaOqD334IvnGPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CQOS7lqQFHibnImFhgBafXF9SPtUQDCDVh+q8zBvVXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:13:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3942 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Untamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jeDsC8Vo/NNu2ZVyLM+0axrk0ds" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OiOLC4+A3WmrrNEn29sMNJeqZdu4gzzB44CMCU6z3bM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.7.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f2a0::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jcovoVfIDi1XSwCfGCq6lp/OezQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QJDzAdmxDNwcvZc39/mwWxE26fn7BYGgUKgXCwC2O0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:19:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.70.82.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12684 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "alnutt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jcgyq9ycl7i3H3SrBB08s/qVeKo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CkDgSgQEonhMlb56YgbA/gP75UZwYhDB8nmOb5vlxnM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.153.31.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "analumi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jcbh1Im8YJUR/HaHkvlm0u6MnqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HWGxL5lkvh9I93ok3KWd9H/mgOQlY7acmSpmEKRwqEE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.49.184.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ameno" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jcSgYFRA8asBSOr8mY5pMdJlPYE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2+FAJBsvKugrSX4TFBUqfWJkzgp0wxAbCPnG4fkL0Rw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.107.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:4d5:27c0:d3f6:2608:164c:6751]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ContinuumRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jb742CRDd3AmG0x0U/KBXbf8kWU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CYYKb25KEU1RZbhi2pnqkscDUl0fiPiJkzraDqV/m+A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:51:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.178.206.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myawsomerelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jb2LkNBdHDWQRBKmThqyRQXiDm4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pYm87sxRP8VH97xW0W0LX0lN8dSemmZw2cu9B95ePQ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.79.164.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:93ff:fe1c:dc8d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrgCA2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jbokgtpKKFeQxdkmK1AdTnvkpxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8wqJi/DCxsHHpKx7IOXZu0aOZi1IxrpbHmt8lFYa848" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:05:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.114.144.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PikachuFlu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jao+EI9IZTBc+Yt097sIroKBWH8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2Zt4Ff9VaPgTDUw/OfgtFVYNN9np0sQ5C3yFgLdVNdE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:36:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.53.129.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49413 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vianullorumunorumq" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jZ9KN13op9yXTAn/3XG1zXqdh40" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "10lWM8Xrn3K8Z6/dBHNp3cSGAWBObJGkHxsa+4TxOFc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:04:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.255.78.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BarryJames" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jZqcIWk23hb+bKejPXtSDXO3zAs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XyGFdEsbXUK/yJWTiHp40ja2MFqvCECRwJOMkIqOWv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "52.8.68.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZipSlack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jY3Qcm/1PdLc9c9WC/cR4TbfnOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q4wEdmCam56bIhg0GVCNchmxT9phhB3sUel5HVN2r8g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.195.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3b:1cd7::2]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zoe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jYxy3C6+JKM0GJ9CNIf5ICOdWbA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jqDBBvKXMNH9j5nrYFZs8BtHwmSKKYRAdJtJxBGvG0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.108.49.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 587 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jYnspMk5KHEaC9bbgPVHoJrvLWc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QZdLsQJ7NUKsZnm7IohExZYccKyBHBzscvSIQCRyHTw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3560]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RAVEN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jYlsizZ4EwMFkaANt+dyLvbEwjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NJPVJmGzTA+6W6urzt1DfXdB4YSl7gnopFZ9AnOYqPQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:54:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.11.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f82b:c986:c57f:3adc:b9da]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RainbowBullRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jYhzHB2dPoG1BAwSzostix0HZAw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nYkZB56NBsQF/IxBYl92PGY7x8RuzSZtO9jR0nqe/lg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:29:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.105.3.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:83:2908::247]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jYZm76S/eFNUN4GmNBh5YKHNhzg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XuTPJaI6vn5BS5NJQcNtud8ZE4C1V16GKUiWRua9k5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:09:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.174.58.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:a61:3bcf:4a01:1437:2aff:b9dd:811c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thanatosDE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jXn3Pc2R/E9QF0IvrHAHTW243YE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SkEtqXOkHXnGiqu/4ITojR+L3O0ChD0Nkb9+SHGK43E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:34:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.189.169.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pifmoob" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jWXA07EBl/1UiMphR+sNWQFOoPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "41TsNy1GzxTMhYxKqWa0R0LnxAzjOKVOe6vHgRzXQRg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:26:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.184.148.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "portoloin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jVOSof5WghHvYsyvJX2uWEqlzaU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/N7gXEnGxv6A1LnTvaCSIbfKD9aD9aVy0FB9de7uzK8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.226.106.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:43:f816:3eff:fe49:506d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psYchotic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jUGZTR0Y6UQDw/Z9BpnkydIkjUo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "de37wB+uu0Ft2k9KGGDSttxuQKftzDmaBmpkbx3OsGg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.80.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cuptor01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jT2bv/G4NVQ7nrD1pXmiNWk1tVI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O8lc9mY8t+bTj1lK3USRIq56ODbNsrJATX+riIxoO5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.136.28.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:49:6c4::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=99000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jTRMC0PlPmRC31KnHZAB6Gkr5yc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KlNNd6Tlw/jo0t3GAvG/lvuINeRYckrlxS2q83hRQSc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.97.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Toph" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jSs4l4ezY2UkSBapge5A8cA0f1U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/S1qulsLFWKWBR4lk7X+w/QdvcsHpo0hT8/2NWp4wm8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.55.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jRFUIUvWFR8EJ9ShWOcdYuIeB2Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O8BzblIZva3dvcfjXZ4cF7PPZWOKbeczvJYlkApW8nc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:37:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:81:c835:7dff:fe90:3ed5]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra32" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jREX77yRJwrh/OVeIfnSUJha+rM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p1ZxE0/Q1v6DfGIoPrS6q0DiaqB0d8Kf6jmHiZ9gSj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Raptor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jRCF6BjQRz7Gk+OwkR/xh0Hx8t8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eiIwOYqQ5p3ErTBOxn3flvaXVwnk8Ro9m5neglLvnxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:16:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.145.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow009" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jQk8nCtCvCJKUxmmYKbPXt7+g58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sl82IKi6RAFihdt0Rk6ooOWbWfnc8/N7N+O0DeQRZqk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:13:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jPsWrwAaKnfkCe8FHAQx0FJCleE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zPNM7eqSRaft/UzJVYh6GOZ4EB+cRv1+uqiI47rGCb0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::217]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OkurwaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jPnRZj7H/Hm/8xrqwckH0HUVNHA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EaKKliOXfvNduFnKg0AxrIz+riqeoSJT996/2qkPGTs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:38:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.11.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1050 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:31b5::1]:1050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zucchini" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jPmH/0P7fz2apMTz2W/98keppsI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VDajIAhDSsx59369qk1ChsmdOPaHKmFFci4HYjWBKI4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:00:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theintern0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jOnhg1uTP4XdnQlnRDJrX0SIeoU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IluV16pM+eAbFSDI/e4tgkm89ZT0nKWNf7M3Zz42rCA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:25:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.70.190.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jN9Kda52MaAV4CDP+dzpU2zkxWs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rji4UKZD5e1d0TA2cPjmRHtB6oAyYxzxVKwY03ork5E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10055 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::55]:10055" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StJames" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jNP4AZ+vrG0YxW5R3RQ9h5TgjU0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y50kQA+d+bX4OHjZPA9laKlWvzvKrpjynaLW8kFDEk0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:17:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.241.224.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MarkTwain" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jM7TkdLhtu0eeHafvc+3DlyRhJ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eBMKD5hmh5UBV1BM15IPCJIDbPaOUxG1xGnyFfC7tew" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:20:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.14.220.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jL0vCy8LgOknw7AXukcpdtZFOmA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UlndMclMeT1w7wVPZHuqRQH+HP5Cwt/LrGXSqhl1qag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:34:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.64.218.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1bc1:56:1000::f1a:87b2]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeastieJoy64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jKpHC5BXWHQiA+PrRZQXGfyp/uw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DGkeSsyYn2Q86+FKs4IUmS8Lg5K8sgG1PBLrtOSx+TY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.108.118.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:86c0:f001::d0ed:e1:d00f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Auroch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jKFuh4KT0R8OCAPl/An5OlxmaIk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n5QF8gz3Qyw7rIrOzX02rN9iwmjmn2AFIxPDWcotHIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:11:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashSalmon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jJ5CdzmcYSwgMs08mMBS8NbqSWE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rxH6UQ/UTebLe1r/hC4UW5wR7ZSoqEIrrnAhLvUVhuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:54:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.39.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jJRK0VjkENSgZii8XpbqoLF/D58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xwjKStVkey4DVAo8sT4x8Ne9xIS8GdZxAZmOW4kP6PQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:10:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "118.241.8.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Intrepid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jHqYEcxsFmT0LZwr2IwURPznnUI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3EJrsKypUVY7ygf4V2DxlvRZJ8u03G1BlxgrsEAw6cA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:09:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.195.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 53 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorNode1Relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jHg0qMVP1cUmCcWlB/NrY0ydyII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t3UHns+jKONXVX+4DKnWzA2URuUa2xfiTt7+zISgg/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:10:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.77.87.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber39" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jHaWfCeR4nCRNYRvFy7XSvo8Jg4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zOXH199C8ztbun1FlF9WB9LLai5xpTI4Fb4lmSTlP8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::20]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "reccenode1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jGL18vQvUy6j5S7VuCb6W8enlWE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QCwhG3sdMnx2iVETYHr+pXOH/L5tK8wyV+2HJ+0uepU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:10:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.71.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "davy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jGEiE8S1wVT6kIR/NvvzbbeKsaw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8HgUXztX/pQ+23dmOn1aw6Bg+kAPfgGoT6GFkGSqO2Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.69.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HappyNode11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jDWxXB8Ti95NUKl1Ep5Hc7RKUD0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UOyZwQOAnPxxyPXy3FpHTkN/hi1vIN0PhOYA4Z43VXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.138.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jDUoa5rP7Un7hAVrXiAQ2Ede/2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CskmZAxpYjwfLOTqWeLBkhl/6QOZdFtXWfwN7fX+V9E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:43:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::53]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JaldoDoneunMising" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jC4wAK293L55Eut9Nnr4Cy/BpoQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CK1nXcQGeeHqQ6yLOs/WS28CCm6wLtihn1V0pHtia5s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:07:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "14.51.6.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 52739 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=820" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ts" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jCfbGpEpe7NiCmlyemy+5Kzhhow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9CFAH7fsNOrS1tFE8K4UfivDlAFUmSGus8x1I14Gp0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.66.81.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:56b:ee10:8e89:a5ff:fe2c:e66d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor5e4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jCW6E01Xm4qvQg4BIV6yzwaq6Qc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FzPidd8iqUs2kRd30uNCrDUZPXo/sMUJ5VoDm4tu6h0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:30:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::24]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra68" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jBiOcSJpNWZoOAc2O1dtmcCxc4Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hsRDZgOS8yYKzY/dC2jI1aOmRm6GTAh/VQ1azeW1aWQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.126.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rmdck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "jASC3KjEpDnDVOSzAE88GnIJJK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GOYSSOPvSr+EwLQxJls/dNZMJHGw/aQixX4PFJxhII4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:12:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.39.100.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onionmatic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i+y7VzMYv2Bh7RECJOpjb85OWYQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GczeLxZa2UhZhYyo3clajFdq/lAfx7t27k78t5JGaIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.166.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shadowdancer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i+pauPld4ZIHdaGo9MNLlHp95QU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5TKCAfXGNk5ixNS4Agc1k7t4xBT09ehavYpz9b0jWKA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:05:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.166.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Minotaur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i9vkmBgMQSSdMjD8UJLLPrWmJII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DJIMddZFdSspGlFStBrEPUf23w0ZdJnUtjSDdssjpNY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.167.47.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "branlay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i9pf4OLDkasHs7C7/VXcgCOXhKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6HSipJFKeLRWQvR/xODoGB3UWCyWR8dHehf5Yomrcds" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:39:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.58.56.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "applejuicetor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i8kRvML0D2jjFLg8xBDgqt+UUPA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6GOfRF3Q95WfqhMx4bsH2IDY2ipT7b/g4grRdgbuiC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.255.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PoloUnivAretino" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i7VaOvu35dnrgyFd7I8hnmjfm20" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oHPXJ7oW47lWe5WWGowj0KRyn+sb0xWYxbTMQdNFoxw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.110.254.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6d41:200:2::e7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i57VJefZ0oJuFhyntE0hsWm54Rw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fu7Wt1eo/RCpisKANcbHQt6sQK6hQQCPtbTLXdt3pPs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:54:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::214]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i44wsKSevu+WPSparCjzvTBorew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F8WWzLT4lSnZfoIfe6t/X8/tL1ANUKtkamErQptd21U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3646]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bobtail" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i4ieBMYOMNURATGJ08KtzlIuHzw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4WQ+6NHuDM4tUQC4XubnowHtVM+FtxlvfsMISa0vbRI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:42:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.2.133.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex35" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i4AWm+9xRQ/EBpoZCFNSO3rqReE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cFpQ6MeVz7zcRZRBu0t6mrqP/yUcj7AqfZL198vN3Zs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e654]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rockers1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i36ajrlOlQ2qL+gILs1yIiC2xw8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x8ATRP/c8r9qYSwxVRuX/Q6YnwcFjBys/hDDiMLRC+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "laurita" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i2sQoK7YlAjlCdRCLskmyJx5M9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u+Zn7f3XOKOIVcfWmwevVk4eJQ/XzsPc0PFcgeQtBsI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:04:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.205.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i2cyHWFahIcETERyJlQoXm08V2M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DLprInn0dyDnoaZADyWtQ0b1lL/D8DFbpgtITf81PwI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:57:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.103.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:5:c437:17ff:feca:57d4]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i14oLQp9oW5kTRer48njehT343Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ri6ISEWnyuoM/1mBYPVu1bmGG8zYEt72Y8GFmjQTeRc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.152.209.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Feidhlim03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i1oZsVltrUyJ4CW+LLo0JK6UNpM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FbwDyxaz6ERfIrIT4xRXna3WxtCPqguwgE2AY9NA3xs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:28:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.27.85.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9029 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Spellunking" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i07LdZ0Tv2d4rKpS1mbrKj59Lu0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rtHwxot9gWdEtM07/sSbtB3ePaAT16ie9pabQrlw3+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:16:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.223.82.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Freiheit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i0lvPvO/XMMqTCDs2+wqBufqQ1c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ixWWC3pfnl0fj5VKQdzo518D+f8F01I/lLU25FshPC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.79.178.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:5bf::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ooooFUCKoPUTINoooo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i0YJufOLsMnIv4RqFOvSExp2oW8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cQd9JI9kgzxWKQVpQEyekMFEMkaJgKztCX1Yt4vp438" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:39:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.205.236.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FTheFeds" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "i0B1uRGUyfB71IVu+waabV3aeQc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A9u7GzZ76kuzFivRhCxdFYyNGoB6V4jOKrRzCv9ZNxo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.10.228.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tanveer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iz7dqxm77Q/xespvemG4fc77J7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I0pf1j2AqEqTdLKaqzUkGwIl1ATfDyrhbPFG3fk7Gng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:04:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "143.198.183.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ConcordiaConstanzia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "izoH2RVedrtK6SLI+Zrjq32I3SM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iPY7KrwRfsZL3GfNRhBjvsgg/Jvn9VugDBjnFZ6+ge4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:42:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.232.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iy6yu1OdC4enukvhZ3plAaBLiJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H6s2ZkwYQA/ZJIb90JFEtfcpTGVj5Kwtji/aumyeML4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:07:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.201.142.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 48794 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ixmnmOnUzYgBNXzRVqVczURI+70" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "00qn3VZaEIxMDLrOpMgSNTobph/il1Xw3BHDGldC73w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:39:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::12]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torNodeCom2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ixJjVjteD7fL/qz9UEsLx5dZyr4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E78P/qsbgggyEw1eLr5rkzq7QcsvfpU0KpCUsvLb6JU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:49:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.17.56.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pato" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iwyFjdICNhBNaYHz+VIB73Mr8L8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+989tRS2nwHyDiSRkv3b0yGf8a53fCG0Uwx7oiy4Q3s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:44:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.17.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:4cc0:0:e35:c4dd:60ff:fe34:7d02]:7444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ams1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iwQj0l79YfDd7In7U4o5jXnIs9o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bqbInvBUow+fKcjvE0YjwTW0llNEVJBVXVBWG1baF6c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:35:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.103.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Eing9wies0fo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iwNPKvvi8nWcyu5YVdDZG7CnA20" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yKTs6c/jRQysyXxXk3aCXj7v8YtVNnCJvpr42xgqlrQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.13.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AllOfGarden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iuz0h6xvqaKmZP9ypTl4KaZHjmY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9WwdytRbeqoYNwjOQ7h2YVTtvv6j5t/WCaWd5pljy+Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:24:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.183.168.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2601:601:9a80:2f80:5899:261e:182:6161]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.5" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LittleSister" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "it4T/oHpVxdxFDjTq9BAIDHIDzE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bkbVnhcP3dJ6kM8Apg1aWDYA+yEhNwwO8X3mlgow8OQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:48:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.21.217.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10035 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tommyTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "itl7BR1H07uFKdt9hXV0Jp/VCCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dbvU9pvzdZLyrscvOTErLgBX7IvN1KSPzNpCPhi9gw4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.239.86.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SkynetW" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "is1zvZvdXlr8lxacWDfF4Pcyos8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3kH/CFxQrMQmyp+mfiNyQwpyZHyl8PzAMSlpj8LExB8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.244.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2424 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:858a::1]:2424" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay38at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "isgakaEZbCwcvtcclqogT3sP/gA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X3QQioAZ8qGvByarc7kafLaUUzd9R5g2rI3wkSOlb4M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "isfmTWdKFnuhdXQeWEN+KJMXqdc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vO4Sojjsj/HX00kp/DGg4spChhxef3t832GtwEk6kUs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::72]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unityone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "isRmc94pTl2TL5PoV/hOp48tR5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2yQfJShyp/I0m013SHfNujCq5bTdodlCIL6IN5r7iHk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:10:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.34.206.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:f480:2000:182e:5400:4ff:fe11:58d4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "irxXars7Jhw5RGkXiJc+UeY6X04" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yGtpd3ehUmDfrDh7qh30HmTEo4cuhU3pyIJKikCTZ/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.142.73.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UDEtor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "irxNX2GCx+ebCH0e2eXPZSyD5Sw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qXQSXjNdsB+bDOv3GffgFdDmCZs0i6Lnr5YM7wruwpY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.252.186.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:638:501:4185:250:56ff:fe85:7034]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0188" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "irsc4L6s/yyfi1O0woZhTlLlc4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IuSLWKXeGNtmWzMt4n69BWYwNHNrpvCqcHkUPEY0k2A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10188 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::188]:10188" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "irdm+xvlRmlVm4IWWWS4152oARk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8qJyXPwR2YzjqJpuAiBJNuME206QZC9DK10IJEmDUEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:57:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.32.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:10:42:896:37ff:fe75:d532]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Slowbro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iqPozSOqmsgQO68Kz/TRJEPFofg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RyavqUoYRD/MMHNB7I8VWj3hrMzeoIPL3q/dw9lEwaI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.130.113.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vaseline2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ipYlSCos0vMvZxPBzHMUSL1K7is" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4+EFwI/9kTggk82wRbhPqE2Uo5+RXKwW7JdGRKpjkgQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:41:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.71.25.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "7ltorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "inQmlZiuqTfxLNi9hvtxLq9i0Oo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "THhuNnmeFc7dm/HNoRfg1aAyjhbNaBcpC+E7XwFd070" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.61.218.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex78" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "imPkzIbkr/VOB6+dI0Df37hnQxI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TPFMSZ/LygMPI4mTsAJspQbxxm85uVvUKewqn4oYAbs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::167]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "taipe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "imIxKndms5hHjICktNODGpYo4A4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N+NumsGy7PKhEyd7gby6Ta0NRgIR3dNBGOzGz6UljZA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:43:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.217.0.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freejanich" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "il7RQPBfSTTP8CTQbcqxe5yEUjs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "slLg2w/3m9OCege2BohAV+2GVbtOZf2yWFTXiyyUImQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.91.100.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 53 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nirukoru" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "il58LQmDWXS01YJSutUf2K1U+c4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7yEMOT4NJcZm3Xn4LuMeEziM2LOhrH56VBXoaIP0NTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:53:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.42.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:430f:600:5628:8879:3e0c:7547]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Iduna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ildJol0EDnJW3NTyomETXe3wdQw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GFbvVH4lfrmfEJJX1VdVJLH7N/N4evU6905PN41GdNM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9007 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ilMKnOLvjqfZ4rSWVm/YR+dsceY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HtSf5GqetLxpBH/cSdBOocN8j8ANQ5R0jVEXJr6tB6I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:34:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.45.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:4a::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ilIvMKPOp8aSoEGMk2Iyui5U+LM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z/gy1kUvPlVwVTxwmoCrxQ6dxC6zGi6GmeNs/eYawEM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.138.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:785:3494:6ff:fe3f:873a]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SomeCanadian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ikhZQqGmjQEoq5m66wD8HAAFQZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JbHRvllOBetqumSifCx538BZt400lAS3GFUOLf5T5vU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.107.107.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ijyGVzhyajNfvPJxSrednoFZw9s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "27ylN6KCAbEU85M8d8DmmBwlw99i9aJoqsKoenEMRkc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:54:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::17]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "randomthisup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ijh6RMzTbyv/FMZ7wgpmYANtzSc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1jbjbrHh7qQqbLBAHMGJd3xrOR5oG7qN2grr9cM3fOk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.207.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "koala" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ijC0vyyGx+ZcLlKpXognGOY/p0w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F9sLPpODntsJek2WZQp4Hy1d/2c+Y0auXj7O3oYmIv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:50:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::66]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "weizenbaum2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ii1xy8oz8To+qWFN4orj9mnYSYc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eqCHamiI3rpE7IhCW34AzYEorwd1HVYMLYG36uTaMqA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:45:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.102.148.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 53 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kalunk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ihaesjHRzPL4qXBfj3yYCKqjIlc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "StF8VsNzMYaF7hSavwsc4jLJPfKR1UhbEsMn5h1uzgY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.8.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blindislandB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ihS6OS9fATdp9ktKkhx6e4CrFv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "npKibsp2j6fplorCoGYfZWbK+z6cCTBSwhrMmqgAfbI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:50:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.243.103.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snaakbarrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iguWspS1wOQOlE2hSZLxJn3PZ4s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lFlBMVO/MSnuGf4i5FbSphvfG+hKpZ3hApgy6fK0RPM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:03:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.147.65.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cloudslovewater" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ifYGMikwChjwwlxs9G9Tx3jyCTQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mWp3L42xqbEkGmo1h5DVjsHD+vcP6nFqcrlGZhaMX7Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:02:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.15.226.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ifUJS9yyzTqEZeWthDS/pg8UnYQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ez1BiDVuwc0yCEg0HCMvCgMt4B9AfMvbe/hankRmytA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.64.218.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mania" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iekkEV9n/HXqxeLEzzXVM4w1BiI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gJcheJr5DeTJX9p200kDE4zxq4TdAS5zeKZBXcSF+TM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "169.239.128.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ph3x" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iefmFGJSM9QCSeYaLkE21PV4z3c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MuCzudAfWM0gRUUfReJxrgnmoI/ilStqNq4iQdJ+fco" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:31:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.142.140.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:858:2:30:78:142:140:242]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ieG12gws3/4GZSD6hSRI7gxPNWI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OZbGVFEcw0w8naN5lej7IURdsALvfMLPI/Lzq8uZBGE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:47:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.77.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrgAU" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "idHKb9qFziGDeBBSqyOk+iN9lgE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g0qPjoyvDc3ttg/EyquCjwtXirbPq6G8x/5mT4HcZP0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:36:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.192.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "discworld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "idDzH5Bj+afglZzngzpqyUOumgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8pm8RZ48dCwvC5b921yYKO07KivFDh4o/3IoIQojaWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.10.73.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "icfoUswvpTfteHda3DvqJGcrQVQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+NPfOSGbrNVMfPDinZ42u8Ams9b6pWHoD8Ii5x0uKLs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.59.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:1419::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "COMPUthings" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ibRZcWmp27Fx8LRinHPA/VXXZ8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YyHFB+pAqTs27+x2tz2UCU7t+/VQgfWEVtWvw7mUG+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:48:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.49.172.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flokinet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ibE9f01Ct5UjMYk70UhIEGAPtKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SQdewO7HbrFAUFSPUMlCJB/DRH8X6wgQySNPj4EYZkI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 14450 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eggu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ibCmn7hhIS9V1fr1N4vmKdQrTOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DvvxlvKBpNgvvPdEjJUA85DbpTodHeQGJfZZlGtWqsU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:46:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.199.59.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blanco1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ia+HXZW8NCvz3lmybyoJ3tBFguQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "74KcfvoLihQhtWDTqTLeBEOiSCNlpQ81TSD1QjQHtB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:38:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.183.226.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "piratecantina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ia5flsuXkZ7xOxcuDk4stQzDPxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K/YxlDBwSoNQxs/RKwOuMhMJ7sriJtVdMWMvL9QjNcQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:02:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.144.21.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cyber1Creek1DE1raw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ia2fMrCJvJNi2WE2bDP7Y82Dttw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SW2HfYhHUUJuhNu0pfBSf9vYiC2O8eMrpavOy8FUyXE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.249.26.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:1:111::1]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "megator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ia08aEoZQ6HyuEzoVzbXwHMXxn4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c26jaOUb4qZUKZjrFKPHIAq7+deRYRE8TKozSiufUFw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.199.29.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AtomizedRabbit3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ia0IQC0do4T/a92Pfkv8v3+j1j0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OGadlCJU+AViOJjbqi+yZECS5MrivtTqAvWgxPQzeSk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:38:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.211.96.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "none" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iaza3tsBPkJuLoGQ6J7bGI3krD4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SKLXarFXdgVPhPYlQIO1F6CEovWOGk6lNG/azrIi4eU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:38:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.70.50.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:c001:6802:c2b3:edd1:683:b456]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iZ0dErv27URQSMswLA8UttFa3KI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jRWpgNiEKIduIWFOyN7bUj+wDEJMDIGy3H4QZ01BLB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.10.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iYeoEU073FD8Dog8cMY9gip1d6Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Q0AbAB8NFZ7Q8EQolsN9L5aXaae1OPumq78UT6QrMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::22]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RabbitPlannet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iYcu61MjVaVm1QQBrfqy/+Kipls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "REmheJGrTH/LzDDp2R7W1EOkZRg28XpwfO5ZBsuzqxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:21:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.140.251.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "heims" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iXpn281+nVw7X9GTSUM+ImOgHQg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kn92zGxvQWVvvSTzAQBH99dqFyl4wCRwZpF3qrtwS/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:55:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.130.128.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "itpol2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iXLa1XNCLbXYlcxZPEWdc3TGqJM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "43rbAdkNsv4OOW07qx9FDx+BXE+FNeNV9PfUDfEusxA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:29:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.150.131.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blackmamba" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iWNkt5lvXfug4V0aLgbQuYtVXdY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u3q1wW8dWd6WivYlU/ZkIjbpph4ox5Tq6uQgEzUYweo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:19:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.50.223.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:203:7ac5:198:50:223:16]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iWLGLh4CVgzA2KRlUuOkpbOemXs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FvX/5bXloXd8I4xcUVFi6eCd52WVe3uEpwUATEFyHxU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:54:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::40]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iVZyuGMwIHVH9nfBtcuJBFeZMRM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zy5RaWw9bDxY38qVcS9NvosKoo2+1QmUW1/ouaghEEQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.82.105.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iVIQyCN+NFeuJZXjugU+sjau9p8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IbMIYaqWpxAjg/uxB0YU5jI2smxhWgGsXRtt7tLfqdY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:43:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::3]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iUptXLd6jOdxqkZ63LEbRM3BDus" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eUSkv1eG6e0t7USXhjwkrl7zKxnhosMa2hOJqYXIhbo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::229]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iUNifzHiwcgeQCWhRBHxzM1ws6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3zRGqiMoEWehZcI/GB7/A2yLYL68jgYDIHpeszUsl/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlackBoxx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iTn+32+3RP2Oaf9s5HMxjyG33a8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WhZH+dQv5rP7dcTVvA9YkNNwCVTDdEgeYGg5U/hV1IU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:17:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.76.225.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yomi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iSqCe/Z9snDjA2d6M/5XcGnd5Vg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xQ4ambN3T0dCipM6qUHfVrrEZXcwJ4BjI/5JQBkD0tU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.74.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f8b5:620c:dc25:c624:aafd]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH107" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iSmvVVS+Yi3j/jSBLAPWX+fV0PE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j58gY9nigsRdV0PpL8EhoDQJ1YfqQ94iVk94UlEv3sk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:207]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iSetN/OdEMP0z91SE2BuSIHM9rA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7YvyAmc/nmh44U7S3AfiaXr9xSjYV/VoiVqM0uUaHZw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:17:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.218.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex84" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iR91yeqQYBC+kJfZVz9y9GLYihk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5+XD1C7vLuwyr2BUUV2KKMLM+1jThjFAi/6jec/Kdkc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:26:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::173]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange039us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iR5yQkNuDviSwIZbE3Poi+sqdjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XHipqYmGlkZcoo8Kfaxw+EyJRZgAZCEGp1HwkVkBqyQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:24:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.152.46.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mindbyte2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iRFSXAcTQX6e0lSFqUkkVZBlh1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OJKIOKgkucSo6N3UP4WjlTlN38GqyZ/Xp6MrvQChe0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.50.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frolix8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iQ8yuNz8Bw5Y9dUK6Owr3gEBNGk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O1hQF96mt9iPajCW5wSCQIuioDh2CMZYUwY1qdz+Uhs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:42:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "153.120.42.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "v1704" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iQna1khKPayF80II02Id48fsQIE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nAOiC/z/yM2nJeJjqeY1pFDYYlK3qmYl6njMHK91pIo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:37:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.114.37.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:97c0:3e3:55::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Privacyignr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iOCKMrZ1pyVtsaGLyAAe8mvy2YE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RMoQw4SVr8lcItKYKi+pF7PT2Yvg110/yFK0BmSl9o4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:34:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.98.115.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayDE88866" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iN9dcI6THEMZAqqr6pgeeVHgAIU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4jQxUSLcdGx1sB304bLU6wwpXAsmVhvGraGDDfZISkk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.106.193.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev2PLicebeer72" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iNzSZ20n6aN+K0Aq4bQa/hVEECc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZDkJ95u6CR63tMNLwaEZD6IVL73qL5b3Tefb5LFj+Js" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.38.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8172 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeHackCom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iNajwPwo6ua5rQuhCCIjwDwbMvo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dEBbaAvyt89jD0LRyqA+zjOxwCkFwxMGa11mj8NQDfI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "137.74.119.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DiraE2yhvB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iNXwvYf5vBqW/L/c7bHA5rqx0U4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fQdYZIcNwy2a61W3emlWM9He/VRGKiWbsxg6B4cj5kE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:29:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.35.24.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1025 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:dd6d::21]:1025" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cryzrelay02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iM+NQtSbfI6dA6vl2uevJemQIAg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ijj9r+xTNlNddryNTSElhh+s4RvInHLZTw2iVf1HglQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:40:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.149.227.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:440:108:11:82:149:227:125]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RasBifrost" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iMYVrF+Vkb/UjbV4slK4mnL1w6s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p4U9TRFomK1N9IaKwOJPZLbEgO4tmV5h8VRnEAnCxWo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.244.239.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Determination" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iMWGM8lTei4Pk6XsCb30D8MkdxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AYtwRzHJZ3yCc+fICZ1A5Tmmi+kZ6Mxmj3RgNShRUPY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:46:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.195.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "viresinnumeris" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iLCiE7RbPzcBAA8atOR10d3L8ew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VlgAUlnwBo0drMCGjMnv9O0UX/ETNNkaVLi/yN5tD7Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:38:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.139.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:628:f32::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bahabugger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iK2ZuWgt05E8sEJPB2Ox2DHn5E4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OWhtCTHrf0yK23qUrHo+vBE5WNRRMh+YYJKs42q2nOs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:44:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "27.255.77.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mowgli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iJlE9UDBVefjLJCbnhQkZ3aJrU0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/wrFkb322aR9jxFST1NFOmKPYtPv5Ek4qE9Wp9wFw0k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.93.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iIXqb3SmlIJbE7inCA9s8WTfdPs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XWOf4ZblPuc6Kcf0gycUlmzeYUStVef2hP2JBMFloFU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.217.95.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3000::49be]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uglycat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iH11DGntgdFLQrc9ZSnZjDwlpXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+mqI5f9iBkBwhf945TTvdK7+4hbudqoTxDeyyO8TdXQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:58:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.41.183.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayonkostchtchie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iHyrUBqdtoosRO35i/ULAwTu2LY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pwRcSm5lo/b1/Zkv3BxZPFrwVZX8GqkykojtBnKV3rw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:20:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:7::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TruthSeeker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iHVK+baoIGFOFP6PH+pCMXnoCX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AcjMU/RK/X1nI3T8527alazVoARSQoy0A7YOaIosw7I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:38:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "8.42.76.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sugarlabs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iFyj3VtQmAzUHFG6f/yNi+RrZlg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OwFx/YlAeMViN5DdMdebWwEMbwpSSMEjU/DujacYBCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:37:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.184.220.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:5a8:601:f::216]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay19at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iFx7brlDBot2IHDiduKZMZ5asIw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jk5Ilnpdmac5l1mkq/eSNpNbbTYG6csKyEApF/x/FOc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:55:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1151" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iFAvf8SPM9l+5eeVCCsVn78ESnI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O8nRz1k7YBlI9s/vbfNF5prIhZErbbxoA+rx4eNWTi8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11151 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::151]:11151" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FoxEarsTechRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iDdy0Vm0Apnol0ToR/xfMqqtUVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LtcUdFsCpI9zH9ToUyrVhtFAsuKBEq0IiPQ5rqicX6E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.65.243.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:1e9:5160:ba27:ebff:fe68:d2ce]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=590" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cheetah" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iDZyPS2X80/k6TMETSyg/hSZVXo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IM+XIYT40IyS22c7iUj6eYsDPAxEtCHEeI2pArzwR/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:29:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.180.138.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9905 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:569:52c7:3400:9aa5:cc38:121b:24ef]:1720" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sexytiem" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iCaYssocPMizR1FHi/uQzoTHLzY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0BjM7h28VzZHuqhEvP4Jjd7lLUleT+9mOZhiNGm8VTw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:59:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.107.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19731 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2b:75d::124:148]:19731" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iB8JJ5+U6arT3jByffOtfCzpAN8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SLFFfP0EbYqprQEjOFLlrPaBJ96IsDGKtJxPafhXbP8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:23:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.99.171.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2479 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:419c::1]:2479" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Karin4713" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iBv7QwzEO9nSALqDSMaem2Jc+t8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qhr41ALzaUbL70MxZ9EGsrY5wPuTk5nWTfMHtxTI/U8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.209.9.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=920" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "weisswurschttor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "iAKJ8rYykgWFQNy3ZAO0izwtpOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CZcD/HgDOOhv08v4dHNOcdksisgkhK/CgfLzdg5uuRg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:37:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.91.76.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:1f18:452a:fc03:9323:da54:e44c:4e2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RightToInformation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h/4f+CPo4TWdLugLmzGzs1i+4hI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oRnayh7fEweFILUNtdifFgcxlgVYcFHq/if/kbP7VoY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.134.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:439a:1900:43d6:a3e4:9968:9811]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Maple" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h9/ViiP73PtIweUazVYXtIUnnmc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DXDGIa4oHgb6cDiqwgs+DED26VtuUe7x7295+eyl7kI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:28:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.156.191.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ireadtheshadowconf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h931vtesyoimLQlSkF3kVK6HTXg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MDN0ALCTWyhhVCB4h9YB+hktuVmf9DATLzk/nFHzqp0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.239.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:51c0::61]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h8CN39MsYvPFbTcfl3TSe/27gHs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0E6E9c4lDgQZrOPM61wCvAkBydNGu/y6sHYW5NjH4Bk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:24:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.81.66.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeSpeech61001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h7uVlc3GxFPp6iNcadESQhotDpQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cq1/xCtnqsEy9Ti9rXEuvDxvBb0l+dGXye001ShzogI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:37:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.177.68.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 61001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "f89g65f21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h7NVfz55IhfivE6ZI+rKSuxbqcM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a9HWGdj/RV7+iu5j+IqpnW86E5ZG9J9PRly/ijvTXuo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.191.152.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NukeDukeNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h7MQPhADKrxo5a49FzLqUlJMCkQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iY/FzHBVm5pRXPhlXgb1U8S9pJ6K4NlvjLSdqxnX3LM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:46:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.17.211.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8325 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=89" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tvSORGaming" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h7ChXS9Hff9Bm6Iy/QI5KvydeXM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BqkXkJz6peVMKGQIgn5WhFDEsKeZponlRlisLvUGJJg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:14:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.126.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BarryBen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h6ob5KOVKd2GGUc437WdxpjzE2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KQHS7EgKYZq37PzBEV+X/JdMD9N8NX7HHnOuZOeusTo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:02:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "52.205.15.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kbtr7lv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h5sDZGjTCrGiGV+W0skfPKqNHcI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ci44Nugn8lT9CkHcqbndtJPdC0QFzylOvvQn0ThVHbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.115.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay36at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h3qqHfCNkC3KZnBW6238TNKwZlg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jPrm5P9oao4Nw5+RMNOxwg69s2Ex2xxFc9NwGycMMSA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nexxtor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h3SFP3dCOt2fldIg6jCfEvjT6Fs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7QpkHwIY0M6nzeqNKSNytvd1kHhzyTLPetEZ3v024mU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.212.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:12f8::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rainbowland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h2x85Dd0NmJQ0+do5pDaudS11aM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ad8Q7K8p+1BmRHq9aipVgZb+ukWl6v4ZatEtMHhw3LU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.218.242.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h2ulxBq39KipmqyrmAwIHbphcRs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yQ/9Nz7UR3n+rcR/ANewT1DoidLFNz/NpM8wD3AS+RA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::206]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yellowsun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h2mvbcxF2rnCGc2fRk6uMmhVDP0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UPzKWVS2XKPycRPMDqUxmAW+SQ9Uh2E1XOtIzR+Aqo4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:49:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.148.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:ad::e746]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plithismos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h2XGr/YsJmo42Mc6dmBKWxZp+qc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BWuaGCvao0VkJFUe/2PuI/g2BlFSljuWBVEIPdmShc0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:42:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.70.64.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c024:8001:dfea:2::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ldExit3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h2E4Rf4axshN7AyQ59yVdp9TLiI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d9SJC2LOc27R/OFEpXitjlzagg6IzoEt62MQ++IrIo8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.254.75.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 56718 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:d9c0:3000::a22e]:56718" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Babylonian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h190o9wUc3vsoG+LUAAiFU0aKdE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "03bhRN5esmm15bJ43KKb1d9i1zlW3x2KMG5J2QBAKps" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.226.248.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Spigen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h02EOCyJLz9hzJ4Qa/CIQ94Lhlo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LvyyrldjSqmpOCy2zsRmDurhxBNI0C+Gmo/+V0cGooI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.113.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:610:510:113:192:42:113:102]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=90000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "glenda0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h0zn5zKjYoow7ku3E/pF+L4/MsM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JtwBGhLw225JAGMB6OFbivCSmq+U4/yPWfWMk1vcJ74" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:45:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.198.101.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:222:19a::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h0ilws6L6LYJkBHau9c226H6vWE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vElIvXO21wttdPsv8dvxJIUjcWFutQqU6GilUnvy1jk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10037 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::37]:10037" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "L29Ah" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "h0WTxXFjfGX6MySz6tfdVC4rtkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wsNckB5DGsOUhtghi6chKMjp+dY2HwcM2C6NCwcm85M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:13:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.137.197.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torsten" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hzxaydz7oshS6x702wjqq0ctsxs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nN0pxOALicaiZEQm4YBHcMalMzEUIw90IuU7dLF5qpM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:40:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.144.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:e041::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IronFist" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hztlolapaWd5ZMoE437JVVCJ2zw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ME+GE5rZqeo1RPOvJJBAnw1TnC/EHjl8y68EzByzNjo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:23:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.73.159.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionMasq06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hzV/zCvywh8GlxQ4G8psPn78vV0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S8kjuNnuLsF9CNpYJqTqvxDxKDzXyVCaSyAvCXWXpEc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:12:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 57625 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0144" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hy0KDevpFOw8PjEFt6jMFXZi+mg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ByYSqgM4ZlA1J3m4nntMujohjEv4Y6tkLix+4BfVXfY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10144 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::144]:10144" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hyEIxSxSzBAhejUciD6ZGu33xHA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gPYJZN9D6gvVfz//SOgaRU1ik7Lg28NzdPZ9sTii5Ww" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:59:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.89.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lennosplace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hxVKLdmzidvZrQlwCawnsMX8/mg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x9cLzHle/vGzpB7hdezR4kJyLejQ7bsqVdstio2z12E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:09:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "60.241.239.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:44b8:2128:1800:85ef:14c9:a370:276e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=740" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rocketrelay1776" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hxLhf70Na7q2Dj6JezJvrlHhWwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0dFRJkJny6FNo3dkA6RkveITrW4MlHvW8/1XPtBwt3s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:27:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.12.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Proteus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hw1k+HRY13Bq1oR5Q4OSBso3/RU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9jnSs8He1Ln1ebDYkof5LpbKYSXF/wGncONwvyRq9LE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:01:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.210.13.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheFastBoi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hwwBkEIOJMpJBfpLBd/bMSymfBo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6lF4jSE/XzBiZRDad6+ilGI4heeZ3LX5tiUgWCjwEJc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:56:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "150.136.83.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6969 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1188" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hwNTDFzv+eaLbpr3VDKjkMYxTEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AltDpyOYKJaee3I4j3Eq2syjf7dGQGfRxYSm7PHqCQ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11188 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::188]:11188" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "brokolimc2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hwHnCsTAyeH+R+qFP8mX0pvl1lw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FXuZvNe0m/XAjTJCSwDlBDIUFTFptaUTVAk3NvmwvnA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:05:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.0.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:4eca::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hwBuHjjuHTW/73XB+9IUtwSWPcM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r/Ickc+QBnEmdM5m7skpkEP8gKpaf6eac9rq1aot/sw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T17:06:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::205]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Potatoe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hvunU8jSVlPghrmP/4qghPhi22c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "63dDK0bqGtkAvqsnyArxaCK9hWOZkdOCkzO94OTuc8Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.232.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:febb:4d59]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=610" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uovobw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hvKCjLSwh1UVYH9OIJeVFUK3E+8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H+pasFOzsn0BHPA4Y3s7WycA07Qg5hCoEDRNTR4yr1I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:08:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.2.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:4d4e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "huR5Jm67mC4gQAlTLtRgYoaJ5bU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cllxc0v0UbczlC/GkJxFEW6w6x7+/B/D8I3XRoBkVUc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::100]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ngggermany" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ht6pvvSvqTLIjRqS0ydsh7NqC30" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2D+f/OqfSRmrmNMojMJ6m7/pNkiRDqh9YqDE0K/W9O4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.138.45.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HoldMyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "htlCl1W2RtjBKWwbbLyal4dtbY0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b5zCB3DUFV0RPKwOT9lltTuLrR/vUn8Vn7rqL76WG5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.46.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:701:1100::58b8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mnesys1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "htkk7eFJi04d0I0iYPPp/kVAEuE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iAN8EPkY0FNfLNuBbwvtETXEg9pL3eG7CCXukEGbKYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.30.123.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay07V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hqVVS0DwjgKuLjP/HTo3IKZ4n9U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kSxBHTVpPVEZJX0PBx2SEei20F1zF2OklxM+Jl2m2Hs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:59:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.113.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:ad2::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Njord" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hpy2ky74fcFS1rEr3+XIJneXXnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pn8ptKV3Znh7sarlkDFuxBL2ufeVyXV8OJhMSWwk/n0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrorist" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hpk3FBXcBSpgvKOq1o5V2bdZyuA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8/Se8KSoyWikWHiKLk40JF+dRmDYF9V/pBizAKr7UG4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:08:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.73.211.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 50001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:8dc0:aa00::13]:50001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TakTor01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hpbcesBHD27Vx6xIAwAC19Nxb8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xAIe4bwDm39+geZAvMpoPDURcrLMxqCwRU+H4r6LXKw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.217.136.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hoolPDMPQPvkNdkyCEk5f4WCPoY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q25WLTGMq2XuQJCxJ2zvmzRJovn+f8OC5Ib0ykAKZJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:15:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.234.152.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Challanger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hoWsOiWqDU7KroCDU0Kx7QEeR6I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ubi5y0UD0pLnVAoTiTGk92gQguk7H6PI2xsMdhBReI4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:42:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.139.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber38" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hnjGKdNeLKag0aPT9MX1YTT165o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nsvKQMSA+Q7aOCntNrysmNne1jpIY5uXjaKtX7njBC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:23:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::19]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE71" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hnV0RseXjTfeO0BEuutP2zT9dM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IFPICJ4I8x7aVihqmw+qsyOgRYNwJ8ggVcvqn6JpmYY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:51:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.67.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6030::4dea:101]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "8r0k3nN0d3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hma6wIfGGFgBs4eIF4cZo9riUJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BojnFDERYl7GrJax20dPKf4A0OrIPv7cmqrzCp+XQ+4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:58:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.46.21.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hmK16fsK8NL0U069WtnUWOGWbKg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tsruehVo/yZUjR4dlPIZZ35jU7yUkQ8/Phy/BwOANOg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:35d8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gentor00" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hllsOoa6v1JOq3T1bmZuev2A/Qg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WN8e3CeTtDB21J9dd8qFNdSKqr6+VeEErugvmfU4af8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:16:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.132.162.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6667 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:fe63::1]:6667" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hleptIG6OaYMKeSa+tXOVSNneBI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "92HVncSj+XT4otNl8ZkV9U3MtDA6ThPX33G1V6CY+Ps" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.37.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:b19:e465:62ff:fe3f:5d6d]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mercurya" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hlTJpdHbMhPrjdg8Zz3yQHdXPF0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WUabS1xFoPiWog0F1tHdeLTyNTwRHe7VlhGSxkukB3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.209.46.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7654 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=710" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionMasq03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hijSrMocm+WW3tHfnQCZu9sTUrM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R1DpY4+w7ULPul+S8o/F7dhjVtie0Im8vK0P8yvRvUY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:45:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 54998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "405test2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hiWCGvpXn4kvH893+KKsmkrUz9I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZUG1s7lu2hRxx3637jLD407rL/n0KVwCzDZx1hm3ko0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:20:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.12.219.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 456 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "itomori" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hhvP3RSJc5hef+l8dFXJ5KxOE74" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WbmSdXXQnsWEzp4j2nVpk4k/6erVVvxXQbnR/u7UJfc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.22.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:201:8367::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "acidp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hg+81tCaCEMIj4hSe/vTjxvHDwo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wXUdVC8E6U9opr3JjENWIVg3EVyaO+kn1s2ukDX20zU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.245.110.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "narp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hgQvb87HzOMu60lel/7rqLXPtd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sclTRFt68WW5srBsWExm09tCrYgUZc8FlEfiIeXDI9U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:29:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.208.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FancyMahalo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hesa/PE/KVu20hFuVkjbAx3tpys" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W16TsFcdQpRG/Msk3DMNfxoFkmd6QlU9N9YZhIG+vvA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.179.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "letsdoitAT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hd4+1WmJpPVNUNgt2HqR3C8w7N8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "unoh3I3XyCl5HK0IAgIA8VVuorHocx9UkQ1Xxcw2RGc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:48:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.119.117.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:13:140::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hduvsc5yJlBFiRzwFxmZBaNozcU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AnGSIOpHO7+BgboolQo6tAp4scRTuWuedKW+L77zC1A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:28:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "126.119.12.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hdlkk0ziiUFnEPMC19MdEHbFzbo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/B/7QvZ+nFMZPIW5w+NGy+US3EmeiaRiHLZ3PJTeUz0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::8ce0:42ff:fef0:263c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mailboxorg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hdQIgUixppVMm//8oBDoXgqoj/A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ijcYs9KdgH1j//zO4nnZXtl+af5XVOXJBxA0/7dQaM0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.241.60.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hdPQw9RpmvqJf+ndknC6rLvj4/E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PibSxIlcSknzfB11TPx4eCHDd2lgDWGgx5EZNbjmWiY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:45:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.146.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hc+ADKu/cDfH8nX+fn+MTy9Cw5Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DdkmyiWqQEx+61xijYBqzpO3iScz+ysLjSKXfXBcEoc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::60]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blazeit6969again" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hc0yyoM7p2FfVkhg2lkcUy0U+44" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1nc3C6rGIZTHeVRW0nw8LFoqH2VBQGHQOV+F1lj0yq8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:31:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.116.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9696 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Euphoria" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hcnk//m2nUPMVPzHBtrIVUxslYA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wdKQ+pNK8F1hzkhCuzb8WdsCfJMAGQ/hvWjrAx+M76M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:09:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.65.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipcb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hcKdB2Nr66z8oN9asxszOIJ0UGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WDdjsIsMhdxYoHpCn3OqFCeANJLGYPvo56ZpgOUUenc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:31:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::242]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wr3ck3d0ni0n01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "haiFQz5QsYdPEc7JvphFHiRmCXY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QzaUALE7sYCzS7XDGkuY9MpFIDEvbY1iVAu5wm0Kbyc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:28:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.7.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ufm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "haAz7sJOvfFiGM9i5wphbHxn3y0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zoM+zxisw58QvIcFvHS0QdJ4ep8kEGqnfCG9VPV43No" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.111.115.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hidiey9ChaeL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hZN49r/8XkT3I+tTUdQ+7nb75ZE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OrrWnsxdE5J4CvbldXvLct4Uc4f7Uhux2rlx57ZsoI0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:35:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.186.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer16b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hYehtMzQcA8WTM1Yj3l0PHT+hwA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kblc3wZEYJUfQqF1KdyIYTvU/NuuwpIWYfs7xKZQPIg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:21:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3814 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "egoldman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hXsQWW9JYtaaz8RgATVbh8BYy+0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/IU2ujjp1dTUeZOxgQKw//aIVIXzhovuUbGOoFd7PMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:41:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.171.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hasle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hW2rL9ye7Yiie+ImX6a9VInvF44" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aygv/pJwgv21DhlAsfhoxEBGnpvwUDQUHiaraKO1duI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.109.64.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hWt++34J0Cop3S/wJLfh7+If6es" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fIdsiCDJZmzl0VJaiUC+yWjKxw9PmctAenEQswpIZO0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:34:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.46.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:22:175:a452:acff:fefc:987f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AtariFanclub" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hWHA+2VSYIc1uiciX/JKQOf9rMU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5mTqjn2RVf2K8y9eBNATaJgi6l3SeaZiLiVU7in2XSo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:21:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.80.20.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=910" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hU6ZxyoubsWzs9EWcKgR+sA6OUA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AZHvypr9pfR0SEmm+i49lZRb9+UXyBl2RXubrtq9OKE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hT6DW7RWnQEdJgbmMB+AJE0sII0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "muYaWAN6Z6s2ytp3JniBayDWp5+ecgEEouNrxMw28T0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spinoza" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hT4t85l9YhWsu4bVPlYwZplho5o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KVPPsJOizaWIrvRlbWxUGim81jNc+GwcYNz6ErMg3zs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:43:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.166.128.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hRhtTC8OQlfIMAHVjW+rGvk6oic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X84GF/JmDJr1432VKrISAS7xm+w+dKRwRrvj1Jt59Pg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:36:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.106.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:16f9:b4d0:68ff:feeb:cf35]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whyza2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hQUpbJYmq4s5G5TE5tThXDJdyO0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Wou3KPS8aSUZP2PoMDdyOuPGA7UreLzEiUSbL7xQSlc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:11:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.197.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bartleby02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hQQefF3wQ7A/LBlCGZjxdRwALkk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U6Vnq0uLxJOOQb8qvjL1SaakX3XH3XZ8sAFq4fba5hI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:07:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.127.236.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Normavilla" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hQDGapgXvxH7uL3LpzMEUFKN+Jo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4M66wPr7KgZZNiyHrlmNrnjvB59AmR2+tNokUKnorbs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:26:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.231.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Taeuschland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hP8FmDx1N+i89v3PbRaIxGtoRHE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "REP5Bl24y3uJ9n8nF8BV940d/KJ0iADXRIdvzs9QFjE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.90.95.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9292 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=690" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Admin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hOX50dugdxguxP5oQtiZYv1ZUsY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sTJmjMo3zqt/yB50BL/j97THmnyVzM0CXkisVud7z90" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:57:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.103.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1337 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:108:96a5::1]:1337" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Erik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hN7Ew+sFwGvhW/Drql+w1QpmJFk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Oo++ke9XZU20Q18B2Xx2DzlCJ2kqvGUxR/n2q7mT0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:21:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "181.191.0.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.2-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kleptoman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hNfqQEaCbjErMvgipZJlESGJDq4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "53kFe7HY8VNBFaQix+/GCXMQIIJURDfpE4yPdokEgC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.0.213.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hNNhtzaozR6IGND8GGiS6Rq3aIE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mNWtN0BeSlxBrJ/5exttmcKJhHexKS1hkidD42gFtQA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:49:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "inland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hL5AONrZmBXXaxERFtrvGq7iUvc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t0fIUNZldmQ3GmHblaBk92gu74zm6IrU3VRRI2OgN8Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.10.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8901::f03c:92ff:fe7a:6f74]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hLS+uQIL+mJfP/rwTmk+J86IaSQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PukDtSz2n3sodVzOrHStOnhPDhPLZIaa5GMoF+2nXIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:26:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.145.79.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flyingcubetech" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hKlHNmUlC3UrYhiSg05x7svWEP8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AXfxAHCZ3kt1QCSTgPjj/ppGypj6OKJX7zhtRYX6AqM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.38.33.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:401:3200::c3e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RandomRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hKjkHQOGWCInL2R9N4r/Sscxh/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TJqWsQ8qDCwQM32pEMCT3caieGBAKpbgvahMvJ2AtT4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.182.18.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hJjfGhI9mmFCl7UHR5HB0DOkHeQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6KnPje0y6ANl5t3xJK6IIm0gkVY+o36bMnY7e7mSLEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:53:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OnionsHaveLayers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hJYmoqPdE2ToxRQj1vMhOjrhb/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t4D5nA+3tEeUJoRNJ9kJ8cR/cXf3ZVf5U8v0VOfp6NQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.192.3.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 62309 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KnowWhere02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hJAzXE5W3uDxjJkymCfdsOvhlPM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jl7Wm0yllRbAcLUUrBVvATSHXTlZy3zwdyy8va1urMs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:12:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.166.214.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hI+4epm7mCtEFipAUgE6LNQuBu8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T6MFmYu5v3n02kMH45rC+ueCxMTATaWbfyhsUTZWHGw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::13]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "buchikuchi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hI7ZeqF709BsklSar2jK1fviO/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EX1SQotvOtSurSvJGXFtV1yr1zCp150LjXG5sRzs7qU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:35:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.206.247.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raccoontornode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hIoAqZThtiBB3s8LlASgnJ73L3M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3FMSM475kkJV98R2f5y1coClBWGcdbLT0v89IASr/zQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:52:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.248.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sashaRP4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hIKHltNaObLQkdp4nHl7k2tyHUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z90HN62sq9DoO/QkbWE5sf/eS0qgxAJyYjX4AdHY834" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:55:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.147.146.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=93" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hHsfhQNE14dkkaVIkvkEk05OuF0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zDETqArJGIsajjJLjQR6/ehKYktZ1HN6bcg6eE1ZSQg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:30:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.59.21.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:858:2:2:aabb:0:563b:1526]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hHMDu9iMldGDBrDzvaaEL9Xe0KI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0paF0PsTFrTXAqWGYsPn0wbD1mwhEY3ByYCr76crgvE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:04:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.55.47.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk5b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hGs+qvDAf/cvx5rrsR+jrcWPJA8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eDCdJupanaqqZ8klds7qBOfCVz9+gmi5wNVGk0FyZmo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:20:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.141.48.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xinchaovit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hGQGJSIaTpYwmv4IELOGRrxg9Fg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M+e3dAJMPHFuJlHKsThhBE7xUa+m6YlT4l8j1Scjo0M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "125.212.241.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hFu6VRp6Zkat7UhvPB4SQq3Z/vc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eNON+pVS+3o2esUvVHdbobtA3BMwImiDnoTrHN2QGjY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:08:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.149.30.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:23c7:daa1:8f01:d852:9629:5535:dfc9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=790" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cloudy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hFghzY494CPANIO460Kg9aVYLdo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U8JI9xLeU7An8pLAPHD22LClYp91QugjjIyIG0xA7Xo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:35:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.71.141.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:1:e0::472:a001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Smeerboel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hErpytBDJelV4r4VIVY7ef5wlLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2/M4lm9tzysoH+Mf+ZdgavREHz6lUixN2CqfA1C4JC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:43:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.87.28.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:230:3028:192:87:28:82]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tigris" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hEnIZCqcmiwrIhi7Ju4mIzaQ5QE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HaIBcEmaN45+Un/+UMiTNmofcpRZo9AdvJXG8WJDK2I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:48:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chickenlegs2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hEG+pAV+c+LJ34LeYQeMiLaQdgw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+qCKBOY7T58+VpJ5nBqqXo96/LqzL/t4rsQ8vNbY8AA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:52:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.180.183.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DidItLateButNow42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hDxPd02iZT2tuluEejPMZGmV9qE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VLxfD9hQrXHyyoXk8ejKrrzelzoKeQhDtqB4oADrwQw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:08:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.72.82.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Precious" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hCsfbEueQfyQWd9nXF31vanw/HM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z79qLgmnKNbHlb4Nld8PbuUNYzL+U0cZhBE7HDasBiE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.215.45.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:1619::ed92:293d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dani" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hCjALM0c8BcVyR8YGbpQfBp5qTE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uPl3Ys552F+IRoNSIJ00b9/kiaS+r9AK1IE0+34fw8I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:06:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.119.249.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kurnel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hCJ9UUPsjEdX91KmtK2zzgyWrwY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ls7xp/pNDqCDMZIPlOWE8YYowfyE5cCiAayOZBIbb9E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.22.35.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "8rijgto8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hATouKq5ggj677Fye2NxM62cb68" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dPldrO1mMaA4bDqtUoXl7uovitYecXb7/1ERBHoVUOM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.206.0.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "hAS8nFFMssb6UERS/P2N43MF95c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qvxqTtJriprwxd+y2ReZjLeeceMBPs6DsktrNakNKMY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.67.104.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zhuknode45" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g/dbxXiTI8qftVgTp6zWEpHjESM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WL/ibHnaIJ6kKBRKxBWBtte7UwK7U1HIeT6Mbv/6kMY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:13:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.232.149.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FaulsRelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g/WcKwh0sve0XDeryFAPeDNG2TM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uqxn0lpwCA/+Zkr44yW+CvR13CdB1y2mpTuuLTDlmXc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:10:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.225.114.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KarlHessenberg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g8UHhFKK04I8t+ffSzS5KkLMdjk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EX+77pRuqzP/iN6hrmvtKkRAQQTBa391nyGTSIrFlj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:08:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.37.209.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "strssadag" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g8Iin/Tk4LrSAptsajUNS03wPJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lnGvJKgAQGwE0H//fxjgvuhtXZPnhE66/SQxZy8DmHI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.32.154.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=0 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "clubcygne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g7+ycPAZObN7DYmvKOKjL4iPoCs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fp2IB1SFAX1uKUmVZEb9QmvMLy4dzcLNihtgBbGbxuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:31:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.155.96.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "f69m01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g7y7+3F8EN7L4nWvpRLko5Bt9B0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b2orl2fcMclaVGgTAJS2vXB1y/fkA/cV08lSFtmAEtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:37:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.175.7.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:19f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Woodland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g7XblApxm2f1v2Fv7snY1Pdk0as" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0E1EeSOCgS2KZ6rKPRUjmALkvX3MHtXzlZuw3zUsGV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:33:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.210.69.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "focaltohr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g67b20vjrQ7ZGFC/GlIbhDB3dZ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8y6TIgzuYDweCQQ+KSdmT3sPvXHNEDcQPNsCYq5s4Fs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.251.68.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g5iJvvLhWFIlMD0zLqRHH+MpthI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lZlCyXitjQ/EHXy+EkDV0qJbqjSb9rk71Hl+QTvGj5I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.237.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47a0:630::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber50" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g5LPfdPosXaF3emLC8TnOR9yckY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0N0rd4VHnuMo+QV1QhbtQnSP/TrijAyFif1d0OcY9B4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::25]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NyymiSipuli1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g4qxGvk4VuAwK44re4pHdn4yGOY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zh5c1jX4X7ko9H53vJuNvmeMleZdiNEGwCfPD9FyIRg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:13:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.218.193.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:8f02:2015:1::109]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g3nDJlOVjBZanCEDUMEECyavnns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jyBC1bt35rWEzkgW09nIBQZL7uLGlsnQMwreHXAeZcY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:24:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:104]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedArea51" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g3k75qJvUKlGNtBEYZIMV6g1HAc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PmUdqGLxHGdRqKsofW4lhtsNmu4cIlVOAcWH8PLF9pY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:32:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay24at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g3QF4y1w4bKc4f/oXAU+QcvyZ6g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iZhFBB4d/iTIrfwzwqNIOELbxMssAJTUdE+1rgPx4h4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:25:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "McCormickRecipes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g3D8TBkNACD6WU2CMt/jS1swrwU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hUe2vSZ8FxXXugd1FG1qYwmO5ZMbxjaoyvE7ymujIHc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:11:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.97.116.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g1/+ZC76O7eTZmPSNloV0xn7YiY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QZFt02FI5MqwcUeuaCGwy3Su3ta4Azf+SRvJr3WIjbY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:43:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.87.25.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "g1i92pyaaAtOOigJ5cJPWzYk1cI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "or5wJySXJZAYIUmTGHCCV8Ael5H45/wKK/ExfHUhc+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:26:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.91.73.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gz1/GvtGcI+TUbOOU5Gn9r1/tjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fM3f3/p4Gk+xPLf/Sf6EvocTuKa5O5zGR/f9xzbWhuY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:03:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.237.207.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GentooLibre" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gzzt0ozbfzouw+xzmGSfPIlP4a4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JWRflPq+TZvrhuS6Q9QP4dxMo0G1gPkSO+vmjPdZ26M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "60.241.48.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f2d:6e::8888]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "derailleur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gzDIxSpNxWITU2nTF9hoh7v+FoU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sWegAGOVWLt1WpPZRVdyE9h/DY8XxjIqKp0CXKRjZxo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:11:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.153.152.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gzAks8SJOvEGY0g/KMUebKa9ZQg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JPpXDCNREKUMW6QBP4Uz7cbvowYDPmfJ+FLMHRrysa8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::197]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "df" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gyRmhTBkw5oVygJyWZvtIY7wBD8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZkGNvXwUaxfyqDAhQ8mjp8wrWZxKEDfFQXEfLCSmuOE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:10:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.211.143.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 65065 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay39at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gx9zG6RpU5777vYJ1N7gOCu4/Gg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VyOY/zyKzPNqcHtSSZW3iznqMfEbn7EdIFDFwsgxe0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay06V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gx8fO27PhvH1wJAq1H+oyZI2sNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L1xz4jy/tdS9RmIzq5Aq3EKZs0rov23hMpiz0kYyKjY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.49.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d51a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tuferi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gvCtSCez/8RtVekFIxp6Ryz3XTI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ihX9HeADG0gYnhcEcp8q5RiWTK0I5SgNfBRRKS2DXr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:11:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.7.14.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "guwDvexGXpus3RGawLc5atbcByA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m7jGo6KRj3n7Xs9/feXm/siR7uSEwof8/SRD/NWWvjU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:11:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.122.15.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ichotolot63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gtqWeKC65gCHqmij4dbmosQkbW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vCtYgHYoSc2nSMcUFPRR4tYrEufKKZy6OpSIBm/Wwb4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.43.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "darklab1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gtGi26vmI9QgEisdWZZSdwB7lEY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GSng5KzWfzqAyDIffQqgJkmT0TvAoDrqZWNck2noFkg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.27.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=78000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gs5C0EtbphbmEeR1iGHIZLKs/Kg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2thSThMS3bF1Uf+HgKvm/89lg1z3pGZp1S+jB2jFjuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:01:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.185.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fairner" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gsmONIjp8ZsXrboCeEwBECD99Ns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EJoxc8nTfGdRW+mhbtr6Zbj1sEbIQvolLbrNSGMIghM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.112.101.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2f0e:531f:8a01::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skydiver" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "grlGY/FBl4+yJSoWan/P8Lo6FwE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y0Uf8afDHXgz7Kfxs/8OwfO7vd8wT7bgKK1sYFvsB+A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.104.209.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipfa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gqzCxU+o5T+xqcmQzQzQAHcynf0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ayCpNq5UriaKtBM30sjm7VSdmCIKuBtAU341SE0X39E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:08:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::245]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DaGamerNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gqtkclpWK1F9h7UVETu3knRiZ4A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KoSpWjEBVDpYXDXFvtTsVKIMhBKU8c9DjkJS8zRJMII" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:40:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.97.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:102:69e5::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Nyarlathotep" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gqstDkn/vqbooUoSSNRbLOw+SL0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qAvmWZu7ePO/KmhsbA9kIHYyAxu14lgv9yccS+/HnsQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.197.187.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1620:529a:fb1::221]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gqgLdahUNQc0weaMELt7H3gal3E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2ndubXAZvFl7Jt14STALWD47dqAyn8ZM0k4P9Dkvn7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:29:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::44]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=95" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "operator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gqS9CTO1nlpvlL6gGo71WrwDFyU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "so7K3B+1EOl7Ko1klw5FWLsM5ys7LGCoOXqVjoYH4vw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.237.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:80ed::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gp7Br4W4mkzZ4Qxycf7/GaZMSnc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oDqkbaYFHLYwNZgvwigL9nU4Q9EuZ7s0vernL3rYn78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10043 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::43]:10043" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip4b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gofa3EFbPmZ8YX7vtufWVMesDEc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/MCrQIsVOTdmDhVj3dK5J1YUQwg2UqgpbL8gc3aoxWg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:33:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::251]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Turik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "goTIpF0i8pgcS2KHx/tDZxFufM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4r2rF5aRdEBEVrRCoYZYxh3AA8chr2LiMYURBkJib0E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.38.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:161:353a::2]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ssp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gn4Nh2sWpbzAgQTQmhxBIeaI8a0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t63Y3atfP2zRyxifWcWi9OgmZpvfIrFm7aExxfKAWxk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:45:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.54.56.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gnWkNcjXg+7INaZKPqKt+MPEUx0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IX2WhjwRPIN9dpGAFcS+SIm6tNvzOaCIaKu0Pw9plao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.125.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "glrV0zsqXEG8ZHBH1rY6xBxMUCE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rf9smfmi60DnVd7jMM8StwyNqdMgkIEAnmpmI6b2Cac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.94.253.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Monaco" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gk/drc6biTOC4oulTFJAbb43QMM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xyKDA1CrVtodHVcICktFfinbedM+/o+GtiVP1QoI7c4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:45:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.88.75.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lokit13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gkhixAqBMn3oB/RKfbmCemK4a1c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xQRSIzSlQVuAZw6aA71mNlrdRuksP9EV1zZPyQFSOAE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.255.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:11c0:1c:311::5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snowfall" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gjqoHid/NmUFVFUiztwvUpzk3D8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PsSQAtb1bDI++nj0VLAdEERIDRshIkfZbQThzvXWZo4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:21:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.160.102.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:132:300c:c01d::4]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "meehIrmTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gjfPw1ZM2voKSwz8WyLoTVs3WGs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IZnF/CE0EIQD7TzhWai0TwdB9LtAxSnbAflaUqWWTX4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:58:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.181.230.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "giXFSIKWQ5T4UT45f+r2uAd3wRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EjnbOFFY40Rly9NkoL2w5ntq7xsLQ59WM8WG8V+KSts" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.26.192.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Toray" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ghf3agQYbRHgQBgC82bZ0VBNCLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xDYXRjFrxXw89+9P6OMKBz2iV1BPMKCt5Z0C410QNN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:56:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.224.67.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:181f:0:4063:99b9:9381:14de:a4c1]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute17" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ge37yPb1x88K3V+OCLyPq6BAicY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hbA0DV01HkjmN7G6qaw3XNyce01dMbW8B69DaBAksd0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GrimQuark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "geBMyhM1FfpXT6mMCEmjkox69pw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g/iCMRj7uHOH7hNGE9z/zoLF1HKEwlOX7soDKqqkBfk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:53:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55990 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 56033 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idideditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gd6qjEY3xEXoinNJlLp0QQLJAGc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LeeA/i4pmze8Y5LhkFUTFzwB9nRJfuNqzoppllJWtxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:36:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.100.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JebacPiS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gd3Za1hV8odHeijNr+wLDPMeAxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3y705AXABL1Qj8JFeAcLw4r7RUWqZZy9rlf6l2O2ibE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:59:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.112.42.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "risk7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gd1T8DhMLpWbg1cJPxuF7dVB6EQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fg6EpSVYtDuorCIdNlZWYkT8hAKYpEvTe6cdE2n1Ew4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:55:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.179.99.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Linstal3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gcuxJgFAZFRQ2PWZyKm90on/hTA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wAPosk/jFMbstPawOG+p5X1BIQkGGW0q0jjQkWQ3G+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.148.21.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "InMemoryOfJohnKerr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gcVdQDqCv258P729QdECtwiJANk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n/ZgCd4Czf/X6PyZN6cZ3qzQkw9yuuA/XwbZSEa6X78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:12:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.255.84.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:16::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gbiUOeNO4QpPlMLBcjX5zmfENFA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3/12LQodkNhnmANONdFvFnX3F9zhAkOhufxCHcrmamw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:24:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.195.196.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fec3:0:1::69]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ClankC" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gbgiLBB8wKq1dbg7+Y0kktsfYJ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U290YKPLp74wBahwiaUIADKStyoqWy4mlPrM+7jHXG8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.34.132.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv104" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gbddU0+Rv7fFerZ9oQvO9iJYKug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5fwzSA2oTCx+qj9J8S2Ldb2E5j7VDT4/ZiSXn2yjZYg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:37:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:16]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bartor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gbdWq8++jUcZwGEPjiTTTcMJBbs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cgwikggBPyRFjP8lRm8Z174ALIoJXbJcA8kRky8SYx0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:11:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.61.80.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:1210:7262:df00:9818:fed2:2a90:f143]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blastoise" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ga4jDU4pFcxWLA0gLRmz8POFFEo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nEtKedbvZNsVcr9YqW/YXMRIc733toSRbaAU3Gmcocs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:31:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.111.189.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chutney" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gaWXZicolNJ/6DdcT4OmukU2ce8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ci38rayd5ACPYwZs7mOX4kHTw4OEEp8wXx/UiA8kmBc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:41:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.190.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "evudalhessempos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gaHXd8Aj67He6ef6hzVim6j3SXw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "00utG+CwISjNXO0iVCI9mT3NM/vkjPGJCfqN48Fk5QI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.69.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gZ1bwxFy3C11SIsarGYBPrFeRZs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PTvrD3btfzPG28eXhbiUvpm1M951Be5hUhZmsc0wpLQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.158.42.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Helios1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gY6IUIrJmPGBjqBMypA0xaYodrU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VWm7RPW31X5xv/d4hnOfpL+escZF8RhI2R1OsYyIsUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:26:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.108.106.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6513 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gYhIEHoRPTRCw3rRPyIOhXs5FKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qwRbB/GlpKdFzlKnLLhPbUhNE+1mAtPV4bfPgMNIV78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:18:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.31.13.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Txakoli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gYdXSbQEvvmoDPufmO2uHZMu0zQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VPyA1ToGfpNddEeBe3xt9zQfSVX1Gj6EA5erGc0H+kg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:39:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.130.170.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "decorationWorld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gYcIicIqkpuXILWLMmoRxrFjDAg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8HB8L+LddKm6HV4yhf5nXrlfU6oz6dI3o4XQsXdvhd8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.6.6.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gWufnDg9Dqffk5BA1Nn/VjUQ9/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6P79ekw4F9YPl0iSXagmzy5T/Tqho0VMx5tN8LnTjAU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::204]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thealbum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gVrpJHVfHmOYbkNKkqiOofdaYKM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PJqR80MkQXzUwuAAjnH+qE3kheAjKdvjPvzS2mXeAzI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.128.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who8USicebeer42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gUXMP2dPLlOPP+ZBmPx7t/vZS1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PmPJS8zzv7LWV0v8kqk0HaerMRP0vFkoMyB98MdLO4E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:53:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.197.160.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8272 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1181" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gTLdLvptBIy50FDHhFP1yNjMr2U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u/XGcv8FPdMjbYITrMpseRuuqptImoSmTcz2BL3WIxE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11181 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::181]:11181" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "capeaturtraffic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gS+JpK0FlGR9fhpYpQhwUE48TEg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XoSqfSZ5PxMqY+GbGPIrA2MqV/090dvz4MZVn+cTse4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.47.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c01::f03c:91ff:fe3e:4be9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "speedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gSzQh/NZTXcdkbO/rEfs+ccsIvE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iteEawFa6/wJJiuvbISsvoYH/bDX5UnVlzR1UUtj3ag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.211.91.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "R8B7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gQbT1D+9ktXY7rw+UDGyaPzdxCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r1v2Zo0C7TGRTzEwihE74Gkz7bJ/vYOo0NjDOXvROeM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.126.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:5000::4c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididnteditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gPWXonFUOL3Zhub3rIZG7qTkkvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IzggeSykQTllmhIomQXi6foURmRfmk1j4IrNmmWjgsQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:49:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.35.200.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gPMi7QmV8nzSa1qd57gE+S6KypQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FiBO0Y85GFLMxGhO6n+8DV6x0O/u4wMpfNJhxDkXm6s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:54:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.225.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:19a::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deadbabecafe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gOI/JNW+AZXSgnVX0mDRZ23qVFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fx139YWw5RE5MmRCnvn+SbxQ72WXmOMqHB7mKGcR3bk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:08:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.82.47.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1:908::9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CounterIntelligence" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gN5Bv+uNCtE4wURqYYVnPUby1BU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RBlby3uLiWyD7eJWMYknYIGraS2fgzwAAH13yUw4u98" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.73.115.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Oxygen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gMXWf+E+Ol7b9N1C44Frdj1dQ0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ez4aosLfY98U/sICK/drE0S2WfWGQLpxxzzY6lmLeBg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.129.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:13b:3ad0:1::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pad1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gLY3XFXdrz0yzYwgMajEbRwpLhs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0HQduJhPFZvb/yag46pHY6syscB7sRA2K0fdVNk0AUw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:27:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.161.79.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4ff:f0:a55a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "basicincomenow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gK76eRE4JjNnNKzPq3XxmCA7HLI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KuRXW9EtGM6MnHZBqZmn2DhsAXQceNNszcVGppgHuAA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.89.236.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:400:d0::17e8:7001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "robzombie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gKxdKgIG2WfANO70emw1iGNCyWo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YRrJqpXXDLSDcpzEtErE71fP7wMpDaDRwBcRwWYD31c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:06:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.73.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mdfnet2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gKr41ZVqQ8GXEEzvJVDNQtFlxvs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SMyjTTD9TwEG+63/poLFauJeDcwtpENKL+5Xj9RL2MI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.11.114.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:6b0:30:1000::100]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay02V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gKDfV9hRC4k6EVAIauCa3LPsHRo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YDIhcLpNoWJsNrFHJaqimdL822wQy0Gz+LOzs3UQb8o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.99.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:616::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gJz+qkEqzSuAdQIJk5dF8CM0u1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "booOaJB4nMcEogqrcGcnK3/4uwKXIeIW5CahU3X9+FI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:37:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.121.219.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=99000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gJUPE7e/PYkmfbAghTFbPANX8Ag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+wmGB+mZtMG9rS22ulSUwTx8IqHCIPgAgoHPr66TsOY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.239.1.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 36122 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:700:5bd::]:36122" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gH+/JzucQcfRbx/ohkbvvGYOOLg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q4YDn1cYqx9RRLCGMyII8pfsJFF+pOo11/yirpEvqUg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.199.137.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a11:3b80::225:90ff:fef3:c4e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "localPenpal1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gHwfDWpykmjB+OKscsjq4tnZOW8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fyFnsf/0rbIPqAhazQQTx9S6n3opxwL80/nMm6ugoh0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.112.156.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6247 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=850" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gG8aK8ER1ijul2GdvqACUUuGCqU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Az9R2RgoRP5O1DncCA9GxVQePQ8q2bfgsEyrk1vXu0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.191.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1828:382::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rohtidanoshis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gFYIDugitcoaj/9StyQqgsXkL7s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Prwy+ynjn8HzbHDxoECCXY/yJHOhJv/ldtycZrE6e/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.246.128.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MidManMoved" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gFT9K6RFTh2iTQMkzZkYQ12lk08" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NBkcOQPGiaP8RhBmVwAotQcDCtHMtGi0afZwy2RJXjU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.38.148.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gE8q0/+uiPUOWpw5BXrcM21w9s8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VHp20Fb6SIIfgJyAxMlQClqKlRlsQLHsjndcs5xL8Hk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:55:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.212.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1214 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:24a::1]:1214" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Damnation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gD+5i6D+FwnAh+kTjMYJbyIIPKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HMhft5/en8hnKbEDzBEXlqFVxSEH1TJwpeA6NtKnkss" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:42:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "123.255.62.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Andreios4Democracy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gCgIEuRciX8OBkc65vOgSH6yuts" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QEAYDfwLDOS4VUMLo9S/zeR6CSrjqKZn2hGWKIkSHTc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.109.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:2664:b831:94ff:fee9:5650]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MikeDiaIsGone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gCKKtcvQrH6RHmlbzu2GBFKP680" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X6+xZooE3YdM4mBBrM8Bk2ZHHr8B3q/yVhg7WbE4+PI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:14:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.147.218.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2003:a:b5a:6100:11:32ff:fe2b:36b4]:8001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "montrose" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gB74CEWEjmhcRTSiQI0y1UQxh98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5WgU8VE4CI/mcSzliwZc+H/hciD1mD9LjN9as7bt1Bc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.119.249.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ARCANEMINDED4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "gBGEdaCvKjsAGMxsAUeIK3jpEoo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KMD0cegkMgpszV4T0tVvnyPT6Ad4vjdpnLlBei2VG10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.61.59.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leysen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f/UyggyGQoADH0EKhf/kA/XwuFc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RELkTLCloI+O5jfWnVuDErMW/8rAtxgiNEAb6gnogAk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:49:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.125.166.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "G00dT0Kn0w" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f/Ci8EszxNIzcj6unGiAp2YKYXs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yLYD4tXxwhtG5yds7Amr9IXa4G5lKCrsdf/DPYckplY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:27:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.117.101.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=70" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE59" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f+iKHHQBPVQCPMQqAle37exnH1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cLvpvJBnSLxa8Ila9KBdSYDexbIO6F0feCJPRd76l4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:21:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "170.231.236.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nobo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f8aFM4WsEM1MdL/O0ltsMPRAo8M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BlFLDxi56FsV5q0Wzav3ui+ovBljor7y6vM0o6KWozE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.236.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f6jn5E8TkqTkD/w7ads7AAkbf9M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2z+uQ0sMRvgJsdsHEEj8CQZT3hOSA9bDM0Mu5+G4D7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::110]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f6I64Ca5HFWJFqvC2pZRycIXEf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jhj8u7x4XN/I8kKo7T+5pIafbJK4mXMG7P+jWbxWdss" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::77]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BienwaldKA05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f4RFGDacGlcvMhH0DRbwTXbxKHg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lkTTB0gBTzqv/lrczzOwND1hkkI3urHsaIJ1cCeYHxI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:57:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.56.98.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "afooagain" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f4JEmrvmZ0oHkBtwMwlLIxHid98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sTqkP/sBIeIAYRevEhejPDd0bzvkfuEOoB2ATocjlMI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.118.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:6bbf::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kinor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f31KNLL78/d1cCLm+Hzrp2dNHrQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s5u3/spmxQs8lRezEE7Ez5ptaeBljrhpnhnWNsa8W0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:07:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.60.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:a:71:dead:beef:0:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hmmmmmmm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f3RdIS/SgXVrElSzuEouil/YmpQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "18nY6QHXX4o3C0pmDSLSw++H5aQrKBx0IR75vTk7jsA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:35:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.179.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Khopesh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f0tjeR88O2nfjqcXSu4IdSAFKvo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yWePi9lpVWsbg3lV+wm/F8W6K1c1QJ9pqv6+xpk+7tI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.99.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:104:19c9::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer85" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "f0ci4zLQD0TlFb/VobGg9MaEi/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vIA4i80sWIcfq07kI4rl7laeMfVIUj8O9Yg3h19qUFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:23:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8185 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sveahosting" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fz5ZpOoFbz3wCVaNDP+A+FD16ac" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cpWniyi+3Llotiz9sbHilriYW7zJBor7N/VZljk8x0M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:23:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.239.232.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PolishTatraSheepdog" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fz0g5yok7S69kqqcQwuAW6OJ0Cs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "23DhoOYDkmj8SaMnE2WCYclHnBGoZYXC5vsQZofnTIg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.6.70.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2430:3:2500::321e:67c4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OceanGhost" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fzAvCqzHaDV2ivBohJygfRzDjF4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RKqLv2dMquAfLPBuk+vumhoZDYngJMchMI7luh7Tfsk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:24:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.127.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fyfj4sXarCHJDwg9lb1xeN1LBB4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DIXPGD7cz93HtTXaHPPBlZeWaoC7xY7wg0Sa/tkhye0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::b]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "P43ALVTOR01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fxZ6FYSoaAmkYMf8IN+Qlym+C5s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y05GbiiLg+UZRxenMU1my9i7n+V732fWPo5rB/PhbzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:27:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "119.18.35.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2403:580a:935a:100:250:56ff:febb:35eb]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kalibrator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fxXdIX43Pl7o+LwXFxyXf/1vxQc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Lz/TgN7na/7E3OCR3zaO8FNhgyYRmSiWhvPp1olOm6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:12:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.246.159.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:230:4:ce::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fxVeSZyq3wpqEYFbifjW5/nPyyU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P/9fMEyEBGKaPGDIck1yfSez2/RVk5h9TZwpaJ0CFSs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.227.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "captain" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fwTgica+2D4E+yrhlr3jS4CAlPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "miJBN6oVjCJGMI8hFCBlZgqwWJ3+ERwgZoEvSOvAU/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.11.201.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oniondaoftw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fv1GyNhykC0K5LHGSP4xhzcwV2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RM3d00gX8yTHG/7nYNJ20lf3HsnGZ/vJs9Hf9EVExTw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.98.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:103:5acd::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MaiaAlston" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fvbpmFZCEfuGiB/qJieqkRm9mEI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ylUjNslWITK6WC3+CJxhv0zBQPC2PIoIFsnVVjCJNCU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:47:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.13.195.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=970" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LemmiNode01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fvBDtPSrpiwvO/XiAXxOxgfoCyE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lpX71cvQJgTWtmVtTFpUi5aQij9bF7CSiwwgEm6NS54" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:43:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.183.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BEEzar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fu3VTlRX2gCeRskbvx9EPc7gGWg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0V2tCD1sCQsFSesbUis5aIGibFPNe9wTcN1vrp73J4I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:49:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.159.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:32e6::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notglowing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fuB/JTOatFPl+awcchuz9PaHDbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dfYVcS238Af7YXDin+zItTeqjOUeLYocBgemqvU0xIk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.105.205.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "water" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ft1zGhuz4ppJSEaWHfmM8ZxFk3c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "75/gE5xwUTlRZNYgk9APlHnP4OTPtut6gwRVyjS5J3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:37:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.182.218.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:bc0:3::2:7838]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorBerryPi01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fsohXVsGEdWmEx92Fse2AAN4G3g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NSaheTbYpu1zxxzRPIytQgTNhUGawZzluyhRVBu2JB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.198.213.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fsoUuhlOmDgTb6raXrjVAjwAshA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JTB9dKYt8tvpZ4NDalSff7T8kEZ86fM8KRUrUojY8wA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:07:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::62]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hacktheplanet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fscrLXbdciySLBLZOUvT/iixtK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "43PL5oyPYKPbtgIu8LHdqse1rcJLVBHY9akP6akHMo4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:35:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.126.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schildkroete" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fsTDENH7KnwJQ7gQlG6jVNZKIWU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0zOLd9tMuHiKXu4XBuMxH7kmWfR7Ca7fTGH4Ez9EisE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:46:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::65]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "falared" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "frkf22jq06E4CNk1bagmBXcyFfU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jADqA1ysXcYnkI0klVtHO+0lSbZHr0KckbuwcrpZuyc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:51:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.81.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dizum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fqbq1v2DCDxTj0QDi7+gd1h911U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zs8smQzwtFHyVnTHB1SL2yU1Fc0Drqn0bV+CNJ2o0a8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:06:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.66.33.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rexum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fp6TVbryQ5VIfQ1qhNdd+jYdKvc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J9gq2Eg6Om0pWE7DKrBAZ1A2JXN87lWXZ5vn21r55m4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:21:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.114.62.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:e8c0:2:84::1]:3443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "minotorus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fovEOuderhbX7EZ29KXDVfRUuAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+xkUjqNZ1sEx5DgMw9J/b0rwPq8qoCkc0LuV7fYy2Ok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:52:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.194.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Carrie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "foWXuznUx+3Eq/dTi2UxZVotozQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E6F7igQHlCnWuFZFt0cN+7sZnlT4n5tazvAFRgSusZk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.188.107.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SoftPower" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fnhpgpvyAHi+ALzqO0KXH1vY1YU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZoI7rhoY/A3TQY1CBMpRLwQ5+YAvFjQ91PQiusfBnFQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:58:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.63.229.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4031 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2002:ce3f:e590:1:1::15]:4031" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex48" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fm6ab9243HyS8M/MPL52wp8GF5k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "maJU0DXFKjJh7lZZr5k9406l1FyJUCVFAlgCxnrVdXU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:24:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e647]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=930" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jl2238" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fmy3KXeKWjvzMzP8JwYU6nmJW8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZP9O/bAkHAauivN9c4WzyqhXP29GJqOwdteLK7J0DP8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:08:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.200.204.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayForPeople" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fmxEZQzZTaNpa/yQ9V5zaFX1YyU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W4JIzsJAFws1tSE4TsvOS0jhNIUXvMVDMMjXd6RZS70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:33:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.114.200.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schnittlauch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "flsQxq1jdmfDQZGV+/eOqAnbyKI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xPxY6NmT4oKRP3wVQBJUWLp57Tc541iF29+lGWG00Z0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:57:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::4]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ARCNetWork" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fkfSjwdEO1f4Ji4UEpNrPiWGlKM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9NOTtxjwNKN41oCs/q3B5D2fQ3eGmkalrrCUyWpfi3k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.241.137.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ff16:6:0:1:18e:0:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "adamhardwinds" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fjXORL42wU+99TyikvVfjmjCfl8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OixzLE9vzKYueh8FeyMgujtXj4JquTdB//2T2nU/fEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:19:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.140.250.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra54" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fjIwuCdQR/dzfgMxTYb+vE9XeLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LwikQm8/2tn6HiTZWuPloOdzNhN8eVlRhSBJz3a8WBc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.126.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "15T01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fjF8+kTntgE95Lxfg3w3ancXnHI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1cELgGwO2lVz5wSYCEU/8sx9M1LktM7B/xTHEZANqsw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.60.37.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:33:1c8::13]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thoughts" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fh5ygRB68DtMLIdEx/gvKSQxExY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NB9F0/HUfNhvfFSAgZytxRJnbkV5iC9+fnybsLjJjzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:36:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.211.48.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Renegade" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fgK3VlU1oYCESMzcrfJJHFivczs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4Cvtr9ii2cVJzyoFxT9kmkbIz5Gsn3kHc+0nqRwWRSc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:14:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.66.55.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:cb14:596:7100:beee:7bff:fe8d:b263]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=94000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow008" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fgBqRqIizkL4S0oXVpiztZOns7c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EqYk2axCnjefaEOMmOO9KPJmilk3nLpgEhN0x9zZ44U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:08:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra61" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ff3wMU+c9GH1N8MGnoIPmfxa8FU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZgJBRtgmLy9+uwzG3nD2YX2w3pIrmsu15KrDiMIFWM0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.136.0.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IAmMrNimbus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ffxRKozYqG8y7cF/vz0Ded5Bk7E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w9FVRGsee0WmgOaWmWOZIiRf0McVGvERFT8BaYMxxtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:00:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.32.108.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gunvald" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fe4PjxnUw79kbIBBvFvnqQhd/PQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DhisOrLSIMnKjktzP4Oo5wKhnjVoO/+LanaDHygos/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:54:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.175.56.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kronos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "feHlIZ/+8XzSXBWoVxQQ/eAO+Lo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J0crFwmecmOXTJoyyFptHXg7KVPa1pRBMZaZbcaISSQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "73.55.222.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fc6MnGWwLBKPTQjcnRlbDXIAxHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jRAF+oTa6c3TLXCq1VC9X1VrceJnb9wP+ivdaT4zOME" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.41.134.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange006us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "faNGC3wcE9yrO0nt1sN2yoVis8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T9NlK4yrX9RgGAsnhI2HOtBh9kBkZcKjr0SoUxbInRo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:40:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.244.238.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:a140:2050:8019::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cybr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "faMdeeUtEmhbvoVE48VX8Xaw/IQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/I7ZBfShLw1KG3A52HTIpn2ojmLMosVt9DIUa63kaCE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:40:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.193.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:8:3c1::9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Posertord" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fYsFwA2oBDH3yw4eQKr5+hVVv80" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HVTm+Byonetv4W8tntM5bh+3JDbNJdAiwqyrxETz8OU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.126.50.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nicecupotea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fYODvaEGTlIXyyfo3p7QgSsJl8s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d1hCdog6fGMdPndfJp6A51wxHrJANzjmxs/UUwzHjb0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.25.116.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:805:3::1754:9efd]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fVX4ea3h56xJvNQNf2gpMwgjPxg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N092dhS095EQusMY30Dpyn2/CdOXpyAZCX5xWUcyJeY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.140.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TLPde1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fVSnyL8fHuI2cUCoh0HHxj5vOls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6xyI5FiZwhTbkV1XEUzklBNNgDSxAlNBJDaEFxQC4rw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:35:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.99.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:162:31a1::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE65" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fUnxAofz6UYzQ4QIOYOukEJsd2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zAOuD2sVoSkiyKjYOS5qXlikABT/ip9a0sZDzhytM6k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:58:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:106]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Michelangelo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fTP8LQR0k8alFPWkwdcPylTqVd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MJXGXuTtm5Euh7AZIPUWiNUhomtWatXKAKEwjOW9NKU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "200.122.181.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "21b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fTHVEY1Hv4bFUKu3nt3oZewxtn8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3K5aiA7amsoG2yg205jetD08k7muEt3VHw+RQwnvlQQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:38:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.74.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fR12GTSp1h16GkPXsHhlqky5x/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O1AzHp9Efo1SgS4MAQfZukSOp5qrx4AB71vbtbVGPkQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.141.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c206:3006:3934::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SergalBig2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fRHwopCxuT/ns+K9dKlzUvDqMSM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "anRfuSIBFzxtZdsIdmRssI9gTcajjrQWQjNLOke9qOU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:50:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.215.87.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "none" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fQa/LEYN+v8hgWd1WMO8ZEoTmZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bLg7TU7HvwnK3DUE2Rse/7srZEKwS85PK9ThnB8l2jM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:37:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.21.35.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:c001:6801:841d:34be:e33a:cf15]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrnado0339" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fOlUztuYJ8NHgqPxcu4B29xoOsg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cWLz9UymSGN+o4Kz9EG4czCHiqssFiIewRFAV/2al9E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:19:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.79.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8902::f03c:91ff:feb1:d06b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fNFgwxy66pXsfqyFRrAbyrXFwOw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "trlb5vKnhl039qTeBjBsvqmHcrJ8pyw8oFXwoUy2wlE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:22:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.41.134.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0135" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fMaGKJdS/aAm6LIiRu3gl50bewQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3hHxUyuHvnNz6O4yLRwDVNnbHB7/0l95iJK3HH6Hgi4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10135 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::135]:10135" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "taomeba" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fL1nGP+YnuYTdEjJ/xpoUzrbHLU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J8h0PgMLo9gQTO7kaMkFMLgNo3Be4YysWcLmJn/qGrs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:08:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.53.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Rigel2IT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fLwdR1TvOmLBXLSMCAKcmQCeLs8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k56lIT4KPniGW1AQFj4AsKxCv5mbaLVaVXQkYBQ5uwU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:51:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.183.98.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:dcc0:dead:b2e0::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Brubaker9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fKK9imEd15mqpOpVWKvv0w/b2c8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NiJg3PXgwUEHqBbTK5RbB4RwfteKBisky3J4tsTx0E4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:15:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.209.23.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=610" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fJttUcLhKfZKfSpvopplDEuUgS8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kd+TXtXV+G8eXeRxw4m04TuIJ0zDnMzsOTceOAOAPAw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:09:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.235.15.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OptimusPrime" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fJUFiqbnhGG4pr044qnu07pNTYo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h/tLPNdga29+8JhgnXT+AMTl9rG+5BPws3j6Qd98vFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.122.194.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=720" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "singaporemickey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fJSz9VE3sCbokD1hLiNOrVkqFP8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qNZX6bEDmK069ulc052f5yPne017rddKPF8vswhyyU4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.11.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fI7uL8nuhTNiK+7KQZ27/qMTAP0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uyxEeHuEXtW8nXV+qaqx8ywvV9u9TKb5PCUaxlTcQYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::c]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toomanynodesDE01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fIbHPbF84gzSZTfJ4+wP16VeXG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X7XK3BI9kT6roCsgYXo5ODmZKv+HXQGWFb6Y8Qv+r+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:26:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.143.181.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 2015 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:2021:2617:2000::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hopfenspace0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fIDm6RrxLaJ8FfbqCZ5zSZ1hPBg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zG9capzCXPe/2SeRH401Imr/773yWDAElLd0jAuha0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.136.29.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 31337 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BibbidiBobbidiBoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fHMNVL9EZ3nNeZbrK67BTmG1EZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jn53n+GpwST3bwBLRJHqx58sh0gjFfMXTyWX5xcHqYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.24.108.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fG4mCIoJe/5FZUAgxSoqVUrR/BI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VGMZcaB6/svFhPt9uB1dyUqE2MHBOm4dN8AAoqu2QHA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fFa6IXWDlHCsqrcuBF3WggdktzM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LDyINcXpgBe7hG6iff6hG1qCzm7PA+6ueAWifAs8irU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::196]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ArchHolo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fDczdbaTlWSmZxC+9BRKJuibFI8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qk1HZ7pq4y8njTXwdKfbKYlSktqXBNNd5cYvv24Zieo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:15:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.3.104.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0156" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fDS7lGJN0RlMrQCDrLklGuvjv4w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cVtlVh708aRpXskfksUJIeofO7CkGo7zRLmv36XwQtU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10156 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::156]:10156" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unitytwo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fDOqLsEOalsEw3z++muIP/4WVqA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TbU63oyPccAvcG0Jr1EoacnO23eqUjiO7YX4AoGqqSY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:49:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.141.196.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:7401:8b15:5400:4ff:fe14:a2d7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fC/JgCXYrmlwyAL9CqsUxADuqlI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KsmBZ9bqofPrp7aEw7bdE5xVh0TtsisB5mgD1+Ujie4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::196]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leenuts" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fCsaH7Ul0y7uUJPI6QrpFufuyrA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gTm3G9MLYECLYX/k1uYQBgQRYJHuMtYTVLSPl3S3M58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:34:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.17.178.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZKP1984" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fCLomrYg533xtKM3h6XsPyq0qNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IK8SOeJ7gR5HRyVUdsoWtm7f/JZv0Owpy1sv//oUk4Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:55:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.2.145.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GrannyWeatherwax" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fB7hHS3Y4kyR3RYSJHHF5cTUEBI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jgn6zVqCEv8buAGYXNElwkyFPpRrA+Ch03kPFjKoGo0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:38:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.214.6.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fBoVF8J6DGgynYTZQ3LgrKk5CwA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bd9y+ZvsE84ljxfdlUTnr/Bs8O8fzgq4fJxI7UlRlec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::200]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ibibUNC0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "fAqk47c+QH6fX+sZEvi+JtiqEk0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gU0QZ5u3+nnEPmL/l49bsVpLewLC99sU8fWa+M9fxfk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:24:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.85.191.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e/3KjVhBWRt3Eh2sXRGqIypKgtc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FHTFQQKJcvIH+fk8wA8FlGS/SB94PDH+gJmIl7K2ykE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:41:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.56.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dannenberg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e+aD5l1IFBMhxe2S8HXFU2SscSM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W3T9DfpQd6O/DENRJ4iwW4qYpDOmzXYqLV8A2zwxp8k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:38:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.23.244.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:558:1000::244]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e9QWZSAQt8QiAr5A90mkFwA+zSw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yJiRvXRNbtK1u3b2iRSXuqaDx/OIJlRDqAzsC6ueqoE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.49.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d042:5440:88ff:fedd:4ae5]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aXXXa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e5ufM2VMe1TvV4U/it3IYVVCbrs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OOcm3sBulh1brDdz/nR3rDADt1ECC8DBSU/DgNcJxDM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:10:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.2.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:24c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra34" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e5cv34QCasUuQUYfBd2746B1mK8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o4z6jhWJnsO3txhk6p6pfKR8XmYNz3D5alzKqdsTz9E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:42:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e5YI07ZcEAYchUaDndh4ra2RqD0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DDD6di609anItQyoxF0fr+MV1REr1+RlGSCehDMgeWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:07:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.157.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aisaka69" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e3sWtuCVE6RgBUz9CL8L25nEKW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TQ9QYZbtpIy4PKoKZoo/vs0bL6MthfRVZgPxTiSyvXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:34:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.121.76.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MangoChutney" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e3evilYfcEnTJPgi4U2A+1LmUa4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IIe4Ujfz2OHwbSQW56NgG7V2AcuJajF+YH2UczuAwUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.92.109.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk11c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e3AMDCB+vQAC4A9Jm+JlUZrDwlo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TSAPbSXwZwbskuSBBT4eK5mbr0SH8WLtbRtHWK84IJ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.75.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:1329::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SoftKitty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e2sqqeMZoYg3dKQY5vUeZB5LQ0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DuSRTK3WxaL6MmQwwGKJ+lbnmWiI5jMMHtXg7CIlW10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:55:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.58.89.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stubbornoxen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e2ejrSOVU2/RXLl1iKC8GgFawmc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yxia1b+njb54FHbs1c/zb+ziuMzJB5Ih9gQZfXSd2+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:59:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.124.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "allahuakbar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e2doXmSCfHN3UOFPLo/V9EQv9Ho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0QGeataHL9uLgR4k3ILsEyMpxDenu0dtCOa4jMb7JV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.174.87.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myBigBadRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e1tUEoeIvxVevT1YL3r9ZeFiRXQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bczVe1B+SFIxPNTbwc84h+rm/h4V0Xqob9reKyCvc4s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.58.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iscariote" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e1PaKIEyWKIDNcjomFwF0NCJtEE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vIpOqCBcI8wCQjRvQvz3djStgAQIhQVLRTRE+rbrEug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:37:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.142.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47a0:1237::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.3-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e1HFk1X8nA/Jox6JwQldY/udNLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "00ZOTAuZVOjhaXlCzJp/oko4yJv8UkmCqzUhQbIzTW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:11:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::49]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "galtlandeu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e0byBEnW8lFQ4YlCi2Lh47pYSKk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iFF4JNcnoWiiktQSxityaAlk60gfK7ReQGJVrs79Yns" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:14:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.10.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6a:4642::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "e0W/aTyIIPsevdYXEQuWcvhSpgw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xDlqf9lTPeTd62ijhD8jNEtOQNDMriTPPm9EQs2DUn4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.85.153.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freeBogatov" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ezXbkrpyugu/1Rs1sRpJZ3V+Z7Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UvAYp8+0uYLb2TS5wjExpiE/iIUY3rtWFbgsb/DBIqI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:41:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.31.0.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra69" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ezU1dgmHRkyLVobyA7br52fAhz4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fueroa+yLDA2+Ws/xFvtgxIg8qj4OzP4tAb6TGtc/kY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.95.18.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torified" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eyiXHUopmVeE4wZrnYfkLpxoXzo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T+lK7dQbs7vKe7soMt3I/eJvFhffPbKHHN6KPEYLMwI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:30:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.127.96.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eyT6ZzR76uxpI9iE6s8cEjGA3jI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SOgFSIGxjyufPt7kzp+HHcpaSEwmUPJsgUAqbwjVFyk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:46:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.192.246.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "godtfred" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "exkEY+czzCkqpAENGU0XmM2OuaA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QKTuOPv0/rIqSkaN6+49MNV1DXybA3oZmOgPxZnsAVQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:39:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.131.72.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:800:10::231b:c001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PSILOBYTE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "exXvjTxWzJDqk9Ks5SG+93/vllU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jJgFQKsPAx8nZ50laIOAN4oj6KQQ/6h3OfbSgGXfUQ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:58:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.234.196.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ichundes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "exS0IJx1wLjDX1P/ysrhc7f8Cyk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2sS5OoTrDr1IaKHUlCrC5PZH9NaNdJG7ei0fg6zshrQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:25:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "180.183.159.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:ec1b::40]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber31" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ewrifGQMFSY944gua3O/fa0sKdM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SmlrQUbyKYRjG1fvt0cBSsSlROcUMn9+w0fpNl89awc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:21:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::16]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "halfsister" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ewdoTHAdQ8gDm94CbbpcHqFBg2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DzKVREo/oBzDXZ8/YAPnIX0DJVUuOHMWthuRZQtmx0o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:34:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.4.231.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex82" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ewRs6lAJL5qy9xLYT1Lo+gDYOHc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vIJompffF1LyYvPSDF/ATImeVXYJ8zicITHwxIRyExE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:25:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::171]:82" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torly4relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ev5zQmPJR63YjQlMbjy3GjQGJyQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vnTgf8r/Je5lP2duypQuvRMcmMSCFF/Y879uQSHPjlc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:02:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.113.211.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vogerlsalat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "evwVcmkTC882vMrA8tqgaF5w1A0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yLuS0roaHC0RJM4JrCkehYwqidjHG7RmMmHrtXompEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:52:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::2]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "evD8H1LyiHTt+Y+2BXhfs8XzJT4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ilnhu+zIgxz1NG4szN3ViPjZKLpgPZ40HLUv0tuw9qk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.79.109.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MerryEgg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "et6j+czObje0GKLFy+xXHuLhAVQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cNyC7TRj8q6tXV/gkzcVcmy0Xl8aCBfOt0WIMNbHW88" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:08:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.238.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "silverflow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "etz0U8sOpFrZ/LfeLSsosH29g18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IYVjN+76KZwDTZnSfoCsj2WiKD0g7LgDcxnKi7dhDVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:51:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.118.74.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "daTORrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "es5xUMMcJ3w/Zc7d/4UTt14h/wk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7QJKVZ/vX26q5ZOTdquo1QFRFDKBpPqcDps/Qqi7kHw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:14:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.114.106.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9009 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torex" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "essqhVoOXtr2gJeuJ3ETuO2poLs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ofK5btE59mETcwWTIpFFBiWIcc9KaHPJKDlbJTdsJ2s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.221.238.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ThepoggersrelayV3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "esfylyPAV2a0u+LHhicE5uPxdWA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s/LqUbjrJrYqeaIsG10UOkXJH1ZFnGELiD4XFXF0UEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:41:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.87.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "esGwupacHJzsoYw+YAk3gWj6FWM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XfEEFu4POPgB8whinliwlQ8dp6G1OSHElc2U7KBCgYU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:34:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "153.121.44.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "er7R9mZNEVPxQCg407Mq9vLKvhc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F8+ZXY5qDhVpRqlzL7yO4ZsafOC2/3xER37odwbf4pw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10039 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::39]:10039" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PrivRelayDE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "er7RukLQiRQMHwDwL4pX3gzaWp8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ph/k/Msxt43tiV75ykvx1dCPDLkC451/4LbRK0a/j7w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.20.145.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:367:c1f2::254]:22" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CGretski" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "erp3aklsex0MQPJaylny6mDD1Ck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tyABAmQg7rTYJAbBmIcJ+AI6OIFIXTqyXoXhWhaAMy8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:20:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.68.49.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 21 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8010:677e:f9d0:215:5dff:fe01:210c]:21" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "openredirect" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eq7h/YCiTDd/5ip6FrXYBC2gCc8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1v/Ht9VGz7PLC7h9JClIhOzNdFKy1l8heUi6lNyNXNA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:11:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.254.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 587 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eichhoernchen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eqf8gOPg0y6SnSzAlOrPUpyVJkw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JQ8m7HXo9ChJu3x5Erk2SzjGEzSdj6pKvf9Me6ujY88" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::65]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TulipBarooExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eqAXuiiX7J67W18IhjJUNj4VrXc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ilTjU7nU1yI5g9XaacSsIStr3Bxlzr9e5z5bF6a34xY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:55:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.192.1.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "w3ctag" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "enZJbCV5QcfQdplSXTX5bYaOkvE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2JUeCum5tVUi79q1GLngGrIrzUoAS1m31pKs2ChiP+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:56:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.95.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ProtectHumanRights" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "em+V2TTQG1UVJDULPOruNrdpdAo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l/KvsLhbY+I11y5nwPJRD3jKp7Aa8drlIqfRyaY2uLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.206.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PolishNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "el+Zqh6Im1Vez7WvB0DO8Rj/Z1Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eQMeBq4f7XMnfdFMX6bxx4E1h1buVvgYKAJiou7YQWk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.242.128.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9099 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jesus4you" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "elnSWOR8kcoznB31AefxF1Ye4sc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uudtB58OE9GY8mHnwS+/13pbDojLKXV5Ua2B8RQSBug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:53:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.252.23.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "assassin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "elY/LfQLDpqzauV+/5kyP4A/JCg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VmLpIFy+Zg14didB3mRjriRMl90iBjQW6dwM98Gy5wM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.183.170.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tekk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ek3rs5ELi8iwbE9MQYkF2BFbcUs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Apohu43wCmVW29n3JhxSIlZ2QoqxVC7zTX/FYyZJrr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.123.12.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ej5TTAM+ODa9WvIjtkKFPFAqszo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wPsk9efEGQq8pqscQ2/h9fEa/II9Ek+FFIAZMyfr99c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:36:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.39.69.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex39" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ej3SgOpM1N0W74xnuT2b3hhNGoE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NfFx0FmeT+UyRz+sWq4t0T8LwP493wI7B1+v5hM8kHU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:04:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e658]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BahnhufPowah2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ejGcQx84yzCgvAxJFENpphGSByU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t0b/vLPlUZ831+X2ri3/ub0HxfotqZeg+6/kskb8m8M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.128.173.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "straDEicebeer07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ei8jOX9LNgZSITNg6lxZdlkR9vU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AEJxSlebGJQr0yq9AikmRTcgY8PPiec5A8EQDxrGX0o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:13:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.185.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2092 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zensursula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ei1E52k01wnL8OCuj+sTK2G2810" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LcQhF8kWwiQ91F3mygxpuQj652PKNh+sE2XWSNHGCPU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:46:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.6.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:35b::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LoedgreemYS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eiaew3RGlbt15Z9ymSK1kJvKjH8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CFovDbTkmgIEmzDuiFyFut5Dm77ECm8ZX9dCt+GsBEE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.126.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ongoboo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eiW4r1aSzrcyP4uanZe59p6mmm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QIM/c+q5Ez90Utc2z6XK0/GPl36M0p0zQVRn0OyU1CQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:48:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.255.96.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jambalaya" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eglR8kbW56gZ5LpwL3Y49EN5aaE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NYLaAqTeHDvzZZcXVM58Qe5Ys5MZ+tazrExZxPBavTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:48:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.105.171.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eeSKMkLbNRVwD4kl+o5jI/jVHX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+dJd3jy2y8iRAdTgKppqDLREp08TWAA0xaxdSuanSvI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.199.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fea6:13cc]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bullfrog" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eeGNGBeSw76UqbyzEgwolcl5oa8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zN7KFTP7at3cgzqSz7na9ddSIpXjX5NwVH/UAboMBEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.107.202.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mundl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ed604C/QiuGutNhZSqsII3XpBi0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZaA6mqgoG3TWgdXRmBIkMKidJ0qZrmRTJQg8TXvRSQI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:59:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.230.168.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeastieJoy65" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ednma7L9vyXoRrY12CSP4RlM/SY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DYn/+YH1eGK72+lmturm0LY0EDAFXqiuUJUk3BeIYp0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.108.118.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:86c0:f001::d0ed:e1:b1b1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gorlock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ecZ05sGskGh8zPZE0kwXrB5TWjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4g9MOB4KhbG5Qy5hkvwvfPlUtIg/jYKZUy3YYOvzEaM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.7.16.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ecJfISUkVSzrYHGQl5n90IlTI50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Lvwj3FitA/h248fSCqkt55Y+gz5eC/81Q0g4BAAtsf0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.231.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "grocock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ebOfjVPazJpjl1+8NGMB2NDTYDQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UuKu+NK9oyBbz08PgXdMbVOEUJQCYVXdmwsMmcU+lHY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:57:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.32.220.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "1d1dchang3th3c0nf1g" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ebIHrVGEL6IV2Va5MHs9Ac00c2g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z4CWrixSbOQbs5si7ixMLbs2S2SDCug90rfrboLOH9o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.187.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:c:129::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kaenguru" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eazCQX9DAfwC8EFl8x4guFHMevU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xas5X+ZamQirGIrBv8BzJtz7numOmrjOc5OMYLQldZk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:57:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::69]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Waeswynn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eZ7PMy3soCxJ3iH/Ai9+Lb7Np3E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QkVIEBBRzcYsmWRhwmlLPIACo+usJBqxwCnYVzNYooE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.172.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=92000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hermes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eZ4LKPRVSPVFZop43wTNI0kOxYU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ro0TWBnDH3KNIAZlA0wwtDGtdrk/zPFNTaFe/NKr1Nk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:24:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:efe6:1313:cafe:dead:beef]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE57" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eZgPnceIOmgfvneKdFePeZLgqTU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9wFCajLMb1XhynLSneIUFH5/mwMv0vhx+s+25yxT8nA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:15:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "170.231.236.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=84000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Poseidon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eZfD/IiwKixv75bF9bXFDdfaLiw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GO+kALq4yq5Ufahxq5nQvszfgrvj0lcHAhYztscLe2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.98.136.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:11c0:1200:210:ffff:ffff:8d62:884f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eZPTJ4v4/XYLMMqGmTrn+IFeQrk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SGmUX4gVG0dinB0PcToTGLtQCRqOUv54toXbiyPKkzk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:15:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::202]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eZGYL601lqxqNxULjpaLjKuZnn0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gxHC9DWqgmvKUg1RbVW48Vdym2bg/LjkGcYzOMxC0sE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.223.3.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "endpostrump" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eXjyljIu75jivRJQ8GKfR0riroI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KB03Tk99goCHbybJx47MxLbUXFZGtcxH4gaJkRKzrJg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:56:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "20.110.177.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gopherf20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eWYr38a4iGaQQVM1qVUfZDzAQ+0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vYR8zqu4zECzJWmHvrDQs0VhfDoGu4FfKbP1I8iQN0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:03:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.199.92.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:1:20::3b:1001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TripleBfifty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eWIdPzags3dnC0ZHwzcGNc0lIa0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f6s8tIBDSKMavJgibXiZ734Re/WntSPNzOQPQNgiMRM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.220.20.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay29at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eV0WXSrV5//ihXOST5KJXQjgFw0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nTw7Aer9MgoATbntlz1HBnydMqcpfTGoXXOMww+yWbg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:46:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZEN6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eVsuzuWiivqVk3ukHkIadai9q/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K0/T6IIdyIHdK+1nGo1u1TJd9ADo65cavW15ZWxg3FY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.239.38.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vaeden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eTgmszMEaAXcUHokd+2Qu7BUo4U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DdRN6/jNRlS+3v+OomPvRGTvjBC+0fZX81IVtzzd8Cs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:03:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.163.122.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skankhunt42de3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eTHNLzoAEkLZSjrXW4lGmUk4MoA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mLcdt/SsTARzeNWkafN/Y7GU+Kvh9mAWxHT8pBDGvls" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:41:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.90.201.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toroid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eR94rPWWo+WdQ0bTpG7Znf4KaY8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VWTYORzJLs3N9lDUPQlD4CYRh9BYwKxcFGLXJYVn0Rw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:58:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.63.42.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eR3qhg01nTo9L28TuYVusFB+2DU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "06tXz2T1JyYvtFbCSar/KTX1tegwmMJ64ySE+sv00WU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eRt8BeLG1NmvYRAFYllVaPW2mno" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bxd6fgLgKHRbD/8zb/hH0q4CSubPFnBoYYm1pIF+PUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3561]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dockstader" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eQ6z5UTnCAn6dg3Hk0afxauvHig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y16l6pHvKSL8Zk5jZK6gvzMDn+8x8Pa6S2BvVrJH078" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:55:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.58.180.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eQ3mDkQrKv4XeOZHiDXoWK+aYcY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KIco8lxiZj5b3W+NLwpyAFzWMkyCVl9cDRlLUlV1pTQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:16:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::201]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Soiernspitze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eQ0Cmxr19OVk7oe13uuzcpdKtc4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qebBWcFiScpMyAx791+KPRgI349Hj70tp7aaa9IGODE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:40:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.112.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torac" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eQSShGufk3HjvLVttSJ/TiI3M2M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GPQxc0vJOc9RUB8PgSF1XyPkDtToymhEcdc0VDW5j4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.94.213.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "amaze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ePbMSHNWWPn3wqn9WHu3Ju/NCLE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pnLQ91D19DMpymKsQ+RM4VHmFFKa9zlW56QNrTJcQEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:10:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.53.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PolishHuntingDog" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eOQsXqP8TFYGs6z1Yj3iX+a18Wc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VPDVmnjn8IpKxWkY6T9M28P1rOiSxzPxhIN3z+7BrQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.41.137.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "icknonequire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eNB2OJjenAfqDxFboy6jvWxy5+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JvJgutoPPrkeWNU84jSK0PsiS32m8Y+/7GWwKy5LVeY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:00:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.69.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MuteCrown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eMy28TJ8RtbAJmRx185CyoVBoT0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XwAj3daRNocFrbZFgKX+dv+7s3rpJ+O6mCPgIrSKFu4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:00:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.124.240.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cmutornode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eMfCmdtMS9EZoiuHtX1a9fN0Gnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "95x4YQeR2L1lGEypN505NrfIv217qOV3V31iLe3NKDQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:36:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.194.29.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1169" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eMMHaLBdoRzXZOIpwje1BHExnP4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s+LkKOH/yPizjkXKjxqOxBYuXtU0TvQfTKyuoZ2wDXI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11169 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::169]:11169" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorchierRedux3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eK6UBhiJKL7FE+2fFcfCiZOQzq4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bdkGsSqea7vuCjHM5rsFW2xzv6muLXU2N1fsE5QYx2Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:51:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.113.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CebolaServer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eKpUobQWkkIxBJndgccu9RmwcPM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KcDRWEVpUD+RYzR641mCmKeGsEHXHEkOQlPd7FiTr7o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.222.79.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "licinius" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eJaoB11R9guVDY5jqsKJlzEGCEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "btLabVZVc3YWefkV7TWVwABrghEz7t5MrGRhu/FXfTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:19:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.112.131.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mamoru" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eJCGplv+U5j8G0QPbD7Nl5eq+UM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "70v5XNQqm4Y3fBDdgV5QWFthWkkQLYXwo2m2PNPFTDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.2.47.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9901 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unRELAY" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eH9I7EnfAm26us/M4aOd2MUziUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yDnTaV52NKxGvFpOripI5+a0EjuyoLDCwiyrO8oKUvI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.155.44.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "viennaOnTheGo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eHdo/vn7/i2bjgIUAZp/mWDTkgY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ftobCaQrqYDTU1GznkobaTs72SI7Nrk5HK2giTNvB+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:19:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.251.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheVision" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eGNuBc7wPl2LsJfX9LjW/RFQ9Us" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GaKVaJLuIh1wqPbnueyrLEiBTY6QJ6egzC5xNekUvZ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:11:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.148.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Estevez4893" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eFHYGdMaURjFM0dYrE1KZio8LOg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SlxFNBHfXkecANws2a3kG5wrv50vExnEuJFxGMVMFN4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:23:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.124.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 45582 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:1c01:7d33:a5db:c2b9:1092]:45582" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tweinode4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eE4WVEjYULcpLu1wFEKkyMoWDFc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g3Kweki9ivS3c/JI44T0Se7pQMzvwHI3pl4c85qWOQs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:59:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.254.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:18:22a:acab::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mikedideditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eEMW+3OU/hKbm4HgEd2FbbgPPns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LpaDzq3ZZFlyBKofLuThnnbWy7CRx3thfI0lKrDXYHc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.233.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:13b:3b59:2::104]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay8428545" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eD9rFY4cv/HB0tm1neDFntJb0lY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MGFS989L0ze3FhrEhc7VG6hnXLHlr7ZYOBoMPdkgE9k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:25:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.41.222.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44357 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2003:cb:8729:db00:e032:29ff:fe63:7503]:44357" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yuuko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eDOxRGwlbfT72p3p/bHMGKkvVns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ztDoKPzbvVnINgyOtxELXzIrdXBUy8pUqCBxcefO2bA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.103.149.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "creeper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eCH9Ht0wPV2IxMOWiEzYoFyUrFg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e/TFl7kCjCBEtnMTYF9Y4mJBC82bfpBeomxcdc1Y8k0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:07:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.210.64.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sunandfun02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eBk4Sj5m9ly0+pb7HVbqRCdNuUA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Yn5Kz14zYQ9i7QAJZKvmhmTGjRtMtoVo+3WKvne8sU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.46.171.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BarrySylvia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eBbe3dfNePkf63Ljl6yxi4gTKKw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H7VN9b13AceZsxUGA3TYebzD7wRBTp1OmmMpa0hNoVU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:54:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "3.20.179.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eA1Q3M1/PIMeXnUPQYZkl8EmP3Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9vqmuGkiBTOds3+0I2Hgk4dUO2llRhZRjpxBr6urSRE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:31:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.246.84.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0d:c2c0:1:4::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "salentrakain" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "eAAE6teyuWwmqzIHE7qqe8JGuGI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JRCTnnN7X16eGhHjxyO7sKcsdFmNwMyd6/qtAJQiG2A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:39:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.237.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d/pShrIEXyzLkbYKCQpq3zwaB74" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AbREcMJBbUMjj2cX9kL5OFb+Yi/U5sXFdud5GA4z3dE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tie2ooK5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d90ljw1YeS4Ny9qgvGah3F+NhK0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5N17JGiniwjBTL5qKgaSbdhjLmusM1/6OvqM6U0rZ7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:50:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.179.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torissensefull" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d9lr2pxgSLdYNTlVEFfTF78jLxY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1fxXOvQG4YmM0TVWzB98mVkBmlYwSUFlTYh90OAvr6U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.201.152.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9111 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2003:ec:ff03:2700:1a31:bfff:fedd:ca1]:9111" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VinculumGate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d9CIUMHuhYdFH4ONP0mHT3Wwsaw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RBRMR9hB+RLcPwArT25ESL0xQNKY8PsUTwJsrYmJM2U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.20.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:db::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange027es" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d8dQDMVzZD5LPn9gLQE3+Mic4Lg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jr7IF5tKOvHYwvVzHpAr6DUPKaIBRDqUvxm6AgxUw6I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.207.89.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d7h9KjpVFjFwczSDlnkQhiI25tI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1pxW1FySpAytuaYBiZ2g3shp9xbXAgoQKgXjTjhb33o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:29:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.214.104.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BienwaldKA01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d7glXNKmCLli2kQjuM9JrP0eIf4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mSrH0FEtDb3mmbaRe0ltEjIkVqHKh8/7hfkf+gohVrw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:17:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.35.154.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "knapkin32" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d6dXA+W5rZz9uqF879/qS0ajqOk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i5lrqXBW9ixiGqNN58t2En7fLPcf0PEacwb+S5Gc9Lo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.160.192.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fea7:10:0:8000::b8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "redvader" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d6OtxdRVd4tTwoA3YZFt+32gp5A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g1tzv9zg/8CqdoJUHwQTxz8uYBTNzslfFAeWVIph8Og" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:52:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.85.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:6096::2]:9030" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "z0mb1e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d54lxirZO8i3xrWkKmJQ5IJVYxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UEzMDxCFNvioJS7lut0K6qyqZIoH+rcO4UlSdec12Kk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:08:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.134.162.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d2VC1hFmHW/jg5/i16+5KkNcXYE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FaL4rtIfhd8tvMFgpVARwgDpY713vNnCA7IBkvhCQ+g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10040 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::40]:10040" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d2Hdx+sb4m1BVfdKFfEsMqNv4PI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZfiyXNYlshIMektizSNbp3yd0nYpuQk1vYc5QTHrx18" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:44:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CoinSearchrCom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d2Gp16asfhikwEBEwBPEKA3OnRU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zd0MxJF6NkRZeV6uXkqeNhLzYdhEAAC5QbmWn8HpWgo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:09:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.47.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay04V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d2BhkwBW+IBQwCHTAA80C2LT/OE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6UxlKlXlfPXe0K9vtgLpcPaUcsNyV/JX5aQfDpl9i10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:10:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.48.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d518::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "presidents1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d1HjcBf3ZmiD2vJQOzAUGCgoU2o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "chxzY6ycrzM2SQ62yyar7JcFp3p6XisTVUtimTM4o44" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:10:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SlavaUkraini" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d0pIBAPmU7oZ5D3Qahxy8pVQouc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e48LII6vSffdIlsPrsCWQqjv9c2/QzzBFP2tlOvaEg4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.99.220.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:2:d0::1293:b001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FASCIA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "d0o20gqqbioSZatuH/ybUMlYcqs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X3dyh/oF1IyfbMYimRuCF/OHcG7N5rRwAl8GRXv9pS8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:59:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.135.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:7573::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "l0kz0r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dzfyRkD59MdywibKp3gJPzSgPng" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QQfGxrqUUMq/MMqZKZ/0i3svOjzxPb4Xlx88UMrjht8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:53:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.79.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f868::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frankovich" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dzekAwUTGti15gz7kSbku+Htf3Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "laH9iAIavki/iY+KLPvyFP3dANpSh7gFXVc91cVcJvo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:29:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.23.72.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dzE8MqpIq2WCmdoDnfbGJ8Em9XA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oapYqi7GveLu0hiweodo3coSPfGlvsWfXv44PVZj5T8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.254.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:18:2:44cc:3dff:fe89:3297]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Morgana" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dy+C+ExCGWunGje/4Ctjh2unqBY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tJHlKlv07VnZHfX3al2zos/Vo9XTz/riwUZ8bRQEPlI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:21:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.9.62.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dy1Ql3IHHTCCuq8ceByPkXAT88s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HWbhd88yiwq9eYTSxtMqCSX+J35r5c00TjQZ2xqd2BA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.113.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:28:97e:84fa:9ff:fef2:cc0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorExitVIF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dymctmiMSs4P7gbNyOxMkil4x/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H3bLjczatSe2yvoIriG7WZy+tIWcLO5kFbHyqun9p6E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:17:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.239.90.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f530:8002::19]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ntfshard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dx4IJO+C2F4E2AEWVUER439+t5Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BJtrLFMId2kHmPmMvmpvdpuHwLJXfqcJGio6ubmtmSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:17:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.242.95.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "T0rNode555Nose" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dxKhrCHUuW4nc/TI+Xli4wTsdig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UHeDgdLA41T+5MUXhdxfZDCj7LCOXa1kJ5MK3B0/IXA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:44:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.119.117.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:13:148::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zivlimarinadir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dvnkMuhI/VA5AVXhwIRm1l1Ke1s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "metI4uc5l60OYB6C7HN4ow7pL4mXPzBGIzZwJKSTwXg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.180.21.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stalkr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dvOoGgeE3PU29t4Z+Y6usfid7M8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GNoPQLS/mT6PhTMqVRTEwrCUbc2hrBTwpl9DP2o+PNw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:15:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.38.54.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:403:1830:14::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MarysSister" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dtPMGpBnMsi3+Q6bWg/zvkpKUt8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vmXg5RA4jQmulvdIMfu0HOZT5d9/ukbfGxMA5C6sI68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:17:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.69.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pinselohrkatze00" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dtLrqCu8yj358lSpqDcqEKJvPRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ggCO0Em0mUsplS8Kc0y5j/5w/6BalifjISMCV/Zrw0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.130.172.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra81" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ds75J3DrnRu6gCXuThdRpCCwCHg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tk0c3lMprnFTexwp8peGLv0giaRxzLCJVf2u2EeKK68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:46:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.188.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedManning" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dspjbB0z4+hjC3rCKh0HQg/Oh2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YG064ehAvB8vBbwxohQtYehAtPtJeCMNO6y+XkLj8W8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:31:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dspBnGhQL/xNlQ0WfiXuCtOgp2Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l35fazSp4oud8goEJ2iUs8RtU7kH3k4NfS5Ii8Y5TJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:01:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.157.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NFSGmbH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dsKhZHHa7oFVORDH6M8XJu40qnc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qcZGiI1/a2eJYZeoeTFIHSErgfI02wbkRtIfT2XyBtg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:06:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.61.251.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6969 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "drYla4vpKI0iSAoleaFkER7EU6s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/QdfFh0rR2rpNL2IHrAjd3LDK3ti4G3/4VnBFN+C3/E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:45:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.118.152.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2407:7000:989a:5254:ba27:ebff:fe44:d9dc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=710" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vladimir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "drT+3QaW2SSkB8+rULbldLKMzco" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4It6KGHi/pU0QxxxXNHtbmJLG33IMgOZVXp45mrQklA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:42:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.255.1.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayonlolth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dqtQw+wEcqY6+5qDOlNfpr1pFHg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VzCzqd/Oudp46dIYGDTt3dWJMRwRvL6HrNoho8xbJjw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:5::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorDotTeitelNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dpWZAThujJCPUCNdmJQAeIa2fC4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BaBhwaRphDPE0aP5eFsh9E1pCEwDJLlQF1PFvQjtKj8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:45:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.51.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:58f:8768:8283:1a62:bdc6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber41" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "doxQ4ZfTy+JWsw/pSWA/0jESiQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "59TB1FxX/07oNVH5j55P1/4ryigVirEbp2i9qDtpgNY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:05:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::21]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cyph21node1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "doOVzA51fgvN8tULYGp8DuFj0I8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CEUGdSmN3Rya3vKOpAONMTLL9cRfxDiWt6cZtiJqpN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.70.181.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8004:9d00:299b:7aa5:73a7:9bb2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "qtornado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dn5ETh+h2nXzt3R521ri+j//dcw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1Kxr9vAvf/pUFWcYEznbm+3g72DEwx3zDl62mBet6+4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:15:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.35.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MegaPint" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dn20ALdDAkSJ/wt+skH1841YF3s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mumgTaa3LafA3Y6ELIksneOvvjHU+C0V+59r2wYUAAA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.62.241.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORfrance" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dlQ3SVEM0Ayxbh3UlAyqj6xyf1g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qBOJk+uY46xt5FzpYwE7ERvw35xn/v0xsPOGQ1q3nwM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.29.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:2:1ecc::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex45" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dkv4oDho+EyPMjwaZ2qiVLgNw78" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FffpDwWYmb8tlyIt3ZZT8/yZzNvtxaATBuwOxQc/OOE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:23:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e644]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dkS1fdhjBfO4Fy/vbO6Fhk0Ii6c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RtymWBjHEpcwHnrg/yVs99PFxznTLP9O7X4Yt3MKJAM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:54:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.107.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:1007:861:79ff:feb7:a4d4]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fenchel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "djt9Z6ay0Zs+nqV9H73EjzuFtVk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2TCHtItTA+EmNbIxdp42/AvlZErzCJkjKBe6krW0IuQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::12]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip6b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "diIT0yewp2BX9LYc1YftQjjNkA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SEhx5iB13rEr/Mq3yyUaZ9QN1q7YsZSV6eI60GGldlM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:34:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::253]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ichotolot62" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dgBoAkmiIIDsxhc/u/ZNb88zCmE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LkfWSSMRDn3O1QjrieqUFSzuKaeYspjTftPL9T1K4hE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:30:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.43.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:f48:2000:1031:72a7:e81a:29ff:cafe]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iPunchSharks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "df5SNuZ/+kpEwRUsNeqzY2Dk198" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XjFD0d/rG4K55xbyohTFxDUqzErJiL53IJtc1aFt9V4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:20:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.104.37.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cornnation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "deIUJYzFiJ4NbtWFJm83vi3TVo8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "noIEwofgQVwsCAh4+XqPuEeBh07eZpa9N5jOSDckBw4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:55:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.184.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE73" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dcyifm6anSCO9xrmD0PhKUKFde0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0R5EB/zibQpikz+nSth99B1MBywqSiy5GeN7Dqu3KDM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:14:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.67.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6030::4dea:103]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Buri" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "da8fgSQ37+UcUEzjrC3H7AO2wBE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NOUFPratBf2DEonjEoFIB3AtUS1Yz6duYz9JI5IT7jY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:24:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9019 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tiberius" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dakxQERTAwghxUek+qkJSgbEjHo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PDsCltcrYFIg14CKKE3y3NmFdPWDvYBIwpUipeiopoo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.101.183.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "galates2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dZuxByTGIrEjgYT+Q3c7ZIGxrUM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YB8R7a1QXrgA0QVFlygqH9pLENErGXTlAeYjZ/un9/M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:56:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.118.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev2PLicebeer70" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dZKxBdS5EKeYmVlBdrMjVN7AO/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9xMRLDLDooIEu1epasSuymjIJ/ZfjK4c50/P3P7WCeI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.38.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8270 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "010101" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dYZwOow1fYllEa7VeYzay7LCvZ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K023l4V00bAvJSFfxVwhfJYaU4WOVsIgG9EmW5fM84I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:00:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.154.244.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cebolleta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dX9KEnAazXOlNSBU6k81fMS0R2U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z9abOJvYjQcTF6ZnFByYhTkiRuxoaMJebqrT2JPiZec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.149.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:1d9::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smurfix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dXSXW6dt4HJiMfyRbdcLCbOCTOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AAi47b68+dZCMVZuhi88u7CjXbIx2JjZ/Ir0qq3ZmUQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:28:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.95.149.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:780:107:b::85]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "courage" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dXQLBBQ19ZAbqyco1vrcLvxLJ1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WhMhB5pmuXey2BngU0XiWF7F1DK0AaqN0SYbOQQKfzs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:25:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.123.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spookybird" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dWw0u9x3FqX+g4UH2LX9HPJPMDs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OQisHloPEdawRXWNO3MiRbmAtTbj7TRjoKGPoZzUEyM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.172.237.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:800:c1::84:a001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=690" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "screenslaver" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dWV2z12jh83X6rzKP46u+TPLRIY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rCcb/f3M1sbogLtoN3yQEcppJtXxVwk2XbWILqPgFmY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:25:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.208.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "intercepTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dVug5/T+Ghl+3w2DaB0lcq85yy4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lWYDbKh/kvfDolqFHtOYL/58ZRyI+vzamvh2+yLtK80" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.117.164.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gbhfmoldrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dVXb2XMu9m8PCExB39pAG20DZQU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EV4dgqjjgDvhxYjFnRZ9JelxaPJtdpfO8oNxzgLh4vo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.208.162.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "adrian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dVHBRG26e8+DlTiaElRF5xlS1Gc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Itgtf5NUy/WpN37gteL5PLXaAbKEfwrnEZMxM31Pcu8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:46:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.53.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionMasq04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dTOr2pAn9Az4f7YYmuux9DoTKgs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GzdOfS5WGrXY03b9TzuzQNIrKiVrWCVBLaQ433yg9yQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 57625 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NetWorkXXV" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dSvDYWIum8Lb85UjVDGivvvnkTU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x2GKd7nKacpJoUmcSNWIf54I3xuxD+fCJ/72TMNlab8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.45.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:23b:7777:7777:7777:7777]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dSWOdVBkqiQSvGuriFdWoyAfjHM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N+liWmobh1vmAOCsSn3N5ZC/60yd3xjhK+UOr5NT7FY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.161.133.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=830" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OnlineVrijheid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dQ6c37QGYDnQHMI2la2BOhPd6yA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qnq4m3sML4X8WqJUava6y6v5c/c0ceLUZyUWw7omRDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:53:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.205.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "O1G" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dQk6lZ80S8azBO/+3hAZ9GVIo8I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M/ZG8bVrnng29OceexYTwTeqKOGok67BY0e3p1tlRGY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.143.177.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:2023:7000::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pfefferoni" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dPrjOyH//9xvoROEZkAjrI392kw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EmL1x1/aT/Nc387RwGKV7Ya9SOg3LlcdNCby9F5yYZw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::15]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StarAppsTrenton" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dOi2gEKid0iEu/Z+Q6vsTZ5d9Zo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S9nz/+yQiFzj0p3Cg9Cny5AKzqHUPc5WFfAimI2ajmk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:26:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.15.242.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1600:10:100::3ab]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hypnos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dMS/brrLTM59sDy++O7XdGN5Pcs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BaQXPofcNDN/z4RHeyAw3Ee+HMukI3EF4RNYhvDAg4c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.89.104.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FOXACID" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dMQpocDj7eA7Ot9hvqg9VUAjKmU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DWcXtJo7tcgBx/DdQrRwvjlm6QHjRDjqUEshNC+0bMY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:44:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.14.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:6b27::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mevPLXicebeer02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dL0yEJ17Dyw8dIjr+/3fGpD5ztY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mUTi2IiVvojuZeqLclCPSRFg9mux3BIbXtDN0eNmxXE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5116 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:365e]:5116" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rulers2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dLAFXYVARYQC/g9Uj8aoRLVDGpc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gG5keg24EPhuaIhXvsEIFH2KWuX51ZFFFytH7Q0a9NI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:32:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dKvcO66AuXai8/VtIBf6MRIsB5A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GR92wCRWcJAAQ/T6foV02bdGz3f3bnwFp10mBSr723Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:26:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.186.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "longclaw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dKkQZGvO77zS6HT8HcmXQw+WgUU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AW+ra50UXKZaHNd3eTeKfYkzWR1u8+W2PnC7Sji62Mg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:16:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.58.81.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay37at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dGvhbDF5HJp9FUYfc08MAX3cVe4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E4oSaqH1AJgAbCm6z6GQzuLpdxaFrx3CB5NsIfXaf/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra35" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dGYFdCYBjEHt/BRlvn8B4nFVz78" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HI84v9laTTZ9Z6NGj3QcKKiz2YbtDyNfp1GJZWFXGhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bhsdztorrl01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dGHJPYHNUzngx5CQdFoUzsffynY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eN0FmBZr3b7Ujw4ahuA0tfXWFZSJOnhrYNd64TW9ZSg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:12:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.39.234.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AOP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dGDHdBLoyOZavheXxlIWH+kD6/s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NuapfAcRr2OaxKA8AKH8/zv0i1xX0y0jXq76LV/GmuU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:09:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.31.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shalazarthewizard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dFBI9RqDT6kVL2ICFZPyzWLDGro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W01EPyC/XBt1epu0LJGHuErVQjpBJLGruc+b9GolyX0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:58:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.239.22.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c01::f03c:92ff:fe37:163e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MakeLoveNotWar2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dEhVv8nrMW01h5covaV8mpTjklc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CpO9ueTmEC1GsZDs0ullyT1ow+DNICodP3rz9XGsBbc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:14:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.97.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tionverphous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dEd4X0SFUkse7fT+WncORaQ8QKo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q1yavdh7ZuVB2Sy98mNS9R3Gdgg+DGsxOEv1JcZ18N4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:53:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.132.74.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WhyNot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dDma02ZbMUuGzAKec11dGs46Tgg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LAjJESAdFPwZ9xW3qX01ncQUwbJPTFH0LGNfH72zM5k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:24:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.243.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dDZ7YyOW6M5qXdQQ6pYH5GeqvNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KsFF9cYEHQSsQLZBz/7YpaPN6IWIwbRx9JMBVZGZxLU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:58:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "61.4.102.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv126" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dDD2axyry1LVg8nDA17hmj6Hoj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sG17ui5Mr71E0Lm/q/+sKj/erX1102oMoaS8dPIrO04" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:27:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5526]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorExitMoldova" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dCxF8tkASq3gB35SikQYpqgbwro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VovUb8/gwvbdOkYIEGVSYQgXWQMIwx8XHwCZFvp4OVE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.170.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:15::45dc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "08eRPfaL2Relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dCRaDsnwQ3sjhKfb6QCtaG/wr3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uh6BGgIViim7rAvIi6GlWVESMpE67cshLjdg62PAv4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:51:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.32.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:10:9e9:28be:caff:fe2d:d725]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay17at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dCQl9zeBpaUJMsCe6opaWWmVIX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1bRGYL8H36JtOR6Lwy/xHjo2bJ612gaiNUX8h9b0Z6A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:08:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "effiorgoulu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dCCRSG0Ec0xX2XvO+1PSLtC3eIE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nQQEGvMcqnadn6pDIlBqtUCApOY8acCOqOG021liDFw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.67.82.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev2PLicebeer18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dB3kdfVHRGDqNHUu4zd5DSJEV7E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R0Na2TKPbluELqX9HYIcdp2Ckf0J64urY1J3xt+VL9w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:59:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.38.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8118 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dBNnXtJSspOVVu0AmMOYPRrzGRo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qXXH+h9PZ/0n7KiutIuujdVF2qAY2hQB/a7+uLZGwj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.132.144.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:37:3:e842:2ff:feb9:c49c]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MinchiNodes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dBKIuSvJ/xTLSBAvxlknNp5LCxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TqyWkLbIWdd+ycWwMFqX7XeaSmvw6fn236aO6FKJYSY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:01:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.115.34.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dA5MSELkwZDf7CeOwf11T9JhqGQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pM7cqJd+7uX3vGAVhOLgYOhYs2QbT+Uj6nlSPTkRnpA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:18:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.166.159.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4646:54bc:10::56]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "macaroni" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dAg5d1eMB0sSSubIGlj6PlcQ1PU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IoO+7e4AWjnVwIALn0WygFghAJOWWAzrq4Dc/9/4sCE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:34:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.253.203.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4801:7825:102:be76:4eff:fe10:552]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BrownFox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "dAeQQkbA4oOPqBdcOqGjytnfOxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WwRycbcoMYq8IeW5IYlZVcPmwsMqoAeULb63Vh6fgHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:24:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.229.163.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pkswitchtorronto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c/a/ReFMcsR7iz01aPb/GVuWehU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gat7+qmQaLWmdtVUMlsqS0NvlhVJXUNfQLlqMssu2wE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:58:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.203.27.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2568 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:cad:d0::4f:4009]:5201" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay29at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c/NM3FklhMBRmYjkQ+b9+6cseQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4aZCqnY7WUKOpezUt8in9Ynop74X/A7ob95vYh68Y6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:37:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "n4lksask972137tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c+ilWxWP51Cq9xG0AtNwLj/Dle4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TU6B2Hmo7YPTdefq92gFuxYIClBpZXC87PfpzASBuFE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.168.3.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=920" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cyrexlinuz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c9Xpw8haNus8Gmojwv8Av3/gNEY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XqxVJDfO0+gPdAE9gzEDZWMarDQfDj3s97zKFI9R/80" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:58:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.151.93.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rspn1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c88VmN4BekJOGRnN8E+f7EhvWIM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D11W+0ufOoOFkLT6aJr1N7aFnfvb9DPpmTgl9JNuEvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.180.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:9d66::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "None" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c8bWFiHfjChX/EozZlOR6a1jvhA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2g5zln4Skvf41ww11JjndLG6FgvtLJcJqap1GIwrHdM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.142.80.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeliosTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c7YVE1wW5Q5WaCb2RD7Ia3BEoPY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cuKkvxdVdXuW4kArhafdkGnLVjxxH5Db1Eecxo1dt5A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:55:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.75.221.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torcow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c6YrWQzE8pDQaPogoS1kCKDYtgw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rTSkrDQGIgTiO667RKS6IPoXxC+X7j/YrB7RJammMi4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:38:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.93.174.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Freebird33" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c6WoFoi9U2v7q+GGMPW9YwbJrI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q39T+TVKhsvboWTqVGQvoGIz6ypGN66pPdZcpjEzx5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:00:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.44.101.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:fa40:3aaa:1::9b30:deb0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WildRumpus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c6Mr4AG1CFww3r3Qaycouwq2Q2o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BWlNGiVrju9l+GhOhEo+/qxs71XN5JdOlM64Qwouf2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:06:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.93.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c6JVfSiHh4rWf0U3LNLRRGuS3sM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u46aTJwe4LdF10XY00X62LE8y60EfvheRCquneetHNs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:18:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.60.166.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oneDEicebeer01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c6CM60miE/xz/9lziWOEh9Txu3E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xG5dd9mBd7bhWE5jrzOlNd/DIH81EHBrxJ7TE8wc04A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:38:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.224.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3092 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Belgarath4TOR2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c5uMurThLHLjlZDmj9cGzlYyfBQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WqOQxMOlDPPb6+9xvBHeKeYdwWSOmFYgz5GmlQK21f0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:55:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.65.114.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 63456 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapSFO" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c5RLZ7mD9BSoE7KgBvx96CgrQFo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RZDUU+CyJv7pab6VpAM8/eLOFijv3pyhZriKP4GnjVw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.68.43.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:2:d0::742:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snowball" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c5LjMzE1W9xvWvJfwmjOapFr5GM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nq9a1Y9E1+8J2vd1vAo2CWTYxz97De3eEcp+RLmquys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:04:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.241.213.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c4Vhku4h3/w39pUYYfsZWWeaVVg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XDLkrSiLkS7tIRBcSzt7uryEd4XR6ydZFmqvV10nFO0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:02:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.185.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:9c6:e45b:29ff:fe9b:2a65]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HYS2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c2TvsVf8qAnEa0GmHY5qQ3GLioU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rjAuDa0+kWEfQj0SafBDNx8RmxcRrvG4qKvMnj5n6fA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:20:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.160.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber37" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c2KL7jRuUMOmDs/zCjXURS0dB0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LYlwuAsuRpGjwXbq5u3am9/SmTCmUnQF5N/FWJ3L4YQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:22:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::19]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c2J3DLpbVMMSPPskPYIXUx4voDY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fg4A1F08tnpF1ceZlwe3ywOwRJvjGlNQuVzC01EoId4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.229.90.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1680:101:43f::1]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c15z3m+z5E5bbpxOrrLbnNdXKjk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1ROovTErP8por8afnAY+b5tsSGaefav+D7xwe4QdIe8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.12.138.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:100:5::1fa5:48d1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeepGreenResistanc2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "c07d8K+yjJHOh1EcfwgI5IO1oZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GjH30SSSb86ga00LahzFTLS/+CxI8AVzHNe8qU2PlY0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.213.175.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:8bc0:2:232a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MoldEraTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "czKgawDWr1SqgE8DxiTfu8nmYXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QzCpO3j+3eH5SSl7SizemKKSkszUPYJyXkJoy6K+lUM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:11:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.173.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:2451:10::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay29L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cyg8TevAHT5KX9G7HytQ2Sc3n1k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HANFQi6rPXuj9/qj2W/FTozt4oXsPD6Zfibn26j680A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:55:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.56.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:867c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cyeHauecmX3+MRp7FbT6h1c2u9E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0dCrjCifrDfmpvj6X9kfz8VcnSbVckhoebGyehztQz4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:1::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ByeByeBlackbird" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cyCK5boVJRKrjXrZLgvx4PQgSjk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CTsHnWOAMHWZLL76VCyHoegLklRl6CjKnjuE0RLgfrs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:56:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.103.212.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cw1vDrj4xmbrOHQDmDGmaoXkvM0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GitM6falLi+nqXGTOwF1MENKiTjZZh1TIuMDKNBegoc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::40d7:6aff:fe81:86fd]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "huselRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cv2U+jXTLib9mGdxf1deiDrZ5as" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eshM3YUthFzed4r7i3opn8L3o+s41abhD3UGshnY3Ac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:15:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.209.84.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9382 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Relay330CT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cub+Nz2KlRVKNmJxXp4QtWRHPOc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ak9/qZmwvzgGx++CwTXNplqHeo0Iajy2BwCKWKQjsYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.250.174.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt29963" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cs8v4Vb4Y3ohrLfRY6mjldDAIEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zS72SPblJp+S14yC9+feQDPfgxKGUcAZ6IiwEAed8P4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:23:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0185" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cs3neT8ClSNQlIRDmjWgWBAwHQ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zLtomQsEtXYlLZ9XxQoCU6fkxDlypSjmxGTFfJ+NQ90" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10185 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::185]:20185" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freedomRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "csS/FHGnasZRSEOvWkTb4ntNRwM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MYNSugCFWvgB1JGSXLfy1QRkAaMbAs+cCWihuErYKh4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:28:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.153.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4433 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Omoli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "crOTmlfKM+IiL6Lacxlox+pnBNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WdbVjufrrbVACauhWc/JGNS4jbcMPQpnQniIKr79O70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:22:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.197.74.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:e439:2::20]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cqpM+JFokzLZRzpOAUD4PbIhBUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gC21TqgpixgXp7x72/y7HfSO33zXlwdg5OfTLSxEi/M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:29:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.51.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d05f:78d7:1fff:fe72:3992]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "absturztaubetor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cqM+N03lrR5hc5SJbw/YsJLT58Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JjRoM1Et4FfoDBmxprsEF0t6Q6vxnV1oAkZe1TsN8kg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.201.202.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zai3Pheevoa4oiWooz1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cp2qCfHiJduq8vQvPIL9O7561d4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jBfEU/ZQJepbEEap4U5asGMHxODWDbJE1vq4tJ5hz4E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:46:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.194.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=820" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CanisLatrans" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "co+X1byxMWmIFNjHE8IiDG5yZ94" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QpUTiC9lDnsRXoDAjbE8965SeUpead56B1k3AyJhVxw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:16:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.100.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pembs3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cooH8BQqxbL4c9NtWQhNudyDq24" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7Ds8EZEXb2hBfKrnvlgcKKbiu600gBbUo+etb6MOWLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:36:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.177.252.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mamba" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cms6erGVQ+dIMcusqYHOGM3WonI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "quxCf+olPFtAA4W6+hbhlRdZmmBpp+LIkXzvKdZRFyQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:34:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.95.235.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "baronCV3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cmUHXWIFHYElZhMJBiuSrhNrshY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qId9RemMeO9+J9pSyrGBB4kDESN+nDTsvqG+DrWACk4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:05:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.38.189.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bornhack2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cmFMFsV41nMqnZB5oJBegVm8ROQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EoOm29k3Vl86DU2qcXsFTjb7/rYt+tJ/cUncxxfKj2s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.212.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:2697::1]:19001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cmCUlFnC1NSlq8OsEMGtaTnmUlw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hE+S0SCU7MCQrvqbCrMetDQsAcyvRJcBDAV/XTVvdf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:39:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.36.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:7c3:a401:f1ff:fe45:7ffc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gamblo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "clCFLO3bp+Bl7zICiC9HFzGEZdQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oiLWjNERtCCkpqWura28Jc6o7IGfoDvYPe7alrqBOXQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:06:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.99.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:104:31e6::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VoxBox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ck/g2b0HN/510epX+EoWNXnhdls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0kZ1nzMVF78IDkXLXNLpRFftXzl4TYo2IE1Z4R6phps" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.78.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cakeallergy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ckqWIbDqtpNZ+d7PXaQ31VXW180" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nAssk5c4Nj/9x0+bThooZqGWNEUKKzqkHkdEntmrnLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:51:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.35.33.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieditheconfigmuch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ckEaLObrJNjNqGiKazpVzBKQ1EE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nzTitnR0DSh/Mce5Q3OUwXnGeYzvUprIm0laT/UDErU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.201.143.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=880" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BraveTeotihuacan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cj4h/W+RkF6E5YPUYZotHigrgYA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yKKTw1GPR7BpwQJdQS1AcneWOVpEjK3RiPxzgb0uG/E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:24:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.49.20.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cjjquR4QULbGvt38/XokQIabEUo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "np7Xv1mcO+BNnILEB979MFalgTN+dRd+aYncVKRDDBg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::14]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "perseus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cituO3rSrlB6huWanzgLNXD0Z88" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GdQkf/L+DAYPvdKRqXDY4F8eEI9Aw7/qKTc0KWLqCbI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:56:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.232.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "giesskanne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cicOtY7evnJ6op5nQXYo286In64" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aL1tgzfko+0/TZA6zxD3OCLMVTP+LJ8ChM898U3dykg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:19:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.146.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:a48::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "5bd84798b7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ciA7P0KQFzPsUCR5udmo1RNp1DM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2BPXULu3GtfpxhOLLCeYiRcmnKaDAw326tNtNaXIrdc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:16:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.107.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cholFli6IkDu0RDAeDNKst9sMJw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E8asnspj4lMXm6ZDimBFKRrAkHJYpfXAE261l18LqJM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::132]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "slotor02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cgq+RVTFXub2CZSRylXR9VUFEsU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A6kaxGqn+gqxayEmycXD6GGLB3Hi+pCleGjsd48sb6E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:14:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.202.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Love4Ukraine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cfnZaEjURVL3O8ShxdWXUbbQdGw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+PpoQKqNSdiY0dVT+6jAP0dzwxyzwFhiXQhzwZXKbK4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:56:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.73.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1984 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HCCSRV02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ce4/59zD8Igwk2Gk41hDtggMnqU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xNuEd0FWHrnmJJAOqdEPvDHtJO7SBPK+1u9Isvco16E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:22:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.230.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:f4b0::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cezBfuutu6dbH6Pb3cbvXPRPKDk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yJ5b/vGz4SIW8j6/SyfxoEv+ocCTi57H82XBGIrJ+0s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:12:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.157.244.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ceipZz3Gi9P3Xt2T6Y8ADq0qplE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AA1HkPenN8QYdxNpMeKF62kgjIWTxriIS1FSjHNLY/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:07:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KFCCrazyThursday" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cdJSgohbmkO5IFJhi5GSuECCDQU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z06mleewcB1xkefKn2sBNPONuATIYJnjHRcMrF9hric" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.202.113.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:6001:4a2c:5400:4ff:fe13:81e]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodebyCyper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ccoKjDQ1v0jR+5ZCQO/AeWNtvl0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZswuVxAx0/ozP2kplB/IxYEd5MkTTYDgrvBYPGZ3HRk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.162.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:82b::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Torontot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ccLSwkvEVHx64YdEgoGbU1ll8jY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s9T1GY+b3S2H4epB3EaJod7lEhAIGiqLkWCOVGWx8Os" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.37.180.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cZ/Q+jJ/PMvNoNTqdMFeoRAziUI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HKNdzsSOqXi5UWoaUJIKOEekyqcicf7pE9IT0Wifj04" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:28:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:4::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapSGP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cXSvsmp7hOldrslGLBGgRfq3jLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FHWerlDF3DcxkTwHr75ei4nG6V98MmRlRMcFEbgg6Hk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:11:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.99.69.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:0:d0::11c1:a001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cXP96R/6JBXd2W/bXDGEBbKHu0E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zF6TAv056l/6g+lZDCyz6E7M7htNEe38JUQ6LMHJuG8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "111.216.95.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ViktaTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cXJWc6bMMd1nfxz/88gMUgG/8lg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FCMCw5snpBKWoakiRthcI/0w5BIdSHqLdydDW+rnz20" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:21:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.121.49.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "winterwonderland44" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cWhTHGntZRoS0gsqwr1hwbx/XMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A/szLCyS+tSwhUU63tmrX8W6/Haj5OmqPDS42+mUt0o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:46:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.39.250.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cVXekMHDyb9NY3WAx/An5XInvTA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uSoosqM+IQS+q1bcxeuVuh5+TzjN18Q735UcS4gkAPY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:37:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.147.109.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tordel2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cVWQoeFlS4l8bqx2mcyafKnvAKs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r0X26j42eT/vRUMdMiYd61XYxCpHUkYoDdBDrc+uxpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:49:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.134.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cVOdGRHsuCYGmk0VZ3GsT59GMqc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f/Kuey0uuuAhX0AK2fzNcYgwwxEDGMo3nNmvIzSmKhA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:28:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.59.76.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:c91a::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orangeneis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cU1+2c0rwe4+35xqMWD9rmCKpbQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pHbKfbrFg/Ha7EPr8vY0d2CYD6Ci8Zdj0phoEcTwqsg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:42:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.182.40.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:560:53dd:d500:ba27:ebff:fee2:a46f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.6-rc" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vps603203" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cUGLailM3EjpqdsNqZ4Xi1Wv90o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "axeCZjZP37YMFqpNLxrs8V3e2UzLLpxZJkq4dzH/AzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:03:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.125.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9991 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hamburgo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cSsKrbG3jVQBF8BViqK7Iq6gP7I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yuOQ7dkq4vg8uepyOX1rrwGgEHlkIOdHwDpK49gNKHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:18:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.8.132.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cSkVDn/ILtkm2sZsHd6lHEMaBUY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e0ayvNPvSd9Zw8qXNVbO1kY+rlhu/WFKgIa94bH6AiA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:04:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::208]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HEExitNode4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cRa8kpwFXfA8ztn97qj5Z1tlFSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jkd54WbrSDATV0YtioyaycbVvtVebglLo+8LMbhxWJ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.105.146.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:13f::91]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv122" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cQJrmZ4V7MC8yla5cuIQzKdq2Wo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iVaA2FoKVJqGgWvapGXbJgaAYkLWOODRArUVP0XNrFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5522]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cPlhNQpBTwhqo6dnMlcTyGyTO0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d46LXO0Kj03OkrtO9T5RmIBMI3EeMO3kTUwPZO5zuZE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.93.233.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7a60:1::f9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay4312" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cOWXPgfYr8TyOWOLbGeB8IcO/Hg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v7FTPiqxeOKhc7V+bWN08GXGR11MaBk9OLyB7a8YhGc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:06:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.200.109.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cdn4ukraine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cOOfeqGoO3pdO207fmqk8dJuI0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Alf9LzKwrasQuhxgYjrO75tUvjlbaG+w7AlvOnDbA6M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:18:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.49.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9098 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoWarinUkraineNow4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cMIgRXShtCTwB5OM8EpmYhbhs90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oXKwa3TdbBqocZq3IVRSDf15L8ikoYRn4NBJfAVkRTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:11:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.153.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cMFpqra06CyP4OzivvtKf6tGCho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T+jMjpoOsSmO4hfKRRJbMp7Ywfb+Xblj5BD8ahb/XG0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:55:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.225.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:19a::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cL1Bfvyg2HTbVtPZPo/fWLflqEE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Iw2SBkg/V56HbvN2OXnilIr41fY9zTR59KnJ147KT0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:52:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "220.120.114.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=790" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "secureprivacy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cLg8wC1O+3lT65ugay/oJZHLGig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+lxAtLZdjkz0GzfgXM1T9HfdoCf1XI4CKz4zbTyzvj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:39:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.100.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myrelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cLVHM2xqxK3WdOrOtLnMqMAsBPE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/80npcawBKiqtZODWlUK6UFPUy59DfFPKy+EHVITsZQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.183.68.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cLUeiFdgHh25AGuXRkLWz+goFYY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H+1cg82xO58qme5WdcLl+cMMZLCeWR+MfMY0WRLhDTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:47:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay26at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cLLYO/ypUC436vSdxoUWZxjq3v4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zlrmosIztcVXnM/vHR8n4OCjmWa9xXsbxvWpMch4Nnk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:51:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cKygfZJ2J3uC6QnBQ54ZzKL7Fsw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D9C26qxdYmTNCmbuDQOB63aF6mAjEkPKwdZWUGPec38" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:00:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cKZECx5ti2lcHGEeKTvM3P5q39M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CGP8COKJjcisHKle6dHGmuljjVTawQGGVQWYH2EvwjM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:48:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PrivacyIsFreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cJ1f583SNWPFkwH7sBPh46Xs3ss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VdStp/Zo/f/awqAhEepBKR+Tc9qRqqzv58POY6CYz68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:15:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.76.24.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:5c01:1c7f:5400:3ff:fe54:2f45]:22" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay15at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cIgrEWxzvjIwNtgkMVoFDueWxEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q7ay25eyHWDGdpC9NDZBIRrRrqoP+2CUmPIcHwNzDvc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:42:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "steigerwald" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cIBfFVHoQMc3a4c+WsbzAymT54E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sjfw1LLlEly5UrC7DJdUFVySc7qw+MOEkHbRwLXYW0I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.54.162.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hopetohelpdoods" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cHQPHxYgVXvFTH4PyZS0NG7tziY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oofMJ/OLYZd85EeW5VVvcTAwS/esZPV/0izkcLkRrjg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:53:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.99.81.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9074 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fourwinds01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cHNZ66X0VY1TOrJnOlk+kzhczMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AZ3qDFTQbc3EP3UdXS56gOcCH7fCrhnvbjWvgXktyd4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:50:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.116.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:29:8a9:887f:9eff:feed:9e9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex60" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cHAZnvYLWxrk6i77SIH5+Qtvqe8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gFY1q+ZZJ1f0iLPU/ioOfGWThEBN4Wld0ZNWUI7Z6M8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:23:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::149]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cGp2dKIXupBf5nfoIja3uWiiPbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gVA/aQ13Ci0byRMuyObnZbGC0BvQZnyUPg00cpum3V0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:43:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.136.107.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:29e0:2:6:1:1:7760:bbd6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "drivetbuyvm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cFqDGxWcS7OW5rC6rUJw96P+mqA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lPeM8RQ73jOEv1/LxYlqtkplwp3NBtGfyK/XDcw0+D4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:48:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.252.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "L29Ah" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cESVWk17BM9wAR1ztGexPOXmnUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aZvkbq8DzpcfP7zU+LKcjkmLc0ZOADfPXHTTp6V1yYE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:53:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.242.59.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1838:35:100::e928]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SaruTorUmidanuki" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cEDB9XKHRsX7XhKEUQGibuhjbX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MyWJKK9RtPIT54LWcaG5lBVmcEGy3ZPGfxd0cg80L+Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.217.90.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3100::5b0d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreedomOfSpeech" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cDJmYwCjjtYk2US/gdzLFZFFtwA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qkuSJQgDIK6l207Y6d15P2diiBbiqe8pQwTK7Dd89jU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:17:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:79d::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cBoK/GDZjQOGNgMKUXFF+nbjQg8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ftv4N7N20XWY7Orq04/8bd49yQb7gcNXTJxdly1XEZo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::31]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OatMeal99" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cAkOn4X74ATuv1hGH9bt1b+KUj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jQTd7LCCqDW/jQRT7skgXfoBmT9rytOwGUyN8S5zI00" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:37:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.66.135.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "cAZWVw33PE/EBZ/vL33giych5Ak" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/gseEmz/KlZ5tt6u4XS5QqT44IB4vwNpLlIxivru5oQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10048 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::48]:10048" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "atlantis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b/RA37HQaXuUI1fXR5AMwwjdV8w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r/neYdR+JBMPyKRXdX/SmiOHfKhwemdAMLDLkpFb/0M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:24:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.25.43.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=70000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b8pc5h9UXRgs1GM3NUdKmoFMbkw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ohAwj6BZNXuqtlvZj9bhiUPKQZjH5o6OkRmPFVsHNrA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.138.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:785:3494:6ff:fe3f:873a]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jubei" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b8jTsVIFSQZBfLHuBkImV0fH9ok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wsYFtwhIAbvQ8ny/V44XdCZtBXn13OuHnULEDU5N8fM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:35:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.83.64.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:4040:209f:9101:21b:21ff:fe36:fd2e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SmallTownHostingTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b7aWCCYnhDlJqAjOw4kD24GQ+BE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZrX7Bhzlt+vjqmfVebJKaVzxLoSEvtGP0oG0uxvrWeM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "12.208.119.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1500 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Harik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b7TkKuKgFH311aCkKDyW9fukM7Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CoAeAFR13Xd3jRFLKQgR7J1X8Tw7fL6k2q7CactzsUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:29:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:258::228]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sunandfun01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b5XmxRi9CepJoxAlp7Ef2FT6ap4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9KuEOmVXPoj+5wIhVg1KO5aq2v3EWqwpH/tDHWcV9mw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:33:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.46.171.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b3fpXvMQCork5g1S8Fkxp8kOXAo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6mmuUkHJ+waSH401uPrPbjRMm0eJqAJkmabMXFo2AdY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Demonsys" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b3V0R+TydVHlkjPQ7Adtcnv+Wiw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+tkkbE7yrgTrQd6kdHgID+fQCKj4izzzc5A+feZQliM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:49:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "39.109.151.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 33701 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2406:3003:2006:2f59:62ef:1332:cc8b:5ebb]:33701" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE75" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b3KYcYfrSCI5lb76chdVkyZg0Nc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2muBKhQRcaa/dS84nbm4pg7Ok+CPCLfj4H7tsqCkDKQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:18:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.67.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6030::4dea:105]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "brotherjacob" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b2WG8WMcrBEVuVYWVudmTThrf0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qGMNLMIYNJBb7xsN3g/0SY3XrI3wQqajlrMvn+PRok0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:45:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.55.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1723 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "y8Z5zJT2Fadx8m" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b1q7xFXNAfSB0vNszRpgz/6x7V8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cIV1gCW527Bgcx5d3cIfjOtEmfKg/AuewQmT7IfXUxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:24:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.208.206.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5130::aaaa:12d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b06f0A1CUdmL6W+xqlRv40Z2qVs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jERKbW5a+9NVSXeCy7Ds/K0XD2pfk/Ml+dsGWqjM+O0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b0ddorgdtqeQKJE2so4jupToSyM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aPnDlgdGeQXcIiZLCrPnkxXUAQehTRylLVNYWZ/5GYQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "badc0ded" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "b0LW9REjwJiGRkqVn38E1a1JTpY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nhl5NrP431/jrYsc0dtT0SzYajxZ8YOk2t52tuGwFBA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:59:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.87.163.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JonDool" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bzD3qUym22Cb7O+F42JlyCCtUB0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4n6JM7TYVQARlFYTUnNfPupvc4n1pSPvVMtuIHux380" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:02:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.104.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7193 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ripterrydavis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bySjXFbDCiMd4h5w6KDISuCSfQY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vu3mO3yJW34Uf/H7E8zpnJP4dHIdFxHGTEE1KnrJ/+w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T21:26:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.178.65.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ohrly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bx0bgxUtYYHKwscm63VHt7m7e38" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Of7SrA9GkJBCQCODuKPE1pwpudc3xmCBuh4AtRr25ZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.225.81.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ByrdeFoundation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bxtKYrAp4VE5GUv+NPWleTaUtJw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f+mLck6ClIVSn7G1JiNpptm6pIN5J49SCDlmmVfpyqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:45:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.3.221.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:26::c303:ddac]:9003" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=94000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Petibonum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bwz/Y5pp8y6UH51RU28xDghyqrc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "upg9cyELy5lcZGdrJ+tjNN/Q7MvfcVox65e/vQdgT5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.248.89.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blindisland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bwfUvI8Ma0hvucGMDh9xn6YBxBQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MYS1K/4tA5eAaePLal9gMAotG9qfdCr8rlEJOCmiNTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.32.66.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bvrDM2zf0+vUXjfKGZXt+Dv38BI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EhBjeV2FRFYd8dc71jF1Me78SXEu9Q/o9KwpxKoqZEM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::9835:eeff:fec0:f2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stoertetor02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "buC+AbUcZKx2LVMvUzcA+zgeIOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QOnfsjXgYPJQV6nugpW8kmVCvgF7Fh+EYTHZ92T3xrU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.198.209.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snousage" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "btwKebCD7M4NG3l7EB7YjrPtkNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YnpZM/+Jq3SpECaJ0fL728liyU4rsaHvBloQ5QpCRH0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:46:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.95.146.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "h2961181" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "btdrK57ekyyHhhobGg+S2MxtKX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MMqtTdACPG19KHfYqo23xJWz9hv6OEjHi4BYATGterc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:58:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.166.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:424c:1900:a87e:747:8f75:a70e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whatconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "brMAITwnxFNnuj8RMqY+p2d/7U4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uMKj/f+DrqFIbaX/H/IRynU7ER/DO4HLqzRujuKduNg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:37:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.206.184.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:85c1:beef:2041::9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bqWn6owvGSw33OsqrUgdx+cuZd4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wRuzZnen/2kH3vefrV0ZVKIUiDw5Nn8FDo2rcBSyGRM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:16:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::5]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GirlYouHawtSauce" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bqUXfBwgR7I40yCAG0so5B3Iis8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cimfPXBolz1nLBxBSfooKbjhcUcaDFJVkXTzB+mOz4Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:22:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.205.92.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BraveMenkaure" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bo5cqbb1Z0Fq2iHpkOd0a8IjsMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6CiAM1cT5IojF5loTBe6NtY52D4VE/3Cqs0IP39kp5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.49.20.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apollo235" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bog6h4+cMz/I0WwzBLLmOwAUPZ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8iCDGFKWdX6jrEmzir3szztriIXv99VqzC/f+oGNyaU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.182.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bnNv9LooRTgaL+5N7mzFZcWn14E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i7xJnbduMO9cW0vnRaL2jHauW6SivARcoY0U7vs0RWA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:35:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.35.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:10:a11:34d3:6fff:fe24:6d91]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ServerAnoynmous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bnM0NBjlLN5N3BTlUMnU750z0uA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RKo9KJsvb7MQw3l00fmZ9B6jmIddum0qNLJm57AFA1k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:40:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.192.76.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnstableDebbie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bmcy4Aw/iRK9yoDPzyPQ0mhqw4s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7ryLzf1X797I1qhvv8gxyLGZH7XAfT3XzyD5aHyuoKI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.57.205.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StrongUkraine4ever" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bmZmIae9OYp/DGf180S88VnyLoA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "79g5J7Ud0+psYjDVYKN5CzGAr/pCarfintnKxRWkPBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:01:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.219.245.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Minotaur2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "blhsj2LQ4VN5IJWv2lXU4uPzQh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0lhCskNRdkFroNZGrM6+SEWA1qxUqQn8rdPv1jS+IuY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.109.215.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bkGLoKCaTdevVAgjzgJMQmgbl/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TUFv4BK+j1fTfx7h6z2dxXY9rQYJ5MhB3JIT0JNHBX8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.115.42.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber34" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bj3SLPQEmfZ8ytxcAkOXdIwOY7Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bQNHx/Xt7nnW0r/HZk5C4ws9oAPQeciH8N1T9t5KSUI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:20:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::17]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bjtIITBdlvFnw5Lb5aEyQNbM4CQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a2+Ms7Hz6cGwL2U6oqTN33ZcvCZnfVA90s0YvSp6JlM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:56:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.201.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:3880::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VenomReaper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bjUvY36dXYgs26RUcz4WkfTWhf0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9aTcfW5jsv4GqlhPbYHLRnn3qabGedPtC6LLKYxzQNE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:13:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.231.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:1a:f500:0:d0d0:15:dead]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay21at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bjUIyyN01BHNQf7o7N9w2joveig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v/m/GniTRzyYGcL1U19vfymaCEfdTdls3AQt8NMl9nI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LuckyBrezel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "biF0uR8lDOBey7bJo3gf6zWWw3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ixK3r+qbTvJni5Ftr6vJyhF0WwnEj2++g+P/85FcZMg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.242.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:717::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bavariaboys" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bhztxh83B8VJuI+5OA5KdQYh/Lg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ew3wZAuSuI63YtCiEf05fLBFJ1mC+8MCe7UCP8DI8uo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.92.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:171:501::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bhbTjFrBcOVgiBe2ZiXF808h2W4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KSmDA2Va3T/izIclc5MX6DTJRxXkthK4YfMWgKQFDes" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10059 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::59]:10059" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bg3wpbfz//tF4aoHjRNvXevSKKs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/Wi7Z9GzyCvnFciZBXCRXO46baALKT1jFnUT3cn4vX0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::199]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Onyx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bf60HATM6EaHEzjoXdWs9c+2wd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wtXRSdgSN5TdqT7W8jT3vYb1SUas0skT5jQs3FHSKpo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:14:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.115.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9004 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:610:510:115:192:42:115:102]:9004" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=92000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bf6yv7+p2+3OLeky+dFu5+BTDtE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D/coL7WHA3+Ziqp8TD6th/Ehcn9lHOwvtIx6a841Hxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:08:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::194]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uknb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bdSKXnJhvWuLPqPQUh8eg+lsoTk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Le+Dl8hJyrByviKZICtPEBnsKnfizEiYPxsRtkDqVNo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "123.253.34.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Chenjesu2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bc7YK3AdMjEggR31jTUN0mv5yyU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LSMzuJNC80Xz7mdiC9t0UtkY8Mm/Ns8BgTEsD9RDop0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:28:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.205.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "someonesRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bcykSPjtx5VTzmDo4hAw6ULMw7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l0el5NQV10tSe0W+n32Qq7NYsdwfDTCRrru02CT+R6A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.180.234.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2023:2621::1]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay16L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bcbNxt2pmRXrAjIHHG3SyHhKGR8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gHjFDEotESrT4qp4xEA6Iw3g0I6SrTS7sKtcPaH+UoU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.238.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:9401:0:acdc::191]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=980" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masstor4ATL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bam5DjdKx6NQ6x0gR0uvVkn1gwM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sQki9f52/Qzvc4eg4VNUsx5BlEJSp7GWLu2AAXfArkM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.173.164.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bZz7PtdpQpcT8vKMgTADTO5mezI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AnIgb1W/74jj3fqMq6rCfNirlYCsfKN/tNI1u7IsiLU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:08:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.243.85.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:83:2908::26e]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SysadmAtNbg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bZNQPhUElrsypJEvkExOLbIFJ40" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+dIYnFdvbV/mCl43lGbikX1qFcBEr7nlMet4MJrqMv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:27:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.45.217.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2003:c2:c70b:a800:329c:23ff:fece:a96c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bXWh7aaVaVw5lKAAg6dRD4Wi7/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RHKqPVNQ8YsH3ruaB73c+4wNvQaQ0XTmREzj6pbn3Q8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bW7CouLti/8tSDT41mnYL8Kp+o0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "38FtystG+NEr6DxSYdGQ8o2fEdn8ajLpI+RhTsxy2qY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::209]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mnlabrelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bV2kS2ZIYS2c3/i2nWQNhu+jggM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IybwbjOc/qDOJOTtSehKc/YsLOpu0mCu/rRXxret/FM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.224.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c0c:6c6b::1]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Texas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bVyuW4xpe5XY6fT+olZ/3tyZgLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wN0jLbUs19BVaJE33Q0uioyKhQeb9bjW6/qc3wjIBU0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.70.185.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "speedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bU4Qme8gjER5/2bL/mq5WjoxZp4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TW75SlkYKy3XWi3NjVIroXl2cuubA00SByYMjESkCcg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:09:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "100.8.33.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49441 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange026fi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bU1Rk6DikMAn/mtmcxEz9wlGoVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/Hdf8m1tu/s/hHKjRdnBzZcqnR0l9tnjs+hV7I5OEB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:49:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.103.110.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "galtlandeu2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bUNURg2Rc5TIK6cyk588xVibK+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j0S6BG6IsExCviGr3AgIP5uL+yFojuGcSaGfsajv+K8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:41:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.91.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3b:4367::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PeacLoveJoyServer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bUBveCAjayr1FU0ssnAR6Bs5bBM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JJkPHk/hPq1sKecZ8CkA2WS0kGfKQdwd10RxTQrYC2w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.172.209.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LondonRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bThlnBf2yRTksBfPPuneNjevgSc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gd4JKBhrfId/Fnmr0j7iAWZjfm0J1dPy+8weEslp0sE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:53:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.101.85.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bRAO4gqDAl5ABcZVlz/1nfINkhg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MyZxWH4Tho8/9Nc6Pj9Av1T46k3EBv7pk66fhXqO9cA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::133]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bQ1hDWPTNYQwjKZySE2mmf8moqM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DkobXZHfki3RqvOIgDSlHhVuzTRYWSQBVs926gEDdq8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:51:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.122.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:1f0c::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "charpini" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bPxHtG5CqddtR7kR+3GeZTCAFO4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7xBwLIV25IjZgUcREK0vl9o0xdW6jLPdhHN1Tupg4LQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:29:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.187.143.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HHrelay047HH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bPBY8VcxbD5kMzj88OmwggoUa0g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DB6zhjrtQaWzZrn7wNColWhDsaJyj416SJ2OyL7a8Fc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:27:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.150.66.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:1a:1::bfda:62dc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Huntergilp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bOMeUZbjlxmvDlUV7VlvI3Cc5ng" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h8MtGZJ2eXW0LHRajHYVbHjve9jtFQCnafDnVSc6Dzk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:17:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.107.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:68f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nsq" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bN4zY/n5rVpupITe+1ghfMloXjE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+a83zGHWNGD+gTdTmm/Dq8+5x6Rj72mQw39IBWgB4iQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.230.112.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:3:e0::374:c001]:19001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raptoractual2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bMdEQA/Su0yBG3tYZLWx+qelYxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fdMgceW4jV31a6RDFWtiyzMlT0RCTzdmxCoKhEySfpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.184.162.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spicyavocado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bLqQ4xGIpl4rasHuhBLo3lceytY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BL/tQFrIJSGk+8xcvU3bQ29zQBbBV5TtJogwr3gfDAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:25:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.132.204.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:261:50da::2]:4080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra25" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bLGAmPUIGd6rIuNp7DpWYaVSpmw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9IgKELEUQ+cKkcDUtfRwEVvMKl5rVmW7/taBqqorYog" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.77.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bKUbq5SEm5uTpdAzcjG0CLS1Nnc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gssWFpKNkoJgjQaPHtvFdavuceAphcWaZ9H7B4VQBDw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:39:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::203]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bJXoGoa0jbg1rhQxJ3owExhCKhg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AlhDlnoc/86vsuIkFaKZ7yHxrCvbm4t6b+fQOqJctY4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.117.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheEpicOne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bIgGMLQzVFFASdz+43oF2Admpy8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yJtHkyxf0jmj1nNvnwMVNnk7DV6zlFR6IDPWlMqcvpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:23:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.47.29.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2874 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EVILGRANDMA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bIHq44QgvfwoDbhftwiVnM8EE8M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ByD2QvluulItBCHpuwbEgj3ae6Ay1D5kAO5mVWZP81Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:03:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.235.130.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bGl0ZEOPZN8PxWUbFnrDzqIxjdY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6u3+tia5EiGaKLunnhCzid99lcJ8atPVVEq/bRtSzYU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:06:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.228.129.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49980 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bGQQDY9wUOdvQgzkBAMeq8cQESQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M89zixULOAuqLam7VloUORH9qurd2BSIrM0iif96MxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:20:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cerberus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bGIMNcDqFmV5YIgt6Isolo68hok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uPaZ81iKSmcv6oZeJZOGDBp4bGu/MNUwyZMBMAX0C7Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:44:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.119.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:ae6:e6c6:d90:fee8:5ad5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OdyX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bFh1q5LIl50NZslS0BfphmFI3e8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "txJWzwncK8igjFApc5aakInVcKmjaeuneFskCDtb614" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:10:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.230.141.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uqtilephataz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bEmq3qV9OdyP96d6oy8mj9xC4qM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vTbVx+dY8TIWzPlXCPWh6YNSahcbRoiZuos8yDFF3Pc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:03:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.212.239.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "charmingpi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bEcT9SbSh3nX/P9P1A2JBEzhr04" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tl0eV+Odx0viL2YgCShttHC5Gwt2FbKfzXwzX83vUw4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.191.57.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=690" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bEGwjnB2Yu60tDbwjLn5M31SCQQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9bunH1Jq/+3P8zIzJQTqpDFOzLD1Xh3Z5x4KtoP07U4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3647]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bDogiARF2MYhTQY/e+PV9cRMHvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nY4Ad+vATZHIMdlNhrLx/bF4PKBAlyaa7T5xNbHmPRs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:27:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.129.181.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gensokyo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bDVciWcLtzySpg/rEKbQS85y478" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R1gZg/FUNHaW+DYgKX71ozo/7skBSKsuJGlWCgkKX0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:13:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "118.27.6.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8500:1801:403:118:27:6:60]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "czechmate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bDM7W9uj3+enguQMuXDCcav+0Rk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xaYPhce0TWxEJ7gn5OG1/lMBL8Xt/SOze0tqQyzeslc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.17.127.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Schneewittchen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bCgtNcZ0oDa3m18w6Q0Zs2PT2rI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8QuvSs3j3gwoLFTe4vujpeg2GS7vnTrrFrvUOFQcDNk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:53:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.252.191.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:10:41::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BigOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bBsojYc8daaW63Dp/3E7eG030ZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CdukHPbW0x97IXUuz1J00QY7NS3GTh8OBYGT8O4vXAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:50:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.38.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:aeb::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RespectHazelnut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bBinbgX0SFtZ1ToEeGOvgWJUuWk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nmlK4fKJpQOWg1xyGuRh8Dla3ivkTlcrTyF2FJXUpF4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.164.222.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=710" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bBQ3IP/4Rp72pcW0BmNmNAz2wNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iqi72kHDZLaVOeZJ9N5hPstbUPN5WITjek8Aub8otXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bBFGHhiWdLhqde/ioeKyJxOkbow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DV+3mIF7Qzc4fwyPgj4prS/UgUb1oKjPmi+ys8y0QYc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.90.201.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:39::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "bA5OIjscfkNm/6ujO/AzY2qGeGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DgKPyHkCh/myOfhakABxxitNxksHL7Br4En5jXvsPq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeProgramThink" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a/rmIrVcg702gC0YzE7x5h6BNDA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2WLFe3e5vHnxTD7b7LtMZNQPqeWcNLpM1fJrmADMt7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:04:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.61.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aesop5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a/OofCG+7l6q+H3LNRGqOm9eMjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZXgUn9Xev7Zlz5ZxH8yO0hShupp4BZXCHFEDmU/y4BE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:29:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.214.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tormaumauhosting" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a+WqNKXDkXJGd6P9wqp3s3aPbiY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8jGxsuI5HN0qwSxBSDYQAHj6RgMW5VU+Pz22KucFhs8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:34:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.184.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1200:4137::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SteinchesTORGateway" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a9OhawoM/mST+ce0Ioz7GSRo84o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZY7XP4dP4fJ5PVUChQeGXSJ+wuqOUOGRWL0iHrYwj3I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.88.108.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:810c:a40:3997:a459:62ff:fe02:9c60]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a8uWSrdOI/iYa9qQVpfTpr4Iryg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cg/xz/4+xizKyujeI8NgOq1e2qBPpWwEGP5Xie2+Ha8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:4::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ppebDebianRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a8fUt4QtZUwqG6v6ygjSdVNHlOI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WD7MhPy0UbIiVFIOY9kgK7hpSwHXKVEjpDKY7GqMuxQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:44:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.99.232.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BSSP10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a7C8NQitTGvfNoa1ZgOeTkNciiM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5xHDcPj6Tls/0vfG4CgPPsdzpPcWzhtVTYb3ZeLIYJo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.235.29.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raspitor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a52WXGFJ0J35cMHQhqyPV1ZD9Yc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2u0Fm3lUMCUw09qnh6nTg436lTFE4H8NjfG4Obk3934" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.171.80.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:a461:156a:1:96e1:cccf:8a69:d088]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AMDmi3x1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a52DhD29aG27gGaYm/zJAwP2ewU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vf7Cx4+NYfFh7NL+D1ReRrJol/kOBDntLlM2PuAD1cc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.217.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:9300:d1::101]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.4-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EnterAndBeFree" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a5Z5b6mEqtN4u9+WNhkTMPTpoyI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NgZ13jg8KJ1i/jJm5g0xMLH0XD3vCujWO8T3s8O0gYU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:22:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.109.91.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "slacknet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a4jiD+6OtH8ajjAgfzJwBcYaAT0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8en1mB7l0sBlBHuH0l2O3IH6KgNmoKaTnH76qAyZ5CA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:08:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.216.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:8261::b0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a3ZKns7qp3Mv63TIOhPwfc6eAWg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vDZGMfUtC+Ifnl2YFg+bdvZnQa6wcX2Ge0VBfOA9Ml8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a3YvmNFAk+w2/VBViX5JMx5XnW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xmjal1u/KcIxKmFfwHfq7bUYqvhtvlL4ylGHnibN/rE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::11]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "back2bsd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a3KEekrKmQbu1GAsLjifK6t/3eI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TBQkA8IW7N3BWj5nxxH9ND+xLi7P/p8Yuiuij1EN0Wg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:09:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.232.235.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42069 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wts" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a24QWSW5Fkd0lGjiPn7hUAggHMI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b1LCSCdrGULIhvFvyqDBZZ2F1SodEE1cvxRzWLlTTj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.100.255.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip6a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a2Hv467eszUf08kQRD2VVWMW4Bw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gnx59y5VLoAwqV6SERZ31A5ICslOC7fGIPNm9EvIb+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:08:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::253]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1167" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a2EnEoFK7S8cMH3Q6H0sz1w95NQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1ePA0nDG9SJX8XIlb86MO1x6Q2JpQN+DIL4fh5EYSkw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11167 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::167]:11167" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a168eFcuO12xmxOazh17/KLreG4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+c9wOuwhe0qYomKBPy3syLiGmXHLH1RXwVp2EiFYU8s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::7]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schattenbahnhof1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a1Scu2FUI81X7O8O9KcgVP4IjCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jyoUR0EsF9uGbYEcMWS+LpUM5UwPhCDJQelsF4Ao80s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:30:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.53.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:e34b:7cf3:194b:368:22d]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "delfin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a0rLcxn6yylJ1OuB9zxN7NzS37U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fdl3KArqdmhkke8eX2Q4YiZQ83As5rYitYoahOgutz0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::76]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH110" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a0bnhEMeMJq6EDiPKP50Jca4Kvo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eSOf/VIKAbNHQcQszOlg/z/JejIhtYJm/T+iKwyOzSY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:210]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who4icebeer35" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "a0T15iVbNzExIzd4I3ndCC//4kc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CjSg5Cdt0EFhaBuTsGyf4BiT/bY97tiHQL+zCejVPQ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:39:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.190.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8192 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tr4nquil1ty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "az4m51nZaPoZkKOQilqMF9G9dIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iUsbqaLsAuRexdUNs9ky1eCAT8AtAKwDSLworizsyf0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:06:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.252.23.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FalseSolomonsSeal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "azCcaawsYuWYAamhlnILXtTBgrE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yob23vVpypT8h0tolfNwJiO+QflWwg0qhRGCY3G7rdY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.236.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 56392 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ayzzHH+TUiS8IoXR+Kk6IIxxnEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3pMmpkpdnchnDdUOdTO16fPPOX7eIAR6Q9HtRh4WDWo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.39.105.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 53114 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RndSmallrNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aysBDJ1fn7g/0np731EVyi8QcBY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S56b8hn6ZvkI2gx2SXs/DD+YA9n6iXKuRLSe5EDMLPE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.42.171.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ParckwartAykut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "axhd7rJJ5Lphguygd1MMRemKbF8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1uG2NBWJxy7K+YrSUe2SFJQ1/2nOj2gfx6TfSpLl6IU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:05:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.251.249.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 24107 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whatarewedoing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "awKPWKU2akU0J/+z5pPkcOZDG8M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SPscJk9ahtrG+tmkXqAatld7S4q0wyQpfqkdbTBs204" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.107.238.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ACABenterprises" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "atsGPcMTszDSK61hxfo8A3xqhbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KxZCqGt+c701dPR4JPPN9kMsx0hGs10wbKtuRvtXfZ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:40:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.197.11.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OrphanOrOften" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "atPqVbh8gJcfNT66cQ9lUCAqk1U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bnz3ekV+1IVT4H8lsFTkHeEjpLcPC0qiJSReAdmAHdw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.19.157.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:2700:1:1008:bdcf:70a4:ad52:f4e8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cg7dXjHfQs4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "as1YTy+qddlezPVMpQRCK654pUk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yv8SRV3X0qW/BPL9mrc0lWQOiDufwkAvo+5EP2P7p10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.170.133.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39138 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:cb08:8a71:f802:1e4d:8817:f93c:9b26]:46101" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "asrsz1eMROqhYFnD5sIGz6aTPTU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YvKvVltnxufmW6C0cf50z6hzsyWTLbb4aK85OpI/TSg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.32.104.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OgresHaveLayers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ar/JBjGozaDC1D0maHjb+dxbpIU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KvHNIL5fVYjqXhScZ1edOrZzctREQOs/ybbutMvBv3s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.192.3.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 41040 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VeryKawaiiRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aqnJ3XNAjdaOWjten9G1PCwZkGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A1xCQlkYMrQ3Ia2uID172NFfkZ5VG99v4QSSpllJ3n4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.226.207.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8001:af00:51de:63da:55f0:e2cc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tortisserie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aoTB20xQk0pX4T/H+T6lIXug2rY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pzoFe/wHkUKWJqoNah3Y9hyD7zPKUvVMPD/iy90lOJQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:23:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.57.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mortedabo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aoQEEY3qKsh/MyZBmiG9413EP8w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kMNwMPjcXak9uUiWg+TzJDhyIvFt1OXe+dLRgzT1xHY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:10:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.29.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorMachine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "anVR7uGPeKmBMJboK/hPdA0yuRE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fGzGJjNL50fAMxFyFJ1dEQ4WYi70jSqjT20ncs93na4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:38:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.16.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 587 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:609a::1]:587" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Frogger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "am9t2gwfB/7Doh5EAe4jUzbsbtk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aRDgoTOSyX7IbVu/k5y7YzxYu2Z/OdHaAWU64mR0EV4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:33:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.24.168.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "amo0tV3xsKHZc3ZyHnZpomrNRHw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w7mbSCJCszZWk82kB6Kqsdk33lzK1eNfgh3VCzfuWtY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:04:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.132.144.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:37:3:e842:2ff:feb9:c49c]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snub" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "altlC4MPQIKG/4cHGNPQC1aLcEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3VFE0lwgyY47pqeUNNuuEkjVzahUflfNON1EaYoK9UI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:54:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.201.63.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fce8:1::74:6f:72]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nnvr1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "akZonG52eGif/WUGyzm5ew9Eh6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OqpaKlVT2tlQCj+oAdP/IeDo4582eGLA7vbSKQ8tz68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.39.149.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4ce0:61::4fb:0:2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maxomeister" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "akEqCe79GRreTuSvC5hhHhChVAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OuI8YPujS7VrTVtLP49IGeUEQw8Cf+mQrXfck3pSlTs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::160]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "magritte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ajZYcHWKHj56nuDoK8wNYiap6qo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pQl5toACHNrvjM44Yui0GTAPrdiGlVqwooARHYG20yM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.195.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:8:503:48d:bff:fe2a:1010]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ajL3S4UdKD2ps9J+qzDGMsVThdM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ug5FxTBZLtllerEcEvkEpgBpJZcPOPgYa+ZO8zUD5gQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.91.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangstatestOn175" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ai8MBVoc3nd0G6fZPY+uhWyG9Uw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GeJ1zk/GS7iE0utmyYbEah5iMCSvLp7TGs8Ot1pyrqQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.214.144.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:51c0:0:6d::175]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "neurodump" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aiZ22sr9vQDFuUvTQ2kJV6Ert1g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "neg92ALjaFrmZqKiU73zs9KyYhI9/Vacvcei2ZlNHKw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:06:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.93.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:86ca::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Infernx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ah8EL2HkAbwePybt5yKr/mf+WQE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/5XTkQNZO2Y9Vr2Ihtvb+ttb6lWNvMJ4iWb6RDJlwnQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:55:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.96.60.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "minty004" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ahr1xVmFoy5ERi0/XP6xcBQY2dw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bkxdxweif7LYyNbyi8efS4vn6Gv3exdrEYaO8x61U6k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.250.81.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:488:67:1000:5bfa:5134:0:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ready1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ag8ajc3BXF778wORFXigCaNtEe8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oNcQOe0x8z2sJCepDqPRhBLvGOM6FLQHfPjIXO48TsA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "agEVDqsEAH4uCNnGA7FGcZOAWwY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NTSYxPOhjfQYuLv85D6U6//4MvkjrTZqbCwwirAxuMs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t4t01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "afi9QZk0FoUp58oVg5w4uRE+fbo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pgy+jT1P3+Rx1EsVH8dRQoIDTofTqIlZbSMcBhmFdwA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:30:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.41.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=88000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "afg6FzcYRqC0unobjL0OHJueotQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+3+x6b2+dHC9h7AigeZhEkTr5bddN7ERkiWlu8fhCuY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.224.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "afbH7TuA4Rcws8JZjjWUjoxiEns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "obB4RZaERz4EvSeHHu0L0cN2Du4yn42SsD4l4f/Hnv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:41:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.182.84.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Orodruin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "adnl8g/jsMhyk2veQdE2oPJNaZU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "adkLkqIdhZg9wCMWoXIi2p7Tu+nBCIKkFFCnShAgWBw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.25.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:d1bf:b0fe:3472:9c9:60dc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay22at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "adf++bACY5PC/XPol8ccECq6ylw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LRrW2vsw1uCYC6ex3PkmN0jPUl/oGk3tU1145jDaZ2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SlvnCoAlpha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "acwlc19+ndPYicEb/z9pUBpSp34" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p79vzGCGsQRSjLgdp7HDZhQv99eJMc35+o8ha+MoAFg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:39:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.107.176.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "acm/oMIor6BUip/5t8jCKbaqn6w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/3yAe0hTTZvXl2iUUjKNArrS+6/X+l6KYDO69yLnif0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:30:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.158.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fortherepublic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ackSU8+rViOebD71WBYJxvH/i5M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HZsB1LQE+jJ3oETpXLmTaRA3TqtAa6aQHM26OJWCd40" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:21:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.191.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "abU6WuUCXaiUf3wy9pypA3XtKk4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MdOZjOyj56exl1VhVDiWH1bur54Hu/sPA8/GzaaABNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.68.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "etai7ieHaigh5Hug" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aabfaBtkmo5KvXr56IP2GEJvLCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jJjNPXGY45xnOmx3CH5WJWyoTMHU3nd7CoOZctWnE0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:44:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.250.228.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5574 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuakeSARGE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aZcBPLd7b1MFQDMmJsI6z+UsUJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VEqDiE4/xyzVSiCVv4Qekhfv+w1oeI+8euSd+bgkoMg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.199.162.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sovereign1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aZZT5d8JS1Z3UnX4pPS/p8W9Xi8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kndb+FzVXIfTTA6C2aqgCSV5aepaHD9wHJzySJGVMH0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.170.10.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c70:130:1::506]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "greenlantern" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aYuHCM9OoC0nygknTzNRtPZqWDQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QYNHGufEQBNM7PVmvkW5gdBDAsmA+RFgw8A6kt/Hn00" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:27:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.158.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor2lhvmct" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aYLXidOHXCFDPW7hCDisX9xrqCw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7gnG3CxJBSnkoc/Q1s1EARYd8e89Q35Pb9gR+znzzqI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.31.67.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aYDG7aQduHLMrL3bIt+sxmQnRuc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r5K6k5uWALUUPeuEx19TWg2Fa/RFIzYp5UkGkIssFjs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::2]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrgUK" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aXTR1l5CF283nlQ65XiN6FWZ40s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BWdT8z2XkOR+8eAn10fG9L2wjcyBSzC/dLd+ZHfRxr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:13:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.29.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aVSNT1EjqzmAjMnjtOXBw2M1M1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JWGN42ks39MfCRMEcyPCrsh/HcjXUge9TorPfY5y/QI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.39.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tron" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aVKmx6E3u63MtdxGmwpNBkcxLlM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WabPDRRRhzrLmR9iEU3oW+WDqrLb1knSRDXPtcq3qWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.9.249.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c024:c001:207e:2b71:7031:c7c7:abec]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=890" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "octavsly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aUlwNmUxiVMSB3RrPQ5Oy1aIjzw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VYt70xBYycs3p5Y5+4tlxYjAauGOt/Fw3s6x1SHgkN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:53:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.168.32.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aUAkfgTIOdJoVD5/YlZqkeQFZ+M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e6x9IhCQwoZxG7LAIOoHn+L7+eYJwdsRMQzZ6Vj8JUo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.229.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:241:ff99:0:c:1337:ffff]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "m1an" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aRbXEyuwN2WAkUeGfjMDU41Ks9k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LFJkCb4xozW9a4e9cVlPz/5WeGPvKMuzrdNRF3BzxEA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.38.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:382::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "URKIGOM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aRIiltN/x9M4dT4+wZvGZqEFZqE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OlN50kdh4ukgPORPKtdxuuzgqiqUSI37AixWwZ8zocs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:26:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.67.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:80b0::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=88000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "randomretorng" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aQ2kLJxHV3o4M5TOSvYb5iiCTiE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WL5u1on2a/qbJVmkv53+KnO75um1iWNFWNrhz6Kjzjw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.138.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aQQtazAfCAEF0RR4pbyEjrC11ds" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HUYXZPM572GY26sqcSii9SCDxRoRSx4Sg6uGN2V5ZH0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.195.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:747:4804:22ff:fe7a:e606]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TakTor02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aQQtDcM72BC9CK2tvH6Vo8q672Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AlB/P1jUtWaro2fRV/q02p+M205OCr0N/RTvf09qOpE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:56:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.210.233.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "etam" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aP+l42uVJXb5NODAlC8+Z7L9IRU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HH6gYL9c5Swp69POSMWPBQmPjG9lBm+7npSgPvsyjZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:43:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.72.43.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c90::25:2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORminion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aPvnKw1BHDFOx/Jyy1s/FMJCkkY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M9JeNzH6K6s+wY115KK/OOiAAZLxnnmeOHjzanv7cCk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:08:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.255.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Caribbean123321" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aPmqLZvTCT38MPwtyVbJiUeEo/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BnisfzM01Kw0AfDilovjcTgmlhKw1mRoQUxMvpsLbYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.158.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:93ff:feeb:5a7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pichincha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aPF1zKvnJ6otIwm82HiUmc7jbtc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7aldw47rMCx834bwYfGEoiaBfkkxUNwml4WmRil7vWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.139.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip2a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aOxlfcilh7ONXXdj1ccuk8LNRWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DjjtMYTjsAOTU/J60Fv2NlpMAMISBm2Z87GDaYIMsLw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:07:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::249]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sFtor4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aNKr2TYjOlaeK0bWIogWFJoWtPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yyYp3A4haKibKWtQ5wuJdOZlCiCEJ3eU3stgjG6vTN4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:08:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.99.31.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 34746 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aMO1QOXRUUYaN8se2ShWPsO2zcs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vypZHwE+v3kvicmerMpjABGT1Rnr9rxJUbM0OBKC/x8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.41.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vpskilobug" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aKnw3/x8j1ez3qOAHWzwAWUqgJ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8UOqeKt6zrRqA39j1mgWe+wivNtbVmpY7rFVY3YzeVU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:57:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.206.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aKVOGA93iv6Wx5BqUose/t/UKkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9gmSPz3QxvIsoy6re7IYpiGtEIAnETOgAC6cZn+A/LA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:20:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thedevilskey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aIPHH6t1fmRz84JiSQrkNv/R6Og" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ojjK7r30h1vclbVw59/gJSEVM889dsfcU18FXQ/urwU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.105.54.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CompassMetal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aH0Dwtvf8KnJ6PZFFRg60iZr4Rg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CsU6R/g5PUbE5lj3+sdFREeTB6XnHIYVIIar0C6ZFk8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:28:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.187.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:80e:4860:48ff:feee:9d88]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aHhUHiYTlG3OHkVDaRkCY9RzunM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FdXBi2tzo3haWaHGELEFcmnP1m8G9ThAnt0BIkDMFIQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kyu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aG7sO1EFi4JDCTxN5HMZIyy/3MY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eAC8rai8EGPKbrP92E8++ds5ZzObmb4VXH568Ck2lrE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:50:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.240.210.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:9dc0:c1:7::fc6:f87f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tortule" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aGxqdE3Z16DAfP05W0WnILfHR4o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qx0Qf0RfjIw53NEuq0wgQIK5lVYxXw3WoVvWktgrpoY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.130.20.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 60501 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Plutonium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aFnXHj4TI/lZ+eBVnoOpCIxGJoQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k4RvSFiC/rKKAein9JDTcBhEjxRGaYNpod7xuOXGUTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.137.249.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc24:11:1fa2:23:137:249:143]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nevrlands0nWgcTYg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aFa8nneq4OcsTg+PxMjhutcAf5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r1N6TWhmmATUrd7DEM8eMs9GrMxSWjsvUcnE6x8Lj58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:06:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.27.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0147" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aFS+H/Z2BuKLalAMJb48/OT1PdA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zasb+FCbMljM1uvP4hQTCJRbJrk+XYBDycPmH/48rYc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10147 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::147]:10147" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nixytor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aDpC79TWULg5iECjoZyjnNlhx+I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OzZ4qMJ1uLHQhCyjGacmA31M236a59ArOI4KPglgWtQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.144.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fe24:47be]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CytraNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aCx4MVdXXWDWV/i2BSvMjnhUGCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "08BHyjoklf5V3oYL6yPWcXOEdgLQjYwdCnzLSWGHpPs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:26:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.237.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aCfidzuOtLeGC3d1qQup1Y1Ho/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FqGDyl2hXAP2yq/kzgdCSo26BCUmL1lG+UG3zgV93Bg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:44:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::211]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "terNOicebeer23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aCfB6bsFCVeLUocZkLPQZ1hq7/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x19Q6bvahXAVwpS2lscusz07SOGP5nJODoMG9R0iFYo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:45:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8154 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:46]:8154" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "a9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aA8hKt4jMRxljMVg2vgNtC/rhd8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YkxXNZ+gsxTaa/k2MSY7O3CrAjprTmycp/z2kKBgQIg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.12.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:160:82d4::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorDedi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aAW9inFLpbW2yEMkfgDtjtV/YfY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PbEuFxxxmJP9cIOCNkWW9Vi5FV7yp6zuSDgYkLpcUYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:19:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.28.107.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:2::762d:0]:143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "4punk7e2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aAV/0wKw+DwO0AttcP2ta+7yAFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pjDTkop6xcBJ624o6q7Fbu06FEwQfFZ9hsyC0L6Okpc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.31.24.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "getrekt2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aATUElW2X3DNN9/07/Obrm6u6sg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+I9YDNMM0NpVD/Z3rP42AA+4GVb1xpMP193fZqZFiiA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:02:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.137.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 25263 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eatMyCannoli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aAKx96rcFp3YZ1Be934QOqKprvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yhxUk7G3nMWjxnCVlmjAxfIU1TS/r/AjdQ96dIzkV1g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.13.201.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "aAFqmsR3rgObjuB8Nsq8BEASamc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ovF8fYyEnyWwFJrRGbbErJtkRUpmyyhGwArk1nKtYGw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::195]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hubble" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z/WsNduiDSKgF4v7b0rAdsOxaCk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AOLr/2dYPdK7TJaReF4z4EDSuJ3ykg0ybxnBbclCMbE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:49:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.89.32.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flokinet2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z95ychWc/mKM3xfSpxmm45W6pMg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gkCSwfhHajCpYtfBNnpcytLBWYwl7/n2K+YVGFGT56E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:06:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.246.188.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:3:19::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlockHouse4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z9HYhb+IuvXcbTHO6IGOxfvjs9c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aQOp+NUmlSs31xmveL+tSkmd2yjM5B0pxedW4vQzkT4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.98.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "khao" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z833pNBumOVarllbvr845kxMy/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6ODpSl5DUN42wPWUgG75IVZKAGFxolKVyL3+J3czqNo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:04:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.194.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rotkraut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z7dR/xVudva3Fb26LyPPLTvkPPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "py2mcnrPUH3UmMFeZhqj2Qe213d1MoGTOYZZ3VrLO+M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:03:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::7]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fuckfbi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z6VO232t27weigfx74I2S9qolrc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jk8rhTSvpTzZch3KkJt+zQKr50/F/OA7j80oFggB1Ac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.51.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:1139::2]:9993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "420690RelayOne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z6BQsoVQOvE9Oc+1Bqkrh+h5qlo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mrCk8M2r2qbazFvBlh7Q+o0EkRabrNyl20ut/y74cZg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.87.135.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ff16:10:0:1:43:0:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayonfrazUrbluu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z5blMWBxTZCLObywBYz0iP+UAzY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v2DpJwKA3PrrcQBwI4AzDHG0RsxXCozEkySegwNoknY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:21:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:6::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyPiRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z4xGdle8/u1MPVsSgzJmwXyx0ls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3UE5YgcQOO85FU+bW7NpCxtOmEP0tYaz3PlNbj+7N8I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.228.41.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "abnormalbonus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z3NHRB/dKuoivTZKcXTSd+kpslU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FYIzoaVr57QSI8BmYBolptZZR/3Lq1YNr9eLIoOrGhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:14:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.180.191.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mullbinde5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z1z6w4vjyaJsOi3Xy8DmFvaGJMo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1O1JNE233TqnOf8pTHBQW/kEv3jdTK9chc9cX0BRZVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.60.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:212:1b8b:3::8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torshark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z1ScdD63qdBqdeN764JBfrsi6X8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HAnnDeUIc9nQGsg2o5LqPZgr8tL8bQejE78IiT+buNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.252.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreedomHub51" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z1GsD2/BHbX6jLL2DPUU9H6SlwY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zCvahebX2/7jB/HUNSQoYyhuxzvN684+Bez6D938NrI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:46:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.14.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:3b44::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mainframe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z1EOU0GRyRFfCAxFZbLx80jN+ec" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SYZfRx/yiw2ebVFlaeKx88W/yBG69u23GOQZd0nbyOQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.201.240.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 24192 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 22154 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z09m19jG8N+Zl7PJQjqhU8mI/nc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aEIEZdmY9zAeHrYuE0ZZMG03G0h/MdEYCls4xCTPYkw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:34:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::200]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex91" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z0i6UxCXqTB3b5DiC277o1GaI8A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yzxVNJlNqEONIIrJf8heTipgHEGsW0dyWme0aXSmcZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:55:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::180]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elc4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Z0KzTnNcDd1nuQkg7yiBlzi2PsA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p+32In4WjIsPNNP0edTidnPUVHihUK4GoaLMFDm+wDQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:24:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.31.35.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:522c:24d9:6a97:78db:2bcb]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZzwIGpUC1dOrk5X/QlcnS+THqKQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5R0eh84EDHUnbDO4cjnMc64xWlEGiWHVmWni651kZHU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zzq1sQHHrrQE8Q6d9ig8UN5Owvw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cBNJtUtPVenWcSYGEHlBVGiUr3L7GdlwvvLPWhVsfW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.227.68.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 17497 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "recklessbolter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZypWpYPGWDcuY6zrQ+f3kcKBlUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yv+3A11/pfQBm+6u1qpK4QcQBLnp9gPGWHj0aK0sUTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.253.94.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BKDRwUuF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZyV8otPvcnroM5phhLHVaz/bL7M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uQ3m7TOJ83rRNdsX0nW3KkOGK6Pka3l24DPfDqs9sck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:55:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.162.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CaptainMarvel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zxpoq62hQC+wBnYFX0jqEjubBgw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nL0DmbQldrk3AgbV5c+TstGECQGhP9GHDtWqzaiOx7U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:25:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.162.9.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cyph21node3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zwx1F/hSXox4edbdd3pbZkdbgEE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "revdlcSdQzNZSi9c5eoNwg2p/McPZ1wSRzzCTzd5/co" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.147.62.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8004:9d00:7b4e:e634:7e58:3aaa]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FTMNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zvn9uINrvDtENqCNVoMn0b4JINo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "09L8/1U4XtuYMXu4H8jAYGjWrk5aBqEg7myANhjZ9fI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:59:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.238.241.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH116" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZvhaY3+yn6kJ8HfH8QpoVAI/iEg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pXKcMLSinWqyLN96oZlIr0/ANEO8+/xxMXjqtBlEfew" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:35:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:216]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jehovax" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZvdB9TvlEkOEuneJUVa26ZdtP6Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4/ZPBScYYUUB9FgnQQLDuNzHM6557l96OHPhi9hXXz0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:04:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.76.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt56166" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZvRcnLkB67TPJDcKpWomJVB8yVs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G9b5qoE33yR5Q3KeoL5YBrVnlPfB3NsDn06vT7UqRkg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:27:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex37" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZuGejEdzCG9mmh4Go/jCO2wHkSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jcjh4STvjI69BvS2uLjmU09+2Z/Tgb0hunHpVoIewQ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:05:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e656]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Seccom04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zt/FHnJOON3LOrZ930wLsPH0nAs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7Ki2MHufPOPbiQMOeW9Mi2t48thH3Zf3NGAn1ueF38Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:14:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.111.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:1000::db0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZtxyZm57+OPn6z6YDU4mXFQ1r7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EU2LBRhgV/SBzZN9KvI/TO1XUHMGYL7wpuTsaGoAm2I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10132 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::32]:10132" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EFlat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZtuDEYUFZT5xEMRSDfFDtbc2WK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gvv5ImGm/m/4US9y5MpQiYIUmQL7LgHoDnStKDYQlN8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.166.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "globohomoEvader" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zs74BYlZNqpVHgWpQjTLmlmYGvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IUAHZS437RL4t0Nl+tmpN+k/1hsZg04vAgY53mYUC8s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.128.226.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:23c5:ed96:1501:6066:7572:d5f3:6c2d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kbtr7lv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZsEC+l3fSMnu6wSMFjCTO2bFDsw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vRK1U2gvzbwsGlhh29nYgNaaxgBnpF4VGK2KO6n3HzE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:21:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.115.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hilda" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zr05/oBa7UFK3kAMqthiycw6w04" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DPK8HhOT6kNfEgkk2wbXC2iB+12b2Wfa76kXjuDj5qc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:57:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.238.11.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 51101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f12:372::2]:51101" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=99000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t4cc0reTor4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZrvNDVj9uJGths4iomE6m+48onQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0iSSBOJGuDWmfOf02wDmbqpJr8wvClAVs6TRhZKF3js" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:29:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.113.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:182c:935::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedcDc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZrrEiL7iBGX1aek0PUQcthldesI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xSIykaJWqva6gjOD6Ov62IVTkiGp/AHbTf8pBPKfMLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "daytoner" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZrBtWb38kOvG7eecVYJ18s1HmbA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9XJqLCCwPLKymUpvR/7QmlJBwVTAQ0KKdM1+mdjAwgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:53:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.74.233.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AxxoCentralRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZqtcDJYifhac9VdsAL8adHacP0g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+FVsUoVkShXmjnpGcrBFJyqCrQXuAkrnESE0MhAtTJg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:21:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.33.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5140::153]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HRMB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZqmKUkW2s/W0FA4E+usSCF/GpQU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6484p5qmikAqspwGSLMPXBW2KqT6qXnHhbRUKBZr4MQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.239.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:13b:110d::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=77000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onionsalad808" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zp+7+V0nPb02lrZjegbhK4sYQmk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dWS+OvaYJ+ERIx5ggMAckRVYNR7M5yHes3hrS5iDT/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:10:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.147.111.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OnMyMomma" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zp84sFmCUOJeIhvD9meC6NXmaa4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tiqqU3mqcj9Rb4gMBQ7wXVa3JQMTf0IQepSm+HLUa1A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:31:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.139.122.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "justanothertorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zp5QNLbeLix8+8+erI2fWkd1eZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "52KLeNfpkUe8CIZTeovcCK/BKuOWCLE6BBjXv70vLO4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:20:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.180.154.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1158:3::1d4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZpE5yMkAAtxaCyQftDKQxVKI64E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GJp0QXXfh2XMYL+YJXDDxTfp4X2SO+OO0Rc70zfy9DI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:55:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "150.43.61.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quiv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZpEC5vqOEWrAX+gjsGNLREmZROM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SCfvu6Qkfj4jYeOrlroWCSom1aGDSPzj0kHHTngvyMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:02:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.100.6.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "getrekt1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zl09NDizJqUZbK0xP5VKj+DmP+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fx8/of4+2ibhUbTOfXw1TL6YJH96+jQvrbRmjerdQDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:26:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.40.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tainisia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zi21Ulgca2yALxgvF+vUvMNZASE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LqGoH8sJ1Dww38/NFi3GsPin53uftubqRz/jOtTqCw4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:27:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.193.15.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tacklinfuel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZidLtIOD+ElDAzmS4hgN1k4l9QQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m2lZvJUEv1SxsfnGLzHlbRckYVFTnODHxFHACAXnQig" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:40:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.225.218.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ff16:1:0:1:1df:0:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZiTm4MV6Y7aG1FFQeH3VbD2e6Kg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tdPtVA8bFyOOub+13ISpSHd38RBgj9oz4nizgcGj6C0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::8]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ExwMiaTigriMesaMou" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zh4IU0+r2+CbpQX3pzhINxxu9zI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A1iJwu5Z1mLEsRawYRXbDQSTVfBbSYcZiqJDW1JH2Gg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:45:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.212.72.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:648:2ffe:501:cc00:10ff:fe8f:490]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZhDcGvf0YY9br7zcqHAncrJBG3c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eW9vvJvgADkTwP68Q33+US1bBIuzbLzVvSZyBBF4iUw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::227]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stimorol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZgDFYOfip2Afb0sBmULJ5NR4cs4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QlhWrpK4AxQ6TrWzdA60r2ZWsuIgXvC7aBuN/mPuuYs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:27:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.236.203.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zfhv2LksOsAYh9hrIXHmV9XBn3k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K+rwXWV+QdW2Q3UucyTeSVGhJTp3FzP/IWWL3F8Exe4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.146.176.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Schnurpselpeter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZfOcoeTO9LtepdJvaHWZIFr2FQI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aNMs4MCbu5ALvt1x0je7sk0ak0IsyBaIq28+B5fQ3rI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:09:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.106.229.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:61::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "emankciN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZfJP6n5TFRvM3C+lRkUwBhhd0GU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lZg0HM20SmBU9hHjDG9Tl+QF8aNvXI6uzNujgsTRric" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.75.112.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow006" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZebrZ2YzMoreO9MWilkTTN3SHhk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DD2VuuCj2yiu7uefmUEYHzXR6gXUqz0fUNM7p9kqNTw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:07:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fangio" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZeQPft0o4s8oaE4w4Lq3cGgZz8M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YqvZRbCmu221VC4JHU2dVcU1dilNk+B8mX+ZSyg9qJg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:32:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.169.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORRelayCAN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zda/sxl2LzSgFaXGieVuZUS8elU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Le9rbGroI5J8uY76rBWqevDxN7hWTqHi8qWgQWb5um0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.222.169.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelayTexas4Tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Zc1F8/q2zOjXGlqdLuAQpSs2kGg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ooOmL9eqoLmtvsSZi1Itp8wofuCZbLYzALMjjP0BHKc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.118.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:d814:34f4::5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZbyluV02MXca81jMc5M/hbaN36Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EgYs9XUsu5FTPre/oKis2zyIOwVXPnPS3D3LRLHuYHI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:20:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.197.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZbqUOZLVwOUxHqoWoW3ipV8WS7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lrf8ClbOKvmjvHslcyNHSXxiFqDmvStmBdGbTVpeYi4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:47:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.175.4.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1214 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:80fa::1]:1214" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "goldsworthy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZakKuBxE3X2bc7VSmxFReYU0r3Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "myzRM2GTvG8SoopQi7O9xkUZgRuaXj6L9n652g3FIKM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:23:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.119.253.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZaOY6aaXpGRZN7CGzaHZpcV7lQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YTgCPcHsJMHwRt9UIVKT1qV8BzKZAwQorMueI+y9ncI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.75.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:d4::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leberkassemmel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZZmwPffyBUCcgRE4xnY2EquugLU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XvNiYImu+dNxSI2ii54LfMNXZEZ1l8wCPuJtGXpqGO0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.119.117.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:63c1:13:162::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZZfIC4iub7AvVE8W2JekmhqRd4Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ebFqZQTCr7paPz2DEVCq183ESqjtxb6MKuTEAm95vqs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:19:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.150.107.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "castleworld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZY75F4eJ2yb6B4qgYF8n4VzqhBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pU0q+cWm+naH7jQ6EvjBR9QrLR4LmLGYIUr1lPLEGKo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.141.175.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masters2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZY3CCXSLApLU7ekAgiVss+llhYU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Wq2l4AnzGeIqvYKU5WoNG1WlXhbldPoLb7kPsatmv3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noname" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZYR8aoK7LQ2IrJkawiDYcc5S9yE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Woo4+I7LhO4OIFlLkcnMsR4XXzyBOpETs07Q7tSajNw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:07:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.245.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hypothermic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZYMsrdh98cXYm0WsG69IPRQH5ao" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lRKAYjtzlhGaLQnCHdDgFyUoLZaOIaSXxwsC3rCcIws" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:00:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.192.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:6bcb::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZYDPyakRYRj1ERrR5/qi+fuO3pg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XDJf63ia8RP2gYu9hbPgKxe9wgL4bahP7sqyjXh7ahk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.45.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZWumwAsh2whmERcclGKIop4t9bw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hQQ/YJfWfzngYR4yxBihFPAsbVF5kL741NFdt1Sp36A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:614:d803:40ff:fec3:832a]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay27at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZWnXYqxEgSdmR1CwifgNFZfstwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4G1bwsCahxuIIP2AGMhPx1qjqU3LwXi+BzbNCA+vwG4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:55:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oscar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZWXzHZ7Ax9/+oZIL47pMc+81tcQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OYeT6UPen95acoIjFsH/aJnnpT65/zoMruj5nfsETYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:07:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.207.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3000::dfc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hwds" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZWNH66dPYyC4UZLuIvgFz1AJhxE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "baKeOojngHBe+KLXdvYD5cb0Oc5v140bC2sCXHj8OFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:15:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.18.82.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex68" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZU1jT8QoGxb6tyF7q9w/F5qPLSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dQ275ewxoWqM9eN3NMkN86xTMUApAgr4Tp8540lF32Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::157]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StableCable" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZUwiqSXQoMRTfYOYwnj5H5yYv0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AmXvC0d3eb+OPUOTQZPIISoGB0eFc9CAcx69jA+X3V4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.252.234.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c206:2079:4927::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "imboredrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZUs2TCRXO0YxyK18OcFhxWjASjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "emewh0I1Xr9LmhGIRMBDQ2NXwX1L/EcMJzZSsNxlAKo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.53.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueMold" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZTee7UiFmbChUS6A1HQ7yRJcswY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gJLYmzXUW6k6Mub6KqCNNPlg2Bef0UbHCwv/QrNXXM8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:32:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.128.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:2451:20::4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trns01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZSWwgVft35sf+tzdfaoPWRV+Tt0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "61XD1SQL7fyLAECNTIr9axxhahu5TTTY+UvMIq66CtI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:27:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "100.12.177.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "santaMariaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZPj5ioKeY2+/RDFKSGBeERKfmL0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FXpb7jyEZTdD/aisOJ5CNPe12aoCqEeF1/1wcpaw3lE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:22:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.146.69.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber47" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZO6lEZhPLIYvCed3VdxlfsMeZIM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q49gwPoesWxz8JZm5sLFm8GLvUSabCX89lGVtMV5YoY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::24]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frigus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZOs8vM63YLn2R/obmkBTM5gwsCo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fpFZkGbYE8d/SOoaOZJAwGpW+AGIOUVePA1/yYBWluw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:26:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.111.40.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZNdKqnTzDcLPs2NDzl1EUbmk26g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0iEUa0UF7UPg9wfJjY5jL7kqfY8yZDqsaD8FSmZPkmY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:46:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c::25]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "permanentrecord" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZMsrMsEK3UuT1yW33tI4zM1tbbo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ddnFTQmz/EZBrKt9BthMoe0XLwDNy3aeySRT6C6ZCFM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.44.81.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:fcd0:100:4600::6:16c0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sleep" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZLsVtileOkRZT0OM0OZ058TmC6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kwQZz9iwsKxBGS50iCIuaRZtIpVF2Bv4eHzMOnbdYFQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.73.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11142 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:6bc::1]:11142" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "montserrat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZLBfmiEitdtK3LDm8IMZPzFwqQI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NtzvJ+aVngYUlo9Ajem9ZfBQngGTD9spvgEmwknBjDE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:57:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.90.135.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:7c7:2113::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oneinfiniteloop" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZKzETvvHG6509XB9SAqjDtK8kVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YYA//Qg3bPU+gVnHVeMKnB+sTrHaI8vUp2bdjiISd5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.139.28.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "janitormentor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZKiDepevcXdchN4O2pRVKq7cQk8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DjKw2QwPWNNvcz40QtrVt9PD1+NJDVMlQLYdhG0yFMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:54:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.219.238.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ovhSwagger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZKLWOsTXLQOG7obG7jk/4xmi1Ok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i0qUXO1mijSiqBc8yTIge/8VAO6vW0a5XJ0M92qjI2M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.244.191.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:2000::57a9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "newTORtest" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZIin4czAwJ7A+QC4TSu4v9FKTGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cb6921zg7MY5YZJU8Kn6ErhOPNWuDe65UeI9wXFVXBE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:00:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.66.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "coco" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZF3pv3ouhY+Ka0Xx9TA3EXbQI4o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IACjUp3PMQ8qY4fbsI79gf7E6JVsyq1C6tZVkcEIYrM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:12:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.37.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber53" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZEVajRinibv9ZI1jsDhoYhjYMUk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4wbWrMLHvpmxbd5Q01H3cP6rCIRIuIzQbXQFAn9HbyU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::27]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay37L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZCmw1wPrkKGFKPn4uENQSqJ3ZcY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KEtg1tstmfvx8Q5C0qOvkerp17exvIHE9/+wKX4YPBw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.68.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CourvixMiddleGer1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZBlDBwb3f0a5gDnIhdoExZXJ6W0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d55KfM9A/HRlDIWD/NkfGw3IyiyorbZxDMHKO0HhIbc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:11:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.61.251.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:5707:aaf1:30d::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "samsara" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ZBi6TPpf8pxrDmEVg4KxxSyfLhg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "slxb/FkOAX3FwWnttHWns/iiEJmapEkjlzYKYJn1J7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.99.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "securebit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y/+/gWEIP4yuDCMZsnfiz//iV4o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qQFkVjzpo8Cq521/pm3KzRsS9u4RxDMmB9nB1d5r0Ec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:24:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.163.86.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:4c0:500:c1a3::56f7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv115" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y/AEOBlGj9hsdh6uRbS3Lbmnlbk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6mjItPTUopWlcWHFIUuNvZC61kYi6cd0c+wWt+Q/g/o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5515]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "emokid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y+9DIZ1/uA2jTIDVBzlail7nmT0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VyIciqEl0dNzZfImO5cmZziJoU34RQAXuxWc/o5u5ys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:38:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.217.250.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ESCAPE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y+CUpUR3mWc8EUETQFj5SAdOqmM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BwFs8OFvDurs0FCfmijaTUIc0d4ZpdFJxDs/Wbmgf1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:50:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.120.254.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torbaconexit1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y9jlPjDjrxQOOyBes8hoxdbtiQM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d1DmUX0b2kMufyMquU9pibl8IaizIZthqAwglq2XKds" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.82.78.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:6c8:8000:26::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dontpanic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y8gbyoNVcAaaf81IMS3qcH9suqI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jZHFHPmB5EKod4tYjS0kxS+wtXEPD0G6sVSUVcCuNfc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:18:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.189.181.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3001:6426::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "543f24423c684e64ad7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y8VD7OJQEY6SBDej15ZePqk9BMY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iY4DA3WinhUWj9hBKlWDCA2wqYY+i+KOYEqAVWvsuW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.39.97.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toralf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y79Gpj+cIf0xXNBhs+qj6wUoOgo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WFuft2TpFisaC6pRurQCSY9sqIxX9kvVET9kcr9FzZ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:25:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.94.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3b:468e::13]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y7MvflOJ6NvF4bzv5IMS2nzO9dY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kbkulHNG4rr2mkLdiUypvxsdQ9ndR/D3B/alhs7jINw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.196.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "p4r7154nRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y57baD1X4bB7qqVNqaGkPgriLJw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mZDtAWaEwbHfVughkWEdjeEVFpNMJXlhE7MOWZ9gPIw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.235.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra75" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y5KNNwuSnr2lTvKr3UpjCCCFv2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OAaBG/5PC9KgNb+qnQAO92tk33yczGNtlSqe603DwBk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:31:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.2.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "avocado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y5H8CPoVh/R0rqhU2Rplb163ISw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LIT3NlnrDIgle4Qa+mCKFeJoU4yzNyaZ20C+PZ+mRSM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::6]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashLizard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y4nstIkTNLhGMA/dimglDrtbfFI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O8Dq2J/aZCo+C1HohQv3ZV60T6do0JnbYX83foWwD9w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.219.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27aa::505]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LehmansRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y3ke4B6g5E2NpstdOkUXQxKSet0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c1P9g+S6mOgJ7hcobU5SFpdPJmT/5Dkq9EfLZepDxVE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.92.154.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zollkriminalamt1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y2ma71mMBGwsdftZjRbZP1dTYbU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "psmqWZM2nmgVCdn/sbEjfd71VIyzDmIOB1zTJYSRzW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:27:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.188.250.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3008:3867::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorDedi4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y1Skam6C14S58xS4hk96n0iF5eE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NvMW9zGvD6EHCmx+11A3JysiAJOtlRCp+ygWDX93I+4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:20:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.28.107.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:2::762d:1]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oneDEicebeer02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y0qICMqKZAmACH9/fqZoW4cdo94" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4S7XDXmIoDxQeH056x9JgfFpOIndFWO6puL5VxRhdm4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:19:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.224.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5122 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tiotnos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Y0TtnGcoOZP8IYBetb/8fm29J6g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ywGXV6lUnIwxZ/D2dC37y9IaaVDXuHGZInmrr7mHCA8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:14:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.49.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44321 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lokit11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YzzuDc6k/xgm97hdKL1yQrOlbM8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mPzjSPQ7ISVKZ0paEHDjJecYuW6N5cs93zqzS8LdxGQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:58:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.146.2.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:11c0:1f:1::55]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenQasr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YzyRhQ8DzI5PPCgDr8XOobAKh6k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ey2BqRK+3LZWITEsk8/Y/186ELyk/VL9EkLkkxyWlfU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.34.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 995 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c021:8000:d00::a1]:995" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eg9522alpha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yxy92vm2yvS01p0ecrNZcEmdlaQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xDTB23UqzbxrWTA0QAT7e8GeD//t417pT6BD7eYegBQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:33:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.101.146.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unnamed314" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YxUnipFxAGLZCyiBme+gbkqqno8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9OJZxfwEjLJvPTlWVKVscdZexAhKgZsSSCmocFWYLQs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.136.81.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2006:2287:0:1:0:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra79" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yw911a10GInBvEbcNUpjIBUqezI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GrQLuJdXsWCq9dCy2edpFiFav6IpTv0IKjof6bz20bA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.34.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YwR4HqbI0KhjitGnRczP7nfr5V4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nc8nVk42Jex4Bdhi8iplwkatw+oTFA+wLpgn8kYFsEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::203]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YvSZTG86Wz5ZCu7OUiWRaWyN3uI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rZp3Ty+n1h6ZmUmBLL4ks/5dMEQzpPuMEfANp2kLYLs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:10:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:15::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raveena9002" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yu1TsCABjkExaQPP4bjDd5ts07U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SqM5lf4ezuhwUqWl28KjZB4Le9SQsqnsW4QDIItm2U8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:41:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.215.228.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WdTor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YuoxPIvAPXXjGdOgtH04iHSdAjo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o849VW8x47g6zr7vJJbsp1UgrEHaJT+BInqnuez1Mvw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.75.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3b:505d::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yt/PQPhUd8BUMgrmZpzihuRFgHs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "URFZOoydRsm4ZCF/1cwF6L+sXktPWWvWYjztzMi3y2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maurice" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yrq3UWoNPx5rK8lHZ1knkfa1j7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2lB2lrwiiyL3FtomBXdf7LOXKS6XW2UjT20BeBzHTgE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:49:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "137.220.127.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xyphoriator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YrfNGj50DFpRX634IZqTNrA+caw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cRybjWtYbw/AvvufiSk4B+9XSKwm7BiMUdvEg9EQjbM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.112.149.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49152 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yq/jkwIMw6o6owyniQL11A52CSY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uVyxVFdyVGLTfdwqXbxqgfXopF5frYVqo1Y9aiP/7Vw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:41:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.49.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yqayx1ByX/3pRX9kHvVm1WdzwxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/5rGr8dFyXfve2TXIkry1tzsnoCSsbQHj4KjGutODCY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.64.218.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1bc1:56:1000::dbb:77db]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PwnedNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YqYBWKLDAuPaeS16T1M59BMh5dk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4ksj1cZeQD5TsyTdxO/NESjZAnxlGeviaVhMmQFA+4w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.232.101.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YqTmv+h1Q3h563mBw/wDENNQavU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2CvWirYd1gGdYdZrFHEWMYSqTUMrWUTEwW6dgD7WMtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:25:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pltorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YqLODTvkb9UQmnIHTLvGvGxkfJ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pVe8YnJ0wF7TSUaqVQ2GPHRl/pA1FgyD2cRgRwzvDH4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:34:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.172.49.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pilatus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yp3hHRW3YFIeE5Gy0HImmP3BA98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BLfoDdCj/6XLMmUOU8rkjmZmhBL1SjR5fdR82EiL2n8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.196.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:172:3e5b::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow002" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YpCi0I5euJyAkiPFx79SWXaQdR0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QUv/Zv+gvjoUlqhde8tsgtoPG9eq5+0qC+caRyZILD0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:07:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zwewwlUA1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YocSnLnsR16Bag0oP+TkXWMqSks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MIU3lzc5YC8XOeTk1CRduRNpFub3TcsFyXZ3AWR00Qk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.12.221.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27a8:0:a::100]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "criticalcat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ynr+jKgRwNmD++WHa5KL3kxPWTU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QYrT9MVWRO/gMSrXvkPFOgVMZ1aXUDYW3T/WDf1Dl6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:30:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.140.40.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YnErLCShabJDNs0v4r5V2mdHbIs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mh7ekWZkJgjwXP3TXLNVfqX/tz8y1vXJCChEq4vIFq0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.94.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b14a::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YnEY9uPYXNbiYpe9ZTjEXOmKopk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ztctH5N4wPZpD4VkSoheA0x/fQ3gSlMKzeGc278Sc/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.14.97.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:2603::4fe]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "testrucensorship" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ym/zKgTmNvT3q+pMqdyvJgHWqwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yo2rEArlSv15R7nMhs4QhubjP4Arx/aN90QLmEalx+w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.161.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1200:fa0d::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YlT006z38+v/GukQx2KlefHBqkY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MkUEAKFdZMjbDpL5ODJjuExGOaNBd6JNcIO8gI1I/ys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:25:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.59.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f75c:28a7:40ff:feb7:f710]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TrueRangers2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YlAmr6x8XpyS9ZehhDQyR+0BGXQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CNg9vcHJNI5soIE0J/xNe/ZHUqMSB01cKgLQm6YDULE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:28:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.175.158.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YlAKtAH5NVhnfB6MYeckvUZs6KA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cBYnVOWQ3k0N0RBp4pgexepR2lGCZRY7kmc9heURKp0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:54:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.107.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:3e:34ce:4cff:fe57:263]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryKenzie3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yktzkbl5DnzSr2pyOCObo9aSilc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9r45Ar9ff5fjTou/GiGHDlTV79c+hiYZFvfZjUTWaZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.136.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:3408::3]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wildy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YkXchz1vYTx5XUhmPWW9iiJmyvY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6zlm40WoHYhdKy7tzmnaWrkVxO2f1ARMEQDVIZXjJCQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.222.103.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:8c4f::1:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FriendlyExitNode2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YjzMwaE3BwDdAwRqhdlT01yrXCE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZW74UUfShxUHYU7PgG+adS6pm1R8/N81IzfCZ2vfyPE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.54.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:18f1:c80e:f6b7:ffb5:4af7]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayongreatmother" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YjL980/5B9wlonMn0cBa03D7J2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vHfQs2Kv73VpXf7t6nwoN4oT/75yTjFb4+1GUEaVSUk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:20:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:10::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theunion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YirVMXdx0PmlTcb4bszKSg7wUSU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cdAt/hC9nPC5SVF+mnkiKf9HPwxIM5+bvBwpSEmZX7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:39:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.140.248.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH111" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YinHBKMSIzzTM9UZb4Icf/1bL28" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xt+CKpva+Q3rQBNWcsfmj6+12QqpI8yh+1mgYMr9gwI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:20:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:211]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YihCrl7P8ICbTJhtUsp1w0ntEeg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mM67vL8R1XX3jN/6wU0z9NzAEHCiXKtRnuCc+BWrGDQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:46:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.39.66.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:203:93:12::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "michaelgill1969" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YiOa5ZqI8qxYFzdy0cgiaQLBguc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0xOAFpzFD3DKQbQYrfk5mcAIUILafIsUiAeIPxfnPps" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.188.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:92ff:fe81:95e0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YiKYJ/4WEwA8CiqHY9gcCxcP+tk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+/URgI78CYQpcnvZ0XNK6ayEOgCh1Xn0/M0yFCKaxFk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::215]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation57" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YiIzRlkRHZnenSaXCsxAIrKQ39A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uSkkrvTFC2c67Dq24NX1ynu7b6PnbItBHowos1nCtco" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:16:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.143.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pbranenettorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YiHKqfSmctthRNcSjRhN21NQg/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G4k4AD1/yOflCMovjPUMpdvg1eeBmlMJUHOHQct/09I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:33:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.144.60.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:93ff:fe97:5166]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yhx8cD+QR4uCuvcBmc/DCy5N4vQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xA/u5iGaPnd7/KA10CFliN4vSkak7W+iHC9pFwQXJSo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:54:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.231.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YhM+22Y8HAQ7Ki3CShnDUQiOvVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KEC76WQ6WsM9UPluDDJtbXjQXD0bzLhBcoRdr808hRs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1144" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YgnV5zRei263oQKBRuSCbMbGQig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tXjcSH/iFInZUHDrfzR88YBsmNeb+GQwG674pYDhLRc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11144 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::144]:11144" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay631588" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YfBd6av4/OHWE6PP46+BsCfyee4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aPFMXikOpNp1hIIC2Wpll3JksFW0JalYLn9niRgyS+s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:00:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.209.77.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9845 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LukeCage" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ye5n4Y2N88OgYTPfVOpaKUyTedE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Lr+jsKV+61AQaqfu+MA+vXhwozK03uDZjim6m4xtZc8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.73.159.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay38L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YeQx7AdIgMTKrpjx5SXgEodi4GU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1m9kYKJEDK0HbQeEht5FgMWokwSgwlSB50WVFvQ59cU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:09:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.44.103.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gare2lest" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YeQbV1kej1LHE1ysQND9mMXLq4Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ubLLbrge1MqH8JlGW17fRxyynXaIwQZqr8u15jANGTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:56:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.126.124.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thatismyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YdI36EJvhIQg1KZIs1T6H0WrrH0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GixycUD6wmk+mdyDj7EcRPG37wc8RfKB4AmC9pvYiXA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:49:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.189.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kren" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YdHN+SoF5ZoGtuIKOSR2lnErAAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YSaG0eQ1MAzAocZAj8XLK3h3cWQD0QbCFSZdru6vMLA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::5]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artischocke" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YcA4J/2ZFM3LLqgJqCSkNa6gGJo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3d0DzlWEur1ZIJPoQahF88yD1PB77CvINR2kTlZM1b4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:11:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::11]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whoUSicebeer48" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Yb6yjL+yWMA5w5f7q3/Wb6HzEgg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VYdtJRmJ+MXiCmKPrPVTlZ3kzVJhJrnruv11YBIW2/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.190.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8034 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YbpcUI464Uwt/43Wd7EAmEyj4J0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "heo0OSgYEx9/993ylg1uXHBNYcGTIM6zjixn8Q+seiY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:12:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.212.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:24a::1]:1503" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pecurina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ybi9yRqnvJoF61o9ZS//iMmOaRE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hRtVUDuSj7Nq7KgSh1YfjWbJiFoXzLt+zjvbbkd4IaI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:53:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.31.65.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YaIQTX5phnw/PvmBB3Jm+WjBdSo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FdO+3fNRYnWDkaTaqwv+Pq5XzaO76hVM7rZlqC7qNZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:58:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.41.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:a15:d4db:fbff:fef4:8b7b]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "seeidideditit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YYnwaR2K0cuzc8rTkG5yI4rENk8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qywVrF+JNW+8+47mHCbZaLohj2T3Gwj7psI2odbBV7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:10:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.194.158.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e34:ec29:e1e0:baae:edff:fe7d:7bd8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra94" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YYZhYszf5lGw12qlfsqQucx8gN0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cjflFLwYVlghqlwwLL5ApFufFeJAajKVhHO13oVnZRA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:32:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.140.141.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e3:ffff:198:140:141:0:30]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YYO0k6z/QbKHRc8DIuda173kpIs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aI2uw7GqaB21FJg91S4SnxI2kNT+WFePb2J19cRt2sg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.138.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:79d:48b4:a0ff:fe48:192a]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YYFjv8TsJLaqbh6EHSHoNZF20JI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AIShRveqg9goddsbSDX0ilyS/6qxO71uLJA8Q4jMhu0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:57:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.6.70.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2430:3:2500::132e:e173]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange030us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YX6x85lOE+/iDU1qQnO3JHdtBdI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f/EHJftWRRQo5UlpxByyOL0p1rG5xjG2zgXP8AB6+kg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:25:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.198.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YXyV/PXwDpjnPjWnHAZu0gYU8m0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RGlTerl9sCNI5fTtZBkbEPU5OM7eAkp4BULuZs5AKhk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mirokko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YWynMGMXZUV1CX1OpbxrZibiaUo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hWrrR064lkw4YoAmaD6qwFTuCb07QJob5NTF19RivOI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:52:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.235.218.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NeoNotOrg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YWo8Wzs6sJVHdowGPS0ySxnPJ0Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jcW7GoarJOORxaequCL/RVEGkMl84Cj8OhwhZrZDA8c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:11:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.208.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AquaRayTerminus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YWCB7IKVk69CMlUN5v+qHXWzepA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G4Ve0uNLFeqiIfnuWJRUqzajgNMd37SOYj/+HP7mqEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:56:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.128.43.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:ec0:209:10::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PostGuard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YV1UGUZnLQLzGZWkiomlJsfsNSQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/ZUsPNuogSMS7VLha/s5xRHtDtKTFCe76g6fYvFpXS4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:13:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.196.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:9:635:c48e:47ff:fea8:490]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YVq+ot526zdgvFHnMGuqWfFc2PI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SoUTFk7iiFoKlFhh+sotoJ3ekCJU+Ly187QXa17f69M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:53:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.166.139.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelaygermany" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YUaQ0BEbsWQouBbbnpmMDl6j9JU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xN//P6I+h+4VuDOQa1GC20aFEgX6O4Z7gto7Ei9Wd9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:32:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.214.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:6e9::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheBoundTome" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YUZW0SbsNDQEZHbbb9YxtxEk2rQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VhllzY+lH/fYIez3AGzxV6JEhxYxuJmnMai6iwxVJVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.118.242.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "invaAtMoon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YTT1tm8nvdvCv4DU8sV11iOOXjQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TsEGIlHhHpwrQ1zQvv3Hm/8HhFdLbFqQDiuLBVYKO3Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:42:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.124.94.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "neverDie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YS9oLW+CxHnXih5Sdwo8Qxr4BdM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mvgb5Glq1F7djhDf7rPaEZ8MNvgVONx03GvuEERFHOg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:08:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.193.127.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:3840:1337:127:0:b9c1:7f8b:1337]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RedHat8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YSv+bTylv1UsntbgmUM3edjFIdY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OjJx11Jl52T1FgDFAyoNzreZgdBFR8kqI7XFQo/ZaMI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.188.206.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lazerpi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YSWm0nf3/0Cmh1qSgUcs145A9Ck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/lfuvp9Z5DMeos7my55EATGR9xLcVuSYlQvhZ88SzZg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.255.156.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YSUdO0fwI0WHS7fytNbvMZgU3jQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AdG4b/9D7BhfKyE2WbFIjw+hynyYJnV7la9KGn7gSnc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.90.161.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:8881::f05d:92ff:feb5:2932]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DevilHunter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YRjdtYDu3W/l+NPMDfHuF9iipMY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oCCBCN045JPxAKWKBGGaTloKiSWcpf+3ituy0pRuggQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.123.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:21:3ba:840a:fff:fe2e:3fec]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "janus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YRczdja4y5efCbZ1MEd9/8phv4g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oqJm+LU6jNcy0v1wjiUtguTkzl9VOdZSQEKbaBFMvEc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:32:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.121.143.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jsRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YRHGAFq1ZJi+XjVmayUizr4X0U4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gIvF5b2LWNZensih6ew+h7sVa4Q/uTZmeDJ3BvQNHN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.113.139.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YQfR+W5mKTZgJa6Bh3XHzyqahLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WGASnZduOnyObkSes5ubYNa7HRd8YEFO/DyTpNsUN+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:26:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.49.151.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "swlt3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YQHss9oR4M5t+LRXAU2gmYB83k4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Icwimyk6ssns736HPdLewCcVx/4qAq2wIyJPfKgIb7U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:53:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.233.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:1849::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "n0trace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YQBBUscJZy7nOfJme1bvVVClEzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zxUzsHbV0DQSUs2oYARG2dNQqZgBp23DsXrn5dkTX7g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.255.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber17" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YP54LfkjaYVGAjxvFP7AiEYk81w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uIF/tppVNIEfOq7GD984KeYPENAWVRSwuWxEsEUITU4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:23:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::9]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YPITnqPgZBCgXL1uglTmCpBjrZ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LThA48ZMUlC5TncZoZg8CNM9bs9ynnE1hEIjmPQn4ck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.6.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Washington" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YPD5HUArY2kyezD6iXa2cO8FxPQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oavOPTEOY/ncbsQ3fGE0klVcda7ZZa+zLp0Ds1/EHX8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:41:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.70.185.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YOUhtjLYOXHs+NRUr1WPLCOLyaU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "STolzmVFfws5dSXI0+nGQ5GOO7gbFDlqxnKBuCixfeM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:03:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.104.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:b5:84e4:58ff:feec:1f92]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rgiad" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YOTF4wbS2yKJDuJKCfm2wwrzlqg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RHnlRwZniKiUZAzILcT0i4Fsu4PU455E67jgWqcEN5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:10:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.180.150.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:418:8006::9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YNNmf1auxcac9+j1V9sh3fbDYGA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7VAWQ4zB9BQAV8qTGrlypMmklYSODN/U5VKddljgOl0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:29:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::117]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=840" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YNErfXpgFiJQT3TJpOt8jzP+XIQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bD22nxg9vH/8to/CABRfFWBF0yRzCmpv1khyGxxM4DE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.195.89.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wehrhaftedemokratie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YLbz+vZcRDT3ofaCFiBr6AfOgHU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/6W2zwyS70UxT5QyOpDhaXSu9jRAIAXCXMC+O2vk3nE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:33:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.28.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mosquitobait" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YK/oZvU/34OAigLykJ4otSIstwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ozHwBGKFtxTRst2dMtZCVdiI+lNrWzEK2pjv4oc0Uas" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:05:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.105.171.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SomeTorinAS200462" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YK7qI6hbg6QHMStWCmBIKlAaa4k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AEEYxw2QdDtwVkAS7HkiueMId5HMIrPk/F8gk+G/oAY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.58.52.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HotPotato" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YKVUeyID3S4Ujvm91v84kQgcXfQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gjk5yyqFzG0kJmmuewKD+WW9DDcHGm1DLm0OloCgtwg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:37:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.126.105.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5353 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fe93:5318]:5353" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=720" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "misaki" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YKQ/LpZFdzypsXImy8TCDcMXTQU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C1nz+rWCvHNEgZXkyvlP7T44HBM//BKElLxrAAMQs3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:41:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.195.101.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:feda:30:cafe:20c:29ff:fea3:9936]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Handlebar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YHjzALN52N688C2+gIgclHd+JL8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DbEcP9jxJgVvbELuHjB1VObd5lPhDTdFC8m1zJz7lhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:06:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.255.21.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "forabetterworld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YHY+YwmIBS1ga48qvITUHa9vp+k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7QvBuseH6V/uDry9jCMRxvCNSOAZNYe3rFNmvm/7g0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.241.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c17:e5ef::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arcanum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YF7kN17kw4IVyJSfWAiGN0n9T0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NKyog1BakNTlCP8yGEv/hLMTAuaZhqB0EgMVs7BOcNk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:14:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.56.216.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4020 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vaseline" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YFtfonRVoOeDKdnZc+FTrZKYvf0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gXs0vkqfJajji+SHf1ZdGJ8c4SlsdTTrY50feJLaI4c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:53:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.71.16.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YFfO63OEfShu+Sru0pPvDNDeJcw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e+z8qHnGUL17QgqV6OzGl8R6vTWLV3PHxXSjZin4VSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:30:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::218]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elects2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YFX+kMGN1LJZOp0OAt3E1o6bpi4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AfMTsmTKPD5O6HX7gG+t8Fk7pn3Dv5j1k74ATryw8Ro" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:27:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skewed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YCog+Q4g0bnqTdh66Ui1kMYfipQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z0oUr03booluRhiLK22y8EfhVnCUsQyBswPlCiTtoUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:12:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.93.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noTORious" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YCYA10fxIlWpBPWsudvR1PIuRII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ysm6fgKpvZcH3b966Gdl0OEXZXu9l9vv5Tcd57upR7k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.248.144.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "1wllmkuhrt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YBDqh71K7MJAsMVW95PR29CFy0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RC4C22zj8/VRe6tWurpTqvENPwcxlKusIRzE0YbydWA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:11:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.215.207.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "a2704f1ae50d753145e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YAkCMwP2iBQZ9M7fxLf/j/3y48M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oXojpVK9gZTJKOTpI+A9pvhHQi6xMf1dGYcCs3cNdyU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.65.40.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YAaEqGPciTaS8dd3hmAFNszoCyY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2S+uYnTb/ySnVQL6Tgun+vUEE8vtZKThU9NrY0sulw0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:34:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::46]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "YANyOAJKnzBdtdyXUG1kLPodZro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aSZfriAPZj4gpFDF3yuAdOMozh2d0sDrQ2TGwhqupnI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:31:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.79.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8902:e001:116::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ashpit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X/1rq7cbtWNyyDEXx+Ukjrv6xpM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "76TmjFK2ITePCdhJf0DFJpgYM1uElFrSp4xB3bNogcM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:02:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.106.192.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "riseup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X/HTo+OONky+JiL8Mw8rEMrBNj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fy9rr3wb3SVoNuV7qku0DEMdXUvVJUQfh3DvNZ/CuXc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.162.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jJbzwynG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X/AtQRPwpoiNCi7mxXxhoVi3VQw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7LKM3cJt9aXVTHWW/svOE678c3/OzTa4A5cF2PcnmFg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:54:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.96.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:2054::1]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0294a90e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X+vA2KbVEbrGnc6v4M8rjfvUfp4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AmvVjbRNI33jTvdTVMteEBA0c13LuazzcOjp9wyOEQo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:25:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.212.217.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dr238" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X+ua7CiR1AQ1MUV4enje1AkxptY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vbQDj0loC1nehR1Z7/jJaRIBqjwMlOMrxxwwVOYbQgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:52:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.208.97.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kohlhaas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X+g60Qa0mNWj6npI+3N0mvKJfls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S4VYJ4DZlPP21dlP24TS84J+opbMnP87iTG3a/9v1WM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:36:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.29.250.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "linsaac2001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X+YTjWDgk6fP15pCDcGywaLBu+k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZFtnfB37y0VqY+qjVgFEzSZWm1hRzFRvf3SuJ4nOMv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:41:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.185.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8907::f03c:92ff:fe9e:7fde]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X+R/v5GhM2ZJvnsP98HZgfES988" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cI8Iz8EJ6zT10tsHLZmBvv35PcpProKeub65T4lVlpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:57:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.122.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ji4ka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X9wMrYiyZ2B6N+w8BlTG0d02Oho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kPOjqgCo03o6bTZM8jDYfaCzEYje6BrAtZB5Ly4aTRs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.130.248.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "exittor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X9Gk5Vfb2vJW3KfX3QRBZEDyZz4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yZVS+hrx868DMnvt3rqKKcItwwRalXlKEHHSU3BL6WY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "101.58.180.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:410:b4e9:0:c5a2:31e3:a45f:116a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nuker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X64oz00cUgNB7hBL9yUW9DCLlIU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QJUx2N39ZWnolV4blq5zpa3BgDCoQ4dQ0mwGEqhshRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:04:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.236.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:201:34d0::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=88000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bananenbakker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X6eUvzAa815K7Rhek5y6nSz8I2A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "exQnJohbc4M/pa+M/D8dITfeoENYtgTZaXRfjKHkUfA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:09:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.132.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:230:2132:192:42:132:106]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionMasq02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X6dZb7K6LIiTN/i4LdcSe7skDU0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7C4DT5EVXLEd3nnBppvq1/5BvNKF0LD6AvDPxfPOBWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:27:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 57625 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "us1surveillancelink" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X5YkHK/2DutdT5tsBNYp7+8VWCE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/fQoxKS5RNx2CkCSNCS8AE4TvjEwiFqZ4xd7RGM8/rs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.19.144.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:2700:0:2:a800:ff:fe1d:5257]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vandergriff" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X4dc+34u0NJOhaWouJBKNlCrHtg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HTTQDtJjSYEz+pcshCK03JAlTw4AkQg8DkIy1NPlMsI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Schwabentor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X3RIxbZdrwOeeAe73UjY+pHIwCo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pqynl9gvC4dcBtuwEdJKx024e3cQe2KKDc5l6d2CMC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:33:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.86.119.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Poseidon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X2w5qU9VN7kZWt0b3kXRj9TH8jw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "amVk9S+jfPwgcHakisJ8vEmEbtR15Q7FnUWd5RaGbzk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:03:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "100.34.142.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PsyloNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X1pZ4+ywmHQH2RarveYGE/g+oek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BydLJDNpeC0axh++s1womeLqzYoDJ9NWA76VgYtUKA0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:21:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.37.138.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X0zRIJmvIPr5rf3OxlMWo3bQIBw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y4XZgaqvrH4TAXxHDxzLMi7ZNeReNZCb2VfJ1GURxWo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:30:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::118]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Boro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "X0vLxuIK4HQ0DQp0Pm8upLUbCcE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z4v0us7K54boT0rep6Hf1Jk1r3yS4jm7CdgvQ06vjv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.120.8.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xzdhna7klrjTfVs41cUNXkFpJD4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wDFAwT/sdnGqGkB1TN4pO9GClO7KSKYjxp3LMPZsKDA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:55:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.215.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1214 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:1ee::1]:1214" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "solace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xytu55mcajmS0+XIKYmSxcKN6zM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OIliiLouILAnD+iz4FE5n0MyTPRdQhbUUVy5kkHJROA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.214.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Planetclaire61" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xydqb3qnSvsq8QDq2ijHpvSLpQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3wi8OYrwNZKbdFPwHlzCs4homsvUrtYy+0FpcEu3PLA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:40:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.81.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2efb]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ooty1991" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XyTyfHba0DtXcX1cTf40GlEpSuY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L9HdWwIA9H3OgyDlp83VKtOB80JGjcJPLXnE+vMs3ms" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:24:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.100.216.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9050 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:a:535::2]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Meganero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xx3JEYY0JpSe+EGnYGeDbyaS4Z4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z0a0LvWFQn2sbHKV7cfoiTafXRzrxJNCvU0y3L7WH24" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:16:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.230.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber29" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XwznxjWQsp5il1DpxbzfVsQNaJg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r0+rIWw3eRl510e4QI1dmc513lxr302v8JpFALRcxWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::15]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XwHyTWDZ5u6zWF1Pz6jt62zWHrA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u/0qNyxL+4z4RtKSzgU+adtaFV71nGw6xRnjPNVff1s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::30]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=710" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ClericalChanneling" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XvZFC+gca1Fim0fdabOC98tILCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MJMZkRWY2WrMTVAhI4NFWmuE9UVJ2euOhByX9/vl0+g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.53.51.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "itrickl01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XvJVnqulyiwygEZjVR97JDRfZ8U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fll5Mjb5bAHBWYb0362LX9eL6GPihEw/IaqyWhUWzYw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:53:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.165.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:4620::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XuAOgeKJ1IxmXVsER8PvAY9KDJk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gy9qPUA+0pQ4kMjaA95LATXgihBDZM/IuA+ifo8DwU0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::d8a9:b5ff:fe30:737f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyNEtWorktor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xtt+u61XgvzBRxKVBckrmtFHXE8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c3dckk4taCSqQ9PtL+4KS9zyIfU9eRsZ8B6dqOTNGeQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.209.247.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyRhino" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xr9n9xcUZiq/db+LfmnzMPV6crI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d9J/aZqy/P9VGNqwgtnB7VBs/lcfQVhAwJuXAsfneqQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:32:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.17.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yellowDog" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XrpKn0g+B/1xe6gd1vc0SvgvfV0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yxj0o+DsuwaMiEbopHswyKCczdBe4r7jB3gtcag2qqY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.73.210.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1a28:1251:178:73:210:118:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=940" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorNodeChile" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XpwmyDNLfMZPhJ7iDmxm7afL8dw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JLpOdtzmIK7B6NIfEzamdwdt/aDyNDvOBWUTx09K93k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:49:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.173.130.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mhack1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XpFWnfuP7CtazoudfQwXsse+HAQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ok6IXxTTH+Iu1uIZzpklToX5MzTxFYvP8f2BMNuxt5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.98.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnonymousOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XotJtmG+a6Ysfjj7ar3pFRn9Ycg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1b4x3ZeVV5LwFrsBfAfICLLSAJcSxk5Tv0Vd4cZUtfI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:55:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.64.17.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XnlbGQYfYaE7JIh6FKHYHPja2Y8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1I/QQaVL3Paf8DBiB+qwfRPxvf3TaEXxbe4PpPYz9t0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::85]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeepThought42Bridge" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XmgN4pbEpiwSqq4oeskqJ0PgzU8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cSqlXEKipKfs3hPLixvWTJYPrlhIXPDMvMXElPttMcw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.117.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mchxuhg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xmdonvdjc1ASLe58ZYf9rTdKyvs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HFcVcXxi3LaYd7kYg7egVkQ2Awohuq0LhtFC0nTMkoo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:16:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.185.112.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8091 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayondagon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XlK+oiEwWY8gDQXEK7ZnCcJOj2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6HdjzYtAbQQd7P3q7TG1/aws6HCsFMMEuNvrVPqRdPs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:9::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xk6+QHjfvmykZIxNMu6/5tgiyss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8kjM5co1EobngJWLyf4t+iyWZZIXoNbPAbZj3K7PEg0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xk0ebTFBPczBSKgFAiRXjLvxKIM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SNmu8wZQfgd5AFlDcdcP+t24wPD3RvZatz9Kkovj0UM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.194.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fec3:62f4]:38443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XkDlUpEKVhyS/qoEJ/OvByls6eA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4uwSl+cFMZdFyBKUgq1lFrOEVL6nCehNsFuRNsJh16Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:34:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.7.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:ed13:94a1:6147:f5eb:74fe]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XiJAYfDkchQpAnoTDbYH9P3Q3+U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "45ESmSxI6PB8S7i4CUGa8Tm+kuDyYvQgiU8Ktj4v09M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10061 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::61]:10061" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Frodon22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XiE0zo06O3ql5Ze47+PmWbA8ArM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FPe+wxrOoRnbzXV2v6GWTZsfa0IOkY40Y6HCSOAvgSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.179.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47b0:14b::1]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TitounNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XhFK1ghCjCOzjMx32iLkzQwn8s4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mRgu130APWZI9o77duFVar01N0jRDpvcp4F7PH24gtk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.167.242.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc2:55:216:3eff:fee8:6e97]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TimsRelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xg1bK0warOR5YH6E7BvOmIkQq0Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mwLQBolWNc5XDr1qo103rr/XDgTuPF73f8evmCAGbys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:50:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.190.24.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DashRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xf3ooK4Tds6tqIgqM9PCsnuIIB8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FG0Q7lSgoGNXycBQrwFShy07N2XU9YLmocBOd2b0v/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:20:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.47.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlackHuckleberry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XfGfr8XBxJ40ZzQrTDqA1P8jsEs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0onHg6c4AQR6dmG5dFM1X0CNSTPaWLDhs9FHvA20TSI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.180.53.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 50003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "qTorantino" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XerYWNyWBhdoZaYrpPizjP2imBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HbShAdsORfNuQ2rjKLkIY8S3jq2BWXSp7bdU7YfWvPY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:03:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.29.70.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8902::f03c:92ff:feef:9278]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zwewwlLV1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XcQPU1ft9ICakBCCgXIHLJWnNRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8wCkfv/OB1yAGeBEb0Ua6TS3RSEB9YLhWl9CMcBqw8A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.209.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27ac::19]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Chenjesu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XbmuJ6ROt7R2zASmbGenHJegAeY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O3tKCIbjW3795LQ3YFUh+xl9SfQiGcpoJggse+SK+N0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:06:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.205.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Xbhnv+5im70nRuc4GLohViIKueQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d8uYzr1YVZj9YAIz5qn12RYf0M9akn418EWg/U/Z110" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:12:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::24]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prserver" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XaabCGuDP8Hfzy2ci5w7AxN8fv0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TsLJeJHMqDLCCevRHfcKR756lplHGltXjpDFqp/0VEQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.13.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9008 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XZioovYPJsZeNPQgW+dyGeEO+wk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fiHOEaCxibU5JxnRhw7HlskaS1zCxpwBQRWB67b7cX0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:31:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.186.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:23:489f:4fff:fecc:5244]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XYSQDb5tY2VoSpZ1uBporOlXemg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xw4BuVQ6hx7YhR4fhnG7N5/XJI+qDpshAP5k1GmRoqc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.73.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f7ca::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nsaciabrb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XXjX0qFva00xZv2dH9SnFbFKVt8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PhWePeSN/SeW9NOdZ4iO9GDFydapKNTL8f5EAq/eL4M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.234.150.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8500 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:e01f:700::20]:8500" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XXZXcLTbEQ2IeHRXl4q0AIz2XKw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ccNLLOwY3mEw7VTAg0KhaO5WAlYm8yTmqHKeHSBQErU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.59.76.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:c91a::6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XV+N5IZ4KYl7unwsWYKqdYEFuJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fOzgqX6iDKGs94cfXVmH71ihL/OkdSwJXu4xiMWMZdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:57:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.106.169.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:8710::1]:9998" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=740" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra43" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XV3f8puWzFZqp0ZjaGjrB/l95gw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bB1inlfoS+jRixJJhPmEcYtCmRRU1QwuS4+irqclSpg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.30.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra93" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XVda3RCN278X54rYyyZ9bB8zggY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lpAX38tMP4tczagvtp1FGO9CAfUagbPSAcSWtUQVI4w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:32:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.171.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:125:171:0:199]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ziggy5tardust" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XVHJ0mnp1C6GMqvssYXmhAwUJXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VemSm+bB5wcY/tuZQ+7OPA5ECC66zLJl/ZfeZ9ef9RI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.243.66.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=0 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LoveUsingMonero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XTm8f7iHkrZUgqwu1Qe878vo5aI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ia6VxU55kya1w5+KnACBlt2ONUISaYwG0YYPGOpYw1I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.95.22.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 899 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MoniTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XTkHMcdwEXycBukdGh0nL8ShyJQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h0FtY3Sb65x9Q8Jm0qEon0JYDjJ2FgvYmWtxqdVSbYE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:25:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.15.243.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1600:10:100::7dd]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XSqMqhGdBShyLCQ4NQ+rDI3gGrc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M1BIvWgnvdpWqlVjtormvcreTH+MApoFjiu6t4Co1AE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:53:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.98.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:120:908c::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anduinExit01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XSYwN/wXVZazo0QTKwt1Xrj7HRw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GTKUJ2bqOqTTNGpWeFXDnidtfhUyouflPDclB5Qbd3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.42.170.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XSEg0Kecx0qALV9bv9OjBXc6Ay4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6xEFsoFs0WIKxxZoh1OHesB6/Y7ukSWPuuxudvXc1iI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.3.206.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber62" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XRcBS0DESN4EAwUzNXGZs+PEMR8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tiM/VAGQvvkdjWDAueCnv+3+A8rSiWefKqOe5rUtAVU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::31]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sabe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XRXje5zifjp6Fbk6oWcPyyfUwKs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pkQSo8GlXBsHVR8j+rKKoHZNDFqnPrb5h34mHZ5y+f8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.204.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "default" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XRQAr5gvjQ2da7dp3KOtxWC/jm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dk76IjWlc4Wm7jJrYR8sHwxqTfREqa4zdbixiawWNuk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:03:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.131.113.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ktor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XPNC271hcL7gDNUqy0B21VEIXn8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ODRhC7S7++F4V3J1Uf+nBfWZAUPNRryLnFpukS/UBZQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:07:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.64.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2b:cf::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "polizeierziehung" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XOOtitBK3mbAA3o89ff3pA1Iogs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cfnbJnUZbf1vP4Z0oRT62a20aMdRLna3QD0tBxR0a+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.138.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kikimora" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XN7JQMFep9q7+o9YzYlFuHXagMY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2wVqlY97c7A63+hhZAwvyqSWOWTDLI4mBwt08GRowSY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.250.14.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bred" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XNYAf7buSFR0QJaAuQ8DTmuSWjs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X8jszPd/4jl4Y7i6yqeKmvxGr53pCunZjRfY5DnkNK8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:40:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.14.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:efba:dead::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WaterElementX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XMc4ULoZrzkNele78sHvS9MpC80" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aEK5oGJbGEDRaVTmWtHWkrvcHJ0dzWz9cb3X9FKB9Bw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:26:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.15.115.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH103" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XMCvNFQiC4JzkEgnZhsuUYMvrEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U8T1rW5y9uit35gGoR1mJBZVRVGyCta2pJBLzfMuJgg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:203]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dragonfly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XL1FOUVzgoKRyP6XgCMv39DSAt8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h6kSVu5xOOXXBZ2ZyUH0oPJj2YAQFQFzKfuVyPhariU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:16:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.13.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:60:3e30::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masstor5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XJ/8+ApQUZt/vXBpN2sWwvPLBX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VQkHjlg1ZvECaQMzv4egQf1RfeeP58Wqi7W225Wi7r4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.173.167.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "affectiosocietatis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XJpm9Apj2cjflwDm354f1H2K0xc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y68do1ZPOJpPDiJTgnTuG/7JI/hVMew9MtW8pwkm4Ow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:44:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.121.160.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:1:e106::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Charon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XIvIKcQ2cxtQ7YZXAZ6Ent92sJE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qdl1OrP17gKzVR6QyrsLJ1Zx0oOFrqBNs1gqndZT7Gk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:31:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.222.194.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:203:6e5::aaaa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t4cc0reTor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XIuBGId3jc9wXz058Z5AohiJRR8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8g8btiwvhPVzI9G98COaBbal4R4J0nPyZaXFAJGySys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:48:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.50.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:1125::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XIagmUakngmtZKFGNt/5F0ZRUXU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CabR7EstU1/zdA0O2H6Eq/jDyF4uwfVaOmDTDac8At8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:20:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.151.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DragonMaw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XIXf22xyuqR1vnwGGMSBnw96NAs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/VruY0yeDT5kXAkewk313wzZBJ5K1D0GpaAZ7IR8oQ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.117.235.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:b700::6:243]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x67726579" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XIJEMVGj+apxtiPCi8bj0T9dDe0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0UZ/tlcRV2LnqBbR39gEd8G2XdGhb60MltoWfC2EdvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:00:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.133.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c206:3006:3962::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Droutnutch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XIDLVXyWytgO+OxqtVhlMp33Sxs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y89BxFbfmMa+NsZpPvyNl3xAJ44u7lCy5HPkJ0jZrro" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:41:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.99.248.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:10b:670::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=94000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeldenTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XFc54C3TN/sbcnGROTanbUl0Mj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZQtFT8ad2YXn290Kvg7C5NXHtoPel/08gEfbaKeB9ns" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:33:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.188.98.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Computer147" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XE2cfZL7/S6glY8CQNzvb6COTq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SuraxkkryUcfdTz6ebMBYy8JY0g03FeDWlgA2nFW7t4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.54.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orwell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XD8yF/mdbPpxHZQVr+0QA5cSAa8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L94ldk3rdB6yDKJxVf36MbadkplxBLSQRGcN4o/c+fI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.146.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "catapulta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XDaTwOe1N1U7qzW924Hd0k4Ve28" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6owsj00sNxP02pT59ncmXiYLo3ScojM3NQDRjACbY5s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.10.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hunter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XDNEsHjOTlQbkQy0FtQ6RdXMk0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Jl1sxSAfOGi5+cZ6nw9b9+F/lKgz7tKwdGWIOWmERMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.43.203.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Teuntje" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "XBJKJ//WWMt2FlcY2r/9QJP1yCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BsSoodSGOoRkhVAZz3Kyklx668zW1c7eQisL8Lfg/nI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:12:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.113.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:610:510:113:192:42:113:101]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay20at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W//o2uVrHaCQu7e678kRsQLQZfg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JqVnQZbmUDhoSXR/TdawWllLeykL7Lg8hylAXiAptWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:13:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W90GM+CsCXY+SWQdzRujqzohqoM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hfSiiP4LG+9R294DUfHt1CaMpXVtOHkccU7f8kkInEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:02:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.157.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:b7a:782f:17ff:fef0:a708]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lonesomePolecat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W9qt0Caoa7L49+yIL/qkMmshMEk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rdrGqsjvDIBnr5SsSFQZAC2sUTdb1/zNvSsUV5poC4w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:51:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.220.62.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W9G4PkpoTH4NfM5Sra8Ew153heQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lwkNhXYMmlNf9ihtPah3MPQMAQYKhBwv+c1ECiCwAXA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:34:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.9.149.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0000Userzap" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W8xWmiTc2R8cUYo+CKzloFckOMM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jtuTc65H3c4wyF52qFtEEEj78TIuNXfgoph9nn2WUxw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:10:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.250.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:5260::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PleaseNoFeds" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W8Y6vglaP1114KtNhUMJWhaShkU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qciGSc3LuZ9RU23TajJCi+hF/b6459N36mQqYFGxzPw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.166.129.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedRadack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W8VCvsOOjTc9IcannMk0jcKL1iw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ulE82Pvn1RSrk6U+RufcrX88uTrDP2Q4uZAHzbvWFwY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xDEADBEEFCAFE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W65Ite+nF6RkjzryZGfMu6O7Za4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J/x73vlybjmVPn0VDQpsNxGqHCxbFjqSL5KENbN0Z50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:41:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:4000::4d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "clubflower" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W6PCPop/RfoqfR0oD/ireIpeoBs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ehf+4Ed7DjbzNHTu8nI6Ngc2A/0EUwAgpF98itEQTC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:04:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.67.45.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gurke" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W6GbXVqwy5746jPad1hbdUSUALA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uN6dF35f0TJCaBElLcx+uL2CKi5nsYRyF8M1qThkk10" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:04:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torneverafk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W5er5EW0Cbd7Zn2e0Fre3dOGuSY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FlB77vazNajsl0AjEAy9isYMTxjdlkBJ1ToY7rZtOSs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:40:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.24.148.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:3b4:100::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W5CG1L+56jbJWJfa7XL8OXOEe0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q9DfCFxr8MfH2zRVpJxJwASFoMOw6VZkU7Hoq2tkXSQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:27]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W4PcmDQGZRoLT2rhlAeTzdam+S4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SoE5/8jNGpFnBnrQYqUAzvPtyObGFuErquTvOxQpP68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.55.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:172:1045::5]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W36p7e58FEq8KOuGxSwTU+dToAg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JYJJ6xfZpRc1XtfWdOzy3tE4nfyNmQ+NALiowF16/p8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10134 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::34]:10134" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W3xXfd68ayw5tVNk9OrWn+gYEGc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8q4/4cTWqm56Ugvx0v4+1p1owvVAlLc1ntnrvEaLkBI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::90]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dhrly25" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W3X/crmRlX+/HdGO1zTwhXC1qAU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qG+btqBke/fGvV2atdaz5liKCGl0SrNyU/U6Y5IQBf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.21.66.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bf0:666:0:1c0c:49cb:1d9a:a032]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "smallting23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W3VM02sZ/DaLh/0/HOtSmwVUXwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "erDo4dIoO8BfOd91FYIj8FkfSsWO5FF/DMTn6ibChpw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:02:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.204.1.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mirondalse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W3EMfTCTFgjutWIsJ52wa5ACPiA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N8V6aJM9XQLydw1Y0AwQKXcMHvuchnmnbkZn4ZSjRcI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:12:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.103.135.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9231 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W2/M4Qm7uOOxpj7DRgKrbiQ/l80" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OogJjrpj2gAMoMjdHynW2LoiXvos0nLBAYXE02yEcGk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::69]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FatalUnicorn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W22rFRbzMS5/Po2s+qvHMqXfZ8w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lKy5MC+wniXTKWVhhWGNHExx4oiDYhxfiMxW5BePaFo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.156.175.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=70000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LauchRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "W01rhFrDzJfrMWnQx3RGk2QyKUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rTXcYXihBbcELkE5kEmvieHbDOCZ2DkicVdCH4/FJy4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.55.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:201:8174:dead::4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorPi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wz8N3CW4oK2ikBOfwbE1WjInHis" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zZI5Th4EnjcDsuxQLFE7t7x1L6v3UntyNPs4+1nZ5AI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.205.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ShinyTsunami" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wzs+CbpfHrb3KgT+rYHZrLiPiTQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TUwvISwUmpW0LN+eo8pxrgphbX2XokOQP/m/E3HqRYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.99.104.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WzJtyPy/4ru84oBjmOV7bQVTnsE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "85p2Il2wy9WRW2AA3BOncbW5zF62XjgKZjRv2rnhaW4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10054 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::54]:10054" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay03V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wy4qPrBl9oQgoDqKjl40u0rPRNs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fx/KGtr/NzXGIHrNQqd8PCvsIDeQCo0V5G2c88UhBfU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:41:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.115.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:ad1::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WyVljhwlbN9M9s8Uvlxt8E/8O+4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kv/rBET1dZWDJi0sKjv2K31M/TEXBG2+/cN2d9ml9OA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.39.185.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:f640:0:8::2:70f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fastlane" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wx8NrzeKH6/P1fqc3GbRAj3AJ24" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iLzCGiFoHGoguh+PyBvYVMQbyjr2rKo3HrOwJz0zPcw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:33:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.25.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:141:608d::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CanisFamiliaris" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wx5f1icn8CG1ruZVTlfuWEKQnW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rdcp47BkmikndhXlIajXZPgNYH81MJT8f+4TtXhAEpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.100.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay23at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WwehzqQ7ypipceR2EcDw1hsYdh0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OCT6BnEaN2bAo11jOB+kmZ/ggDMBpO+9DsaJTABG9m8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:11:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WvtQLSYLzMmXTGV+lWuHjTNLzMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pc1CT+3q02jMwXc9sJFAqqe3whDY6ZVWJ4t/0oP5ZrM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whitenoiseRLY" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WvnpzFkD8R9taqYB6yEuVprmbJI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8M+tczdjzU7II2oBYfePlfIb/kHc5jv9Cb8edl8JDYw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:00:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.203.29.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:cad:d0::2bf2:2000]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RedStar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WvNjYwvf7t2m9Skne13TBZVhANo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dHhIKcJxKxyhJl/s/wnttn6hRj3M7hWsCGixIiLzUhA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:16:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.88.176.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WuqjL+aWg/ixJx5KMx8Wohv4CLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k0rQCDg+lr+6QwhqYIHVYpqt08vTUaPwLjmOB0jxVHM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:49:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.207.47.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fuckDIS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WuXD7n2Ys7ZM1R9yo1bhgUcdWfc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iU2tcYDbnWC+3mjox5ba2PUQQLAPdIGTaz2O7w3kaO4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:30:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.226.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:aff2::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra36" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WsxZ8xF/H2+tjIn0aYI8tIvbXS8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DEaG1WO0IgsUoulQW3sCZAqtc//nxuQffwLBS5VSx1A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.205.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toritoinfinito2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WsYdwLUcg6wuZV4GtzluzX003Ec" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6E3JLFxKq9+K3tcwxy/rdOyU7bkidPERvl2LCdQSF7A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:28:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "187.207.96.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9130 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2806:106e:19:2f73:2ca:5aff:fe00:2]:9101" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AllTheWorldsAStage" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WqY3AgWqYRztlnvbTY68udXbV6k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YZSsld87V3Hzj0bMUIVEwI7o35iy4EqZ55E+b0ZbX9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.1.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:ef7a:391a:8c71:a2f1:9506]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AcMNPVTorBox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WqKsNz0TLiHxG/+ZFnr5K/HLfEE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4lrMN9fqGdDJLRT7Boucaa3M9GGK3r2OP9Ckv5Zk7Z8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.226.222.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:0:1010::ee:7001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wp7ShlOYBS85MVOloQtCqsOnt9o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mDB3P5IvcqsDI+Y0mmreeyaZtCN1h/0TgeB9Gy2fGDc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:50:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.228.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LanternRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WpzSfwbwFPh0NZoBc9j76QG5MYs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2jjwBdZ7YiiFV//IRIGRbVmJiYDM5gyNZA4aZZdNt6g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.189.140.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CryingOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WpsuxMZS7E/3LIxnOTe+J7NIZmY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T+lMi7eqE81lBqFkPSOdgmoBNWfndY/s35f4EM4aLv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:56:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.51.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:3f:12:9460:76ff:fe49:d419]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FireElementX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WpQEya9y2xKt6y/4EOfaEtPWbO8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bFkXawXfyeo5jbsJTrqG4WyTtvVY7pXLiBRNAxd/e50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:26:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.15.115.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WoKSkmxeWiRtNbhDpylC/OwjW6w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0KQzuyteYGMuie8925KEQ/qf2Lv8Gna6nejlFOyCWUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:25:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wnm9XMbBKNfY37SWmwJGeU8Rf8Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jobER20BDzapZRSBQ0Tw7YWLE/2ip0UXzrG+u3BO4Mg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3647]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kinaugate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wm/hHbi/yts5W1NtFs+dL1hDbTg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i10d7C6V3+pwfohYIAJK0Jk99Y/Lpvs1Z7GBzPU2ovo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.197.195.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SCtorrelay1PL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wmwy5WKutyAlI4zvPSt2OiLlTtE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T8clu7PqA09Dd6nQWtosXTVcSlowKrclIGJRdP5H6RE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:45:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.115.38.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1e00:3d17::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "always2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WmrYv7p09kaCKZbsA/00hDU6QbM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hoLikPOd8y3ahZZxXp3d6cnMWp9LI5q2ZTB2ywyUXgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:31:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "119.59.110.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "goodaires" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WmSGPC2XDVxfe9eVZ3RxPSBTpYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oywTezq4LQfbhWeQ06eHAOQNmSdgfmUCw8lzraOg478" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:07:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.103.176.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ripterry1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wl21U6kme0WB3lLxrmMOIW5hXRs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5EH8tfgZk1i/7iuYknPncNNyc75SDtcIcZl1Q/zT7HY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:21:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.109.131.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HelpTheUkraine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wlr4djk+YrLeGN2tOK85L09rHFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZRp8rqOhjhGxw/7PZNVqLGbB/aoTy3HTGTwAtcAyGZE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:32:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "49.12.189.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c012:e546::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "russiafuckedup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WipDE5ECbeFe6ZvReSWDETovgYc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rJdfXSeShvSYNBSAB695q6How4Sh72DHybPCj9o05NU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:17:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.76.241.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xrl4tjdevde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WiW7Q7sO5Xj95zWnXAKCJapKE+I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qvyqfrs67qjD7G0Ou1toFO1EXbwzhBEZtvly/m9RUIY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:14:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.45.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:67:d1a:c44b:31ff:fea5:7443]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Politor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Whf0fl9ExVCx83SahUl2bjTCwCY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uyhszRzCaUZOfhG51IViH/wAgYVzhUfQnVqcj6JO5jc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.217.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3000::10dd]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra67" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WgZD5FLhQ75Um6s7/ldfQN29Unw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CNFQDD8JfxdPTbcs6NtUT+mv+ENg2jPeYdjIEk6L7dc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:11:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheSouth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WfoOadzN4Fv7QRCqO+r4P6bKZaY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2I15VpcIu14sAafVohB0Cc6AdghvAvYAF45RlMry2aE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:40:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Anonymous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WfhzEyMySzOCX/M84E8iGDkR5z8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8sRBSSp4DulK3pXBrbb4aFGBRsk+Wst/ZB4yJNx5AxU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.21.40.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Raven" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "We5b3AD9m0suhDa7bkq4kTrOoy0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "86DGqgNY0tWLUnOksEYGY1o1xlaHZuba7Z9WDc98RyA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:23:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.51.254.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toronada" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "We3ROdlVGiW323zdgvEsDDeKksw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fr25OdPrOufXJRVlmJ8yUOPP9ZiJjVK++uWP7ybZaEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:32:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.158.148.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 50007 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=890" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mriun46k" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wefg0DIEmqAYMDXkm3xFQWcVTq8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uSrbs8RTNuw8NGFT9lQ38scntLG5Na4qorzIcdZhJFM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:34:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "114.24.0.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8008 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BananaSplit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WdQbBi8jJNDPqAIkwOTNYpzu84o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qqfN9+T+Msro3KHJIYchvGV2sqKELwd2aYIAZpuGSKE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:10:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.4.109.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spaghetti" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WcqW582jCrNsWXtJnISL2EV0XqA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1A6ZD7PO1lizr8Ck5L/CIwkESJY2dxzbUriEMjcR86s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:36:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.135.177.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9060 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hagardunor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Wbo1WIpjNG/maujPZYgYQg3W5bI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aEp1JFUld82bMLpgMnDKokjaauKBOCnAPvza0iHMCcE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.202.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WaW6z+MrbKD49ntmIbPouJMSy3o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "COdR0VpOJmMpoag+Du2AkcXqnXx/xAPtxrBjYJCuQzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.104.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ArkGuard02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WZ9tVLtdyNr28zVpmvZpsh/RrzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hdWf8aZm7WI1TB2eQ8LpvAk7f+30nKe8IEdwCa/e3ow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:29:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.247.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dunnosomething" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WZpW+rjoqou0Z6tzCtofEjgn5Ac" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zXo+LgAq1ugji9xCxREDdza2BUzw2BHDC6+TUNV2UQ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.198.14.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 49030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorNuc321" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WXk4K1sq/lPTpPZY4huXHFRK1TE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QMkM25jX9UFe1PMHag3eeKN0gRPfm9vE0n9UGAIpTfA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:14:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.230.122.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Playstar01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WXWFi2ofN8zJYCa5RurPCOF3LQ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "natHk1AXIVuzL2abxn/uQgJ1DWodoEGTxGTyRJ5QYzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:51:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.121.44.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2af8:0:b436:f5ff:fef5:a154]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isnotsocial" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WWgDCABO0y8E4cVqucaLFMx7W3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gBJ8TLQ87FHK0KjegnXYs73EVqQska7NSkx7QJm6CCY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:34:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.212.32.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WWMyNesyiach+RJnqLwrF4p13l0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hUSYioFsj2WZfe82lY11ZQTjUgK6FJBrUye/JrQ/eEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.165.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:473c:8b1:9aff:fe93:8f00]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WilkiRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WUgWHD5TnZvfGKA/FxFGRV6R21k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1Eiab/B+Q6wEsWe2HE5fAftws39Q02wB6KC8Ogan+BQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.129.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:188f::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WUGT5R84LjQIDXa17K9ce2fPBe8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KI0wz4h1BLwXwQKW04JXppc91fzaow1EJI6buxvUlNQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:51:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.195.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fe09:486f]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE77" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WTQHl4+I59K0UEVnbnw3krwsmZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ch8OgvwtI9G9ErwyG01i7dSeu4ZYg4Jy4u89ls3cHxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:13:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.67.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6030::4dea:107]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WTNHOjVjwGZsW7gzwdtVPB8pa3Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Lox05fQxIc6BhHje19+2Mtle0MZVHogEgGsb2KbP7jE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:22:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:2::234]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay28at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WSq4A3LbA2X5ojV3AqyXwG5fg1w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U7LLlaSKW2DVV5+f/TM+QQGAoCgwVFeofH8OhFM47Ng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "funfair" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WRY8aCHyqNs/omBHLbRmSfZn5a8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kANLXNfV4arqtUXLrVB1nbdU0ipNGMOw6gC7QiIwnBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:21:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.102.161.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra83" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WQ9u26Bjq6ywg5HKPXouw1/SAjU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hsqpHsqXg7JmD+c39A8ou+f0HbuQsl4QJvAc4ikSEKo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:20:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.228.129.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GermanCraft9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WQMDdyqxOlVUgEL8NQHAKVKfUMY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZdAIW12akLrQCEDNYStLjWi+Hv3EfkHcaRgtOfhWUEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:09:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.246.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 446 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 83 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c010:5fdf::1]:446" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "slauthtertodeport1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WQC3VzlIuHodoM1cCwbNy3Fl0gs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8xCa/Sx0bBqf61BEagloY9vv78JbCnO51YOAR7bbMw8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.98.9.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zwewwlNL1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WPwqqzeSrDeJfTQzH09OADQd7Aw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+OPwxgEh3nCjsgWPRrS9xOWWCsyb+zXmsrh/ZXl5Gr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.14.30.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27ab:0:2::22]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelaymirror" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WPPilW6ruB9nPi+5DhbgAdtKw64" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XewSbVY4BPLAbyUOwXbTDLoWuxbGgghl2FEarbf5aBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:58:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.230.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uncreativeGuardian" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WO+V+YsRmwoLKir9Wn/GtUzGmGA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j2q9Bwp/WBuTA7zat0iX5XyGkzeeb8Pb2OXGXIz/Noc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:13:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.12.22.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuantumOnion252" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WO6WiiRwDAtR10lrUnOtvidOxLE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BZJG5QMng+JW/VyU1rFvPrUfJtsutu2ynSVPx0im07M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.147.122.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SamAAdams2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WO2cnDXkM+5Ydk1iiStP/VGKPNA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QimvA0Xc8peq3ssxa/kOLh5ucNnA1cavZOhiWK6I35Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.21.100.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1158:2:cd00:0:74:6f:72]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "enbyfaggot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WOwMpz+r9ut8tBoHAINM1eGqHfU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tz7fEaj4T4a3d94ybdzmdLKx056qWD/ZhkM9l5L0WBg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:04:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.45.4.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WNkoDUe94hhONGckpFFn4gKDmbQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vSxnUGiefV9Bkk7cuERpOvW5dI6U7NKcULf6bENOvFk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.58.56.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay20at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WMvXckIq76hxkFYMGTwOjAO9pr8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AAc02IMbv1Zv6gm+4PdoqdpIknijcazbHtfTZWb5O/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xrl0tjdevde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WMrf2K7dn4hbRcIonIHRnZ2j1V0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FEHzUH50rLx7XcYrsAx9HrrdZHdTyhG/wMTtm4z+ySg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.252.121.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:2500:571:fea:ae12:30c7:85cd:7ed6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "f50" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WMLpugKsCjmwiwrnA/XDGDVLUxE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SRiec2YoLq9XDLm3Cpbhv9w6s3mRyYeLJ/d6jyeUTGM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:55:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.17.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipba" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WLws/6eJT8j0zF2Kd+OP3P2x3A4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q5/MOkUQOFZNDugqeWDm8eyncTOiPq6GJzCVT1iguto" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:33:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::241]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iblech" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WKmSHdChOJNWY0YlxbFKzBGUqVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ftiWVANM3KhxtQk9X8GaVKw/aiOVVKtHpLxsMSoTBJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:34:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.143.177.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:3003:5755::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "serpico" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WKcZlxLA5Ss8Xy+Oiye1pivli8g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0EWT8gfvz8YQ5VjTNnmn02GSXE7q0l7A69DUloV4TME" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.141.157.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WKKg6Enp42kvexNiI1B+k8sJkVA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "musaWRXq0iZl8x4YpWfIsgpXy/N10MLA9JaO1N3Huyo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:16:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.165.26.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber44" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WJdSLIvMiGpZ4wMhJd2x0zoVarM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/+vyZZPRfcnIg53s2gzgvCD4saEpLg6mGT+rnQZJMb0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:30:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::22]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Asen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WIpsHsSHWDD161foljGvsocfWFo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zLshQOGPXMBZk5Cif86MFOHte7j4h5xDywGA3SS5BqQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9021 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trumpet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WImlTM1owxn2+Kzv+B4GPm6Eub4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nQ3WqHYpVzAfa4mzuX3wGju2vNS0HzhWYMzylvf7Ug4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:14:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.64.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "alxu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WHserx4i4UjvsBDaozes3NTbXLo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WOkSzEWRcxqt39gVfexenCSbDo8Q4Dz0soi4pnaRjn4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.62.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9941 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:4b0::1]:9941" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=3-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CarabineroDeChile" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WGmMXlGNQo3KTZeArYN5u2O1e0I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VjCvZQFkPVR6U8Q1J9YuzCgPgIiCIC8lDY7iQDLufHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:20:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.8.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f623:5a78:29a6:8492:27b0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "guenthergraubein" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WGgDt+354o2ZtUCXckKH+3EJdxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RSkZH7nRk8ovP+IjOwYrmLdms1irpYC8gqk4kmB0w4s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:51:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.169.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:d4e4::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SchwarzeLocke5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WE+qADOlLEpwkcPT/fcKLv9sc50" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7ABMeSORAYFxjmx7wRQqwHcRu7Zsodhpy7GKPMHWmYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:58:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.198.207.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 53 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:a0:2276:1::20]:53" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "transilvanianrealm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WE56cU1oJmCDuHM3LXZll732eTk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RavoP1zdtNOwXfzi92sTWqZ6WyJq1QGAkUp5TKXGSIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "117.53.155.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eeg6AiteuGha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WEfVoBxHFmFD9zjHcDNEUXs56xA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cT14g5F41Bj98AgHvH6uLu4LwPI+gJX3Zm9/rLyeaLk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:12:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.72.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flokisboat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WCLNjoFKgQCE+zOf+4V1/HEMfzE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R3DVQXIoDWSy12X8DqNlKZLJuZmkChJUnzfsbTkA/iE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:42:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.50.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d009:2844:1ff:feec:de5e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TradePath1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "WAfTykMh38LcS8F8GXZa27AbSB4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nKC8R6AP2PJdqa/HJlxoIcWY+lbUGiMVdGeNLsG7QmI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "35.136.7.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kricklen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V/ySfxza3skzgOJH7pSaN4eg234" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hox9ZbNrA9vSfTZYr9RlJJ3wbVe/yh+4HBjma9nx+28" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:25:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.63.55.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 35278 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 35288 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TachibanaLabsRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V/GAk6b5UrHF92cqnOfHlhPB2RU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VlonvJMoK57d9n/utT3KtUOnqB/kl7knMI6uSKh02xQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:23:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.186.37.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0161" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V9DKk7Bp3MwsNL7SvcvHGvjInT8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F/2bJgMdNntzj6N3IUWOX9orIDPZ85WHyKerIcwjeNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10061 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::161]:10161" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber48" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V7wI8AxqCDYx7zI1LO/3Vk0qZq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nLt0kwCmtBEvejAeH7uq6yFmcfXB1ji78Nm0K6lD1FA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:07:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::24]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V7aHPC3DYuWkKoCftWJM2joCVDA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "es+XLm5qyFguBkRG99Srbdxl6QsVkGrJjN3/VDhmYho" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.164.194.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privater" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V6KVN38xZ61VS1IfRhUYSUPDnOE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7CS8bNPTtPdgx1Dlo7J+rJdyKHtTtowCHmAUNjfV8Ic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:42:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.213.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3a:2b96::2]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V5b+HrV0TrNj/bSZ/7wveTPAyko" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2oCbe0BK+yZ4Ldn9Ei6oSxMJ5m6AuyrB/mOk2VaALBQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:20:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StreamsofLifeSpa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V5C2KtbHmhCSswmTqPD38jqWn9Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eIx8DnniTQTB6vd7zExaDXAENaoFLiS8A2sNwFAYqeM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:28:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.83.237.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marylou1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V44Afl5FNfv+93WNhYewe0yMXQY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HBjXtmKdAsdd5L8P+miJ3GlnR565fO/rTpXHVeF0ntY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.234.157.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2608::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ruebe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V4jOwKfF7iUfxyxVcwprH8rqHZM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WVTLTwcMZs97uZiOnnGHB5HtCYdOhNeB/VD19jnGqh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::1]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EpicOnionDefender" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V37NshodG5LoN7cLmV92shUdgyc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YGzcjZQJcah5ex9PI2Q9mrNNejrVzoE/fGl0FA/syYk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.130.150.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V1bZxAPYm3mv5p1QuwaCujGDGfs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wScHOanV/8JOZCxQNtE2QKcvlWig02o/97DVr60Z6CQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:55:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.58.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pythonian4000" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V1FRQkm0p/pRhzY7tsT3YSZykTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SF6/CRrma/w7/fw+n8iq24eg3qkoC2pzEHQpNfpVncY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.230.128.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:91ff:fe96:8818]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masstor6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "V0ZGHr1cle0q6kBTDJAUnTl8+3g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8An6zMfvQdAJyjS4cZcXtH43AxLIAwVVCwOngXy4htM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:55:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.12.71.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "loglessRelay0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VzzD2PHIRaozqkWTtoyg1HFWqjA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UQoCYhe63rGUPRfvjgfo+4pwFicyrmLihmO2oUrGvkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:49:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.98.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:162f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pishkin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VzyIk79DlTXcZyQ8nLY9IEqUezg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xfMRX+YlWljzMF28CkQ2aFKHMMfwbh4iaQCSN8q2X7I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.242.55.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9009 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1838:36:3fb::c9a6]:9009" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididnteditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vx3TBGtTRQeJdwPjNk4gbe9l0UE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BZVljnhIHz5ynhEHDUMuXR5VnigGUjJKJ8s/wOsis3o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.209.160.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk13b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VxvnQ13J1mC7XuCjdlDiQhAHuuw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X4eUSD2OokH2zxRI1BitmUwrFmKQ9s5n/smhetnsVtc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:54:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.44.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:190a::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VwZC05GXpyluOMnVIbbv28Z/uG8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z55ANRdkN/w2LJX82gVJM14nxiB0UGC4Sr1+WvGUsVQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:13:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.255.161.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aesop1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vv0s8rn7dr7FXIc/sQJNanGncRg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3q+PydosUdr3Ju/wSRszmQG6A82tkr+ljjF01qqWPOU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:52:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.70.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeathscythHell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VvLp5jlqqp3lTg4RxjcKRTh6vE0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xfTYGRU/YFcw1eOq2hjUM2KdzpJyOJfAGflggd9u2NQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:46:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.97.125.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DocTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VutxZrBdtlMfZj+DF84C7uWv7U8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IjqMoWULiaBU8FJTMVUqPfkEJnPeTpigYrhIVbpqAW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:35:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.20.0.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 14353 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iDidEditTheConfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VumIL8e2LE8qlRxeLVcNbnTxXG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i99jjuQOxmH1lVuI87zxv4t6Jh7Zr+5GbGf5/RzOay0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "155.248.194.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 26666 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 29030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torprops" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VtyommtBraMOiR72X9zAcdwFB5s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sWn3fV96lYmFlZQNPbunRUoP310pb8FE34F/BLGo5Zs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:39:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.19.142.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SaruTorKoumori" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VsXxbQbI66bfpcE576gr2mF0+k8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KDhAnKPDZ2ZMTr/g3/1lsoko6YfML+sbUQPishcWegE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:17:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.175.28.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vrugqy7OO3XzZJXiYPQ+CEZvm28" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c3Xe4zRwcMTJh8Z374VbPmZ+iSH1hEkIwEpctfDBBhE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:09:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "112.213.36.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2404:9400:2:0:216:3eff:fee2:cb2f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "auxacacia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vqy9jEx6sa67sTfDWlol4vAPXtk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V5YvfGnQnbaKIs/v4Qki/ek2yHBDUDqaBz+Uw2QCVVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:44:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.77.70.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:6001:13af:5400:2ff:fe26:aef]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Akka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VpJ+YbUebzY/tVSYFQpt389wd/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8p6kbNyB5+mz9CgsXMZfiEHWg5HS8bKP33iw3oPCxko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:58:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.33.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:2145::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RunBSD" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vo5DT3JbeCjRfvKzPC9cyE8Y/OM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P3VmGB/RWNjUxK2aFJkLGzw0AdLp2b2fjCxsjD/AutQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:34:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.219.238.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OrwellianNightmare" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VotpE65RI+26MEkJpWmv6PnnPEw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fr95K6pwMfdnpcLpyaaNn+mASANbFUK0V0DOEvsHLQ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:25:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.253.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:6b40:3::3700]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fisher42Exit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VnhGCCQssVtw7Wy7j0Duo7Yq9p4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1CDcxAeTomjg/59Sk5b5cJ38vwtQjkBYemOiZ6kKY+w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:05:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.247.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 465 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:16:8:6::4]:465" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unprintable" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VnaAtPSsi5rg2TGzdJCM2OExgGY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y9+n07RFuAP1GfdwhNQbpGW4LQx046Qn3T4GmHwO9tY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.247.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:241:448f::2]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NeighborhoodSpidey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VmYNviHnqd/zFjLgNTcugwZYKTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N7JnLZxQ2ywuk0BP5u9Lbbb8vSm3Uba/nuEZkK0THTM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.171.176.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VlAIiLSe0RNi4n/xiOAQx07MrhE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RgdYRwXKIHs+ZTBo3hBI7cwfkPvNBnWIdPIf2bA02TM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:18:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.199.60.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 61112 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VknLIVjalPt0dBXyZii+wH+ldhY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OwsDKb6ud5PK8OXDAQf2gZCmmTJFO66o2F/yz2XahN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:30:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::122]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "5h4d0wNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VkVzno73LKfZ7h4SZ4tRpv+HEcE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M/vKJyHkcxgvYW/C+YpzxMad1xDsh0deQHHnOfzle0s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.94.223.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gh5d4h56s468r784s32" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VjRN7jTTNDCQ0ArYjOLVi1BxLIE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mPi5RuC1TXd9Rdwqbv8p0AFgvILLNyQRzlw+eofRd4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:52:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.96.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:182c:43::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayondiinkarazan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VihJXZk5qME53UQUAt5C9wErcJI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KlikN/VAQORcsBDJdbrYo/GJn8dwA1pAqME/duoW540" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:24:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:8::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VhkFYeYI6wx4Nm0O04cZfmCjmJk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KHuoaNkPNot1Js4u3TxeT/MYirtPXxg2vb30tQCcScc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:50:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::65]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "leRoyaumedAmazone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VhCVbYWd/cmGipHKas6i6ZIwxAw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jtNiOzsJ7OIXlZVUa4GLT45xMCbSU/0B2vCdwfzKAtg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.227.82.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RASPdatenschleuder" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VfHO0+JZBFpDpHbLxtMPdsw/Ybc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VxOdICyOl/rfvnkd4DNK29fAdIshf3PTwqlE/AZCBto" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.250.2.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sharingiskaring" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VcX0WxfO3kNN4xaZ+s3n8wYjA04" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BLHUK19AJQ2Pslw4GD7emjIZvtLs9xFVKzgdCoFOACY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:48:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.62.163.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Boedi9Worldwide" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vb7BAyo8Zq5avybRFQU1IxhzbUU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/yiWGtB3NJNtdJlPg8IEL6Cijk1FA/+Z8bS3rw2ZzTM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.167.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12312 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:440c::3]:12312" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange034us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VbWp25wrV8A1Q3o8xSprEdh3y90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TQhwB2sye+WN776jbOOcZnjCOQm6ulRvt07NJxuOFF8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:33:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.212.158.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vakr4qdsZKWg2w1PYdXco3tV7lI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mNYXU/8R48OlI3kNvbpXA+l17Wlm+hT0OHdREM8kCUo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:10:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.99.255.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:5e0:0:2:20c:29ff:fecf:4819]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "R2C4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Vah39vytwlqompQAM9pJEDvLEfM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LcRRGlcrXL1Q8H8xWXkbNuzq8mL0eWDF5AT1QQ8fV60" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:20:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.85.72.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:275::e3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Valinor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VaWnZKByF3p0N2XBVQNkIZArN4M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A/iIivgxbCWwZtUO9Qeq0OLCRe/nQ0K444l5VGUvvjk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.163.129.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeezNode3877619345" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VYBPnTf3snvQQms8sGxktND5VUY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CGR1f54hFrOCDBSuqMD9XVdgwtDdYiMEKmvfkVSIgG4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:12:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.88.16.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KUEXBON" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VXs5FG6xIcjPoixIrXi9vbyP86E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rKgUHd7cOOkRV3H75MA0dxaQTZLY9dZ1Apz7naer/to" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.86.151.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:43::e748:81a9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ogopogo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VXrOyFD1Tu5lg5+Dys4rCCW+gR4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bEyAY8EfDArj0gS5EPvVscmPifdfJGKK0+oz9Ocy0NM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.160.102.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:132:300c:c01d::a]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VVprfLPY7KN2tMtnAVlqeyEeIdM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m3/RWocVenT574B5WDd6h9YKTUG6lEWAwOjM4MCLRTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:57:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.106.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "magentasunshine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VVpojjhd+YDhs6cslg4jg9nIrPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BfJWo/FkDh8iHAGqcU6miQ5AqKl2rrdsKWAZ8R3NmD4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:06:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.83.132.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::1864]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jakfrancjamoze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VVj1RtKplt0vS2piohjfI4SEUuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "75hxaqNwMFgBM2xecm3/XhYH1bgBW4ouw7aoW/P1tFc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:34:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.135.156.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4899 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VeilsOfTheOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VVgNcbMXoHL0pNz26k7bAVc0ruc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UyXymXcWnevfuciTKULfj0C350rO9Y75WHZzRP1PxW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.146.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:6010:213:208:a2ff:fe0c:8128]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodevotionn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VUSQkpmbuMG6U9DRzWDgmZ2Mosw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ld+snNZSCefXkYeSmNCMnIufdiT3pWP1vaSl8C7zMS8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.128.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:91ff:feb7:87d8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yvrRelayPi2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VUCgSCAmIMy9Ff2k/w1ZZ9LE5oU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "geF4XXhH66Wy1A6ozY52Dfzb+C6Re/MkCA3LzXtcQNA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.216.25.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9021 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9022 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:569:5197:1800:e449:4f90:2cca:1ba9]:9021" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StriveForFreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VUA7llOoH2jDl4fgAL2fl+HzslA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jpBw/8C+nUNNz2U01zfU0DK60SNThYeT02d7/BrvvEI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.231.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VSwuKv3Rt0CjjKl2jFHsARsq9wE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+aN1EvnowQCvjYJ6PBqhJxrNZSN2GtZuXLg2+KF21V0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.104.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:1750:680e:2aff:fe12:6258]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zinom22Relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VRveRh+vAs3Ox7kbJ0udOjNaL0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W+Lf1E6mEiud/nRSPE5V8WKurdEGL31+CuSqSAgUZbk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:55:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.53.179.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KiandChi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VRJVdJH4fYiPxIX/ZIQmWnVKv1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cOL2KUZPMW6dPbanIDAFFtPWXfypjOB0Mak1axErIUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.131.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "undisclosed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VQ+MI4029hF/MZgXzDvxbSP8hVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2Y0q3U/7AEhAcd/FiJGQ2JZ62inkLC5IYyiv2v4WUZ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.105.221.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:b480:fff7::248]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryTessa3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VP+H4Yz0s1G7B4pkCk3FJllpSF4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4f613y6HWMjoSA0mVQWpo0q4Kks4Recn9Kp6huXGSJQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.112.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:2e4e::3]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VPXYAN2Xg/zyIA6A7z0ahno/bWs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wmRu34jIR6HV2fF1W3W7CeyjvAjcaeXJE51VlIE3UC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:20:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.154.119.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "suesskartoffel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VPM6Oha26kTy2zYn/FV1PObCJJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bZed5noxdmErhruYYweZxHpcyAMLS/DZcvHyrtRAqoM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::13]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "paktindustries" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VPGz2NFI74y+B27znz+8FFmCEFw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R6WkG1lGoy9Ot12UUtr8+snsfo3Q1MDVF7VrK+8lKPg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:59:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.125.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:172:291e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uzieka" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VN5j9FhwWLeRUqdaAjjX96AnkhU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iqfJyTY+63xvUe/XMbqC3NQaBTRSdhKjAZr2TpWmDeI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.36.38.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privy14me" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VNWf72c4fh7uhdTRFoU0LRVYKZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D5mRSaExtI9O2W3gohAGjqf8tjMXWY0nN+8v6MfvAE4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.210.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myBSDRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VMrlBwjnCNSerY9v/SCUKLwhxBE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xkdJ5nqcUY32DwoiByQhMYCaqCRy8lQstVMEBxmlyYo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.71.151.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myVeryNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VMFeDb2rq5E5eLv8cT76r3Q3xRY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Wjbau0liKso80FeJT+CJ6uLgi6XONJC+E6DHpJaNXgg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:22:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.58.85.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "coolrelaysmileyface" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VLtYh2Bq8r0hPEFl0j51zLzz2E4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ANA2i8Zzsp8I5n22j+5P/AQ8nnzSY1X3rNHiPE9uzFA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.235.133.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:3710::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0153" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VKyyeKoqvZb5FQq3KwioqLHkplk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5gzE2LaJU0LJr7FKCQXhrsMNupt116pGpHB0Avy4yRU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10153 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::153]:10153" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unlobitolon0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VKpMz+gfTdc5HYN6uwiS11NV3zA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cH6Sdgj19FCA2Tdq/ArljXdSyfu0zVmPH9fL9GmSXAw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.62.94.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:1:d0::1c8:4001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VKZirjMEWLmmWlQaK0tbbDPjvy4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4yAI31rJVU8LOV9E3Mrb9WWNAwQmt/za2Bins7QwLMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VKSCC0bmVQm/PiuJLmaTCkF1nek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iWYWyypDn2PsCXMEmR++FrFMUlqQmBE20lhYVNqdoIs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:37:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e64b]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ulula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VKQDobAV9uWmQa0SFTCWa9hzE24" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D8ulqsKA0G670AyFlSanJQ8zJ7WCiyKAJ6eGmeC9/dE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.6.43.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:169:200:d::15]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MKDDT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VJ+k4wzQmHQgUrE87sz2Iezg6dM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "svYnrACsgwLewZB/m/TNFdf/sUJp5tng1RWTLyaQvLA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:28:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.202.51.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VJ7kn7qaSS+vci04Muar7ecnnS0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lx2lDhA3THBRP87wi7OlCw1pFF+TROf07WKg9z+Zo0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.161.193.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 57207 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ShardsOfNarsil" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VJLnYGSKq7e+wIvIfo9y9V+7qQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oXE7im8pU8nPSoSj1iXSbYlGIcu2piRLlLTNHDNqIAo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:15:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.176.45.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VITF99mmAQVyhQqONdeLTTUnonE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MR+rPmIeT6ImPJBS/SafK/7G04IKZx8RVV70bKW/Zps" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "taki" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VH5uaK3htvSSxERDWIqTlhBAHfs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FMxBS9ZVTPbuhkR2ENnMWJu/B6gBOoosqahXbeYbteo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:58:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.54.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1820:c0d::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chaucer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VH2lb2uItsWWs+MIaAPNpPDvjyE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "26mfF8lMfqn5JV2IDm1mE5UswnVEENabcQSCDElbSBs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:05:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.160.102.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:132:300c:c01d::6]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VHuYt2SwzH7kVN8b7lF9LFC2Ijs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZEhpgc0uwmHztpJn25dxddPx5faL7M7M+V42Kbq+8uU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10137 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::37]:10137" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeUkraineDK2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VHKgKXV1eGRh5KOpfJEzCpQc8qg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qhcX9QClu+USEbLZDvoiBVtSMckeU04rZYMMUm5zqhA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:23:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.51.76.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0d:3e83:1:88::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VGgFtQEiCtdcToPxXKTS3BeclP4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G5cvwScs00yve+e8k2Iq22nqcfSdUa/ynNkkZVHDPGM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:39:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.30.123.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HKLBGD" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VEZcERUbBNbtqdQrJaODLZMDo8A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fIWiX9sIoFLD1F6r2He5z2K0KDCSs5a6upoY/z+3tE4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:36:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.93.92.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VEIwrlVsScveEGeF/kEe4GFZiRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eXuACNoT5d1w3fiBadqCkCS0rC/oeOSmqpoGb2KXTks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:57:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.65.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6010::4dea:101]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OignonCA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VDcdZPSu2M0e+O0bWMclxAY73kI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2Hsv/UUVNIq/weOnOAEqFEH7/gPgmMLHxOkv0dZZSoY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:54:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.217.75.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "orangeApe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VCVov/w2J5zgyp1P9JcjMEd/heA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N/P+Ia8XNL20YP52UpVFysfZaWEa7ouQXgUeklNXep8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.235.55.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:f80:44:37:235:55:83:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorNode02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VCQRC/BSRDLYBgUJBjjZymNom6w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8wwE4lXL4SQ/hctrlY3UD70oNPdZfNZJC6XyjcytkMk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:49:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.162.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:3698::11e8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange004auX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VBLYYsdiXxReFtPYMfbTOp+vXuk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DRtDy1vHSpBTLm3V4Sqt8U4hpkEWhuw1am6tphxDwC0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.172.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2402:1f00:8100:400::9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "VA5ktU/tS3JcX3vU1r/JXafxHxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UfyLj8l7WiBDTAGJp/AJvhWHizmk6U7+bmNJeS1CQow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:07:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::63]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE58" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U+6h3aGRnYj4o4AkkyMLXGToey0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rQEhX3/1x4MbCfA2v+LkqFL6nLm297EsL/Os10dr5E0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:28:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "170.231.236.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "urilikann" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U+jCobKkyHk9H8sP0igr/QyIvxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "00obxtqGqzEUEMwuII3dhr1wFM1u83cTPreVK7Qj1Ss" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.83.128.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::4dec]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapLON" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U+V06hl60mC0eRLzqdONs4deo8I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oI1Fll1nMM47Qtq+Wm55bOXtFMSvfVW//gWOaKseH3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:20:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.209.181.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:1:d0::1128:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "propsy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U9kFaqakxWhnTrN+0BjJeNA0i5Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UyTpoJuUSkyqiwnQqojbD4C1jpsDvg0Oc1SOE4N42wE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:15:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.31.77.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:6:5019::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis67" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U8n0lU56czK7DGEMW44EygZa8ps" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0Pcn5ksfRCUgn83p+28uFAxTxfL8eltFi1d1axpqPCo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:15:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:126::a5c9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Jemaine2956" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U8YD6qOm6UTGjyO+pJDXWStXlWk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pY5jf3cfMk9gbIQnBs0xhxGzrCWjOyzqPL4yTPRys8I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:57:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.1.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 26485 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f8f5:20c6:dcb6:3c07:1c9e]:26485" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "2livebrew" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U7i1wqM8SJtUMA1Vi/7iw7EvOHU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9DoSBLKTd9EyVTpM1W4Csao6pnmOUQdmCQ3bqW1XhH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:51:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.77.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:c084::b00b:face]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kuerbis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U7HG41cGyewwuUaLYd+7Z/Kb/C8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BSDCf+hisGfi+j6TohMk2AhXuXIzO1mZrnrFfuQJG6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:54:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::3]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "42isNotTheAnswer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U64XtVjfour1UbZQ9iYLPjH76tA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q0CQhrCF1wMPQCraPlcgWPNmQjUQlRNPsv4mBQPMVzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:29:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.253.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x539" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U6mXIwZAwEyZih3j9dPNMDxEgbA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QY10ZlqU08dTcYMvKKmfZWrRsjDTgZs+A03EEq6CbmA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.195.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:bbc0:1:9::eb]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Apollo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U6NhRr8eHq4y8CYzA2YJT8nks+A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8VK8Xim53KY7F67vly29mVbTWtnHh0s6vkJAMhNngNc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.30.239.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:4300:a:3bc:224:1dff:fe70:b203]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EinfachOhneNamen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U5xXFioOyLu0Owf5FrkOxGyLzTg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H9usJ5yRArKHUUY5zwIJfbh9+s7OKFGR/KEY+6/uDbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.144.60.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moonRiver" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U3NFV/2UKmnPPvzO+JAnjFmUP1U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "olADTUAOkp9omHQQuAOLGB+/ckwP5KFlXPyNP6TtKRM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:04:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.167.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuantumOnion253" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U3L3ghdK0nexfp680fh08MvxF1A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zQckJGGmpzhw7+7eLKPR1zBsnj52ZNe3hcWH0VT55pc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.147.122.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "central" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U2/EENKmn7J2N9GOBpjUyDKlatQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xJhJRGYbvdU4LLr332mC0B+z4z/hcHkZlcFKLUMiZvg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.188.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:62c:14::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lazybear" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U252dMgnmAPt8cwQtvZ7OVmwJcI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N33akRSi623L/Y9Cj/JOTBZlUc/KA2n/z5gDfmFmHHM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:57:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.171.154.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nemesis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U2W6fJj5s0C4EA7CYxesE0s2PVY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gu0LrRWfg0A73sZXk5En27unrsrTMJO24ZLH+89UIPM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:37:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.63.170.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ethergeist" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U0EtzFVTNbQA23J1DtC+CNA013k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iXscfDqtcLU4hH55qTqLvPG0PJC+6GpPjEJrzC6ouy4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.123.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dlecancom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "U0EIAx+8bhmC8aFAK2l72bRaJMo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bJYQgVcuMdIWlDhGUfDlO09HMOxn1KR7MGBgtpbc/8s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:08:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.99.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 20443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:62c:2630::1]:20443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fabulous5794" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UzmsfeDyTu5Mh7+Fa3438979ksk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B5bcPZG7DIUpEK+xH/N7gvWnWlC3Q03BELXIFOUfa3I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:11:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.138.199.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 54918 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ac8:33:42::a05e]:54918" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UxNNljfZ++Vl+h46+CsjzJZMVtY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v+zqqDxYxCrgLGmCYDcwhWBCGOp5qKS6lJAlI/mER4A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.59.76.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:c91a::7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spargel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UwJ3hmRmoUJfQ6c9v8tfx0EMmFI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wNfEWbixUA0iwaImlS91jpk7nBr1p/nOpRNiqME1L4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shimmer02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Uu4c4mQRHQU2jOdfRBEJHstpRcU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5yfNwzjtoP94o6jzgFr/seCjDkSmreC/K9440Bd6xgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:33:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.168.87.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipaa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Us2YkC9jduhN8kFbkG8UJtWFVk0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VF0UfhCZSH9oNOuREpfHqAKVCm4YCB5F9wLjXW5xFvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:21:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::240]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SussyRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UsP/ccoHGnfRxMU9ICam6tpYU1A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S3uoN3FfRuFyiwNzMEjZLAdg1/PPwv92bCSzAK+7sB8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeastieJoy63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ur+tqL6qAbpGyPdn+DwY4v5Qwbk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MJ9t/CT8zzca55Jx5sPeEmjmKGJzjI4Acld1qWKsBCY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.83.43.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:f48:2000:1031:72a7:e81a:29ff:affe]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AmirTaaki4President" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UraHZOJssE2uOr4foBgm7yc3bGg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jyagt5DYwfeDm7MzrU/lPoVo4GJqanpV8zupDrqO0qw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.101.178.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=980" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UrMq8lb8SRkTJ46V3CKaE5jZeHE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fJNyOkNRngc7rGbuo1sKQgbwSN8cqFB7ucw+5InY4eo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:45:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c::20]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UqDHKbukoxpcQ1+9EHjR2vvJy40" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FiSgAE9MuTItyNPjJnTZ2s5OrT+j+HpQzRLgVAjPXyA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.55.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:172:1045::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hochwanner" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UqAi8W2M2/AZ4TLxU4oXmPFnlzo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RcTel62qqXc5hvpk/4kusMai3OerX1WiXaQTEnwu63g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:37:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.170.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:2433::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NeedAVacation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Up3RHDUA27tjbdSleVKcXNpQdOw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E9rN+Yae98wm31tlJ9RuVzOIbdOFqgsMNv0UMrt+h6w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.112.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "morata" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Up2chODWphQdQJwbAtuBsrjo6XM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MDZ6lAYl3EXN7zQYA0MBS+u1opmjuw6bbxqzr/oowoo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:17:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.236.201.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "asfnutt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Upyj6witbsF5G1EQqjVApM+hGX8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/jMsNzUObDINugxv5G6oSE9jqufZrK1mRahQJE8T1XY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.150.22.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:24e4:10::27]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vetustlex106" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UpkwWpwtcHhNQSKD1DepBu6exfg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "07dbt0j/0Bk8E2HIwiPG1u9Ny/6EXKzR3Sp0a6kqxco" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.54.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:cd9:d4a7:7c57:a1fd:d9c8]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UniwPIijqZI4e0thUWG4AGxKZa0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RlEk8P52mb1D8TU4eB0r6uCAf97tPEWxf6TnP7y3uS4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::204]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UmrVDJ3mr1M96+j5u98Um8H1q24" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lyPyd7kHQT4aIoIYDuxR/0e4C1KhgeKnj9FtJ/ypWLM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:02:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.226.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:5f::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Theoden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UmJVbUSn8kNJkP3hrnlzxn30nlg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tIB8JtKPeiIP0udzZMQWC4Y/fJ/mJUAI6F8LBX53GQw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:02:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.223.141.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7b40:b0df:8d6a::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t1r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ul7jTBp7iaud9YUkbeMOMnApE/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pzcIHUQ8aH3CAM4pqO80Oq6HGhsrfbCRVO4UOzT2tTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:25:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.91.125.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "edayat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ul5JX9BAlpK9qcI6ITfJb15TiUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oai3vVXJrJRtmEJNKykPEV+OKRwsOIPIOOcdDnigbSU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.148.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trolli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UlkLPCh709jGyp4HYc0XdY/3Dng" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0jenPE8Afr+NjBx6tEuGOzp+t7cHrffT23y61ospZ44" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:39:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.162.54.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ImGrund" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UlTuBmXR0QafopZ/f6lw5cVEF3E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BgxkKkQLvsaN/c3XVegAlqdOASVi6wFl82ukfG6J3vw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:58:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.252.144.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=780" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "reRelayJI" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ukm1F5fjc0Szz5s94p9JndeIO10" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rMW8e+WYe/ywHIORUMimPLbsVt3z2hOkqepjN74Udw4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:56:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "153.92.127.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CCHE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UjdKbFkoDT36Eqf7UMyoNZy1avc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jCvH3OpZNTuRD02l9p+oALv1E8Lk1ZBZMcn9LhZaESw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.133.85.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8832 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI24" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UiqA7KjIRvYM7mF/JD41RtUhmDY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eOnQ7fHzXnoi3N3siKGHt3wsEoOEKkF4XKQ/GE6fSWQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:49:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c::25]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex100" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UhwwqWh0OxPhfiLjm+UtoCD7kuE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1ugoM3ZzdWHNi01bxRp6TwpZRtiol3W41KRmk9HlMCw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::189]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "just4fun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UfMQOBV2Wk+Wv5XO1UIFtYzuhwc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ILJztHr12sdfeEVauqeB52jX2MuGiFTtxxg8xhepLto" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:48:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.95.11.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "b0rked01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UfDRPZGmDwtFQPFX22i3DH/bFDk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sxFNKvC93twQhX7IjT+6a2j504BHv4ZXgi68Fq0h5D8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.255.106.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nobo2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UecOkQTyz8XzH0/YC8HS2zd2kUw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WVONO4EgdHTFwxp7z/qIwfeuXI29dB/3Ea8ZehUY+cc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.37.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "idideditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UdstiSI2xR0td1IU9Ok3Qe6duoI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0snzJQGKC69FFFxP7//8dk5oX9Ek6+PVZqssDooKwzc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:22:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.200.163.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Alpha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Uc2dsANXQF/EGvD6UTaI0CvaDA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WQOk/VJdIbO49U0HlOKO4PWKwlWRr/c9LbuhstM3vcQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.131.2.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Planetclaire65" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UcNnWCmT1o+CFWELhamZAslFMks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1s4NsnMPeGUp3HsKKBkZP/nZwmTRnqqQkAnh32cvTio" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.87.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2eff]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeCarefulOutThere" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ub0l7gbEbkRmQn1Kv5TylkUU6y8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aheaXgW3oTo2CLm+/rUFRQkN3Qjex3IF9kxyH9CydLE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.124.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:c3d::1001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wobble2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UbP8yrcUAR4xdyP6rLcY3Oxu5ec" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g4uRPrYaV8IzFbn3H17+GkxTlnfdx7yne7rj60ac35Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.111.150.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notoriousgib" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UaiiKUTyKOotYBQ00SeGSxsLD4w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jeVNTM3eo20FXJE892yXKiY5LiPZHJFDwZtr2n7fgqI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.200.210.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ready2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UZf8ifehYjypDW4CVKvMvG2FqG4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lh93LsMWvETQdE1HnMh+cgtQDlVibXe1sjVbBLx+S6k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bigman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UZNR49VCApM/heYI2ISEpdxOTvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c6yYUIwuH3aIVa3tRrJOA/AcTEUGLq1S8nw0OXnGpTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:52:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.174.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "twincaravan5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UY7xU7t2dpQ9PfvKRpz1ua9cXzw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CRjRZBx/yxJMnoisTp9F9yxH6/8aI90xlBUR8IdXRnA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:11:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.107.241.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FrozenChosen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UYsDGj31A+CPb4FdsZTb17FcnFc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3lcjQnkLSpP5A+ovohqQX6wt+algwSDZ+Up5fvM+Whg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:42:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.98.15.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UYAK84sw7RRU3XTLQSutztX2BZM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vQS4Vk4nhOzbIm3aKC8mMBxa4FcZoN9RfAnjdbCH87M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:51:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.206.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:feab:5d7e]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1163" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UW+RynB4EG4fCNnrrLdxXp+FDls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cre+NLd28EX7HLJWohxomLssa5drEVx/B6mrd1rUpUk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11163 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::163]:11163" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UW0ilNUfvkeDfTQZR0BGADIRCcE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L0KB1MlYRbaaRJUTq+ff32zljiIziaXGZLczj3lSeTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::d8ba:d0ff:fe97:f61a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UWzFTTDsbHt05SgFN/aUPveK2U0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uy+klSBUO2/yLVX1hzWmB34tBDqaUTHb+IDwBLEfbB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:24:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::35]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UWA0/xXJbOhB7M2HbvYEgCqlxlA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UartxoXuC7E2nwfnJyRMHpXFvygizE2fMDvKe7gcuhA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:27:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.225.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pi87" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UVEA7eGcD14MrdOR3jPg3hSwD90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2cj8ywFYWw/u0Eql41VA1QWbcmD3Dg+4Tn5OHjIRYEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.45.175.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:1700:6972:1200:dea6:32ff:fec5:ff87]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stellaranomaly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UTdMjaRZxnMp/9XHUCzK5BlJEMw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nEZgaVWCU/MssU7NKdYMKrqcLLW6Ro1tRx266r1GbEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.65.68.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra58" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "US8n3ZopN6jj1l7aE6iK6Ug+mso" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LnA7vKaVKB/Y85C8L8JoDf+PW8XK/DUSY0EgTPwTx9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.206.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "andal" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "URyzj4fACAscSdYUSeJB+b2iw2U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8jxtGqjzbZULlOHmCnQFC2rI/kJrvXnak4os/yefZ4U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:14:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.131.230.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IsThisJustFantasy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UQ3VmHSDlHSHxkYqZtMTPtBwQOo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FouW8vMC3oJvxwY/Fuzhz1uNOzsk5AbpsVf7uz1gDl8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:24:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.2.122.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who9USicebeer24" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UQoEy7nEEPxX9YWrHY20XArZzxs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s0eaTJTK9MLrX+ONSIZ0OpHwRCRxUBNtP/VjmdI1tXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:10:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.150.32.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8126 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bmwanon195201231" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UPHTKyCKLZfxJIghN8CjvbdO3Qk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H7qAzBWcEISYu9FX9Ae6iN2i8Drm7mUWA1NPzW6jSqM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.201.23.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cogi3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UOsrBs1v0wuYw7ilDd75W88h0r0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bm0GDrCa+5lk7BLxQQXQey9kb3KL/WKrtso3rl1Yqxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:38:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.54.13.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TERRAHOSTrocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UOI1BuXchXbrTo9gdRZENko+E84" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1pCUv3ekJwYEwIDX8SM3z0vQsjwRwlYudvow91cBraA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:08:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.14.97.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:2660:4819:623:8331:4852:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UMNZd+PoLAESm7IstqsNZ0dz1YQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E/9IGfQq246T3yEwKqrDJCogeckegLnl5CNyc+F95R8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:34:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::205]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChristopheRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ULrU5IZGeXeWEH7PAZIXhJUkcgI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bP4sKCXVnweaYym2YcqPGSzvMOJ2GfsVCtSzoua9Trk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:22:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.212.140.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Jaifej07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ULih63FEfouqn+8qJZzrfiy790k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "55SHjpADStfZFpj+o7qZk4xJY6fw26nZq6JuUoz+kvE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:48:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.9.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:95a:5734:66b:b49:52c3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UKqf6mo6YJaGJ2xM8MKhr7Lsyhs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zWmJ464csCuF6PLFsA/v9DRGTgAXdaY3boAJsFA5/E4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:15::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DarthVader" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UKnQelkVso7JbSTQ0NE/9W/IzNE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sETVKNYMjoPHzVQITER7SNfvqU+flv0JqPwaJml8R4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.32.172.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toralf2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UJ6rTF0QyamiS06gzkAsBHotZOY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3JJKdopusDx7/siTGx3RTaJWevfUrYPsGQDo2l0lZwM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:25:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.94.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:3b:468e::13]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sashaRP3B" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UIEuCNm49YgQiSNz2AkGOExyKOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o8aFU1MlsTWvCN9h6h6o02hj6qdNij2tdrW7eEduYVY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:10:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.147.146.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UH6WZaqD/WaXxB4qZIsv1A8lqHc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K8jaTXu0+dsuPMVssUTWRUCKdX2Kct6FgWeZMrGAVQI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::1cb0:9bff:fee0:ea6e]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk5c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UHyhsBE/lhE/ch+iHp9//qS2eyM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ri8FihH3Bc52nzemYSxlMZsdWV255kXXc6CnqwAyBcA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:19:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.141.48.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=750" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UHwoxl67PRnvMfE4A3B3nhGYXQY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "97iccf/ESe/a0v2Zhduc1V7yBle423mJ6L6KC5cvYI4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:24:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.203.22.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gr8eight" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UHtd0dsW/KgAuc3BPOCo7bmoMj0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+L9A/kALlXYbRhP+yapGXy+3Vt0H84NR+zGDqwvOXuM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.32.0.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra37" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UFjnE2KDtM4T8Yl4cfkxzEH0HMk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QNNH7AFU3WinIaRy2CAYiIPGifd+YgczchB+mCd0m+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.205.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whiplash" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UE8j3HNEWdu6WLLxGkeZ65RRiKM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s//Y+S6LEfSFP0zhOTrCD0A31Evd/hXyt8D4KqcUOns" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.190.143.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MoneroMoon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UEv1EvOwz90KsTS6BIiRfDZdMzE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Be1Irz+XBlbLayK+ETYxwuCobNynMmaGLRQRewiMv14" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.91.65.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=790" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "d2d4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UEheA8o505O9VNMVzrpl5t0P3bk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7oDxoIAq1EN2M6al2p2ZtgMH29mSSFe3BA1UqXKFuEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:37:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:666::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sunflower" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UDXrBiEIFvLKzXTR9Bo9XuKPvrI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pZowcFJLoIj8FD83io3nv3HaIbwxxk6P+guW2JQ5Amo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:57:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.139.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2022 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ParckwartEfatsum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UDQx+U/4+2nxCtWd4x87LDRJ2ZA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1miUw83Twu8LPz2BntvoMzSPqSxgWyLEl9YYtwagXx4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:10:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.146.177.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15827 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tororist1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UCe3kZNg8QQU/r2VrKC3i0FvX/Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aJkCB4UXT/v+DITtTkwTG4QY4KzeQhmbfQuujhcd2ys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.4.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5e:c43:a44a:80ff:fea4:2939]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "galates" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UCd0ugRm066benoOoiWcxiuDmKk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zerbv3wlQN+LaHw0sywS/umJknWquRTT2PqwTOe/VW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:54:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.118.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex66" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UB9cSqyr6/3GojVDN58ZsGY5aUY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MlByJ1GPWY+ak09pNzQMZE68rNTs+vBPP27av6ifowA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::155]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UBs9vyULCUoFyl28QkrUw9RnIaI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MIOUwCvPnDOvPyZMYEy/JvYLX7Ro68rplyQEWeEeVtA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:47:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Perseverance" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UBYf9CsRuHxM3SEM+ctJCnsIjbs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C3o0vUV+0HAOozGjWPBFIk2GuBoktgiIWiFHLTJMhNA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.195.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iSOcHTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UAjkmVSsDKBWX+ivYdYWFyEqy8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PFc+0H5S9KmYZHr5cwqka/l/N2+/TfxLuU/vV4VZBeU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.158.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:190:5176::123]:110" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WilliamTor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UAieidVpN/qyoG8J0a+7h263byY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nTKTuR/rDIOkxdl6mAtCCbPLBt+0rk9+UVaEC6H0nDA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:07:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.118.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UAdeSGMsQMbOrlfr2g3IUtFg6/Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qhsGokm+TBvbCHCL0iP0HR3aQndwzkutd5u0/ExHi94" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:24:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.148.229.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ShaiHulud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UAZDiZWqVNod+OSQNVUmIiVgGp4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HdYGYdJOkwm4NDFriW5jjThi7BoQZrO0zZ+gQRH0+rU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:22:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.215.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForMyFreedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "UAS651psm9oL/FoeiGYgTCcfHeY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5wTu+KCt8LPj1K5dTnYU7/pISdjxJuKuJtQOS4SGIMk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:50:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.10.68.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:b::44cb:d7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=970" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORNODERELAY1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T/x0wijaMWXgJQeUly5yFhUs9RQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cyxoUhYqTtV9Y4xtNFfJXUiR5HFx7nX667rFeFjd0rA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:57:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.202.206.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "doNOTbeEVIL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T+kF0Hb8I5VSr2qt4nEV/oNHaLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "34EyVnpbmG3Yg9v/oUr312wItIxcxysIIe/w3IxHS8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:25:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.155.116.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2003:d5:af24:1000:11:32ff:fe28:520c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cicolina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T+P9Z/LwbYrZKSF6NX9iP8fGktk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/Qn8MAz85olDq5qeU4+ilh5mwkzUhxO7LZxnQer6hs0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:28:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.229.238.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay25at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T97EpSU4qpEiDQT8Je5K4sclwv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o6Al2anwZ9Y77vcQ9iUvU6AC5U3xpC5xlu89LNIv+NE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:58:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionEx3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T9361Rsk3au2L7WQcfTcQh52xoU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wIPDuR6Y3CB3njpRP2rDV/agc+TmYsFxZmMP3n4q33I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:40:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.207.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:6cde::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ashP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T9mgMMncmPokB2Bxy7b9hDvGLX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SahTKR1zrU5Yu5x3X/MVLLkBd7O/CnCfEy1gOvgJZXU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.241.140.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skynexF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T7osbNXWTFHcCZh+qa65C+xHHo8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SqDQuOZYjhAbpV6e9X5ExeZ34K2vP3TeWlHiZZkcAD8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:04:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.43.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:2586::1332]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer87" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T7LBtuViQ0ADOFHdo1B20r5J9e4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oyvbUyLoXi75hgQBAa63uWCbumGnU1JFBrdMFGvAHqM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T21:36:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8187 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zhizhi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T6mP6VaNhQtnXLgouehN4uKztFw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3OCBMrtw58IeR5oP/dkv/X6VjTzBxZyfUi6arP9g6SY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.76.67.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "allcats" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T6H0AfjD6DJgMeeZQEW+Z/NgM6Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Udt7mOTXMHCWXUtvlfa0hkhVxozFq0EQmORV1fzQAng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:58:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.96.155.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T57892iQhOTI7pk+Ej4yt1NogEw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AEg9+Xm+ka9ray2VKztP9DTU0ZSIbFEJSHjc6NhnH28" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:01:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.29.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f24b::2]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ajorcel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T5W3MTZ57MAA84+HDPDPOcc4bFA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fM3WkFVtIYZeUkuXtH7C7B0fZhDmJIWdIcWNR7IbU/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:07:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.163.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T4Z/g/wbDMaWqKxF5uk6V4AJmRo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "316S9nwqL2j3gQ6hL2HK8yTCrV4urQKuw1ohymVoWT8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.224.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ipid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T30hAUgI2b2V6lB6G8ZTtilX3f4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JmblR9/7/QvCamt0GNH/LbQnC6nZaouGDl61mWOGCOw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:24:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.242.238.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sobit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T23753B1N9r7f7BHYJiRGCHp0UY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IoocGWx13NJiGLoIeguMosb20NKldykLjYSaGvmiKG4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.70.63.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T2jxsj/O2dF4Uv/94hY3woS88Qc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L1UNvFiccKVqSlBCdsYvISd7PzypcOk6BkW/4qI8o4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:35:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:54::a46d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=750" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0179" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T1beds3Copa21jeUkgf5BOWiDCE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4R88J9XimWuygFjV/nIAraIBFLbVtoEh9de/sqJL0Fw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:05:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10179 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::179]:20179" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T1XE5qAkieTWkAVHvhwtZLfPcwo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tm35uZoVTZxkSniTIR6EFZiXTDRULBcLsmrR2ltx6C0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:45:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::4]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IONOSger101" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T1Dv1T3ING1lyIHYMhcHWlxc48Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RREHvJp/SPyJR43x8CpV+2q5U48rQ7iUfgYh5LXG2dI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:42:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.77.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=85" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "T1ABV6v3ChqUY20minQqiyJ7i/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/IbEfRcXk8AL1FrLuu7/Ji7zbQCwAXh/dO4ztrfiSsA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.94.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b14a::6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Reichsfunkmast4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TzXHymJ0CkOsakajVVFrhQGKyKA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O5r9aCGVFSHvq+cg+8lRc7DfeqTbDsWcg1p469uToSI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.182.36.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pingrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TzWz7JB3tY0IEpQjy5sYJe22/cs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hIu+67LepmutcfszNCUaVE56s5Ltdnyoghxr9c9BgRs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.215.228.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0d:5440::25]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CottasRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TzBW6dS6w47CEABjdFIhVTYw7Ms" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IYAggGCtG35rUXMGXfwkX4QErmH4lc9iCA55DgfKDwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:58:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.186.71.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VivaLaRevolution" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tw6DGpmLZEK69Btvsz0LRF5qsjg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TmxOB/b4JI2bwbR/qAIb5LGXAwzHDeOTzrUZaHAUsjo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:06:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.57.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tw5dThhMQOK5qJZkAFswih3uN1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xw1M5WcaZzd10tROZaOJQhBEllskkg+BEgfNWzPNBuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:58:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.143.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Binnacle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tw235of8fArlXI8kPaiw6yf78fI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ccjon0VOMuyWfqyR7Sy28Qt/fSeYIuQkxaj2+KIJFUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:05:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.53.208.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt31142" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TwFowYzK3qsS/PJNGmm8ewWV0oI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/+ClEsAI0EB6hWHylPwAb2N1FRVAEvZyj+gzcZqFuOc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tv89DJ3lOc8eJ7/Fs+I7x8stQak" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e2L3f04fBKFtjv/F58oqZLV15LhrZ3CoQ4Ov7o//WOc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.26.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:31b::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tazzwei" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TvKPCsun24P1Ms9knbE6AML5/fI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "johU5a9cUP/a26Wy97/RXKSdVAWZDKn+uQ1xTMD4nfo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.104.220.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex63" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TuSIrAdCvGt0e7Y3pWNc4U6Hfzk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3NJ0ELWqD9D1bItwkhv5xj9eCg9Kvlm8ER1jvp4rguc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::152]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StarAppsRomero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tt4pdlLK3ctYw8QaOxYkD4v/hzs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qVjPtZECJga4lUVUxrnSiJzy+krz0VZXf1W4ZHNnx5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.15.242.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1600:10:100::226]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bedrock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TtM0FZUvpS25VBGh2oZmPsGxCbk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oRdPu1OgD38BHO2kvQCIG5FAXCp3lbiVRjlzNAd9mQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:22:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.255.228.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fedf:407b]:110" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TsDk4yNBc/nX4C7yANa3SARvkOc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i3lCmmZ5isRTCz4tO2Ekc+Vkz9jes+a4iugKjz9Jh/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:31:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.99.2.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:8620:201:42d::a427]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex89" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tr9FmIAADatv3a8K5RItAUkJdVk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FaKvZ6Ej6abyNFSSjRVF6XTj1zEOz2eKAPuzDz5xaRQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::178]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uKDbRBw5GFFLYfg4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TqjDUdvJux+1oErAAxS3FlIy31g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TFRca9Dd9HnaKjZaT5oFy5zeDTn2k+Psg+D6/uoVOtk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:00:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.38.13.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "summalummadooma" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TpiqKVtxcZltGN0fahn2SrQDa0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uYY8M2BN2x31TwOi4iaMy+DGHjJqtSp0KIFlbVjRz2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:32:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.239.213.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "brwyatt2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TpeWSBwedfddV+jB/IyO0RFDMxY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5b4pvpnW0KfYovRW2xenYOOInBea/CunTbkbI+xM2KI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.92.148.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "makeuseofIT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TpG2ZWHuAbFlPhgD/lO1xADZZ9s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZqcxbY8F2Xc7EqICsc3eUN44Y55KaJaA5I41TpAbcCM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:52:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.154.214.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bv0002w" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "To/PnQwTe+lQUrGpjdMX9fnbdKk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9qumXouim4VuGZ2IeoLURMvdFuP0p5Y4l8jM1FGZd+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:00:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.172.70.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:a469:a88b:1:5a9c:fcff:fe04:34c2]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "scarlet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "To6K4p0SANvjFIKVxMDDzGjElUk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5+ZR3aNtzoqIT1GIoHSnOoyCMuXnQsvc2E9F/kljrN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.200.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ymkeo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tozm9WUec0LB5+XtAx6CB4E0+w0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w8P0JQraS/IH3nZ0sNS/dvJrU6zConBFyPwVGWoUZm0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.238.129.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:116:1:ff:60ff:fe1e:4473]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cotto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tov3ObXng1d27dcs+cqkAqzgAFU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TGT6n32DpXexPhUkW1tLHsl7XZ2XPC/SgYp7lLViM6g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:04:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.112.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:e8a0::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Rasengan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TolgccpqcS+py9DjabdZYmVMDRs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S0d+wj6V2Doufmps5Qr1C4LPoCGzuc5+P2nCxxeciiw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.66.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8902::f03c:91ff:fe7d:e808]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=610" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fento" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TnN7v8y+RakjzoJXfpnc/6vFv/Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yCv4B211fUZvNmiHouDc5pL9cfaPej8lLFP1Wualkzs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:48:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.17.30.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nobbs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TmP+vQWbTRo4vAMl3ippSIP9DhY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fTEUxHsZ2gPVk+xTe9w0HdMzWGFkXkmLighuDllmN9g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:55:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.228.199.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:1267::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vhult2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TmE1F7Px1BlgdcFvvVOEPtnlQgk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ubfIz9trW43KOgUK+vLSfQngOfJm28LHDsomjJLzXio" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:21:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.100.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:105:4dfe::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "woothoot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TlUdk9VvIm2ZFON2SBEGOuusTvs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VgjTbPm7p3ygkzwsln40pyP2ljEB5pUOEjTRnAT/FWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:03:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.56.58.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "burnigHell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TlTtlAVjZj9K68per1QfopbHDhY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7y2nRt4amJVDpuC6hZRAKXRwLU7VZ7Fu5xngi9Yp6Io" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:25:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.164.137.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hBridge" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TlF/RuvtE5OspgYOZMsv0W7cFXY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "taY0/Tq6YBpoBcwh6dfLTF5kHI43WvF+qdWqnqozv0E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:50:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.24.227.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mortals1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tim7cQY4V5lLzOcjU55TzDZUXsI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uw6sx9tTnFuRx56MI/M57FztgJmJ/4VVoX/DuhSk4ok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "minotor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ThUImIy5SrjbPJO3yW+tVHdB6cM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9LT6hAdC2oAQdG3To7ugIcygtIzR6jqNLcb0My67Zlo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:16:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "67.165.9.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SygmaQuit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ThLjDZasFqmtZUy3/nfpz11MW7U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kt7OaiYoLi7ICc+rjh/ElJ8tAOZ1e+jJcBAekPNhbEA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:32:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.253.204.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38292 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OneMoreLinuxTor4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TgqZV/26dBivgqPL/LU9i42X/I4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g0kH0IrN98z9VZUZ7wYoUeqKk9S2AnaY0TzzjJMrjo0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:31:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.136.165.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12222 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zikonio" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TgmHyjp/00VEvko6JKK1RWzUErU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P7aTSoto7DPF1E0clBZi+ywUP3Yhqi8yyW6Mg05iDjE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.233.108.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1129" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Tgl5gHRHTM9R8da0YUHBUGWHAgs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "leUf678CjQPbDlA2/0c4GUIeXD4eAECHzYzm+HskRPk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:14:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11129 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::129]:11129" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torfu2k22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TfBjWWOStd9wZJlL6cElLkml4F4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DMVQ8Bh9aOUT4YaZ1baSeOAzLHzbkJolPaJHQdG1/+0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.167.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who10icebeer45" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TeqiFnXzVtpELiiMkFyQqtbSTEc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5ovbcLcYmMpnzqn/3EoKjeo+lZI4yI+pvM3kMuK2PZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:01:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.141.233.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7322 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "floppydisk5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TeT5+hBDLmJMCCdawmRupWmPmmE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qlvuzg/ZXgmQ1N9aHq9L2t7j6u9poVkReFlOJvWNZC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.213.175.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:8bc0:2:3a30::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rainboweuphoria" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TeGV/g1elv2K/aJUlXhdJ2s2d3s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IfMdZDaYpiuwfLFGnUJdIpaGJwD87rYDRLYD2tOzBvY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:08:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.83.198.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "diodeOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TdEcPxH14okdV++fffQ77htRT84" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CQJ3lttbzrAn54U9TpS5nMHe2g7FuYR/FabzrBkZrMo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:32:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.149.215.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sweetnode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TcvJVujw0sqJ+CqFdHb1/fPN0kQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZaLU/Detzx7JOsWqwS4oyoyq8taiXjWTEzZE6wEbR50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.245.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9060 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ProphetNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TciLXKkzIKtTm6Yc6aGtc8UYOtI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hiJnt1IJ5ZO8WiaGiFsSZj7JEvFcvp75YEExBtmBy0o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:26:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.171.135.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2066:7989::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cannoli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TbBJCgQggJqBSed4u6yPHpNJ2ew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TL+9e2BGBs+/9vobcxG2370LDzXz3TitGNXUqgbl/z4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:27:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.211.185.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Thunder" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TaFu1OPfwfxNTHsSZSbErHtq2Ys" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iUeoCjVVsipgnDLXs8kKg7pdAIuUEypFK3wMEsJYMA4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:31:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.77.160.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 23352 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SixFootHotLook" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TY3jlcSnk0Vkap79wFokHAPAR2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cs8O5ukT0uSTFXkLv7kfc0R/OfJT3W92tRE9mDZG8D0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:49:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.249.211.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 54993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:6ea0:d509:3::a11e]:54993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TX4rpN601w4WoThi5vk4PnwUQsY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l+jMVLArktUiKvNAxVgRUOev7h0K8cpqIpzAZMvrpJk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:15:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.70.124.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "themossyboulderspa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TXkWlji12vghswYkcl/TQY+FCt4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9kV28m20xuCWul5/tb9x1XLlrf2jSok8Knmx5RDqQ9w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.114.130.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pirut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TXjFShRZEcZ8kAP+XVMUcmyvlCY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ipeNu2ri5kSxd/tFNsOVLQo7PH7AIvMXht9et+sCX7k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:25:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.19.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryTessa1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TXDwXdMIoupbZx5ECHm/rayShg8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bcoMI067n419xg7Qp2zQJEmfA0bXlCdbgXOG1BjfFAA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:15:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.112.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:2e4e::2]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TUyCzZ6Kq8s03IsNQ/ETgzgpM5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Mp1zJ4lzyJAnW8KgXCdpoqJLg3U/DcJZcCT88bZzZ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:11:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "222.252.56.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "carrymethrough" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TTo+P5jOrvLiWpV1dBkMHqan99E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XrFcUX0Q/OgT6RmuLzCqhmpwaB4bJMd0mIO4V9V055I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:56:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "58.185.69.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LTUFREEDOM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TRkuXwekkZJidO49Idns2GrT5/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rK3WyHC58HsBc6x17HTMt9v3IDf4/dq2APJfH7WZX9U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:35:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.61.137.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "honeycomb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TReT1CP9sZaOqnRV68BwoOSLM+0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dOGCqawYt12SvtkxNgqtUhOVjkP/72hHkULxahrWAOU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:57:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.168.205.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TQ30aNyBb4CWcCwtosb9Z1Yfgcg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uoTzBDXSBjz/AoxIkT7jkArWv/FBGBEJvQ+Pjzo0loI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:32:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.232.251.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:2b:66e:dead:beef:ca1f:1337]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freiheit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TQxvwcenmsrtkMExv2VD2xkgQek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mYLSw+8ZUx5qvmWbMAuUQcuOg9J+3uf5GNcv2Uizj/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.68.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SpaceJam" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TQLSfIjhvucm08RMe9eEPA6SrbI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+x0NdFB3/93czt6Us6NOEdZxm4B/JqQhJHBB/N21EnE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:10:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.245.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:fe9b:277b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheOneAndOnly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TPJpJBUa88e5puCFdJbUWFGM1U0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bau25CyEWLrcJrH8NFkKxKCPaAtMm1xV9dsDMAe8BDw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.150.239.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1138" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TO6wzpD/cMtUzuN+r84XZmEjFRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n8hxZ2O5+CYomadQPmyow2/DJBJb74TehsApQXGFJQs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11138 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::138]:11138" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QOnan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TOr85YQcDa4wFktPWUUvf02Bimc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "weCWmpoX9n8jklnysBmKFYOpeWQ2ZCmRIhXKi+Shc74" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.194.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1620:425a:6fde::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TObYP/qK0kdnAH6Mly83HyRo8Jo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HrEz8wdOGPF+DaxOlm6O5tHhIVGHkJoV4f7NsKpiTtY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.32.222.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:ee80:e:fefe::40]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TOQiRG1DsKIfD5yhRtkHVYNAIQI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OR1w/v+Rv6hTuROd2oZmktPZDraKz0JqbnTvcfHmKnA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "henkdefreumel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TNTf/vOXHJAqIhANkRysY5vi71w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U3GckLyQAQpiUENtlZDjcDqw5z0dbVOxaGvP9TccT+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:35:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "143.178.111.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CodePoet76" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TKeCzgCtvN25PeP8rPhERTU9d3I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H1dvDxKoQkymHlOb2boribwF5fNiIhNIZJ2g/zqk0vc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.53.115.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "atlien" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TJ9xfz0m0eVrHNZ050rUsuwe7Gc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JAUkd/050oOj2RerrUUAFor1zuXq4mbZ/KRcOMkrBaA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:11:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.94.203.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blablabla" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TGeIq5C4bz+RDd9r0yA/ywpHAOI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fl6PKnpGSUKoYW4BDg8L/RoBoF1QS1UYGXvgP+/qbgE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:20:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.207.57.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18049 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MLaBnetTOREXIT02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TD70sMFy8MEokVZuJ28W19wH0Ek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0WKDLzHHWTJd1LmoijEBeRFUnDnT3vkIA3oE3ujF76k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:34:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.237.165.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:a6c1:0:2100:87:237:165:31]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "specialsnow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TDTnzgU0yJmU3vs5YA5t9Z+yu+k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wP7FqjA3r6/PAiHaQhDMsxvoM0NlqQhgfHcKk+C1/po" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:34:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.146.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a11:3b80:1:0:97::1]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk12d" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TCVUK3ZJ/ARy7b93Uh6lePmvUVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kRzbOxa4qj2HUdS2mbJzDFJE/VseDPirXE5wsfzeJU8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.182.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47ac:63b::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yunmensrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "TBzpxdPY8h5zVC/w6HMSLeLa4T4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xDfGcy2Uy2I3DVjKSQB3lC0aaLCSNHBuIEQLEp1vOv8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:55:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.51.27.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S/3nKC1jWXRfZTVyTdqtzSeeT9c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s3rL+vTjr430qXIg6in1ELOW7ifCeB7oNxbPrLEwnaE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.64.218.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "karotte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S/ycYxqT/0ujqoS8aTG0MQw4omM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P+c8Y59UIn445aXsHJfGH/wr+ALWsNdDpAevM5/Coac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:55:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S/yNQVbrW79DNedA34THgS+32Ic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/dGRc8jzmybryU0SMLzw+DQnl0r4GxpmeV6W8JsDNkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.213.208.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7777 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay33L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S/PSmbxQDDUIaPB4dJKRx2bHqm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lU+tHct7Wx5cDVvngT+e+Wxj39Pw8qqwBCoHiHRkWP8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:26:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.238.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2402:1f00:8100:400::3a8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "georgector" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S+1o356vbBEdh3jhnMmsev7E/AI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6kaodHpn1zZ2EifB5eDc2zGC52J9aTa255tHyWkYdEA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:50:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.17.234.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ACABindustries" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S9q1a5aJocke6yUhI6/c9543osI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TEEw2hnCChN9wlhtnMC7NMvi107q8dyfgtnHPFEqDu0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:40:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.197.11.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HexenRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S8IDa+oz85cjKRKF02qjwa9Dbes" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XFUiFA8XWkNJRZSmgFElrpS3D3iErFAS/6DqN0Soh0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:49:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.191.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S6PBKwc7fj95d8Rq82OGhbuJST8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qdUmA/7OPdpTh5+QpNIvu2JMwCdX2OrCz5w71Qq49vA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:57:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.73.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yyzz2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S5X5PNsW8SlvShMzeFwV8u2tg+A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jpXSWiPSfmHHyssFt6N/iWWQV4C5W/2GO/h/GKa0Edc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.9.236.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3389 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c024:c000:e400:99f6:e55b:322f:463]:3389" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tagliafista" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S4G8Hj1ZNHJ4AZwOfneeP1ovAXg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "83jUSq2JJkCkNmG/Y09tRds9Kxq0SefsoqNeZIWKPtY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:34:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.226.35.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S2jQ5Tku1vNGmjeIBjE1OpZVhjE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TmIlMIf5NiTWE0C7gR/kF9xRm2E2Qbp1aAu8JkWSNlk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:56:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.34.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "amersufi01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S19If4k9a3dkbPgYWwtmowKsKmU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iUC4iTS8vb2B5RgwdA7BZ6VfMGy9gYvAfHhdWUbrKG4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:57:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.196.95.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:fe22::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tubealloys" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "S1gvP0u03lbXco3rIqolU1CHD5g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wqgwg90Tza3Fmt+t8v8HYshTJpSkrjQ6ZyVNlyO9dEc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:50:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.144.142.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1620:ad1::24]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sgtor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SyLEpW+AXJfS99dvCO2mlO7/wQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8ZjpGUBKoa7u21q9jWtWn/u0Rfr4W5rkx5UhZuHQ7uQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.57.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "neurosuse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Sx6gmDeaiut3debgIJQLMJm1vnA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IA7SxiTJ3PJvoeVzzaCXULjPVSWxafyZ+8/ZkXT0VAw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:08:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.27.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:2170::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZXSpectrum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SxcwJUFjNG9DTeGFu6UbYtkHT8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8Ah/0kBQGYIfiHO9IWG3Ke1MSE3rjaJOhTmoUhDkKOk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:23:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.88.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2780::e01a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "birnenpfeffimitzimt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SxcEdtCUWTKEOPPmjtGVFsn3WoA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bV2II3otq3vgEXNaqPvsSRelKV9aMciy8il/t45O9wM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.21.66.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bf0:666::666]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SwqqR9kcWJLvLlw96dzIaNFmNas" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n1fEjtPNuzunWc+PYwlhQZGO3lWK49e9QrPNkdrD+YE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.159.97.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whatisyouronedemand" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SwQ2pgqEWFEVWBOYZbcqkSoNF58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I6NmOiLu9RKpbEZdSG1VPzkzrKu3KoP4VHjcvjdQSOw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:31:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "168.100.8.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=0 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SviRYD97vcCFf8rOujOGzfDmGe4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z9DbFcEUqYx+Iddm8dkPeruD0TchLpIgaDpC5gUZd1w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.188.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "allTheSaints" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Su9CLz1U3IqNdbwHH/1N4c+bon0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FsZOr902l7TNIN3+6K/SqJGz4itAKosIOXTbTGBMLmo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.97.245.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9009 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RonnyH182TorServer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ssv50daf1LZVdeEXvLKWrkePM8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ycJ2xQWdY5Erl6JJ4MAAhOvSWuWMUP3jFhBnmTRtgC8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:17:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.192.212.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Stellvia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SsTxIMEZxyNWvJwzvxTibSvwUtQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EEO0Nk4NuZYYAMcxttTGY4N2Uz7GCyuD/cmx1Hyi4xM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:14:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.123.163.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:9b1:28fd:bb03:7374:656c:6c76:6961]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Sr3V+VT7xiFiK5vY7zHtYOtlQIs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yIYdbPHzB8X3grWj2+JwC3XkSCeMUS9/T2sSLoidZBU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:22:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.110.232.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9004 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:cb0c:7aa:3800:7075:73ff:fe74:7265]:9006" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SqMPphAfO8w4b8pMIGXf9dDiquY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Li1wEFqqVNJ8FI3K2DiPdtDYcawX8zA8fu1w0aV5kFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.88.226.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ymir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SqADVgTfQOW6INvojvbRFDJCG/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0j3D3BYHkrA3DFxq8xf0Su6ShWKdvzT48pj17+0Wrdg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.255.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lz53" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Sp1h6OOdyDjVTEi5JeKF4Z7GUJc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6qk7KFY2t0mjyBmilwfi8IZej9gvjxe5fCsfbib/PTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:53:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.77.121.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18585 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sasageyo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SplrAXNtFkbnKmAButCPJgfMJJQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cNRt500fLagc9Slq/wIhpfQXMw+knL9vHUYB9qVrIio" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.2.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba0:1800:8193::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "clicker2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SnzDJCQQv0GFzvsogjmI+CGG0nQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DLpzcki0WrER6Axy1A4roRArOUNqBJPEShun7IpO9A4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:06:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.116.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:29:91:2549:9:f370:a1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SnTgCbb0isButJmYZufyWK+LH/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zpf4S27LRZQMzfuvOk3SjnMjc0j1npF4f45XvjAA62I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::848b:5ff:fe51:463b]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Smn5ImthE7BoHVyTu9YNX8y+SBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rd4y5V9HvvNx2LjUHbMVOcJjsdbur0y0m89rQfIkqdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:13:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.35.85.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 587 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SmkBD/NoMNaUnKRFaXToWF6SD0o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eIhdXVoBluyu0hj+7b61t+9Fu7rYFaZOnoTo6LIC96w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:28:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.73.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:46c::1]:1503" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "interestingnickname" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Sl6KDfzu4BIbJGR+vWPpFfAXc4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7CuhYoR3uKQ4V0PA/mjHmV2J1GR6HEiLIjZrWyEW6Qc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:24:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.57.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lunabase26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SluN0F/Ab17no1h0dqAPXM0Q0oA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "idI9lvaNPJlmRJ9HAfEYcDbVSpPI+M0US4CymshUfhU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:45:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.67.45.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Labell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Sln9NkLE2fRqjZFqybxkOQvLxq4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A57JfvpttMOP4JYN5TdirSkQGmjFTvejbLEBaStj9lo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.178.81.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber61" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SlMapxKj3wqQ60JxHuvpC2kYs3o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PqQWFuAhdhkhVypbmyOGhpNU8RinntZOSBc0Wd6zihQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::31]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "netzwerkspaB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Sk77PpNHGJtquUU4RGksyh9GpMc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "94a6aXMi1KI/RaQNfou/auknNitQdDuhu/lJ+wBD8YA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:15:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.100.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dr262" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SkMp3rxhlR9GYyBJklPCKXNUpMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/6boSdOUPpuBZ0zdOF+I4JkNXli1WUVmq6kOMWihGjg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:50:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.208.97.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionMasq01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SkEd2Ou9U5qgCQowWFa5yDj38tY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7n7PjcOEnyYmzUtnD/s6ZkFDdwhm88bVol3u2eHqSxA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:13:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 54998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tormachine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SjuHTwGH8s8No8j3YGOwcPn3oU8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1DZyedbxAoNaqSkTzqg+onFoBwxPDdh7gW+HFxhjbdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:27:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.116.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ShacChTkH2R9AJ7EnSij0RYp2vA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6FOZc8NHMocZVv2FIsqksaJpvAZQtxYNvrfT79oUy5k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10044 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::44]:10044" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Sgj5eIUrPMXbMlUop3t15GuoKWA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iE2iu6CeeybLKLtX4SUI7RCMJEMwpeOUoCI3MR9g+QE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:42:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:15::3]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SgeL09m1wORbVnl36vYWDcogAVA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kdEAfMAixUyMRZ64Od6MaH7PBls0pinYCNEv7O8XZVA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:35:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.208.152.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gslinx5S0zynC" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SfkG+gXard3KZ3tsS6GWyqEELpA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a3vlUMv7MjitiHiEP0guR4MJTcjVZgZw6OJyzTh3WTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:03:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "101.3.121.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SeX7lXBF/dyMUyVc62umU+Hpql0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CtoRUtkEtiG3XXXrti9FErS12DbmhMU4UsCUCEgRKwo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:36:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SeGcNwUFstlRlfN8Qwxbsb7Zt1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7SESRm9pqT9VAPf68I3SIyQZ+pLjEwTZg0wDlzmDASE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.142.146.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 27551 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who7USicebeer04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SeEE55VeVXUpkur6L2Wog66H7xs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DRkIPWCjGJ1OcPlOjXvdfP1oPFlpzri/2mjl2t2vQck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:03:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.54.190.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8086 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlickWinkel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SdwiKnSUrvjn2/LjyqvyNQTHe2Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PJKujQR3ntC178p3+rCsfMoiZnnYQAN+m1HLHflvr8c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:58:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.232.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:29b6::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnonymousLibrary" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SdE7NInmhWRBwrV5klqHLejBKgI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IJ0khEhKI2/ROE/PfBtPFa2E/0OMQmTAIS7zJaN2NC0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.152.33.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8007 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ARelOnVult" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ScQdWT7hG9/NRMNeRzwgv+WBA0g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Cg4a9VEbPPbDqYptkuftSNtbTsqrNcJa8N2ecAgWxY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:00:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.28.136.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:4400:76e7:5400:3ff:feff:d84e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Nicodeamuz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SbTrjoF+XxtZQHSaJhCvD5lQyAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jl0sxjXTDPK34PBCukSIR4Kho+5fhyJkpj7Hd7Lw27E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:38:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.197.76.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HellGuard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SZ+gFDMyBJEhYiWAH+BYnCULTW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pRAmTfHKuPvvhsYBbaaXcgwPo6vrlbtWjRShXXn5FS0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.134.28.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SY86AtxVwhOs1+q9JeCMYUbXX1I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I40yZN5qm6QKZ4+kqzb/rIBx+tjIaAmBsMmJDBQta/c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:18:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::77]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ColinCogleEU" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SYzdO/neWaVnjoSI/qRQ4YdiQqU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zKuKE8WRwYOsm2gZEHvwRCnsFXV6+RG4j9BkrgF4qGo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:01:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.186.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1202:1324::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Alibi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SV8HyuzvcpkHwwax77AJTe/RO1w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JkicCxJjI09Fvo7Lu4ZGWIwFe3M1txALXede2LMut7E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:47:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.56.88.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnotherTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SVtJaGfIS7ySM4MB2SSFDyJuddo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+DTMYa1SVVig1RVuaUkmqqf0U5SvvOF+L+6IEjaX50U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.135.162.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:e531::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "andr788k" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SVS1GvDLraCOS8OJ3x4+QZU1Flo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kvczBGLBpBNptFT+dlIUjGQkjx6GsFlQ84mFhxtgXDM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.55.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:be7::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "configwaseditted" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SUWIJ0eegsohirGvtLcdKuJBcHM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YN3BLmTPz41YlCet7twhAtslo2sFBnUzwFjBdcJTAJQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:23:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "14.200.177.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9901 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.4-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ST4wZ+0qtUM+Kds4eXUB5dzPyz8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cJMtYRPR2W3gW3rk7YW9MFKPjEXugRL9OdxIV7YwgI4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:04:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.89.124.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55464 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SSkEGj/uaYmQMUvWHQ32lYxCGxA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Twtnss23Qyqv3W2NAvsdwf7bLbg8c9hLaMTFsq5Nqpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.95.52.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SRtOVbT9T97GOyKbCj5Zho/KHx8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FppQoBrAIJFPVCcbVWpSgn72e5SmQZ9f/BGwDIweuh0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::79]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VZFFNRMO" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SQbN7NqlthR7whyrpkw8Qmc+2wk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YvwdQHiR9OfhTtdQhRtJEHwjb+8s99wQukXGAC/TBBM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:31:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.65.241.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6e1:1001:888a:51ff:fe8d:3326]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gotaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SQAOpdQ2j385Q0JfBq6G898sz0I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6v938lhMLcO9GVNdlhtlonjZAT5An/n9i8nCUmzTCHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:04:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.116.189.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SOhIAHa8Jn/cQYJqqF2CLpriPnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mLbEgEOg9JMMGsvklI2A+xfPMlOleFHa0nStUHKoY0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.142.105.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Athekiu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SN6DL0vmlVs/Px8GAxDzv9enkD4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vww+4Gq+ToJMJHq8seeitshAGq15vJNIOjxNtXSTtJ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.11.134.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "battaglia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SNjFR36eOGSc881eKhfyAbykAx0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PDZqFiQ/nlgf+9bIui/r32ZCqXdIbOMBLMoXbHoIvUM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:58:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.119.249.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wohruo4aXaed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SNU9NRc6TvGON2gvAiOilhd9dOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yFrkrAwHmgX0jQAzeryKzibJVrKPd/HzdLWRZDeHxBs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:24:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.249.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "golosa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SLH7lF4I4/wPiAEQ1qdsh/rZk/A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XY6U4kGX+MnpyzHmslZ8tVmoke7INdc7dasG6FCrWXY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:50:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.58.121.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:fe78:b382]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EarthElementX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SLG9qvkiSx7Zk8QE4Y2pAxtQheo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZgvEBp0Cxz37F4UOq8dVBZ3Ud2/FUhedyYZLMptMZAQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:26:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.15.115.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SKfjoWn4bkWgAoThMDeTr/ph8eo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E2DMjs7ZHF+cOlfbheeaI8822fV4+0g21VATbNQ+FwA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:614:d803:40ff:fec3:832a]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zapner" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SI5mO0qIwS5t5sEvemBT8Jv3pho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6G51UEsPse2chGnF5QO5BZWVEKv9QGlrgcZM1oCbrB8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.6.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:516b::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "digitalmensch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SIAs2XgeisBnEDFMesBgoVP29P4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E83dQx5GiY2YvNvErpnh0WABlTqOxJiNRfXCpwPC2+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.155.29.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:e5c1:105:feed:beef:2:babe:5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pecordPi01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SH1z+2iRxQDnKabLVTxEdesrPNs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RwN4iyesAEX1DhDUe8FbMkLN04bQckI7rlsbFGh3lMg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.35.40.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SGvuZoYM5a/p2yxttVBr20Z/ItY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KFNCbXEK0OfQM5LGfMYtP7xp7qeGVRctB9o+Ybi9tEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:56:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.0.94.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SGdANTuQWqRzH4LAtMwlghpixuM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ELVsHKbTXAVcAOi7TtXzHfXEWCUOzcoSMe/IOQPiATc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.139.33.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mordoc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SFbJfcTyJxvIlt+cq9IX7i2GnWg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AU0R2UWso+W2Cc/jJQDu9kI7WQvPylorpQ8/cyeClg8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.149.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:171:17d1::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryTessa5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SFSSpCCv3/+8ygXf8xfNykMFLBE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "otab08TCj3gYVeaFRqs/6DXv+hzQ+ZsT1n5QIHdqxas" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.112.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:2e4e::4]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SFOnDbn5UgOhVEoCRdnSKfl7SBo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U+QwFzii+XCMrGI0rBddmIZkh1jkCcSDdqyJw+btYSU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:17:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.215.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:1f5::1]:1503" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WinstonSmith" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SE9mbEkbzeIrReDhnRzqWsxalhE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tjXkOfX9r3XbjJq9+r6U+mA8p/ykf1/pv2LqMSSwjuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:37:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.151.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47ac:560::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "systemli01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SDuy9ly+eAQUUHnnU9n2sI1/bEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mGg5BLAWpnadDfYVCnn6LB/YsI7wodZMHW1ONlEixWE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:20:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.68.11.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:a40:7001:2::4711]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ITPIPRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SDqvAyr1lraS/i7vAwR7B+S4c2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/q6OpbWMdp5tOXv3C7yHGhSJREsf6BsWcg3LLKSo+0g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.200.27.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KherNl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SDem3/yONoHXCtno0FfAKQk9ovc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RVWKBzAHpZzkE9f4vdYv8sKFrNQqoyERXzNJOlLRb3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:09:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.206.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:305:2100::7cb4]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BasilNode00ls2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SDbk88ivM0gEhG3QX9NplYwPmOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZbvCyBMpv0CfsXoPyPVEG9cLB7iXP6dYAwsu9gwtC1Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:21:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.97.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:102:3c60::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rasptorMuc01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SBwOtL0dIAi4KvEVcSf6cvS200Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DDvnyk3ubQyz0xUOV7ZTpJiEhMElqH8lk4/CJoP6U2c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.104.191.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tactback1545" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SAhf1ezhRFS8c0nkhGAst8EDbYI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "32KuJCY4Vt/+pRJN1LxWvRs/nXGWsQTXZluLYTAYFfY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:55:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.18.209.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0171" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "SAINQSZ0sTsIO5/wphIi0SHGeGg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5TA95xOftt9sV8/g/B5zGGm3aqfsyOv5xbfT/B/Nn18" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:05:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.171" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10171 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::171]:10171" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra59" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R/wZ2+K0K7SBxlGRJ2Zws9WJ8HU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CDmf+iDXs1F+2F3nYZ+X5AslKp2hux11SJ8ShSCzo90" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.206.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sing1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R/nR4BVQiZF/+nNO91kIkybDdho" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dZzmHNpTsaytNsju0FaJ0jnhUTTNAGN0muF4t56YPXI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.183.182.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:0:d1::705:5001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R+STGd1neE8eZbV5M3G+RnNll54" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NCg+R0FcEzuQ1w+iXCq65Snv+eXs8GG02sgtrAsEqys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GuardianAngelUS0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R+QBxl20BXcyuDn6nkgypngrINo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M4ICjZpNWGwZhkR6QpzIPeQW74Ijz/beKb9gv/zvQic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:28:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.152.44.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MSchnellDS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R9yr6KsGM+SiRTXTFx3fkWM4uf4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ng9+F94YHm2hdk9oeZ6WgGo8H5vITAarx5TXHzO2GcA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.126.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "updater" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R9GfhSFvEjlSlSHgJlCFOU3yAbk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xDfODBNFJhdyYVGzknziX+phq4uo8un/Z6RDSUqr//E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:35:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.241.229.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R748gLbIMSEVJ9GNHYTidQ9BLt0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b9NENPD7vH4JEQSqGdMaNhIrMluRsOg8aQqGKqEvdEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:51:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.240.182.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9990 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R7mqfiol9x/nWTWXvzr8vDHrm98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ww69/FjThYc3M8aj118IA1s2xbCnHRcGf+hQPBP4i44" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:48:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.209.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9050 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masstorSJ2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R7Sbtr6f94lDUHzCn1V1LWQSDoQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7We+OAYzTqyFdPLmsuMOduUR3Tj5Vo2cNdtt/kWhv/o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:39:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.210.206.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R7F4t1yOQvL4r5qwfg+8k9y3Lfg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RHCLbT1d/dB8FHL4uDz072xQxr6dydpGtdOrMbiyQmo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:35d8]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayongrazzt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R6PQBSXwQfOCs5i/lbxY4OwjJ2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qVpaNy9gslLdhRZzf6DYeu4+sPr0sE4q1iZ83WQy7iY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:11::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ToolHaven718" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R5Ukrv3WD6aRHlqVU/vdzj7y5a0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v/9xYwSCmOOsewy71wmclba8zET4MOnp9wvjry1Ls+4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:28:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.53.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:1a15:e511:887f:23bd:a199]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R5CdQELugabVgQX941yYmS/UV9I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TmOj1EZsRWoSmvZ5z78YDidp2HcisNTNQyoDS4X/9SE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::20]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mordel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R4B0mZSyNVf3RYa6EotNwBpUZnY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D3L1YYe147SuJFftYamvv6wXMyBrpISNcKbUBIyF4Eo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:02:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.19.144.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:2700:0:2:a800:ff:fe39:574]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R34riuOAvSTH7l2f9ayY2OAkk2g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qbi9A7Q3IKmqD9kFM2aOFakcyBPB/YxrxZafbHpaVVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:03:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.34.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rastanet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R2wyG0+xBwXf3b+AkXerX7veLNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PAsm5V2POSBQMrH77rwdFbzFur0BdoZp44Wh5asch14" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:32:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.0.125.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R1+9iflufaxit7eWe0gUpqcCQQg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7QpFR9ZgP4z312SNbW+d7p7kmJv9bbmBxSozM3PM2CM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.44.88.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=96" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RepusRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R1QsxLXjiZcJcVDEdU4X0kP2/wM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PEnYO4woM7fJ6mryZ/RnZXm/7BFMH9ONT6NLvoyJHTY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.45.250.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9098 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieditedtheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R0vo+ORnxbuWuKDvTI4j1oF9Ngs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+jd+MsGenmDpGrRFgdGlNFMCUv40DMHMZm88Pp9uf18" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:34:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "186.7.78.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AllHailEdSnowden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R0qwFMKEgDqWBPGJd30gysES4c0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t1uUgm9qWuFO4RHQjE/jbSxVFOQKxtgNu9HUNTGZSCg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.18.128.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tweinode3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "R0WssWI0OF7xaU1TDhCfelc+MMY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PyLLThAqRQL6zE4sO2mMxs/sDaLh0f7u00ePkJk8S54" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:08:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.4.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5e:d48:acab::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mclabs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RyxBVfbh7QZ3Ud9EeLmRSHOT6Ts" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nnFLBS9OCXz4pKbHnKkjztdHoRDV1F9f6gUG9gIkk5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:48:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "219.100.161.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9020 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=630" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ElRelayoReturns" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RyUTMR4EEQqe9q8E5q2xqhzcM7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q5top2LnSeJm5T4o6hCm9Ejpay+j4DcaBgNEqexWSac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:30:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.164.205.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:92ff:fe25:5835]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TuxFury" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RyGvq9vilRKkepmOaDo+6s0URqc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UDwyDpfbqMhk+CrKnlGYXx7y9sxxph3oE1SoYlg7T0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:03:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.212.36.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "crivit1955" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RxhPP1wroDmcBr25ve+tiVDM9PI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J6J9Qi7h3HVcgRZ6Sbev54TJL8WZOKwWY0P1HZw56zw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.17.181.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChomelesDEionos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RxdepcG4MK1y8u0UwIm0Q3WDduE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VTbyoWEn/E6F3uGIiwQRRwlYzAGoMqs62TwMUN44FXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:08:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.90.200.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:374::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "runesandrelics" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rvn7lDkXhY9hjyZIWV3qzZMdRAA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qmzo5x7pxIa6rOUOils3H2iczYWWe3x3JmY6HZlu7rM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.108.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow010" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RvkO86NijBNNu0ZU0OT/frkUtpA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kzJyNjrX6ebz7V0Rf4C0I6QaH4awz/UmYyewbRgrTTY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ukraine496" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ru6QwmDIGfIZvNi/DLRWc8jCpvI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ODoeYaf/AWtsrEI9HVNumsNbDEe2Fe9XTuzCNkUs/mU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.152.217.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH100" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RuBIfu79aUzmJcxuEtAyOVwB24I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nplw/MysOMXrBXnzpFPkDjFDafMzPAqSP1iy1znXkII" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:23:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.150.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mickymouse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RtsEMjSZ3VNZVlMd8r97A+sqsV0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N3J23FcFfvv2eVdGBWBWvAtyMCSckCNVTtud56ymBVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:21:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.103.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:140:94d6::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bad10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RrxlW3RgIw373C9HVMFjbsMlwZ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3d6Pe7tUypV8IWS0XCT9LqmXrehQiYZct52zZggZ8gU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.144.171.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SORGaming" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RrrMzkvDyqY9L+dw2irjz0AbnPA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FBCiJ5gKjl90dMXqvpo+1vJcwClApSwKVuVSb0KkLSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:45:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.83.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blackbanana" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RqHo6cB012K+iWvhTFDksl/Vqck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+z/Z1tH6FZqMTOX2euWv7QErfDuPvAg1qsY8FvSRD9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:19:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.45.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a07:e01:3:124::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JacksCluster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RpItl41oJy+ZNEr94OKX13LriQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3NzuPEchwUmi+FVoMOJM9JUgfnsHDmutPRHuz2hWXks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:40:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.64.46.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9228 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DjMiddle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rn10F/+mEbwgIn/jR0lM5fYSGPs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8yoIx+6jWa2OxGN9u23z+YatIBeomiWgbo4jaKBqX44" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:52:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.249.57.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 433 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3002:8283::1]:433" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rnn4Z2GOZmZ2LdWGrz8JjOzQHA8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4YSIThs5R8ZvUckUDfb/Q/3qCFN5efxjzrLw5gQSIG8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:47:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex58" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RnOpdB0rfPNnzjps6Qww4YIKr54" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "42OMsiLkgmOjWSfzltcPnMzhlyQrBzt1DQ29ke+rpgU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::147]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "alzey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RnNmFsWoldY2yT75+KKJw7yT7lM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q8M1/FVlHJi4gwBL3M6Q5dVs3Xv3Y9gleNBpQRoB3Uc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:38:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.249.65.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SleepyFoxgirl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rm8GAz7UOg9qqP1oxkfWeceGo38" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vQVKYJbxwGWn0l9qYH45Qkc8sHq/TERiHmwTn0pFevg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:25:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.164.34.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6901 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=630" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blackwidow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RmBY34fEXv7PB73J2CP/Eu17aJA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q8DoDkxBcB/HCega11rihsAa36+9hp0rC2JY/N6yIyU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:38:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.67.28.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay14L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rl0XxvwpfjhXtcbxUgBqHiEpROo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Sw3KYt8J3iPTUZ00tHxLaMQDs2Bq+T7cVjYmGTX7FM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:41:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.245.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:9403::86]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TVORrelay04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RlkoETLD0Mn6VOxoclB8oAkqTcE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ER7XBatAng93MglhwZOq0Q4H5UyqN9eFHCNlOOPZiFw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:47:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.171.118.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8902 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rainbowexperience" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RjpLRAzFu1JM5v2Ie5avJnlDfPA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7SFtvegLCVSit5feB0d/LscEapFJ9WYUSh/XYLraG30" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.83.198.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RjDkp9CKvmEdrl/loUQRy2bm69E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G0Akw2Nb667VhyW7xXQUbXzWevGDpxdAeRCnQHYPfVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::221]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ceres" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ri9Jg9+/tOVXcGhDCTybSXoj35I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H+9u6zYkuWCW7wIZ18sYxoHEV0v9N6TtxzhE+NcIppk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:45:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.70.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c01::f03c:91ff:fee7:ec0e]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gnosti" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RixMlxcN6U8lGkb0x0EDKGStG/s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bZ8cUlAM5RiBb3Syd9QRqutn3ZJ1LPRbC4PkAVfpsDY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:04:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.63.58.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HoustonTexas4Torcom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RiXzhcpTZM3WPHkYk5c7DK1JxOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ig2X+J96BAj+mna3v1EiQJ6bYfL7Y+Cbno2/3hGBrXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.118.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:d814:1b8::4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cotopaxi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RiOp7FO/2DFVkp5W1ve1W15xjCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DKfcXqMEy1edEni7evxDiPKTpUDnCLQ2NLflirGyfV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:28:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.157.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RhlBDjo7oah6wglsQGnauAU/eC4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N7nvsS2FzDqiWVkneVIAuyl/4xLTi7MvuJ6vRQxJvoE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:20:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.90.208.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:86::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionEx2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rg5biCdwwZdhvFdHVBkT2yrQHjU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7FBiFUihsuWIcK7HaZo/6bmm+k+J3MP1rWnsTHBgNlA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:39:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.63.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3100::34b0]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NSDPopeye" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rgy3KhGllI/d3gMmA92+uDevZiw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IIxfyFQyW8rYIRDwIqan8GrbwRgqbs+G+g8Pi7Kp4UI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:38:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.177.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03:e000:fa::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "inboundystopia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RgUAetWfl/E4xAHcCv6D/O2v77o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WOFIGCPBh+nEKf7E88leng0fe8p2TlDFYTJDoXjjjXM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:05:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.229.2.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv17" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RgG3CWx2b8YpveN5UGqeQH9rDrA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CIWI0I9XYxKD6xLJP2naV/VcLuOMsUK7D8gLi0F0QT0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apx1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RekkCtTs4BeToZd8EmBQOywshh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/EzXgtXsFZUzQxuG6zgdw15A+HBq0GFj1goyc0SUyIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:36:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.47.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.5-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TotorBEx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rd+rnhvWXe8ybODLMA5sb0EKZ/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h8+ovdO2dXdLeRJZwx5G2BbFl3s+yuKkd50K4rBVfV0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.212.170.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Feuermagier" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RdjB7v8EQEOqaAbEuRMPjxie8xY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GrQzSBXHCUASwt7EHFCWMXqCRw065cOlRSrRdpAFYWA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.149.82.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2488:4211:3400::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORPEDO" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RdZ+2/4KYfl4TzSojabV4Tw5d4Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iU2Rs+ReNPmJIbol0TIy3GSE5bMLqAbRQSXUU11exHI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:56:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.250.227.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 16357 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RdJ21qUdrlxvOaZV7OZH3eqfrvQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6rbIygIQM5oc81tkWARG4SmgFjp2X/6Gm8DfL2mjK9A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Perseverance" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Rby+LunJaxKZdaQsTihPS0wtFwc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cC0QnIPspqi+gMXONaCqOCekl9rd+oagY/dvaWmOSr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.195.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snoopy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RaUoZFS6VT+s9Wz0rl9MxtLQlbA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K+Btk4HehrYSbkZSSRlixMewrPL6ET+6oC9bsto/yXM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:06:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.221.150.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:26:58:ae9e:17ff:feec:6276]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arael" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RY4muau/Tg4372qm/RuwKVPvT7E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "onTniIRXIEKpf+ZPafk5OuQuXF1sLoBBsTKpEYHwZNs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.240.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:8341::1]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RYnvg5N+MDxPTAhREvcwYasjoZE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J4zbr0Kn6dmGmdjfgSyVWfrCTpjvPOsA0WMQZj3pEp8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:24:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chonk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RWH8CFw/OnJx/pYDF/AtzR6cEYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RYGi975o4PzzZHiaFvYQiC6pdnNznMmx0iSw9D46JMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:54:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.206.0.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedEFF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RV9XkQ7JKQQcYOQxHiY1KYvc1gQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ClRY+rhT9ykU0Ctaio0icv0HMBrXFU61/7bcjmWjivg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whyza1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RVRp0cYQ5DSY7PiOg+KcCmlO9zs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hriZUFzg3K1fYO2LAwD2uGFkQc/tmZiZyxF3Fn9JhPw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:52:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.112.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Andorra" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RVJ4W6ymCrB1DwLjUl4riCDAKhI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J3fp9L6FJ8gWwt8927ZAOxiOM0How7wAD1sT5jfOSj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.88.75.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=89000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FinishLine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RT7hLX5z+ZNbkyZwCRytA9kcAG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Op9//6FaI16mttKqGvfzVN7faqUs3leMZn3ijvPy0Kc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:17:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.35.33.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gepg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RT1pu4CfxZ7QytXYOZwnvAbetCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fttIraiUD6m+kPVOeoN5y6jboWRVlPxeDA8cgC9bpng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:50:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.250.97.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cryonoxnet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RRwUSjWq1Hr5H84wIbS5gvaBEzU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aXVlhJJUcV0oj4QRt3DpJ8JqPXHPIWJS4AONrySlxT4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:13:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.124.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AomoriDevRel1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RRrULtslmLBq+HQD1vojvKFlv18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KqL4AQ7w1BsRWG2vL+/wl8X2zAzjcrSG++U4Vi5WBxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:40:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.91.114.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3008:5548::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elects1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RQwHKenuAXYJSDCuELNk6FcWhP8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mZ8LBVSmRXHTqJmEpkg08SUqKsTECKtcTAwIJYb9I68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:31:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RQfCWCy/4oc1eFmB8EXFQjI+rbs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gAgU/oMR670aa8S0tTWYbVu61aN6Za84YnEwxXgUxoM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.63.180.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plithismos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RQR8eOH157d1sKQvEY1O1kUE0J4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xpZbAa5upItLitFAfPR6PxPZktZLNe3Re6VgQ2ma1xQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:43:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "168.138.150.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c021:c003:3511:1::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Freedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RPsx0KLlZ+LVKsksa82lnQP1tE8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d/Fu/pN+qv49jxALPWvyixZmqfn5GglRo1aBEDAQzaQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.111.243.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RPrR+yKG0WgOWj7s5QaRV3GfAx4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ydtrWOdHnKcBxywy3VE3MR6DsW3Ifi5pH7U69YA8MkE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:45:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.11.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RPo2qDm6NesV8+xctfs1UjijKrw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OTaIxXEFfvQvomEHQhdQAMuvjXj7DrorEHOLH0QOskI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:55:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.195.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:713:4489:4cff:feab:96fc]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kroell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RN8QB7VFtNgFfyeQJeuzPPmb4ic" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kPPzn3Sr/eJe7ZtAGZVF0cj/tfXRQRoV99xDDveFMG0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:58:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.241.214.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:3001:7714::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "crimsonshape4735" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RN2M7Yf9/vCxydvPJnP0tf1fbLM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y6JjBgLG1ghv8DUTtTvZ8QHUeJCfa1qYdgdQqbnNmCw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:39:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.164.206.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:93ff:fe73:c4e9]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "currentlane" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RNwjZh4F3v2UOYk22TNJh6vLbl4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qg+IXXJ8GccR+2V+h81k7aFDOSyh2kLRmExCy/kOT0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:35:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.91.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:202:7144:c49d:e29a:d44a:c6ea]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "always1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RNkmKVP/jTCqZjiplfK806L5+sw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mf66DmQzpZm1Ptibd7pABsb0PODlLVJjY0vnl2pTptw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "119.59.110.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "alejandria" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RNMGnJ7jserzzmsmhYHEUQyunVQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+7isHFgOvVXRgsgEgWVqN7fLRv7wrc6BdxmqQqidMR0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:14:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.167.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "light0in0the0dark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RM6oSXdud+kEVgB9BfGN8wdz4nM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z5zYcdr/jpUbOWnjrxIOJlACZHcXFNqEOHm8iom9UJs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:50:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.255.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:19:e6::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mortimerAtx2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RL5JScyWYDzP0ptveRU99kHp7ok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lm0lWGliFDQoZRtKYGCaddrk7c+UNCKj708/WXiOep0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:41:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.49.32.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "almukasirat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RLTJQKhCHdfs454834yZCupOiA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ig0ugWn8uHQ4Bs0xBs882Ng1yk7dFhOGnPXgZX2Hbuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:26:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.221.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torbogen2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RI+CEQjtKapAjygWJfZr4dS8GfQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c9WMpz3sCQ//vzBZ8PtDX57sjzTxRHTukozuVOEXz8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.138.230.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RoshkeAS212000" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RIw5+UlwVCMUWqZc5W8gQb0IZz0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yC2mXg2Wh5Gw61EP9OFmLZDDkrm8U2LOHZrDK0+A6aE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:02:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.28.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "beingthere2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RIMJeGf2REUz6qotOLVHm+HzZBI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vKVXxkeUm9XZRr9ShIi3Q0aLptfK6jlaHWSRDgEi+l0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:41:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.192.70.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "redback" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RH2W05j340CzHUY0fbaOf+g/ilo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uo59kEvPymsv0tOPEodxTcwj8TYqRdN7FJbr9oBdtHU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.67.28.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bloreRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RHuzPsTRf73e7ZtR2pvPbYLY6Zo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P3w2OOlipK+T1OokjmbSeI37NkTV47hyBEGCDzWdxj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:27:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.59.43.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "m0rix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RHok80AsR3TYnnqtLYdtC/ZOMmc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1vB573Tma5f1C/DgmGccF2jr/N0965KKf1KQZIPSTWg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.132.145.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:37:76e:68f6:30ff:fe7c:a4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RedLightDistrict" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RHMLJFAhO8Pi2qSFRFjRNPBkT/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "99uWDK0bu/nWN+RID/HeEegjaxrxbaQiv9XXvdQ2gdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.181.229.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RG4WsA1RMdrJZDqxATazzRmx6bk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QHeyx1ZGBqTrDTWLllAqNtsamiFQvLOsfiUydMy+wxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:39:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RGiYKFMszrm1mOHavb4ovYFVF+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "isMP8tBxejWHMjz06TyYmy8W6V4rg74V5VGjkR5gaYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.5.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Feidhlim01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RF2JHObHrD2A4e3KYfkh06bpHMU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6OfX1KQguHlGmLNBsQQZt2duqC1phzsw63k6hwFVqo8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:23:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.134.234.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9029 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Shakira" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RFF8ct0Mcgbitun+ORdAauivMZM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "df1jYi41L9yysTLiZD8ai9wrkdk6uRDdFAQMO0fCtUM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:53:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.115.127.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MonsterEdgeRangers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RElrGMaDVq86WKytg1Qpw3uUMu0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1+v2gklubthh/yl9LMUPCAJRbeqwJfiEjnmHGEG8Z5Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:20:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.148.141.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ihatethedmv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "REd7TdWkw8fSsd2ATxxXg09RGGE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "smAGLrGbzQ+udbSvpQ5W/Zaxucz+d9V4BUJrNvcAMHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:12:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.3.254.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RD6Zo4vHoYzSmj4YTw6yotZTrVc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2jTgaYmmtbgKPm4iHGeuRKmNlrkgDKxjFMoILfOw5CU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:08:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.150.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 48567 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreedomNode2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RDHxbyVh5wMvNnT6wJPPXFxQav8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6coAfZIyrmlIW4pT2fc5VvhuurGn+OQZiWmkDJAWcSI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:46:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.211.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:cce3::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Kelvium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RA1TlMsyWxLugkppYkWSgmWJAZA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8GqmCvH4zekpx+ZLrD2YR4m8Xjhyp2BQUGDI5AqTIuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:06:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.144.233.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8004:2c8b:778d:d814:f249:a1a5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyFirstTestRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RAoh5QduNeJyN4akW+i0QKlAngs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bN/TmwdRidb1aWapF9PKidH6gbIzX1WnyRH+xP2WR9k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:54:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.115.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dummyRelayWeibsvolk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "RAMlhVY3AmDlPN8Lz7ghEhx/eI0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6KTitJlJVwXodul++877JJGjJ9ov3jOISXJrfk36oXs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.18.188.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q/Ep7Pni0uoL/gSueBwvOKPRhaw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rYrPp4gjSGMNi/wD4ZgDctsWqBI+RCc2EUeTALWFlLs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:12:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::3]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q+9RQaRBfQvxsKsq0sPXTCI1XQo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8W/RuwQDXR26ntoH/4YHuK40SAgqd/1Qbw1T9L2S5JY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:02:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.226.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:5f::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q+2EGSa12pSHAy14mjG150p1JeI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YVM4PMzv+1vQLFSd9Jmuv6+K19urTyc7oDpN5Q1W+Jg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeLoreanDynamite" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q+iW02qrILW2MJS7xSytS1YOR78" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aQVE8/KDPgbUCotnacnud5WT2YYLaobaTqBd/nlqcPU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:21:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.69.47.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Linode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q+GHuMc2H0fqlo7VOJQ1hl1/T+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jo6uqcOUoIjwuD/HwT9LqmHIAVV0vRHUtFITpTN2oxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.123.163.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 53 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:9b1:28fd:bb03:0:6c69:6e6f:6465]:53" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q8n1wo6pChhYcn4qs4BhLqnNn0I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+5pUqcVBmv4IUeuHiTynk6FrbHwfCVDSEUOuVQDy1/0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "straDEicebeer01b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q8St2PMYCtl9mQy+YRcX09wDf7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JLCQLcwYrWcKx38LYdXRhghy/meWNqpVYXe8OVWdOig" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:15:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.165.169.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=88000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra80" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q7sUWosJCexUJzTqIwPU77rZfgk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "As7hjKmpHXZ/wRBxhC6fN8kvCytZoCmDt0w8WaEUKSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.2.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DieYouRebelScum1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q68kBxtACRFinVvJ/CDeM1+d/AA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qTT1oB3x0/wPtYw/vAspmOZfAhpf9ri/nsSk6T8vIlQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:55:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.53.160.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9091 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrentor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q60zdnNbSiJ5IK0G0tm2lws8dd8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ecmOqRVr/uL8g7J8MCCLRbAkyTs58/rFJTw3uiuc5lM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:34:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.94.74.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tallinn21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q5zRL4fOtJbSYBtdwf9Rhr2awtE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VyGrhvl4yrDgvstlU8L2AMPym9PkuYSL/QuUQUMdtbU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:31:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.151.246.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q5u0ks0kJHXL6G3XB4Jm53Zfwwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ss9RZOEsZlYxlulTUbnUuwCPn2v7OrBVAbHXm/coakY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:50:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.70.86.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 28093 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "demie21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q5GdgR206vxeOsYidBY2JQEufZM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+yTj5s6rtz9zskApxBUYsamztr2vdvrogcg6VrglHxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.118.87.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dolemite" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q48+pMn7DbY/U3ejJxq1Q1+tfgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X9r+b2fFSLsli0LI4iOM4pUtXJws9toAFRP61YuPwEI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.108.117.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q43JtrXFN10zK7M41+XBue9EiWA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ptEhyVZzOiV/9onucYOxt8hfLQ9KiqifZTakhNhVltY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.38.219.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:73f7::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WarheadRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q4cxuO/tseWSyANJNKVfUy3quqk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oDFNaeoTTAz53ri67ueeqh95V7Saio6AYmE9u7ten9Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.93.228.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:2:f0::1bc:9001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4iphb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q4Hkcek1iuTYFQITAsfy4WUCvuE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aqfRBRUjBAJYsGFzznrqmt/2hN2qdtd+cyYQKyECcSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:15:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::247]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OnionsMakeMeCry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q3xT185qhmlLvVa39XBhfBzEdBk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bfKOOf4JjNVPhqf9wDm17rCqLYIZ3mI/XvWv+B9LNTM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:22:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.135.203.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MontAnAs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q17hA7TneYJp9Kr7SDmdutb5qek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pqhL2bJ++s1A29mdQEDQbJ1BArZU3F6Ak3kKPIA86NI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.153.152.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q06h+5C/45fOrcIv15qWXG2EuwE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "19rKc4//f/e3CdO322W3nBAf9JgKJa7dCvthYzKYh5A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.255.214.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Q0I968oljyAx7vPYrBwjKCRBSsU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nmw9c3Tq0LEEdKL6GkicPssc6ViUf282xwDwtem0ljg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:24:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.236.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:2:125:6478:62ff:fe7b:e37a]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kgXuCTCWVMALFMb74Ld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QzjIAm1Gi4EdPrEa6eQh4gibgjk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y4yZYd9RHUNFZ/RtY+49Pg3xX7G17EOnNN/uRdXIm78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:16:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.67.32.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QzdpTjaA147271ZUUFe3UYC4zso" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k8GBFwEuX8CWKPNk+Uu6gXc5eVqgKZyd1rhWgBQzqQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:49:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.149.2.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:6300:0:be9::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "layz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qy2cgTeP9U5QYAqPP2HhBMt3l40" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3QH41gSDM0gjtDM4iwgBMIwDFljKe0ZY9tpgiGX9IUM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:43:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.184.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SergalBig1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qyz7I4+/h4LBNdD16/46NEFgriQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p/md/lvDw0FaTLLha389aghkgYmiX2WIyx9DclhgJB8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.188.187.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0174" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QynGGbfqJ0pqn2EN0ihjx+FjR1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pndGyoCn2PAyJHKgDxEOe8xzlIZHonInXSqlu+G38j0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10174 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::174]:20174" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QyCfbVDGV6Vv55rwHKafnvGb0zg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LfXOpmGfZqIHrEPiXc08kefkKhBBApEpTSTv4oX3pOM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:29:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::116]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataSmuggler" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QxfLG+0MYJCr67RUQKBArWg4PKw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d413dQvkqyMgmST8h3pctp0lz4ksBtZCdNXnLmOlkp4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:07:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.191.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:91ff:fe9b:84b6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bituman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QxcCs6aKYBX5lV3U/QEpF1tD6g8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2ack7R/cKL8MtvduX35ga1Xv63TPOSLnNFsZlQS34l4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:53:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.132.246.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:48:182:74dd:c1ff:fea8:d21e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex57" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QxaGbVeLBtx5coiDyOXJYJ+DEdg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rAlTZhqa0euOV5Br5tt8y5YufQpqbuvZA3w/FSjCQn4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::146]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH109" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QxVQAF7lK6gsqzqJDgfo6RrVob8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1tWUkRkR7KgX50r7pLPputY1FazPTSGZqvWxWkieqhQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:209]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theaggressivecrown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QxUpsn++1YF8aaIEuzypWjB+IkQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SLJr6YRKgauTDAaEa+0q4QZo+fj6rwrdomae65uxnoc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:52:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.124.240.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myRandomNodeWw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QxHbb8P9V/TRadrtgfZnWEuBduo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sXpWazKBLqTYoSTclRVbJrBzcrclmDz/3OZVHzfQ/3o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.143.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8057 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Isidore" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QwZyzXFi+oirSdiRw4VneZ80YzM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GRf2jo22D2FLW3GkE0J3advNs5Pr7ze+r1SxTxD2ExY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "52.214.94.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QwKNAHHeBVGA2qgt4gC0L9ITHCM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PSjfU52BxcaF7bhHUDa/NxqKvmyx2WZkeaEwLfNkCdA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::209]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ibibUNC2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QvjnzoZEeMopLp6gXcEUgcKT+O0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qqbprdAarVeX1Mp6sevthn32+oeC+kt5mA1C1Txn1KY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:32:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.85.191.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qu2R3Tdo9qKhlNCUp0Msvo2gBLE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/9SqlOTk5BAYK/xpYZGA2q+bUImHYbptYJpbzAxGyMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.73.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arecoque2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QugXvgerOco716RCrwjgB/8uP1s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FNBX1TyLIpyIgP7DzcqSJRSW9ChphxRpXrLlr3bG6lc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.67.167.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:e701:1198::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "poussin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QtWDNTgbybuMntmNOQEJ63Tby8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XSU3iuZZJLWADo6macnAFxE6h21jrlCZedeAqlVTqXo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.169.148.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0131" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qs/wyq9+tehrNY2wR9z+U7ZIVus" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "czSrbJdBdjv9DqxzfRPXUP7a+oVTyjbRsyxQBIlgpPg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10131 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::131]:20131" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QsUUoXnciZ6ZUZTF4XC5KHlPKj8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M5JaTQeDNVam2iPDAKjfBIgRfRSZSyplxB26EuVA/fc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::224]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "node001sln" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qr8zs86/btkaaiZ4GMxz1+mI8x8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qqjfeJh1JzRRMk3W6IaAquRGVbey8s7qEBEO1p4crUU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:54:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.116.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ENiGMA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QrT1LFsR5NOYVfZUlVQlsNWgWYs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YonHv6BLDqhry5z2PLI2vospdO86b5l3LWYLSF+bCHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.121.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ckaket2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qq7gJOtgzojlimVibb5FxcPu0j4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WdvFOlLp2syRhfhaApA9/qwH1cpBqwEmNLFgR4EJcEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.109.192.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:1fc0:2::dcb3:f9ca]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QqlVsJpOMn+/tGoI9uIXBSccyhI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9iZTFoX2M0u9bwAx/EFvxKFOJhIrrmGMqghKAfWLdm8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.136.31.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:49:5ce:5445:3ff:fe6f:c7c3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "router" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QqjDrsr9A/AkLQn6LAIq7YSb+TM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Le9AC8xd+Vcmk3uUv4/iU6+SA6QeRqTjasQgATj9UtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:04:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.110.35.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SoySauceR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QqUf/3qyovOWy5JLVmdvCby1IkU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ovnLIA4A68Sqyz7vUYVpStEp5ntn//Mvx/LCSwvHSs0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:42:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.38.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qols9pmg6dKLaQkBkltBDrItlKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fp6St01k9nAUO3ur1V+IMxiOpq8eCjciimClZj8WxnE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::195]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "speedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QoIf8KuJYyFeFb+/pW9iJApIWLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/u0WAdgDIuF3HtPPLpHNB+TzmK2PFX8xjxoqh9grgRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.211.91.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra28" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QnlW4/I+66MZVMsJQq6g7NQ6AEo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IEB+cFVq6XnvkLJsLWFkEO3dc4vma7mLzE0zi7IqsBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.10.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow000" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QnPm0WLtJxehz0IHolQATNP1MHs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZzQU50KRwAGRPikhagNEsmAf/rhAVCeDoiCDQVTV4Qs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:04:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QnCKEoklBuvNiBvLNkjnjZPcJ4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fABFPV7Txvu5suwZk+mlVErOEqDz3H2ScfRa10lTdJw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.106.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:7f5:38a9:d5ff:fe31:66f6]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "seyfahni" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qlye/cq0nprrjf0ga6uD4yEfAOE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wGsMz/0zSUvpvaqAKlZuiu0dzmCh7lwuplkxgEpjKpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:48:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.112.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:28:743:e896:beff:feef:1f97]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Baritius" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QlYpLNH38e5hxRzqL434Esy3pqc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iZIlhytRE16ICd4+kxqKq4lqVwikoWcbcWnRE2KyTPo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.109.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thetrip" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qk+cgKJYQ6LmDtrM0wktMdMA/XQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VKjRNJLBvrIqChgvMWyC6qrBKx6RWNl22KzDQdRaOJs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.255.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:55:d21::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RunningOnFumes2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qkv4aSfoDZFlibsSJIvUaLtHBoQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hux4h7ZVoY7doFEKv0CVdD+pr2AUvxE+QHOWXFEZtCw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:53:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.12.221.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashSloth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QkNHRvlgkg9Di/tPSsNeXIo6f8g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tAUvFiRw0Bi6k+YdHrnekQFeZif58mDG8GKrc/OCVZg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:14:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.46.190.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "h18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QkE0jSoq6t4+6H6YgBqqsk6ibzk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qrGJHBRBo7RZRYnUlchrH450mhPpxG+Vn94cDxi4DDM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.62.99.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9232 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EndWarinUkraine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qjn/ROYxxaCI7fPfP6u6JOKC11w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kcWrICZBmV5e1InRc2rAQIvhzmaMxyFK7YtLFYpPfTc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.222.53.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snowedinn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qil3GrwubeMpeiUZEqnpFrme/IM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hZTR4TkupsiZR2/T9qz93dQ5YcPid9nZzu9o7E+2y3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.104.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wollwoll" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QiCsbrd8N4tb/DukE0b5c+nmEH4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/TrALSZRxMEyuosRjt0vVlCn2XodM+DYRSAt6E3mT9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.59.21.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:858:6:2001::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notgoodatmath" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QhYr0NndAXXrgD85IKh8tVJi/zg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t+77qQCf38kOkaiHk4cCiBAKoMJW4zxKlClzNowrKMY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:16:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.53.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev2PLicebeer69" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QhH+aqOZHP2c0cyJe9CcLPc88fc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9QgK1vxhW5vt2u/vIAdntcadmJGioidPO1prn1OT+YQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.38.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8269 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BASIS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qg/LYyJSBHVh18P2MkH6Qh9l0Uc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hy6TFKAZhZRuNGngyeZ2B4DDoF1oOTctx0QY+QTAVVI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:14:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.125.65.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pozon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QgjHGFQi9kqw0xPP5aiohrstc/0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EIMj6k6szsVJu3lymCs4X3Nf+zh+ZUwXUTbxmCLiZCk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:48:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.16.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masters1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QgaaUYPPUlrv9zehzJX2kzE4GkE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w6dsVxw+OIR1SEceXdwqPT7h+y9CJAIze92bedh9gyE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SIS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QgVeOpAwtA5qLWXh9LxE9Rh4ArU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zLRvEjbdkmYWVOr/j/PBWWZm1Okmom4mH9Qs6+lbYc4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:58:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.92.194.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 995 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qf9KgpAn/9yjLMI9MNpJKrfh7TY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kJXxb9/PlGRc/qquyoNfLGCfFQr7Mh8153sUcu3YcjQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.86.86.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=870" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RNVR217" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qe7Ez6AeiYJkPxrzzYQxUynStY4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KUZYb2kNuUzDTpLHPMCBvNpU3eIFWM6Vlf0rf0h5Xbc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:35:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.211.147.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qe2Zbyng8SxfRn1nSDdTUEEm2DI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9FAkbK2Bm3eVvH3zwD5MSaxotTu8w8OWrE8vth3a7ZA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:33:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.152.211.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeyBroM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QeMZQH5nwAHYLlUjfmbmAEQic5E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5itpZ3R/mLzr00O/YSNu0pcjsZCEU5HBGR1SfeePCRs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:04:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.46.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qc1rkSLQCDOf2ZKc/wfthRircQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0zOQv7U1ePXFZ1qqHMCjVbA7DFWW3mx5K94Wg7x/SkY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:29:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.192.246.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "waxcs4edb69m7yh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QcYrXH4aHxAS4w9sO4fuVBwWjuA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n6Y526yLhC42nOf8uG55AeB7n2j5xi+0jgEfR+KAhBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:40:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.104.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Infinity1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Qafw8MFbbRfjHzyQTSjYSlVC0zI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NCSHZPztOKmkqxdhtbbxmBb7sWltcpaYD6lgX9vz0ZE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.37.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:65:abe:e8f0:6dff:fe01:7d17]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QaPBYmnHtj2263QdvdtOH1hrFZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GulJ8a4V9wBcvFffNtSR+MT6va90B7hzaZNEa1WJirA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:59:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.191.81.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1908:fffc:ffff:c0a6:ccff:fe62:e1a1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RmbrViliViorelPaun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QZE3Cbsse8PIfXlwVK4IIRbU/R4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yONLWVkhjaGNwTJT8PeWnWArPUkayxIKWkI6XHgnB9o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.106.168.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gofast" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QYiYttjmCtPhzlV2T1ldn6VmQvU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AWpiLQn/xsnL47EGeG2cP0OXa/gqzi6T7RkvZ+RDmZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:37:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.70.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gentoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QXqjyNIm3deagEfX8heyHZxjwh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z2oabmUkoCuc8ShlvIU7uMw1WOWADtytjotJOxi4OgY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:39:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.14.81.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:681e::c0f:fee]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zzzzZZZZ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QWhlVWLdzxCs2YcVIB4Ym+Ftbgw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4U4/vrJ7YX9pQE1AUhBVgoac7m0N1+WcE0zpYP1E01s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:26:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.123.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QWTB45sbhYelnh+0Fw0jKNKq6PQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wiQ/fpoRnMMoEw/8tDlnIcfPOyOKBfLQQ/muznxpJ4c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:02:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.39.237.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 442 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber46" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QVT5M5FgIghxZSMN1XdLwWjKH5w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "441T24fWPYVvIkWVFPsAXoVlW4pB/CcddCORY1kXTaI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:14:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::23]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jupitera" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QVObj9VflNxgF6Kc3MYjl38RijA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0HmmKOM1U+NTsOL/wuWWHfleAm/WnhLOIz0qZjvhL5Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:51:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.154.152.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7654 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:f80:ed15:149:154:152:121:1]:7654" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionMasq05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QUJ0SMQWQoMhMMLCmvH+rDs+7TU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tclsUOGzptoBPGDFUMqx7vu8LV0s4BLW/PQ18ftZ0wY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:12:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 54998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lamprlogin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QUH9pVT1bp4k2kEVO1wadW7kMkk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SabqgEbgF/rx4r/wJ/JUuztsP/R99UKoWRzHgrTl3D0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.173.159.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QUHdvN2K/LlqAzFB6X4w/GtRhHo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Izm1wRzeQPiLGfWvNfqR2RKe6YMVFz5nZ6NZ8Qxv8Wc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:11:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::b]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ei8fdb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QUAA77rW68FD6EO/K2UcllZXikQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "55vGPVQake5Til1OFck+UTbODbUiK6RAP+SU+P/0dwo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:26:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.176.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4a:d4a:8495:5eff:fe5b:6099]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "winterferien" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QSdn7LDO99y6+HSN26hXWGDdZ4I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0gy3Q/Fk/ZbqR2MAQKFwllbv1uGo/Vj8D35AU1HChms" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "59.187.250.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toreffiorg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QRsWjBI4R4aomaqooogoa6rT2U8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nsbudoWtOTD59xnMi/dXjER5dOVED1Fz0wqYCpEOHjs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:06:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.185.170.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:5c81:4::27]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torr1maiti" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QQ8HgbyilshmgipdA6jRHyRX54w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gaaE4c3ZDUpflH+ElVDqZTtMarw0Ci4gQjNSbYjwzhI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:35:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.44.51.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ffc8:1:7::bad]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CodeSpace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QQ6L+QhaDXE3wZpwnAnxV2BQ5Xk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l94o6f9H7eBOYrlmtO6eJUTv/xxVbZgLhw6L+GK6qTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:31:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.131.60.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:768:3b04:515a::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "W0LFF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QQEY6HTSJj8c3NVn+Bh1qOOLKzw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+jISb9iAdnqRBvIY7oGjBE92a9TOOCA9zrlM8T5QqVY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:09:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.75.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:150:7227:9000::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "terNOicebeer22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QP3rFEkV40UpCBVTTjcl272roLA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3rOk9xFl9qPIh1SIyCwa0x5CBNL5B8wCm0A5GU0RIZ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8120 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:46]:8120" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fennee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QPrkVAz0wSaxsVwPXgSP29ZuLYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bgiCqbAWkTqgFLgYDqMSk9MduEeNfKgzdiv5l/iFXi8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.7.178.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fatamorgana" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QPo//KcO6CrenSp+GES/SwxtvqE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gCB9R9bBiB2XDNtuXq/XhVPWQ+mQlYutOsJQfBpaIlA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:18:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.135.153.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Abeille" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QPoJwVHDiTtwGN71WphUvJdouCw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AsW7OEjzsiv3+OEkCF36YM8AcLuz9GxrZdfvOhlZ9fU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:51:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.66.61.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 995 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:5d6:6de0:acab:3:3:3]:995" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QOgrPnuRZ7wri4uU+MxPSDF72sY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "thL9gkHYrzb0cXba5FT4tXttfrhRr+0R8XZLeU3101E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.113.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QOfWzlCF5M3aMdUaKdFFfrU/Eq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ssBVpWNZnsiVZNXrlU0dHBIrEmewgRyXMGCHzu2l4FE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:40:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::102]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QN01bo88U/qSUbVhz5VjAnkar/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PEM/+KgRkZYqLTbjo5rCbUHg/BephlWGouGiUSEyq6Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:57:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.224.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "okovita" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QNmXXoZMhMJs9zKrvmXXN6FLdoY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fQAI1DR9FFY4ky0/CNuXYySwaA//2fVF42XRYApQnZg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.51.14.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:b07:5d33:e4e:4dc3:9abf:8c9b:499]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QNPM7uW5viEoaEwV5XaY1Lodgm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wRmQ6zSueyqVAGDkDEVX6d5CzC33qDdza2fJl+zCIFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:37:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.211.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OhNoAnotherRelay02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QNEwlrvRGvGYzmHe5OrszlRy8uc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tztDyr670vRCiRpLYcQC1czo2x844FxU4HK4K7NhU/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:34:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "44.242.33.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:1f13:775:d400:ceaf:7673:2ab9:a777]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay43at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QLM0Ey601oCsACAuAYbbtXv/F84" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9vp11WtvbHB0AgfHbqx71YKX2DjDbFhyU7ULi9fpMok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moykr2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QLE+hgVHRK4oVoOhOWFBPzM2gI4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kbeTOLau388njNG/iNYJrdPSttZ0ZgM51zTNSv9Dmuk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.14.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:8004:7800:a84e:59e4:dfae:415]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elektrobier3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QKYNHx6K++0i/LMLP74uJ1oUz5k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8XkMyBzJIDeLwtBB13jtzEISgecGDpRfwezuaCG06iI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.221.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "loxy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QKTVUbK9M8CfnWZA2XCOP9Vu06w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yycb6JNG0mvH1e7m4TPinxaXEF4huMLGclyc0ricbmk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:23:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.254.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fedstookover" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QKG5i6P83EhqXyB+uVZL5iqauUc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t3dpniQMmRRvdAoyvCCOxkGesl/3Z12dJnc0rbEeyMo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:38:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.170.172.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:8bc0:2:87e0::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryTessa4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QJ/bCjzqpP8g9Lj6f1KrDeQzj1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h69nBmodu7a4QruGVn42f0ElFxQ/8+RKW7DhoRo131A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:45:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.112.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:2e4e::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QJvVrsFb9dK5g8bwZNhSsK3gyL0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BQ+8PgcSJ29zP/DhOjFnav+IJL357rzR687Ico09LwI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:59:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.114.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:ade:982a:22ff:fe1a:aa32]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arighttospeak" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QJnepoJope0mEHjeFzSJEzShRvk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZhmY1RGOQS7B6sb68By0bpEDQkpP3JfFQF6h8f06ars" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.83.234.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:1854:1::face]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "benden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QJHYCBKI3a6Mhu0bxxrKLwDQm7I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o4tFTdDgKSLopMhFyWDOoCNSLaxm4gxZYzpH5Ypio4A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:56:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.24.59.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onionsoup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QI83TxMbRdfWPbywDmL3a2R5Q9k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qTtcXnoMjK1TcQI9qKJJJt+S2FEpaRTmxOdl3V7R+wE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.41.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:120:4169::2]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "muddybits" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QIydLxZT2e868TnBU8sn6P/bdhI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pkGh/x4t3xzezh6iIdi0dj4uYRY09PD916jiNIDNO3A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.56.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QIbsrTSzhfRfxlS6/eb7aqbXXkQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GYNVnP5oHDzA9935V3Gbb0aANtIIkLFe8YE7rFFM5uk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7120 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "styr0f0am" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QIK6n0m88lpBNjDDV8AB9H1W/eo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C9RtpVGSs4a4bBkyPRHGh0/5kMt9pGVX2lJwSTmHj8k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:09:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.44.158.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:61:e9b:6019::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AinaBrenn2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QIB3PXMeZY6hzR3fJ9hqOlG+KUo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VuXLFgS/67xMHIbR/O683u1MEJVxURpNZCvjiuDCW8M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:10:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.14.41.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4023 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uknc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QIAiLIuUQgG1FqxbFFJ15uzuRwA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3RtLp2vQJwwHKLYy2e2dwjqI688DRU7sA5CIXsVav5g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:47:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.59.9.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorExitRomania" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QGHFU8qIAhuDAvCBQ2UHCq5hcnA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GJxp9iye2RiuJISYmRsa7QCr+XJlq/eVUBnS8Hrs8IE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:32:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.165.171.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:50::11]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tobor8888" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QGGvgZpHCYmSIqHgQW253Rn9lAk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BAw3j5BlfwGBSJPGNUrEsIcVLfsb21j/y/zSq5RYD0k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:24:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.219.176.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 46410 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pissnisse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QGE+eWK2OsGZMmYWQib/Z9ltucA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pFhtFg7Ph7QRUhSopZ4odjj5Xmgf6SRubyfJx6QGdIM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.85.65.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange023gr2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QFXN3/ez+ealBEdgmjAUdTqC6yY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kpdrk05nZNVI4TJYXi0jnd9nnc8p0DK3tYOiUrsc1no" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:39:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.4.134.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c500:2:110::2d49]:9201" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=990" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenNazareth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QE2+D3LWZXaSVDKx5KKEJfouSCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LPhLDzejewiJQGmacS2BXwlVWFEQwxc/djwhYWhoB+U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:44:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.148.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 995 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:2dd2:1000::a]:995" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bewilderbeest" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QEQdklH5QhNKVi2uK9lEXykkVBs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H0w4mhGz4+QHza7d3i55XgS8lqFw1TPUOZbU5dEySVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.19.149.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8421 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:2700:0:5:a800:ff:fe13:9cab]:8421" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wuwei" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QD2eHd2OZvqAgd6uF8lLLR0fYWQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/uPvIdpMttvbWWz4UCzRcjqFzwibxg5CTqU7/bTLwVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.155.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plusvat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QB6No2S3Jxer49S22z8RkrwfJMU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QukIb1mZ5ruGcjNzzoQAdGH4gV5ze2OQM8nr3Td28oY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:39:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.193.68.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay24L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QBpmdHcTA4zu9u0oyK/rcFcO68w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RWyh+sDz/3bO9sCj48dani/C4yQvBPMrYYoj9AJc+PM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:43:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.56.241.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:b700:2::1:27d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trash2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QBZR1MEwCQ1cosnxfC7LsHSPMPg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gRitgCE/KbuNqcLIfesYoyULsiG3uLckc5/ZBdP6+6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.56.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ramhorn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QBHhuw5bmiKvZltVO//d4ipRexY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EtV4wrm2RFsz9AoavoTWdDZExwZgqRZ8ldrXC3zA0s8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:42:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.88.105.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay26L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "QBCP36QO2wE/cpHztNo9QS7Tpe8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eQL+lM8kd4rMSonMWslBKaOpPdWMQZqmk5T3kb4xwSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.58.49.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:b700:5::120]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=790" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P/vEHGWQIfiaUuPgIEslukzA/Lk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8c4q+WdJhsZWgWEHYpdUswfOlbCwJLWybRQpmJdkHKQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::77]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LimitedHangout" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P/mN6sIAwkoC+pJ4T2d/90qk5cg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FsxaWdG9JcI3Jt2gCALOzSqjAJedSpSoGdSUX/MrRvA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:21:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.249.104.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "remedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P+v7akkdMMrMLCmV7bQXF6b5TpU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xK7xiboWYO6xTlOjI06I9ftyqcJzHgmV37Fii7HSr4c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.16.170.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SemaTorRelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P+GqFjRF3A4Gd7Uif1B5B8SHKjA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y9cCyAemoUTCZmwZx1yxUWoAqy5iIhNji2ODqi1J3rg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.115.46.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:188:5207:0:152:115:46:132]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P9/sY14/EbTd1oX+FTcgX5KDQKg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UPKf/ZORNGr6mNM2VmZ/lDc44355N9X9MTGYei0rZ1k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:23:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5789 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P8zFLabNLRjhSsHUc7Esvl1dBR0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mKDu0g8vMAhdJAgbewp9v7+aA4SXNZ6xz3FwrmYLEFY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.229.91.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1680:101:36c::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hsalc1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P8bwJuSfG2mH8A7CtPCnX81Z+wE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+O5EwoFOwOxQEbBlgvPo0igwgIYCoTE8Je11QskUYbU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.211.74.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6d40:72:adad::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moykr1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P78uWqf60v08EkyjCbQIq6IPi04" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zs7tQ+J0yo8KS+QXtPtR6pDdO5Zfov3OeCpvb0dmn9g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.226.174.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:8004:7800:430e:23d8:fc7e:411d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "harpianet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P6k9QemnxMR7d8DX9heZm21dC2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RMBUPTxOeKT2zP4sBiaislZrxQbDc+b08ArFcgiWcpg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "143.208.84.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2804:2aec:205:4600:dea6:32ff:fe9c:c7ca]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BarbarianParty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P6VqEqCUqe12hWoGokAPT6+srPQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "btbSRQ+yhKxL4EtYla3nYwmSztL7UINFLmXSPxFZMII" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:53:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.144.183.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PrivacySvcsExitBA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P6BNr7OcjC07s1aMS3+EGUaR2cs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2j1ev2ggXLnW8JyFmzhStyyMaU+i/6fwrhFFFzF4S1E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.68.7.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:6e:a009:705:face:b00c:15:bad]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TSFORT0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P5+Atpc5MWcGbyKyAkwtq5dfdtg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TLEnTgX34cWscktbmM7RXz+RC/D1G9nALnay0KSgt94" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:29:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.104.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Freyr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P5hYDIgaPafvLpqJJ0ka1OXtaE8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+YG3ca1DJkOM/YlLLgitLn7zymD8xd4HzcussVkKX5k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.144.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P5HzhKv20RUIBjjlI4EjHRv7/IQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oyKM2r10FMCbhc78Cwxb9BiYZ77OziR77bZKWx3cxDY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::153]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "goldfish" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P45TXDoAvl5uSpkQ/zUTUX/Eaq4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8V/L0XmteVkpS+OmLNqdi0d1Zj0Ipw5wamy0HbJNTS8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.210.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9876 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:0:d0::fd7:9001]:9876" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0001Userzap" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P3kj8pcawP5ZGoVLryFHkCbcmpo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IzOv+erUFunfF9srZMIUJ3Ogd87vg5xARum9d4ftpXo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.226.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:56:a67::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P25m/aVLDO018BoWr10DTd3Y1Iw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j4TEW1kOXMg1ZIk8PpDpRfy3hJPkFA1gkqWGlWYuSd4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.5.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f30f:6a6a:dfb1:73d8:fecd]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P0R3Kwtnf/0/4PK4ogXAuxgaZzQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mnBqRbHxRz88erNLTC4N5O4PX6Vc1Rp7mQ9w9IT5TeQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:34:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.196.2.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryTessa2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "P0PQWEomE8nbYxOC/0htxrleocg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WydFdOpmNUbncpZJlcn3WG6t43zt88ncpKDKn6E/RbI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.112.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:2e4e::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PzjBfBG0NWJ2a1CpU2awIcvMeto" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CNd6hO3VOfiXMgjxInoXDS2fUNyEwnISGrak0pbjJjM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.158.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:53:98a0:d7ff:fe37:7eb8]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "edayat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PzhOhlcT6dhoRzDHgmWAG3hxKow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qF7IlyJUuzw4h5XUCC/b5lXLRD1RcWZhIu/gUPLZyp8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.148.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maybechimes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pxxdxg3ZhQQuQpFAGnq37Jan5AY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RUvIiW++JLIO8ubKYbU9Jl2JnHpHjpS7yq4xRs4ocl8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:38:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.19.73.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f06:bf3::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iwrs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PxU9B8Hk0yh/IHJ8ZGPglitSZmI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5yzS1gJaZu1JEByP/8WslMPmk3R2Sx21+GPtSseFZzU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:52:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.113.32.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra46" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PxTvgLyn02eUkes3yY7Pt4b2RK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kLDcpSkMvAFhjWu6HiUTS6nJM6I31FWeyNmQfWKbIfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:49:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::101]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NYCBUG1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pwkphum4fT/aCbcfo6YCN4KFx3o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d3naoQkGkOQmbsip2RVb82DqKeb6Qm40G/tjquFXi6g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.111.2.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2610:1c0:0:5::16]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt61472" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pu3IBsUk33pLAxzjFIBuP/bMJfQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/BOKJEfAocBADZD7iqeuwHbu30iGY9/rQN5kAgV+6Ak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:38:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PuYrZyJf0DCiN+TJSXwwPtPdGRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5zn4WKMDaks6BTDRXaVYXpVCU2gnEIq/cz9GNE2JRr0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.44.81.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:8881::70b5:bcff:fece:22c1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PuEcRf3iPMRuPHvIr8rLg5WzdBE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/A+RK0cCyvw26cpBCkJ8Pnlttt3iGp6/uPEBhdHNiJQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:65b:388a:15ff:fedc:30d6]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IdidsetupaTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pt0oiU1Pz2Q7SFigUviM4l5liaI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L5kV5LCc8xCTo0BICsFmIwnYQUrmzimzzxp/VicYgGI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:17:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.45.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "twoface" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pt0AJF2TZkozpyS6N3FQ5VMe0DM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JaSemAFvorYRWIq100isy9lJzFdmNA59AJCag9swRpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.8.63.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "inconnu3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Psrx6qLuLGo90ZHIIHiMkzhsJPk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aBFQPz4kxdjwnFdmbiTw8n8T7ek6HunBTSE5bTC5VYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "155.248.197.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stoertetor01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pp/urbccE5fqvvq8loZcuPqwbm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OMsrdM10w2DQOoAxvMhp0FKZMXy/QGFfxNqGsgFbgMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:10:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.100.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PmsZHXb9gbKp827L8j6GVCIPypI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nw6Em/LwfvjaLpgI3KzHNVawMrERH89azp100rKfvog" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::34f1:dbff:fef8:3dbb]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "squarewave01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PmLMWedFX1Xevne5d3++pzky/4o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+ONHzdg90YFiKgUU7W8ki+BF0SsHo0E43D1cvT9rKmM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:34:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.152.47.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:9000:3000:11::c3d4:ce47]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra38" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pllu2svpHco+fybwFox2SIItKgI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ITyN6wIOmxRdsi9z0cSwgXNg2tDhSai1VEDKgi1vAfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:32:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.120.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tuco1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PlkoDqZ8kY9a1cv3l4ZDu3CgwWk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F4rb1vUSA0aiSPN6h+sMXRC+9b0PbL+B4low+WJ8R5Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:54:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.187.91.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PlPTl52wfv1zZmHJNKHe0UEntoQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/xoOM0oMHGnD0ZaHY6CY7DgxAUz6xfKtc+0dTTmJVUE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.79.179.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:fff9:131:6c4f::90d3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RSF12thMarch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PlDLypiiD2N7xFUf1PEy0GLbmlE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IQ9TWgXKKiW7F0/j0DbflFyHoILWY8Syyl7m7afrk50" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:36:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::7]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eclipse01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pk/BBJQ4LgJJ4jqe4A3RJlsfAPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mLfCGS/2CiAz4EBYe6kYUQtOJgtxxZoai2dI9sLHfU0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:17:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.16.33.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PjYWqUMtK4Ww2vyEBihjzimRfhA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H0ZchrYacKU/fXTI4qOIFXZko2bb7dP7toLUgEAib08" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:26:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::12]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "runcrypto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PjEF9YgUewqG4oHurv2Yyl5Uk9s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KDrENTO2XNAHqT8acS8jmbNof9uIIAEwOrL64019vvk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:40:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.237.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Phj+ur2UzcmGQWyVffMj/t6Xor0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "m8F79Eywg/2u8vCAuA56mRlDZBLh4+cg7mInMFkymNU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.99.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39819 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuantumOnion254" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pgmu8LROlBa8LYcDLTQWQx6CMdw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UVNX+tqqCIpdhSvq6+XFPFKGuf33tvUuDv8AJBJ3qIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.147.122.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mephisto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PgRQXTYqoyTm5OHIUWzNnvTUG5w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qwcBJpeALIk28Q9UQ03pWEPPed+ROVVGEGDbNjOTr2M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:27:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.30.158.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:699::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rem0232" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pf1hkKQDsJkoglQBpvuQZ51qSd0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Euvay1wEJfkWluBR/uKstt6vUf/SKJOsp5qZ54mun6s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:08:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.102.152.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c204:2089:786::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "etraxx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PfvntHPzjfCUIJCzSS0C2nDBcEc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JarfVRayppsidZejMtlZLk2dhmS/sAecqUIMjI6kfjw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.200.105.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PfHMRZmmEVhdrbAXOMyNo4cWGQI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3I0WzsVPYgcUZk54YUtc6Ev/4y1SwXYLUV0YNhVwjEQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:37:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.88.24.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xbad1abe1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pe28mvMt0ZAJEnD75kAgWsIjueo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XQbIX+kHfiRzgmJuXaBE9fICZspi3MYXBxaZy45OIbQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:18:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.178.17.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quoo6voor9ar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pdrp1H73u/2uKtowpY+gow77jAE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fa5deEGAFBMNhh+Ry0GcT9Hy7/m8WxT8Ga4CKF/hL0w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:21:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.74.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mercury" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pdo+b1bXelhbnR8I4xrjjr5j7d8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W7bNaSkoze/np/mlyAd2Pwqsm9g7uVbM+FvGthEYSnA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:07:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.88.109.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:e8c0:1:900::6d6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM06" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pc7K9wibHCzj6pUE7gXOdU9M+ag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vae6R0w21rfMezN6CC5/CD+hL66KZK9tNA1ekfzxnbs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:53:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChocolateLily" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PcdIwt/x+OnaVia7PLqv8x1wbBA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7JrvKjloiuPXd047uHPdCFj+k2KIpDADBqniPQre/WA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:59:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.180.53.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 51000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dreggle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pbe0dWPz8qVd8elN8er9/wllo5c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u8ajpikOjJuKt6umtlHwvmgSZLqUTCZOVQN3MT4Z+6Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.122.14.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hKnYTKYgoYx4JmnAwu9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PbcjEPaZlVXnGgnD/N+G6OmRGPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PrAwONBQtYGSVdynmsJFKFRC5gkIMp0uRJPC+RktUaY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:46:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.67.32.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1150" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PbXu5oZbHxzO3i913Lj5ptmHveM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zxA5A4qz0/cieCGC0W4DAjwhwBDeZ9tD0rgJGjcNizw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11150 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::150]:11150" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "belovachapTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PbXDqU7rpbiHCL7VIxJnMzKbDwI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1bLkMlgb0gPLIIVMEGdbHnQNgoWtyB5r5nfEWY7kjwA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:18:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "167.99.181.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:cad:d0::be9:c001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hspaccaossa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pa/RmhVVdCghDJrjA7gHovyDsXc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9F5fSSGahUFvghXiKWJJvu6MFMFtb4QHz9SxtGTEAM8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:14:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.216.252.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vjayDuckdnsOrg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Pa65MiMkeTf31Ihon3m5IDNx4Bg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tS0pwYwZK5mPm+lSCsRsXAmk8qSA4cJN/3T6mcrR2SQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:08:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.64.180.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TurboRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PYbuJXvMyScc5UzGc1l+zCBZLug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YygI76jhZ43Mf9CSaJK/pilrms7XDYCXL5FdR5VGXiU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:36:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.216.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:2000::3ce5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elektrobier2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PWFd75fzh2MfUCAfr6bntn/fP+8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7PON2IA9K5wy6XBOGXX7b9xaz2XaI7G1uW5zu5ka/uc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:18:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.165.254.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorZabehlice" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PV1heMRFN+NpKFOzRDhfZXKlV2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SC0x5fOu2IMCygSWBpse986wmGdyTLXAFoQEDHJaB0w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:46:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.195.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:5f0:c001:107:2f::]:143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE62" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PVLAqoLl0OJlNJ/EikrcAwJ0xBw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LV2jHJImVluwpOuXrHX0NP7ThaS0VGRhoPg24o+uGQQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:33:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:103]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PVAZP5ua3JCKzGl3KmtEtQq8ZK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MdEpmzK2p332UiUrAE/TVjauB1cMmUBmSLksN50EoGE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "default" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PUC8eQp8oFohdUFgP2CVFvptmRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OhgzTX95uk7h9J47jTs9w0YPs77c+CcTGQQe0xx1fVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:06:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.31.137.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashElk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PPk1u0jCfqD+pNa5AlpWY2TDjpI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "521dKGJ1MeYW/9xKpMN1xwVnU1i93fPOc9HyiQpR3ZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:41:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.32.107.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:194:32:107:0:220]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thanatosDE2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PPkV+KlaPooG3PMp9xmy8/VCKss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f/ZSLQtUbshFi+3xAHI0YhIjrtDvGc2857+fJSMoQvk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.187.169.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OnionRaspberrySoup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "POpWuBdFXhPEsGPn0+dybChvfJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jF0cjwQbmGUVLp2XAMSpK0CUyaNZ9alxNF3yO3iBdKQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:02:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.197.215.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "neurostar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PNzXHaDIKWQdnaxgOw5cQxXxRSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DQGXeCIomSELeFuyAXEmr5YoqaHDV09ugzdc+4vxsLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:34:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.88.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torsethforprivacy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PM75aHGkmsBhSeSqjhTScNiB9tM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ATdewJ9gjGNoaFOZCW96dDMCtGC2c9KxIpdORHucc1w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:38:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.120.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:162:7018::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jujunz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PL/hMpK0BcoCdU7ysnFnRX8hQF4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rcimHD2yaDVIzysa6lJQ6yv3c6CX0RbzLypV2Avk7E4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:36:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.202.198.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hrous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PL79jcN//qINXd+87ui+yalNb10" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iQgt/bUo/WV5dDh2IcleOlTqujY13ltMk+Z1ViZDIbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:22:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.219.178.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55959 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gongshow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PLxUHyp2Ot1790KRkiklHiwGXk4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kNM4CVGewPRw/KlPHEXztwEcFpG8f6gopwM7ObrqsqM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:55:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.126.103.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PLQZPvTiOfztxNxDRo4LDWtnrMM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TOi80iqt07yDT6+LBPs4h33MoYcyahQghU/5bbn5VgU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.38.65.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:2000::f6e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NakaG55" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PKx4jRSHxZnlzjNuBFbK4P0ubW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7iutNpGqKJHUBaOIwouz3MUhSuVBZD+JSjWYUh0WCHM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "153.151.219.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 14141 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lttlefoot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PKhxCxS8TpFEgXjrMkwrRnwi+Mk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8jYmvpCpILOO4zmhdXkCulvsa9knwZ4vP7olCz8RCJo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:25:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.230.138.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 989 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:93ff:fecd:feca]:989" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN30" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PKDRVWcCTS4LVX3Azz6WKzeZmnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JWS8QKBVPPboH+XM+e/lkOSloxLu6GVIxEG8OwrbBYo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:15:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e653]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PJDKWFdwXXxsF21HXFkq8nif3ac" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "syR1NCO+P2cfprrSxlIijN63fVgZSaFLhwK3NOFfa6g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:07:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.31.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "F3Netze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PInIDiaZ+2NYu7ZP3JVHr8tcA/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OLU0JLCRynRxfj4kAz2r5KG+tDVbXUhJTRYswf2ukek" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:16::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "carbonitos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PIDTaPeW+zIYSBnrsvVaMaCzl/k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ew4g0vxVqACKuzbxiulSRJbc/UZ+16MeqSuffEjSmq0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:49:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.18.82.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "b42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PH1iCB51TY6yghvglri59Yv/zAg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "egj4tHuGddXrfL4zDdaR8rimWGB3CGKFbQP+8ieJg/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:31:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.196.33.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e34:ec42:1880::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HanseTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PHlwK8xKpJjLjp/silGnKuiRaeo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zx2maGiwkiLegWHvJw7eyLuymrq+JpmBm9zDM/f3sWw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.209.234.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 51901 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "glenda1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PGOPlfNmcfxxaQx7viUuIZIARNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BXKxtw4Al13qW9QsWG7ySJYsDqX9PvzPGRskyZNs2hU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:32:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.209.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:caf::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PFkVNI1zFQXEgRL08DI1/ee4yDc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v9m81Fgak7zX+yTlJIj72Y4Un7vrApDApVZbURPeeio" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer83" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PFUVFePuaX2+gQvj22e6UKPWeDU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8drygDAbmrKDaqkXJfHhGfUylHxscWSqFMFlI3f2VDc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:21:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8183 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iapetus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PE6xIC5G4BA8ydAlelKJO74CK3g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T3C3GsLkc0ijWi5XDFFreGWgCLHl+hEg6spQjeDprdA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.123.173.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PEqoMWlDKBs3t2dUyxilJurryx4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pfJP+/wbrL0/Lrt/QjiGXZyN7HJUQgacSPefNmMHzGg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:34:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chad" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PEC9XCo7F92PzqI5ZVANxUD6oxg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ercM+bEiH+oiHwq1b49TNtoSPH2rG8elANySkHqLS1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.145.78.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0148" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PDY8i0XSHtLGVqDtc7lH9UacUZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lJvH0IViIqRiyqGCoMJtbsQzQJbbNFN0lvkyYZbcH9Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10148 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::148]:10148" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JPxzAnychorianrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PDI6HB56XAUhLAQhYOJZtnPfXQg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fRZHOflU/NgoxTaidXGPm//lFEUxJ4QhSl6LRrwC9yY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.76.218.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2401:c080:1000:4508:5400:4ff:fe23:1a60]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "klaxzynetxor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PDGQXGUfXJSWbJI7vU4dvW2d+1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VebES+8nDRo0RrzodUXB2zEsRB4ECtdUU9dLyJL6EO4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.190.155.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:dc0:4:18ac::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PAtzOMV6ezByutUDtdhMFaqJcTM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hx0sC0ybIhzAZdH+70HY+Y9khjbVhKwiFlbaUZUU6aQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:04:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::38]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torsuperpro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "PAtFnTHgjpmOHpiLKC45ZLN7mkg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sECtyit94ZkgHA71Nl9anGIjBFol+8N/UERq2MI9RqM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "189.147.122.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EpicGamerRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O9xIMPkackC0Lm0ZsfBP+UzzNQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gVqxotKz6VnVYTu7YrbCSh0pUjmI7zVWV6CcikPKtPc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.10.68.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Raspi53Tor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O9E3bNM57axq7881WnA6Fq+RNJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IC3wYplA4/ldmXoZmumzUB47huE4429wEk6L4k9qf/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.226.154.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1058 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sa1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O8Upqgr6/w/LHbIQS2a2w8Q53UI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RqSAexLFrNPGkg7MbOcXsR2M0A5jW+tdLInHAkPIhZE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.128.112.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tiny" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O7+dmMfQWNfC5g9rpb1XTLTz/iY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fQZ/1kj8b94QhhKpIxtRw+6dOOMlUZd58poII5L0xpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:41:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.219.238.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "accidental" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O7cbqxc9u0+yS5CEPb1Q2PcEBuo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kl5K0Y87WWNFmwEksaDWe9hGcKIZmMAk6v3ynBfLBfs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:17:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.127.30.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "venser" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O7NMzY6pyATFxTYbIfM3Z/IggB0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aTmfdvQNzCFVUsC+3IZdTcXLlhW5EiqUb6I6ZPS+GJE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.17.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:2:123a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kerly" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O7A1UU+CRqw2e1Nw9P4SC7EdjG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TXTQ+h6KxUgZthl9nryxR5acZWxaY9U0xWzFH5CKLfE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.115.95.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thebest1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O6ufA9wvMqaqHGqg6VksGaBZ8VM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b+R+JjGDTlCe88TyUDjgFOXKNBgNPO3VIjI3+ASOyHQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:42:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noxdafox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O6Kowb5P1szrvORom2Y3KgUZ4Mg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wQoGOhsg/bSzUAU/Y1AkKmGMmFH+3cQp/j9Ht3QCt0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:22:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.114.24.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "paranoidtorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O5UyA68zLY/hRS4c58tQo7UpfbI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wk2rIRTjGV8IapYj+wtm9plt5L2Lh8ULj/jivGXgKPc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:59:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.79.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SamicWebsite" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O5GQOl8+It7//lL9jajaMAAai5c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9H3tqxzNqSDbvKjXPGGwD/nBjropwbvLxCzlb87/DSA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:30:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.74.52.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c02::f03c:92ff:feb9:4fac]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MallsBalls" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O43pt/r8vUIfdjX6FwhbyrMSceI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DilSg1Wb8rG33PuTwKp3aX5h9zZcvl/lpoSfYe5C2Ao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:50:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "101.174.32.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "grill" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O40psFpm5SUCS91phdWrDt5E0Zg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7bBD2uIGST6UrEFSLbL+bxqp5X2SGlzgsyVLekR4nKM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:17:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.202.57.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:5c01:a8:5400:4ff:fe21:4663]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whynot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O2ocm2WqOV0hYA+AWga5mViFSH4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jeY0TseZFd1NVrYR/ZnzRkSP8Ms3NWYksU/rPgx46Yc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:03:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "121.200.11.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "recyclops" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O2dfXbjDaubbWImujaGs313VGg0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A6XHrWF5oR87EvhOrwYbrhjQcUa2DL044ssglRJPPI0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:09:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.12.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O2Qv9/45FcQuIERaHHJadbqgqeM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aHuyI47x9Xp/iHs2f/47Pe5PaNkvBcLTUzDITVTozIk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:29:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.48.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:3f:58c:18be:1dff:fe6d:6f5c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForestIsland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O1V+Pwwp1DOakErYxkH1ghUf73E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qfm7utFbI0xuJSEPNijzHRWL9CubceOy3Bts+6wzYWM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:39:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.211.254.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionEx4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O0xXKfgpyi6JW4Gvg0pj2zNtD/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G77yT2oKKaNxSmqxFJKkaKvCEhDpyz2yah5Plbild2o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:39:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.23.227.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Baldur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O0XbAjaWny/SjftFwC3P+EtO6A8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P9pc2fgnSsY2GJ+l+U4Rt4BsUdE84NTGrUbT6ugOulI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:03:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9015 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BeTheChange" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O0Rlm5pLOAURxeqH72Qest/e3Gc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9aR0opGHilZ5nCsO6eVYvjcCUcRWFRHY4yyCcaC3aDw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.141.60.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Reichsfunkmast" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "O0P7TyN+vjVwywa1AMoei0bur6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f0rR6M+MaKJLgLUjKdkgurCoDBuDi1ob5DkNPFgRIE8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:54:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.31.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f6b7::1337]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange009de2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Oz9FG9WPltwOjrfQHyCfyIA8M98" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ELe+of555fxOsga6wAX+2cUxynUfYLtLeHLv6oZMATo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:39:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.239.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2031:2233::1]:9201" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "millersound" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Oz7T+M+lAJ33mdCsRbUMQp1o+qI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uQIw0SDCba1yoPtlY0iEwoNmGfGSR3VyaWwL1U7zUlc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:53:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "43.131.94.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OzJ7pf5WMQ/auP+VC9beN9PQ+Xw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iYCdaVlrvqYFnwZXJl+k590NQ0/VOSPDLhL4Mg6poes" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:36:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.178.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9228 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chuckles" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Oy86SSl5p5zOTeByrc01TNoGrkM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n90e9EwndN32pQWca8jJjITyqNQSsU9eUZGIBE0MdC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:39:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.241.23.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OyC10SCrjMF4D0MhbcnGBR7Vw4c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N0HLcrhjw97d/+8ta0Jowuzj8sqIm04YrPI8FXc8WZ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.230.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Linstal1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OxoF/6ZOU/4DHQmNrQxSdWOUV0E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vQEwjtzHQajigyvFZVYBBzWKMETcUhjgKhTV0B8a0tQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.5.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay2L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OwfFAKwX57Wh7mFmE+EEoJSrh/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h+UAud9Ds4WdLMqWUe5kYmzQQwySAobAlgAmWLFJ2Go" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:54:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.118.32.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:75c0:2c:fcb7::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gustavienne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ovg5DT9LgQPaKXz9UUs1dAeBuH0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eXA+yTeF3XRMWWWR9QagjQrj3dVUZlSIPM6FBAuIA/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.2.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ove+9yeUG0uQNN4IWAfOq0VNUys" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rkqAP6JkphZiYNAFgfwV4VSrzO6h3yWdKo0fliZXbS4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10058 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::58]:10058" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tordotcissincdotca" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OvbMaPy5cZFercHLZWxaxXiJy9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uywktiPKS3t9mxOe3sLfHloCwBTktGu6rMjeUSaKKl8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:04:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.73.2.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lumipGoesOnion2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OunyKOFUDW9zttye2BashM91VZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e1Zx4uzZxhZZiR8/un3B3ML8XgNzBodSaMt011L2yQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:31:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.178.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "strypsteen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OtK6sIXlILv7BdpRMTJ6SUTW/sI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pk6wH3tE+2zAV7H18XtNnZdn3vWCHqCSsucuzfb46wA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:20:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.197.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:1a:9904::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OtKf4SQbc1lfmbosbYMK8LaHQEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vc8WihlnajOA/J+CEHat+32JdLz9+unNt5LygGIYfXc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:49:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::145]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OtDgmeoPZLYgK+47c3qf5dVUo8w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jHWZ1DvLv7yvmuATU81bAHAgFlJAI8h5dfzM2wDL6lI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.192.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:36:c813:6dff:fe0e:b93e]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "antifaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OqqeWWq6IqZ5ZY9FRE8D0SXK5Ns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jJtkfKG3N0yfvqLbQwMGwz5iLt60AR2qnclEZSBe4GY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.58.56.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Baltic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Opvu9am1hiFSqAe4D6jcuR0VtGo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O91KyXFbgp756hxtUidU08TBBxbqtcA3gEytwtTUYCI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:21:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.165.26.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pasquino3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OpTvv0oiCzWpLQpbSoDWMkw8MGo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RyRXRMstJiojol5eI6nRjj0jpQ8sqqBcKis+IuSRX9M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.44.114.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 32967 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ellen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OpLNV542Unya99sZ7X1BUS4waaY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BOIel17r3IwHucNo303mT8vodmgvAnzbDpTJ6hMVTDI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:00:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.100.38.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ViDiBox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Oog2slScVb1ishN9FLdD7qTsBEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l5rtJnXPMWdL71yQeqePvcrwMhP0AfooT1BbC1vwsKo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:22:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.142.149.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "colon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OoVXsGf75T8Wi76qfRTRKYrlKlI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7dXaC6Yn7mT+CqX8CUKdBX64X6pnBLDZMindKgyq8Sg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:51:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.141.36.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:24f::1]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OoRFC4nBtkQxePmP8asvsELrazY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K9ttdEKHGSLGF/8PBFqmZ4sMPtQ0r0V9+Sa/5ciITbM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0186" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OnsHSF4vTcRftXdhysWfosVWqv4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X4r/vyTfe0B8trOn3T7t6QOiVRDfyBhBrGLI6+TqAhA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10186 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::186]:10186" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sotlar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OnUoQ24N2WdfsSdQ8+3iPPdPSss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1FI16m3uH7VAYM+mpmYURYDAVVp24xmqHTowO5AxRGk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:04:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.63.253.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RMK" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OmOCCgFFkTXSpmGIJ4GZEw9rABU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JNXW2gc+7LUss2Fh/3j99kBBC950/l26a5zkZasfcww" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:40:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.101.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:140:935d::2]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OmCPJ7TWVnWjGYYt1/joRB4LSmQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bP4t09428z1DfM6K56HSf9h5wBK13N1TNgv3jiMyYK0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::194]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MYLABSUKTOR02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OmBsaNgMJxV/9gQ/lZSWWmlb2ak" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "74658hY/mzbmAqMjMadV2OuQYnucPp7aD/cJGup1ER4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.171.212.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FourthFantastic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OlPh40/0yA13TGoMDB/4+52rcCU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2UOfZX2avXCFmanhkjQI34XlPJS8ht9k/sO+sTcxQSI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.142.239.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "40e62fcce23032" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OlHjKjA6Dgo6uKocy+mP+HkeI0E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YT9586VTqa242AA9/xwDg3MIgDhiN5XElSwCTO07dEA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:51:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.43.195.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lttao4532" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ok/fa4iVAhLnTUx71A4CHU6qAog" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kdrOiKErhHY55IatB7hIzfAHqWEwAz27KL3Okk5+wtw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.148.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:91ff:fe39:a130]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Intrepid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ok5iA7FtKRp+Ki4mKwYtq3DlOOE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GlGeaFa+P0k3iERO4VzsLuOIQXKv5zQF3UfsVe2WFtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.195.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toritico01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ok0T9SpMmhOtYNlGFdTAsvX2njw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QbqvzyfYrPLqhu53hi+i7FCNaQo9cL4GCXcXPFQAezA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:49:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.48.251.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HexchainBest" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OjTL2anngTvUZwWRpjE3fBr87Kg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hKEEWeRg7cr1oCoKU58wam5cO+AwR2b0Ua/LgwM1Wo4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:09:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.12.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 20199 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "3rcsRelay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Oirg/Zc4Ipa5r59UxSRj7sm3hfA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iOe8jMRCHBKs7zadfC9Bgb9Dn4ibMq7hHbPj+ASgJQI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:21:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.148.136.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:100:5::d912:7ca]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "commonly1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OiY/6ClaK2r5vSWwu6hURk8fupI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ouwKXO2NRzh3xq+Wu6BzMd6gKmWGsbNareKKHS/+p0s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:56:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.239.40.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=82" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex90" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OhvGXfA+zVD998/5xaTgSfy5wa8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yIrnzSlf55h92lX7Isue2bbCMoDKxrQc6gMuSaSzIEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:41:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::179]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TokenLow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OhujsIE+H9EYM8n0MPNQdmKlj0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yiZd3RPhYGr53fjjQGgnfTRLrMLoan+9v/cayYUC3LQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:20:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.205.9.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OgXjW7HlnzGLaEp0cLdCeFrrB4M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h24aCsHTSA/+nbmNi+VVgNbyTdCLN+3mXedl2Kf6fFg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OgSsiWnlXfUcjRHEmr8YoMyEf8A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sWeWSz9EMhi/qi7h1r4gYBKa7BVaKtYogOdmXnSHInA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:42:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "145.239.41.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=97000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shhovh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OfCWlh7SV2l1yGbUUDc6mROv3JI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iUSjOiiU61mQkBkalJHZHLecvkNMqdfPgJa5N7oCh6k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:10:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.50.191.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ManInABlueBox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Od8uaANyC8B1D6aYcqPj9DIQi6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PgGgDRozYf4qt6baBHrDIvTiUIYJB0Zw7GEMBOwjzTo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:30:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.147.107.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay5L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ocb4M9SwlSR3DTZV34JaESE8oKk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OMbTFerblttPSGtGGVa+niVQPqzAH8kSUDxjOW+yUPE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:07:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.118.23.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:9404::2ba]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OcN6/JCNErt5s062KYkpvFHC5lE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7HoXAkxAmImFL3w7zMVHSWm84RkV7lpenl1cuBt8yno" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:48:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.136.1.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "viajante" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ObUhxfFsmEQA7sxOL4O/Juc/HR0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7MMieqQF0aqPqTEzOb6LOBjKW16+f8nQlVqTm//4CLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.168.44.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OatZB+zc/HVOlwwPoTLSkkDtD7E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iVpxfKxZCTOi+m4Ai5dkinR9B6MK9mn1kdPZYjTAmh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10057 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::57]:10057" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cvbnet2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Oas1TxK0l/zUQ7hb6rW69LORz6w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BGX/8nbMdMY+Ifx6ZuEnEdGLjWsKZ6mMVU6yCUag+wM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:16:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "40.68.148.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Shentora" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Oag2pdTh19K57lrWhkzueZqmMEs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z7YQTII4N7+HgQ3ntPqn1+uUEiE772LNzCgDwx5hDDk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.7.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "trixie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OaVRzRiBURR9xNGVI9BqCbUofCk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1L7r93NjOh+4/uQkFieb2oh3xgNF2I6zjswSX+mXmpM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.10.179.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GloryToUkraine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OaU5uOVFn3B+9RwuZLGvepRMe9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7d4vEA4hX+ws/CBnJGqYhYpGWlM+lVBp5enGNi+kLtE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:11:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.36.151.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:d0:f04c:d1::5851]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis66" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OaGPMbMS5cshF4EJB2aTTBz9qzY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yE6mhqYYMaAwHO8YefLUEzE8bVEwuunmyOoC9RaxvAY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:09:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.65.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6010::3aed:102]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZynR01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OZBqip6TmA94vgkti1GVITF/zSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "62vGpQ6o825MKF7BxUd7OcTl01Zl7ATadQ8bwak4DLE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:56:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.216.179.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4f:9dd:941d:48ff:fe68:323d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nanahira" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OY0sP931olQpnuZuUi8n6KK0xuo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/r3Zb9qZ3c17VKTz2QdyRaJxrVbcCf5+I6BdjfFjAIg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:11:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "203.153.72.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OYt6xEfYxlmjXUGN/KQBP9pmU0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8CkFjqogSeTO6shYIskwx/yzW4QXMl6iKlLiykqC/uU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:40:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.38.152.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:56::140]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OXOmeMSAzuXpMmih+cJUPAOx48w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SFxV6bPqKCjA3Bz0yQDnmbqHuWfDyh40aeejBWcgsak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:12:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.85.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::3]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OV8a1QfcJosUjcXilVgzky3DOmk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o3aNSq3AdhzGuLudln0lNu8ctqsX1XmXWtfOcEKhWBo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:51:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.175.4.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1503 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1800:80fa::1]:1503" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myLeek" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OVGjOOxoe4se1T5ld0CJAtFwkco" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+QSiHVaNxwACUFCgo6bm3R7A5UAExvVcHd2eHyXaKlc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.220.99.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DemonsysBackup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OVGbTi3YZV9kw0kHOa7WbqI9b1U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZkdiRypl5sghg70lD7bcl91S1clsdtxxFZNoGZNulVA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "39.109.151.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 33801 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2406:3003:2006:2f59:6574:1bee:6a42:530]:33801" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MSChaps90" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OTGhuIKdT2VgQAf1G342iZMYees" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LMwoEuNZs0eDT2ZSuXYQvPn1zygJTzPboDkPLlSt9KA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.68.0.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OSvv3LAmpWjgd3huef3lianA5FE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZyKlvgV40bCKRU/X4L+SV4vNTdYWJ9tdB+yWbuVgGK0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:02:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.207.104.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1e:825:c4d2:4cff:fe5d:f79e]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "100UPSkid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OSUF4RXUQVZ05zHWviFeKuXlbVk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UdX7wAauwcJCqHTRiGsJHH/qil+aNZ7urXvBQbB3cRE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:56:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.73.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1984 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra73" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OR8niytVVIuXQQrfvQVdB515jgQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/CLgz6hVUI0rN07YIRSrjbZ+87fdbWd8hjBOOtYqEYY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:07:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.59.18.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "metamoderncow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OR0onfr7Zzs2JkalGXNEfrcG38Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fffaENyAG2XiiO0PYpXmZmwP9xXDtwyuCNQehzjNt8o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:25:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.159.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:a4f1::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "criticalcat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ORDFygzFr+IscJ30caK1trSu3Jg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J1Sxity4YX+X/iWuryhn8FZRaSzevBKfQwum385pGdE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:47:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.182.106.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mixminion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OPcy3TSaLlkHhDRlEWKi9CAZNKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L3mP4Gl5MEdmun35ygWGYB8fRZEQn0AxpA+UM5qlbYw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:25:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.81.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:192:3c5::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ElverGalarga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OOznE+JZvdYQgOiffh9NOZtwXDo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c7hWnjRYkwEPjbTqxY1PePIYdOblZxQJOZiHAWUvGHo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "187.131.34.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ONB9EOMRWpKAB2p6R8FpeCxB45w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tCA5gAw7GeVayJD1uFxGcABMtvi2ZnRWGPlmXTtnQGM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::4cb:a9ff:fe1a:b229]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TykRelay02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OMyVqM6SpZHUpXeTWb7/uhP6G4g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o9BT4KwDvEYzXeduRslCTNi0JcDfAHbDuau1uQt8VzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:16:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.101.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2b:151f:95:216:101:247]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VTISupport1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OMoo2LmYDM2auDDTAGu2mM6Zsg0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CpBACh93eyr6SJ4GVbAkukhDnLtwn3mmLzjyI4Bkgjc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:21:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.128.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "captains2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OLcV91jk9kKZB+s1LbbxVBlgFSY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XET8EOIBXEHj6CMiEZG3nCZ34L8XzRpKclB/RzZWivc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:11:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ToserBan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OK27N7hq423OHA1rafZCWbrOJrU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eL/6u9Akq8HIS0asGhOzTZme2Uv5ew6F3UHbK5uH0iY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.159.78.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apx3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OKQrjXwOY0b0pIIWF3QK7obqiFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ekFZbnuoalWe9TEKdbowKtSIXzfNFIJS4JR2QCjuiZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:34:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.70.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.4-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "folo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OJ++lrpInZOvISTrmr4zn8THLxs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bm58WZRS38qZ1MxTJEZs8ok0YmvhNtoe8D8h05ibgWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:33:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.117.118.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OJ0VcJCNF81qKhqCdpTyADrQlLA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IOMU1sTHaR+KUbQ2ZhETUugnTKaM1w5ImVY7R6kg8bc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:64d:3472:1eff:fe04:4b53]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "krf44relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OJlVw6/fd9AKQSaAf9HxxOTu794" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3RWFW8YC0xBM36iy+zSH1NvodKqu/j/aeR2H7bM+GF4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:57:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.119.167.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Knowhere" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OI0GQT6VxshhvI5IKDCtkuV89Oc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UCEqNXPqNNEHztD3uYhDv3O7OIFIBrKLZ62xkTiDSM8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.32.16.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OIobNM4AIx1IrbrjUf0jr1/Obb8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "olkofxBP0UHgMd1oP27PnnraCrnw8eQglCfn9j4cLwY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:08:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.132.75.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OH31PJQLihLFLSMQxNESm+S1SLc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M2M8q6OXrGyuJ7FeITb/5meXP/ev8/595jDK8kkZeQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:22:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::43]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra48" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OHz8C5Dqz/5KgM2KoFfzZOnR1XM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I/UnuJ/YlzuaHDMPTI4Y70d0dEhf9nfwr/VvpJ3BE/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:38:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.136.0.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OGP9U4ZY9mcWMeeM67JpP7Qt+n0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1zYkRoXpKFxHaS5t/vHkdwbp0paMCO8G6eYT+QjGqBM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.104.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:102b:c457:f3ff:feb0:a6d0]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Swiss20210824" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OGGzQsBOq9SjHfovnsvTudneHbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ir/xFLm/tKGmS7kVPgGOFlwQZQhY1Ushjxjt88Mv15A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.39.63.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rustlove" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OEcTlPBrK4ZAR2gZPJKTE5Yv3C8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wx5wkIZZ5lQR+kf+2PaG942V6GzAQONEbBuOW06mE/E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:13:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.38.81.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "solatis0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OEN1m1zgLf9+CKSjQQSGUZGEPKE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HosFTQ00+oprd24oHEVCEDAjJhs62DwOpKK8/cA/8yQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.82.235.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1c02:1109:1600:c8fe:c0ff:feff:ee16]:9031" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torNodeCom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OD1uNNm+qS6XCSsTSnCO70dt8uQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XJgKquwABsY8k6L8j1bn9juftgjZuMlNz/83MQW8nr0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.17.56.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OBlDgWxLZl4GrNgiv4YkIPeGmJ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4GlLy8PO15iNCia/BAxMPnp1Oh9MxTpFADdzv6G+fUo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:33:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.5.249.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SnowMaster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "OBaysvbiOur473BwR29qtrlqr4s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wABM7BEiULND0nNwvC6E7pNkyHyF4eA0K7ol07NAFO8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:54:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.120.229.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "51Pegasic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N/T8wyWkDK7Z9V5ks7tjptlegpo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dPJ1Zd+PV9ZGlqczekwrb28fTAvW9hf6bFrQcHYLM1A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:23:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.74.69.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5724 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N+Wpx6fMTErcKl+aAP8DHRWvpMQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "futYpGoFrsPapMXFOacHUCGotMgUh/tZ18MFVuxS1XA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:34:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.16.122.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MunkRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N+EGJdRIUBgZZDEOJzddaktfgkI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ubR4pTF1LqqMzdkjzVeH6MRv97hCqtcVwjxRjSGVUDs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:53:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.32.139.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pKD9jZ19N1LiTvsjOF3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N93xkG7j25YTCnF+pUZnxk2seN8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XtzMEkWTpiSEq9bQuFbasjxUUWhz6ZgRDI13N/fAayo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:14:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.224.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:56:c1b::1]:9032" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blueblazer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N92bZwlK52/V4hVL5yZMxFPrY/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zC3KDhMuVoLY+161AsDZqHgl5dW9+OCfNgCvawn4Udk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.31.252.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2606:2e00:8002:0:216:3eff:fedb:9944]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skankhunt42de4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N9NU7msi1vsO6ZIYdMBXgFnWkBM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "orhqsV11XE7yn0KUcFyqzb4W06I+5pAW9tCx97Ym6iU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:21:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.176.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4a:94e:c4a2:89ff:fe9b:ec06]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "elefant" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N8JcHpyp9IctU20ITt2lf2a0NDU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cNC1ZYuZmucEV3qs29n+gOp0FOvTOgzPbiOExF90tNk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:52:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::67]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hsjeufh24h7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N8HWZVnQx4hOPSH33rWMddebmKg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yDc2gpetTBEQvtetMjnwyu/rW+iPwv8mu7h90T74duU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.52.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N7jsuVP8PD4Jciv7ju/QM03fRig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5GvOnYXKoqkK+Z4j1xx35pUVPYsi4VgrBoYqzbWKrS4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:07:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.40.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:49::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra51" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N6idMqX9eD/8pQuCQo84YxQwp6c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BPBo9zOr5HZ+43tL2IrkvnC/wF8l8hAEE1bpVC37QEs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.239.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SharingIsCaring" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N6DS5IC8zCdSOH5p6JtAturhS4I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cOl3ysTH8u+YtR5jI85eU2lxqp67yUi6GvXQDJJ+318" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.16.60.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8430 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra55" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N4rT0ImgHsgC8WWpNhIrYLWxA14" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1lejFKTRI1SGqiNn8SGAM9GbwhWAZXeXAwVgwsgi4U4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:12:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vhult4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N3iPDAByikTtggJ4DYUyI+3KPT8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "88sXCEAurYKAXKAmNNGNasIF2mcsyfZ+HtTLSCLdc2A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:52:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.98.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:103:ba24::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pentium4UserRaspi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N3PJ8Yj9kl5uxOkrAOx0mADod2w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/xgZ35Zp8yJslMWlkOzJ2gEDxmz+wXAqTRnYuIHHpfQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:16:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.199.211.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f0b:3da::3]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Woh4aegei7Di" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N3E89+F+AwJnYNHVUDxpgZ816+o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Af9kioGZgZsoUt4IKfz1rBz1We+GyzbIlVEHwLUpiqI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.29.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N23HytWX06TLtlGZnPrQ533Jrow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G7WbPROtcbCF4q6SQifEnb3iGKs8LTRip6Omly3twik" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.73.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f78b::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ebola" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N13LstvZTlJjvAwBXwyedWZpYX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ICIRNsveukeAE291JU0XtJ7FTWJ/5ZFRoZcP4aDD4aM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.79.152.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N1wm7YvKjCY4Zkt6xE62hMs+GtI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4cDHrALVRd7a2o0BnTx+LvrLRi1l8cR6JChIlf/FW3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.87.42.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rasptorpipi2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N1NUCRAt/+kvPayAnkcOYrwn8d8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0cOKiYRbxd7D5jmfCE1EYMKXIhZc0+p0OutfKLzOke0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.240.60.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Katze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "N0nuy1Qy/JHOwuYs0q4JeAGs9Y4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t8UxBJLOhiUPlC7h2vi5mmjHCPUrM5p2KkqZuVOuntE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.74.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f71c:7d7a:8bf1:dead:beef]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "techToMeAboutIt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NzvE0lVEOE1hN2rd9BUW79lOFDM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ibdNyqPuNjhGClajq9vMLwsWKTAA0Tzy6eM5fpQsHoU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.159.199.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1191" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NzRmDcb36hEWv8uA/CP6xWgL2AE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Auz2Zh8M3om8JWwfxBFEBtzXifevLg7aSF+WfbUkPT8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:51:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11191 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::191]:21191" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fsm42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NyhlIYbE4YPyTO0G99NVRzI29DI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LuJvO08QV35JK2mToBTxn8XAbpD+aXolpya88uFjiDk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:46:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.213.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:743e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maupin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NvpwhbjPcpPe+oKowCgeDuQ/O14" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C9+kd8RZR0OxsfH4iFdRYXkJ0oYWw+P6emBpg4vZdko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:56:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.7.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BadgerMoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nt/hxhbzokogO1nJerAsoYY9ASY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fbRCXEnUkORCbAUS0C7vSZKCZGXO3OBsw4b2Grz2WPA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:59:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.198.204.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nt0tHwU5OsMDn854NANM8Y2L+A0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8uur1U855SoharigDJ5EhUqj2PNsWEQHTyI/jA1y0ZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.83.209.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0169" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NtigCIW8v+sXMSYHwId7/9kzDPA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A5dRwdD/eP8riCgNDrFWEr4l+Yb/OlHsJa/Q5KE7w1k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10169 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::169]:10169" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "only2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ntger2WKtK3MIft/TyqZskx0i7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t/RrYjDNxsZdg1DYTi1HQkWDbdx9jveWDwvGZ9UH1AE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.150.108.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex40" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NtaEeDZsuGJ4ZnV+vOf7PBf8HLg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DmYrJRGBuwvAXQwXGHaCcFQxGlABwsN3iodwM6T7kec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:31:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e659]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=840" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Schmaller" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ns+wfgcblKf/DnEuU1RSBsV1FpM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aLM7rMRMYpaanLVqF6XIPmZiti47lC5PAbjMhC+WLKo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.182.140.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "beluga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NszUgbPZ1yCXMjqK5p6bY9EkoOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "58Jp3MvmNPFZwUVCWTrT4CTs4KGsRDGlpZAwHDtmIuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:17:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.35.194.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ToRussiaWithTruth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NrL2HZD1nGmqBSKLbdNkVXW2/7w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y09FAjjnsqEuV85UPn/RFTXIIFORcYjaOwEntV5W0Gw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.181.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1200:481e::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NrIVt4JpzEhjC/2inDLRIv0mT1k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w9sEC4FYDsKYh6dDTPaEO69enoxiHPR9JpxHyDnk160" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:53:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.209" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::209]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NqetFJjcysRxmgjIKib4VPPiJbE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hy7wt6nnXhWkKV4cwTnurcUYQ1JQu/HiJXx6om3lPZI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.88.200.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e3:ffff:45:88:200:0:95]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NqDlEXikJ4frVVgMnV8a+MPDuUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cazl1Y6oZyLJCNo0UCfxOzK7rc4u+rZoE118aayPpZs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.223.3.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Augustiner1328" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Np4QpIsK8EZJiqSg8f+NA5VJu3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uz5xBGxUGA4gvYEnhl7VrwYsNcbjMyH76qDD2mP/juc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:23:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "begonia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NpzA5yblO4Vm8l7renLk+Iohe5s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g02mCZA0guMeAvJMsPid0EZjuEbDvpK0vfYn+1CRIic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.76.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:8678::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "reallylittleserver" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NproiiaGfFpV8RzD/ZAGvdzIy4Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rk7X8xUmV4XmjGsT/eiPzj2YV60N/x5famXF1dXWi9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:06:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.92.39.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NogAHXVGkQH3Sl1VGkmw70EPDiY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5G1Db62uvTDFgUcShULES2kiun0+JJ6y7qZMdEJLkdE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:35:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.250.190.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ffd5:1:1b8::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex33" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nof+x+c/Yaxm964lHn3ua72MAlI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ypqqRMzkrwdVlF8bIgN1jwwy+8Et+n7B21urBx+W7y0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:37:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::113]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=740" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KZL303" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NoS4Zzowtz/tKANZxfup+VRpDUw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KYcYhaWZspuENNSaJJKpR0E24lDiUSOi7lLvlGb9e1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:12:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.122.201.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "honestmistake" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NnknNaG5fCqMJNyM0wnPpigxhx4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A6Flvpz0rqvHn7px/VDkzq7SrIUAPacYC/4hDD6qjlk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:44:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.68.162.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ToRReRRoRR04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nm39586M4pWtU+Zv02UaVb2RNXo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HB3QZoSb0Wc6jbANbjZIHiA2UcHkJr7+LfjkI2Fa2pU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:54:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.148.42.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12843 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1182" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NmvCtZDK2cUNwF4rvD89fI/SfvE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EvVuJpBjoObvGp2ibsdB2QCd3kexGrbRiepZ4RGbGzU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11182 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::182]:11182" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bojoforpm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NmqH1EH3xKbAjUskBNH38kr/X0k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eLybhAIcTZdvXOH8w4sjpdthUy6MAHA5VWKGoMA3bh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:00:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.85.84.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LechWalesa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nk4YhIRpOFxZSDdvr3eKxh1M+2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+hpcm12GKi1OZ/EHTzACdagVzxWcmuEZj7HD9umHfmc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:26:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.143.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:c95::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Torridness" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NktsSUg6eu1Pi6Z1bF5rKIGv3zc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lwGMjvTCs5QCfnSma5gyWtnv5tUfguxiKpUTHWb92X4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.190.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1801:86cb::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yatr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NkFAeMUhuhkWgmD23yPJeZWXYok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Vix+3ADGDNk2V5/dHUF3nC+XRm3qIcPvgxBRZPAbETg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:20:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.44.247.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "taine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nhm+XTjwfsCXkr/x4nlFXGyVyH0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bbsfUq0sIQFX2qv3w1bSgqShdsUAAOcxMkgUMejq+yA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:52:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.193.15.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NhlvGt8z3W7qbF+tpp/EPBjQXFo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YdiOXCX2RFwJl0ZkQj6WEVJfOi1vu1ZTeVMHCwSZgUs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:56:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryMay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NgpKoSDYst8eA/5hF/OnJdtJAvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cH5VM4cuCAwOGmpxNhC6RfzjBqcvi06CZKa5fSA0G2A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:03:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.32.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 21 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:221:3641::3]:21" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fauringer01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NfWgsvAX/Qn36/M6VlpT2OssknI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ub72JGxFuh5AKF709IqkEJP/Uz3z2sOJjJyl42+gtDI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.13.83.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:43:26f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hakkapeliitta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NemPsLWR3zs1f/7dPa2xDa0CfX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LqnsxgOU+eOrT16tiO3chAP5BxwFivLERCcdJ0brhzA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.228.129.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "seabreeze" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nek6WHw7ZbBoZWnuNz6LwFB/fg0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hERtI4L/mZ2y/6lwNwRrk8asQFVSYHZUqYJ7Zx8jF64" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:28:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.15.92.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:b08:0:2::19]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "berni" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Nd8nuimYKl9BjHUr64GCEmGIck0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cVeAGBqr4Be5IyXcFHWfbGuFm+t7ng/Wpnw0/ylLAiQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.170.6.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b10:1000:8101:0:242:ac11:3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cryptocat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NdoEqSY0ryOSy6avFY4AtViaHPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ezxZyegcZD7/chQNWHqum07G96vWWHSrQpnwEMmgX/M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:46:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.64.0.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=92" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Goldenb0y" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ndf0RhCZ4ukOrKQ1EcDK0AWRiFo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bu8oArTfA5wwWjLC2TxI2KD3IE+6AYedlTArvatmxN4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.172.215.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 16385 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 17779 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:335:c750:387c:20a2:a70f:33f6]:16385" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "chilli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NdVik7bX3uKkPpHYfrozEgtknZ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5ExIrLbwo0VbcN0hWKszQBCTsiaMr3klksbqTIPoor8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::14]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip3b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NbUD+1RoFcye3pECJVW10O0E44k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PMnYcQS2v7+3cKwRWbI6L3JIv68IWcmPnmh859ItVEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:23:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::250]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anus11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NaqTxW6ldpIZrDgJ+ewlhuE5+XM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LoRo3GKGJqS1/p4cyNmBaieuItQuQ+YEzNZUJE8CVWg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:05:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.161.26.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NZxSMawkUtNltkojwngXod/uVrQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k6sYy4cYoIHSNMiuPAFpK3v6oK6FxewqpKQTzgpbHV0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.98.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LibraryGhost" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NZeCx0peX593P6KQfSAjU2i0nnw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WCggz/9yW6dAd9krlm+oiN5hDqeNRPgV1GrY2NARXfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:24:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.57.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NZN2geIRaWaq1r35qjXFXYxRIiM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MiRLDkUZSn+k0ffQomfqVlVKeHG4GCgCXR4clPTu/nw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::585f:f7ff:fe14:4acb]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "taz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NZGeGXxsfzcqJsdH1mrKajlkKz4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nMmAAXQNt28MHbsGA/MJrAUF36J3dh8nw/X3GrVxfv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:45:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.104.220.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:13c::35]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NZBowDF2WJJCCmcvKNUGxBNBqnM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h2wyDuKMxzYLAfG6lFNR+T9sjhTM3mSomxNRAkeT+KI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:45:2817:22ff:fe32:ac8b]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yellowjackets" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NWmGFZaJb6zYhg/2OK6JWRBahsg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bw4sx26KzcKGJrWM7ab/uSCrKanTXsUAJnw4oAWSBsA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:08:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.217.249.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NVaWKelAc4/dsLGzfIZE3svk2Wk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GnFaEeJ4l6zYMmxX4OccmAxxkMXZQylsTNDa8zwMjuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:57:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.86.70.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 14823 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "flatcap" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NVNAJz542sZksjKOxG1hmY15cUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jFzvsbfatv3OMoQhrvvE2uPzw+HCvOTFoLBGku83Bno" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:23:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.79.161.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:fe93:4455]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Speicherprojekt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NUf699ZSa76BzAf6ytYSqZvdmHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aDt2UYJAeXmUUEsr8bR++ihdyk1WbTRDcsP/zfRFo8k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:56:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.147.248.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GuruKopi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NUSes9AlzCRgH7Q4hPlpk2fWd88" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WpPynoJlzegrYcnw+d0TRFk53og7p15A+Gdq+WBqjxo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:55:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "118.163.74.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "imherefortheparty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NUCk3Tnc8xiEKylc3dSRGJJPKlc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aUNeZjHZeQ5iXPmJSnna6bUGMdImyX0q69k9h2DpBuU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:22:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.7.160.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MakeLoveNotWar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NT8IDzoQJ5OtO+PNt9AFKfFvI/8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7zDvyLGflxdd7PhyXsduMA+NXDoOSFyp84BaV4tOHjk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:13:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.97.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fogbank" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NTn5b8zcZFx4AQBvkoZMuv1KjrI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zzTUQmcUxWgWnoj9YNWUL4KDshrnnfvrFxfl/xpyFic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.144.142.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1620:ad1::36]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KarnRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NTd0UILjtNvz74uAuu+i5nXTbaA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QMdnhEfXcBsmd187TyDCZtUbw4YzBwGRf/irQuPgkHk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "101.182.5.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privy14you" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NTNatYOSECY314ZkEzPH1d+smGk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XmBTIpyURh4RyQoPP9UEl/0o74pMZ1dsfXC0RCyrrdI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:41:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.210.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BasedRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NRLAyvd/hLxXANaOnU0OceJctK8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QLiddaFASujQRkyF3uLZK2gCIVsAhL+aDJpy3kioCj8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.170.132.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6969 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:85c1:31:6969::]:6969" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorchierRedux2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NRFvGiwLAEcjYZL7nbcNBV1x+Ow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Un7vAX5GdL/DuHZLJZQBHhDP0Lc5aadj19OWIqKKEXQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.12.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fuchur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NPrnP0ExTm36IYHifxzNQOKTv8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J6Fl0NmfC9VF6Hw2+wiILfjIfsrJArwJDOYU5zItw4U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:20:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.176.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:85e0:d875:d4ff:fe5d:c267]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theeldertroll" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NPSqlz18lJ8vTGUhNCmi0Pe3IWA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WPu+0I1sl/5iyWqS6641xuqS13lAhD2i/oe89DLNkgg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:04:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.92.218.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fulcrum01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NOZRC9aeiaacgufAZaagYv/6RqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lWgYQe9aMFHOFxe2cn0rgcsSlXacIDHgnzbsfQXrUng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:10:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.150.231.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ishouldeditheconfi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NN5/kCilPVI413mwDa90OP3h16A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B4bSmuLulD8F/yMf0LG5TziVlIMrQ42XUFJdLjiaJ3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.201.33.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:9640::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NLgNcD9NY1AUa2hOZtliojqDARc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7ZnLnpWWOjwZCmqcOZSldehmmy+kSZI9e9tasmHxzEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:05:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.157.127" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:b56:5850:c5ff:feca:c5b0]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigitalBordel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NJX0iNGLHV+IqjHm5IR/0ZQ8bxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L9V33zBMGJuB8qcmkNi0CFS0NOQxjCwvo5ZY55EhbuU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:17:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.39.90.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hecker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NIQ59KPZWebRSBBw2oGhNTQ0Gcs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5hf6J2mDxZXKA84yub4aQQjUuSRQ5ZrqS/zaARA8MdI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:26:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.143.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 445 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:cafe:c95::1]:445" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ph3x" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NHJT0dUkbLHEz4CIxpgv53z3q5w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i6hn/d2yvQtdQy9gO7wnhPE6vEPhPTF1RbSVbLgwNVQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:45:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.59.119.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:858:2:30:86:59:119:88]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aopelrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NGA1JI/6TMbJHFbAhxafcY6OBsE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kYSAferfRWUoV0ikEWVBILOEBXgBFa0bX2PYW0Y9bEk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.41.181.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9098 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mewse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NF4Dzvt78EYT/KFFMvONG7ntvUc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7cknRtlpEXjl3879/NQBfRIV0t6y1SMQfk6MogFU9hM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:34:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.128.133.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnnamedPlayer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NFVhbzyte9XxCTxiqXWe5UiTOcI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y1I7cT+Po1+diHE+d/Ac/FS8lnFikZTiD7XP2EKsNe0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.95.11.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4a0:72:1a::2579]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SilentOwl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NFIv0LwR5Up1o96lYvYqrWcXF18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xt7OQDtDKvTqUeVjfZuTFKvLtuxl9LEnNXWwRJ+SM0k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:26:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.201.36.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c2c:5fec::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DandelionSproutW11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NE/nIKT3cwqhXUkNO3/5hg98384" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UVfIobsGq6EWfeq6O1xTqQ75We4NON3ie9YPa6w24ok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:15:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.202.47.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 36499 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4652:5f5:0:bd84:5904:79ef:3fd7]:46489" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EMTR135" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NE+WavkCmGIn2mwvUj1Tu9YEiSo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "it1AUYxvQpovcVf9rVZwxxW96+qQxLF78JyF5TXF5MM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:15:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.162.208.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NEqLxP0CgAgCk7Jlku9j+KWSef4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wqtfoYaWHEAZDVNALYynCNb/CBYbS5Uas5t8esm28Ec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:16:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.15.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9119 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:10b:1386::2]:9119" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stubbornoxeneu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NEer6LtJMDvzb+AAezyK2IvcTTM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/y0Qh5vVPm05BI3LM6Ju4ngb+P7RfiT90z+oWem4yhQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:11:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.10.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MiRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NELxgTnktuOryyWY3yV5CesQaZ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "79HVWTACE+4x6bwPAiAP+0pFcGqdiqvaFlsMNM/Z1QI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.247.81.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=540" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BringMeToLife" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ND7AN9YzFQr/zIRx6AWquuGx2HE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B/kvUjVuz7QEQm9/a25Hz/iIHIw6fZwmC8lOfZyF1gQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:30:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.168.117.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42069 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay15at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NDT2qNKdFH2QH8zUa8oDp29Rga0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZBLFlEbfUGbRPO0kUiWWCR6HErz3TAZ8KbGgIvpjsB4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nerdbyhetzner" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NDGUDftGQ6PuP0Rlv/JlXKm965Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OlDPzHsoYTO2tFtnZmiQ7939zOBlwsUJZBxcNps1yvo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.154.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:121f::8443]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aergia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NCoax2TYkkjmZFjAd8/2aNBf/zQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "saUgxAtAWjJrgfw7crvGQ1Bq3pP0YDs8wsBl7zFi2qI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.98.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 49030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:22b9::1]:22" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NB+s5SqbV13YkgQIUkxenLY858Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s8CcwD9A4IdnYi25JKMLzX25CS1BWOJKDIMxCoIeApU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:58:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::28]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hector" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NBxkuVFieiBSxMlHUw/q7k+/qG8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VegVcBaXTJGdZwCpfkUBcoxfTlBAc4vO31gfTJORtBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.195.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MetalsAG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NBfx8kp8pAM9tRRhAyGhqfQQzDE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r+0wIwwElSROTiRXTOI/YDIEGNFKUea5fop2UeIcTYs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:06:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.231.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Harambe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NBM8wxks91OAibFFEUAN8huloHc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CyRPoB7PN2smAGS6S/vMZ3HqCpUuQMgGwXrD9DbG7dM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.179.6.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NAxZVAJJ0U3+VHeTwIcIsJhsr2Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wBBff/i7Lj/FBhkPvtQcfAVprvltumnKBHFLpAeyd1s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.73.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange005nl2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "NAsJrM9FqYcRq7Bngg4lovIUUsY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZnKUWrcyLYlbbjr2+eWdUSUeG+qVHx4zMRsyENpeS2s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:03:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.4.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "h0mer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M/Ih46kwb6CKhX/iZuviNyDrYCY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mzaNb7EFO3h0GZQE+Jn+61iJa5O9IkyIBmRxLnFnTuQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.170.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:20::eda9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "popular1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M/F/H1EuamkPB85iFm5Aa78szf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OsZJ7xkKeOoUS9EJNVuKxcYxe+qpqGooys+79Fnn+70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:37:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M+mzb0jbIPQ3V4QzlzFW8BhUQrE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nrD2gnrNFBg3SWoNxtmfH3zmCOVW9I0Ys2MX6EzVu+M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.26.192.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M+b65QLaPwz8GFDkKb93m+6O6CA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WynQLe5imStQ74ouOWJNiiowh/vHhMNj+RNzYCSiTS0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:49:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "220.71.7.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "2HG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M9ujMEM+KRW9DuZnh6SIY8gYwLs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "deGRjNVTDAA7ZO0TvqYLkBLDo1+OM38gerlU8NqlPSs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:17:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.68.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M9ajqL2XdyP9TAUxUfeNhSrGJ3U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "blWXXXV6sGVUIu+FFlPlWapJVH+Wq8+4jHVe9BONlDk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:34:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.231.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mischmaschine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M8McIBEnHecf+iiPN6OtJKZRnEk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SXIf2E7eAhLvtcnQ+kY0F0N01XRRBHrK8tPIdBcPIx8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:54:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.206.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:221:543::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AGoodTorRelay3782" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M7+Bv99Zc66qMe5EX1GIv3eQXp0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8UyTO5fW1MixmKwWYasM9HbPTjzKdvAb3I5ikMG/gqs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.86.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:101:200::1147]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M4hjoYUgB8IH7UXK5KRnq0cOCiA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NJ1TglZ8REzZwl612RRGwFjQfvU4ajVp7TH8fe5W0+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::81]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CROPOURTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M4Qi7oN5C+VLMrPqUBtp/vdkNRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CRt/s4eYaHw+1JNTUJs/z8hWLtk+MPYuprv8WPxnsHM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.141.237.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:7400:844e:5400:4ff:fe14:1da9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra53" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M4M3e1IiBOabH6GlYn+Vr2QOkQg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bs7dTRDszX6hV5Gwe0EEgJBucy0ViNbgbUr6MNHEV7E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.2.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M3w4CqO7DM3GPqG0XQJQY0g+f6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cmm3zRxItzsRSZfq///eee6mQwr8oU7AJvbYbxoTxu8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:12:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::74]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DowntimePatrol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M16ZMiIgT2tIFxNFBklKZEHe+2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9btYU7SqXhIFYEv9JPvF+RQYXmLflvvXyMsTw5Acdok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:57:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.181.60.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:181:60:0:181]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "6i0n4d324" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M10rtxTydB6uZ3RbRiNoPXOFCHw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZadoSqOXiqvEOy4c6KxgX41Uvvoym48b6hdzbsBgI1o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:16:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.13.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M1kcYRGMa7Hu0uIYFK8eG24aiYw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Mm/JDKCTQ7qk2aLM8zCAwxuz9I+NgG4WhWHn05PEkCE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.33.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1214 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M1MRxg3LOKE3FYin8STfDS3C9Fk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HmwJbVAD2m3/JK3N4KUBsxoXUtPWiV6DXy8P303km14" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.137.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:791:74d7:ff:fe07:ecf9]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hastyice" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "M0g5wxsvg0qVKIBzWRTGMQSLOxQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dC1DKyP7GSES/f8e0yxRPafBix5EpajSe38d2YzxRvU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:31:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.203.5.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "central2rave4you" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "My3JC3k48VqotgfAWMZssAV2LN0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MNV0L74PRcCa0d7rV8Yg86RXqA8WDeoKMGWSnKKYdaU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:28:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.66.57.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MynnNsyhZEnQLVZ9Qmg78f15hnY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ae8fSxUFH9vlKSDktQoZ7X+JJqN43Pm1ZbnB57SKiEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:44:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MyY778fmoNaVwEk4C0xypvusuFc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/b8+8hr487qEyEra6QDi1EbPaiuiXArPikUcgJzRJGI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:45:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.156.98.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0138" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MxzuGfMRIEy3Mv+NtWlMTfMvOyY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6/Exjao/quYXLJ2k1kSxI0t41ilxBrM4AehJNPj9kqo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10138 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::138]:20138" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MxQgCsK/YP/YKBFPSiPURINPFNs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "udiktGsdD4Xj1dopwAi9Tuz26oaEt6dqxIgQ+umcAls" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.245.115.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7936 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CHRISTOPHERSOFTGEM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MwqMLlPuZN1h0oXhlSdllQf7JHk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dLPjFX0mFjlzqbAq6FGM2ZkuVrxuAAGXA0BajM/rGR0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:23:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.12.118.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MwpdT51dUya5qsEsM560knnWAjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7bTaQhkHfGNy0fM6wTq3ynYZZ1c3nkAnqfUknUQ19V4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:31:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::4]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "klaxzynetwozz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MwDY5ZFL3t4+7SrdLO/WEQA04uY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7iUJ4cvwKPliIRy3kvfFjRem856+p5P4uNMG/Cht7Z4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.58.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8d8:1800:67b::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SetecAstronomy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MvYl44f4KnQ1nBSQ0mSVtvxHLLE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2L8cxgcyeQevXsetkI4jWH9umpGH/ChHC1Rdu1O7ZJk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.183.154.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MvCgGcccJoduyuNV3YQVo1WoaSA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QlKnak8ToZagEPAinlk7GJm4nCdeOd/fg64pLPIq5hU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:24:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::6]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ndnr1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mu6RHZaL4+AW7KVyux7Qqe5D/C8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ScElSfkRzt4GO5QBspZC4NUIJ16o3MHy3TBVIgrA4Fs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:22:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.105.109.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 60784 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:948:7:2::163]:5001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Spiegelberg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mu0bVV+xQNbbm/Gv+BwrZrMh0qg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fXrGigOx6mKmPa0UDRjqIDaej+POyCFCaJQKDkuEipI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:34:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.56.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mudd9RCvcLF1Y1Q8Z+iNPgLIX/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/2gUohTBqyo/XhyZZmjb1narBwP/Jdymg8tlzXtkXOg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:14:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::75]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MtYYFK/LpGhm3B9ALuKWfZrBEj0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cLhet6iKwd67EmHHsSobFRKP2b6A9cutzxqm3YdTkFE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:47:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::c]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MsPCVdZL8Fbl4qK4iJts5NjCdkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "crq5RaqobT2rA+r80wWX6RbccZukj1PZ4qp/5//D+98" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "STEALTHSTOSE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MsFZN/Dmx5YTQJHq9UoBvGr7oYo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9GSZZG9nR+YRZIPexOeu8ELdvJ0+u0WORVnvKuk8H7I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:08:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.196.126.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=460" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BahnhufPowah" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MsEQC17xmlv7tDHo1CeBwtCdMcM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wNJextCFJCHOVPj4W8n5ev427QdISJBsbwU6z5bAPN0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:25:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.128.173.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1145" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MrQqm4ZfO1UilT3Ry7Pa239T1bA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ax+oI3YCBiJ3rXUAFjPGKjcUU6lv9zIXN/DS6NpmEU0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:30:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11145 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::145]:11145" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aare" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mqzoghc9+jcEpyFfimJT6tPhbJA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hR77Ie2uTg2pyTvCjE9Cay4W77Ax8M+skEQOFv5N8QU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:38:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.232.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KittenInTheCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MquupbLsbt598H+89UyaZ4ahs08" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j7kgRxT62oEQ3XuoAjYjGXNdHiYk+H1aUtVQyLULnQc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:43:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.137.68.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:5100:e1c0:503::44]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Carnavafoire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mqt4tQ9bDY0V0A7xhwrRA5rTEDc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "copwSjPmCWCNFf1DMjFiZPWcf7Oa7UqT10mFvOyeIdY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "216.10.247.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt85328" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mqoz28bWvoENlpdQyiJuTDzTG9w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WxkPgzr6enNhZcEvh7S26uu/pajFFz6jaYDX6Iajess" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:33:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "overseerorwell" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MqoKrOFc/p7TuQfctp7EiYj5xa8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U0fqBiA7T/v9VpkD33hq41/pG5QvSLCPgu18U7/bpG8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.254.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididnteditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MqemXB8KJyhcqF+gND9Dk+qvTsE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X/kATPJGoQkd/M7ZmII/QOUbjaiD8lci4m0NXrR/D8c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.254.114.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:401:3000::3724]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tordom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MqQ7DBU8Ipj9vSSjspjak2jcc7g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/kFbjhuro6WKjiRi5HY31ynciZllqFyd29X1ww+sVeg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.168.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:1997::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rebleulay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MpgBTzGbZ4KfUbK34IiTuQ7k7Wc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ll0VeVQrhDk4DNzMzko4TZ7gpdzyObIiVnCyBG7W4HY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:47:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.147.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 26401 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:5af4:4646:c23f:d5ff:fe67:aba5]:26401" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MpKa5BcwEzDtdoEmgeKDXShUy0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "imU/wVBkVvVAVoWWQF2GWi765ZO3ZHdkaVnuTzBqTPc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:57:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::205]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gangbangs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mo7TqS0c1iFlm02m4hD8rtgTF0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lgf9ASSmpcE8IT0R+ry4qAxUbOnWi24BGJSAd2gZ7ew" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:17:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.152.209.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tweinode2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mog2CJB6VRLS9oXkBLTiIDge/1I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oBJ3fL85wM1PDhFqTXWa3RL1dawOX+CT6Ak/k7qSY7Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:54:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.36.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:ab7:acab::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "terNOicebeer17" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mof3nZwWh79/Op0UA2nKZNL9ERs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YHUP6Jr9+WUD9fgBaEAdRLZaRqU+r6g4X46eCpX5hbE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:44:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.243.218.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8166 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:243:218:0:41]:8166" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Rhea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MoKEdvT4ThXEK0w2ClzY3kw8K+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vmmTUGPsYkWY4Ixc3TxxjHqLkD26xDUDj2SLRd9HUmU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:59:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.131.11.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:800:10::104:9001]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "demang" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mn9YI0OLjshuwzNVwUfYRVqxwUs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z225cukcJNprFB4L/edithAQdkC7Hzkrs9lO2ZhaCHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.115.91.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bouncer4u" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mn8zf5RVNQS6jxC+ftkIOIFUjPk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hNK4WDiKM22lmOBbzAn91yPIjQk2H0/BeLz+uBXkah0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.149.129.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mn31JqBBKciqVbXzVRvEasS8em0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YJf0E5PwfnmjDLp6ZLknHkHbZ+mzTpb4t3m9b+4GpdY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::204]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sonrisas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MnQq1Xw9JD2gcTu239ghGN9XPS4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FdhBbeTLBncugwrJDdqfTgKcss/Hk52yuIQv2Xo11Z0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.204.141.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MnIYYYze3M7khxjG9/H1+pinfmo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cSQp+lOoZqkmqMhGMwobWRuoJQlM3ZhPhME03G6N77Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:30:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.248.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 52959 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 39540 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=93" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex75" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mmi0x9yNMcMP8USAQJ3W1rBwLJ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1dkOwW0RxfxVJH34SbACFbUv07nvTQzbDJ0b/Sucsi4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::164]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MmhTqnjaRn6ZfmBArdDc/4QODLU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fWRe+08hP+Y6NTHJzjk7uF7ywyv5FGNbsp6El689/8w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:51:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.145.150.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1578:200:10::c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MlAX0RlQaFeZDW9XMu0eKFsvaM8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sox8V/BoNhMClsUZC4lJmF/Vw4DyYHFf/NRak6Cu//E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:04:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.232.62.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5679 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:2002:51e8:3ee6::1]:5679" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bixnix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MkyqZsH2NVmWQteaHZZcEHQ1lCE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w29s3nopsSIvU6onqIMfathdbp64GjfWHrZlwzwS8Yo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.12.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sodium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MjuwKmICQYQsWig60mF9nvo5f70" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QXbaN7FJzdptHdHbxi6wpztdqgJLUU8LOtXQyGieF+g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:53:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.246.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:33ef::1]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TOR2DFN01a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MjkAfOH7Ls398gZ98juUkpXcXvY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kZojIJroYsrH6JBZi3Kbw5qLMfiEKtfGig0x8fBPN/8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.198.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MjZL74c5RL5IHovMf66Sl/Xzl4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/1WZTzCxkrKemlXUfHvb6K/VAvtx39xJjwDhyEHC4xQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:37:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.96.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Loukanikos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MjYaHv32hNrtyMpkhDdno5X56s4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "un/6c6k9j1fyrUfshnIg1zI8XDZa9du9svwoWl+cEd8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.0.36.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AugustTORExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mi5Jok99+bFd1zIF/LhMjlrPAqs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TXURYKIovUcoTceJdiZyrlY5nWx2f4HQUTtOZDANDDk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:20:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.133.8.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fbf6:11:27::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BananaNode03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MiuzP0iHIwsHZ/VLoIpFC2jXd/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zLAfsAoJ/KXDRUd9U/8ho0NOKH5sjWHXjXv+0QEkOr0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.231.172.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "windeck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mg23vqcsBYui7vCYvxrvuik3G+A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FRKX9eLbqlyDfTz7Wj6R9jy7NSEvmRoLMLll2zkYt18" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:16:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.72.244.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex93" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Mg1zr2zHiYfnEHiYR7+41hwxvUs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZfbkpkIZY16Yaww2VLIu6YJqfmm7wsNuv4LgstRKlA8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:41:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::182]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "justAnotherTorNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MeMHK+LX/sVwfwnDUWEv4reuSNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YYkH6SmiLIUO24rY6Rr/TsrL4rEUBaAX5aKZmBZafio" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:46:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.80.184.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:93ff:feae:4153]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MdOR9HIN6JbFmLcjaa+IDtCG1hQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8w0TU6oEg0z5bHoM4QUodz7AWcFmE0NZMVXKLPifap4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::201]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Belgium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MdJwo4UF1L+7yr9xfp+0vKbd8v8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cH5xKCfhg1ABg1+Zf3QJxO66/9b6WSOGZ5swqIiwwTY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:11:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.128.133.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt61472" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MbFWdhe7qN8HoSO0Ff7tp7Ihl2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nxiJKO/jrNp1EkQUoHtMfMmqg9KL4EAEePRIFR0vdRQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:04:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "XiWinnie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MazT9GKST7X6W9IZmczffuf7AWI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HmN5GgEgYE1jNNirSF/VV1/hs/LP0TH6zgALZxTb/Mc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:05:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.146.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:6010:213:208:a2ff:fe0c:804a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MasEowgAkf7Mr9awKz1Gvp24L+U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GLHais/cEldD0CqsDYEevixZMYqovwjQDKQiwCui5IE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:21:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.104.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:1041:54c7:a2ff:fec2:107]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notraing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MaD69IwBUC/6wrMX82ll3xsxEBY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "et+AxItvZpRS8V+wDbvHg8T5Tc8sBk1/TMeXSXRE/wg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:48:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.32.129.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieditedtheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MZ5QMq2TuJxB5ZTrn90VNq0UQEQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n6sJhElGEMi2X9MN1xR4pXh/KjrA/NOy6tjlNY+Aa9U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.41.59.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=850" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "strongman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MZbdmkMRkr6G98js8d8PgOzGxok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h4Va1HrPokecL3jK+xR2hPuKZpJN5Awjg9bPKJkDyng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:34:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.82.137.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoWarinUkraineNow3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MZZibUdlGuQTRVouFTVz79AN6Ug" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JoXvmVR9zUdEFecGnLJwIHC8AwhHsaGnYfzgiuWMpaw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:16:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.152.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "redonionring" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MYy3/A6uuSMR61G1t448rUXrzyE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e6LPwXZZpa5mjkynuMP8oN8xgXITsWGo4NhwDxHntis" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:10:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.181.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03:e000:1fe::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MYytGgCzPS9llYIQsJuJN4Numa8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5fF8bm6GAZ3fdCey+uoobm10hfl56owUpjHVrX7E2qQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:09:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.39.86.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BSSP09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MYMtQqG0fpCXBwT+bXIQ0l+h5eM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7SCo3ZfMlCVjoTUV0oaMvOdjKu7tNawn3WmoWHhFwUY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:42:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.235.29.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "doudoubridge" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MXucNLmYATK2jcqr4JFbnFZTvgA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wg5Y5sbSigElYV7C6RcYUDyuY8g9IYDjiCfh8E5E/wg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:07:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.65.165.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PankyPL1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MW3kXv+1NnHJ/VPOCZKVKEZwmik" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M0kyLroBr/ySZehLuQhLJIVaGTRiyipSWpY+3nWfqBM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:08:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.136.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blissey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MW1qvOpSJo5he7mS0PmQlCV3C8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SZDn5Gz7QcuvWuLTYlJLoEsDCsyt1LtLGUdj0u/4uo4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:50:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.130.113.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "atrip" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MVH7QZ+rD9hte+T339Yg6Z4QXZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uJvR9QRp1DehpB5lIW/ePS918OQ84JoL4etWVECg3KE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:23:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.41.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:9cbb::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueOctopus001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MU4fS2dsFeej2tnbGVlfACAoI+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S3/1gREGQO2/L+jw4E4/gxFo60SSFkouX/e1O+ao554" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.59.118.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 60000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:0:d0::633:e003]:60000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mulloy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MUGaZBiLyAcO6J887mqpjqrH6Og" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x1Y+hGPKRzaWcocopuCgR1aFc7F6C3V5LLycgQ37qAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:20:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.249.37.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor3e2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MRpFM/eiQV9CNGpsj6d+b9J5WUw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nqNSGG2LpNbJZHJ8l7bEX4IAhwNRsw/cTsBRuIVgjZ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.230.208.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:418:6017::147]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MRaDDFYHlmdHhdbnkAmGaYFx4VA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zoZay1qrjoNA9sznfKNjHcTx7s80Lz8KvrOFV5wM0es" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.140.141.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e3:ffff:198:140:141:0:51]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=95000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DebTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MRZkUauh7KfF+ltgUZrkXHYAEWg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IcwymbOfrQ2Ye0ZhSwvQjCKdcK5LJM8mzFZbFoim2TM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.18.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:12d4::ffff]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PenAndPaperIsLife" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MQm3EuHuBAGn4Sn9HrEYS1TBCaU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CsIfhffrlZJDs6OM5Ivug184lRy6vDVQ+gVneD+6NRI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:26:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.0.64.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tainish" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MPzIKNlOhKwWmDR4gakUmYNjT/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VVgTdjZXghw5FG4diEXVBfu9f1bDifXBUiz5x60aSVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:37:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.193.10.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "agir6yah7Bahxolooqu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MO3RUE13+hVbP/D0nKeH4PJKqGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JKhxcVx8zNg0aupQA7zJUpGhcmxBktFjJIZRzxBPq+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:31:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.232.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:8880::1832:b5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RedMaple" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MO1q+XAZwdirsVAmq99w9XfPV/E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CCLoc80mRH8/7ucACzozzRyghIpmBjOBhRdT16BLv/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:15:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.108.51.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MOgBFRImDc8ET3OVNxlH9yDKUNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7gwyy1OuVzHuXoUdxWrlu8oRrE51ZI+Ff4yL6EUS2W0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:29:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::13]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FuckYouPutin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MNkixS7+7IruahB+NtzcZkgBLbs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bAtdTTpI98LumKZkrWfB44QWNyT4uevsWIX9jLFZEd8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:30:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.159.69.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "savanna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MNRXMXeJ4gRJy8EuAvVlj6I+C+4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BMkhDmiGli9ZrgJDrbMnxHHKMEZUFxClZh7dGSqbNis" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:23:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.17.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:150:1141::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MNEWIbxJ4totqx9FSyu6YGtDhJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rL3Iq3hThKMa2FQZ8gNCS09UtYc+GGm7z9vz44St4aI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.254.45.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex61" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MMVcSW9ce5ho4LxjSaHNViPwt18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Lf5h8MSHzEzVQ+2JEIoGuux9kW1aRnFp8a2PE77HQ/E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::150]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MMRyRB2RCovNpXHyY3yAEZ520II" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vNmPwHGwJLEs/Sc4biHGPezeKzh9lIWeWWnydqFxH7A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:02:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.106.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:102a:d84f:72ff:fe76:7178]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CibulovySmerovac" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MMAuOSb7mhrDcCL/X/ASD5DvIjU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vofsDhJi1FXVvt9dF0TuKRZ+OXly70cUsY5XfEGR1pI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:08:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.74.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f292:9768:4707:313f:88a2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MLKcn3BqhGa/If2QsEGe19WGhlw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dAiy5irthavxx6j03J35sVpfMpjs2fSaHmHJNzABLPo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.238.182.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI19" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MKd7JPJeyyjSdDzYrUIuXFKu6Y8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yPN6z+aTZUL60Og1JNd/r4t7j0l9SpEEi2ttT/ksS78" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c:4::80]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MKVcVUL26WM/qxpx+FER9cqpUvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9TyLfFk8y6DMbmCtByiAWbzyg4uL+zooRJV54lhDsR8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.14.97.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:2603::4fe]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=85000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NotLinode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MJbFT1P3gYHJpTyVDUY04X4ledQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xVx2+kLT2ydjQSyPxxG94842Dxt5Fx+TBiDQuoYzRNk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:59:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.86.13.206" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 454 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MJYeUKYNdEWhGZte6mZOYOos4wY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UertOhpbwEwtZHluw9MtdHpmguREEcIJWM2JDYf1Plo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ratscornRelay0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MI6irWnIfUS/tWHUPf6NeSnGyak" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pYu0W0M5NFdynkhQrpXcay1Sei3nAEFcn5DQtkvcgoE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:54:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.210.199.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hrmphhh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MIKKWtDcfd1pOFKb18kB0MDzXE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MQRLcD8ABsZFVKUEqwJI7kD552MBFkXt9BLvo7O/Mrg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.230.153.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BloodAndIron" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MG8iOocASUXqWL9/TSNvU6vAW/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ww8miV8hnhDpzeePLzn6374q9rwpRt5ePVrXyDN8Qh4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.99.35.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unlimitedrelay085" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MF/Jr4GOPPDWq+3Lb3X+jeGLxDM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pyKlJ6xHj7x7pRIlZHyezLIx6GD0YEXB0ADtl6/lanA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "101.100.139.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "geidi23" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MFt3N/XlXYmc1Z1Dbr3prnQNs04" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FkbbXI/C2MClzJE1MzbJi92B/KnoUxd0F2HzoUmHevs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:24:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.244.91.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xrl1tjdevde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MFf4rl8+KI9mkpwR2Cn7PvuHmHE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "008ihXMxscEz84ckxH3pWkE47edTdqCKWkDmiZ8toyA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.252.122.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:2500:571:fea:9235:3f0b:4136:5142]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "green" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MFFFTNqaBkKIMPEn3fKdkJin+1w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jdS2tpUUkJrK0Rhe7CZElCBZz8vOsOpy3oX+IJ5Nzwc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.53.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stubbornoxenoracle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MEIptvDBCkRl9bMtCAFZyzYP3RU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+436+ACIoBkJYZFvDt34+4KsA7oB4vYHFvYUNlmpVE0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.24.17.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QECm2r2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MD4tp9SlhRXiS+VQeEIh+Zy077U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aSPX+kIJnsWrwNZ55JKeesnMBa7U8m5HaY0TfxnkWEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:27:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.175.14.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ukko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MDUJq5EO8ge3Q4wnQ1xKL9V58bE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WW0irVUGrf5qrGj64RDVEHIriW7CTw58zYMgnvCuGgc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:53:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.33.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:2145::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=95000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sagfreundtrittein" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MDP9GLvWWMXs6Sb7F9Imm/4zc1g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2GgJFpf6GcoWiaIfuYi40K3Bz59iitWs0LXxU/6yPbU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:28:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.166.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:1046::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yrl1tjdevde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MCbD5Oj37iLLWvEZbWVxiVfjdo8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x2eBAYHoObFoo8xAwy5SaNl+3ahj8sNyFrGQ5gc+ejM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:48:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.252.122.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:2500:571:fea:9235:3f0b:4136:5142]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pinguin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MCZCNmW54MKA2IDgXqBkM56SN70" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "87p//kspdE7kh+jNR8oK5BXaP5lAIhfGiu628D7K7jM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::71]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ssnn033" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MCUTIC+2koi4t1ceplTxZLJmMKQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z/kT927E6r4ev2gdavkV+OmVltyhhkwYa0OHp7ffJGY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.109.176.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MilkInTheTea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MCPtlQYSaFb0+ACf4IMoPhqph/c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xAig9X0n5p9I6TAoSWAniODbZP70KKTLWbTOxr9x+Qk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:49:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "117.53.155.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xDEADBEEFCAFE2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MBv7/LfwCAR9kXQwml7BiXcl8NI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C5CymLFqXUQap+51rXlf0feGhWUUn9Jov6f9dJ2T8rE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:4000::4d]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MBsQ6/Puf+ucIyZuQEpjtpXPnSs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hTbGciCHiZ9N6gM+LOZHEkg8WHFO+qzX8KRxPclgmLw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:47:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.227.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "funkolando" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MAyp4X0lC61sPD7mV4sZNJO/Ato" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IbJXfTKBcLsMcVZFi5KBxHpwJjtbqKBduMR1nkVhk4k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:36:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.50.212.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:7d0:4dc0:7511:a0de:bdff:fe03:1ac1]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "barabasz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "MAt+1U/iHYevVej/HUhoYGkXEh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BgwcFHOXRTKf/6ENyUxIhDIYYNyPPj+uRnsSDLx5Fg8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:55:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.109.66.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HattoriHanzo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L/mQ4nyJj64Gnz9psLqd8lSnXWQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jdAHK2gxvRcbVTKfZewrT4k0iRhzwp0t67gDBSaW9/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:51:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.114.0.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L/STT5EZ43dmexP+IR9ih04BIKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tSlZn+t6ShQQ6AiA5qt7FuwjNeX1hrJ+/8Cffbly8vI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:29:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.252.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra62" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L+gcH9RaxZMZPwTfeBmAJX5LzQM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vMh2idwotKWUHwsrN36P90DHoHQEdcs02iWVuZY8hWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:22:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.77.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myzwiebel01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L+ciNmh/cem6mk8PZ16AayBE/Fs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Zbf3TcxkUfiUnuwhpCTPWxeWyqk/j2rN0L5RDL0vN4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.39.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:734d::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndrewRyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L8vyf+vcT+/DcUxEiFrNg1J5HnY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yklw4lL8y3srlY0gUN0yiHzHpPLnweGim9MnYPcXQ9A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:35:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.208.215.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1214 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:1f5::1]:1214" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who4USicebeer36" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L76uxLCQ3cuDngJR3YX2J2DvdRw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9WdJrSrjjgT/3WB5A7A+d63XdbcXLtGX8WhTEmOjZuk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:48:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.190.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8014 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt29963" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L7uOVQ+kgOJxrbTeg1zIQP8gXEg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5r6/NepFPYyzMESMOXGt3x55MvUofmvR19qEQLLwCC4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tapiri" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L6Sz1GCHZaNa1O9hwC3IiXO//0c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dQdva5C6Hs7K9ZRMIiL+z+ywp6m02+cHjO+gsQmhgok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.132.230.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c010:6d96::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dutreuil" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L5r95D3I4/BYAzBMAb09vzKRaaw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VQ5aod0qURFCaupSK+3OJuO/7N7Y+qsEUYlnUbJ4Bt8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:07:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.152.168.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FireMateria" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L5joU6VwrHp5tAgjZLeBrWdwUHQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "egnaJQR54l2jJYY2U/UjrGntT6cN6Z9TUyZ4/1LVioE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:06:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.76.227.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ValThor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L5Rz7IOaA2sVQBtD9cBqzBiUYuo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b+Qe7iTNtoqEEqHMboIrCBsHaDc85iJMnFEnlD7MoIw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:47:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.230.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c024:c001:207e:878b:2a1b:d247:f367]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torexit1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L5QxPlbEUxUVFw+jQmkjcfl3tVU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v4EM3U7biIFIrYZtyFIZxEST23h1ZlHqFJu3tbaIrYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:00:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.133.0.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2044:c141:0:1:4713:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex73" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L4HaIqZJ67DM0gqXUnIH4uhB9fY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b0TrbZl77HqDSEsNmP3AqNbKJF6PVpdmfTqsrqmCL7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::162]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ATLurmyivna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L3HPbis0fbhVx5qoRSXL4OWYcZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U3pev4nsv9yw2pzVYrIaCpCYArUsPwElc7HdpDrlEL8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.184.215.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "haubach" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "L04ht2Hnn+wvBDW09gjJEWQNQtE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O4j23l0ahQXAqEpb8LzQ6heki0xCp8oGtOOLSW+xXZ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.245.194.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "YoloMcSwag" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LzOoNMMhbo9BaEtRFKer5o4hazs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lcz1a0kkDGBF1eqQc1YX42oiMtcVcjrpv/jMD/kUuOE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:13:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.78.241.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wut3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LxG0KDF6vUOkIbXG9n93Oog1Tm4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AC6B379S2dNfdUfZuqdClreSqZTrVJTTK7sxK0kOwVg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.37.137.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::1a6e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SanMarino" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Lw/LeEA5n7J7d2wpJnFiEdi59GE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ebpyIn/w9wKNQqw6qD+bFy6SvM/q6HqvZlhJHuECrOk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:43:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.88.75.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=78000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TOR2DFN01b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Lwm9bZotWn1tJsF2Uc6Ozwt7olc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aPiZLeIHTwvaUFmuvqeemiJDLvZ/7LvhMOyBPNg9pEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:57:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.198.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Lvwri8ckz0NcFAZgh5Nr58o8V6M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BMBvpaWSgFmLoo9BJ3bbvlO4Yr5FBeHXtt2SYOUExwk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.40.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:5c:24df:84ff:fe54:82aa]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doughnut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Luf0lyjQP4vA3B1nVYSZKQxfCf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fEnjhskl6yaT5g+Df84pDxUEw5y1rZXpU5PG7pxY5z0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:26:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.248.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:797:4638:253c:c3f1:cc4a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LthlStG4wl8+uDFWsH6jW+YTLww" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/5iXlreMr3iMxH2WWEJr6qnbcu2tFyRgWJTNeiJHDDI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.147.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:700:482a:2cfc:bdc:9917:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xaeloBaez8ae" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LtZkcoN2/TZ9rAXQp7W5QuDBtN4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zd4dTGMgnpUWubA91w9/wLK6KulWkmtEPmZLvAmOwTc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:23:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.54.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN27" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LtTSV2aXNxPrjFaikL8H4GuFvxI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ph9P6oHgoUZeEI8XY4qHMGTocB0s2gJMH2Al/4GGdOQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:45:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e650]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LsNOyotc2xgd7WlI2DIxmaa71ew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fyu0v4ZSoGBSR4+aRkmDqoVVQRAGq/No9FF/q2iBQRo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:16:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Alastor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LrPCMBgGlKHoSAAeIPNvdqIocDk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0dvcCa/Z2aRzj/bAgxCsF7vNEoWvIXsQoZ6g04X92Iw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:31:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.123.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:30c6:100::dead]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CHRelayOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LpoQTXAPn43kKMylIUPz9SDkgXM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PF47ykFRRss0esR59EX8VSxmSrGB929Y7REc+3IsdzU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:29:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.221.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "buster" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Lpbv7ZQcN2a6Yq/f/xYyiHXETF8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pEEco0nVIwsb82LFEaxmJWxhF0gDm1DmmY1/nztF1KQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:23:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.191.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:b58e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber43" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ln78+bvjghHckLu58y++9hKsxJA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "edui4o2n3edRzUXeaNEM6oZYnh6QFMP2csjHb/NCcik" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:08:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::22]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "carpsecurity" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LnidvuD1KCNqEBspTE1wmEcsOQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MejWQKgoRlxJGmgp1regXsxpVD64lVSGdkhJrd4s1gM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:20:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.226.36.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torpinkbyte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LnLNr6Eq4VR3lfm6/0AvwWtlPOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6zBGzsA7QVYf58xhqcXF+S3kE1ZsV60o7m0it2pQfE0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:32:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.220.220.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LmWimdCsNaRpKUNRAVK9VsT/Bc8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "60nnRLdwVT0zmmUJ1mlSC+xfHLeHyJ3jnH1VP7e6uq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:35:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "121.200.26.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=770" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iola" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LkW+JV05Q0OXolNLhZGQRnRIh/E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8V6l9itp8AFGAqkbVTWUxV0j7fuGSu0d2MVjK8PoF2A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.199.7.92" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:908:2542:b500:d6d5:a5d6:595f:ea37]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sarkany" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LkJ+iwcFhF9xSD/ejgY+xDTLFkA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tdmpVXA3ut8xq/SshG1Z4e2UrSjls4JAgliZUnpirck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:59:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.0.118.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Lj5tsA98+b1159sZl7HdXnI/MHs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g1/7zNVGA9XINnEb+RpW6I8oIqcStg8aphjOjZCU6RE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:56:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::78]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ferrarizGonzalez" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LjzFWtV9An/GS+nIdWPH3YF9WBc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/fDeu/wMqLKKELspOCC290EUcSx8zw2tD8vEztSZoBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:04:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.154.110.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnonymIMXMPPNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LhaD6p2C+q/BaO3I+/tMOnxxuks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cfeb4lmmkcMRAEESEz8EzOY1zVD5STtJJPPyckYb+/o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.162.251.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1a:6a0:8857:fcff:fe0f:24a0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow003" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Lf3qXdQVuVWUv7EtWf6EEWf5S18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yQvCyq9vTf0y4GEPw3A9IWS7i0jH94uM2xVyCTGfj3Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:10:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thestudio" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LfyiAvE6kPkaggtMMyH8hH4mlIQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3UWLET4Q3fGjltVz+o+lr23VztSA3Uu5R38Ax6cb6DA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:14:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.219.237.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "erbridge2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LfWGlMGFJaSJL1FNAQObz0SgVDM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kuGRr5XFhvbmm/c2VN8v7+XYyc3lrnj/kN/k0ZzOa2U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:13:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.31.211.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:3616::74:6f72]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deltersvrAnonServ01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LfQtZiQme7m6+9OJuSr/91JTsa0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+gSkCxhWjNIerwWe5XBz+MeKAGD2QCXiSVoZQA5Jr+8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "148.251.79.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LfA9exWNri6vdgeHdUUfF2lQZFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PLW56Y4Q7yZFdQYNbyGKcKlxob2M6f+qWd8LUrJ6qSM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10032 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::32]:10032" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra29" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Le+AEHcEcjZ+sgicoKUKF7IR54o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6pZQBACDdfznrqUfNy0W0pR1BmP5lHNiFLfs6yeyuxU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:11:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Le1dL+/M4V3Za9WXE6UWMEyb8yM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FwHY8qnRLwW5G04hIEzW0+gRoW7mbNEyPSphCVs+vl8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:18:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.136.43.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jumper987" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LeytWR3SJrN4lpTdpvCtyfsNjRs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7oLiHioNxdm6HZqWEJ+D51C3p8DagYaAUx0emZN4Dqo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.58.106.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42819 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "avarus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LdvBd7SXBxAUUKORD5hB1cfBt/Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5vRVOwkZXojJC6drwu3SAj/EY2fL9bhxjOtMd30Jzjg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:10:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.150.108.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:1fc0:4::53a9:a532]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SinbadNamornik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LdY5Sx0ypLXxXOdTBAVa+RYXesQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iGJaVXIm4JoBHH5c0bj38xluZj6M5JQpFH9BAz+JUF8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:49:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.108.108.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "a9Exit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LbipRoJtDLT1w6gmRijdDxb2YS0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RNZTDogqj1lpJy3gJ8cMOEnvmLab2J93gBUKgNCYnDg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:53:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.74.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f63d:1:ca11:911:1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rwxrwxrwx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "La/mepvhEZJq97c9fao/f65lptk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V+L5qZJph/ZJ+SWHe09k5LYmLCxg1rEOBj3DCDRyjUE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:45:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.120.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "just1small4relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LazCbx07pk8y7rQYW61paoi6gy0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "28+vbOI37MHNjCjHHSlArlcx4VhFRatJ+tPM96AHkhc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:07:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.21.71.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VoxBox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LZOPGer2YNkCxla15gAvObRcS+Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9CNOCfouMu4Xm7nyjH1CcF5umicbNdMhiUHTM9tJ7/c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:21:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.135.244.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 24071 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nCT8d6e5bW2v" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LYqQf2HK7UgXCWO3a+T7DtM+Xog" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q9lTa/69IHUEQCcvkj8AMrhBcn8MCUQHcihOf1f7yC0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:39:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.133.16.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=850" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "poisona2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LXm8pSrjdU8pmnGZ4F3o0Dr7WvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6DDg341JKrpuUjtZKQR7JX0TOfNCMpl1b6d+2mH4hQ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:42:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.245.103.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Untamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LXVcAJUfGrkZYrgLCS+nqGCgYck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1CGJbjTyPlg47DXnmx8AblHWu6PflOvrA93FlJEJsuI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:19:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.30.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f29d::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hiboo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LWyTojNjaNmld4QW/U3d2X/zfUA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c5flK88J7asGPqNSXFTXos8ByQUxbuEE2vYhM/pZyoA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:50:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.39.86.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:98cb::1]:110" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LWPsJMt8p6z7wUOXUqVKkWGVBn0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zxrs7KvkM+iFfU3gOu6pvVMnHGjiK+rzpaUg6Sf1OZg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:44:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "115.70.167.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BHCARM64OpenBSD1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LUpwxntNZjkX55Kk9PNiL/uAv+A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "byayNJs/BxiTw7mq6Ew9Xv4r+gCDs7ADmEWJTowuK+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:50:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.104.120.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:3000::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aanetuk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LUfwOfBO7APqvkhMwBd5agq0gkA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dve7TyHOEHM2lD1xljad7LOkycU3lIv5RPcB8t7YWag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:11:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.155.5.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:8b0:1628:a008::aa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LUdn8seP3ETm+kEVL5BotxfNIz8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "znTYsvIy+meBlgbh4iZq0mL7HOXOpBS+oYh8BU3fmes" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:20:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.9.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c04::f03c:93ff:fe47:7f1a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MyPalEdSnowden" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LUGKifedtKjmWLpUn7uXTR0i3Ro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ORLFxm7dY+CWmqIpj1yxa7unmymzMHtvkLe15t5f2Ik" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:32:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.60.36.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:33:6e3:1418:12ff:fe82:4abd]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SCTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LT0bYv3ecxBHIEN0nvRJhh6JaAU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sid3iK/K8blzxa7WZneDauR2rU8MRZx4IEtlDXGX6pw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:02:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.72.121.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=970" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "slarty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LSqFNfoNk+gWTxNmkUiTaEGHEFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iFN/4xtMn5UkwlPp3c0BcKYW0MGywRaI9sm7jdnlZ70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:48:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.33.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:2:d0::1535:9001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra87" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LQvp92guCREaQ0H5S1WjUA4BiLI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0erYo69FYGWxMg9Fzzi6UmHEN2Tcu0aPAYGvWLIMYmI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::51]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Computer0111" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LP/erqmX50Gn6FDNyfHpgV3DZ1k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HSrd8iibmPKbIROI4UGpWgL+gn6iLCEN2BuRYUiPYv0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.148.54.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lodrich" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LO/1BuONxhggL70i4P4gsBHTIEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9qjFXkEN5yOC87iCphjRRUdkCubtgfusqSHKrRK25r8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.253.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:8235:0:48b6:8fff:feb0:bb1e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ridin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LOm+H8iLnQ+gPzh8nk8AC11LKuk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cfA1eL8Su2oxxfanEqo+EmdKFWcf/6wYNN8+sXaGeDQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:36:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.129.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedel24" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LOlqih2gMmZMkPV0r/vs4Ypujfw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d5GQI+e0PpI0Aa7ADByztSus42ApQ3o0hUOol36Yd2c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:58:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.163.128.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:237::babe]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LOfXLQIV9NrjN0qLg8y5lPT+c9A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IKFSJYisnQOEUwRLjp/PhgrXtrNP1KQn54pyP1Go3E4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.133.0.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dairy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LOLe6DC5VO2jprtX6nQg4PXuPBM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kjuyerX0/gxnyPrBsDknpJdYuASVhwxFBHh0SNkMLjs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.180.230.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2021:7703::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onYourOwn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LNVHTjPRJikVa5L71h+qsi0HsPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5IpcnIvMPezGUQR2Asa3qDkBfMCHFyO+Z3cKU+YyMKg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:30:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.241.106.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cadory" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LNQ7LjxH7cYvzfhmPtXbUHv01VE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aZwSP/j33zj/GHZhdLpGumXvxSnq8h80h9Fa2mH8wEg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.200.169.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19004 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 4447 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange016it" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LNMXxiSAO3fq0yyWOCiEsMrU2z8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9DKQh3FxWL42ohR28MSor2SzDgoGW3baCD5EOhyy1vY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.201.65.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=760" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LK/5HQEbuHZgucEsQNOa2Mb5sP4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H4dV30ejbDVKBJKnuLllNKMxB0kt/l7L9hOJvKW6I+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:18:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.60.166.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LJHT4FofxcvHIHVeSDbAi1xuBOA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CSH6KY19UcmCbMKD5ukOBzX0PaiZ6JzgH4cyuwSh4D0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:03:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.34.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:10:10:54ee:a1ff:fe91:5955]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LH++Yap/PGBpEVXmADCwMb/MX+M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HT/KwDJr7clz9s4OX5iEOmB+vIwU/qx52Q+REbKXcVM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:52:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.192.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:6f8:e466:27ff:fe82:1b2a]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gondor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LHYrZFXNMvjV6NgBH2ufny+KaG0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PkMopPXD7hgwqmzAOJMksLpKmme3L7Ivy2DGHSR2g5k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:57:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.34.0.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torstejaude" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LGcACJPhhG1D/ABTixk5TNgf8mw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K5Pz7iWq6VQnxgtQMekTUoZFAJzTms/oYTFO+dg8YDM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:50:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.116.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:141:4281::3:fee6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unzane" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LE4VzUDuPS1vBi8Erf6bhcjDxSs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "D9afpFQHO368AAM3OJZumVRHCQ5/SClWHxg1Y7nN76M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:44:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.105.220.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:b480:fff0:6::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv12" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LE111mmf0SW1GJ7Qhqc4P2fXErY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0mmUqxMKE10iz50Xbx5kmtGvUWiltXXJHek6IGcU5fU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LCbLrKs7gxQqVGN8ow/xMMm9Mx8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WYLc5syukdtNFys1RCrHJocw4S8IXIFzIcwn36nG9eQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.187.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:f:9e3:c806:f5ff:fe13:a35d]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LBtTVdFzOTGLK20S6oXfPaiH7II" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CuJ7ewUOolCvxC2GOB5J0rRIyk1vsPnWu3rqG7Tzwwk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:53:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::200]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "razor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LBl6WR42pX8zTo9+lORm2lItGXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rkbuie9OzPSo2/uKXgvfrQSw7ciVeVvzR6Za/DmqEfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "189.164.166.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2806:10a6:8:f87a::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "history" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LBOlTj6KavsY4N5YkOWwiq9bDzY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f3P42v3umO0awKpWSBFWpy+7+MNg4J/Cva4OLO8n16k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.123.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fluttershhy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LAaIf1vUUdN7fh40uUHu66QsQnU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6QYmXJOozZeufabOgXW9eY257W7C5TfAUjgW3iUuyQA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:04:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.182.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LAaBoVNz1flVd75cum4yNX1mTE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T8Zpf9ND86e2CFf/Gvi6lORa3GSZTe0D1csHwdb/tec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "LAZHYKpmV+LFdd2JfCWIsXCj/xI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ATkzhUubAWfagMK8FYLQarwCtw0Ph5kMRIIn4jX0FVw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:06:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.187.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Diesel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K+dTmXh7Zk3dGqis8ExEEpgrzZM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7CS8XJ8oP9bgVx1xTLM5Px8pZU0z5vzeZxbLi9/A24g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.111.143.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnivUtah0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K+WX0KIlWk6PRMv7Emt6ehKpc3s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7Agw0CHvxyPb9/BctCq1zRzzy/utySVIs4Aap+3Jza8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "155.98.5.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anonymous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K9QNYbMo8/yunY03AyziaV0FK8c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nDDcvztUad3y2VojopVITV7FE7p6YVyf4ZqdDh2GHHU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "123.194.142.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K9GTbgtNW7YVz5mwz/dOrxlCaIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5GxLYViGLBHizUo9ZUsZYJmEAlX9LfTQ5KZRMm1KtIs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:27:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.92.109.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HailEd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K8uYfITSLMFYNuLQoASS4KbQUAc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qu1r6kNePxIU/SmFUQzyUFZZEpQAKByJwJI0Y0c1qQ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:38:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.225.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Waeswynn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K8oKi1dZ29dkv5+l0bOu6ddNK2g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iTRrDloxgBCE6nNvRp/pBAHqJPMln9mhL01GKDXF7Ow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.172.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zapotec" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K8Mbc+AAC2aYH3c00rHywWwn0Ls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6xrJRe0DpvoLXO27e0jmTg/VbmQTA2a8Wi8eR0Ha2rA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.109.16.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8888 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "carpetor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K7m+J7BhUvXnV1u54wUKM9iaC2c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DHiLHUkCJO8FTkI/FOy6oi5Rb+Rq4ShasFGm3kDt238" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.199.152.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "finTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K68JLoZnwAyj2WhsdtjsPMa8fFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "up6VsOYDGb0xYkM18UlS/8b+l0Cy9JRZ22RqJCidzQU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.15.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:607c::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "storm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K6LI6WslkOEHKuzivbXEiSG/hRA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a2zRGmt8Gg9vbikIvDPmHrg+mDZyCxqmWJSUsr3XU1A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:38:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.250.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "waschbaer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K5cwK+VcqPMUFYBcHNKkebLdFIc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lBtY+Xj3TMMHQt4COvb2QVHxwr83k2LWMvrcMe1O8oM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:08:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::74]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LaserSystem" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K5T++WjJlJ/S8Q6xVJOElLL1BSc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FSDHguVzUDBngC9wWKDOYINoXu6d5iVNubRSuoQCi30" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:34:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.249.231.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 666 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "81e5b3091a636b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K45wFMT03M4Axz6FJ4dbwU46noU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ldleKnihhqjnz852MPhdQFZ9aYb7uRI8WiMOrjpTvXE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.248.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:b11c::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torbogen3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K45kKBH/b2EGAPJwOrWeQvuaAMs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SZO5uB+tR6yR8OpIczWvG4nJB0HdwWi4XViUXFS4OHo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.138.230.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9003 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tauro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K4iq0uYB5W5eroK+w4qrDKbvIoM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R9laG9qQUaiDAXZquqV+zJ+tBJMUJ+Slg3x1JreX+VA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "189.84.21.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1139" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K4EKqBoDbgH/x0ppMdu1gxabt/4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RZ6w5eGA+x7ntwoHSeq5WvZUB3j/iXI3H6OPxgSzCkY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:23:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11139 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::139]:11139" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VmAdmin007" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K3/R/Yy0JIgNSvBRT/NBMaB0Cc0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eJKIONGjH6bQyIbMduAov7NjqACPCJSi0LQtGCYn3eU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:13:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.23.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:150:210c:1::20]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CurryLamb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K2dANQlu4Gp8UqeGjBfascycmDY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oI7Kb1PjEqHHqfGb2aFJ3WAwLF/J3znTn6xX9p9BilM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:47:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.49.56.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2404:c800:913c:1522:a2d3:c1ff:fe29:3e87]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kulsortalbino" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K1HAAjrRcirFaacGKbFkpz/nx58" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KZGd+IHeHG4KimnE3/S2G9N9yIg2MrPpGGuf92EFLfQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.143.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:91ff:fe1f:2b38]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "405test1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "K0IJRBlTtM7780fQ9Lycw0M0zQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BzOes0QB7pPGokEwu6FI1TFttde9408rUPseI0oMBhM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.12.219.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 466 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kzqsl7Jp1Z5tZCyL+xdO3RN0HDg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "krQP1Ad/kIIwVhHseZXotLgXzovlAVXwadqwiSRhsfs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:44:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.253.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:1362::2]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Stormpaw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KzcoPKPBQLNautRiioc6hg3f8FA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UAWoNFLJa2GEoyh2iminPiTpX7FKUHprzZtJcu314M0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:36:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.7.33.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RunningOnFumes4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KzQJntK8WYxHRclshz/XOkRWRr0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EaFDqooY2RVbu41QlO+xjSGXEfpdXAKIxyuY0F9mGAQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:45:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.82.219.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MrTerence" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KzH7gn1M6nNLn3jBYTfP1viuu3s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5CjbAiN5+++WcJDPc08GgVevOO01rK0jANXYqSWOY7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:30:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.146.232.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KykL8WQOsKintjl7tpyCSJtduOY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z+ypQuF20Ki+qROZSyE3lOi8b7r7cB32aUvMjvnVkWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.73.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "noWarPlz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kx/yHjC6dfQ/aW4GNEicgGQI4/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M8RbXY2DtfNiY2CIz8inpPh2fQyTu9UQyJ9KXgHQgQk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.101.228.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "calu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kv/7RNk7LwZqaFP6GZ+3vq88U9M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JEY5zaLfW/c75yuDtULLXh9GzPQxBwPGXnZT7BO1z98" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:25:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.243.6.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:41:216:3eff:fefe:3bc]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PrivacyNodePDX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KuvWCIxeRyoDO5Ht3AuuFlGbLjE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NTs/TUn442Jk2Y4Llw6oiQBl/ko8RAta85sVCGmBbAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.182.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:200:1bca::b00b:beab]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KtgvOWTTJbP+L/dOmA+wBjdO8ZA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "atXgVqZfYxNJOLv79vgDg5p8YGalR1q2UvHBFvKe6tE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:01:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.134.147.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "misInfoCentral" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KtVVpkCM1Xfx1zlXYOc//ps/vgE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lvjMah4rbe2K4YbHOY08LYgUtngGeG773kxqZ98P/e4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:49:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.187.5.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Brandjoch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ks7A60+ScpuMoiyGhUWGa5UpQxw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T/cbbNRmjdhJEgoIqLc6t4Caept69cUaHHMMflP23WA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.34.27.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorNuc123" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ks6O2FwpcW6tc1IIN8qPTZ7UvxI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vAMKX5nvqRGdb8AkVD6fD+kuGQ+WGoITnQxILZz4zkc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:26:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.230.41.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JustAnotherRelay4U" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KsgCqun68sn2Pa+cyc1DhcCpUkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KrXfKYX/eIytg4ToicM7xTUKe7EleVOTk13GwrNGHNY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.239.72.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "anoncicada" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kr6KCdNAO+XPiW936r4jdiACp2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ryvrGOp80k6AA0Ba4wkFo0tPN8tfNHaphII+UBahrTE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.45.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3302 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cbc511" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KrknGEztGlG/bkimfxhqVnLZNQo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q9USqYMhImTKLW/D9gyn4m3NwOa0+wCK5YRFqYtSrUw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.237.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2402:1f00:8100:400::7d5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gigatux" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KrC5HM8SZk1dlQg6anuHGRjIz5w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lcn30J2xoS9/mEnf2x1N4DYZRPhGns6phOwvriCf38k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.113.128.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LoschxzAngerelays" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KqrENPL61dsww9s36PLCKjGUu6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RsHwxTBut6BIMOe9RQ/ZtQ3Nz3fUGTaGwBnOzoIIdgI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.76.168.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:6001:826:5400:4ff:fe23:beae]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "setsun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KqX1mPmhgS8BzZnjtZu4c2LtdDg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xu0SrEmG67tvfhXay9y0cOKCQy1AJxDTlozgjiWK8Dw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.200.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt81678" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KqB0mHmqI1fVgIRVtoScpUC7hYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+XZgQZ4aSz71qkfqpLHFGCGrsaLZnQnrVkg90yqLw4U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:58:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnR10L2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KodgnaG0j2jjDQmTg4Em0BWISrk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z5XWNAt6uSxbHF52yYjQAzuq5Db20KQlQIIrR4LIVMo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:26:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.20.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tesseract02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KoLf9763tCadTW6uOd7Db5ghQmg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nCQbYJKRIN/umBtP/FfoMDRU4vBt1m2066VP4/DstKM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:18:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.238.10.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 29001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "clicker1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Km2eri+zGUhsXjv1zA+D8Gtzzg8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+nvJOXGvjv5qQIZjDYbolGRrAcvaizsymNpWnhIW524" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:06:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.116.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:29:91:2549:9:f370:a1]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HDRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kl7OvtrPDy3KV2gwVshrtw0abs4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6aSyP3mQJp9tuXQNlF+tCsmiPROiCMI1OJ8cayNK3M0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:33:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.168.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PowerPenguin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kl30oP3VKGjiXywzvCMq/9Gbi/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OjEWlL27otT4D5QyHjB/54MgmdhBiMe3m1IPXFN+/zM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:06:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.56.117.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "6ixty9ine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Klol8YSpyLLgqRmOAHIVbznP0Cc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dRK0n8Op6wffdj3dEVlDHGhfKGGW1H7HxuR/X+3Fr9Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:41:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.197.147.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spsnowflake" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kj7FByiI4vL04oF9Pz3qqGoNb3I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wbgPnX5ckZ5q4dhkJJkFy1JJX2tmqRdIot0kiMjkLaU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:47:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.82.136.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Angband" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KjYAWoEci0IPOA1nxKnWMGVfCQA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+T4J+QpetW07tE7WQ29uGsFl+q68ahTGvoI7mV6AQuw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:06:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.171.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:138::94d2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "askatasuna64" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KiTgt/fWS4CNcPvpLmQcnW/Zmz0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L2AlCENvuMsywuGuj97QAUeKFxBVIAIRFQoJ9RzFXuY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:05:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.41.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tornode789" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KiQ2z94kCcZQJ2h3XAv91qOogDo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T39ogf4k4qEoOXOPPIu4SDmqt/QnXUG9QeBesEeal4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:19:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.104.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DefendRojava" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KiO2rCVGkc1S+Y0mVnJwiJhhvB8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KI0W9Hfe6NcyF3a3k+7gg77sFCL7ydZgRKiS7EsvJ+M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:28:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.192.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HassoBarks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kg+tPKehkMQ9jteJZye9Qm6MLvo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZOrJuBLde+ZjHdeRU/BPLp6XMkI7cR8VL4fXFnWdcWA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:29:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.160.13.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6574 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 6547 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "estrade" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KgGvw6uKJiVdxyUofACdvm8v9bk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zGucxuYWhHI/fmpypiydoQNvdlfEcpTndIJkXvpx6k0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:26:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "101.55.125.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Malkoun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KgFww9YVE977YAD/Esp8moN8hOc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GL8w1ashUpj6bthZhsV03ubSyIBBd2oOdkJ7g6EMHVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:45:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.4.212.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH115" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KeiwXKIwtX+iHMB2h7jaIj7if2o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GFZxRZR4ZjjHLHnGHjNZQbNE2RatLK8Z5D7rrxWtrMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:215]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LinaTor1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Kdq/tXJOu13b/ihGNQsGk3LME7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dbVQc1bYO0hgo3cUjmfDOFnPfoNg7Nj468Lm9Jj4JRM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:32:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.15.241.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1600:10:100::338]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gayming02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KdJ3CXzv2P6l9QNBz5HVDyFABCk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TaIqbt/qsThxxqfPbokGwsl9NkuubOZEPHOE6VwGqW8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.127.66.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4433 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp8" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KdJFpoMYOcvRLPYba9asTwRhv60" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JLpJFF3mPh1/wFnPxQVb4iR0Kpr0A4TlQQhAvjgJyAQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:38:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Harksheide" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KcilIDXGjtNLTXZfv3S5dp5oq48" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6leWjq0aw/1cs0u5UhqcQJmwAsw62n2go16AAeVqQHk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.46.71.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2028:10f5:71::251]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=91000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "carlos1001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KZzF16WOW5K2ncMzso2SbNexV9g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XjIbKUXNfMToIhd/3oKIUEZb8aSalb1WMT6/t3iqppQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:48:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.204.174.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KZiVXIClxVdalgICr84NffYz9u8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f/KpVtQbhUB9uZcdVf9do857rt2hqsLurC+CQE6z3yY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:10:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.18.228.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:810d:b63f:f0d4:221a:6ff:fed4:276a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Eternipolis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KZDxvdYptj8cFeaHUOR9sFGcIM8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qf4iIwDUFn8PIQ+OXhPcLfD9tjCE2LUsbFXcC6vzeqA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.19.247.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marsmellow2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KXXswZY1edXJQT2CsQZym7UteOw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XfCeZpFmXgC8qpNdEKUXSJV/Q7H/fB5hOKabW6YSd/0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:51:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.119.15.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7c8:bb01:994:5054:ff:fef0:e955]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueDucks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KW3WjJAXv3/HzsmstDpvqpQkCP8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vR+8iCDWGJmUhke/KMLeM3iWpV3LhrywabX/htW43Rk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.32.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:101:200::4a4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "soltor0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KWsheP10KrNasgya3wTV39PUB+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T1tyOS02MEaZ90jsD1etiQZL85mQMhB2W7tUkt0qtko" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:45:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.55.74.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "BadExit", + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "emcareWetenschappen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KWjx9RFeYrwBr3z8uUEn9TclE9g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/uRLp/qgqzKv8ekALLYkNHqiPLQFCt1tScQj6PDg6W4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:09:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.118.63.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fe90:100:3::6c0c:d409]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "iiyatsu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KV8Fq1HLftR6xtbmaQuBiDrR9+o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ITT7ZKZYNQ3ov+EqhIoP6x9hccFkxNUJQHdTdk6GZ8I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:21:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.232.130.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:4:1d0::295:9000]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "treebark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KUgRowVTDdgGMcKuD0h1OoNmmKA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Rj1DBASXajaZrwgh48lt9VQX5Tu++jtqg5snehchoA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:08:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "208.113.128.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f298:5:101d:f816:3eff:fe81:4fa0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "timequake" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KUbBVYCUltQ6PtkdZJp6uQBM+Go" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ewd9oeDoHdwbD2Nm0zuGqMqmVHsHS7P2zd8UtK341f0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.212.47.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KUaz9uaTDgdc1T1bEziy5AN1nE8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TIIFGeLuVxIYbcm40sTvSRVnQAIQPoMcp/ld17+npcY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.223.3.211" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Chimera" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KUYVnPnY6uuMSif2pUsBpFne4WQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+WT7Lzg37KDknLc9VYx5iwXuSZFGnKov5OAkLrI9wzU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:41:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.22.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:61:785::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KUOe6cv6GNViIVf4Rio2t8RXvHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AzJLK/jWnSgaYaX2oF1xuTfGrCdwGhP+zs9/aXWgP5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::201]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0129" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KT8UndGXFJLjF3mqEsznxUW/UIg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2WgJWIDTpFcyW9NKH81zDKJcsZxm4v/bmd3qhgjEnmo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:02:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10129 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::129]:10129" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorroneAlCioccolato" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KTLBkoHxHSvRoldCiixw1tObl8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0iiOJMMJWgYxRbc8YZp1g1mOPAC/GmX42iJDVEmIqng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.67.182.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DETL0002" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KTJ707BS9y3a+1U6nYsTx2wpQvU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qvZXk1wzVSA932adJGaEK9ngk+/4LOotVkGfhFNNiN8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:03:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.247.201.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NextTekk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KS4pn7T2kmFBDfY0iO/9G7i0WBU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4eRCyGzXNWUbTvyOJV5nwh4wDwPIxC9szHhFBTjGS08" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:50:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.170.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:bb::35c6]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KSRcQohEgAKb5w9UYWi5dMOXasU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XSeCaQFuv29m3ppbM4eOQ7kMQKHP/aWxOm0yrHa7q3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:25:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BepisAyo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KRahJ1RF3W0Q4HohHmK0YjhwlX0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kj8b8pzER3bJtieyuwtl3gUUAaOR/T8iIqWcKPKcpCs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:42:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.137.249.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc24:11:7263::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KP3MI36DxO+DN2M225YNEdSfp1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p+IKflQl9ShcwL/8A+0kghQQFetps6KwfCkb+UUSEoU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:21:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.92.182.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tethys" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KPjGlis5eNLiC2ksHkiL5r+5Emw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EYbtM1TWDGVz2Zg95MjYaYOKIS4VVpRflhVY2pHC4iY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:51:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.135.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:38e7::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KPAYSMlA1D5fA+7RCBrEfjkI4k8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MeJocbHIhITWvu7DvV/heTWMvVNfTquoUHJBN1JiSdw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:17:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.180.150.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelevationSpace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KOx4KkPN2q7U9n4DroQA5BaUh2g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YyynvFzOOE8qZh4hBHpKsDwtaV47QjkK60lAv6yABic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:19:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.104.164.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KOQnw+f+t2xYkB3PFWXqRFieQ3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d5/zIPO3vLNLrhgiuOq6L7ZoQ6Y144hQzBBwS89OZEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:56:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.98.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:670:2822:e6ff:fee4:a9ec]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thebest2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KNL7L1IF/LJKSiwztcvlO+jJpY0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h+ufUBju1FJekiz0Qm6VgDrNU+rKjNqjRIR6QB02YfI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.154.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dvbhorst" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KNILmQ5I/KIIV9vfEpl8MjwSUSQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TvW6bSCDYQyM5Wvt8CJl9pxyMxy3Jn8ZOYmiURLrGGQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:47:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.202.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:162b::1]:9010" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ayb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KMUs27eNpGEk2mLsHWeWaJ5xkhA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CASqPnmKToRVOKMn90lR72JneYcTaEBdNTTeGHRWk2I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:54:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.198.70.137" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9091 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:140:4109::ac45]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uwu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KMIfukgK6vkFckDKJ98KG4r/imU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EhtICPCfsu1V3O2rV1AuEXgh4SCOqIhfqwO6gnkwkuU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:52:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "181.166.217.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=970" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev4PLicebeer82" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KJsIUsBkrWTpV/lWlg4hXkdS4hM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WHALxshXp/aYOejPfWLe+t8T2wbZpYMHbcgbwhIjH/U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:21:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8182 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "albescitis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KJb+O8n9aQbWu3U1F3caAdNYhkw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "efynXcCSSiyrtLypw/P9OtzCSuZ8UaeuVCI9zJqsE1s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:52:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.214.7.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:5b82:2070:8300:2c87:1a85:3fb4:1]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MysteryRangers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KJT9g5fH6AhZNAYItnLJSkO8uiM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SVxl44plUzCLClRsbW3ONIa+/IOX+YNRiuLB/Rmtnj8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.62.220.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "intothetylerzone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KJIHNgiYWXfe0z+YqfonqcR8i2E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T144PxaG9yxm/cg9rrT9thiACkqLSPvaTqMw1FfDODU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:29:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.58.107.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:91ff:fe73:f9ba]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "investigator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KIwQD/plaTjCPzIgfK8NqTLs0kc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KZYEoHYNID6jvC7VeL0L0VWC/W3tBtVC+eyxG39/xo4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:33:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.201.19.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=74000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nognu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KInXeDZ7++LVlOlVJOP7kItJqgI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tPlP06B1xmIgybcY0tIvX75wRtU8jrW8wy2HZIHBfLY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:09:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.40.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 45531 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:66:bc7::1]:45531" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Makgeolli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KIJbWmgmsNrV+rhORXRJuyZ5onw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/3ppvYWeqOJwqchHRRLUQteOkAlVJsNRgU5npNFQ1sM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:15:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.167.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MonteliberoRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KHs9tyQvqM5Furbc73Shk0pS3uE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WYDuzv+biToE4eh5eo2lQaZA6iqoze6EUcjZjX4WAlg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:34:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.58.231.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelayVongTorHer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KG9MF7QZC+Z+3+XZKsKXjA+DHqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cfV0Kndh5NLqxn9nU/XGJp6sjblD3fWgsF2nflgWA68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:03:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.229.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:2b46::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeavensDoor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KGOmZcdgcaSB8tD0deAxx+Ipgyw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LbxxDPOyVCnIcVM5lVgkftg0VyyU8aQ9KM0jsahZ3dw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:34:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.152.39.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ach0WooP0AeM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KFsxlSVt6mbH9YwFlrF9kjeIBWw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dZujrj0SzAotq1mvOaRkjARCdm8sJQyG+cCfpAlp0qY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.79.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privatebrowsingorg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KFjEvwXVfX/r7ijeqCusN0Ii+Fg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "voxHwLXxY9M1nzZGdW0Sx+1+n9eDgYWiEKSDxeZJ8PI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:19:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.12.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Stiefelgeiss" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KEsGlZNPJ7uFvrtUcUkmJwp0GSo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jnWxcMQEYIfjMV4TtiQNCdvelB5a95+NLssmyGpvCEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "221.113.50.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 109 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "as212520" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KEgwn85wjTjf7bi/NNLeVDPiTEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xKXYzTrwpLFrEdvXVShxYyTuvUylx8XPyOg6jD0nl14" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.206.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:4741:25:8000:fefe::129]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=80000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KDUHH0uG0o35I9KqK6kC8o+k8oU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VwtS5KSD3dxby6zOIfRss9LztlaOgFcbupNAIG0ISLo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:47:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.88.226.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DontCensorMeBro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KDGEq7zLVyWG/9feZOuNNQK98fY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/IDAmlgIZBeiitOUYNG+NQ98b5eBSOX7+XMC04OdmYU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:51:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.177.225.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev10b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KCyq8OEdrUfdc9VT3CC1EJmiV7s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3VbErx5lOlI4iHTRi7teFzRCuneNQabfbjjoz5SijHk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.114.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:928:dead:beef:ca1f:1337]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JohnWick" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KCRPZjoJuk3sYsH84+tvoiG4R7I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "58/6rxFkWSAmxNzlPno6a+pYwIQMzoYiFkSKbzQGO0I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:08:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.109.28.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:5a:1a46::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privacyMatters" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KCObrHcYKfgh4qjdW1U516Ebnbc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/k9u1+XM8WZsmvon5teM8qfrnxjMACVc8OAcVUHikSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.233.202.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:9202::101]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "danny" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KB0/TItSJeYUy1GHS6Ev8beSEFM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RIwCGuWeJ1KI/EF2LnBDR3lB0uyL/WUKBZsxxNvMWYU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.225.86.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Dream" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KBjlrZ9Oogbw8RBbtQFt6WLLwvk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6DffAOAJod/MEEVfBSV91uQDZsI8kpbnBpvto8pZAq8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:45:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.209.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dismail" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KAkHEKvkM6RwIfIiCLPsJFqRKQA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G703smqfmLNd68Swe/Cl7ZNVI9z6LvLnY6oCWrrhHz0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:42:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.17.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "KAPDgHNv27j6jiei3s9IBbUybPE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OBsp6494ptGCs7UFrHFds7QSbKCkxwY63UK8RMX3ABY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:22:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.184.181.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J/rpnA26jNnb/kLS0kZLTGjusA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dcePScRKxr9N7ej1U3ez/DeWFjrrwp05mWYpUrWc/pM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.228.136.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:23:50:c8ed:bcff:fe13:ee61]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shimmer01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J/ZAqy/AWZntST9tDETaaH1PRz0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3/dFUGhjOhxZ2qXOyYjRATNDuEmj5/N0HF7llgAnVck" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.245.89.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "deepspace9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J+wBjIB9+k9Goh1pzUU10fMMe10" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YFP//hbSAuELgLxm54tZns11t2es8wsNYqTbhAc8fGc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.140.41.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=740" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J9Alea1fPjKJXZnDjkgtHcbLrl4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ay1Y6Yj3wIOTtFa8LIAVYx8PsnkoiAIhfIXTAemp2uw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:33:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.174.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:111::785b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RjPi1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J8al2l0GET0OCMXCvlUnupoPEZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G3a0ScWd1m6BM4DsyOBwcFikBEvMgZ2KHfeZdhqjpWU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:26:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "189.60.21.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4430 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pheonixr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J7NeettZRuOSQgjyxHH65WODyro" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5xVp6p+azA4XDAoU8x3pQWYAhG0zS++eE/sVadpMcU8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.171.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "syndrome" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J7Li6sLxg4tpMMjkDhmap3O43Yg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MoAH88P4EjuFxOaPft76CSKPieOPvSQExo+NXajjYHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:08:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.208.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LebLibraries" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J6X9IlGfCvg5J87xME7hlIQkdYI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bc616cKYTc9WiDFuU94K5z56DKYcZv2KGJE2hDFfndw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:00:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.220.242.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Yani" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J6Wg7nLPBQ+fCgkuKw5/+kBlN80" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "enm+TC56m6JSc2x81PuM62+rSz3fvQ3qEqdGbl0EbrY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:45:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.97.185.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7c8:aac1:114::1337]:9999" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cogi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J5kBb2dguBR1yR28duRH3m2j4zE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TONjyrvYpqf9X7EyL+yd6zqc3yBHkfcp3NDdql13inc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:38:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.226.119.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J3XCocnDLa5H2rqXDnDp1+BQcds" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kVetF4Jdo8hHv6o4UhveZ2bfyPEn+xra3Ehrd+UcUqE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:09:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.1.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:4010::1de]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "greenpond" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J2tH+wbfRz9E/aDaXHJztPZZQZo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cUaumju/vP+gTPwWfS+9PE9XN0yVocviriKYAUU5wzU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:40:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.10.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:6600:2002:1::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "W44rdfE3fqVo1L9B" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J19/5EnvfrQe3VN+Zlg6sDmHDWg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yg1WV2vmWNNjUI/VC0yAom4uutmcWFwUWtD7LFBM5fE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.157.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AllanonTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J0odxiEOkYJ830DcDpXko8qSmgg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XJRqFfTJhOShevHLY4xuul2zum/CtBebCMEKLdhq0A0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:09:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.127.161.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10009 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=910" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bakingoven" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "J0UiULSEy5DmhyJ7MnTivyMhWOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QpcUUQGujjzK3TDwrVDHgRwnXalN15UeAkRLNfkk/qc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:15:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.189.164.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JzB4uURnVYhCljzgoCstBY4oJOk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v42bkmo+JJShaXQPamAFBAY1Jl86oTIZkpz7fAahvCo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:23:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "summerfield" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JyrIQlIWZuPRsOXq+see9z7IiXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WtaBbFJvkrdD14gchwVX2NTDrvHG3RuV4Rc/A9DlhGA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:20:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.189.112.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheMind" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JyitJkKElE293f4Mbb5laoWpNgI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wy2ziXsuiowZ9YKL74zkJMEYo4ILS64gjX5xd1nNrEw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:57:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.59.18.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 88 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jxc1XR7RxCHj+JMPchvy/aujXNo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eLd4RvsukwGwxvJI+UULAsD+qYDgBF6YTr9wV5DH8+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:56:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.72.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=93000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tuco2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jwv1yeIzEJP85aqIkeCliDMe52M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fkJ2VY/VYxM13mxgeFBkFMJQQH5Zn7Vdv1vdH9E7f5A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:26:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.187.91.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toloso" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jwk0pPe2aao4fy1HX755PQNpRUc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z42LbnF6A+aOfoKdu+fQFEdCD9DzZAGyFYusF6Il+Qc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:37:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.7.217.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JwZ/Wi7MyRfxwJxM3+V95DoYfig" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pjQOnEpswpCEnN7G7CPTrWL6E1wls7x5QbrRU7UeS0I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:43:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::32]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=760" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HereticReaper" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jvm+8rrPhVF8Yst3/1XmNHKEAVc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0R7ygeFSE/hAuL+m9S17LKvUaDRVtleLaHV+YK4QNDk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:41:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.161.35.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:205:200::1f8d]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JvKYQpN0bHWJsfyxF/FbSVivwrc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wYgJMEKpSBdQc2EH8vXeEcTG8xZbesBlU/HVerGXBTw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:03:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.95.27.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JtOE4ku9FQZhZEZiK+EyMqZJRQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IrpkN+ArjFv7Qdkw5olvnMy4wIaVdXCa1vmD01ZXeGk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::7]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber58" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jso0Sg2gyTNDhpv2oXyFLR06DJs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FwJYbHRn0Y1AZOhdK0F8ZdsteIOYhfktA+rWlkX2MyI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:16:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::29]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0163" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JsV/Br3s/5lo9lgFzZ7MkDawKqk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cKU7EL+JGfxvluXIkkeMSs95DxqA7lQ/AkaIAEYoCFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:50:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10163 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::163]:10163" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sasoom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JsQ/tErKrtt6T38fH07JMFuHhRM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jCVDRucbJNBJ8wEHkuh6ftrhJo42qdZYGLhVK+rCGbY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.89.115.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JsKPKbYR303iOs9dncHrSJXvXos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7zpqR0bdRgGFPA8+s7pbG2iRV62K0w3QU2xi0B7ZvL0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:49:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.116.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:221:4134:101:0:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BestofbestBackup" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JsFe1SgjgqhD0HdPUXC8zMzEbWM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fDCm6IR2uX2ttyrUUPRduKItFujW+fh+gtu3VHUmDIo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.225.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9007 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:93ff:fe9c:f17e]:9007" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "philotes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JrK75nFJlzqm9jH9CeKjTnMlOrQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mrOb9au+QuvV1pOGSxiTbAOlzDp9j46siink80KtXPg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:28:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.118.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ageinghacker" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jq08HBjxzSs1ejP6dlKpBtsTqMw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "32z8mWaJs+VBwRRkLY0TRSZj7xZYnW+TJ81cSIeLzBA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:40:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.139.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VadaszXYZ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JqGR5ZrQEmkTXmq++sZSulg+hEM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iLRjC7AmfUWOvte5Dq/6CM74EN9tChOsOaDMhM3tIIE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:07:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.165.251.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrgES" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JpyumGn3UBsneRvqiXq11H79TzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WpIzVbbhNZnIdiHueAApHffuKI2CMbL0BEfSeX171tw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:48:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.223.104.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JpyHtMMEZS8hrAK+hr6H31j1F08" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "URiXe7LK3MkejDoectJ3qR9qRRHYMqlaI59MGSvpqhE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:33:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.107.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:16d1:9458:1aff:fea1:7c8d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jo2hHpbk2AFvePOiRiw/fRCbfC8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lslUw1VQlF0pjJi7GGKfmBu1IIdMNFeKoWYka5YepmE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ScaryBear" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JnqpSJ5uyk0u1Le7TQDHF7PhBqY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "psxuytjzMrujbwrRUBFYxhnHIszfVnqne3TJI1WL8L4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:15:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.234.69.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42431 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:fea8:c60:600:bb1c:8d1d:75c8:d7ed]:42431" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "giraffe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JnOTCiLArt8/viwUFlMKE3jmyg4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XpvpLw11pwW5VZuG3XuE7fxBui69HkI21oEEzi3pHqo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::71]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JnKx4XltVwIWO+S5d7/7vgGb2ls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "znjfPB8ByoXGe+31WLWvzodir0ViAejIqUWGnjjV71s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.9.150.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Spacepark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JmYKt+E2pFnPzRsb5kDxBoEDWTM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BtyeqiRHQsOiLfK27+A1/nw19i/l+5y32gcWKDKCl98" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:57:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.151.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Felicette" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JmVeHdk3UbZSrI1TRJWrs2QVvsc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TdHad/SOjJaPzYMjXaB7X80+Wk+43UQ2tofu8ex/5lk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.97.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=62000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AvocadoTortillas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JmF45BdebW/3Vjkxt8YWbFu+cOg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cpBqyK1tGwnCxjo0Dzit3i3orX8OvLAHnRCjOEnFQCk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.180.153.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:4400:69b1:5400:3ff:febb:2687]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hatcheck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JlmsqhQLaEXjjxibQICBe5gZ65o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X2eJhlDHT4lZnX8UsXa0oOGBJK93gZu+0H90YRsnhH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:38:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.156.175.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stormwind" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jk6Mo4jz0ACBzX6R1sQnLASLavk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TxFrzOEj5eMqkAR7RzJMzXrt0MhWK/mAS9z15rnvC8Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:27:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.132.0.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "msBobo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JjkH6dSPvq5uZLEMYorovfRmhps" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/gizkXO2p2dDnzyMkyN0cFhkz4r8vs0wV+dq1zO/tZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:39:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.143.118.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ALiteralBird" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JisLdJyQiERqVSHE6YFz3tgV/Vo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "seCJw+33AxLYFJmfvBAe4gV4AUeKbK5PpaTVVdQcSEQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:54:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.35.33.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rockers2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JihrnezidY63nYV5K23vwaHcwZI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BpPezVtp9v18l2hZyC5EO7Adu10lCJ5tqmiS7rxMZqA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Q" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JiIK6hiLjQ5Hu1QeGmFus61wKV8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8yeQ3cIAnG2TsnyqHaQptq0df9Jx5oAKYJhjEdX7/J4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.221.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3451 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c17:1a1c::2]:3451" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "russianalbiona" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JiDucdbrSGE1NicvdJDrjaZ7g1g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6W9VD0sSwWB+F1yNXDkudkI1Sim62lE53/r/c67b0ME" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.244.87.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39910 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:6c01:e9a:5400:3ff:fe8d:b35f]:39910" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SabaDanielRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jh4p10DrtfxVk/rLZeTNeOkzJm4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "65GUagmET+ceF0PVIi0eske2TviZXROzzwwyHowxw64" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.103.30.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 16793 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gymli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Jgl5orLuxDuRRS2Tee0PntdEtJ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qlohq/nMXPvBJscbrOFG3Cm7Fo3JycUNUywPYDDd8/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:21:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.97.142.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "homik" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JfQzU1FohTPK7b9NZVgejTJCpcA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gi+gUhHFg0U2xLN8MqaVa/FBYeCwn8bIFZHVbIvdUiQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.28.40.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "darrieux" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JbaU6pX4JfFWxdrlYHszdehsDE4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PfaowiG0pxXbf/9xYnBREv+hJiJBlRcuxeos2okefVo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:47:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "153.92.126.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mrrm87" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JaPJLrEaFAsAZpXQAJ9urq88Z4U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FiB7a2ZwtjP+o3WkZbhsvuJIKEws/NOZ5lwgmL6KjNI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:31:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.212.26.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Proflay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JZdqbe4FcW4MkrdsoH7ns7zIEno" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "u/0DYn2MzggF7q6KSNIlZA5A/pPeWScFNjAyHghxvXY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:02:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.22.189.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MarkabianRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JZT3wNLsCrGyaVc1cMYajupU1Lc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S4yuOUmHh9I5nNUneQW5TaydeJ/AEUrTmwhbrr6O6W0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:32:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.235.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:701:1100::500e]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Luxembourgury" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JZB4x0yyMJaaavzYU1wLNa7P+Gg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3ZKMRKEt+VoMnw8VzVwgkPvOQi+Jv0U5BhuFcFk56U0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:35:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.30.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f414:42ce:c612:dab8:1337]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fancybear" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JYotr+y7YYU8iKKBFmsPW1ihbGU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "07Qe8hhoATjhTBY9qSBaRNF7ebA8XI7ngn3yHhtbhqw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:15:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.171.152.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "galapagospadda" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JWLUY9FcPDg1FOfWEXYFBzrEedk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tojHClOO2qS762av7Uivh8cJj2kfj1r9Qe/ArCAmmPw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:45:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.230.21.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mesaplata" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JUwKlqJPY5/vtJoMlIR97xWK+q4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8JfWvgKAnlqRRJKgb8NfBQ2kkPKfGLW876WdTq9CwHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:09:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.89.54.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "porcelain" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JT58aAL3W9VGFocmk6WSLtKhU00" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tNYhCH/apeGRqvQa++ZMpYaBtjzqpcO3fek5RPSAPXM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.119.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt27791" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JQCdn6VdiWGXR5lakIf01mzoYnA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EnR3ZurZ7AbpPmmlKOxVsbpOfOCyuYhjoJ9PzefObGo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JP30dUuzd1ptVOB43LvKQ9exsH4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oMlk/llEAKSRvQeQ7dUiG/4S40AeS+XA5luGUes5ICU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10036 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::36]:10036" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ShinyMetalS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JO8YK074Lk60eJi6gcslHW4ohbA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7JpxRI60qcfOzofqlLi+amuCnnBBlFjrkKpwz2GvxCc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.107.239.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bastet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JOLxORIdQ5TFS1vMNos7QRhXxBM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aNeQUoLjfc/hW2NaycJ6+UMQmbm8gLvT9N11I90afj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:51:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.13.164.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:13:4000:6000::1000:118]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54" + ] + }, + "PortPolicy": null, + "Flags": [ + "Authority", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sjmulder" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JOGFcJTaZPN4CcuQpOlTueKpF1w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HnlDy4f0YdvlDfEB+DSuiE+WQ80MDPHXypz38ApfZD0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:51:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.210.205.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7c8:aab6:8::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stealthynetworks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JMTbEAwZqxfRw3/GVOtKVajNVQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "990+YnNhUkct3osSBeb5pd2BYtt/VFXWqBsg05xQrqE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.208.162.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5100::186]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Scrubsss" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JMMSxlZ16Az8cp4EYA0NndJzefQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kejiskfTpJDzDQQ6K6gruM/u8B6fFi8HcA0VoOqFOaY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:01:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.159.59.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bobseg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JL4N1FIiK4/DMobcFgrpAMdpdNw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kF8VEQp+/Jy4f8AjYTv878u2IWDzdKp7BFcitX2eO/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:02:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.88.104.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bennytorbot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JLg0IxdJImc7sa9Ds4lCkF8c4wA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O7nGT5AOpXg+/tXiviPukSR8gFCb8nN9HKSylJPrNQ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:35:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.83.204.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f17:273::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "goingin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JKgY2fHgnxhF/BWJ3lqvFcjghn4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cYarjHfecKTBfncorfQrkyrVrVNb64v31VxFHUQyx/U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:11:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dragonhoard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JKF6TB+owhCKzeO+aBsHMThL86U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Efev4rZbXy8PZvgYqJ+NJDL8Escl1LQdqCjT73xjr5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:02:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.69.21.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:2e49::1]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JKAoC+/P8xgH2p31yR/gzYtxuok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nvWwHWB72QiOedckoChZasBJ1DB/fxTPZB/3W+glM0Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.102.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:107:dd2a::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay16at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JJw6XtixqNIaOFPuc2b0/5Zt1P0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WxZYSvpk1OagBOkKJMD+JfDEFOlCFuXOalNwuqX8czw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:36:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Illuminati" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JIqWsqiKPqsUaZuQls5qv3fQYGo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2uDIImiINp32ibkphJKz8YraKJ27yfXHlGTiKRJW78w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:29:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.110.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:2:1:3935:104:0:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aztstx11" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JIQH8ftPq6/5Pe99uVTi+uS2o5k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZwVs/O9V+EHG179yW+YpeAbsh4S+mCq4Y15373ZTq94" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "40.112.177.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "atacama" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JGRFbCh+cVg6bq38+ClZcitulv8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JvDJ8CI30peUo5vexyg84ShWNL/oZ/Bl+ThojoYEfdo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.119.82.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JFyI5TW7fYC3tDs2q1swDWshSkA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nkEoIco5yEEe2h9wZASIVyz/BJ36ZP3ntsboe5kuxP0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.181.62.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:2603::fefe]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JFU4xeM56pm/F9/kfFemNFQORPg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "miS8HlkvEJZAskmFdgSC0qQ4Zut95assFeOV0sIKRcw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.127.235.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 37171 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Luna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JFI+ewBJg+xMpQM+vJtyk/EvI3w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Sxj+ZWOF6FzpxUSZwQgN2XEWI96qPT3qiHfLdldy2+E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:25:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.93.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=51000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JDf82sRThfO/qALwFy98Uqbc9VA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j2pXyPfnyZd6xkaaqRPdgz8iY+S49vxyosUNLY8hSOY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:31:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.65.50.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Magic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "JCLdd6R5cxD4JrEkg7CAH17fNRk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ED7UkHKcdSO0c5gaeek3Jk4Zxeqf9wRxn771KFTGCZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:37:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.255.4.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FriendlyExitNode4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I/dNWB3pKsWdNSfeTUSOA2E52B4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QJwRrKXln8UhVMZY1BdU25b/Qq+Ne23UQAmqwORnTPk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.45.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:1144:8d41:a8eb:2f96:cc7e]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "imissfrys" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I+HsonJ9JKBbNAfApobQup09GiY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XEtwSlrpWBL6rsRdU3bMrpSMdz96oNBjfbgArJVFJ6U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.163.218.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I+CGX1xh2OaM00qe34FwzBeet60" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5N77AT7b6stoHQmShPVWLJ9fMOEwcGjaAovLMRAo49Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "20.48.104.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=490" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "esko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I9wpXXcdUdqYEAjRuXAqA8ZEiNg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RjNnXexD5emey0hHjxcvZkgXe2qS3PHJdxCi8CIBLyk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.127.197.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay38at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I9XYIZqOt2EKszz61Yn9cqhENWo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2F1vATbVk1sKMBu94f7HdRRBJu8EVBdR2M9g8N4To/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pipepipepipepipe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I8LA/UZga6snQ9B9ObLO9/R7Djg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M/rxf3XFRpVuFtW0v1nJp/c8LxK6CyoAppssODGZ4QM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:06:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "35.178.146.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a05:d01c:ac5:8100:6bf4:80ca:8500:db07]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.5-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Relay01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I8GMgBDqyD7IUaObJeR1rIKo74o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OY2vJorB4+wJdCLYCy3xRRlu3xtRMxtkL8ZYNdPuWEY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:56:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "187.63.100.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2804:538:0:1::24]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "reddragon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I7zX8IYO+z3S/L9k2UQWPStLY5U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KWfjx+oZoTKEC2V4j8OGXQvZsWxV0csy2aCpa/StaXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:52:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.204.172.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:101:200::1a34]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FrostShark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I7q0qbG39VNZnNga7VU/rLezUhA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aEBQTzu5scARUD0GjMmdZa8dVxvwOsTmA6bM4/W3HOc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:59:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.193.18.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WedosCZabcdef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I7nAh3WrMb929mgsgTXmN//zHng" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QBOuHZDfkHMgZ/QvnOYYYn1g/90Qq/4/dK2RYVFiVpY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:27:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.221.220.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:97e::1]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I7SVIb3EWIx8zzw45VJQQRgya2Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LknEk3K4ZcplGrPCd2h0duFckLnpalC8WBbAAcM5x+k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:19:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.194.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:730:780d:97ff:fe64:4dcd]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apostate" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I61rFlE32VfAmqD3o+57Bc7EqPI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sEHPA52ab1/3yhfKUD895OAELMSMfAeUZuh6sElhBjA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:07:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.62.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:182c:916::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.3-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VarenykyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I6AgwQ7X4/hWCAgLYimE9BsuDRU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "04SAvCVj5r+KqklslRub0W/cb+zxmHaqGRjkp4fLdBU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.111.252.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FamGuyFunnyMoments" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I5i3/Wycl6IP3X5jfL2tF11bdh8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SzuYQbIYcGtH05ajGUxzionk+mjJzUDDIsNnn4/KQPI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:21:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.15.23.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42069 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1d80:1:5d9::1]:42069" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I5Ls0UgktGwPLqrEhiukDsm5MK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yhyH3ikBXHoaDvxVFnSWb9NtDysMnKp5jFRHk/xxx+M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:48:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.77.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:fa92:5f11:1ed9:9615:fcc6]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I5CzAwWPXsHhvqruzjqvLPl7cfQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e+6vqa3m13CtxKQKhpWhTdQIywqmv4iXzySpHmaWZEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10047 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::47]:10047" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thevine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I4fhI5T6PmrVUaIXbtF2K9sDupA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TzUeil80zTDlEjEQ8AalOzLXwO4FfjHyjrZkzXSefGg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:45:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "113.20.28.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vShieldxVirtuo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I4GZtHuhmY3Drx0rCToKlo5PNvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "slH5FIbmByGpYTa/D//8kQxdj9EHRjRbAjMgpYbY/1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.22.104.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Nightosphere" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I2Ba3hYpjKFSzGLwx1k7PrV70PQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fLZWAnHW/JMBoa4/vN41coXtLOieCITWPSVmha1a0Fo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:46:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.104.142.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation54" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I100RCNqvCj0Euk4FPa3gyANRjA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rr8mrD+n70DXdzNCB3sP5SVxnq4wpIvkJydnauBq4hk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.249.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bigfish" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I1tJns/ZteXGBpf6qoBaKzIO7/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iYCtSFNt1eV2z5O3tIGH6KZss0Xw3zJ8FOMYacEQyhA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:26:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.76.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TK778" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I1qW1sFIm1BOTcs1whydzKAeR1g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "91gTvbirbo/M18K2pZqtLjXwlU+++bS2EUmCpLG4o5E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:13:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.226.111.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "soP49mzpYUFEwVdiFN3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I1OWg4u4/Hr6UpBCsZYV354q8hg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "suc5DSVukWbZCudnJP4MDBmuDQ5pViXZT9GsXv+XPQU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:15:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.67.32.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CH33P" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I1EtZPih7BGJ8VOjvHStdtI0Pfw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qpv18WUwXzhJgcS5BmNwbs735KR5rL03VryyGRes0Ac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:09:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.247.226.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:2:18:4348:2d:3333:50]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ceres" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I01nDqp5Twkve9dY1dKqf04/++M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zjPSQYwJMrVjZr+akEwnfiIeEJ7I/nJU0zxKFGOeDqA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.13.104.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:cbc0:1100:1a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pizzahut" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I0sG5NqRXVJ8iX4h/R6fCAEuKWI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ygNUf+A7wbbWIfy7oloarQz7reIWPYuXVOESosXGy8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.254.118.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "king1337" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I0d4r568WZaQM2hK2IlTAGM1l8E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "F+hCS16MtZ0QdxwO8M0VaSRVVxLBQAVIot1wueiMciI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:18:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.187.138.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1337 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "I0YqTbppdYv8tMKJiQWH6ibUZUw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aqMJlHu5Pa9ZaVvC8WQW9x75KVp2UvirAaIS1PwsFFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:17:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.162.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who4USicebeer22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IziOX515FvhP6ZhhNJF4o7x+C1o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5xR91ADmJw4k2/AMox6lNjpGsPfVY1KzdAXBvNqjPiM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:49:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.190.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8122 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Izgw8KBS84RXiWB9HsFUV88V+a4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XDzT5rV1ZYSjBpwgsRwj6KSntNOFCQo+QrHcXNkspRU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.80.148.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BigBang" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IzMPICeh2sp5KrHjeuHPD4fzcLQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3tld1R9LzG+Io1L0wgFdGt0l0ulsMy8vmo6rMhLNtiU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:42:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.173.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:420f:7b00:b712:1cda:3513:2005]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PaxyTorProxy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iy+V9EBZeAxYOnMyt2cCrV4RqYA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6LAJ0gKUUPcXLwEZqa2sYPGYxrzf1cMKoxUD484SgJI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:05:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.24.20.31" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:2160:124:d8d0:96ff:fe60:a00c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "parabellvm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iy7U7UzGoq8cVaYs43JeXapNGqc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TnJXZEIAqnplhfFmnQUPjmCjKTvsOPIF1V9x6xVFCKs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:58:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.128.38.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:1:d0::bfe:8001]:8001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pgmr2Relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iyfuc8C8INvAxNKBwJ19MwfC8bk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4ZAjqujHVQjFANjy0SC1EvOL3Av/vvL/l5xTBm7ogIQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.191.135.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:6d:417::b10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "organicloaf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ix3KoACDfFQmkK1JKN9X9yhlgGo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wBHwpDiosC3tx1I49hSwlbzWZRd+lg6j8AUGxxVkRcQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.77.100.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VTIPrivacy2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IxVRZQy5Nwc737udrsoik7dCjSI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZvNWbV8o9im4o/JMpFvcDpmUpVgdyTjV3ErG7WQpUSQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:23:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.128.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iv+egcJu9gWGzG3G4X2nig2LeOs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nqGfvzxmTht9GX+98x4bHQqEphrOFXkEuuiIS2mMfdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.64.218.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1bc1:56:1000::dbb:77db]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MakeSecure" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IvdOF2+ANJnU+A2c59MliDqMDkU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pw6SqswLpu/XlB3TCqIrmlsn4thiDDekH5d476htiBU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:01:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.96.213.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IvCqhhp067e0o+w+qeKNZ1D0d+A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qUIa9BMOT0JZtwX8iXPGu97m3Fj4Q7SV5cztVq/DZxE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:39:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.86.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Gijsje" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IuvMChX6SFDQ2Km8YhykIiQzjvI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uo6xx7o9W/fzCnKKAe8foFCKs9Pp1sM/sdxpqx6+MQw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.115.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9004 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:610:510:115:192:42:115:103]:9004" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=84000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hydrogenuine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iul1k1unfqWaKOoaqDh/kGA0/L4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IixpZvF7kWCxOoVIfxgqpPzB0ATISA/HWaO1+KpcrGM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.104.208.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03:e000:19f:0:11:11:11]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "1804m1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IuHR20cjoXTnE7G/QHPawcJTUbM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z/UCeACp+YxDd57T81SJ38jsEMF3YP+1Xv1UGVK0WFY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:07:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.211.103.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:400:d0::1516:c001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ItUnIBkyOZOaWVlS+9XnMfAH5OU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e5Ar75O9Hw59WphTCklirQaNwRXPVca0IiaiSaznqjM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:52:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.120.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:2514::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "poolparty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ItNvUF+cFw68LefirRwvIm+h6aU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MKMwNLvbknWlXvrDRlg2g1wN0UEJN8GEuybkD0/DYYo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.119.84.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:ba8:1f1:f166::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Pegase" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ItIxS8UUaJCo5cGciE2WwMv+qiQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "noaS+ns4REYJBZE0jvNlhJ1bzztlBOa6ZlH7NdRZKss" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:29:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.67.167.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:cbc0:1100:7::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Is0Nk/qITiSpQekVE/ycXQjA+JA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hN8jovT3xJPAKFTzWWKBz713tZVYYXktToN8acBIFn0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "137.184.82.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra30" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IsExSGeSDaNwAdrRpj8dXKv52xE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9SnHQj5WBHEu6dO/wYdwGMItKjI5/jd4IsMSg5YjzNU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:08:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.204.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fastnet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IrzQ39FIIJyYYMf4mQerTe6XSgg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bhul5Prolq5BWp79J8xNit/lgQPLoPSTjY2e3I3H+jU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:05:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.115.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ph3x" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iq2yahzNiPn0va6IpKX06SBxXVs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AtZSj7To2zZOTsIZi7+c0Oi/Gtfh4CQvKQgzxrbBaYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:31:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.118.198.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:858:2:30:188:118:198:244]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1146" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IqAo6qO9dztX5rajNejBIfmXOBw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Fs02txdVhre6JUKkHk6IdMHViz9Qp0W0Jk6hoMMtVN4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11146 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::146]:11146" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange021usX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ImWDaOWqB1rqrMGQda3BlnCncWU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g1ML35OPQoR4AbP/TB0B9JcxoQoa0lC1OWSqCPWbrAY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:48:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.174.244.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HermanRimm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IlturHWonTC6wvzHGC0Bh8HE12I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PQ7cNARB2ifIKGxRcNY3svkIl7HbMYKjnnbENdO+DzM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:52:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.132.7.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Manureva" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IlqOo2ffMHNDPgqEXd2ibSNX5MY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hFp0tEqy5J3KD5yeHynCuR6ZF0G+YMY1UKI1oCiO+rQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.243.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BADBOY" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ilj+Dr1XTfyhdnDhtH7eWnXZdMs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "L3AwzhzHkNl7e0SVSPMEd6XITLJ4UOCZqqxR5ytSebc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:08:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.171.154.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "StaleDesc", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0145" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IlUuwc6hSmtBj6noR57e+weVNfE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "urKlQ0z+aRnzYTzjT7c1yY4T+IG3pXwZ1alK7UpM660" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:51:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10145 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::145]:10145" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nasiOne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ikw90d/28RIZYEhw1IlTJJ7jwm8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DVvOVdshA8UFACLpVxgNqSE1T7TBUsW3q+60HPh6bNU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.134.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IkBKPofy1/4vxjWf3nG23C1ucw8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P4h1I79N8Oy9a2GjLYqinsVgwcoVUHE8H34DvhShvYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:49:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.84.81.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:248:2:41dc:5054:ff:fe80:10f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ip7a" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iilstq5WYJqW8C+4Q6t7SwoxyvQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "chhV6dW44XEwzdxZ1zYCZ5Dx0JRSzBH1nO6mPPXkO6Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::254]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IiRuVOfHNhsv772fZ3ZsK2pwM6s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "izU7gnqFGmn6/USmmO1BfFuA2zESZ5G/qsIkib6hYTo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:55:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f034:5807:f8ff:fefd:81ba]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ih8DWjMKxCMaLj2QHxyxFIPBn2Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A39c79eVbWD4jmIA/VuGeT4Or0bsYZhqQxglkYDUGDc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:20:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.193.15.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "malechick" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ih6Xa1RuYASKAZUCUDmbhTTU5Lc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0H+YGBmny7O3q4JFRsV6GGjy3426gLbH7pGdz0HxeqA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:13:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.122.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:f308::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DOOM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IhCIEeARBX+Y1/r1LyHPTddR9hE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pvzxxm0JqT8jwRYXDT402Wo8RioZ/PexYkOAB4vg0OE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:15:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.24.0.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NekoTorES" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ig7JrQe8i2IqK0qta9pGjYsm9FY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uQ5AOBCERRBurApzhgyfuKFyrUYDGwfpNotvAIBl2Yk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:06:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.70.65.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Woodman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "If/1lM/mkaSgO4KOlZep90+HgFM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fMpQl1WMKheE9ry5JQs1UiSqn6o6GXYkcNCo7dshmGQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.209.11.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 31289 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ffd5:1:112::1]:31288" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IfuqNs4EpBYKfS2FtA6NlOg2uf4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q5KfsuRny0Pp01fQwlFn2m/A6N9UnjbHHVaxH5iTASQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.48.197.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fox42" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IdAHhswNW9wd3s86gWTAcWxlu/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4Hoqk6NDVtQQz36l374/D9UEhxTiUeS9FQAgPVLgaMs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:45:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.199.235.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8880 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8882 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "revengeTourII" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IcnZ8WMyRiad64SnlJXoXAfoRm0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vDNgb0aC2BRxoZ3jAWkPRZpDTYptZRKrJhteFzWdBU8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:29:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.223.105.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:83:2908::9e]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IbnWof7NQeRZfAkQ3FzSjqrzXUY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QkGgNIAkAkckF0fxNO/PKcKhe7eEgjB94vU4aWh5X6s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.124.124.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IbVQcsAPRSKFdlX7sPPiXXWlNXs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W8okhCct3+HabJcoFoafo0ORxEfJhkxd3UmI1VsWW5U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:15:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.107.35.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:1348:14d:96dd:24:19ff:fe9a:5b76]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange013us2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iaxu8VyGZBzmI7igjWQUS8rBSuw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7/b+7a+ze2DQIBY8v73j3NRSKHUn+QdZ5fWTo8Q6ieI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:55:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.26.73.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blo2okzvxytmp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Iaf6mhapkg9JouCcg6CXQ+xXSCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aektIX/ygEyL20NH6YGSmUN7vtBPa6TzNK5m4CVyvz4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:41:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.39.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:42a2:c700:b0c8:73c5:c1bf:e818]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "agxtorrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IaGDqx8LIHtQoeCGh2hajZQMX4A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I71oT9bUTbe2jJ44bNldVWJGGwxi4ZN0X75A3FTZq/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:08:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.221.44.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH108" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IaAQfgSEjmoqKy7cQ1YJjEU6Do4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eb95qq59CKMtRSVve6ubmRzv66/S7lHb79k6AFGlDoM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:20:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:208]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0158" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IWZqJf+4nXS1+Vd9b6i7fqfMd7I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HghfhjITsJqMRTFmnOFJLcAcJkK3X8pgQvu4a+Pflug" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:08:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10158 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::158]:10158" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "red22" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IV5mFhnNoU41QzX4HJpHX3jxzYo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VD1PZdRMAmXB+b2KcZGUwAkdWIdFqR5GcWSnq9GiB8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:50:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.47.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HoarseSupernova" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IVzCjX4nOuMwjwQeRajuO6bYVlg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CpvHmpEsiLRmKMOSCmB6dTrJ1XmpBT4XzmVRjWbUBt8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:21:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.140.251.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange013us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IVYWUn+5ftW+C/jSFmvbRO62qEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DUDx9sbOTc1gcRaPSMd5nk3H2AA88FPfpq0MUjWf52k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:45:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.26.73.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IVJKK8bEJ1sv3CPw/yNEttj+wlU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4OAeXu1Vg1wnV8V2RMnfl+H/ILPn4Mt7bh/2Epkc37o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.90.212.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Polonium" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ITl+8HBFM9jLxYI4NztFjb41plU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4LwIatVeNLnQ5tXVCOoj849eLLI5xh+kObyS/2VcAEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:44:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.98.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tamanegi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ITEPSAZqTKresr/TJPCzj44USNY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hfCBahlA87J4VeAMp/bkrthFs8eqXDz08nNmKAWOT1o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.89.225.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lavaronn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IR8DPPmSzBQZxXvleRVvw0UzvVE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "E2J05c+gN5sm8obGdpnZDxc0LeNn7iiGoDg1GhWca7A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:11:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.232.216.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Rlyeh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IR5Ob/N+OskIvZNS8kdVYmkGMxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "959O0pMDJBeKK1PAy8UNlPon5AOKERjpAj8solLpXGU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:58:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.39.73.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6672 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nighthawk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IRnlpLX0IBZb9d8ZpaKPRhD/0QM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZvBPzwkpPn2L1HuAuB9GvulqUaPaoOqcMwSLynxtNBk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.47.36.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex56" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IRh93VUmBZV7LuWry9oOGSUSk+0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eBkvFAHui3zR3uMPy7/795XPV5lgH3DGi60g7c+pM3I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::145]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "heliodex" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IRUk6F6EiRCkkjeDnNGsNDJKQbY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rj75o4i9LJFVctzRzwcsrPJtdA+fK58IVXd0QKyOIX8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.148.150.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IQ6bSuFNeGJxBe7b2o0sPvpk1II" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oNwGKFWY5MoX2bQo+WwLEmjVLcc2DkqdLZ5v8kZKLuc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.46.237.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49092 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoLooseEnds02TrSrvr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IPM0m+p4PFFyuWea5GA4oM4qxhQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6BX0EWmLlbxrTUsRHcT9uBKlghDwVtCr85CJI7JsKAk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:34:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.37.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:f1c0:1801:19b::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=630" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "enjutoMojamuto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IOqi+u4KZLeMKUU2ujv/DXSfAOk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+qY7Jor02o88MBs0amB0dAlAkHzeVNWSKiQQTQtDjw0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:20:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.147.104.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hopeforabetterworld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IODdOtJmGV9GIOgzS0z39Ro/IQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wFrX+YPSydZK4NtAc3KgmHhbZ8Les0kLH+e3Q1WiI4Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:38:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.45.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 483 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:46d::483]:483" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ariel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "INfTFzhrCwI3gQ7Qn2DwYUfOnvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h68bWu9JErr+s+9eGTVRrB93QXN89JSu71MHF71cVkI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.82.78.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:6c8:8000:22::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FissionEx6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IM2TPtxyYLGQQEdbJP1rAbc+lLs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fjJEKM93eeVwF03ismpRSWkvbTI1jPc7k29gMQrGzCk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:14:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.35.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:101:200::8c3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NuclearCat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IMrTGSF9g3vQ+htnGKRzwk/3ihY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uTYJnrXCeW+42nlN24YZRzP1x9Q4ryveaN4zEgOKyBI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:22:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.209.9.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:ffd5:1:222::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RockyMountainRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ILv/3XmeCd2a24ZbO5VggXDb4xI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WvRBOWI/6+0epkduIxGj983Dj+v818bU1YrRZVHmkt0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:08:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.121.188.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1147" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IKG1V4QFeITbi22QAmhk7eFFQvU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2fETXfFPkLTmTMus+YOw/J6CPat0VEJgLhgJABnwF8g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.147" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11147 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::147]:11147" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ohhiMarc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IJyPgXxmJhHRKmDt5xB44j4X0c0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FshQQL81zpN7d/6c5AlT5yFu1IfMBktJJi2Mg9Pd5+g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.251.167.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:6340:2:501::21]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kalleponken4713" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IJsoty7BuO5ccEMen+gr5YCeDK4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oh4lDVyrS3aeDL3dWDTfh8uUeo4v/qeyAM74yFSiyJA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.209.9.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=830" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cvbnet1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IJdNKOtmjmidQlYEbg4yA0N1oKI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mzw6w967chkAHlzXc0O1IBSTWrgbaYzdH+XfH6MipRE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.38.236.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:2:ba4:88e9:eff:fe89:3637]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "freja" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IJa8/ruVoRNPOfz4zrB2/0GitIs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v08QEMuD8+uaE2d3p3mTcyb0njD4ra1a4qmahaL0TUI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.88.143.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Temp123" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IJR/jZZwMdYYEBX2vQ+qpJ/I3bc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s0q/mTEVX18w35sCpPyrSBq+NV6DgDxNlLX0a0J9HJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:13:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "18.188.59.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 16000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RogueSwitch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IIHBaWskmn5m2v2xRzOFbWitthU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WbQcSbpRF7/Rm4ZbKmajR3WTSyd4DFrfeMPeiWVNYTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:38:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.80.47.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "contabous" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IHa8UhljIvheaWsZn+aww17vafA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DhPdRWHcSicxI4VtzTOAraHvlcRX0G6D52a05S42tn0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:44:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.145.63.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:a140:3007:1287::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kenobi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IGsrjBqx4gwCz+KpE6qN4WmYD8I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TuDMnvoVz5Qg+DVA2Z1xerNYFT3E7zGjD8ChBpjOp2s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.154.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EpicTor4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IGLG/kDtYynwLqyPuN47aC+ZEOw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BKxqCooqClKyNHD6A9ReBVo3gwb8jJEthqpTKr6qpFE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:01:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.182.84.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Arbutus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IEd16aL6SSjhWJueYwfLPRBOhJk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IhAJXvQML1kowiGvJWBU7FzFxpuCnUubxPnW0a+Xi74" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.156.191.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 55000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Janus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IEdoPd2lZCq0/JNBTKRAf+EAOBM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "srjV8TcFDTzAyXoNxoSqGLWYULTC1/h63ipakJ/L+Ys" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.35.4.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SXbqvQix9zBHtEnBY3R" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IEZfPf1396yV8xpNNXJvttgvDmc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q05lz06qpUH6nI9aAwotreWCU0KgHJ7R+XEw9M65ftA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:44:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.78.212.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "scaletor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IEYsul2kwtljVn0X0LcklxgRSmg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cSMhbFZiNjKbBq5F7xOQWa757+5Mykaikhqfmy40jWA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:32:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.47.229.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:47ac:23a::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mytornoderpi1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IERrgbMrGXuwndxO/rFicyZp+d8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ppVCruybVVlAed6FpHmkSgmZo1pVHkSndldIHtWlQ7c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.213.247.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LunaTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IDemVoxXcaXY/1xk/BgZJH5v7ns" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lEXzpuIq6WmorSC86GqDeArnGnTcNmBv1nrzjmFcYnA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.146.193.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bernard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IDYYZiU72xoHHX6tN0ThhwT85vE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hb4MPMwnf8lQyiI6LXv+0A7uIJewQUUDzd3BnfRR4sg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:32:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.92.238.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6666 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=990" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "n092c7283c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ICMG/mhaq8uEy4JTRIDFaBnSRj4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DFYlClVpNb2CIRu0o1RNmOi5JjQ3jtZswldbxjDFdvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:25:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "47.254.174.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=890" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ICK8s3RT3BaObLe02tEZrAcvLe4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rp5nl6m7lo05RN8XRPCFWJyRnene5zZ8RqVo9a/lakk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:13:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.80.222.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2498:f000:0:216:3eff:fe4e:7134]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=510" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ICCQIc6LhzL47lfTE6Nv+NyCPl4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XoiXQcsRt+elPQkWOe+4I0yBlstoTg3Hvps01Yh+tTc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10041 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::41]:10041" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0191" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IB/3Ns80BhNLKmL+WcgPFIBFiBE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wdfCX/QaPyUAE6DQQhl7QL7+aJRqCmhOGr8C5NztSFQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:18:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10191 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::191]:20191" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HEExitNode2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IBcVtlSoaJTA6jVRaMO7fD+GpkM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vpnZxIKXn+C/wfg1wVnoFPjkNMtC8kngK8NYyZ+QreM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:41:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.105.146.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:13f::89]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DulciusExAsperis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "IANjBHPltn1NiY08lDBnC4Ox/8s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zmjDyi8FxGzPEeshKfPUfOqY0rxVObkPTJEqNa9LnYs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:45:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.54.68.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mbserver" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H/TVkasO0CRHXpSWm+1Yxu+3FUg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GUJ/jEYg0qr6iGjUdbEwZSsMrFmDTGDf4u4V0DwWxiM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.135.88.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thewatchtower" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H/DlIcWyCFdg7zpQ1q5AA2pED40" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DLTRm1ycNzbOX6I/HinkY2aUpj099mq1c5GcZpUQDdI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:11:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.240.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VrijHeid3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H8VbblR4nLSu8fWp01xEIHiatd4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SoVqWql+Y0loT5/SBQYXNHbUXfmtBNTfWuMKG1h/xgw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.142.241.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:898:218::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PeachUnknown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H7nMvgLPEJeOqxaUOXOsXFSPokM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AUzvTngqvBlq7RyHxgu2JiIkrq7Bb0fnAwFHVYn0Lek" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:28:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.141.174.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uta" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H6RuWd3ndSs+IDEubcG3AnM2KVo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nAZX3QnkrwPcOr6XyLwkSZAp6cVht9vxBUkICUVK9eE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:41:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.181.158.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9054 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:c801:1:8::12]:9054" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H6RLxRvyQW0+RMmq1zL3sUwNHAU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "t0zEbGj3Aw8uuD2APO02e0Dp0UKNpq/lFOJmm7bhoKg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.102.210.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H5U6y/ufRM44VDt+nA4L4b3H6UE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KuxK6WsiPG1W6ishjTXEUTBJm4jgfsTAN696Ecjgphw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.32.222.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:ee80:e:fefe::41]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=77000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cducksy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H4bKF+wZ0LZGI5vEnuUBSpi0OW0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "naqRfpFEPF8pNem87mnMWSWMRSm0ieZvpU+cxwOF7qY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.137.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PigsAreWatching" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H4QrNHpbnHD+tYIGC/mi1aBsi2I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z7pp6EjHzdqkXiBu9e5qWPpTEepkmwpLPxtFckOFz4s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:23:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.200.41.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "unitedstatesofx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H4N0CM7OkPji25O/0vwSHti26bY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3obn58dhHTxaElkuyODv1UpJRLIsexz0X6yy5tW3QYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:56:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.147.58" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Toreto" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H3qtrr1hQdzqMg/oIdws+OfkS4E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mG2euJXcss91zsHudOBOOj9eSYBdAZDZluf5U0k9aYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:23:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.143.186.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:2009:4845::1]:143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ballers1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H3ct2T2iCmdF4zS6/8e5dlh2uxE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ntxIbTMT6Aic4o6RakkS+Qi6oGOsrbaV7aSIDOCOkpo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:08:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.57.231.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VPSRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H26182SdJXYkDJ0TR4lfbIoLeGQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "42cdnA5reaD+2eC9X07ss6du7cvlUrZWfRIauHF1fvQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.170.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9040 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dao" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H2q9CG9AuJCjPJPMRgbuaLMclVY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zCH1uozzVQYDvNDxLtE4q9d+GhYy8OsSxG+kAHIJqpQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:00:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.184.246.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:124:1009:1::171]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ripterry2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H2Q5J7z4vehb9HpeOs7WZjNUUfA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S+g0roXpEdPXuAvWYWrSPa+16QgrbqJIfFduEUJVUYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:46:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "70.109.131.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Perlman" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "H2Fu+ufUVpYENy75YM4nvMiQYKQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lk/rNjC0Dwxsh8DqmmwG+8NO/WyIuQ5PWMORqtHsUUA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:40:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.76.86.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wut4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hz/kQmO7I80sLwiL3SbvkdLjeLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rps6DA2K64etwR+VEMYFBCk/W3FCLfhYRwf+sS1oHKc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.37.137.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::1a6e]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ibksturm01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HzuPlSJj2+6L9VE8XRIOu1mz3ew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xdF5uGjFa7OF+1e4MVq90/7Su1W50gzDxe3MmoHbqWo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:59:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.196.191.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b441:8b77:46ff:9406:c292:7673]:9080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Cerberus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HzmOIOyHY/wt2Je82jfuJMRgaeY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Xt75/wIjQGbrkdP/4/Wy7lk/p1aBS+CxmAtnrcnVTg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.1.110.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WhiteGoldeBlizzard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HzU+L6vOgEkrFWVlorVDmvgWOCc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qige+tsGdzrP9xCP93XTIXY3A2zu9Gxt3FpmmqDht6E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:38:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.86.209.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f303:463:374::5ce7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "euphrates" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HzIpSQ+0Rkjj7m+MPuozu2zpdnw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xL7CQfGBKttMy1CMJdjfcShoRWo7FFaN8UUmq4ylG+U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:14:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hy9jTW2Hz2xTWME2f5vV+SbO8/Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6P+sYT3kRmQRKjey8FCv9Q8piuXvAOKUKvn/ZOanyk8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:55:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.58.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f8a9:c4e7:4dff:fec5:1e5e]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Citadel5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hy63AmjOnhjOhk1E15PiCR885yw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RmhjYf/nREd26VahyccNgc0TuKgRF/YQ8biQFsNP0Ow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:34:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.4.57.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:140:1465::2]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HyTCXgqX9Js/MZUCeATqhQc+0aA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fOzpK2TuTZBocxt3SvKTUIlIXIRexK2An2M/eoHMzj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.204.109.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plutoa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HyB3vwHK8j+BnUiSqJiDGWq6hCo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RNJZovZMrHR/hldYT86e472YaxQRCitny5cZNhhJOkU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:35:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.235.48.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7654 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:f80:48:37:235:48:247:1]:7654" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hwy/n53h43L5abox0tIU88pd3s0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6q5UFBJO6+VupvHGgmrQkk9BzpUyuc8v0RC9ALoMa4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:29:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.122.208.220" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=750" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sepiidae" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hv8nBNGb9FMFu8ylPitZo9F6buM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QTWIpq5HSpULwT4c1eM6HMJMJIUQybvVnlI80rH2i8M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.0.47.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cb1820" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HvuszSigf9ateqbxKTF31xOX6Rg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+IGRuJDj8PMWv4gJrzcLlp/EkW4syZvffH7lD/wOJUc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:49:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.3.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:190:7385::2]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "initramfs" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HuolEUcYCP0mMi9k1paayxiTZEg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d+1nyFC3Lrv3JF+MoXO4mdkJPhBgF+yw2vVgoYmBmBw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:06:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "114.35.245.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:b011:4006:1d03::b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuackQuack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HuFROfOJ/aJEACOWB8tMC+XdjHY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "72IOjDQe4yZdAwBaURVK4kPJLOekLzO2QNF0xJedPE8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.202.162.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "W4LS3R" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ht5gjF4ZDIaCovgnZk51hBYQRnA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9H6GiJaJW3BO9hTMhwifjGxwMtxL0NjI54dkf516gTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:50:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.156.175.60" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8092 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DynamickaCibule" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hsd1Akp/L09Gv+HnxYfarNxSBNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0INPfyrHMGF6iWRHLHwtogSqfO4XIGFmwYnnQZfTybY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.28.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f1f6:b1b2:cfe9:7a71:69d1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ailuuchequai" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hr/HM8zZUvf3YW67p7xrjm8vDLw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Vr3zCnGYJ5pHXlrjJ+U4WAgWDz+46Fq328Ou2XEPW5Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.58.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:2613::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HrpWx2SxxWviW0BchMgsWPEmsbY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ILpLy6ycKpHR9+fs9MjM4ssFTS71IBTWyERwbl89hbE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:33:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.95.39.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bobjoe1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HqUtHS8F6/6QuivuytewOcK9qpU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LFgf6T51bDL7wWTnxSm1akp/UWK33DIij/xecn7Mybc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.58.62.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:1700:6b8:800:0:8000:0:3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipdb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HpsyoAxZSwMll9i2od95tzRTFTA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZdA+V0ZIKPttcv3EeiSdivN6IZHBDfVrmJIoXeKA5Fs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:19:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::243]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HpRjTMjTiSeaHF6t7G6BcXnXT/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7mRgctjn5AKr2tDTeb9hZ8+jgXff9lua0Ak+94gQ2ho" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:22:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::29]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HoWY4eKnR+dZlAF+aVc16yqGYw8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VeyW5BL/B5Q1T4DNH6FlWWApKyr0a+ckRgO6o9bE2CM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GoodColours" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HoJVc/jv1WNeXB47hcpkfPyEuoM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Vnl0GHclddgvzWrfMrUCpHuvkm9/9TrzBO5kvdKLWDA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:56:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.105.163.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bambam" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hn/jZKgUNAy9eaorM2XnGNOxpnw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1UAkYF37T8lXdP7pOiFzd1rzqIeXX1THNB3LurHyvTU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:56:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.231.149.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39062 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "masstorNY3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HnOsOrvVUAr2hQwtWSw2NzRFT6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "23OTNBIti+L8Pkl1nvt68vIEnVawwXUbYlNkGtD8+Hw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:04:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.173.89.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Doedelkiste16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HmTazhN6SmIj56SnMGCiLspG17M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PRvy/6jKCr7EgUvaGSskdfkKNfod/VuX2uYLT4H+rAI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:16:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.143.87.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2fcf]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Blankenship" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HmPCztO23c0QeLKk8QyKSL0sMaA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vwUyneQz2zJer8ROXZS4uUO2f3GuiL/h70lo+7GYEb0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:29:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "13.124.18.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hazeltine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HlYYwHnXTPmuDFNw3kxuGv1cCzk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xSoh1yZQMlXVukCSvuE1rBRNSR56vqceI12cZVUaoVs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:30:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.113.216.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex43" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HlE23cUvrhIZII8Ka62wumJYfuY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xwJH781jphRacXHrYVKbyIppE3vi4xsTIuvv62KUrHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:29:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e642]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HjwZfIySISj/BJhW4FNv+ctOXow" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JHJMiD3Vgr5eD7WzCE6ykIdLglkIsn4Cf25UTKH0xRw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:50:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.192.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:27:5d:34ac:82ff:feb6:2d2c]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "slotor03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HjJu/jVauYkSJyr3JNWRdrXCN5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YnCM5yJDkT+2r2NH3mH7cw+Pp8qUI56QZbEMRKCznLY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:53:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.79.221.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "redbeans" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HiOj4IHiyALs5hGQwhTwcjpmlxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EJVbSdDu1ikdFfR9r7jLcadRStt9YPcrnHqwLEQOzkw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.35.130.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=45000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "allstars2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HhvvLI4WlawCHJAQQl01CAIEk3s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XvpV1NRHladCugP7Crc6FWXRvNCabKdTKZ912dXbPuE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:19:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.79.170.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HgbK07qQm2dhjkjIJQgcQK83/zQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3FWz3OS6Ugk9hiJIWtl1sd23+0kb9An3eTJU1vxLY6M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:47:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::d]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Goliath" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HgPYHJdE3g48nebm+98d+drqWvw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TOFt3zjpdu8hqIb9Uqn026gAktoE/rhd6vMcn3WZTjk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:59:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.83.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra16" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hf45dJPQeR3mPy1upatuvLe5hxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ixd23b/En8RhZaTHqIF7obj0zQjzyITDeCKuwF3iyy4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:48:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::155]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Charybdis2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "He7NkGr+z0lrfcHkCCn0VjUXtMw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CrialbvMQ6F833cCIzkwmr3E1qLKrSLHK+RNPeahLRg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.205.161.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlindedByTheLight" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "He0RMFLxpGoAjfrOv0w/IMYxPUQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WbnEnqeAu4GLD/RBb26pGotJVwPC8pcVuqgzJW7txak" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:34:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.11.57.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HorrorPicture" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HecFBMbpuyI+LsT61FxowHpq6fs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZMdqtvEtfLmXbViYz5ifV70Fjb/jwiAZakzlyviGFdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:29:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.122.181.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorUser793" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HeRDw9nA3EuwFEGA2vSjwlu8kew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RhZ5eT/gZplz6La9dBxB8YeCAatR0eCYhQp30vwZjGw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:34:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.19.96.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 27941 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2430:3:2500::d3de:3e4a]:27941" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DETL0001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hc/ksCIWVwSX9+g6W2akP2Hc84U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "scXDXCvQ5qxfn9bZmYX+7w33YHCi8GkjZVoFoH9uzh4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:03:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.247.201.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GaladTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Hc9KAxr5lM8Ws9P86+wO3KyQQhQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VRfVBG8N5aU0zuNO+kaTYGlzwpzsDRpurwZ44wxb9hE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:18:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.182.171.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:c23:8429:c500:ba27:ebff:fe7d:3f4a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sgtor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HcnfKEL5W1Z5DwfapwvvqfEUSXE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ymQHQcok+1UiLGxpLBwC/KVjvMmwiOdCS1Rl30ZU780" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:08:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.188.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AnonimaCasalserugo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HcQr14NnHih5RXIkdYg35n/H5kw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yCFbEqANuNVs+DZ1RlXOtQJdixbiZ/4AOHTesqWYBj4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:01:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.41.243.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv128" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HbrMMUhvxnD71AP66Hc0LsaW1Zg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4bia/Mrpl1hjEPNQR8gpSOdt0eV8rZLt/S3kdaiPRvw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5528]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HbJd9Z2qAbW+PTzriv7RFZQOvos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DTz/pqAjToUDRcZErjt00Y2BR37W3BbBtV8XW0oiIqI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:41:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::104]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fenrir" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HajW4BCSsglo+Z1oYcXVG4AltRE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LBjklCIBp1sfeH2tWYKVaySXHiMOUndHgORsRTWL94Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:16:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.59.58.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HangTheDJ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HaiI1H5D7fzGDLwOH98MikPWQ0M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h1SeX/cI0S6dOdWWmKRoswSu7oWFbza1cir98TzbX0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:12:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.77.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "incompatibleultra" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HZ6nkjHN6PxdUYECKvjPBtg/4Ik" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qyc3QMiZHu8wOMMS270fz58vOZf/tm75cVZz6Ft3aro" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:24:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.73.87.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MarsBaseOne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HZqQuJ4/9jMlquEq9zWIKgFlLhE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d63P2mejZfcc3b2mV99dDqoiNUPD54G9iSt/Fk3xdsQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.230.136.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "boxendotspace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HY7VTqnfLUZVitAJbdXZ3Sl/E6g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UJ0XXvVD9zm8c0SuJGndxZIj8kUrC8CT/54Q/4Of/lg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:40:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.182.111.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HY3k70v6ONNm/OckncQaVA2OHrk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mSK5Tckjw/alIf9fwu+2kfAc3LI3EwsU5j6/dc/j4mI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::197]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "friedShrimp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HYrMH18o1SRGMD0eGXoaO5/YFQU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/m3oUEc3GE86C2c6SGSQurCkgD4wKr5vjsNOpDmxfKk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.193.115.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HYEnIhm2edURkwSZrYKGvNj2xEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9PyCo1rHAsxTq1CBU+B/7I/fndlcXyRMlm1NjVZNf/4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.201.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 44100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fe4b:98c7]:44100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oppaiTORu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HXo78KiQZFwB+uZZCgF7UY+2Ocg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ryojvk0FSmz20N5YosQe16azHcdUAV0Gyk1SV5QRyFg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.116.217.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HXVokN9CxQ6cLp8Q2v7TiDklJ9U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OFJR84apw9djhu69RVQRjA0cFmpx2odwSekv/mkFU/I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.54.83.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schumacher" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HXAtpD1Yj+nTCNOHmm9eYbsuzPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1UJ+QZkUZzzhq7oy8fEO/El01MTYDTNLILCA6gnMypY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.147.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RevRun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HWgZ1YMoUUqUcIJdawixDulfDaE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+E7YnFrGv7Kny67QZKpP9z35fEfLn6td/VewquKDk3Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:15:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.107.195.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TakTor03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HWV3Hmg4PylNTxExsZ32SYnu34o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ki1qAZMpnf64W/4nJK2saZ3YjzaRUgUBsd30+7JBO7U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:56:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.46.166.157" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=560" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay748635" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HWTBS343UEXX6bNacrcRvi+Hlkg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J9RgWGkw14mPg2eOp09IXeHI5RdAfu4vB1ywKmwKL2I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.209.77.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9846 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vuela" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HWGonxD4IYZg5JWOtUgrF2ighfE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DB164LzNHLkCMOREIKahen4MYE7ClOu1HKeJxsBGA3w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:02:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.11.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "darklab7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HVqX0z3ikF5Y5qkna78W2eZsg6w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "guskGTH0YkqPYHmPvsD4IvA7rMf3PygDvl60RGsU5jU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:43:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.30.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=92000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "isbear" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HVT3zLfHoYXuiqVhbAed2SPrV/I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BkifAz36DdVaFoYi1QQiB2/NZx4YK8TiXIXdIbsEjaU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:16:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.36.117.185" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BaronDeLaPwnerie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HTiU4kjPjasbIr6YNXl5MVSNwGw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "boAs4as9mtPv7/1vfvOz/ZfqUdRhGIYLmI1J3K3pfLo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.149.184.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9668 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "criticalmass" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HTF0M4oRMaU+CYRD524RA83tANw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pJr86vpl+YnmQx7KVmqv3Q8SXNPSkPcqhuIStfWA1Qc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:35:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1::4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HSQpIRNhDwCW/MVUZk7DO+J6T1Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vmqxDTlIT56lyK5PWt8c/JFll4Zjefd5t//H9E6yj1g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:58:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:3560]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "K4M1K4Z3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HR+lDWBf3I9tw5oKYKcjPdNdAAE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H7dleKz3Azpv7t8nbfr0YCtt7MbqaWrl2YELn3YbJSM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "191.252.111.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=750" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HNyszAaqYbyNZ5T/otokivLntis" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yj58yVo4Ue5SGZrSRAStfOO/uC/2VL8oyIBG8AvcgVU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.248.163.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei00" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HNSPTtDxgh/78ZQIAqE+79TCdQI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0GaPlywP8JIgmhsFzgRpj/4R9w4BxN6oR0Q3XHjoeb8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.40.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:150:518e::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=93000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE68" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HM2ryHEGeb8wr8D5c6iwZaKThSk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V8n4uSp23VKseSP48YAUOeN5X+k1WNr4+zmwwLG0dzE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:13:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:109]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lamacarena" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HL5UpA0cw7zaZbqPyR4SwKAa41o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BhGVfO7G2bSLEzrjE2kZY1LrdSlDGgSt62rjf+2AI7o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.104.194.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "edayat" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HKJrD1EhKY/g0QRDEFEQEcNAeKk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6IHhAjAJsfjO0cHqayTlxLo740FlUVC+Mn5obTETscM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.171.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "firstTryFFS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HJ3+RFUlGsk+OmKPk78rmswJVtY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N2Gzji7gVbNsZ+QNKGhmu0MT9OvzBEat/vXPGCUFudA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:07:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.11.240.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=930" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StrongFlame" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HI7QQ6FhF0Y+qcHUYFYAMDP2hvc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IYQKraF3b4IY32SzIVA9OgXJesERt6T0JbwTsowKZeY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:08:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.58.85.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "T0pS3cr3t" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HIg/rJpafbwku12dE7RHrnxOM7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zr19yp2rX5C4LxEZnEWZgwHxBKmFvX28kqiT1VWENAU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.120.37.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheRock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HITIkZiRHQyJYqplw+TmUwB1OW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/nf5nKizKVLorxp+OPbw+1SdqUMMzENtV1cWSMNiijs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:12:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.151.213.200" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BabyOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HH1xolgd55xc/E7R/3XVvjDwG7c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rpY/4/auA3J+fM1y5rudeN2BA864NX/6ywatsUoXloU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.243.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:62c:1a12::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HHznLAymVka3JzwbaxTIqiEGkL4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rDo0h5zen6wiPe078eT7z2GnV4Kvn+OoOIpKrIl6TQ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:36:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.192.246.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HHxoQdC38QtyYI3Tf5kvGGr7U0I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5B+YfGXpUVEWBjl1z9MI4EE694UV9vC6lnEJbSkppDI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.58.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:8bcc::1]:10101" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RIGALAND" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HHkmFVHg+Tig05WeHy10pLSCY/o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KS4bJE6yt9SO0wHUM9IeZfL3yxa+28KY8pqw3+yvntg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:58:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.114.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipea" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HHcAqU27/s+iNMGt0NI/uH0ddZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ffAoC6mTHJstwVq28sDIXvzyalRmRH7bF6Vtjj2XgAs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:06:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::244]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nerdhere" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HF/KIixrwpdCSqoObJdpyYw/J78" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3j34gdwMvaxRjcuovyF64espCY3SyYreI2w9hmZYiMQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.61.187.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "d3xtor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HFPyE8m7qy6zkBXdWhvInOFSoPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EKec2g7LV8bRanM443Mooq9Hl8j6QBzjgtQ5ji3gRGk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:43:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.115.185.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18213 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f1b:1cb::7]:18213" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stvnrdgme1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HEozUH5AG3kmPQKNGSf09UrYNYQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0t8FG0zmGC8oAMs9kv8bjtqBCf6X2voqz1szRHyH7fE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:21:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.1.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 15901 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:4010::b0]:15901" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "VrijHeid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HEFHveMe1lcV/hzwiFcOFFv0aqE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LR10wNuZ9nmF46h5PzZgpupDKZr+VExlRFHkjPsFWL8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:00:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.142.244.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:898:218::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange020ca" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HDxK7wNtEgLuxiMijrpftxkx4qM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MQzXjvKYULFeh5paxc8aHGWcJaU4NtNI0rXLlGph4ts" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:35:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.250.191.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theherosanctum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HCHv4xugtVsTWVl7C0bzcYTfzL4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A+vcC4hu2QPKGuvhz0UZVVEfLmS4863SsBhw8nDq3iU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:20:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.255.4.48" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SpongeBob" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HA0K8/8FzLuktu0mIZakxadhAuY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sLl12qNdugm70rS6WsQx57z09KEqCTRKLv1378ggnbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:33:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.76.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreedomFries2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "HAc2zzdEo7h8LSJpuL0ziMfmBVI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uQaKwUK3eWU8sJom/e1x6zu51KUTC+d8QWtx8+bE2Ow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.246.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:10b:3344:106::106]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=63000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor3e3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G9vpwPcDTmeJqb977YK+IEXw9bc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HSS/bDqNy1j4FZuLSPzvkjx9QaN+lXFAjr33QFySZNo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:33:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.230.208.148" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:418:6017::148]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "funrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G9ZGK4VnVOnIJrIgtMR+WdBHkQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bVEc9iuoM9lT2honXacmoM4ZCh1dkbzIwtsV93GjbRc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:39:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.59.12.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:601:1100::4c5f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex77" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G7yut2PKRt61ZaclH6pqx5o4it0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yIfZFbMTcxZhUr6NZrtBRIshgyLfH+KoHPwNZ1PO2Lw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.166" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::166]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nudelsuppe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G6/Dv9HjnLb3WRlaiQfqealJb+c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UKtx6139xyNNXAOvkFyy+agt/A445qShGSfHeXRkS3Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:43:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.147.29.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 43903 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:908:2222:fda0:91e7:5d68:dee6:b225]:43903" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "finely" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G6jHWGmXo1FEzXcb8/2YMcFTFdM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1vuIbjb5UhX/hiuSPc8jZVlOMzKIjkY/srhAkM2yIeU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:47:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "153.92.127.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange017hu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G6L5Q2wAGKS1JiXQcbcvZIUit0g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aGy59FmYVY7Z9xHRacLz1W4tRJx6e0L8jh862nYwe0c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:50:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.229.115.23" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G5+s8l4X0m4wfqfPp9RVsUSwMuU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hVF8zgVNMuVjeQOHImnuddJGMbq+nj/hqCG/sEH4w0E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:52:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.94.251.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ididnteditheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G5hGgJfn8/8QKSZCPfRDFeQUy88" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kP60j/UvRquFT+xspm/HjASxnFdfH5fjfuXJ+9equvs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:43:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.89.112.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kibble" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G5Y9DLXPEgv5XMIR+aV3qwliDv0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZX0FM+88WVB4wbj4AafFCBIbQL1iqgM7vC8pNBxVjCM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:41:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.165.241.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:4500:8:14::4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G4/E0TRAfFyQvmECE/QRtjrVIpY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KOmZ7hpEFXYUdVujcFQ0tbV7gAgaXBrsSgURqHtdaZA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.235.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 25028 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=85000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HeastBistDeppat1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G48AYY10MEa6XZ7ECGIgrH6h33E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G7mA/e3HRM3LgvzA1QtYe/4l/7kQ/L/3Wpj6YKpoVlE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:32:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.109.75.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vulnerar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G39Hgn4v+v4FuSscWpK4+aSvZ90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V+oFZdffTxsTnmGmTcu2xVah/h0hIr8MOyJGruJPs4A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:16:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.90.179.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aemrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G22f71wvnGtb88n6qRMdabcKNbA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lDanuu3zahqiO6XLuMVL4SyqKyF3z8eQRewGOr91p6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:21:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.16.217.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G2vLzbOENktvtPNXbKcK7PwINkE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NByz6DuaoFDAqhrk3mU4whx3BAUrGDH7N0CQDpJLMwk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:15:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.141.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelaymirror2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G15416HrMgdLO+LoPMzlC2mbeC4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mZXVRAJ2XPme1pQq+8fyOwbzzXAkESZLyB5T8ctdi7Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:59:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.230.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=67000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORNODERELAY2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "G1vP/XOQlGpuLbxSHdZjM4bwWPM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YvJu0kNwDu4wP1kRJMougN+szDPWFVh+PIsFrSE7a8k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.232.71.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4e:cf6:a47d:bbff:fe95:9658]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheBestRelayNick3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Gz5I115/fmHRubviS6FaOLRUOA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "G4Bpx4sqMU54uXPowcXWENrs6ZibnUZpFiCn0J0pCvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:58:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.91.91.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=850" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BSSP08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GzCYpxHQDs1ChXbrLoaO1NIslrE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lnf0YNrDJf4ZDzbeXQbf/Vrffpd9NTqgeVY+S8D1wxk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:46:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "15.235.29.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bottles" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GyiScY1m4Qff3sj6RzHVKJnP6XA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EC9ZXHIbRwxrzT645Pt+By8xuxPDG8M6O32OFvKLt3I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:50:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.152.33.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:9000:0:35::939f:ce9a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber54" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Gxj5hTRjTvTrSzZSPwUvTYKeBJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r2Q+c7b7lGPPV0G1wUUQeRYr/G1tiAth3KURXbN4/Ng" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::27]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who7USicebeer05" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GxdLD9qqxQp4sS5kFD1H7XkiyO4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "91168Hnm800z49BUlmknE6GgtHKH8IwKsjwhj5LEkBo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:12:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.54.190.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8088 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gigabyte" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GxCJY9z5QrbSYr/cQw7ZvRlH41M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hdEnvIzWo1ONYBWmnjcy75hnTfzEhtZLDKHK264D1Hs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:49:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "161.97.83.186" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2077:9922::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RagnosystemNode2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GwzNutr/mI6Swg7kpR/y0Twzt30" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9b2597OaTzbPd5eG4MNyZVkjt2Xb1hHusO1pneebFT8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:49:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.220.0.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex36" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GulJln+Cu+dTSj1rp3p+vhztQ2k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gwDR98qpyMJhn7//RdcTHmbI9IehE4YheFaXuecSCjs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:57:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e655]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GuiYFENLdcOjBGB3KmkSvOT15GU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ni4DLq8IDyDT5pWGeEuewKgmnA3FobXpQQciCf9OWx0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:42:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.124.104.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39888 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uknd" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GuHL2qyN9xMHQ3ENig5ZgVeHPtU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4KNUA4xMkm6xnvT9fIT2TvRZXYXGqdsCUoF4Ll+IWt4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:56:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "61.4.102.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=770" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ichotolot60" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GuA57gsR23nktLKcup91KGSgJZ4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+ZmBIDFMmXQhJ6ds/mXNVo5euA7QmuQQXNzspGOOLUs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:27:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.7.14.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::1fa]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "948794crazy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GsstAFGRtri+LibAIesLoWR6WrM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gGyC+WCIlpI9mYZr/eBtoawqB4PWkFgo33GpEDdVVDg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.193.127.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GsiIS5wdHijex6JGEPMenG0sT6M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "942nLU0weZQYqplH6maFEX+mjKtuE1FDzvgdm8UUwKY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.205.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5b:563::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vsm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GsRQg+vH4CcgwTJUzqP3sDLCSOI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cM0F8X3GBjaAa79cRgwi16dVvm/YcYFdIUJi4Q5flB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:50:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "170.133.2.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:5429::b3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sdIUe8f" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GrpC2vbhf2X+L7/5yi6zaetqaQs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hw7KA2fgfcq8bXsz7gldBLnJDtBF9feX+TBl2gn1bvI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:18:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.137.123.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rhabarber" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GrXleoNWyUgDuRmf1KmEWFTmoKw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QUFIW4Jz5jZThcNJojcTVwMZqV8bMDYr/rmC+ZzFJ6k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:18:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::12]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Gq0BX02IVBOivODlgVkRaQEjbEk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uJ15cu/AA904SY8z/+GuAwSo+oljclJ+Z04KIGNXA0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:49:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.143.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GqwZ2JL4SRCrlMRQkiQaujz8TIk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VZg+eNj899hy9A0exhmRStKNltbqCM/YZ7D0NrR44ec" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::208]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev2b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GqaD4DbqEKpuB41ASYzHI09kJLk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qyA4YCsMg+FAJQgZQ8Fu4HmJ1RJnnByv4a+CiJeW2TI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:39:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.122.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:239:1003:103:0:1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GqY0dKsid6lE5FJknrGQRPITFOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4PsL/KL7PSyG0QktLVK2YgCeRQMCY0loX49LjMqxW8E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:23:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.158.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:a5f:684a:58ff:fe7e:8bb7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dotsrcExit1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GqBCqoATt8eFPOKniFN99VhJhRA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oW9jYrWvcnO/XW9TzU50sYUSMakMy6BFg4fvpO8M6qs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:22:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.61.1" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:89c:702:1ce:1ce:babe:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OpenWeb4All" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Gp/CuU4ztrTOOM0N8lANTCRfuRQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JktWo5owin9rm13p7Ut6fejnJElSf42Np3cpnv5kagk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.55.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:20:1dce::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blablabla" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GpOto2l0dnpjAh0Gkf8FgaDDL+0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4TZMUncM+ApW+OasNzbn/nW6xb4CvE5zJcCFJGW1QPA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:56:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.206.225.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 18049 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM09" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GoG+4FT+XGIloNWBadcpJLJuK1k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3pdCVbZPXIwsBgh25HF6cCVRFe/kYOO0NN3IZM9yUlg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:16:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SimpleRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Gnf+BdQAoSKEm31cXjTpmrDWjqs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DduHC0b1SVEMZrr6K97noW2atfurrPV7X00eJtg6cUs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:25:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.180.191.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:c801:1:20::6c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pad2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GnIxbKDWmqG3N0V4mG1QjOgtmVg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sM1QRA/XmJpYcblg6EnSCBTu7dN2wvxoefAqiA2uagY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:09:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.161.72.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4ff:f0:c4f3::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CoolComputersTOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Gm4nh9Ogh8AMHHpjfR9jJErrCog" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0ANvwqm8/d24eWQ9dwjHLQSCQHneH+XFoGq1zzSAt9o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:22:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.99.156.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:c5ef:6000::1005]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CoVna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GmbAKhGdb4QvVQaF4AUcSuI7i+g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Ps17PRe8FV5+PhkwL2TUdcNQyVS9Hlqk0m5TZ/JIxY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:25:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.62.103.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "klaxzynetbox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GlRhx6GBEExqVFB7/5rj+D4uHZE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uTqLJwkEdewpZXcxhWzt+SKyVl3B5VB8+/Red4rZxsY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:55:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.209.159.59" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 33443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:100:d0::9fc:5001]:33443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "just746436456" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GlLh6pXqHAXmo7ZDqprB6H/HlvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wUan130//vyEGkx+QrlhuLqebmwktymeQS9XaWdS9uk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:51:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.195.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torquera" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GlG9O0vHUtF1zFEj6DwJnyoNUAQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lL0X3+hsHgdZeUOYyVLXVL9wyP4kSGtcmYGTYFxECYg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:28:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.190.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:212:5f50:76ce:2825:9c75:d720]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sorapis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GknkT387ataz3gANHyGJXRxQXvQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2s35YmMUQFrmoqxezJ0gaQ4ZNRnywES/23/rnYzpz1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:49:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.1.21.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 58097 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=630" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "brokolimc3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GklSjTuyI2dp6My4SQol6kR8yU8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Rb00nGMGS2WWGLWm2ZD6ImAzgi+Mk+8IbPUJ1CdW73Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.114.40.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8081 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SlimTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GkSZW1+G2t7B3Qy6uhXBm0TI4N8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jIkZqwloGm93/IdqVkA40UnUEfjaBDT/YosyrSkt97Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:08:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.184.41.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ohrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GkJa9n1FXaZS40OlOuYUPkL6uKo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aJfQ/KVjcduacaJTY7x5yFPvn+MSAs+YgAcpL0Id4HI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:44:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.8.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lana5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GjYj++WyjU9yKQZ2f/qPCrfszB4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "haQKakY8KENG9FjHru4pljybXIArsxp+Rb/671BmBMk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:21:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.133.0.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2044:c141:0:1:4162:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bilbo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GjKVQzCAR7BTIfsbkYKcQO95/tY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GdRIiYystV+4TmVJGH/dOpzghl1P7SN7rhPEMSCmDxM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.156.137.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9900 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE69" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GjJH7QpymBUNrWoygitZSKtZ8A0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H+61T2XYK0BGalD1AYQD94pFiHc7jaXvJ/GbLNV9B7k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:19:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:10a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FranxzkfchRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GjJAtRVKmpFQlxgJFPGDZgmY3U4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bli3Y4KfWHx4u/mImrhsQP5Ekmki1u+saYBoZ3az92E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:23:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.244.94.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:6c01:2c38:5400:4ff:fe23:58a1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GiQ9pvY5qcmbQ5EVjg4U6JwpdUw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VStGi+t6PMXKI9qKbZU7Zj853OhH2sSeK7Gnkrzg0Rc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:21:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.159.107" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1d:2b:349d:c3ff:fe3b:87]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DebatableMink" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GghzZUF0/4sdZrAtqC1Grd1GrEs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jTpmOMO8mt69WnYEmICcfO3Lr9PJCnFoFOMW5J771ww" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.68.113.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:2098:7239::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lUniversMagique" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GgYW6x+1ZAGlYQLBD8+mnnLa/tc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TdFgcf2gvRsstJfHmGE6Lu92roN7gy8ptsk5nhzhsmE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:32:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.123.9.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayors" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GgStKzoGuUnosMpEEr15OsJZsVA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "21Caqq3rLuSnbtLIi9s3z8RONhM/XLF7TsDRcgQHyPg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:52:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.68.250.161" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 6443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:1748:f7df:aa11:ccba:3846:50f8:d881]:6444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ABCVG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GgIKQU2Ksl9UQVyMHnWlViqd2aY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IbdfHGKoG/aDEDfJp+TCBgqOuqvkyP7Lf1HJEIPcKLs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:30:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.103.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:2736::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=880" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Noaccess" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GfkDE7LA6wPvw0dwbyc16Bh22EY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rZZuZHeYcwXcFM430O6Gh5l0OApmL/eqqcLOOJ9gEIc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.219.136.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayletsgo888" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GfEVJthFKk0EYX+9/lJeOaapbvI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iKEkEAhCH5MN1JY7EE2ai36Qr4QNtqwXDRV3C3nH9g0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:40:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.65.180.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TouchMyData" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GeEK8VEWCRZeGTMKxJzP7OYBjkg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h5Y1cFhebYZDe27f9XLpej2nGNKuVIn/tAmWKi5fcRs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:05:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.75.102.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tawny" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GdDwKLrdEbedxYRsHXVJdnLoVRE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5rMCF2vhcOXzxGR/TP25iF5AsId9Crxl0vY154vvqe0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:49:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.137.100.160" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QECm1r1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GcmQb8tksSpV2LOB9XMaBRIOX9Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hl/fhK/tlPknk8XUsImCeqXi71nRl+IJuKpJe8uk3Mw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:24:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.136.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GckwBDy8ki+E40odk8dHykTBYjA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SOpiCz/9uUcEZiu5B7QhQxM9zQQUf3XAvt+ugaCV54Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::68a8:1eff:feb0:68a7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GcTRx3ZBYAdT6T92CQn8lb+6lPM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p4cmEAgLAG1e3xWyQ+L0RQjMh4fVySqx2YpX2zuTT3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.229.73.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RocketNet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GZJIikaA4Bq38KI0HtpHNzG3jGs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Po1gVLZBIBFcqxdmaAStrrUsxbagzpdShcnlj+IjExc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:14:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "169.255.0.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2c0f:f2a0:0:1::132]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blueflagrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GYuSqYR/Woybm3+LXutYTTViKLQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZKS1Ih0JslpWQAMZoZHQi+SZ12vnFGJRPOzvkCnzHm4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:05:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.195.250.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8907::f03c:93ff:fe7a:9df8]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tweinode1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GYq9tJyMQf/fej6NfOexhfV1A1M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RKxPb2X24f0K07ylh3amR55qIrNdnUQyRhE8e/kdroA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:26:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.38.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:4255:c100:4e90:2717:4cfb:4a91]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GXkMIfLmCsJT8+rG3TCuktOPFSI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "urPqVWiJOC/Z1NoxoKuc7FCyU9JZZf7x96riCYZZEdE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:39:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.169.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GV8jSbgobdl3ao+eZE0O3RuMlTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZVbuGXCDqNIiXguQEm2pWfAZGvCDgbuHzG1rQSkBLsY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:04:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "132.145.57.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev3b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GVcS6W/RwbGNFNCenk56ZBbiOyw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qcZQTzH3/VxxCF6ogVGZmXDR55tGxpq8BfHRZmcGFHE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:36:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.122.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:239:1003:106:0:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relay08V6Rocks" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GUSpa9UMeywKfEuWV4du8HxI0pU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Br1J1YGnAsI4l6SGS1cvTAI1pKHwVxJlhk8aFRjRl28" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:10:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.50.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d51b::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "animator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GTLGsLPRX2zaR2MvsiV6XfO8AU8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1C00/l5tu48gMPdA6zPIymd1kIu5GU7IvP/4BV8AGR0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:10:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.254.18.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BYv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GTBlvnqsxylbsvyErnHcIJcO0n4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Pn7P58sB2ne6oqmfwF0EqCc14A7L+KkFVfmOhD+cnQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.81.218.189" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WikiHowRecipes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GRyCbqkbn99F/1DgHbK5z65xFO4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y28BS4R8dg4QB2IqBaWhZNb8gr/FTeAacR6mxNy2OrM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:12:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "38.97.116.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gaunahTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GRcwBrBbYRnZZrc652d9ce9SnPY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tPRt5okIboZohQXbdfE/tUPCbXdrKk1jy34O4aXPeMo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:03:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.212.236.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3006:5899::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "homez" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GPNK5lZ/X7CBxDU9Xtpc7hVYEMQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "loPCmsiahkXaDHZxMmveI/M4CO3YNAgUWLlRR1zAU/g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:31:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.165.192.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GO94GSXt9UYzOKtFDvDFbFyqLxo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bWpeRy5uG88FZtoGEjLT6DpREfrnietyJmogzE2ky+Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:08:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.24.239.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:75e9:1::10]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GOy/w6aDTLZ0FGQMfx52XlQs7Sw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RO/xVMg+HwKBVzTv+nGrZTUrHGWCb09AXf21iPKaWXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:39:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.91.92.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GOrSRlOMUP0IWb+XbE6EAfyXVaA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j8DAJCvpZqrJfBqUAiCxKN1DjOmMi0c0ktdZJJ5mkb0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.18.194.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=430" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex53" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GOdTIUzYJyRCgLvTaqxPjnCz7o0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CtXGd2YiY4lYTMCRw0Q76jRRYr1YqskJsHw8FdaQtvU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::142]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "malvin76" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GNazh9TCnckEKyJBECDcsFYm3nU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X3RfCb/bHNegeXDpRKy0OZ7b5OTbB+Jh/xbHmUiAy1w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:31:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.146.101.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fractalia" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GMWF4VPfvMQUuCWf55lLpSC1628" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VZVkcb4cxOmssBVaMcdClXeJr4tCUQgvrVk7bYCtDIU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:05:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.55.177.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:bba4::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GLEz8w8ukQd1yKel1LkrxszsBDo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aMe/DlBDkxb4KuYEysZBClkTLORaDX+sydJ82FlmBfc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:13:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::66]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FckPtnNRW" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GKtpHcbVZCz6wrvW+hFI6za5b7c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pgBMl/XOq6lO0wn2b+Evrz/9orox1gpirdhnSGFpJNg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:07:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.225.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:56:cfa:c833:1fff:fe70:d8f2]:9090" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorMePlz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GKXtS5qkNIgydcFdbPP3lbqGdEo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IQ0IsXEhm2PcNJN3l+mn9rQZavmu8Zul39uv/3PmlxI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.154.159.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GJxE3QYxLW34+1epROaBn/JFdAw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EhYRpU06GlULzBQYW7/hqk0f1BiXKBsZlVK5pIgvM8o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:10:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.102.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:608:942a:42ff:fe77:728c]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "igel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GJMEG4b87Ros4vnixZh/U0t9w+A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0MAqQOE/UgAemfX4Pt8ecmnRNUZEZUwQJ7pIJnaMXdU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:48:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::66]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TOPAS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GIZzzzk3RCUXMBgA84O+U9ShdzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "W+8JwYeNzN5uJC+ZQXdWvpbycMEGn9lDZmLhkyoy5Co" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:35:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.117.218.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:9e8:2752:f400:e65f:1ff:fe00:96c5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "faceless" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GHt/0EIPUe1cv2stiIg26m7B2Ww" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/FrxcavXSyg1dbBHXRUizUU2m3reVeGwk1DRPm58GQI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:41:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.217.189.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GGcd5QksZ4g7+yRQwyZ7kmGL7GY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3AosPrCiQl7jtg86n1rfrmcrw7wnA8E8gFlee/muu1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::208]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CloseOmega" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GF8y3uQ8pG8S7eBhB8cY2wDp/do" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C8LrJZIhMcoI4mMf1p00yobt+3Stt5q+X2Nlm8HQLSc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:12:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.248.147.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BoingBoing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GF8qV7DEYgWCYCdhCX0X24FlT3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JVt1SUcAeTsLiqM7KLlEt5JosKwaKMbnGmBexraQXds" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:42:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.11.50.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "golferjoe" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GFtsHx0NMq3yW4mAc6YV3Q/BLag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MnwDfSduApX4a7dFn9wJ4O1uQoKm+g4y+xb52dEBHwo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:41:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.162.250.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xmtx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GFBYW+m8ofgNCgUZCclOSdHEntM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8pk0r/7GqEXT87YgXXjbFM4Z/3+eKeA2JtD4j2bP1CM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:19:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.86.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:530:a0a0:eecb:33f9:1f82:4621]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "squid" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GEdPiew+ir5AFItCTI3VOZJCzsE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vIpN2Q9odGlEfpWKS8TKt+wDxQiui2Ye3/EtEwZplsM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.93.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "32a3c0b02b181e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GERtMHNheQ1a7zakLwz54XCY93I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gLsQzrWgEMqw/9AXrmtiOamlHg+ptXnT9+ccaH19ReY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.198.184.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c012:d85e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SchulteTorRelay001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GEHLlgEogGFRth/G2Hr76amLmdc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FxXibCZboI1a1GhCmncfXUR+yDx8JXgMaNeHujHNBZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:24:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.70.211.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StaySafeHaveFun" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GC2V9SfT7DMU3w9Dmpp9wz9Fodg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jc9V/vPLJTBkY6xYj5upYr3H0jByjLfCzHlqs76ySEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.98.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=360" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GCv/AQC5dyaZvkot2un3As2re5E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qQmPKIoWFGj+tgS8bYZEzm+D5ZCWlMt45tGit3ULk+A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:19:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.98.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=32000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GCvSW/pulMk+WAZaA49b0+oPx6Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A2LcYBxIa+uO2ZrCeWxI1ApveaQJKbrviJFaagEj0Hs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:12:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.142.211.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:b641:6f1:6::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LeslieY" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GCYKFLwQ+RuGwZMbDc/DXAJkBu0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2QcM4L8G1EW/t9gt65uKoarWDVb8AyjMLHfd8PnkOs8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:02:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.62.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=530" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gh0stx74" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GB9Iv/XUJbzsHnjaxbXw5F/9r00" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8rb8ggbPP2IZNXLl+e54AxoQAFYSVCeU3a7rDvJ78h4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:46:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.68.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:701:1100::1db4]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "GAsfuDASns57zdedjp4dyqREyhE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bGwqohmVkVk8GPqtBUTKJpzQgezlzg/6/rLQH3msRFE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:06:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.70.82.126" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38045 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Aramis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F/Qfja+ks2qrEOICq6FGAarh1hY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Kc966/cOE/0nYPPP6AuGoihKqtdoxyDOeHz4A/2FdI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:15:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.154.98.173" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "crimsonshape4735" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F/BQ9lfsQbJcr48wwXPaWc7bWos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9lPIu1bYqtLAnaoCN6tGYiZCAiY9dLEib9Rl8zpUP7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:06:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.164.206.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:93ff:fe73:c4e9]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F+wEN2C5C9rDC1NvTGUCkXY47Jg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qKL4MB+3zrAzRLp0wcnWis6afsu+qLwmwbmPVJ7ZrZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:23:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::79]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "netfoxy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F9IhYSqHLdK6eDq5YcwqPP4YXPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ab3dxHHdVYFQnxoSrEGrTWSMKfQMClqxFkg4upiCBsA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.156.22.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 420 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Trolling" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F9Adt1B6spPoxoiXwVjdj+WhDhk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I/fb+ffvFtRp7WrV1qYuKQKxbKE2x5LCxMZZvJc5f70" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.244.142.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 420 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:1000::1538]:420" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Conservatism" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F7OoJpq6NIq8rzXHeuPV0nD/WVQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6vRcf/ofnM5SKsZDX2muMiqbjOu6t7jpw8rODPeoeSo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:06:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.135.200.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PacketPusher" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F6or+DnhKwxNf2QNoeijUh120fE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ffWTPjqYkYim103Maa7ThQPFMiZBlkFZk2leQQE09zk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:35:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.97.20.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:9dc0:31::c0cc:58]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bereg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F6G6ZfiWV7Ner3GMRqIHPgo64D4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZHUlMVPAciwu8OJJMJGB3bzvCLkRylTpHLb+/1eIg7w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.226.107.215" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10400 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:43:f816:3eff:fe93:b598]:10400" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F5GUYO/g38Kwzw1sRTrHKyUmMPU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HEnqESH5L0Dy5TGaxN/cODQ2pfvxNPR7bgffvXuMqTQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:44:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "160.119.253.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tor4Freedom" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F4Qc1hlUssN5mZJ+3wEJ2T2KUKM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZL2kY+/1VNDlVBPq+1c7uaLqdQTsyvkcEvZqFxuqTRQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:32:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.73.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:27f::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sabine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F3u/XPnpA8KFrV7Kgi8SAhv25WI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JFT3K3+FmnWaF0TiCOgopLSC/90L4Orq05csfuas614" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:12:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.81.203.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:202:300::222]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bluemax666" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F11j77kXa/rdMGhDlgv8CFoqupM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PdVC8mB9/yXqFuSPXJrFGBhL5i+pq4mDbyw864YePQs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:05:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.75.28.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "czrpYOL8Pp" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F11Zs39l7+srm2sz5T1HVGgLvPk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4T3u6LDpB38qdyli354izcdI68BbJDIifuvkM1km4r8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:05:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.172.239.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8071:4483:b940:dea6:32ff:fe5a:4ba6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DeadOrbit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F1zuP1OdojVxWa8tPKXyqfwspbQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bxGQfwX27yM6z0iio1WFX4Rb6z5vpvcuqgusokhqKBI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.66.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "260VoltLive" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F0b+lbxuuc8QY/UGOyMJDBT4Za8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eZkPBohIoAFeW4ic9+IWE9462nu3g/Dd0bFfc2NzpaY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "110.32.181.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blackPanther" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "F0YJl+ZsR/gFqDS+k8wU7A3GCOo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uku6I/yiLFnxx4cY7+eWnMOvg7kMyOHuZ7mJDW50MSk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.183.56.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fz66H6yllxhJmugCMYfl+V6L8cc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zxD1oY4jGw/eU/LQ6D3/8cQoc8nmumd2UkXv3BsXPXw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:18:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.187.122.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:a:f365::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fy4JvJTAGTlXdq8VCXZILHMKUvc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EalyT0B5loILjjakFsX3O0HfKcYo0UcynG7+vW+5Vn8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:03:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.200.17.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:1fc0:8::a38c:7e20]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FyN1GFST2dYkiwHPloOlQJ0BaPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Vsnw9xGwgLqhs9CJUUSBXEebm4dxNWZj8FLbPVxQPFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:35:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.158.39.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9099 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PumpkinHead" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fwokqf/EM7rMpNnB20BcnRHVR2w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HsvrogLG7P0e8jNNU3UE5zWtnWMY8P47b8pbp9vuarU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:19:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.175.135.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=71000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FwdLT/sKCBXDVWOO66N7h/oS/7c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1S6mJxjJMCpgHyuBP5aYRvOpeoXGAY1Xab0IZ+BC/Zw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:31:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.105.91.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=86000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KagamineLenMonokuro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FwL2iIdX1nmvvsmEL0uY6bArbUA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Oz/1+NkLMvYQrApY+f812jmRInB3msSODs3vEbPhDno" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.2.22.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c021:8000:d00::a2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ghostventures" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fv8uxve1qT1Lvaynym04zhjdKFM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HwYExyOWRfhAP7ORQvxKNj92ol3am8fCiLWmuizSKYM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:00:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.28.36.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bluesnake" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fvfp6T1sxGk5KtC6Ago/NZ35g0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V9R5XSM+iMv/T/8fyIJRmWGpLEGSP2fxxQG3bLN0kt0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.150.196.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:28:228::100]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=59" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FvNsD1pvfCZ/e6Jx2YaJFomXj8Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PKeydHcUCe2r/nVh9a+vxJVCjmyv7wxY2w/RTEjyHHU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:31:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.183.26.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9049 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9048 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "456c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ftt4RZuEX05yhAXraU4ykp4rMYo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bwi0hJ3n8RQpmfGlmSstEnSrEFD+bGuX+exYxXBtajo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:17:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.213.8.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mempo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FtBiCrCKCRyTukSHaUd+TBCf9XA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zKAiMU02UKDlz+wQhKT5OMIhKptOC3p/fC1FrjwEUQ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:04:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.26.74.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ShorTorExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FsKVGFI7Bruw89d13ZgShnPrYPM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kPGFwb16s/1gEhUpM+mEjUzyy2qWG4Vct3IHozafXZM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:38:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.52.137.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "b0rked03" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FsGgfcaL3lRnQvcdIHge+PpZUIM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JLkaTa7Vd2In0aJbxKQ7HsR1ml/ZLvEOCmAbQz4o5pI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:51:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.233.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8006:63ff:8b4b:9e15:5919:2a96]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zetoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FrSb5Omo8cgcWc6sFhT+nP2BZh0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HZFLbGQt9BbXnO3Oo7pK2ZGlqWCMxLCTjAmjTTHu5Cw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:01:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.61.203.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5a:b7f:e415:4cff:fec3:9d6f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0128" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FqIWWgsP1L8kozc3M3iGPjp2M6I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oKgrfPqv6AL7c5CLsMZRZj75JzDVRKN044HgXliwGfY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:03:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10128 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::128]:20128" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fp02p1EI2dd7QiyJ76eDz7xmK/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sxzTt/oh56wZkXKYzo6Goyr2qqRaViEgQdzIwJ3Vfyw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:25:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.72.79.64" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bradburn" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FpU1zEx1/3nG1UjUFyAGTuT+YdI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Or/YtLYw3xIzMo+ht68GKSbYerbUmOxLPtTm2wuXMOU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:37:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.210.125.130" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FpSozUVk2YfFnYoX108VPtlnrAw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Wgp0tuVuBqOE6JTMlVkGg9IdDSNvRNl30+qtHrTmyM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2:1::196]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FoxKB78djy5dnF274HWBZnZIYCo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hbO9ecmfA6Q2hqImv6jlIEA3CelzYA7m2c/9N6UvqIA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:38:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.19.173.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FoSzCuKt03Hl06iz8orKTOnKLgA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IVwBvYZW7qd6zuGMYLOPmebqaLLWhgQKsFWcMqUHfp8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:27:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.86.150.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:7aa0:1619::94eb:3758]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "guidemenow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FoJPiF1ytPp6UJDgjYd+VAS8IU0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B0FF7Q6MonkSfmTGX5kCTGKs4ibJRWtiN9vzM0jPImg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:13:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.216.54.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.11" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fortunepink" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fn3NqEmkfq7CJ7WEGAyz4iB3MVE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ebz0MbsqKP9OsuKC9I5rTtraKE/9RGuY9EMM2X13qMs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:13:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "27.255.75.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nimblebear" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FnBqr9olnRQ+B72Wfr5Q0Y7A3BE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o2jAG+3kYydYomcK8FxjUgFQw0Tvx+yQUfAw1aWpIKE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:44:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.171.155.122" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "boats" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FmnlGo8dfXJVaD9VNtO+ZD6xFmQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NKsof4d54WK9gIUlMVmWoyn0afZbjRn+41MIGsMelzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:16:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.0.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5d:dd7:1451:c9ff:fe68:1d78]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FmhQ0WnMeVbndSWhqSKLxFY8/Is" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Hf/1xgLmZIgYquVZmsSyIAY76QOCNbhvxnpeYY/n8R0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:49:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.162.251.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1a:5c5:38dc:87ff:fe07:85fb]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev1b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FmJkFo6MzLskRK3g8KIuTm3e9v0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/rRSD31QV6Ucsnlw9oYWn4PjE7WPkVd+rJF0i9S8fr4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:51:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.116.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:221:3132:102:0:1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toraway" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FlpOhDE2nyRvdL+D7rUVtLHSNMc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xwymRovhcgW90dRgVFfIvah11qKZFRMiGSZbjDEz+tA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "24.190.192.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=68" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SonicRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FlPIaHaqQwMLBYSXacupL14wqcE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aj64dZet4Ryeiskbpi24G0GCQIVKZL0k5T4yWa9SKCI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:12:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.109.28.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:5a:1a40::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mypirelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FlMNjM1qfCwTVkpXPpsjzhpK0k8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BYknFekAWTyt39B/Q2ITY96GCWeLZs/AXWqw6NGEEh0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:55:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.79.234.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=330" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IcyDessert" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FlFDuP+4Qkeb1c79eVa6hZC+k9k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JjXKnTcTSYq42GhhcKrxdSQwG3dDSIL7FQP8t8CCZ7A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.238.38.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DefinitelyNotTheFSB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fk2qAFXBTn7A3cxLl+g97fGD73Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pnNvJi7HSXwelWg83mWgo7lJBrALEg6fddDcRSV6bEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:08:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.224.83.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "theqube" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FjwH9C6wa2VBDoKgqx0U3t2CbA8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b44ojlzlx6xvkleaJq9ovCq4DZkT4MSEaZkHcmZgSb8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:53:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.125.65.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FjVcHAsCr2lhiualF6UmuKa5i5s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9sMcOh7kqu9xMLmmFmcB904+iVGZ7hD+FJROCYb3cs8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:08:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.132" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f82f:7de1:3de3:8947:bc6a]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Piratenpartei01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FjMD8Fg6GRcyYhQ3m9GrLShgRuo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WesBEbRu5ooQqdzBNkIvArYXqZBovqq2z/j3+dUIYGA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.233.106.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:24:591:a8a0:aaff:fe05:20e9]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BucketOfBits" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FjJMiRMr4U8Z4T/W6zIm/Frj8Fk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yyb2IXGriTDbrSvomgJ7yxAY2M/axSkrqwdfFvcW6XY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:53:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.54.162.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DefCon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FhtnrSv71DYCkDCIozDvpkLn2Y0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s48ExV1VdReAgVUt207Huw1Pig1lE1NbsDfsqsQOMzo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:15:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.109.126.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ceviche" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FhCIqpYfnWDCjGYMgVJe9NZYiQk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I0KcB+EGZMaxwahNZgm3WJmB/4UrgAhtxVag3hjIeDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:43:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.42.210.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nullptrf700ec10" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fg8AJj2aeAVBWm3zqmGF1W2jHbs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DXqDnsuUbKof4kb1wTMDaDgcU9dv1/CkHeIUn11mqu4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.148.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spider" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ff7kI9/4r54uCBlZsMYyYHLGDaE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lEWKHxnRNPlzLJkFOZlG9/S0FofZb7fwv640zPkVotI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:59:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.119.108.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cloak" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ffz+yBUiRTpYrjiE1mCmIahHKBY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Mu/52L9c0TKyrgnv16ZhXkAWs+cUT7fby1I+DeS1dS8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:01:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.26.156.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 40745 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:d0c0:200:0:6ca2:b2ff:fee6:2c13]:40745" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RandomPersonX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fdf7oKPvCMc6ekJgYZc5m3Bs3EY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SGOkfTcZDiKQR5TLkC7e89/2Y7o+b7UvpDUYJmsjtGw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:12:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.204.199.222" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 13001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FciHcqwfKf2nAu5MXb+74Fezu0g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UIkY2pk2R1gn+Zes4tA35m/pi4qJIGRCbxHi8X+7IMc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::301d:faff:fe05:55b6]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor07" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fb4XyZ+s4kRw1Ar3gtapxpKrNtY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ouSZndGq5VfuFVMjDqz9iRuFLWqWge89nGFloQg1T0o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.78.0" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:2415::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bayswater" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fb0vTNCfNE5AmO1rl3c8UuJJYsU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6OSVNPWJf/CeVjPZ4gOpqs5Q9t+1vvhH4njRBwl3SWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:43:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.109.16.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "5b82I0IfxsHI7ekh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Fa5v/g4kWoINT3TqZLTDBO5VXB0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AhraRWU9VGoakmH0cEmDej9azz/l9lg95rkXoaJBvV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:19:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.134.60.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BoomerIsland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FaSOcyXDTTO4SZ5uAgZZFLoYAcc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ELZyoWBZrQLJXlIrc2gbjyxc34lutYxGCrJ4XN2Cd0U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:51:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "150.136.142.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:400e:2d00:1dab:577c:9b9:1ff0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fckalltrmptards" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FZ0uYLh5hJ5V7Z0qgZIqCohWtPE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vTZz9Gyss3r/yyqskVvELZ8cn127hu4NpBaJWd/ONDg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:44:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.237.135.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:93ff:fe25:f3bf]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RToRpi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FY1BG1HTE0VtRe9m0JlYWXbM3W8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nvzax4GmaWDTN1plwhT2iou2hpEJNZAwDlIvPqXfG6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:39:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.99.104.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 13526 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bundesgebaermutter" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FYQalspcEXGYWpVlv3zd/iv46R4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FjN2AJ5xfer4DRt2z/Co1mQww/tvK72XxODznh9kVUg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:27:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.1.124.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kwt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FXKMGrZRsCnjJZhRfmUacMpD3v0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2IEoc48xy0mAsNakX7FRJXcPTgsbakN2iTcjR3E1v68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:12:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.88.57.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex18" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FV1vV0JfFsBiTXd3dkHk6xtHxvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A+w71sXp7J/z8XiMgOFsbpaH8t+YdHCTFLnZ8KnBv4I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.108" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::108]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=880" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "speedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FVVxiGUDZV7bU07MQU6sZwejqcM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MXhlHj1NqQALYvgVKCBPy3IaIpqtYdE4YjzgO4kE84U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.211.91.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mac68tm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FVUT2vQuGPoW/Od9CEF+RgeFqVs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k0pGwcwZsPkbgApSkrgdAGmICehAnTm5lWv10Yt2ydw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:09:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.4.206.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FUUGQBg9ZIiv76i1DujpH2Sv6as" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8khik/Q5fBVcOI6cLfoPsr0Y+EAy8Pcgux3xYtopSrg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:08:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.57.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:b9:8c2a:7959:15b9:5a21]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FUNe1UtnkkzOZgLI1X1l3v02bC0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hxK6AD6/+1oZSpJ+KjEQLtmpldh7xNJ1sJqRnA5Y/Wo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:00:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:7e1:9807:abff:fe9b:e606]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tspio" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FTKjYXLHABKxBX+7+v4nNO2/Sjs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VxdttLNu5/c7aIM1sZ836BYUGBD450GnAZ+ZypdNHMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:08:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.81.247.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=250" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "plithismos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FTBCM2IiFD1nvz0DySVX+Rsa2Go" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Q8Ez1Ug/JhXChIWxAdK9x2+9Wvlf5hCkStsKt9BDAow" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:01:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.67.162.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c024:8001:dfea:1::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbitraryKenzie5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FSkSkdgeQE+2vsFtNmYIWQ0rAkc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xdi7PFle54ZE2cKJT6xmoKEUPA7rW056WuDroNdYlr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.136.183" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6b:3408::4]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "casaholiday" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FSPFAql1S2tCzKXrQCqDPP8OQC0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xm9xIPguvAJmP5ZkGhbngaS/w8n267uPLG5zsI1NE3g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.90.224.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 39030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BarbarianParty5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FRDVfcRxJLIxmMeMPwM0p8JMx4w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cmze5p90Dv3NikxKjPfN2DQ8recQBE59A+Rlr99VsNo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:05:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.82.108.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "donttraceme" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FPI5HBKo+8LHLefUMMeC16AJNPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nSsDXhaVh7L6oey8iVQgR9ub7fGV6NplKrpVtagSmbg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:00:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.22.225.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange012us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FOctTaELZjU+WD8m7gSsDVY+p+8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XtwWC3QsuJPxpXT/vl317saKy8tbnUC7kws8QXZlnhk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "147.135.114.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:2dc0:101:200::6c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torRelayMoniuszki" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FNoSg9kDmWCi4vS0Y4eCHb2unMY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hCy5KRT+42pnHqFnwi4OlviQbKaVP+G2xnSbHS61+GU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:04:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.45.245.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 763 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FM5ElLyLY1XSGIIffWqsX3532iA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Bf+Zx+/ByzkSJnAJixt5NarbLcr9c7lUOdEnlDoNv0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.54.59.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "justhelpingout" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FMx9s/b3vpjVfL7cN/vEkjLH/Q0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9VdqUZpKuSQGNXpAXmzAhA4l2Hh3P69JqS+p9pwO07A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.9.137.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FK8D5elIbnSLZRuj+C80eK01GK0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "28TVrrbUA63wrIbL9adWuxJtxOq2wLAxnyCPQ61xRK4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:51:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::42]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "quartzyrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FKHWtvQX3sOLsFo/+tVm9uAD4Nk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iq3A+iJDI9BLbExe+QlvWlhMhBTF0TF61ih9wAPej8Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.162.33.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FJ5YQZna1ZZvraoH9GUusV6fxlg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SDVPQGsI/R2uAsCTVm6BmjuIO5PNUaN2dO70aGppfDQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:48:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.195.252.18" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:10:c52:cc1f:31bd:532b:b5d7]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FISHxuvgTrIklggMIHlsUbBg9hE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xs/x7CnmL2uFHpuSxN5GfBbVeohODg8pRvoF32dQd6Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.199.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 38443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fea6:13cc]:38443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH114" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FHscbh1Nh0uylJ6Q+AdXImWsr74" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U4t7dzqTuuH1mX8wNrJRGHL2oqmOU0uZElC4Xzbq1H4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:05:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:214]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AlexGraywood" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FHMh7eg50mZgHmWn+q0wZ0mx7sU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sdplGronu7Kg9B1EPeHKXlwEujwm8UU1O6bJR8/xkkw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:03:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.73.242.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlackMesaAG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FGkwdMIyXOyHRq+7hSkedJrEXV0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BVS+Yz8rXvWbX5QPxNESrrYXQ6XmVUo55+qMsPvmXoQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:26:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.64.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1162" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FF4Yh1Yjugx61R7osbnPUSHAcc0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9Frhz1m2FH3l3LlEqVEnqkZM919Zjg3MjALEmDtqss8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11162 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::162]:11162" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelayChu2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FFIjpPdh3Z8OFNzfUSD+1PmY/cY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MUF8Fx7SB55WsxVAnhbFA2QjYh9AbiVtv2jlCLqsdes" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:03:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.101.203.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:c002:b0e:df68:94b3:52b1:5f2c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UrbanTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FEParwn0eHXZIvcYyMyJqIxQs/U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IVMMyGWRf5HdWfGkSe8/S+nYB3qupltLhm3yeja+5PA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:41:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.28.144.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wagwan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FEL0DKM6wpRB9U72lvzASloWwwc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sI/438dBWBeTH8LHsySlYbxhQY1DfuY6Az9di+fUst4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:30:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.7.154.218" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ServerTor2022" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FDyY1PEX88UuvdbsAzI7haE6oxA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9uUzOQ148Lj7SyWf0FsWEkBP4W2bcFA3Xe3qWZXyp7I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.235.182.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Superluminal2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FCWTT6OQRjhsOy78PY944IpzHKY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j/4yjSNHBGBJs0zW3MY+yr5odcZtpdK+xZJdx4sT4wE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.48.49" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3100::3aef]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Vulcano" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FB6aWi78H4zO2wMs3rrTIH7MZQE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J0J0tqlL4EsNAAJflnnQssJHaUvG2N9JmJqqxbkaAVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:19:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.172.84.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KatSystems01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FBNxE+QEXuyyCQPLVCma+zcGE1A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aSuyty+9O1u26mM5vrEwPufB3XZzND5sW0O1MB1YaVY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.38.215.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:2000::3eb5]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "g00dplain" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "FAjuV2iiyhbHQKWcQZc10MAWd6g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6B0l/5jcTCHYmIKSkRyaCJayGQLBBdG7gU0ArZR9OZw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:26:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.66.103.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:807:de30:4066:2214:e028:3ae7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E/vJdRbchUOZ5wvHyppFE//U8Iw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QAkUmhVSoe3XO/OOjC5o3dvbQVKyiQVhvdkfRGOZ2nw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:01:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.117.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:29:1:d4b9:91ff:fe6e:e48a]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipgb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E/sm+TYfgDrRkP6Is14kHcCEsCY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ei5w/weeRhvnuhJHn8XA4Lps6q1L1rG554y7kMY/qWQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:29:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.246" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::246]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CanopoIT" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E/fq5zHKRgCVGYaSHgjsq5sdKvY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x6RF9g74zWdTLUOOhHz5DSJaWi8fKzBWtUEEfPEoTEA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:24:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.9.231.195" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b78:2006:ffc3::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prostor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E/TN5xz71KsNj06E9ip3TyexiQA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VLkLVSzT0RaP1l6qRby4Zv/FAcJjPfPWOII3nzFSO2g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:38:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.226.105.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:43:f816:3eff:feb8:ae3b]:10100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "darky1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E/JNX8YOmdNTWmh2HC1iIwNIT5M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9nENAvtOhgkhg0L6bsPYJr3vdt278ny8IXmKiZV197M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:17:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.46.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1828:925::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E/EinEG4pn9KuUmjr6Xm8572i/w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KVpefBtxvkoGywGv8sPfvekntV/uY8jkD3B6xY/mwv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:08:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.171.165.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UenoStation52" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E+4OFMaidRYzE4J3wUQ6TDfdVdQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lqFXPh/sfXQ+I1q0MekbZAfoFxh0XRvpPKo+CobPcu8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.143.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "t1saczhbu0dgljekrq" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E+lDx7DA3WobyCAbYgN7S/ces3Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xAdBlD4sXmVKYu9ZTlofHRqhDpyFzMncUbpHv0uVHYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:04:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.154.39.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:ee41:84:9066:200:ff:fe00:202]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RavenSecurityOnTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E9/8hupMz7gg6+YWLmv57cO6ZqQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ypEO2ukux6Jv/a8+pMhLSJSd9epH2Bxwr2z50Ew+DUc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:39:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.181.165.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 25 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E8rcngnzCvJKmLROiDI9tlWoA+k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lFTrU0Od1Ik+is6MXJloih2sRXeDqxAC7laiVWeyCZY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:56:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.56.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:f008:e8f4:76ff:fefa:28e3]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "imieeet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E78gZaXC+Hz+kO9DG11oCQM+rSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0RzWraUUqmzf0iYrGqgveT7pycxHkI3ugBgtM7IoX7M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:42:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.210.61.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORtitan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E7I1THTM4pgVtOH2kvLw6Gx/E90" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vwDP9SKflEIO8Bb4i6fLnbZB05iH48+5mal2sbP8LPA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.241.140.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E6cCLEn22Fb+KO4yBWGes//NRrM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7eZrGDVI+TqahiymixjHI7OlIdAZGy9+Xr42qn695vI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:17:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.194.37.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex67" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E5yGxMm8lOibr3mxXr/fk5bdW7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l7JkLILoDBkpKiA386Tz6RH4zPbnr17PPgZO6fFy0qk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::156]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "catcharities2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E5Rz+g3Ai272NRVJjqtRwSeWGw8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9u93F5nMcZgjXJxqg/d6v2VIm9t7n+oahGsVObNQdVk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.2.121.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:3e20:378::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sennovakatido" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E4uV+aEOi+umsUKtrHMxdlxhrOQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0C/bYY2ZajLZlEn8iii7pBeN7z/6Uzhap/uVU/ctayw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.248.86.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "doerak" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E4CcwcB4KHUqJIzbyBhpxS52vr0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6CfjC1FhXZsif0rGyGz9NWsLUyMeMSDG5TKWhSS8QEQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:40:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.210.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:3711::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuandaleDingleRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E2YvTItYhrC32nYEoCXN2+P8LYg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eoNozqj1niUX6wJqjuN0sSJr1hoS4ZYOv47c8LFqVJM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:11:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.235.232.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 59132 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jellyfixerpitbowl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E1/0TMM05mMvL3S52Z59QzQiq9o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Xn360RvJXsTssj4vROCSjx14mhujoE1OtbgZivO1y6w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.14.141" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:92ff:fe97:c70b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayonjubilex" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E18qizL1g4RfKw4TPv2EwlAmdhs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0v2ll5GCmhflH2A4N0Mh4eGjSCvlvXTqOXV+XGY8yiE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:19:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:8::1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "4chanEngineer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E0eYwCHe5AHqTILY6ZZw/rnKI0A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U+qNIT4J+DNdAFyzaHZYPjae2rvvKMAkeZRjXjsJIoc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:46:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.187.123.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "themayor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E0R+7v/UJ3EgOp9/2ztCWHuQbHs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4zIv8BFdXUeKOAOqZOx+lc7v//PucK4PIR7KbaI4VZU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:28:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.35.34.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "galtlandeu3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ez09jztyIKMUuvAqQqVm4jAjRjg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M8UQLHFcRcX1qbN/JjrgaA1pIynWYOTYE6mOjtlR+bg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.231.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:4a:48d0::11]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KoolJack" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EzkVehQUhKtfQfJZGQJkPwdFy/A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rbRpoCIaeGWWfjeLMxiK6xGok3rPS14WXzVVzwZb61M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:19:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "154.67.116.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuakePHOBOS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EzHU8g+Wef6p8ar6LqnJkqxvFy4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eThMFC3qa2my1WsnBHnTH7r4d5CJj1hBQM4DP91cVnM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:42:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.199.162.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=78000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jstark1809nl001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EyoILOMvPN0b24CyQCmaYVNG80s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dZfQDwz23VohjW7FFH98ymIYjDm/rl9xEGs5Q8cEbwI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:09:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.102.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:107:be74::1]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "quichupps" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EyBOCOv5qUMhttb8Wh8K3wLvPyE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "erYiUg5JbRUTiMBlRgOOFtitDqdrJpl2lYob4qc3LE8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:44:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.0.32.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9788 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffa0:59::1]:9788" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CCrelay1337" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ex+8ij1LRN6bJYrcWGdAgrHgbSw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A5wFYCtEviJHOpvbuFrOo4ACQeFAXKvsXyXOJ8EfQj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:10:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.238.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "futureWorld" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ew8zUR1To0+QlK0ENKkBPsY7IBw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DFgdiVo9D7Re/fjgi/pIQlLwwnVn5lNi52A+YTTOnWk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:02:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.154.181.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "funkturm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ew5p6PeD3vJW51f6eBVLfcKjng4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6Q6c0q2b0rK3+dPMIpHSF+pyWfjVuxRhST8iZGgVM7c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:09:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.72.247.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lossantos01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ev/zkNTVbFQkbT+EMLR10XYLtKc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3N3ThBMyQuxiF7mefeemG1dFAb22OxGxmde6XFg+zMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:54:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.142.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ridcully" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EviHmN1Lm/slppeNqD8ILvHVBRo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K8sxYB6shmuaqUcXGkOaMSjh9FJj2jN5IHsAGSP8RYE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.40.99.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:221:1901::12]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Et7gEhukQxuYDlfO8fcWNMMbZzU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Z6hQK8JwEDgBHAmuz6geXp/XjYZzvIbSiJQF86/q0i0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:28:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.197.113.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorRelayMPC" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EtnaU59HpVkf1T2Supvd+IiWiew" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SzeJDb0CDz/q9TizesjBbU/T0JhyV0Ni/wMRWx4fPvM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:24:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "151.80.44.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 49001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:e:11b1::1]:49001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "shortmax" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Etl4wqTLSsF5QP6I+Jm2eg/5uq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "o5I3s8N1YvslqGEWpsG952Vqf5Mu8fbR+th38nrjUf0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:45:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.141.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:513::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TOR2DFNrelA" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EtVS6K96orcbIYtbv2pf76bya6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r5fOW5uGosLSvNvRPfR/2xNxELS6KsPfwMsRAg9oFdg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:24:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.196.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dbalittleB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EtUUWMcHJPxiVfkzyDHCKBMTaYo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "d9SSzfvW7p/9XpOS7wTVOYyAnfWTWcrb92IEfn6Kl94" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:40:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.225.188.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PikachuZap" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EtUM0DbezuXDoQTWtxn14k5dRbw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/nKTVnyb3hd0J+TITPBDeA5HPtYDc7OBfkFy6nXlFBw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.244.30.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 12810 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:803f:b5e7:1ef0::1]:12810" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor4rescue" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EtEPFmaC7x/K6uRn8bTX9srrITI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "htMWRK6xubArs9kQh8g+9aAVPJpUHCp0PDRx2L1Va5g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:08:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.202.223.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Es+E09LjC7l5m/wOHd39qNNa8Ac" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "igRV4xIlQX2zLpW2N+NXDK8/5P4EQduRNWGjUXQ0YR8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:57:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.202.91.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 39353 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:1004:b5a::1]:39353" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bammbamm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EstMDninHIRgaWBTYbHh/1KOGvA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GRSBDFwzaCD1atb1+iG+pYUixWuBGCRYsqSjhvFMNWs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:49:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.43.147.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RDPdotSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EskzdsWnCzU917RKNPtxDhMVKt8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+KQvWrY5AFHMxrUXHjPgxeSKuDYoXZWujx/ROVxV6nI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:24:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.241.208.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rinderwahnRelay32L" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ErGldp04/0fPaMIjXhvaMV30API" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SdFJ8sSzsMWzixXHj8vcG/VGZh7XOkBE3n+z/36XJH0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:18:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.212.110.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:8620:201:215::2cb9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mdfnet1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Eq0w5dJapn9Rl4DiER5hGkVf3Ik" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0oA5bKWeZKq57ohFP/mKebQIzYvJoZeNqWd3bF9oTKs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:54:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.11.114.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:6b0:30:1000::99]:9050" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torarch" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EqTyB+4jHzQsxbWj8sbcgKilnpg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X55ib24wWEDny/ZLQN36fyuoEsdGdJ+QWsM/4Jkva4s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:48:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.33.55.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c01::f03c:93ff:fe25:b23e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ieditedtheconfig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ep95CauDLT7jchxJcfEv/08TKu8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7h6kt3pnvjF9rDK2GcfHAQeEUlBeKEuhfdk4NLm+P6Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:30:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.48.209.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sasuke" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EpYRME89k1NR/SVQcTSH7y7qUFo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lMwehgvqsNtIysNlF0cvnw/atOFAgUYI17lmnL951gg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:26:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "quartz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "En9jWPaP+35DfbpR1tTaxHufeKc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AYKAISi5k4nhOCai9XdHUDmHXX3eOGvg2UwexrqCJ1E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:22:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.67.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:101:46a::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "En6AOIjYLzPMPDEezGzOt3CIMcs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZeSpT/cMcDrH1mvAaty5rx29F2F0XY0YLXyY+Q9eEIU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.54.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:e028:242a:33ff:fe87:a24]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ROBIN" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "En4VZJnAQE28twM6/rpt9CjtkY0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eHjBFkr4azYRV+imCUlPWY98ghTz1ZrKZXpx3a/lK9c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.223.90.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:2c6::135]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor4rescue" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EmTbiTA8ioG5OQ6n4GUWYRlZwJ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UAA/ZdkOUGuAZ6vik9EWyL70Ynj7qGdGRjDJvLk4uoo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:23:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.202.223.98" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "costafastgarnix" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EmLswGnUlX0TN+g+DCQ3zIDdPfo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NyOreg5Wc00PsaHAbILyTmwixz3ECZDGjTK9QWp3bsA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:50:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.46.141.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EljQqdlVgrdmb8Cvbpp5gQmpop0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qBHMuIVxf7/X+zLgItrvsdvsH6TLtJbrXYdmVvHnt+w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.227.161.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EklI/boLY/I6L7ffx99i7Umd5UY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rkYilk8LR36MhsWvvVPEUks0EkfPpyqdqFwdrOAxHSk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:33:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.164.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=48000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKraken" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ekgtw6VQBBboc40Zh6gLlLlD1O8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+Xd+KYI/lcoIZ8HkWj10+KoROAxXyqQAX21vozaTSTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:11:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.140.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:66d:827:90ff:feb1:17e0]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toritdown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EjquOgMbAjSyUBydUKxt4YAxqRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sRhb998kqgKJX7eaHAgLHa5uVHiiovlH0Wp4vh8g+Gw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:26:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.223.233.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:2:d0::1107:9001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=290" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FermentationLabs2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EjV1kpSAIkMKj+dtMS/6jFWExag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "URXvS6zBGgUd5/YxoFDPhtf4o6LWxWCPIhjFRCM5/PY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:34:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "99.150.229.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=310" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TeleMishka002" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Eh7MinvYgYI9rqPAhY1R/fGbGZA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DrHaS7BFi2UUs5IaI0vWsgMmixMftSYgZQwmFbZ573c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:00:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.245.184.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=780" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LadyTremaine2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EhvNqukP3M7ymXUPt4qiRH5C04M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tP1x8eOrcijJr5V39rX+BVcN+9t1n8/tkrH1aRCNqBs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:00:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.51.141.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gepard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ehgg3Ukv0HruEdz4UuUq/0p9Y2s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c5f8XBtS2RCABpklXPEypPo5JVk4d+lutZsh59qbrVk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:59:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::70]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ccrelaycc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EhGsG7uKGvfLqGvOhomqMUa4ZCM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "glPEISV7TSLtw3jq3HObPzQDFK16kLwQFaioYKZMwYE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:44:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.21.251.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:344::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LostArkIta1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EgtTXlPErPlo7zriabIk0c8PPB4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lo2lRAe72EDkEVYNzhdy8XAeWIYpQF0Ief9yUx83k3I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:36:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.223.93.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:90c0:1b5::cf]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AgrippaRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EgYmB3eLVMIhWmhgbHw7Ad186PI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fnK1cSU5Mck6WeSGL6s+joe1d0m424Qbj1uQ7coEmFI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:07:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.99.76.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EnzoTheBackupBox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EgRs8F98B6Lbqj6ohmoRfxQ6IwY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qxm5uY4Ez3sx4gCGElz6zmHWumQtFsOLuTPACo12Yc4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:00:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.187.191.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b88c::5]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BasedExitRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EgH0p2bStj4cxy1Cbm2fFToJsQM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jG/37k3BBDFse1+v6ceFtS2m/OJNo2HebZVTbaiiBnQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:00:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.172.118.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:d814:b592::134]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "schlafschaf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Efx9nH2N90MmuQ7HHBAXMnlzi48" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B2T7fzgj7kTr++zlly4p598WgejuS3P2U8vq9McBX1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.180.63.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=350" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EffH9+OXKZJ84jbaHjtsKEfxRFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ppC/RStLzDA1R5f1XEG8YrLnZsyZ8tZZjNTW58bBiS8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:16:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::71]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IdeaNexus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Eep/ilgde80fd+1bdSaguSsAOoc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EILR2pD+loqi6GockmAUPHgnMfxU4AXNuGpQCF9MX3Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:36:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.68.121.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3005:233::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EeaI0hPEwLBnPvcNm286gxlQNlY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1CEUCkTcvZSGUtoxz6xf6cnPSK8/iYpBH5beKd4cbQg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.32.127.232" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 57282 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gGDHjdcC6zAlM8k08lX" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ed8AF6Q68fCIJc1dlzKX+BqwD/M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lQAQMLq4iUzCTZXiGYz+ga7u9CRaXOxr/Tz8JRnbyMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:20:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.174.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:724c:df98:15f9:b34d:443]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mekansm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EclSnJ0GcVRervgN/iCa2Xe86Qg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "05K9FShSjl8GkGwk5NJzsuFG0JxVt+1KdR8/YkBDSvE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:02:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.22.42.176" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dudebroooo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EcHyhWLVJixqfWY7AZe3rDXYmU4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9TZJqebNukfmde3AEwKVJ/YRz+ZZhJ9UCTTpEtN3SBY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:37:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.166.168.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=240" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "auctoritas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EcCL1kxdS3Fz9qTCdr7gDCxSxi8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mfsJbYrLVpOXj2YtqJCzSnT0zC6BUUqeFY3KuuqBk/Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:52:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.19.213.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mirage" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ea7lZ9JM3mgKx4vNbrrDbFCzz0k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hxtn6dH4HcUkXUn1mJkmEm6T4rA6cEbjnpTIAbL9xoM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:16:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.72.163.146" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jonasBebe2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EavbTQuUTxhqiYVgy4LHBDmVfco" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N4K7vQGbzZuCKCuEB/tAgvClaXl1JsbDWFP1QXU90YU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:16:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.18.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:141:431f:4::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ru20101315" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EaqZt2tGUzNEHjAA9HeZXHBJm5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dd8U8UYvW63se/Fdp3IJNFqMGmDK+xjAALO/L1z+s8U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.246.182.197" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9333 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EaLH5GKbyPKugYjP9kIfH73SqM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3sMMJ7D46UBIKHQLk4fwW/uyO98PGSREfHMazqI+bh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10042 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::42]:10042" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber15" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EZ1ZWoGmfWweTWa3R3F/2VIl+fg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SOrC85KCjqm0PcGV5iIw8F21v2toNODd+SYIljeLN/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:33:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::8]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EYjcVJ/fXoBU4f6MeJpjLNGHL34" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gN5pdibS3tqrVIOqNCj4VEbwq2Hm8eBmXhN0gKoWqDc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.143.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EYF62KplUzoM7NI/j1R6l6afGSs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dogY5y9vxfUrGU2qpxhbSK8+3bnhgvM3EAMX38WnbQ4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:39:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=44000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuakeVISOR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EXKGo/XfcnXy6x8o2KrHJ3LYSTk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O6HjU6IzpS5Ioouod0z1DAxUT6xTRtmJIK6MFYLv6Tw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:47:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.199.162.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Razor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EVw/7FOSKY7yEzlwalCmiuwCYPs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0XAYQVPV+iFcUVdnOV11OpTC6BFk70tmY8jBYU97Amc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.226.56.70" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange040fr" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EVgjQZibGG4XbVg2LxIk0oukyfk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tHFl+GRJ5SR87OT6Vi1ShJC2F9Zpr13ojeHIrjrlhEQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.59.151.233" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yogapants" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EVIWP5HDqi0wuPuP/KjYRCEV74U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6wMTBNVYdLBnmG4tMIeAs0LlRnY2eFYrHa4CtVRXFrw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:04:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.237.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8902::f03c:91ff:febf:f72]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "UnredactedDrake" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EU0IUUBAFcAmXx9NS6al4elw4V4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7raw+mm+Q4j8Twl9n2gHPXPyYgYyZweGrI0mEz0X/uw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.154.177.6" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hashy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EUxDsrrViIYbx6g/qYiezE9Ohe8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pc5d7Itx4XqFmt2OnFghHEmxhnIkX7VukRF0bxyWzx0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.152.178.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:df4:1780:3000:cb4b:95b6:1d99:4544]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=950" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlueGene" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EUwArIjPoYWq8a2ixsGdGnxnB4I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "95zsh3PEeHmZ/NztMPyt1LDVKb9WtajXFQoKLl3/KtM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:40:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.160.17.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9025 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=730" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChaChaPoly20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EUeeZaxmNMKQHbyW6m7KFghn7n0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zm2x9Kx40nL3Nh8oM94Ics5wpzaC9r8Oj0NHrcDFn7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:42:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "121.99.242.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "excavation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EUBXr/fRKE9Kga4UZLiZwO1qMuc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Kqr7m42sBSL/khQweFN3xf4/EjGvRqb4+WkGAelYRwA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:40:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.64.139.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:e0a:231:6221:1d33:2ab3:f82e:f232]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AveCaesar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EThtM/zVvxiMonllEy9nFBSO19c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qGbMeh6rbYaAD2PDkD0bqX1Ts/SXeULJloAcbEohTB0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:01:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.165.27.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "giovanna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ETerH4TsLVLfsZFXF/FP8aEOs5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZVvnPr4vWWGwLBiYTOsAd0ua4wvNVwcmrbMKAduAZYI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:42:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.227.68.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fa11en" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ESGAvGylNhOP8hC8WcsJV8O/rME" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1FqG17IyqJkk628/7ODpIVID+qFKoWlupgIhlc6YyZ0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:33:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.127.227" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7890 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1820:24b::1]:7890" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zerodivided" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ERmonnKdtlg5+yMqHg+GabCuhN8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "egEAYT9s9vAIXkquRUSn9nzNhKYiV0aPWv12T1U279s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:30:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.241.220.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c205:1000:6686::5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cricket" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EQg3E+yI/wkmnsN/WtndqsovJHw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "56m1zQgn27T0BhgHbrIkQ6pl5auxtAyo+bHkA0eiGbQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:06:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.106.17.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torry2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EPX0YHPJL3H5+/DSuNntxkLPZf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1VWP4PwZvOEzud4Pfbbt/EFRIW62PsRmoBP1/gir1zg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:17:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.180.229.96" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9998 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9999 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lusifaisland" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EOFgJSiTy7C5GxR+iwRScCfqLPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nz6oI5yjTHif1NScwNAwotozPTRMSz7rZSd1HciCtk0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:47:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.32.80.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MRNobody" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EN+ZaPSqA8Z2XrEiwVBhFxi0/aA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LVRrrjRM0Car8auLGB7dpto6WmOSJrOivLbGqDQ67rQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:32:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.252.191.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ENWhzFCEn2OpGz34Bo+AbuNTJUE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8dJJudbVmXV95P1VwtXfOEeUKwwcpzpqlqob4TVcCdo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:59:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:49:461:89ff:fe02:f9a0]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "baloonasTORrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ENIZiX5PJZSvHsAcQUwuN1Srpcg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WTGVZDlkF0zVqfBa/8xD7FsJcMwOwMv+4/lp9M6cgKk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:57:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.104.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:50:e4c::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GeorgeIV" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EMG8FP9puT2yRenyWAo5qRm9v0k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1oM71MyROuoyuFBTjlv+iUTmfOU7YI5MB6DX21cTfj0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:07:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.153.16.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "movingday" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EK9lRauzI/boZOB+cOP6q9llbLY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bpJphlEA3v9xAr/ycCZw4dQPfxeS7KI8U/1L8YCl/ZE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:26:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.23.203.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MuddyMouse" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EKnB7DvMhcIJdn43TZOmz/XyLKI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "glkZ9MRSQBzMEXbFbg7WnFVkcHR2ofbzIuKY09+xEcg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.156.128.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra82" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EKcweNPXHQHEsAftdasnE05Q8dE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GG71kFnHXSJYuQSOlzjORESqzvLh8O6PsWU11UGY6AQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:23:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.247.226.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eridanus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EKXvzNL7nBpKwg+3eaXbEbWJV6c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RMhf/y6OIIBUxYJO4Q9OOOWaNukwnez4c8aysMv+UBk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:00:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.154.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:200:2211::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=53000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "collaborator" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EJNTrPtuRUd7Et/i7tk1oURj1Cw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DEuF5MvpPM1R8OSckh1Ldd1teFiia0Sm1gkrdMnNsiY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:12:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.63.42.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "benedict" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EIR+UHyaEBy5m/PZJ6SyvKHCYVw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "omIawhWW4YN0WmpLmPbMH/MqO9ktCWx+/nq8PqYJ+fU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:17:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.141.25.140" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tommyboy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EIBaODN3S4EtB+t9HXWlQCFZD1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jW4buMYEu6iNYxeJp+ybF/cAjlhkov5zlN67YOvEOaI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:58:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.12.180.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PoochySloochy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EHnmKPxrACVlasAk8tmXXEQUmM0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/bg0hlgvsiSVO6U1I8fF2oRfTu0HVrIrrrwxowo132Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:57:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.185.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jstark1809tm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EHYRgyZeYnUpvCULamZF7ZgNlpc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SSE39ns1Tv/C8KuUYxfr+T+xqSW4gAsogLZP6BDlpzU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:28:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "69.197.128.154" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:4300:a:3eb::154]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "panda" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EG48j8749XdLnpdzKjfazplQNjY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "z2G3K70HmxWhxGdklNayU0UJPftLYzLRyP/homeivZw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:02:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::72]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Alured" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EGaGEFzSEVX7OS3f3Pcp8Kyqaac" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "C6d+pPWaht8fDW8j0FY/he/LD/+ouw2KVI4BUjJm9WQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:03:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.83.227.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 586 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber49" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EF+AD9MOY3iDpk6mS8VW6CwkilE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/Qo8M4f2aqekmo7qwOc2btcwuQuK39sqK7M8gERrfj8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:32:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::25]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "realdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EF8j/EmpZZZbtlk2RCPqmp6bN5c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bzGbPVMUBWkbnvUgoFcRev5hQEfQ/1o42Or1Qp/onFU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:14:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.215.27" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:801:2000::5a8a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rollingback20" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EFdJPBibtczEe5ZMeHM+bQ6XzM4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Vbnko10UfwL0CYaZLOju+eWlthu9mpm8LF52n9UaPMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:44:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.1.227.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EFD8ecXxEDsYUwDvct31tO3Gg8k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GCTy51OoiHyM+SNF7I/RT10RhaJUfq98aY5m80YPgH4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:05:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.103.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra49" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EEL6x8gEis2eqzZc9os/fENQc4o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M92UvevviK/t7Rl9Q9XUQvq16i7aPzrlfH5ydQB58qo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.140.115.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelayStation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EDM2FloNLvytNgUzmEOgp3ELi5I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nPLtMLZ0tt0ZQqnKWJy0/FX0fiXmdg/Xr4uKKJI7N3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:46:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.235.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:a403:13:5054:ff:fe21:7c4c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "max7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EC6hSSEfSQwSLKzEBU8bxqhQPrQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pLEzaluDRsb/PuB/jUCtoC6zIhfV+5WiAI2qi8WiePM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:11:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.170.246.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1294 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "doofenschmirtz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ECMeCPGcA9Wi/jqtA9hjq94ggbw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7mHLCs03ccOCypYfwALmwUX0DJrZ4/28bXhAlD8TOIs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:42:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.77.19" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cryzrelay04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EBwYiGswuyOzbLqtFZJhGIhS4RI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bkSC8+w25E+jsVyH6hD30cqx/gwU9VIeTlAsFDTkRjs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:23:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.149.227.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:440:108:11:82:149:227:123]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AlphaGremlin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D/n4glAfsdYQUi32qtbnXJX48rg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+qgodt+3S5yXrGWJPFrBOtHnGSF6lY8g1GjEHGbeniM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:44:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.87.97.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=960" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "baxTianRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D+H2EQKksQ7jOtwrQnWtVjLi0xw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5ZgpNHKDynUPwkNVFmb3UpkwjOc9jgP53ZhzvhRAFGk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:13:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.222.172.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SchweinfurtsTor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D9yafWBggSPPVDL24lxuS8I+eTg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "w6bE+W6rti8OsL0wbK9IH1IccaTdIsqfCGfgV3Oyrts" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.147.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BaBaBooey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D8q7jG5BLmDLhi/hmmQZGmnrlOw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YSTnQDcTzO00wuUX7vTj2pTKxgrXlCqEYKZ3s+HeDac" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.62.211.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Innominato" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D8i5JcmGaX1BwbFQrceLstLlD8s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M3OPEse7kLLUxsxU8CNFUsP2zHcDwJhkk0OV3kLbLMg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.52.232.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9010 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9033 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mentor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D8EvK33Q6Ukw+bPN0yEwiZZlKVc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "f+0evv17S+6vZop3djCeHEFub6yC+s0QAehJ27mQikI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:42:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.14.177.164" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::19:ffff]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=55" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zensursula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D7q7jHsizt38hJMx6OninBgIEjU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8lqi0WPx8FMjWyGTMnsgV87mPF7Otsiu4uz1K95Muz8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:12:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.86.86.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:5170::1db]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "frantz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D7mnfdtqyHhQd+wdL8lVDxnHVCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ewbYz0QUJhi3oZHybf10rf1GTMkAvYvLIDpJfq7t2Po" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:17:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.220.36.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay35at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D7B2kNZM5cIrUXUYPA5ZZ4zffqs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0meBjWvx2EqOWsBPwthGMsK+vzWCQOX1AFN/y7UW+tk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:58:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.35" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NaruOTORI" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D6YXiuOcQT/mV2Qt3Alck7GEKnk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XXHjMU1obAdq09MyD05k/jsrV1t/7aRAonES1Mpl2Es" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:02:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "157.147.121.38" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sk" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D6J0IHNsm+LoK9ElZr80oBV8VYU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OlBWgGXa29y2ziUXRd7n4ZJIJ696i0TfqZwdX7nE3TI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.250.56.54" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RussiaOutOfUkraine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D6FP5+NlgPaZeN9Yynr+XVKAgu0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v1fXscasUuBi7xCpWROw7N5rn97RTCOyjvfiQ0i5fsU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:44:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.32.77.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unimatrix01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D5+QTWHyVsMvAac/vwvFcEFja/Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U6Dyb++KAFuAEXrMWV09Xcius0wDESUu1t5/F4TMMjo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:12:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "84.158.124.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BotheredSoul" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D5wydpO284cNL+erJbWnZ4fqUt4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y2vlw9t63w/Sll2UvVpIQoUNaixpOuh5CpkGA+0dOLg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:38:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "108.48.87.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "K3PO" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D5MecVbya5ZLPpC4Hd6uRpkp4mU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dNsp9CWJ/mAP/Ccivg4HBYpzLNumz+5mZIRtl7qVfQI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:04:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.117.118.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:f040:0:8::3]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "apollo112" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D3GwFK9qIjW9DQ+9LVAWH1+TOg4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B/0hHbNe3i75eKfmhOQM8WD4WuYJqvLs1+WyHWozIIk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:02:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.211.254.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D2y/ueXN/FptQnMg6Qsd+RCV3Wc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YQ/rnN9LE9sH8Ds/VeOib5NnKLUvQg6twMlyVPOOpos" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:59:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.168.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:185:125:168:0:42]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pilvi" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D2oEJ2y5XQQq7o0ot0WHj4J9IQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EQCEWR/i4tKtHIKncHa033CAouWcIB9Tz2XPSKpAe5A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:12:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.100.255.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9041 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=77" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D2Az+LSyYZ64EhzRDMabDg5jWmQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U6bsOwFNsIBbYntmeMKxTlTUCKr0YQT6yn2j5Ct79dI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:58:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.26.156.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:4c:b27:a410:8eff:feb3:1c4a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whynot1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D1O0sWdoqKGLg4ED3VAAaMTWVus" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y8cvHbagpU9NOoX1AbUD0kzbkqLMwLlKv5O2LWz3mSE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:58:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.134.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Qazwsxedcrfv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Dzsby0LA5ojUpFiH7912K40vCPk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yraaUujDXy0aA1z8PpLmqqBkjFIe8GTl+vofsUoJ+js" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:37:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "76.89.223.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:8000:b00:9103:e139:a2df:f3b:e56f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MalakataLU00" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DzjY7YE3kOLFBghjbhShR99mlG8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pn6ZPE3SYpUH07enHJiQPiPd+j81ZhGvFaVcgD5CXRY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:05:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.115.31.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Sovereign2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DzX13dFiGZtgstLLybt+NaCEr/Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e859keotY/x67H7k22R/zZpvIWklAt/7NON8lL/OVzQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.170.10.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c70:130:1::506]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DTFNODE61" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DywsQYn3SuktYSB6YQ5b+vdrgYQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xiEkXby6ueDJQnaEO6PdxZzP4tw0Dg+nze7ovmxq2XQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:13:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.221.66.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:6020::4dea:102]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cadory" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DyOVCwhjq6/RGdfjJ2rUWNUV9Pw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K12geKKDCUtNNy6QR3Sn3DYQit64yHfSVgNPsFxCWq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:53:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.200.169.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 4444 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=680" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeExit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DxyBaN/QqtvmG9cRlNN8hn/tWiE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7wWoxVkhtz65zf1LCCmHouj59/frG72wymif3bYIyJU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:23:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.159.196" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra57" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Dw9pCvHTLHw8csVDg2YlYoiHuoU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "heZktSXxWFylvtZGGx3bUT1I349OHbVdfw+XB5++7IE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:37:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.195.107.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=28000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "polux" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DwXpahEJ3KIha2Nl1X9kgmwpvCI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X8LXcJlCIAUKdw+2V0+xfmObB52+9voR9aCfljlVa8k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.234.206.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ams02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DvmRgssEsUpxjv38wPo1KO1IarU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xUwVGvHG2d35ZXP80chOvqUCBZKSG8dKdLqkP4A6biw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:49:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.151.167.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:e3c::a]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EphesysEntry01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Duw73h9V6riJ1lL5y0bwcEiRBtk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qUyWW/cPahLNYMiQWbbWvLkzpdKQYdqqLLPJ3WHk8tA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:38:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "64.33.179.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hermes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DtTKio5s4tKNbSOyCBWuOYJkb8s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4qq8Ju2/fUnJ8TA6VShkP3yVtjTKeTy9HVSJt5+U2mo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:13:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.72.115" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f858:2704:73e1:7085:12ef]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TOR2DFNrelB" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DtDqMkyTHPQctScr+x0BWz1Xcqk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6of5SfVD1z9uuNO26L8raB6TjaW8ciK076fUg37GFgo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:05:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.182.196.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=60000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0187" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DsBRV0O0wog/kIxSh3Sm4S5hO4U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lrps0s5eZsPrFL2Yrp7ec7DfWUh/9PrHzxt+84GGJpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:52:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10187 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::187]:20187" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myrpirelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Drd4Jvvv/jp0lmFtyyyw9Hh3ijM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cyh1jSSgVwMZzjyrHGEutZD08tJbCzK0cWuELCCuf+o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:10:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.68.41.151" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Dqvc+F3cQSSdZCkzhkbxWZgTwRA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MSw4J9mES3LJT9ZNvP68S3NysPC4rPz2z7n/p4H8o4g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:23:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=40000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1143" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DqHXLVkl6ZmpOGb/zRaVDUMN4mc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uy5LGuwCK6ZrswxIWj+DlNz29kGwpJmZNgqqCKab1S4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:30:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::143]:11143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Dpz5KhhANBrss50flwDBuupRwoQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8TStnpKblmtaMwfIRmkGBUAplXyk/q/LMWV5iHWaUQM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:17:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.165.26.13" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Liberation" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DpjqBabaD6EcDDwyvw1uT4sNHbg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ykmx4kRODYlgF7/JRTYcQ8Hz3vhwA01Ogv4wo+NMobs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:59:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.236.199.239" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AndranikMarkosyan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DpTm4oYTIwBWK9Eqa4gXCMwDK68" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hVVY45OFPZ7hsidWwe0WRGTzzTi3gs8ZeBU8Osfv+po" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:01:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.68.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e01::f03c:92ff:fe58:5755]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ua321" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DpK/ArPBGw3RgwGg3hsWSgVG428" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RYCvn1XwpNRhtHMs4JLXQ/EAlezkinjeJ45or8ASc44" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:33:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::182]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Yank" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DoLoHvo6NjK5zVCwjMl0va4hzPQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UJlV7Ms+s3haCrDHVHYmeWFJZHu7kuxgDIIPmSDv0tc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:09:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.46.80.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1187" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DmmqDgCrnlu/BSyGRoIimwsfFq0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iIvK/j6zw4Tq6+aYqLDReVqxGXiSswcMttDvwESN4lA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:34:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11187 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::187]:11187" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artlogic" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Dl1zBGblu2dbyXBMN02+fhnwYWU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DM0gKYQK1SCHe3qveixUGGZ7qkWsiqs6OcnPpTFGxRg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:40:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "165.227.34.240" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2604:a880:cad:d0::6805:f001]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MKHWDJ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DleC4AlOvsWW9qQNdsKwEqnwV2k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "asbT/JUwSjV36iixnb8PysHR3SUF/5bIImPE61POkDA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:50:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.98.52.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "weizenbaum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DlUiy09542wLsmO6vIYc/GhpKa4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "IHRgDeuqHAg8kJHHhVWSLqH4oVsK0JyGOac85yeHHWc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:19:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.102.148.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 42895 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Dk8ZDEpvfd9/jJp4QrhbS7z19Es" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "k/2wLhX5rOOAlB6MmUtPskj9USY34jvy2HPz4vf7D0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.79.181.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4ba0:ffff:58::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DjLvMYQZ0wBcMAOv9NFWapQdpIQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sHl4eCzr4B3h+knHrdgciGjjo5mhdersfJ989gs8LVc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:36:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.152.209.217" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Di/1v4c98v26vkLb8ELTUN55TxU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tvi+BrS3cWd7/iLrIk67RWkoHNtyjUo3UkyiPvw886E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.36.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "limoneneis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Di8gqg28h8JVZA4PT0FbFGlN96U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/ydBGmwZKn3C8FefkbtAaxNobo8e2YoIJgNiBi6oNoU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.189.134.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3000:8469::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Nako" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Di7sElpqyNXr9ds2t3aj2lUQ56A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YHN7wQdtr3zuB4xlV+V1DVKYYH2UbK0nfu/2IyH2ZYw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:37:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.55.58.248" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:c0c:b436::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "uavae5Hahngu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DiMAjwD+zjWq0xBrQ3yTAl9R/pU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QeKmSqXB3d2pfYm5tPc/M9DukofrxsZPHiPeSE9ZUPw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:25:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.12.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "JazperExitNode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Dg7YDQQtMcmO4k7PrYnaMz+kw+s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EkvMMn/TjmPpL3L2s7qvMTtB1kz5JZooMQkqNB6KjGw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:55:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.51.76.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0d:3e83:1:966::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "82320e8da3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Df/l0oRsU3lOnEuren1r2sBzKFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cnudmbY4e4z1al2nkhqpw2DtyvgFS1Io6ezYBo60mrI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.90.208.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LoveMonero" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DfEQY1NoqmD6yVE1h+YBb0B+95k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g/dklIKiZ8cvSDE+amYuja3JhCGUeizGASG4yNxT4mQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:01:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.213.175.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7977 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:8bc0:2:dc2::1]:7977" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DfCTefqUYvcyfQDmN9AAaT7hO6A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nrlyN+1dUJH0HHeaZ2W8aYyuOfgNL7QXvWS/6IC6DG8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:33:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.248.61.143" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=670" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NTH105" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DeE1pNDsy11X+Lcb+OIpWPxBRqc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WK0zwwi3vH1eyG9+QoSL5RaT6HerPfaNV1sH6HvVZ2k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:21:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.205" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:192:42:116:205]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=110000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tahm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DdOB5mHMi5ypvdRQPj05PgijUbs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eVQo08Fr7oa/G+JX2koPaeCUZWLEwIuUUGuyZwe/TmQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:09:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.190.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:b628::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=64000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "avdjusko" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DdBO8LCBu/3jCC1OzIpj/QAi/K8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Mz5zmZ+vGyCvr2A9mWoSB0U3foI1rllqsrGl17UdAEU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:39:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.255.161.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay28at5443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DbqJGnCuldStd1k6k25sBKvy584" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JZ2/Lrkg87cb3FKPf1hiaP6aYfJpotg6xOrPib0xzCU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:13:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DFRI13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DZZ+rOQkSKCOJENm33U7v/YR6zc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "T59Ii6mbIBGcTOEkqmErmydiVV5MndQ4hjObDkHVRTA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:46:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:289c::20]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tirz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DZYhcPuzg36F4jFO6qxJlmoVPzQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wK7vY+SDj3oNBVFtjYwwg4fNhgOYMCHcb7tZomfT6CU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:33:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.230.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=49000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Starlight" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DYh3OS8v9a2NjlvEOAh/Au+XuQQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "l0PSgGCdB3CNMPzKda1pN5x7dl/Tjh7k8TP56T5P+Zs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:20:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "58.107.88.237" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LoooseMoose" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DYO4pZN/aTjHTzJsIcIZWfOV6CU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HAhsASkQZe6Lw8/u7V6ceyUqQm8mCfcJW9cPsVfSDas" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "206.174.119.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 51021 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DXZhoz65ykS+wxCdvsf5xeir+wI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B7O7IQOup7/k3koZmHWFtAVmfEl3fe2L9smAN5hnBW0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:59:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.99.26" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:683:3805:33ff:fe78:a676]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "martina" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DW4lvYxUAXjDCe4qhMenRJY2DW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nks7uM9Ey4/WrLT/C4wEhFjuamao7psFzVeZKm2gzf0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:09:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.247.55.40" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:dcc0:dead:a728::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DWyCNszY6ovFn+8Y06/1l0kGHlE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Lf+j/jhuppKZZrtECaIUVWa7HwNKquiNpYmB2qdw9uk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:20:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.61" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::61]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=610" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Toothblade" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DWbAWazLQBCLTgq8vxyE414koyw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9QyfUrmX5rR3nzsWpR4XirLa09OjjCKdeBffPW4piXM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:20:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "202.157.187.167" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1128" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DVqnwMU7ZevpzjpAk8uvIxnEUnE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b28vfj1L6F5TXL737zr2K7SNmCjks1+EFWVt6u2fGf4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:30:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11128 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::128]:1128" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor4e3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DS3iQq2g7XcyXjruOp2MXNB8LPM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LrpNBzpB+z9MrNlNUYY5yK24f4QWc+FReNDRsZTGtUQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:39:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::20]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DS1LHSdGiAa7Ht+wJxXu6R4auU4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+tRkWgaPv+v8L5pkWwIiF2FdYQc41TJv+wl0t62tUDU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:47:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.254.96.208" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:401:3100::30dc]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StopWarinUkraineNa2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DSt6ypr0VIZWWUVPgwK/tkJKNGg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qkEx8Q+JqXQunuHGn70scV1U/MuDwolsJDlzmTCW2j8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:12:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.152.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DRL9h4IPrZz7JneIoDzblkvTL7Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CHpxEEgqwiNz4jDNAx5m0kc1EcDwvpcyDc2cmk1FZYU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.213.175.43" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 2020 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:8bc0:2:4cf9::1]:2020" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sellerie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DRLY5y3tme4xuwxXeJNSvtDO7v8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gn+MDWGCD+xKYpBhGPemes9UoFr3/LDRwTinpgk1yd0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:08:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::10]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oli" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DQkYWvWQ4pQ6lO805L48Jl2JHcY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "duWN9i78hENHxue9W5jhNnfU/Ajhq7WlWo9NO731sH0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:00:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.93.140.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DPw8AT48SVh4Q3lhBsXjrQk/Vf4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yM4DeCYpOlcRTjUUg+qQDIsVSDohPC++IjKxLs+ly68" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:03:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.248.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:2:7b9e::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=57" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "comedy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DPLwf/BYHrvM3yCeZVaUNYqY2BY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Y8mBYWaUrJxqYf6JWVmN+gKCaVZ8CHtC7K1C6Zn/o/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:04:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.225.17.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SCtorrelay2PL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DOYgGcUmE3KQVQFXQDlzf0xxc7A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sowVZ/ehG6sLjeViPMnu9IxFDlcDBgxsmVBsQPrTPHA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:17:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.138.16.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Route66" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DOO3Pd/5L/ZlOpx/kAOjK7bCNk0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "MBXqpMEp/3rPYXvIGgMrglr+ZR1Gg5BMmVLJVmSWdag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:00:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.9.42.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheLoneGunmen" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DNz7C24VAOV73X8kBUPrrvgcEco" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gi4kgtjT+GRt8bshxNEOI0lJFpNb/SX/aeTwQOZpasE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:03:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.163.70.234" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eita" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DNyP3YpIcnHey3kcDUZYXxa8jxk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4p6CEyaUHOheToLc3lMXTjYEL7uRH9qzPKNMWCwrnxU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:05:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.26.127.24" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc2:45:216:3eff:fe42:b953]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DNZm+cmkCoz7HmuUZVl6UdOhy/g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AzOln8KcT504kywy8s9f9jm5urJ7UJsGwDmRYuC+eNM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:00:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.96.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:5:669:582f:2eff:fea5:9474]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WurstRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DMkmSDbvAUB7STTQa2zVN9RBpio" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "N4JhVLa+8RI4/NkF60FRKI9z4rnhDtuA0eOFNeJzp5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:55:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.165.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BESTIOMONDE" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DLw/xsyGPszzZ2FtVJXlOoYTtcw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X9HgdtjePhU+5pYoiCNn8lh0mHbLxrOooI6yr150OHc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:25:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.105.242.117" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8902::f03c:91ff:fede:8f5]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mgvx" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DK//5HDoivFW1nULYWmVs3kPJO8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vg16Ft3oI3ptm/jXtpW+cvDjM/7TJsP2cHtEhRw5NTI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:15:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.123.52.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheSecondRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DK35ZQvm88tqCfKdi5ElDZPdkeY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TBslGwiok/PXPz2zuN+QWX8YVKjxEoqYW5e3pHHXGi0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:29:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.10.86" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=580" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Polyphemus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DKvtkVnx5L6Ch59aNO2Nc0npMb0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J6NpTrmg0Tw3+psEe7LDl4xtMvTVubYaP7hZ55Iu9y8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:39:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.251.84.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:f174::]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Turquoise" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DKmcOIhvRsl5JIJ7fj66LBAfCuI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "orJhXsZ1vvH9sEXI5PK1kM2WC2X9ECPGtrrGzRis05A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:38:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.120.244.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BM02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DKmK22GLTYI8y+HfZgLZTa/hHNY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M1kOtiOQSrI/oQTExsoNvvBzluC3Hj+ZZKSYyPeGALY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:06:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.239.222.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:2681:101:9001::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lodrich2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DKP02VvPJJZPxGI1iKPxfi7iFt4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BpImpnCIzTSbJOAEUS9i6YNzpqxq7v2UQ6/mrbmiG7s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.195.253.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9005 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:8235:0:44bd:c9ff:fe2e:3165]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=56000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1179" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DKNnfc9DFEA84UiFnuVVP5rf1m4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ly+z6zEjarWznKKcGi8mxw0F7qpfw42YTryDZeN6tok" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:50:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.179" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11179 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::179]:11179" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber19" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DKG2vJBuXdb0z+MitL7+ehfULVI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "le3qx/KTwqbZkj9rfXIxp2+SZqzsZQZc3g3Y8BwHUzc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:32:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::10]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nsaPwned" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DJs8aGQhxajCC6oNc2nNkp9DoXQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/Ykvn6pfzjOPaX2IkpP9pzV+KtcarB2naGbYoPsU9js" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:27:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.244.243.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1337 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4d88:1ffa:c8::4:158]:1337" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EyeBtoR" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DJaFOxmbmd7Q3FajcxXOig+Nwr4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+kq5lyTBcas0u9mYQqzKSHSWPidOFW+ASncDqqeqsbA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.212.41.199" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sometornode486" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DJAkkfV3jmURE+Op1h/bunsXuPQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dUTqGNK4tZGtpoQaeFit2RZcsMrIpar+2U3uiGmhN0A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:23:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.41.211.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=930" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DI2P8Vo7WK5KAZEFxQEw3Rz48b8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GkaGxQr41GIbcrra1dbyQv2dV+oUf+0TdMsYET1fvYA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:21:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "68.104.31.55" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "doppelganger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DIpJ/mK3x97WS3xqlB71JA5PP3Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vMMSSOEWYnfgBD92PvzEK2F5FLVccnZolrWDIlJgL18" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:29:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.5.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:54f8::1]:9101" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oignon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DHsrCS8FJrx/wtiya/AwdnZeSso" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cnTUeIft8P56WJKMcOX0/QP2V4HxdcL2cNfSwi0x9mw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:07:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.188.85.15" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bruxa" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DFz9fMMCUVVaw6iy+H5SNDBHf7E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zXHzxIZLJrqljoDiUUFGYPdpl3EhRn6+GeeOJflA7JU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:24:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.250.14.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Freebird32" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DEdbpNOqPCibcW+VlUytYW5QxOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CmWhG1vuzRpK0qx/2PR1Dux4elgC8QzUmOhon6nNGvY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:18:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.7.18.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2eee]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HORUS1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DD1eGePHW1Bcis0m+J3KLflwVT4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TOrfVlxt7VFQ980HmzY8PU+Wd/KYk9oFa/29L1uCIio" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.3.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1066 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:6a:528d::a]:1066" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=84000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rem023" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DDWZB57yHEmUrW3ekfcqSPFuipg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fi17AaNkij2+gjZ07m1l5rU7/j3tBVyjL0P8IfQvYHs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:38:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.78.28.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9451 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DDI1GR/Klyx0V0d6vCB6n/7IGMU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Af63K/FlUrEneHAPcXf9QhCUpXWky43IfjGpICMn1CE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:46:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.112" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "libel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "DAOfNcLkDctxzYoH6Xx/13h9QtY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "r8KBubmG+yTfaBJfNnIBz3ASKpZYruEZh8/ZahbHU1g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:30:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.200.21.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x766c6164" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C/YG3oNtTHlMr/fKeHIPjIdmCZg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZXvawqQnwS0Pr5tIPVrjt15cgxG3HQ+SUh7JcXOj1wg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:51:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.127.196.226" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9162 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Dagoth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C+yGDEX2nwRwhN/q+3561ooGJ4s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "R1dTlcxpCfq2OBbThANJsVjSBn63zqlMHw4HuAfqcCk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:58:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.52.254.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk6b" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C+LGyP3Llq9lgD087kkhTWGfxUI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EUOa5eaTSGDFKIkq2LbiFNfXXKnzDWd4WINGXy0HZxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:18:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.141.48.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:2:32:4104:104:0:1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=420" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "quark" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C9dExGdP+2DNHypuh3sC975FWLU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DoWwYgUUTbXfwfvQMi5usILTylWbtiC9G3NMf/DLK+g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:25:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.63.68.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:121:12b3::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel5ev1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C8i6Msw8sPWY4MknePfAlG37zpE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7jMHI9XVnkkdaXEVZUxu8kaSYfQEmYMUmO7jFN9daPI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:44:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.118.116.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1b60:3:221:3132:102:0:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BerkeleyFiberGuard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C8a3FzJWyod6pyqLbDWcnim+ccY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "scO/lJTMQz9IHPaN1OErgIRnh8fQvcOSkhM4GgX69a4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:12:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.180.40.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "brokeneye" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C7YTYxrqffjGs0y9GJJdGmK7xQw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "eE5H4Gwl9ZqiupKtuurduwoDv2R+fbI0nDg6fPs3pW4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:54:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "179.43.145.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Albis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C63ZUQRAyb86co8stjCDb/mBQrI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3mwxNGNbavnLyIf1UxJv/e2PaYzGvawLJ8AQ3InzrJA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:14:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "138.59.18.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tdxchg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C6MKPRG3P5XRRHzJs1vl8GgdWhw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5+oVN6+WNc4GymUj+qgGDUaesV1nN1y40Y8OBfIAopI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:31:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.180.192.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:c207:3002:8686::66]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber27" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C6HI8mr60/rvO2oij5c4LRFQJ7k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zospiA9gNYuHB7e4aw5iyz9wAeghvOYGTg8y1u5xNSw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:30:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.14" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::14]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tor4oobeivanai" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C6FWB++dAPRWTJMSeKaG5LwBwtM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pxfPI9Q/fdn3vtHWCbDblwrsOw14FKy6cEb3fQftE6o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:08:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.48.93.37" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "who4USicebeer47" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C4pVefQwUSFOKIVJJCBSA6gB5Qo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "iD7e9JUSuxWi4dM3B/Edc4/yUEI0gwKWUTKd7NcVVwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:37:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.208.190.12" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 7162 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "purplewineglass" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C4a7/Vz66AhnChaqd9dbekBsqHE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pyArVT+7UAmsEm2iiMvEKRXnJwrtZsJ1W5s/KMfqBBA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:36:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.42.106.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9021 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fission04" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C4Qctw+e0f0DIsK6LrDYBCDYfPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jkICvLGwC5f74n0P3J+vtn69KI4OR3zmbhB3H7Pj7hc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:33:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.94.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:b14a::7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "OnionDAOContributor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C3eHIu5h4cNfWUL3uudZj1PftZk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "M18iskLx2xUFvMppZ21ZbcV+aUbWJ6fhsrSEZ9xa7mg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:15:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.99.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:104:ad97::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fabmann" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C3UXijjRNQGowfIfBsiS1pWhvos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "9Z9i3742S3v6ZwtPzXcStuwsm7tIYlx0iGyxVhK4FGQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:14:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.47.199.88" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=170" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C15ecP/qnH+f/RO44WkWpgjz6es" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "A8o/3tSQiweh2xB/2wHfmy9s2ok0zQ2wxPmirkZI810" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:41:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C1vHazvnVTsin9PnPyau1Bwx3Rk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SNDSbu6Qv7WEeCVggsetm4QviaScr9HpxUEKOcTfhAU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:08:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.42.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:17:27:46a:f7ff:fe1b:fb06]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ChuckNorris" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C1fxa/lkd4jNZ78EYHpfaonMuFE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HWxxQOQUeeUFIw7lBzSqaYAAELeRY8ImzVivhrLtz3A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:10:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.202.169.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 3443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=150000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "poopypants5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C1fsS1+DlXx6y+juWrp67qfOHWY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7psUGCKyDhytWofrlhOIDa7U4psx+dNIx8iH3T4Slb0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:25:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "168.235.111.34" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=950" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORro" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C1VZQNN9yElyiEHAspAHThob3Kg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "J/nnUofhGosLxEzJJAkyWv7doIg0uv3cnDLj3XdOE2k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:14:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.138.75.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=77000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "l0z3rzb3d4m3d" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C1O/kZuaAe1i7RDlEpKspQ3bEOs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+jN1YnDCKC5NLzrVPGgkCNQ2bd0vwJmVIlAMczFeh/U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:50:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "65.108.253.128" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c011:9e93::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ranlvor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "C0U3WizoBl6KZJ1SzDXznRKHRag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ggJpuFBLhA8VPEbjdF4d2QlwFkLnxUueY/tqAh4XzKA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:23:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.27.105" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:1b96:2::2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SnarkyRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CyYNZqHupbxbWkvjIHH3Xw9dk4g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ls8pDt5BpG2IZo6hCrfHKCIxKBEAPUrBDUDRr5+L4EM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:02:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.172.18.168" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9090 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CvmCzHGgHZXolZ12PQ7A5abGEkQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pqHus1WnvEN5CyN8ErcCZY2Cihcyg5N8QVLD+XrNwEo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:02:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.36.68" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:13:fc:4b7:4dff:fe1e:86d4]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CvkChdaz7MUqv6PLMUBN9vr5MTQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FTdgMstremduBM/q0ohsZWX4mgv4Pz70u+U14MJRxAg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:43:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.191.201.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c440:70:88b:216:3eff:fe01:344d]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privacyexit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CvOZQK+WjP2iv3pgHvMwTgb0S7Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "esyHJu4n2UIEiTxZeP+L1MGwjuBcEjfHVkRbiXQUYfA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:39:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.170.114.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:15:a68:58bb:1aff:fe4e:768f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "scylding" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CuUcD6BtAyf9VIIOwcokqgjt5ag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sntJGlhWSbVyKOcGL2mPF5xiK83iFH2j5U5DkMvx91E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:21:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.250.14.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CuJeJhILaGb1SKD8zwh6H3ayrU0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xIco5Jk09CUeCchTPxUThyDLOenzNFb4CJn1Qkydzz0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:53:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "31.133.0.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:2044:c141:0:1:4401:1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vanaheim" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ct9JgqYjHs1tBBcENb+0wOTK31s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8+nWBOKYApMLXk2K7EJWxvuu+RrFUTmJO9iwTHycRfs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.69.60.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PieroV" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CsPIa8nKKlDHdi70KrxtN1daz/s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jlJMalSyMIwLgwy5pG7kKbQbhYtVG4E90+52ShUJgpk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:09:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.132.226.30" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 22 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:401:3100::7fda]:22" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pinnacle" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Crwev/UMilgnmtB/vXPhg/ngC4Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+ETaLUcf3SMTEQJl76nBZ7+b8W9B23zi646dhENbZh8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:43:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.252.178.224" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Cn3kz1/kngA0VT1xb8q7mtXteSQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "+SOW7hkhKmiC2VnUrU6RM3kFgv/tjRl+3M5sTBIQMRA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.94.220.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CnbAoKch3bwyS3Ba2/yV/YBq6FU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ejd0FVOzMmsbZEW24i0FxkMHrAVX+SwDIy4qE4tndyo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:59:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.68.50.25" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:d58a:c41f:21ff:feea:e90e]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CnQcesH6fnLtnDaEscO34barTM8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "U2mGw00WfaQE9vjtyIFFzA7GfeMyn7UvH9alag/zu1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:55:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.160.220.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=41000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sikrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CnQTBoAYrd5RSmipGkjIbCfvZKU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yQa7Et3pnbk8sJCAiRS6wqh7wcteLRWLEbZCItybvhk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:14:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.251.116.2" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "notGCHQ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Cm+43lwbYxEXr5RESq/oUACBOC8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bLU4pyURe+r+QnAs7e1r1Wh563PT2ee+r9OSz4r4IXE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.9.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20 Unmeasured=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arighttosurf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CmABseOp9TZb08KYi9abuOrXEok" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "btsOa94vjsjLcVKH41PtodsU1Xd8sFMbPrNfSCyzJLU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:11:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.83.234.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:1854:1::face]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=660" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EatErgot" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ClaYW73bX9H6qMkTPHEVlhqmw3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qKkedpvZC/HKbDCsrQOLgbCsnQGxgZ3lT8AAmMBM7HQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:27:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FlashEel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ClAA5f8pd+DSNrn1tHWQ2IiElN8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OYbVBf3cqqIugHJ7WKs1rkylsD9RAuQd2U1m/M2ftH8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:26:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "130.61.125.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nodv21" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CjujZI5Tpivc9PSdV2KAOYGLjmk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sux8cSjXa8l8RcAQpFNR/Pvc6BGSWp1X/gtCwxTtCV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.62.224.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CjqvUwdH1wNNv4jFGAM6IoJ+PEY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "i3fKr6Nrm7HoeMKpvpP45Sa90Wmt92s1HrTKF45G1o4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:56:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.45.103.136" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:6:5:c437:17ff:feca:57d4]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipca" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CiNmmAooQtdw744Tan2hSHY2BEc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jb+ULzEDUkYOKPp0KAhglISru7b9Rb01Mkqc8gDK+h4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:51:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.242" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::242]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Tor4tahfahce" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CiFRwEkrihf9A+1AWYYnpwJ645s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "usTAOv4QNHA+7vpNomeyg+Q+qoUb83dgFpkQFCtsqz4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:28:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "63.227.116.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kingpins2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ch7Mt98CckkqTzf7V9wPn0KnfXE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "K3xHo6Jx1wrYwnCK95ADQrce6ApDDLoAl61FKPloESc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:33:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Anaconda2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ChdUWTw9v1tbNcBNYI438oJWs18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gzz9v2r1h8/BruwVUo8Ffr6CuvwSjz6zLHOs94QsXks" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.0.60.229" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1315 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 1316 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "luxvptorex" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ChHHVGoTMkEtHr0TvUw9amZE1+A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1DfXzgxXbycMDae9LrOiUeesKgR1sGSBrsMfzIGFTXo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:05:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.30.69" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "portnoy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CgwB3QBE5wMY2ePaXxJaCQacV8E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ctqXG2EgoK2FFoJxzQp17nNyNhnHMjt9DChp2X4y+0E" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:17:46" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.198.26.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:bdc7:100:16::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorxzontochoRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CfhXLWiR1hrpt/AjXrfrR4KRYzE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "32uf1eTm+vVvBcH7xuZwmMxVE/BAZKUPrumcZM3v4tQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:04:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "137.220.53.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:19f0:b002:8f3:5400:4ff:fe23:18a4]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hermes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CfZOAPNMiPYEFj8k03vq+SRXAuo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zPfP2Er3M9yzMIJ+QMUbe6jJFulEhf16nFWm+dEjVu8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:06:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.115.87.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "spiritbomb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CfSaSs8e/EMAGIoCSdFJ6grxChw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Tq+m4/PGX5eA9e/Eu22QyUjsR+3yvG0E6CRO6fc4wPY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:30:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.230.237.66" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "torrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CfGTZYfVqCq815sRWZwETnLBOEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uKPks/3HC0PVreZduAd9jz2nvBO1I0poGSTO56Ii2Cc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:09:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.45.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=6800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GomasyDotJP" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CeEHsYGHGWdk/4zIdOIkfOQRtQo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DOWijrO0/RD7xxE/eKT1fy21v3ONTax0fKs+zUYKT9Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:00:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.162.127.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:8902::f03c:92ff:fe5e:9635]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "cyph21node2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CdIimpWJAdklGfqO6T/7FIGC2po" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hGebmWxha6e15MTf+NUq2yzIhzoU3PZwKtXP7CZrsxc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:28:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "141.147.33.116" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c020:8004:9d00:10fd:ac01:a751:7a6f]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Cc4a8/ty5z3+bvX698gLAbjGIoY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "QNW9q8gqbOEZsy6wevAclpor1heUFG2H7nZo8R+T82U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:55:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.4.153.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CcoZV+wGcQRNrS7qKCo0j/19Jx4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "P9EAoZZ1ix1EI9K6+lRvBXmsw3v++2y9iNUa2KElYyU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:15:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.141.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:7e3:e8aa:c8ff:fe36:66ee]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zwiebelfoo2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Cb/mo2LSzkNcRfmbVhcbbaSG0PE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tA147W2kNh3jLw9FI0jyYfZ1zlLJLWb3/44dPDBEuoM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:54:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.33.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:64:d6f:3855:34ff:fe06:ba9]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ca9celmFLvRP9W0wwB1fQS/Rl4Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "na29upe5xKvS9Sus2RRGtgkneDG6IkyrW7cTUomxnic" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:25:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "74.208.182.78" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Deepsky" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CacOOW3pP1TUVBu7Dsjisjdh808" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lyMt9cN0kLAD05CF5o+7HbI7gsRYNpRFfMBolhbWNMU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:43:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.228.53.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:cd::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "martzeladidnt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CZXLBmVbStUGifSrMDdkzXF8JY4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TE9oxaadUMuyH+OWTO5r8mdcMqiSd+RgfQqqWLESe+I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:13:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.116.120.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CY+YU4ohoWMy6MS3JDBcKjSWpGc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e3Y1oq5xJsJprbEX2LlBfWl7nmMyDx279+C7Qy5jL4o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:38:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.194.142.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:1c:808:38a1:2dff:fe55:8c49]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lrjstorrelay02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CY73Rk/VXkojIekFeMjz7We1OkA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JRQqfJtUwkBxqBslmvBiqiCrvAonGZcHa7cxUUimtUc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:01:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.163.147.235" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 19001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tourette" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CY2c91aNJ6goj6S7OBmpmRMxXW4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uK2e1eHbS5VtzBpjx5FIW9yRXksHP+cj4Pm8QnSHxhs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:01:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.47.203.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tornasol" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CYs0V6ujGtZaOvR/YbYj41s/qy0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "v2mjqATIwlYJGt4IU73kUjM4s51EYro9WXSKs6mz368" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:30:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.199.50.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 26709 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TorWedos" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CYdEqB1cycMZKhmX1MrG9nkImbs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xnSn2jMQqhr3T94FfYsZXaixJaaYpd23CJVU91P40Pw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:42:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.221.212.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:2b88:2:176::1]:143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MetalsAU" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CX2DkKmY++vb2oC6x9hviuYG5KY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oZu5hM/EiT6tj20eGsSOSuhpSez2tVn29WX5oqzjJtA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:01:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.95.231.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "collyum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CWVugepavU45PlZEgo9PtmKHAEU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mmGNF8pd6Kz6DOEWPFzcnlEZlMP+hCPYR69mLiuJnjs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:45:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.189.96.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SevenLayers" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CTW6kXj547UMmd1T9yOGX8Ikz6g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ka48/2q+e1inubpUenTAU3defgkM7NSgWK+hpFvCUeI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:46:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.124.250.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "jwt28156" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CSpwc1/Mp1PQiM3GC2D3dDCa+sM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "81hl1Q3LPU3zmNrCT+/KFBVqwYnSqyP15kXhOnn2JdM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:50:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.245.60.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bhsdztorrl02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CQuDupWn4tYV1nme/XV94t3H0P4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0oYgwCYfbHWAOhZVwti2Kkm9ZEYMPmT9BQx4b8zH0NI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:09:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.39.234.91" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9002 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mercury" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CQl1h10bvlP2/yrcqLpByX27Plk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H4eNGUVmhxHZrPvmW4KiVmmcjcgTjvuxm0YCGVgNObU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.9.168.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:bfc0:0:3::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mev3PLicebeer79" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CQey/5Q3bEHLfrBTXYcX/Z8uhLE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ld2UdefxCpHJg3jzYNUY6s8Oype1ZFW9zaplaA18ijM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:13:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.52.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8179 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CP4n907Ei012Z+v69lTlFRuZJPE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CIDfBhcm3onWeZPjP/oXTEt3FC5dXE7XjoGE6G+NJJU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:19:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.87.70.124" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=340" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "neartAurora" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CPRpK2CGJkD2iLhoJrZvMN6nq3M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7zc4Oy62YY2PKI3jXrKmpJuq57lIdTtekzWux8TIIAI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:07:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.182.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NeelTorRelay2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "COpUV89m8TrInqdGgkF6YAHcYdk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AveEbNlmDCMuxGzfYpkslhERHCsZO63O9BOrdUD8jpU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:14:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "97.113.240.90" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:61:71f0:5a00:5a9c:fcff:fe0b:ccb5]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yoyobolo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "COcV84DwAxOzuZrLENqsel9jgn0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zkyHXX2he88kcT2qM7q8BxNDHVEEjEub0eCc9s117cA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:18:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "75.184.16.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 40932 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=280" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ZynfulRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "COZAebl9m6mQotysEF+bvDsq4nY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0rxvhnBVXceV/CJQeXqvKBPpRaJBFgj8GVDAMRXaIDs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:12:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.56.98.134" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:3e:568:446c:e7ff:fe7d:de4f]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor4e4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CM49v9qifbbARKZ3r2jXI1wq/IU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6DqRm+lL76X80Lk7j+eMDoiS2nJSDMviXVHmPO0HYq4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:39:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.176.3.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:620:20d0::20]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=25000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lollipop" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CM2dQiQFjcl6HydnmlvuVyTExuw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nCb2Zrh1bBcZVWf3ZiF6J2svu0BCkYGvf0qvM3CAo2o" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:49:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.123.212.113" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 1357 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:27ac::120]:1357" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "annatesla" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CLSIimVm9rxTY0I4YvSFKUIKufc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZLsebmTVqdoHmLdhDBAk41Q/1R8NJBm8i9XyJjWVNMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.255.101.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a04:52c0:106:d219::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=770" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "IloveTorone1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CKnzS8flib8MeuxaqdLg9sOtTF0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1/kwx5/N7aoNH/yvp6KT7uxZY3FUqr8GmN472vSCXAo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.134.173.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheAdoptee" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CJ6JWdOGxNwoP/2itZCmX86FyLQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Gy2Lt/AsYfw9ZlhnJAN6BLl3q1fppMq6wAUuIxb4HWo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:17:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.156.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CIpiN+7Yft6w4eOtCkpBn5Y/B4c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LBpTvbyOan8gNLL8by/PTr3NWlCP4VgFlS23bDYb3NA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:09:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.9.40.67" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:173:402:267c:d656:b84c:abd6]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "8lyWARGTU4wesrfy8i" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CIJECHQDSvvi+/FkY6KQ8yeOJPc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "80Qm+cDLw8155EPxDJ9WVN9u0Lg5OM72Tf6G/RpPHlo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:46:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "176.58.121.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:7e00::f03c:91ff:fe70:e0b8]:9099" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=180" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MYCROFTsOtherChild" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CGH0lm4ZnAup2x2QTbS8hDUI8Sw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OoUCdUBt7Dgnu1kR3WnAGwrRAShoSoq9tMafsUAora8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "98.193.69.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 32323 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.4-alpha" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=89" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pastly01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CFUny9ZIX9R1rJg/qGg6LZAouqg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kHTuyQvXeS+yVQyJ1qfmZHTQK02vCR3to0L9sZ7bSZk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:00:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "173.66.161.213" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8234 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "privacyftw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CFCXElTLXbWVkog5O0OOOJSb0H8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cwphiU+uYps+vMDtaJZcxRnZGGVWoUyUT3c363rgNqI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:36:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.34.220.187" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CD9Fnqc0BJ+zvRvkheATrLFpxJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H7UL8VeXN2gC6XVGYa0b4/c++mj5U69KjOEW5Tb6UbI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:22:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.0.64.184" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NAKAM" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CDxSBRFA24r3cL1Ax8iIPv/0yvM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CCdt5p8rMVcBGBSpAPHnvFvx5C3awUgZFjRc8fc6WfY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:37:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "212.227.165.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "pengy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CDlMSHPIpxvp9TWT+bStaUv825A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UPQ2hVvd6jWCe5bayjsy+RyrErUIaE/tcE2T96y7V3U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:20:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.56.171.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hirelayarty" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CDdpHnQa6OK4sMYHwbTt2y5d8Bs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zms5iMZnyeDekWHiQcYzJPTF+zSuqc+q0dq/C3eaV7c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:34:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.173.167.162" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=79" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheGreatKing" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CCTXx/sRfVxqwBWB/XmOZww3yAQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8qIP37GTWkGoN+S88QAWz7gNCceJ6Qs+lg5W7/9YFus" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:37:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.66.135.123" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LDLUEXRp175" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "CBFMjQP7m+pF6H6xNF1Rv7KwBIw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ep6g4uyJGEZ+wrLHQlZX2zm6/zxgS6b0APVbgEJdOb0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:47:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.189.1.175" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RiggsOceanlock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B/DmUuTMsKDx6I0ARuyzIuYxjIY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LrfCycZfqosOiHK0L9KFMEU/Au8iWQzKgeVQmqcHk5c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:01:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.138.98.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "fav53" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B9dy30ZxxAp6yR8iNLzpz18z9PQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Nqr1IxJC+twR17BjOpEaeI4AIH8zQ1+jndlg6Y9ALxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:46:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "205.185.117.89" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WolfClay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B8PrvkHfn+hVHfaWQv66cOlU3A8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KG6pZX+YM0cWoBWZUDdXZoR1EQwgGorMLcWeemMsAPk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:05:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.177.151.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrgSG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B8EC1rAn5bK5yULj6ULA8k3+5Rs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vbH6cfP+pPhfV+XEBwdcMxk/VkaZExzRDg2/IVPlesc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:49:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "139.99.46.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "homeplanet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B7j8W2ZxnDVfq/hLT14BMeEn3wE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mjtWRX/O3MTi9tGvABEjSQDqnBySDS0ahQi9WpRgH7I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:48:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.91.153.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=270" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "debiansRelayTor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B7V4qE6Odvp1kVuR4xtuUOf93JA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vKZe9iiUhY5kZuRhCe4nSPHy9j9F0c6i1sNUWEGf6m4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.16.114.231" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:28:900:786f:7fff:fe08:8217]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=650" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mymumisthebest" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B7NbzPYhHm2XCgFQEvyaLGdoSPk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GGowhnLnWH/n+p43/V/CRpGi8jN0WL87y1uu0sdcCWM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:44:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.174.11.156" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:28:805:1000::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "kramse02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B6z7CAHk909WEPhwtfy7VTnby9E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "h/mYo3zbcMItKEPip+/FAv4s734oIX68vFz2q7tAHJ8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:37:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.129.62.63" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:d380:0:103::63]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon0159" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B6KtsHnhRAknAg0jtHtDWMylhag" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qlhEiGJaQjdSiYugpzrBITqDnZsFfDqJ+DX8Z/w47mg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:04:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10159 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::159]:10159" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=54000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mistersixt2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B54RfguAhIRkbKdxX1L2/8gx748" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "373IiFmRZS9pjy4G8R263F24NQIR4U0ACMxIE8RpLV0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:39:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "88.99.104.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:10a:189f::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SingularET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B5BaDYrRwTTTA2hyFAsdset2F3I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oziTd6p26D1YVWWmD5Yv+Yj7TZaWG8eCChlLXHJAp+A" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:43:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.212.149.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AcrimonyOZ" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B4z8yqPfBcLRL+Y2nFqCBZRSgFU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SS9p3PYJSVqcLo4nyBzAarVUN2PazduMcaHAV0uVxKk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:50:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.161.202.121" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f2d:1ec::]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORpedoSHAdow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B2coktEco3QLalDyebDMykyhyjE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ReWupNdtGYxQ3578vLbMOMGiFm6ahkSzgBlxQsCkJTk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:32:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "90.92.72.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "B0sgwz1KA0U/sZqFNc3OE1JlilY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gsPn83BWn9anF4f/CfjVO3CgHd2e8c9rX0PIfO8o0pc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.99.255.254" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:5e0:0:2:20c:29ff:fecf:4819]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10buc02" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "By4og4VK2gxrD8FJdUTlKdn9g3M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "4xRfKEeFIbFO0F25wpV6QshnfWtQmEeCfyS2AkHntaQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:48:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.100.87.250" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:12::1]:9443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DarkstarTor2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ByhxQ4kkK4o0YY81vbR3UlOXSbU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "6w32p1Q06MD7Fd4W6uS9KCTsia0i495NcebT+6bcXwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:04:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.89.45.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:700:126d::14]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Elenore" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BxG3IGKKhLFNQhB/uMlU72mbODM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pv8+FAazNz4ND50Y7KWXb5qKD8z+hvI5v0xZQoHzt2c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:06:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.16.19.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:55:d46::3]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hyrututu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bw8Lj9FF6+qXlA4nT6+YSoQa4TI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "a+ye8Q0ijujywp2XS4yrl0UQfadaCuNPRWBkyNIYLYQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:40:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.226.104.191" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10600 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:4b98:dc0:43:f816:3eff:fef1:a10a]:10600" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "panoptykon" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BwsWRQlA8As6HIjBrXHrILbGGnI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/H9x3fh7fAkHa1843KixV6yn1qnb4i0BKqMP3DFkztM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.68.155.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=980" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "execs2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BwsD62K9eal5S5A/Ojiuu6Jd3vk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ddhQQmhD/U968aIjNKHD23SdJFqT1uOPibMYpEGE27s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:21:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.156.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "thorgodofhunger" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BwQGL7mlpWWTYaC49CuItkGaG0Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WmDlEHk9DHY6doz38Bs3bqqefhpkyyxCQg3psMP7iFs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:52:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.130.10.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=99" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayonbeshaba" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BuwsFmnlqBHZZA4HztV4baUMVzc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "EIWV4hsWw02Hok3MHkGMXej3p8TIyQ7//8w/dQkdDUM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:20:22" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.100.245" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c0:16c:11::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=87000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "wien" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BuclJrvgQMUcWt+6oHrdmuteH6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "s/NbtqPNIlvX6UvuBjvLH+C6Y8k9zRce4NZDPnJVD+c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:12:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.23.247.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=52000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "whyza4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BuHvQMtGNbfIJLZ1fAU09LAf4us" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JXIRnKe5GVFdOocgOiXNGzTeNoM58PgL4UIdJP1cvmI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:47:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.9.166.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "COSMOPOLIS" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BtD7nGhg6Nf7meoxCgFnB6+qcc4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1+ytncEpz0x8zYuG/fTyfGU5B5F9aIUAo+4l+A7K+Dg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:45:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "154.57.3.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=470" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "r" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Brvqpvc3WaF5XrRh050qoWjzBdE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uAHJ35O1lSd+qdk+qefYYA3CqhdlM17/T9QgZhIQm3c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:44:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.94.106" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BqxSeAafu0rMJUh+1LeCLxwR+JU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "2idPp4KA48X3J9jLVzFhe6oGGUD4fvD2XRATOnxntkQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:26:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.53.20" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EntrecotalaPlancha" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BpAyDWVJPhglrHCI6VTm7RIFuIk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3HsX3MO1iKwVFrY3ppRbG5JOgP/x9BfDWRsVGaVjZbg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:19:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.130.171.95" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "paradeiser" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BoBOY4PulOg8lFPzmx5STCctbYQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "p+GpLTv5mlOMrcJXJd298FbhAxsS/d9KLhutAUhVppY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:02:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.7" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Psyduck" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bm/jxOB6GOpTsoKPdT03iNWNdx0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jFNHz9/hg5PT/cVmB4SZ9fOaJ6sOuXcMVpyrQXWOOD4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:50:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "102.130.113.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1153" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BmzSxJPk33MAsnMer34xdDMmJZE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "x4OK+MpcgpeZpJFFRJXs08j0+Rq9X8uFv0fv3yEMrVk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:51:56" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11153 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::153]:11153" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HEExitNode3" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BmYKIDB+ImYZ7/KpM9JXnnZE34M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "lwGULQDE13LcqoeBTmFnfC+01O0xV4cw+bcK+7k09f4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:59:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.105.146.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:13f::90]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Raptorist" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BlGGNcPMvHDDEfm830w1lrtzbv0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "y56oEcjIQcZQQScbLVtmUythaXrAv2isHUBQ1G420ao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:27:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "78.132.17.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=820" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ElectricSheep" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BlF2arJ61b96j6jzdFnPxMotI1k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aiBY2Z8aIEaw26Q/YabnnxDRMS9EpwiaPUqyKBtbi6w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:36:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.62.185.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TheYOSH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bk0YPTTey4T3LEM1sMJNHolGqbo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S/AsGdPmbBTdVWNw0m87c02kWZ47Cm+d2v5tc5UY78w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:53:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.146.92.119" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:1f0a:716::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "WakNETX1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bkj2lGNs2LnDjSn5oCdl+X7C99E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7XjX3CU0pYQljJRo0EY75gDukatU8/pPhihs0lQ3Ckw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:01:25" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.47.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a07:e03:3:26::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "lakeshoreCrypto007" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BkWoCheQnTP6+1VI6KEPgKs45l4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oABa78kJjItr8FmXEYZC7mobF4gDw2xE2Wq4A7/S3lw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:44:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.41.204.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fea7:e0c:13::7]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=440" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CloudOasis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bj0j7Wplzcy/iiqMwjCwnDTwH88" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uC35NFshfsjpPbF8tFFl9Hboq8YDyG+C0t7ogW5b4wM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:36:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.200.17.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c00::f03c:91ff:fee9:6481]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=230" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bgbaeveRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BiBACCTmQSKq7NJxwbanD0GDnMA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "LL6UJgHqkYymxSkaTzMtQE7bRSC4P+mzb8VXaI013kk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:44:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.191.207.22" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "loglessRelay1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bh4ElpMdI6gaK2hckznTaFfdD6E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3zo6qcq+wMlIY9zmWxb15+YKpEizBgr3Kmx4qHmyDVw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.184.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "xbHnAiyz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BhdhnBuqJhCr5s54wl926l9VChw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8k1jxPGbQO/nUJT0jJ5d60BZ4cGtFyz48yJsjLYX+z4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:10:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.17.171.109" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:1dc0:caff:28::cb68]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1177" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BgOlCfceeGuuBpS6NdA7PjklW0k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jCcbbKiBSMXeGxz/aObvUS+qmms91GSouiuGl9NcfOc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:31:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.177" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11177 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::177]:11177" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "l1st3n" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bf/OkYlNpqdM85wMY08ynL8JQj0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SNNlrkWjUwnd2nkAcoLdB22PUPR53YFGdNuFCiUHOMM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:10:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.125.250.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:700:62bd::7465:a380]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HelpCensoredOnes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bf+jnXHaEW92aepO5ToLrqMVun8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "odxVOYQCd982oeZ3A0e8r68pYV0EsLLCqIRN/LJhmpo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:05:55" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.93.218.204" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeUyghur" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BfUGKUMFRkbMemVTLOUlmAUmKPo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3fGCc8jBi/+IRWgFRy8wpAHKKxTq3Jgo3tAmpNg9RBE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:02:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.211.16" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Taco" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Bd27dKq28Z4AMYhwKx5U8jA10GQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UqDvMR/IXID/Lo3tWX3dDYIHYCK3LYGZ9tVK32aMC6M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:56:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.48.120.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 110 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=210" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "madblock" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BdAdJDu3ZGi4BnDM+PB/XpKWc20" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "H+27rlkiPT0BJvqJLFpFhQfviIUg+nqnnQLpGhL1yMc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:12:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.199.217.82" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=640" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "electroncash" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BcYhtE72gziJrnt+KgtHZWnEfjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "aYy/ILJCsGMRkI68zboBYMxzJWhySWRVfmL5ZF1TO/0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:55:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.135.10.219" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 59999 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0a:51c0:0:136::2]:59999" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "h3u60M7iPf" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BcRtFVSVkWohAhMAa2TMmfuQPNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JiyJE1ktJuTb3/gdRBkOyn+fYLY6l+wHBV885DTPj6U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:27:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.212.98.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORtuga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BcMsXuFEVODEzYHa4PPcMvcp2ks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OAK5yI3p9PAaCkv94F6XNVsEctPBswmsrMCakWC9O6c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:54:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "144.76.86.5" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:192:1318::2]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=85000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ranchiJH" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BcKe8BLyChUrBgVzhtWoskUwnQ8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "BPW/l+6TsuQ8VZ88SYgoG+FN1F+dK4qVI2bS8M2D2sQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:58:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "129.154.227.10" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "sonolbellsan" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BbFCq0/LwBSCucj2WIsiHC4ZPu8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "S7EjGeuuDcZDKP+8PxssaCVbL0lgNxtJCHAp9nffpRo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:15:23" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "121.50.43.135" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "relayon1149" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BZhR5BB25HyLORKSvw5zvhYA+80" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "FGujj8lVa2TQiBW8V2evfMRMgK/UpKQONqZ6BNPUB3U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:32:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 11149 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:1::149]:11149" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myNiceRelay938635" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BZOhGlwQo/o9xpxyVqgY0pSWHJg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5hPLZpzUhloaNCsqi5FL8fCk1eSMS9T/7O9r0erBY0Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:35:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "188.154.144.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9847 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=630" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BWgal2eDTZ7am9/k4Vob1zxP388" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ayw1A8dHxV52BG2DWPP47u6H8G1YIjb1MUcqtfEq1uI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:02:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.236.83.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 46810 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor4" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BVurwJajb0H82hngiFn7HDSrWlo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "O3/bTUDHpK5Owh+7gWPumP3vPLfzc6f9aHCx79Ta2hQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:25:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.56.240.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BVeRDYFy5COnmE8UhEMpLpUkcRs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TtOkqNb0uQPTGyHp42CFxyrCA+0JSNAa2i0wwrO1mIs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:29:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "2.58.56.101" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=50000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KatyPerry" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BVMOdR6A4RcS9726B3ZZsvBEfIQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Ft1Ri6h7s4GsCWyEUHu0cQ5ep3XDpCiISupOUT+DbOo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:00:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.53.167.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "KubaJaKubikula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BVLbSvovKA2iGPzOacSd4LVsDek" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3odmqyP0JLP7ZIctpM0/i3IOp2JaC8fDb8oG5vXI0gw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:28:26" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.4.8.111" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:1210:4ea8:200:6d4:c4ff:fe4f:354b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=620" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "RelayChu" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BUr1rl2kqguB1xVVQq8gQlLLbWE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Uj4BOZ541IjlFFfiN27y5AsH3gEKyVUSTmJEhbpYaiM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:01:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "150.230.20.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2603:c022:c002:b0e:f620:461d:1cc1:fa75]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Mesolvarde" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BUddlGt0jhIE9NmqRABFddsqPKc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yfpe7+wNN5XWbxmEuUt8v6B/ZiBtjnUcxn/EcmaU+E8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:18:34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "80.13.139.249" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:cb08:8e80:b900:54c5:dbff:fe01:840]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "captains1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BUHOni3ajAsdmI+2QNZZFrBoPDU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TffB9tuTEs4GcVSgDsyn+ozuPsXaATDaJHM5ClpKkY8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:35:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.58.152.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gh0stx74" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BUAq7HOFVMUwj7B8polh1TJtXUo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3yN+9K8IQPwlLVvGi9GRftxH7pzN8TcHKKMyxONmrR4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.75.65.102" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:701:1100::291b]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mevPLXicebeer01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BR0npO/igy1cnf5c9Y8kSKBbSJo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "X3FIra7IDlA9THrldBOGfKNENO37nv1rCvQV3lqpLtk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.214.54.97" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 5118 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:cfc0:8000:7::5fd6:365e]:5118" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "icecitadel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BRvubZ3qPC6fIDwfaNaDzNbyrEA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8dRjZDh4sGJZp04p6JOx2imBF6Uif+QcA9INGhrzqSk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:47:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "54.36.174.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=83" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "AccessNow007" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BRYIXWysQO1M3O/fxcz2sA3mHe0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "SEJDEvlufRmVKVWhTZN12sYbTEL9XBCN74+1a1Zng9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:12:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.9" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ADeafMute" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BQ5gebafb58tFX867M/QEblm/z8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oGTPpiWA6q/OUo8ljF4naD8pSIZOJ3XN0YmoFrHdt64" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:35:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.36.78.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 54939 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "adhoczone" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BQp7JsDKymrpo3teNCs9XMVseQo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Pc8up8YYCjZTgcDzGjdmI/VomE8wlH8LWYWgi0p9+hg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:46:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.206.146.238" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a07:5741:0:504::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "artikel10ber57" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BQoSRe7Ha3Q4M3uq8Z9KsGZrN18" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "b9qFEjAbkm/kDxmsWfNe/Md8Dq35E8yNetQO6RB4jS4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:09:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.29" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2::29]:8443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=43000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dorinne" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BO5eGyMSfSajb3HGaBDYiwuAu5E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jnwvYUZI3sYwCBq1aRfteG2rkR8JAbeT336DtA8td6c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:24:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.213.233.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rofltor08" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BOO1kl619mxuyBCj13AuDKP51ec" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "noAvgw6wqfVhGKYns2Ic1PGPH4xzlo+QNG21PYhggWQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:06:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.136.46" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:c010:2e::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=30000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "takei" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BN/gR6zfemYgrKeC+vxe8a5/R1Q" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/6ClZTe3zZ2KMHExHEV8sKPArrbyvZjdtPancaSU/UY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:57:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.22.212.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=33000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange006us2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BNnOqNd4q6EwsBT3WMK8rdMdoF4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "TIgLB8LdaUZV7XxORlunlIcTvnHWBY/tldOogFc3tfg" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:41:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "207.244.238.230" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9201 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:a140:2050:8019::1]:9201" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "MitExtraSwibelePls" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BNdF8xvrQH0F6/eziA/MsktWYf8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zm2w3sewFzz9k4UkhtcWshyG+IvEvxYQBL0n0FlmY1U" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:57:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "91.132.145.129" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "aaron0x10c" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BMNGi+JHQDR8vMAFNMlA28vKvII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ONQfF/gh/hQ4+e4jcuu0U46pKz0LFIvPq4XAjcvt7/k" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:03:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.158.187.110" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1824:421::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=26000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "myOtherRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BK5d1jA8UhavCh6cY5xLMjOQZNU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DW/u/Q4qUO3qpK6CjrVuZgbFuOaypWeTogDAe6SZg+g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:22:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "93.218.178.77" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9006 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "darknebula" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BKKKYvJ9nEpg+e0MQmTpi5iMZaM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7lxZxOl4gEO0ib/X8GWy2kgt4YSn7NRntubwGUdpLgc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:22:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.169.253" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:644:c15::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "reallyniceplace" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BJhSoQgFg16assVR1sQ4vm3oskw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/0KvZd9xylKyJVI4h3B3JEeT1D3Z4eWzpFpFYpr1czU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:31:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.218.118.180" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:e586:f:f::180]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HackerBobRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BJcAuJ2QSGaC9PlrmMWJ8YcxJn0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "sTo5UvI3aXCIVCvuilBQA71fAyLYrGNslIyqAT3hcbo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:18:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.49.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Scarab" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BJKYmGR3qJQHqnAxFkXQSX8eD+E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8TUJVbPIxj8m6hZIq52Vrn7QxViYK6sx2LWz7fFHr64" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:09:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "146.19.213.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:678:6d4:9114::11c]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vhome" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BIzNAQGTBulehX97vJrjLSW1OKg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0bNJihKtR1JVFYsOlzpnbrmzRTEhwEONgU7p1bNTJYw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:34:50" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "92.205.62.207" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=190" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hviv117" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BIUCego0nUVNl49sHOzdKeoXdpo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oA5VCETD47NO8BtWexn7bF8rl8XCc5tJmAsot+0g7ZQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "192.42.116.17" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:67c:6ec:203:218:33ff:fe44:5517]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BHSc1qa+HAsU7mPf0PE+657+6Ks" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rmIh0noDz/Qj5gQxjUu+b+sZhKJSgBuCxpj2D7zYdAM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.51" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10051 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::51]:10051" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zwiebelmett" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BG8tWahfrmk2dqh1M3F8V0NiYcI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Yu3IDyYNynBTxh2h9ZaxQBlbmPV2wv8cNh0+p8iuwdk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:48:39" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.217.62.4" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LAGARGOUILLEVIF" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BGooQaUm49VpDtM9Vo6YkcOVA9g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Cib+rZ+GbsVdjeomwcdd9DFO0Q+qK6zdNqLT6wquQI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:07:49" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "190.211.254.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bauruine" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BFu8qWAqIsESmE8lADzUiXz/ueU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Skdh5QaJJIqG1JPWsv3geuVQqc0CC1Qa3ArWPhis85w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:36:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.229.90.81" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1680:101:43f::1]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=58000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "vovis" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BEbHXnEF2FyRKdg3fswT0FEEpH8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UXLH/WTGyR10LZGrBl5234wWbUUWSJ1UeTPk38JMmv4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:39:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "201.80.78.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=72" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unnamed" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BDv8ouxm7+/rT1yGqkdjn9bZHck" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qQ1UJbX/1FvQeBf7mP0VKxh9Ui0EqWfPVsm4cTvKmRU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:40:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "27.133.132.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "johnsrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BDmrc7srhzD8sVsYJSko/Awu35E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "zFOUg+gus98d5O9hnXlWckqy4Bi8TwZ5tVJNxcwoQkY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:20:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.22.87" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:16a8::2]:4080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=75000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arbertDelroth" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BDK+6Cn8sVXOks9Bi3KA+YSeEtA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZpxzhYG4Lse/eq6+EHhrybYB/m6C70FPP4vKrtz88G8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T22:55:24" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.109.152.11" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 143 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:168:6426::11]:143" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=100000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ecuasterces" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BCvN8tNteu4HDghtrUtX8nsvEUM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ynyY+JbF0fuZz/QF66sQYPLvsn+kTOmI4h24qGgMTjI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:04:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "66.175.235.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "QuintexAirVPN26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BBZGZAqzBup0sAGWboYWmwTMiNI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jCmRdlneNaotxcfDXulc3eZXTq6bw22v7ePYqap0nwE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:37:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.79" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::ffff:c759:e64f]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "EntitaetNull" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BBFTINEeJYPsP3+UStLUGfm4QQI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ek7gFOPs83jKtWvDPlnWqTkqqlE2fPGmj5uyDhYWfvs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:50:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.214.156.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BA9e3m+0Zx5O4Szy3w+4IVHcIls" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UJRrp1Vpj2K9CpekXX0SBr97qdTtOsF/IHV3NnLGr6Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:13:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.83" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::83]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=810" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "stars1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "BAlgXoNDVip5D/6EbLO9fARCn3A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3kwRu347R08zVokqn2uw6XUCI/mXNGVbHdMHz7oc/lE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:47:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.69.204.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "FreeMirrorOrgIL" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A/jHfcBaogKwYipvpEovopqLU0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xMyddy1PfBc/XElZjQ3e9MSPPWjOi3iRedhhXWhpotM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:25:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.207.77.145" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=520" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Shockrealm" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A+593ZMdkrtXuBswOK58QKCKsjc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1JNJfmNF0QGNPqHJ9bbIveio+yAh5nhKy7FvlhwlPL4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:55:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "123.30.128.138" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "4pyro2eu3org0" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A+n35mnI+RHF7sPsCUUzFR+FdCA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "nxu7If3EAok8CnTgDaRVeKDSKJlKON67xOQlTjbq+Ms" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:00:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "217.155.40.118" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:8010:60a1:2013::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=840" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Wildtwister" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A+EHo2Y+kSZk9Kk03/RRJiwhg1c" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CclfjExHhqmEzLBKDaI3DzjYnv4piticXM4VfuBGbhU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:54:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "94.100.6.72" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=260" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "itzme" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A9og/XHO0YjIt2UugZQcUGck26Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "q8HljNSWyNQ62SnKdhg3B7LEhPI4FnZ5ItGmjnwGDNM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:01:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "198.74.57.57" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "blackfox" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A9HvPvK+UUUVDFisxyUZ3YYOYbo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bixn5ksZnhWLNURL46DmL9m/mg3ULwBxqXR/HYy7JjM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:18:20" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "136.243.3.194" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:211:1d41::2]:8000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=66000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "NoWarinUkraineNow5" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A8woMv7V46pHHMOHQzi5icpFlrY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "hticnoAP6peOE6vbIOnIOMCbaAy4o5PQBoLDUju5FlQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:13:32" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "164.132.207.62" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "server001" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A8eUQBqS8vAzrV37L8AF1EWRBlQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zy7xUFLB3EueYQiKHzUbwwpKxjWRQHPpu1upTg+KqhU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:27:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.163.45.212" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Ichotolot61" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A8MGnoFOKW6xh3brYbHst1Ttif4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "c4pbqnXwbr4c8ziHWeNgG+5TJMicW3+Hnoy6a2nO9cM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:37:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.7.10.193" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a02:180:6:1::2f16]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "929oi1u23jd987j" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A75z5YH5nv/xmrWC7wx+jmUxzto" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "COIJVhKCSKRfKl8QpHnQbdKzaVBBATI/kTrUc9YP+d4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:46:11" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "85.215.91.150" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=13000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Totonicapanp6" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A71WtQcvsH0rTXni+wQ2bUFe8+w" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XSTfU9OuIDJ2Hi+7PsczZ4EPYQqirgGYBEB1qNtYRhQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:01:03" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "163.172.76.56" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "snakeskin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A7qsh1YOhbKCqU+mkSjgBDhmNRE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dPDPb4bJwxBorENMLzWyMzUV/j66pKBIJIBSsuAcuBI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:13:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "46.148.26.44" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=11000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TLCOnion" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A6M8NFT8D5rGlm8S+khpmfWiKJY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "B+oaXUqv2VL3mnX/qjlrz9oNeOZb3tJ+ctTBfv1HjQo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:17:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "96.66.15.152" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=380" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "psychopomp7" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A59Mvf99B/xcgYitwHP4Yyyclwg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DmFEuaSfA2tuoDIKWCQWI4/1dDmX2n/B5W0+vQPePws" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:37:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.103.114" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BoomStick" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A5o4P4zluY0ahNKDjSSTBlfkcuA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "kFL++QDaSAVesoux6dkRm78MsHL0aGdVK3pOH3KzKoQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:30:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.138.228.251" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a10:3781:15ed::2003]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=61000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ry4an" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A5ADwyDZmA4KdA8QehqcE8mcX+M" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "fuUBzU80C9vD1GcQ4RwiXM0rQDFup6W/I+/fMVCWERI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:07:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.79.159.52" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2600:3c03::f03c:91ff:fe8d:a3a]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=480" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "turnt" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A4ww0q0FMUfJHvsSkVJ+1iHX0bE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GatZY6s1X8s1qUtlcB0N/YYQpLx6mCBJ1EwPqrGInsI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:24:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "82.221.131.71" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "SLOG" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A3tsYNrU3zL9opv0WNXIyBaqjz4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mU4ZbMWQNeRoqtGhnQqSrgpjb51NA1oQI/e14jF6U8M" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.154.174.241" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=22000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "hong" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A3Hk7JAcT8d/6iqlvkIY8L4fbOM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uWq4UBDr5FSS72HbxCF265k/b+IBPvq30x11NBPfUxs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:43:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.58.180.236" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "TORKeFFORG9" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A279LmHeo9L+5ZhhukJF5N6GQRI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "PFLGNHF2omX5yksjQJMDFUkd5pNGZf8oEGqfAUq3JPk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:36:51" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.189.100.202" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0f:df00:0:255::202]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "parsel" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A24BWthNPGBWZuOjMGsePhiolII" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ATX6VpAeYJK25mHdpm80wQO1CRcohcJoEo369NrqeT4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:22:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.107.202.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=36000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "arrelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A2kSKZ6tCvbN/pIuGELDrn3e/jA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jXAT/dYwQmJJHhlOtVzEBTU/mUVNUJG5NHjXpA+52T4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:18:27" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "124.170.102.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=410" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quetzalcoatl" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A1+BMZXwy59Wft/fYMZ0XKNroL0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "NfiKQ65I3SLQZwS2HB8/LDh3Rdjb96I+IYb2I6vcnZc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:10:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "77.68.3.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:da00:1800:21d::1]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Lick" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "A1YM/XWxl8f3ZuzEKb0K5mG3ujE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CetnKBfn4jmyxtbJY+0579nai6AgYR0SC9DKTbwj698" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:23:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.160.193.3" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fea7:10:10:8000::d]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Riley" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AxmNXoejnKorhV3rZY/fCnOktYc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "0R/GDp02mG9ZzqaxyW0YNbt9Ghjz5lyRtu3BTD7FLzY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:35:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "72.95.19.36" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GladesvilleRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AumLvgsSVw5OKXTip0crKX+NmVk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OwRPZYxnMXHSMa6NZKgjkPrgCK6q8Y8gJX7hA7VEu8g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:14:53" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "60.242.251.188" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "oxi8xiG1eiyo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Atgy8ALUyj0lrdosu7LQnuQaFas" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7bEzA+tf3eHEFiVmsGUxu4xPv4y86FOwToJPtnTfJyE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:21:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.37.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Fearless2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AtY0rdm0FnfSg0vyxSA7aDPec4A" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "REqfy5ya26yCbSIPKK9WjVkvtw+CQcYI1HfQiGADZDk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:38:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "178.170.10.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:c70:130:1::529]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "toritdowntwo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AtEMqmXmt/7lU0O6eJCy0bbZMTc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VSMGR+Ux4HqfQzEynTCL1rdxcsDiKH0wZKHcgmYhPQo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:54:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "159.65.89.192" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:b0c0:1:d0::e58:7001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Shado" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ArS1uS7mDVMXoNswEXVzerjxcYo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gC+G0cJdeEjJNxJLkSah30Tojm2i65cKARGfTAlAKWY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:41:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "152.70.140.84" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "onionDAOrel0aded1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AqjMsftwmEImIxKDWW2nNKgOP28" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Zi8TTzY02+CBbThxtBxREr3068XCfyM5keSVqIAkwyA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:51:05" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.2.79.190" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1700" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Unknown" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Applvq7lZz8yrsyykj+IN9sSuiE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KjfJDxPnPptszcX8yzsQ2kCk7tgonE6LdFbAsvjGmpI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:08:21" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.130.46.153" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3400" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DataIdeas" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ApBMmuisjuuRn31cXv4ItANjyzo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "vR02yAOZhZE9+YUXKnzxGhdJ577XDdWt9EZ1bqAOU24" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:57:07" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.223" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::223]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=570" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AolaWZSmopHTk4wRQuv9O4wpZwk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "V7IYz5BDsQggP3zp6bTwB4eTHrZn7k8DLslg42yrn8s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:24:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.44.81.21" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9100 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0c:8881::70b5:bcff:fece:22c1]:9100" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=18000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Digitalcourage4ipeb" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "An51yS8SMa5fe9ThU2aW/jBAxGA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "DGL2tJ2LZyKATtdf5jHVg3n3wKfaBGl54qB/U+N4FMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:16:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.102.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c1:2::244]:993" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "zagreus" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AnQPRy0dpcG3dHXxiUD+efFa9Lg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UDqn/3JvsuusgbBsG9Bw7eDmS9plesTzCsnFxQ93W1c" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:05:40" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "81.169.222.158" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:238:4224:8d00:f3a9:25e6:4cb6:f3d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=450" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nologcz" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Am0RMUsW/lGh7KquOIZ70LSSceg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "cxK+/CN1KBZjiqynZhaT9gOb2zJMqkGeovAF8k1gaGA" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:31:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.222.203" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:a900:ffff:1116::203]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=29000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "middleIsenguard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AmVLi5gDd1hgzfLH9xCf9ooTSao" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "VZIVuXK0lUzZof8KTH2DIBhHxVkltvkC/nmXsY0xs1I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:51:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.20.11.198" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10101 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=14000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Assange029us" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AmSPLxNccpaiex9Z0q5O7CXZqHc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bRw/FwMd3R1wTpTODBp4FaoRhB4b8kbKaFLsqja6o7Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:27:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.194.235.104" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "howlin" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ali9rps1FxSwvMDavh15jWYuuog" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jYgxcUHVlfTs4w5cqjDsMVfpS/tFGJTkKg2RZu2Gdnk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:16:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.141.153.214" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=27000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0xdeadbeef" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AlbMf3bkYVf5VwXaxY8OPvnNFYM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "it/kBiYCzRHrk2v5k4syrs98dBklqdHQ37eNSrL9xkc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:15:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.90.208.228" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a00:6800:3:fa::2]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7200" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rome2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AjV5EbiC8ldnbnWwfs//WIXks0U" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XkWiz2eeEGa5nRjAPVIe13Gs8SlGANBOtzuG9Ol+3PU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:13:33" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.146.232.243" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a06:1700:0:16b::11]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "c0der" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AjUfyI0L8G9s3lRSZWZB5hGdvX4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "dYZ0lxgIGo6XGrbEED3t8hk9bvVxyO0JfH42CloXlHU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:06:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.216.20.80" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f9:2a:14af::2]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=73000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "GrmmlDag" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ah3c1of9UFt+p+ddps7w13iqB/s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qyVqiTkH+ObduIuwLHfhth4OJhcXv/N37bPRSqydXWI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:34:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.239.215.221" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:a0:90b0:789d:6a4:95f3:a78c]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=65000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "island" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AfwWnK9EnV5e9nUj9pNG58tqBXI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "JxaiDzFMbmZcloo7KxQNBl1Mob4VnGu2wA+EfyOq+/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:56:17" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.207.77.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4500" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dcslTorRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AfuIxAYsXAAu9q02Yt1ukLi5+A0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ooVasBFwe2GMIH2pq+b6wBX4fzFmG4LZ08IHiVq7/9Q" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:26:36" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.62.98.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:5e40:3056:1a0:69eb:f035:36ab:2e]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Zinc" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Afc9vZtWwx49Oq65X4zx3rfZpy8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "UVVBpHlzx3mmy/jrohuGVICn3AuWo8J+kMWY30v/1DU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:50:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.184.192.252" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.14" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=140000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "yvrTorRelay2A" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ae5HjW3zm6zc4PPemcRaew7qTCE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "bp4rtwX/sLvMrtBtPvPa/fga2twqw9Dqwb6nlhoxmkI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:03:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "50.92.81.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9031 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9032 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=860" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StormyCloud" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AeG0tvIvR6zSC0KNnW9G5AbcKa0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "atGa4AjNLvsp7+MaOiqaj3P3TWrk2q7/UcKlTbFMAuM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:28:52" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "23.128.248.45" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2602:fc05::45]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Nanna" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ac/lABQq8ZslLIswNy/LK0eQT1Y" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CWnhWDmdwJsi3PXwwY0VVLu9vIWZRQLBUj4ZsPO3tvU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T12:19:38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "83.137.158.8" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9011 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=31000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Hydra45" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Ac/MJUUjTu5SPTPtJe8eeYB6GKc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "CfIubkeY6XQ5ifLcufSyAwT9x3HR4I0/ywSHJOYquMc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:48:19" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "213.164.205.169" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=4300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Overjump" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AcsuKXqPWG27z5jwKKPRpJsKt7o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZoYgoXccKEgujjnGuxgL1Yb7b1PzJ4mOBBopAEUeOmo" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:56:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "103.228.53.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=46" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "root1Moh" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AbjxjBHOKHfoGQ+iyBgIzQh1FcA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "/kNzFPLt9NhKkNTqR5Iqt6SwjmmpKXORFPOxRod7BFY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:45:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.58.34.53" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:64:fe8:c853:14ff:fe86:7a3d]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "rixtyminutes" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "Aa4t4xQnbIL8zDYDocLzI45lRMk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HvvVbTcZBIjUeas5+N5JhB/pVIC9Q3UtUHVf2m5R4Es" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:24:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "149.56.233.142" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=42000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "PyotrTorpotkinTwo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AZ/rIs4Ey9BIm38kvgOFGLZPoiM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "qgfTQGWTY2DfOI0azDm+FOovWR5/6GMOlQGtBFVnkk0" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:40:02" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "142.44.243.133" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2607:5300:201:3100::3e59]:9002" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LeftBehind1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AZ4g41JIG9RaPOfWaRoQ+1MYUPs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xlQJ5S4BbSis+bK8zms5ASQDDw2udajbZ0VCvNEY3wY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:48:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "111.233.139.41" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.6" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=220" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nicknamesomething" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AYpdmyM+/3D7rbLnW1SoPy6dNA0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "wwv8qwFLeLLILeZsFHfmqaoJCzvyk8i8w9D9SU4P9Ag" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:46:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "87.151.169.210" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "prsv" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AX56Nk/sTm51Lemn1sUhKSl/IFs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "ZNpp2I6fqunqhH5hHPBDlBk1xTwdH6wd3a7Aeh1CAUw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T01:20:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.32.107.172" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9000 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:94e0:ffff:194:32:107:0:172]:9000" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raptor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AX2Xuw8oHDSXIJHAeSvycZi2dOU" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "jx5k38hHtr2gvcsO+aPVgHW1JrIXs+4v/D6HBMGl500" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:03:43" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "135.23.97.216" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=370" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Bigdaddy" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AXsIzBY0JM1qukrdQEK0F01JRzI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mWMa2FBcFqlZTSFebQWT2gzkwmsLJLaJR5OiqgrWsV8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:43:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.21.217.32" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10042 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=69000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mikrogravitation01" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AXWbql3l+hnjb62vfZvGTBVXOrw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "gbVbPNVcpoQp/0TLdCydZLZH//nhHJlXo4t2h20bfPY" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:15" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.14.233.149" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0e:1580:1000::2dff:fe0e:e995]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=35000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "nyatorexitno" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AXNC4Ze4xXWlxTAc0Ah4Ddd1KGM" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3nbX+vSCZ02U6nR6ApG0uzMMtKDUao4B5hgCdnFGGr8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:46:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.125.168.28" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=81000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "LastResort" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AXIqYNwOqmTXkFrWCjJCxgkec9E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "WN0dKq3ERHzHuM5PZEJFkqFNiT2eMapkQq0fNvcrXJE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:22:28" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.112.146.155" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=160" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForetNoire" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AW744ivuqB8wU1l07DG2lDaXyos" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "uVsBxELbz1gTxvymlSyZfi0i98MzGRG/s9WOEi+2Tz8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:47:59" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.135.182.131" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:41d0:8:bd83::1]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "d0dak" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AWCT7kuumvRz/AyBGp0Q/aqco0s" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1sCWdRJVuQW0nGlTqGuJYCsL9TV8RCCd5Mhjc7capkI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:01:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "62.65.106.163" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=550" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "raspitor" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AV/TpcOriWJqK5jG+8g0rWfWF0I" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Cf5rA+KvPQTqXUHdRJzJpnY1ZFDmYwZBcNQNgbYF/0I" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:29:00" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.148.202.76" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "marsmellow" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AU7iS8vaFg8jayVHpGObJ+MDoec" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5xBsTrRnleloDLd7Nug8PwgIQ+xuB25FyJPNNSS/vIU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:37:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "20.224.145.181" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "insist" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AUvQljY3O3jMKLpw42xxkOPeI2o" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7OBReJX/TYbMxDK4jJsb+Ysraio/AVruXwODjkJ/3Gc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:07:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.57.243.47" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 993 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=21000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "b0rken" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ATq67Y9M22d74LUhLkslg7hgNe4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "5Z/vH+c4ovLLTN+iRujyhilXo5n7SuWFQFN7VUc19Fc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:40:54" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.129.182.225" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:4000:47:631:a437:b1ff:fe5c:74a2]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bang1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ATZpawJaxVA4R9c2/p89ZesnpZY" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "oY48x+Ov1gm7TYm01F91Pnl9aOrN25g2MGGio6zprdQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:05:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "134.209.159.74" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2400:6180:100:d0::8bb:6001]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "disobey" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ASpnaF8D1msj1hftg/hCWWbp1Ss" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "KQHgrg+drJ239mYxDvTJdYDU3PHPEpfvEEs0hyPdn90" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:53:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "172.97.177.255" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=1100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "securebit" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ARyLfeyAm7L6iiI9cQEFjJ9wK/E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3q8kccE4ku8pURNsMAkTKNWW/ou2KND8WRsX70GhBao" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:06:30" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "194.50.94.247" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9030 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a09:4c0:300:c232::5ef7]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=20000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "motauri" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ARgbMb5YYMfWbaiPiK1SLAZHD9k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "GH7KuIFUknybRtJbbttM5JB+aWEUMJaoQUipNwtWDtc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T07:07:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.143.193.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=390" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "DigiGesTor1e1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ARG6m2BGaeY2/9W1A/OCpLetboA" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "e5SN4aVELlO6sPZtOlEofsDq5aw/5jVTwXzaxoq+e58" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T03:34:44" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.195.71.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=47000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex85" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AOs6Esd+cPGfZqe70JTWKWmvNQ0" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "HdZIDtURTkLpnH/MrPTsJtWdEDp6dyTDqrZyKlrZLKE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:26:37" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.174" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::174]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.9" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dragonhoard" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AOFknmn/kdfwHnSl5i7xT32ZFeQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "tyJRBzv2zgwC+6Ksy+yL/LViNSCTaTmQBrI+IS4508g" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:33:08" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "116.203.50.182" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a01:4f8:1c1c:b16b::1]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=15000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex55" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ANyurj5UwygJ5/fMS/Km/Gj8VS8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "mmCZFnpwqQSK58aUJvFyJ+GiWc8rgCP7F10PBnO2ltI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T15:15:14" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.144" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::144]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=19000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tried" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ANLOPCFT6gl4byEF8msTjPdZQk8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "XUkbIT1+jreXrOgBhtW3JEKUcCH/stKd9jdhprOWgNU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T08:26:18" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "107.155.81.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=38000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "effiorg1984" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AMzmqE5tY6GkLhBYObyO1dSxZmk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rWkL3SYg9eFLVfxfmf2KPctal9hr3PtL3xz+3oDip/w" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:10:12" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "89.236.112.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "l25" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AMS5E3SseQyy84ZdLzb2LfJ/Cg8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8mqti/QHb3euXKCSK589uu43CqvC6xqqpLbpRYRKNCI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:27:57" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.66.141.125" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=130" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "roterechtehand" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ALwRxEi3DILGEA9bE2LflQpgnwo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8nbqM1iUKzTLwXn3jsyVtQXo4p5/jhgj3vlvF9jtkF8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:15:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.183.194.94" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 4569 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=8900" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mharelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ALV79hT37TBRBztdRSb/CyOvIXs" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "g/ASbtLr2fVMin58JmdnqV0mwc3yyMOh2eKwzo5C91Y" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:43:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "158.174.145.139" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:9b1:403c::1337]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=37000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "HEExitNode1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AK5iWCxan+62r4LGSuAi16hLULI" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n2tR2VUTDdV1QRjDMAU53v3dtYIRxyCMLicwiKaDvMw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T00:36:16" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "184.105.146.50" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:470:13f::88]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "0x616e6f6e" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AJhfcQByeAxQ5ZEWsDKLjSoIU3g" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "8/RH5dbWDtVBDuDKnac7CJqU/P0mpPh+BriZPa/k7R8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-19T23:32:48" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "79.110.62.244" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "BlackBeluga" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AJYtLdC5vzpq8dXrIBEyOIrKFCQ" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "3Ip0JZI4SIadLOU0x3rExyuyPSkH2syySaqDvS+pVPs" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:36:58" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "5.189.155.39" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=320" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "mb8aku" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AI3Uguym3S7tHit4FIogUpvWbkk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "xD4m12ZGlvYELlOUHQVOIhoqX6bWUxpuT4jYRlVBO9s" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:52:41" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "209.141.33.170" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=5600" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "INSRelay42at8443" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AIGW3ESUgsc8+pcSRFIjkX92CSE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "pywwn0/V5of5ek2IbcRA2TJi5v+toZkJwk62+EjtJPQ" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T05:59:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "140.78.100.42" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.8.0-alpha-dev" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=10" + ] + }, + "PortPolicy": null, + "Flags": [ + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "venenata" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AHfd3bVJVCFM/uD+iqhd3IV+fIo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I0rQZbSia0QlouQUSxz/SXiIvaMvYOriOVW5h7Z1GXk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T16:49:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "71.19.144.65" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:2700:0:2:a800:ff:fe2c:cd37]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=17000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Quintex13" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AHe8unJE2z5qXtJ0boYXAGZoSIc" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "1TTcTyS+FBXPpPJG4DxO9wVOLaWpXDlT3GeYefWHIw4" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:40:31" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.249.230.103" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2620:7:6001::103]:80" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=3800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "right2" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AGVBE5WXY/ZTySr/B4p+w6e70tk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "25sjY05+pVXDzFJAwZwo8qg2f8dCFI44Y0AGJgzTIt8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T09:14:35" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "174.128.250.165" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=24000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "eisbaer" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AGHSKv0fBtTm81AGvT2cIdeYHqk" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "7UiQ8JSMEi0HFvY6K+hrzK9bz5hmIZkehYgwK/s+NRM" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:06:04" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.70.100.73" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 8080 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a03:e600:100::73]:8080" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=23000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "Athena" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AF7ZchP3JYZ+QiuNwEQzYbuyTjw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "OaWeyjysCt1H0CB9Stxpj/kW9YBPc+Lk9lbw37wPfPc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T10:09:01" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.244.79.75" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2605:6400:30:fb10:d07b:edfd:2c84:bb4a]:443" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "namie" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AFyL+BoOH3CNtCpXPISvAlpAb88" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "I2bRikcknXdQOn3xwCu4L91hCIUbH1MBsWHKoAqK9fI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T13:04:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "109.241.109.93" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=2300" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "suominode" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AFYmkM8z9TfE9MlYdlX3Rphoxzo" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "yW5+gcEudV0vrF962L5bv9vjwnSXuI4IZ34bROF+SAI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:24:29" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "37.16.105.85" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=16000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dc6jgk11d" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AEClsEx+MJ03y+ftsrctPhXQV8E" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "RebXkemb1dep4B1glT2Re14omz6lyNoZewttn87bSnI" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T14:07:10" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "51.15.75.120" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 444 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:bc8:1860:1329::1]:444" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=9800" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "ForPrivacyNET" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ADb6NqtDX9XQ9kBiZjaGfr+3LGg" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "j0YZ3QM9Ec/sfD88MYBk4KONtixMhoYER274t6XVHqU" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:19:47" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "185.220.101.33" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 10133 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2a0b:f4c2:2::33]:10133" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=39000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "StarAppsMobley" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ACg7VWTjBy3N2rMdbvYi3Um/Uk8" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "AQ4qn2l09Mq6p7CpJKG4XNIxQrfMoFcPyP15PHHrbpw" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T11:47:13" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "195.15.242.99" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "[2001:1600:10:100::201]:9001" + ] + }, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.7" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "skylarkRelay" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ACQOyytTWqTB4YdNdE36avLl6UE" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "n1S9VmyN469C3VwtS+wER87B6B2KJ8AQp7/SI661zt8" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T04:40:06" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "95.111.230.178" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.5.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=1-2 HSIntro=3-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=7100" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "earthpig" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ABUt+rlyo/iwhkjhSnsJjMKUg+k" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "rf9Ck3bhxjdUczTTc02CRCc3GTurEoxoVXN/qJF6Wbk" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:16:09" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "41.216.189.100" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.6.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-3" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=12000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "CalyxInstitute14" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ABG9JIWtRdmE7EFZyI/AZuXjMA4" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "Qs0yOymbVs6GgnbYYduADsxleU7xFUOnsQoMOC5nCwc" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T06:37:42" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "162.247.74.201" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.8" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=34000" + ] + }, + "PortPolicy": null, + "Flags": [ + "Exit", + "Fast", + "Guard", + "HSDir", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "seele" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "AAoQ1DAR6kkoo19hBAX5K0QztNw" + ] + }, + "MicroDescriptorDigest": { + "Case": "Some", + "Fields": [ + "YcEe5/d/nL7u0lMKmuQTGaSjVE5dAROlmU9VZ/9XRbE" + ] + }, + "PublicationTime": { + "Case": "Some", + "Fields": [ + "2022-09-20T02:08:45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "104.53.221.159" + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9001 + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 0 + ] + }, + "Address": null, + "Version": { + "Case": "Some", + "Fields": [ + "Tor 0.4.7.10" + ] + }, + "Protocols": { + "Case": "Some", + "Fields": [ + "Cons=1-2 Desc=1-2 DirCache=2 FlowCtrl=1-2 HSDir=2 HSIntro=4-5 HSRend=1-2 Link=1-5 LinkAuth=1,3 Microdesc=1-2 Padding=2 Relay=1-4" + ] + }, + "Bandwidth": { + "Case": "Some", + "Fields": [ + "Bandwidth=120" + ] + }, + "PortPolicy": null, + "Flags": [ + "Fast", + "Running", + "Stable", + "V2Dir", + "Valid" + ] + } + ], + "Sources": [ + { + "NickName": { + "Case": "Some", + "Fields": [ + "Faravahar" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "154.35.175.225" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "154.35.175.225" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "0x0B47D56D Sina Rabbani (inf0) " + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "75FD97064EE7E338E4CDB244CEAACF4DE6E786F0" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "gabelmoo" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ED03BB616EB2F60BEC80151114BB25CEF515B226" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "131.188.40.189" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "131.188.40.189" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "4096R/261C5FBE77285F88FB0C343266C8C2D7C5AA446D Sebastian Hahn - 12NbRAjAG5U3LLWETSF7fSTcdaz32Mu5CN" + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "BF99C6627E5C3203D4CA12F5C41BE5A5DBF98BD1" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dizum" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "45.66.33.45" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "45.66.33.45" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "FD790065EBBD5E7AE6D039620D7F81CD19147711 Alex de Joode " + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "253F98BE09A1498E22FFB23345ACC4C26136DC2E" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "moria1" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D586D18309DED4CD6D57C18FDB97EFA96D330566" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "128.31.0.34" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "128.31.0.34" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 9131 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 9101 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "1024D/EB5A896A28988BF5 arma mit edu" + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "91CE4979C25A4F227D6F0B927B94D33056147AC0" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "maatuska" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "49015F787433103580E3B66A1707A00E60F2D15B" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "171.25.193.9" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "171.25.193.9" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "4096R/1E8BF34923291265 Linus Nordberg " + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "868A010676C297B727D4E9AF085FD9510D955D6C" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "bastet" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "27102BC123E7AF1D4741AE047E160C91ADC76B21" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "204.13.164.118" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "204.13.164.118" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "stefani 4096/F4B863AD6642E7EE" + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "F8EFC6506570978DCD99E7680A2D49BC28CE6263" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "longclaw" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "23D15D965BC35114467363C165C4F724B64B4F66" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "199.58.81.140" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "199.58.81.140" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "Riseup Networks - 1nNzekuHGGzBYRzyjfjFEfeisNvxkn4RT" + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "0F4B77E189D5F3634828FBAEB10BA78EB009B819" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "tor26" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "86.59.21.38" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "86.59.21.38" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "Peter Palfrader" + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "E1EA245851802B749446AAE4B7DA0666538DE206" + ] + } + }, + { + "NickName": { + "Case": "Some", + "Fields": [ + "dannenberg" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0232AF901C31A04EE9848595AF9BB7620D4C5B2E" + ] + }, + "Address": { + "Case": "Some", + "Fields": [ + "dannenberg.torauth.de" + ] + }, + "IP": { + "Case": "Some", + "Fields": [ + "193.23.244.244" + ] + }, + "DirectoryPort": { + "Case": "Some", + "Fields": [ + 80 + ] + }, + "OnionRouterPort": { + "Case": "Some", + "Fields": [ + 443 + ] + }, + "Contact": { + "Case": "Some", + "Fields": [ + "Andreas Lehner" + ] + }, + "VoteDigest": { + "Case": "Some", + "Fields": [ + "342B422BA3BC35F5D34F24D3095DE4443665DB9F" + ] + } + } + ], + "Signatures": [ + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "21FB228258F9A729F88E86D83AB77F88C272C75D" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nVxpW/fSnPk7m5/f5Lo7dZcLXVvmqtBcOpI5ygW5dQjVpl1ebseUXWlutvn8+hRAf\np8GCMRLdce5oF7gHu7Zg/SAQ5cPFsL5r9wZfEGdTRf8+woMfPG877YnOlAnFhGa9\n7USSpE1d40kzBawVAGEmtPMWBM7Kze8fqfJ0XH3RE5cuk2Mho5ukOA+L+w3LTdoE\ncYA509uMxbsaGj1/j43+WxCEQpCXf8Uo9tMIErlvGY49yay3TYADe8vqA3Jd/IMg\n2yQ7b3+hIg5HmqUVbEuME4IBa4MxDcHQy6pRSuxJRj2gOwCD/cCHDxMGJSVbmBba\nZVrqmpnplr7zhMvMqRew0A==\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "ED03BB616EB2F60BEC80151114BB25CEF515B226" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "B0794B84C7868261D06C3A9FE683D3C9FE804065" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\npmiMx7HPeO3KtXfIMbj6/BYfVvSw7FqvCNf7XEmDn/XYN3liDiVo2B0hk1uR85N2\nwXSpZ56ztFwcpUSvCNUS2w4ARe+5foCGyfEZjbIqboH6U6mMx+yDpHfQaXLENHNB\nUn0CrxWMOEfUUQRTjwfDUQ77h2nKdYttbJO6yC7V6iShbVdyp/djyxFHD3vGbsib\nTy9nU+HYoqVuNb08SJV20lqCEY899AhJJESxDT7CHBGksS1nn6hOl7XN+G7taBnL\nPL02HNxAyvf9U+bHpVRnRu7MFy8ZFZLAWAW0506OiVUDYhvu8BSXyGpIwMwUyCoJ\nIDFjGGlP4rsjw7uRZJBxKA==\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "0B5340CE4134B252118CFBECC491F98F107798C4" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nE3cKVBDmeqq2JevIC4ZKOUeoePZ84Wsl8yt6uZT/HFND39wLgIyzRJjp10C73Wvc\nYnVaBSlPsl0NzBbO9tDxqJ0QS2xrsGNiex0p14/edBwNbL9vdMHUUCSYvEz8E/to\n5wxdDRnY3VRxTG/rVf5bh+k7HcOHgD/HxSixUsfHk7Hu6UE7CmoeB1hmYZzqL8qd\nPmMe3EmJNJBFgMzCt0wZ9H4UjVLcjZOhclahdWjzdEb72z8FVJ2zhHRjZUp7SryC\nH/GKfmnG6LFrJuVSeiDaELJmI01u1dW+rKxYZy4F/xRjoXicFTXd2M1dcFeojFu5\nJVQe4X0vj8VOpHGGzITGMA==\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "D586D18309DED4CD6D57C18FDB97EFA96D330566" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "8EF5B21B3F94DA1E6F2EB09A7ED05AA68ACC0E19" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nh4IyRQAXckPfb1Ye3bWfvw57A3nbX/SUP2Q0A4dksE9d1fMqrSokVHqcjeMmpI5P\noCe1NVTpJSy319Jc8KfNuw/k5wx6e1OtPB/ERgDwj41qI+40vb0sg5Uv4CWjruwk\naCIrBlNMoncK+2tnqlYvs76v4PtMtDOkwfXG2lj6zEFmjTSc9nCtQoh2TTdvXD3c\nxXL6994kx9jbhVh+VlmSDUxL39fNwMlwVY+HSIpPuxuTyhcSS6JIWH17Sk/w5ZR1\nE4xNCYSPuK+HUQcQT9Sqdgkl3pglkzOtUTv1zjQom9ssBP6BEU+ggHh8rlbn9mll\n1CnGpYRQ7QAlcj0sjwgjNw==\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "49015F787433103580E3B66A1707A00E60F2D15B" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "DB47FB5A2A042523A663A9FD328AF67EA955F2EB" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nB+q7GxoMvEy5l25s3vRQw1tUseRTU8VQTxrihUOYy+dbtStvJ88YqqhJAYlRkNuF\n3CASJIag2jfzhuM84f/V9ELckhBSHeUG+qIx+nEqCV5OuAtKn7WKzMpDI23PzOkc\nTyI3wpIyV0Gj4WKXTrIs10ljyrz4l7rMWX3g1GVwcsua6OaJRV/CY3wl4oAtQqLy\nxONauOyhQ303SK5qrKWBJmDxbJmohRwys63nyVSH/qc6igiWqKXLDwLjB3Zv2gc8\nUDR9Q2DpZ3MTmvvbhmAVfNnDz8Nk/91O5kchffNgJv9mRroAmQ5dNVAw5bnJgQlB\nIQt45oNucN6QXjYkszQ4YA==\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "27102BC123E7AF1D4741AE047E160C91ADC76B21" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "6BBBFADD5D17017136EEA85AE030E4B2730E6FA7" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nOjjEkmSsoyo8qiT2WmCJ2QRox3o8CUcWEb4Gmplbo8naxnujCtSSt3Gt3EiAfhWV\nYrFgKdF4/ArxyIMwJdK7ovr/mNcaTkC502rWd+pN/E/qc4URO977UHDiFNsJ2QGL\negz9EJmSZhwqR1D9CzxHvzVkEYqxcVNLf+MnWBPiCQ8YQIgtt0hacWUa5RPSYzhV\nQ+04VPWI/HHoaslTLGNHoXOeOPBp13Pp/22G4pJIWqSYS4NsIvjz/wktvVX+a5zF\nyOizqWX8NL+/vu+wTdBrqw6lD5JmiS8wQd1J8uOsq2gPMjgI8T0MhYaa877I5hfe\nFWjnDOl+fV46F/Zhj1OuRg==\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "23D15D965BC35114467363C165C4F724B64B4F66" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "62EA5595951196DACDCE605C53DF6FE025641864" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nGpNn/5S+IWuDdvMmcvJfpKy/O+VHYfkXnVlgI8waCbShHDLF5AO7be93e8rbfKmv\nOVW9IkhSm8AUttJOUAfE2Cu3grQt10xVhujiwhwsl2VR8AByTb8af6jXLqL4eYP6\nHLOBZGSy33OnWxV2nv9BgkDqc9gqgXOgTizjSLlAl6eGx4JLq7X36pd2O2yZw+/M\nTVrPzHnSuYLyFteVSVz08/4xEzHj7DWn1z8BeWdZKXwGxiTilPQIaw/w0LTBBEjI\naBjhXBxHjOI7KUvX5M5mLyyqJaZfgNSo8QcrVMIi9QMYygMBVOzg308eBm+wEtTf\n/TW20YKBQOFA2VXIk2pGCw==\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "4A69B937C66923151A7B98F091135E5E7529F375" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nFZCPiK8Khh6EntevQ7+zKbdb/q4dutYMfesbI1WgSEmTkSJydFX5OJkx4uDDYVqA\nXSyXoFRdqGRsNqs2bi1G8g4YyIfXl47Lgj2bkoclJhMxesItg32Q2Cd1aok/rYAZ\nrPcspmwZf0HyGqLOpp/SqFrf62Nsx3hrRdC3qh9qSsIg2eLNT0ESW3VtNg2ijdnh\nEjqLXwGxIHpHgaaQ0/qMznnE7sEhzydTYhfRrAxqayXI8IBJg3G5YwRtbrPSo/Xt\n8YmUhQgyQ4cZIOA9OlLSz7uNHOcAH7A8B+CI/nUuo31nPUXLNNQG28swMLnu07MF\n7/msPUleMjPprM2ILSdgNdkhoSQzklR9FZsUDTg1ewe5cNtaFhENgITvsd/6pRbF\neSdNGhtdOquFNuJ+bDCUVKFWAtmZE+wSGlk0oZsoKG3dDu7AfsCJpdZbtSwNryRf\ntLxvY17HKqS7MAUKVSPOy2l3QKJuczeywMIbbFpuwT8ByOLsyNF5R7ltRirE+rDO\n-----END SIGNATURE-----" + ] + } + }, + { + "Algorithm": { + "Case": "Some", + "Fields": [ + "sha256" + ] + }, + "Identity": { + "Case": "Some", + "Fields": [ + "0232AF901C31A04EE9848595AF9BB7620D4C5B2E" + ] + }, + "SigningKeyDigest": { + "Case": "Some", + "Fields": [ + "8762993F29E1DF05ABCE3AB0CC15D3ABAE6448BE" + ] + }, + "Signature": { + "Case": "Some", + "Fields": [ + "-----BEGIN SIGNATURE-----\nIrHgB3ibljXpN2cwDswLSTGZ/oHfnAN2Wmetse6V+JIV3imitqxxGGEHJ2uLDE1E\nVI2dY/brBZopyWwlhFPRXHwDZNti+NdRIfA1xVGiadLS1YbUoEcxmKl6CMEqYDHu\nfhHO/IOlfdIYaxCjFG3TKYEHrzIQMAv+1rsh4iPiibp3AD8ikxAKqDmZUaAjuAkO\nObm5cqMHWeAZsOZnyaR76sCqLBOkh+UmIdJXZj1ecOu8dg/HDYGVkH0Po/BuShzD\nYeqmdObd+Ez0VlhmnfCgOXWMITqcoxylqDJga02KTbtZ+c7onh3wb+6tjOICR5jG\nF07ux5T4YVMXEhOVseVKcQ==\n-----END SIGNATURE-----" + ] + } + } + ] +} \ No newline at end of file diff --git a/NOnion.Tests/DirectoryParsers.cs b/NOnion.Tests/DirectoryParsers.cs index b4487eb7..20a97d04 100644 --- a/NOnion.Tests/DirectoryParsers.cs +++ b/NOnion.Tests/DirectoryParsers.cs @@ -19,7 +19,7 @@ public void CanParseNetworkStatusDocumentAndConvertToJson () var expectedNetworkStatusJson = File.ReadAllText($"Directory-Samples{Path.DirectorySeparatorChar}NetworkStatus.json"); NetworkStatusDocument networkStatus = NetworkStatusDocument.Parse(networkStatusStr); - var networkStatusJson = JsonConvert.SerializeObject(networkStatus); + var networkStatusJson = JsonConvert.SerializeObject(networkStatus, Formatting.Indented); Assert.That(networkStatusJson, Is.EqualTo(expectedNetworkStatusJson)); } @@ -49,5 +49,19 @@ public void CanParseMicroDescriptorAndConvertToJson() Assert.That(microDescriptorJson, Is.EqualTo(expectedMicroDescriptorsJson)); } + + [Test] + public void CanParseKeyCertificateAndConvertToJson() + { + // Tor directory spec enforces documents to use \n (The ascii LF character (hex value 0x0a) + var keyCertificatesStr = File.ReadAllText($"Directory-Samples{Path.DirectorySeparatorChar}KeyCertificate.txt").Replace("\r\n", "\n"); + var expectedKeyCertificatesJson = File.ReadAllText($"Directory-Samples{Path.DirectorySeparatorChar}KeyCertificate.json"); + + var keyCertificates = KeyCertificateEntry.ParseMany(keyCertificatesStr); + var keyCertificatesJson = JsonConvert.SerializeObject(keyCertificates, Formatting.Indented); + + Assert.That(keyCertificatesJson, Is.EqualTo(expectedKeyCertificatesJson)); + } + } } diff --git a/NOnion.Tests/NOnion.Tests.csproj b/NOnion.Tests/NOnion.Tests.csproj index e9a8683d..3be8df35 100644 --- a/NOnion.Tests/NOnion.Tests.csproj +++ b/NOnion.Tests/NOnion.Tests.csproj @@ -18,6 +18,12 @@ + + Always + + + Always + Always diff --git a/NOnion.Tests/TorDirectoryTests.cs b/NOnion.Tests/TorDirectoryTests.cs index d66e8e42..0285b663 100644 --- a/NOnion.Tests/TorDirectoryTests.cs +++ b/NOnion.Tests/TorDirectoryTests.cs @@ -17,9 +17,22 @@ public class TorDirectoryTests [SetUp] public void Init() { + cachePath = + new DirectoryInfo( + Path.Combine( + Path.GetTempPath(), + Path.GetFileNameWithoutExtension( + Path.GetRandomFileName() + ) + ) + ); + cachePath.Create(); + TorLogger.Init(TestContext.Progress.WriteLine); } + private DirectoryInfo cachePath = null; + /* It's possible that the router returned by GetRandomFallbackDirectory be inaccessable * so we need to continue retrying if an exceptions happened to make sure the issues are * not related to the router we randomly chose @@ -28,7 +41,7 @@ public void Init() private async Task BootstrapTorDirectory() { - await TorDirectory.BootstrapAsync(FallbackDirectorySelector.GetRandomFallbackDirectory(), new DirectoryInfo(Path.GetTempPath())); + await TorDirectory.BootstrapAsync(FallbackDirectorySelector.GetRandomFallbackDirectory(), cachePath); } [Test] @@ -40,7 +53,7 @@ public void CanBootstrapTorDirectory() private async Task ReturnRandomRouter() { - TorDirectory directory = await TorDirectory.BootstrapAsync(FallbackDirectorySelector.GetRandomFallbackDirectory(), new DirectoryInfo(Path.GetTempPath())); + TorDirectory directory = await TorDirectory.BootstrapAsync(FallbackDirectorySelector.GetRandomFallbackDirectory(), cachePath); var (endPoint, router) = await directory.GetRouterAsync(RouterType.Normal); Assert.IsTrue(router.IsCreate); Assert.IsFalse(((CircuitNodeDetail.Create)router).IdentityKey.All(x => x == 0)); diff --git a/NOnion/Crypto/DirectoryCipher.fs b/NOnion/Crypto/DirectoryCipher.fs new file mode 100644 index 00000000..6ca409af --- /dev/null +++ b/NOnion/Crypto/DirectoryCipher.fs @@ -0,0 +1,20 @@ +namespace NOnion.Crypto + +open System.Security.Cryptography + +open Org.BouncyCastle.Crypto.Parameters +open Org.BouncyCastle.Security + +module DirectoryCipher = + let SHA1(bytes: array) = + let sha1Engine = SHA1.Create() + sha1Engine.ComputeHash bytes + + let SHA256(bytes: array) = + let sha256Engine = SHA256.Create() + sha256Engine.ComputeHash bytes + + let DecryptSignature (publicKey: RsaKeyParameters) (data: array) = + let cipher = CipherUtilities.GetCipher "RSA/None/PKCS1Padding" + cipher.Init(false, publicKey) + cipher.DoFinal data diff --git a/NOnion/Directory/KeyCertificatesDocument.fs b/NOnion/Directory/KeyCertificatesDocument.fs new file mode 100644 index 00000000..9c16212b --- /dev/null +++ b/NOnion/Directory/KeyCertificatesDocument.fs @@ -0,0 +1,215 @@ +namespace NOnion.Directory + +open System +open System.Text + +open Org.BouncyCastle.Asn1 + +open NOnion.Crypto.DirectoryCipher +open NOnion.Utility.FSharpUtil +open NOnion.Utility.PemUtility + +type KeyCertificateEntry = + { + Version: Option + Address: Option + Fingerprint: Option + IdentityKey: Option + Published: Option + Expires: Option + SigningKey: Option + CrossCert: Option + Certification: Option + } + + static member Empty = + { + Version = None + Address = None + Fingerprint = None + IdentityKey = None + Published = None + Expires = None + SigningKey = None + CrossCert = None + Certification = None + } + + static member ParseMany(stringToParse: string) = + let lines = stringToParse.Split '\n' |> MutableQueue + + let history = StringBuilder() + + let clearHistory = history.Clear + + let dequeueLineAndAddToHistory() = + let line = lines.Dequeue() + history.Append(sprintf "%s\n" line) |> ignore + line + + let rec innerParse + (state: KeyCertificateEntry) + (previousEntries: List) + = + let rec readBlock(state: string) = + let line = sprintf "%s\n" (dequeueLineAndAddToHistory()) + + if line.StartsWith "-----END" then + state + line + else + readBlock(state + line) + + let validate (state: KeyCertificateEntry) (history: string) = + let identityKey = + UnwrapOption + state.IdentityKey + "KeyCertificate validation failed: Identity key not found" + |> GetRsaKeyParametersFromPem + + let signingKey = + UnwrapOption + state.SigningKey + "KeyCertificate validation failed: Signing key not found" + |> GetRsaKeyParametersFromPem + + let decryptedCrossCertHash = + UnwrapOption + state.CrossCert + "KeyCertificate validation failed: Cross cert not found" + |> PemToByteArray + |> DecryptSignature signingKey + + //FIXME: maybe this is useful for other placees later + let computedCrossCertHash = + let modulus = DerInteger identityKey.Modulus + let exponent = DerInteger identityKey.Exponent + + let derSeq = + DerSequence + [| + modulus :> Asn1Encodable + exponent :> Asn1Encodable + |] + + derSeq.GetEncoded() |> SHA1 + + if decryptedCrossCertHash <> computedCrossCertHash then + failwith + "KeyCertificate validation failed: Crosscert validation failed" + + let decryptedDocumentDigest = + UnwrapOption + state.Certification + "KeyCertificate validation failed: Certification not found" + |> PemToByteArray + |> DecryptSignature identityKey + + let computedDocumentDigest = + history |> Encoding.ASCII.GetBytes |> SHA1 + + if decryptedDocumentDigest <> computedDocumentDigest then + failwith + "KeyCertificate validation failed: Certification validation failed" + + // Clear history before we move on to next item + clearHistory() |> ignore + + innerParse KeyCertificateEntry.Empty (state :: previousEntries) + + if lines.Count = 0 then + previousEntries + else + let nextLine = lines.Peek() + + let words = nextLine.Split ' ' |> MutableQueue + + let readRestAsString() = + words.ToArray() |> String.concat " " + + let readInt() = + words.Dequeue() |> int + + match words.Dequeue() with + | "dir-key-certificate-version" when state.Version.IsNone -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + Version = readInt() |> Some + } + previousEntries + | "dir-key-certificate-version" when not state.Version.IsNone -> + failwith + "Should not happen: dir-key-certificate-version seen when already initialized" + | "dir-address" -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + Address = readRestAsString() |> Some + } + previousEntries + | "fingerprint" -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + Fingerprint = readRestAsString() |> Some + } + previousEntries + | "dir-identity-key" -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + IdentityKey = readBlock String.Empty |> Some + } + previousEntries + | "dir-key-published" -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + Published = readRestAsString() |> Some + } + previousEntries + | "dir-key-expires" -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + Expires = readRestAsString() |> Some + } + previousEntries + | "dir-signing-key" -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + SigningKey = readBlock String.Empty |> Some + } + previousEntries + | "dir-key-crosscert" -> + dequeueLineAndAddToHistory() |> ignore + + innerParse + { state with + CrossCert = readBlock String.Empty |> Some + } + previousEntries + | "dir-key-certification" -> + dequeueLineAndAddToHistory() |> ignore + + let historyBeforeCertification = history.ToString() + + validate + { state with + Certification = readBlock String.Empty |> Some + } + historyBeforeCertification + | _ -> + //Ignore possible unknown items (future-proofness) + dequeueLineAndAddToHistory() |> ignore + innerParse state previousEntries + + innerParse KeyCertificateEntry.Empty List.empty diff --git a/NOnion/Directory/NetworkStatusDocument.fs b/NOnion/Directory/NetworkStatusDocument.fs index ca18cd5f..da7fa2e6 100644 --- a/NOnion/Directory/NetworkStatusDocument.fs +++ b/NOnion/Directory/NetworkStatusDocument.fs @@ -1,8 +1,12 @@ namespace NOnion.Directory open System +open System.Text + +open Newtonsoft.Json open NOnion +open NOnion.Crypto.DirectoryCipher open NOnion.Utility type DirectorySourceEntry = @@ -217,7 +221,7 @@ type DirectorySignature = { Algorithm: Option Identity: Option - Digest: Option + SigningKeyDigest: Option Signature: Option } @@ -225,7 +229,7 @@ type DirectorySignature = { DirectorySignature.Algorithm = None Identity = None - Digest = None + SigningKeyDigest = None Signature = None } @@ -240,7 +244,7 @@ type DirectorySignature = if line.StartsWith "-----END" then state + line else - readBlock(state + line) + readBlock(state + line + "\n") let nextLine = lines.Peek() @@ -261,14 +265,15 @@ type DirectorySignature = { state with DirectorySignature.Algorithm = maybeAlg |> Some Identity = readWord() |> Some - Digest = readWord() |> Some + SigningKeyDigest = readWord() |> Some Signature = readBlock String.Empty |> Some } else innerParse { state with - DirectorySignature.Identity = readWord() |> Some - Digest = readWord() |> Some + DirectorySignature.Algorithm = "sha1" |> Some + Identity = readWord() |> Some + SigningKeyDigest = readWord() |> Some Signature = readBlock String.Empty |> Some } | "directory-signature" when state.Identity <> None -> state @@ -296,6 +301,11 @@ type NetworkStatusDocument = SharedRandomCurrentValue: Option BandwithWeights: Option + [] + SHA1Digest: Option> + [] + SHA256Digest: Option> + Params: Map Packages: List Routers: List @@ -323,6 +333,9 @@ type NetworkStatusDocument = SharedRandomCurrentValue = None BandwithWeights = None + SHA1Digest = None + SHA256Digest = None + Params = Map.empty Packages = List.Empty Routers = List.Empty @@ -481,7 +494,22 @@ type NetworkStatusDocument = Routers = RouterStatusEntry.Parse lines :: state.Routers } | "directory-signature" -> + let documentForDigest = + stringToParse.Split( + Array.singleton "directory-signature", + StringSplitOptions.RemoveEmptyEntries + ).[0] + + "directory-signature " + { state with + SHA1Digest = + Encoding.ASCII.GetBytes documentForDigest + |> SHA1 + |> Some + SHA256Digest = + Encoding.ASCII.GetBytes documentForDigest + |> SHA256 + |> Some Signatures = DirectorySignature.Parse lines :: state.Signatures } diff --git a/NOnion/Directory/TorDirectory.fs b/NOnion/Directory/TorDirectory.fs index 4026010a..57dd3948 100644 --- a/NOnion/Directory/TorDirectory.fs +++ b/NOnion/Directory/TorDirectory.fs @@ -4,6 +4,7 @@ open System open System.IO open System.Net open System.Text +open System.Text.RegularExpressions open Newtonsoft.Json @@ -12,6 +13,7 @@ open NOnion.Crypto open NOnion.Network open NOnion.Http open NOnion.Utility +open NOnion.Utility.FSharpUtil type RouterType = | Normal @@ -43,6 +45,127 @@ type TorDirectory = failwith "TorDirectory::GetRandomDirectorySource: couldn't find suitable directory source." + static member private GetTrustedAuthorities() = + let authDirText = + (File.ReadAllText "auth_dirs.inc") + .Replace("\r\n", "\n") + + let regexPattern = "\"(\w+) orport=\d+ \"\n \"v3ident=(\w+) \"" + let regex = Regex(regexPattern, RegexOptions.Multiline) + + regex.Matches authDirText + |> Seq.cast + |> Seq.map(fun (authDirMatch: Match) -> + (authDirMatch.Groups.[1].Value, authDirMatch.Groups.[2].Value) + ) + |> Seq.toList + + static member private ValidateConsensus + (circuit: TorCircuit) + (networkStatus: NetworkStatusDocument) + = + async { + let trustedAuthDirs = TorDirectory.GetTrustedAuthorities() + + let trustedAuthDirsCount = trustedAuthDirs |> Seq.length + + let trustedSigners = + networkStatus.Signatures + |> List.choose(fun signatureObj -> + match + (signatureObj.Identity, + signatureObj.SigningKeyDigest, + signatureObj.Signature, + signatureObj.Algorithm) + with + | Some identity, + Some signingKeyDigest, + Some signature, + Some alg -> + if trustedAuthDirs + |> Seq.exists(fun (_dirName, dirIdentity) -> + dirIdentity = identity + ) then + Some(identity, signingKeyDigest, signature, alg) + else + None + | _ -> None + ) + + let keysToDownload = + trustedSigners + |> Seq.map(fun (identity, signingKeyDigest, _signature, _alg) -> + sprintf "%s-%s" identity signingKeyDigest + ) + + let keyRetrievalStream = TorStream circuit + do! keyRetrievalStream.ConnectToDirectory() |> Async.Ignore + + let httpClient = + TorHttpClient(keyRetrievalStream, Constants.DefaultHttpHost) + + let! downloadedKeys = + httpClient.GetAsString + (sprintf + "/tor/keys/fp-sk/%s" + (String.Join("+", keysToDownload))) + false + + let validatedKeyCerts = KeyCertificateEntry.ParseMany downloadedKeys + + let rec validateSignature trustedSigners state = + match trustedSigners with + | (identity, _signingKeyDigest, signature, alg) :: tail -> + let keyCertOpt = + validatedKeyCerts + |> List.tryFind(fun keyCert -> + keyCert.Fingerprint = Some identity + ) + + match keyCertOpt with + | Some keyCert -> + let signingKey = + UnwrapOption + keyCert.SigningKey + "ValidateConsensus: key cert's signing key is none (should not happen)" + |> PemUtility.GetRsaKeyParametersFromPem + + let digest = + match alg with + | "sha1" -> + UnwrapOption + networkStatus.SHA1Digest + "ValidateConsensus: consensus sha1 digest is none (should not happen)" + | "sha256" -> + UnwrapOption + networkStatus.SHA256Digest + "ValidateConsensus: consensus sha256 digest is none (should not happen)" + | _ -> + failwith + "Unreachable: unidentified directory signature algorithm" + + + let decryptedConsensusDigest = + signature + |> PemUtility.PemToByteArray + |> DirectoryCipher.DecryptSignature signingKey + + if decryptedConsensusDigest <> digest then + validateSignature tail state + else + validateSignature tail (state + 1) + | None -> validateSignature tail state + | [] -> state + + if validateSignature trustedSigners 0 < trustedAuthDirsCount / 2 then + return + raise + <| NOnionException + "Untrusted consensus was downloaded, please try again." + + return () + } + member self.GetMicroDescriptorByIdentity (identity: string) : Async = @@ -235,7 +358,11 @@ type TorDirectory = "/tor/status-vote/current/consensus-microdesc" false - self.NetworkStatus <- NetworkStatusDocument.Parse response + let networkStatus = NetworkStatusDocument.Parse response + + do! TorDirectory.ValidateConsensus circuit networkStatus + + self.NetworkStatus <- networkStatus } static member BootstrapWithGuard @@ -266,12 +393,17 @@ type TorDirectory = "/tor/status-vote/current/consensus-microdesc" false + let networkStatus = + NetworkStatusDocument.Parse consensusStr + + do! TorDirectory.ValidateConsensus circuit networkStatus + match consensusPathOpt with | Some consensusPath -> File.WriteAllText(consensusPath, consensusStr) | None -> () - return NetworkStatusDocument.Parse consensusStr + return networkStatus } async { diff --git a/NOnion/NOnion.fsproj b/NOnion/NOnion.fsproj index b7a72d39..2caa0de8 100644 --- a/NOnion/NOnion.fsproj +++ b/NOnion/NOnion.fsproj @@ -12,12 +12,16 @@ + + Always + + @@ -34,6 +38,7 @@ + @@ -77,6 +82,7 @@ + diff --git a/NOnion/Utility/FSharpUtil.fs b/NOnion/Utility/FSharpUtil.fs index f3c42494..f4a67a17 100644 --- a/NOnion/Utility/FSharpUtil.fs +++ b/NOnion/Utility/FSharpUtil.fs @@ -95,3 +95,8 @@ module FSharpUtil = } retryLoop 0 + + let UnwrapOption<'T> (opt: Option<'T>) (msg: string) : 'T = + match opt with + | Some value -> value + | None -> failwith <| sprintf "error unwrapping Option: %s" msg diff --git a/NOnion/Utility/PemUtility.fs b/NOnion/Utility/PemUtility.fs new file mode 100644 index 00000000..eca0f7b9 --- /dev/null +++ b/NOnion/Utility/PemUtility.fs @@ -0,0 +1,30 @@ +namespace NOnion.Utility + +open System.IO + +open Org.BouncyCastle.Crypto +open Org.BouncyCastle.Crypto.Parameters +open Org.BouncyCastle.OpenSsl +open Org.BouncyCastle.Security + +module PemUtility = + let GetRsaKeyParametersFromPem(pem: string) = + use stringReader = new StringReader(pem) + let pemReader = PemReader stringReader + let publicKey = pemReader.ReadObject() :?> AsymmetricKeyParameter + publicKey :?> RsaKeyParameters + + let GetRsaParametersFromPem(pem: string) = + use stringReader = new StringReader(pem) + let pemReader = PemReader stringReader + let publicKey = pemReader.ReadObject() :?> AsymmetricKeyParameter + + let rsaParams = + DotNetUtilities.ToRSAParameters(publicKey :?> RsaKeyParameters) + + rsaParams + + let PemToByteArray(pem: string) = + use stringReader = new StringReader(pem) + let pemReader = PemReader stringReader + pemReader.ReadPemObject().Content diff --git a/NOnion/auth_dirs.inc b/NOnion/auth_dirs.inc new file mode 100644 index 00000000..618e3349 --- /dev/null +++ b/NOnion/auth_dirs.inc @@ -0,0 +1,31 @@ +"moria1 orport=9201 " + "v3ident=F533C81CEF0BC0267857C99B2F471ADF249FA232 " + "128.31.0.39:9231 1A25C6358DB91342AA51720A5038B72742732498", +"tor26 orport=443 " + "v3ident=14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4 " + "ipv6=[2001:858:2:2:aabb:0:563b:1526]:443 " + "86.59.21.38:80 847B 1F85 0344 D787 6491 A548 92F9 0493 4E4E B85D", +"dizum orport=443 " + "v3ident=E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58 " + "45.66.35.11:80 7EA6 EAD6 FD83 083C 538F 4403 8BBF A077 587D D755", +"Serge orport=9001 bridge " + "66.111.2.131:9030 BA44 A889 E64B 93FA A2B1 14E0 2C2A 279A 8555 C533", +"gabelmoo orport=443 " + "v3ident=ED03BB616EB2F60BEC80151114BB25CEF515B226 " + "ipv6=[2001:638:a000:4140::ffff:189]:443 " + "131.188.40.189:80 F204 4413 DAC2 E02E 3D6B CF47 35A1 9BCA 1DE9 7281", +"dannenberg orport=443 " + "v3ident=0232AF901C31A04EE9848595AF9BB7620D4C5B2E " + "ipv6=[2001:678:558:1000::244]:443 " + "193.23.244.244:80 7BE6 83E6 5D48 1413 21C5 ED92 F075 C553 64AC 7123", +"maatuska orport=80 " + "v3ident=49015F787433103580E3B66A1707A00E60F2D15B " + "ipv6=[2001:67c:289c::9]:80 " + "171.25.193.9:443 BD6A 8292 55CB 08E6 6FBE 7D37 4836 3586 E46B 3810", +"longclaw orport=443 " + "v3ident=23D15D965BC35114467363C165C4F724B64B4F66 " + "199.58.81.140:80 74A9 1064 6BCE EFBC D2E8 74FC 1DC9 9743 0F96 8145", +"bastet orport=443 " + "v3ident=27102BC123E7AF1D4741AE047E160C91ADC76B21 " + "ipv6=[2620:13:4000:6000::1000:118]:443 " + "204.13.164.118:80 24E2 F139 121D 4394 C54B 5BCC 368B 3B41 1857 C413", From 8591ad9a46e862fdb690bdfa40e2c1641b0fb583 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Thu, 13 Apr 2023 18:10:23 +0330 Subject: [PATCH 7/9] Directory,Utility: EmbeddedResources for authDirs This commit moves the auth_dirs.inc file to EmbeddedResource so end users don't have to carry the list around with their applications. --- NOnion/Directory/TorDirectory.fs | 3 +- NOnion/NOnion.fsproj | 5 ++- NOnion/Utility/EmbeddedResourceUtility.fs | 40 +++++++++++++++++++++++ 3 files changed, 44 insertions(+), 4 deletions(-) create mode 100644 NOnion/Utility/EmbeddedResourceUtility.fs diff --git a/NOnion/Directory/TorDirectory.fs b/NOnion/Directory/TorDirectory.fs index 57dd3948..38b4fa4b 100644 --- a/NOnion/Directory/TorDirectory.fs +++ b/NOnion/Directory/TorDirectory.fs @@ -47,7 +47,8 @@ type TorDirectory = static member private GetTrustedAuthorities() = let authDirText = - (File.ReadAllText "auth_dirs.inc") + EmbeddedResourceUtility + .ExtractEmbeddedResourceFileContents("auth_dirs.inc") .Replace("\r\n", "\n") let regexPattern = "\"(\w+) orport=\d+ \"\n \"v3ident=(\w+) \"" diff --git a/NOnion/NOnion.fsproj b/NOnion/NOnion.fsproj index 2caa0de8..50428413 100644 --- a/NOnion/NOnion.fsproj +++ b/NOnion/NOnion.fsproj @@ -12,15 +12,14 @@ - - Always - + + diff --git a/NOnion/Utility/EmbeddedResourceUtility.fs b/NOnion/Utility/EmbeddedResourceUtility.fs new file mode 100644 index 00000000..e4defe8e --- /dev/null +++ b/NOnion/Utility/EmbeddedResourceUtility.fs @@ -0,0 +1,40 @@ +namespace NOnion.Utility + +open System +open System.IO +open System.Reflection + +module EmbeddedResourceUtility = + + // Code from https://github.com/nblockchain/geewallet/blob/428cb77d21dba20fc38c7ea032003c5861aac950/src/GWallet.Backend/Config.fs#L156 + let ExtractEmbeddedResourceFileContents(resourceName: string) : string = + let assembly = Assembly.GetExecutingAssembly() + let ress = String.Join(";", assembly.GetManifestResourceNames()) + + let fullNameOpt = + assembly.GetManifestResourceNames() + |> Seq.filter(fun aResourceName -> + aResourceName = resourceName + || aResourceName.EndsWith("." + resourceName) + ) + |> Seq.tryExactlyOne + + match fullNameOpt with + | Some fullName -> + use stream = assembly.GetManifestResourceStream fullName + + if isNull stream then + failwithf + "Embedded resource %s (%s) not found in assembly %s" + resourceName + fullName + assembly.FullName + + use reader = new StreamReader(stream) + reader.ReadToEnd() + | None -> + failwithf + "Embedded resource %s not found at all in assembly %s (resource names: %s)" + resourceName + assembly.FullName + ress From 7c45b97946f4d0f89457a1d64a339e309e41185f Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Sat, 15 Apr 2023 14:43:57 +0330 Subject: [PATCH 8/9] Directory,Tests: remove janky pem reader This commit removes janky pem reader code in favour of Bouncycastle's PemReader. --- .../HiddenServiceDescriptorDocument.fs | 15 ++++------- ...ddenServiceFirstLayerDescriptorDocument.fs | 25 ++++--------------- ...denServiceSecondLayerDescriptorDocument.fs | 13 +++------- 3 files changed, 13 insertions(+), 40 deletions(-) diff --git a/NOnion/Directory/HiddenServiceDescriptorDocument.fs b/NOnion/Directory/HiddenServiceDescriptorDocument.fs index 1fe9894e..c5805595 100644 --- a/NOnion/Directory/HiddenServiceDescriptorDocument.fs +++ b/NOnion/Directory/HiddenServiceDescriptorDocument.fs @@ -32,10 +32,10 @@ type IntroductionPointEntry = let words = lines.Peek().Split ' ' |> MutableQueue let rec readBlock(state: string) = - let line = lines.Dequeue() + let line = sprintf "%s\n" (lines.Dequeue()) if line.StartsWith "-----END" then - state + state + line else readBlock(state + line) @@ -73,28 +73,23 @@ type IntroductionPointEntry = } | "auth-key" -> lines.Dequeue() |> ignore - //get rid of begin - lines.Dequeue() |> ignore innerParse { state with AuthKey = readBlock String.Empty - |> Convert.FromBase64String + |> PemUtility.PemToByteArray |> Certificate.FromBytes |> Some } | "enc-key-cert" -> lines.Dequeue() |> ignore - //get rid of begin - lines.Dequeue() |> ignore - innerParse { state with EncKeyCert = readBlock String.Empty - |> Convert.FromBase64String + |> PemUtility.PemToByteArray |> Certificate.FromBytes |> Some } @@ -211,7 +206,7 @@ type HiddenServiceDescriptorDocument = let lines = stringToParse.Split '\n' |> MutableQueue let rec readBlock(state: string) = - let line = lines.Dequeue() + let line = sprintf "%s\n" (lines.Dequeue()) if line.StartsWith "-----END" then state + line diff --git a/NOnion/Directory/HiddenServiceFirstLayerDescriptorDocument.fs b/NOnion/Directory/HiddenServiceFirstLayerDescriptorDocument.fs index 48cd49ed..b16668d6 100644 --- a/NOnion/Directory/HiddenServiceFirstLayerDescriptorDocument.fs +++ b/NOnion/Directory/HiddenServiceFirstLayerDescriptorDocument.fs @@ -72,7 +72,7 @@ type HiddenServiceFirstLayerDescriptorDocument = let lines = stringToParse.Split '\n' |> MutableQueue let rec readBlock(state: string) = - let line = lines.Dequeue() + let line = sprintf "%s\n" (lines.Dequeue()) if line.StartsWith "-----END" then state + line @@ -153,16 +153,8 @@ type HiddenServiceFirstLayerDescriptorDocument = { state with HiddenServiceFirstLayerDescriptorDocument.SigningKeyCert = - (readBlock String.Empty) - .Replace( - "-----BEGIN ED25519 CERT-----", - String.Empty - ) - .Replace( - "-----END ED25519 CERT-----", - String.Empty - ) - |> Convert.FromBase64String + readBlock String.Empty + |> PemUtility.PemToByteArray |> Certificate.FromBytes |> Some } @@ -176,17 +168,10 @@ type HiddenServiceFirstLayerDescriptorDocument = | "superencrypted" -> lines.Dequeue() |> ignore - let payloadString = readBlock String.Empty - { state with HiddenServiceFirstLayerDescriptorDocument.EncryptedPayload = - payloadString - .Replace( - "-----BEGIN MESSAGE-----", - String.Empty - ) - .Replace("-----END MESSAGE-----", String.Empty) - |> Convert.FromBase64String + readBlock String.Empty + |> PemUtility.PemToByteArray |> Some } | _ -> diff --git a/NOnion/Directory/HiddenServiceSecondLayerDescriptorDocument.fs b/NOnion/Directory/HiddenServiceSecondLayerDescriptorDocument.fs index 7dc57953..282f55a1 100644 --- a/NOnion/Directory/HiddenServiceSecondLayerDescriptorDocument.fs +++ b/NOnion/Directory/HiddenServiceSecondLayerDescriptorDocument.fs @@ -24,7 +24,7 @@ type HiddenServiceSecondLayerDescriptorDocument = let lines = stringToParse.Split '\n' |> MutableQueue let rec readBlock(state: string) = - let line = lines.Dequeue() + let line = sprintf "%s\n" (lines.Dequeue()) if line.StartsWith "-----END" then state + line @@ -40,17 +40,10 @@ type HiddenServiceSecondLayerDescriptorDocument = | "encrypted" -> lines.Dequeue() |> ignore - let payloadString = readBlock String.Empty - { state with HiddenServiceSecondLayerDescriptorDocument.EncryptedPayload = - payloadString - .Replace( - "-----BEGIN MESSAGE-----", - String.Empty - ) - .Replace("-----END MESSAGE-----", String.Empty) - |> Convert.FromBase64String + readBlock String.Empty + |> PemUtility.PemToByteArray |> Some } | _ -> From 2aab074bf2f7713264fcc6aee98f493741bdbbc8 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Wed, 19 Apr 2023 18:02:14 +0330 Subject: [PATCH 9/9] NOnion,Tests: unify crypto dependencies This commit replaces Chaos.NaCl in favour of our custom bouncycastle. --- .gitmodules | 6 +- Chaos.NaCl | 1 - NOnion.Tests/CryptoTests.cs | 97 +++++++++++++++++++++++++++ NOnion.Tests/NOnion.Tests.csproj | 2 +- NOnion.sln | 21 ++++-- NOnion/Crypto/HiddenServicesCipher.fs | 31 +++++---- NOnion/NOnion.fsproj | 3 +- NOnion/Services/TorServiceClient.fs | 4 +- NOnion/Services/TorServiceHost.fs | 19 ++---- NOnion/Utility/CertificateUtil.fs | 19 +++--- NOnion/Utility/PemUtility.fs | 6 +- bc-csharp | 1 + 12 files changed, 154 insertions(+), 56 deletions(-) delete mode 160000 Chaos.NaCl create mode 100644 NOnion.Tests/CryptoTests.cs create mode 160000 bc-csharp diff --git a/.gitmodules b/.gitmodules index 3f9e877e..ad0aaa0b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "Chaos.NaCl"] - path = Chaos.NaCl - url = https://github.com/nblockchain/Chaos.NaCl.git +[submodule "bc-csharp"] + path = bc-csharp + url = https://github.com/aarani/bc-csharp.git diff --git a/Chaos.NaCl b/Chaos.NaCl deleted file mode 160000 index 6de2aad5..00000000 --- a/Chaos.NaCl +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6de2aad54f4db5d2c3e49cd9d1a95ade9cd4ed9e diff --git a/NOnion.Tests/CryptoTests.cs b/NOnion.Tests/CryptoTests.cs new file mode 100644 index 00000000..ab201eec --- /dev/null +++ b/NOnion.Tests/CryptoTests.cs @@ -0,0 +1,97 @@ +using NOnion.Crypto; +using NOnion.Utility; +using NUnit.Framework; + +namespace NOnion.Tests +{ + public class CryptoTests + { + private readonly string[] SecKeys = new string[] { + "26c76712d89d906e6672dafa614c42e5cb1caac8c6568e4d2493087db51f0d36", + "fba7a5366b5cb98c2667a18783f5cf8f4f8d1a2ce939ad22a6e685edde85128d", + "67e3aa7a14fac8445d15e45e38a523481a69ae35513c9e4143eb1c2196729a0e", + "d51385942033a76dc17f089a59e6a5a7fe80d9c526ae8ddd8c3a506b99d3d0a6", + "5c8eac469bb3f1b85bc7cd893f52dc42a9ab66f1b02b5ce6a68e9b175d3bb433", + "eda433d483059b6d1ff8b7cfbd0fe406bfb23722c8f3c8252629284573b61b86", + "4377c40431c30883c5fbd9bc92ae48d1ed8a47b81d13806beac5351739b5533d", + "c6bbcce615839756aed2cc78b1de13884dd3618f48367a17597a16c1cd7a290b", + "c6bbcce615839756aed2cc78b1de13884dd3618f48367a17597a16c1cd7a290b", + "c6bbcce615839756aed2cc78b1de13884dd3618f48367a17597a16c1cd7a290b" + }; + + private readonly string[] PubKeys = new string[] { + "c2247870536a192d142d056abefca68d6193158e7c1a59c1654c954eccaff894", + "1519a3b15816a1aafab0b213892026ebf5c0dc232c58b21088d88cb90e9b940d", + "081faa81992e360ea22c06af1aba096e7a73f1c665bc8b3e4e531c46455fd1dd", + "73cfa1189a723aad7966137cbffa35140bb40d7e16eae4c40b79b5f0360dd65a", + "66c1a77104d86461b6f98f73acf3cd229c80624495d2d74d6fda1e940080a96b", + "d21c294db0e64cb2d8976625786ede1d9754186ae8197a64d72f68c792eecc19", + "c4d58b4cf85a348ff3d410dd936fa460c4f18da962c01b1963792b9dcc8a6ea6", + "95126f14d86494020665face03f2d42ee2b312a85bc729903eb17522954a1c4a", + "95126f14d86494020665face03f2d42ee2b312a85bc729903eb17522954a1c4a", + "95126f14d86494020665face03f2d42ee2b312a85bc729903eb17522954a1c4a" + }; + + private readonly string[] BlindingFactors = new string[] { + "54a513898b471d1d448a2f3c55c1de2c0ef718c447b04497eeb999ed32027823", + "831e9b5325b5d31b7ae6197e9c7a7baf2ec361e08248bce055908971047a2347", + "ac78a1d46faf3bfbbdc5af5f053dc6dc9023ed78236bec1760dadfd0b2603760", + "f9c84dc0ac31571507993df94da1b3d28684a12ad14e67d0a068aba5c53019fc", + "b1fe79d1dec9bc108df69f6612c72812755751f21ecc5af99663b30be8b9081f", + "81f1512b63ab5fb5c1711a4ec83d379c420574aedffa8c3368e1c3989a3a0084", + "97f45142597c473a4b0e9a12d64561133ad9e1155fe5a9807fe6af8a93557818", + "3f44f6a5a92cde816635dfc12ade70539871078d2ff097278be2a555c9859cd0", + "0000000000000000000000000000000000000000000000000000000000000000", + "1111111111111111111111111111111111111111111111111111111111111111" + }; + + private readonly string[] BlindedSecKeys = new string[] { + "293c3acff4e902f6f63ddc5d5caa2a57e771db4f24de65d4c28df3232f47fa01171d43f24e3f53e70ec7ac280044ac77d4942dee5d6807118a59bdf3ee647e89", + "38b88f9f9440358da544504ee152fb475528f7c51c285bd1c68b14ade8e29a07b8ceff20dfcf53eb52b891fc078c934efbf0353af7242e7dc51bb32a093afa29", + "4d03ce16a3f3249846aac9de0a0075061495c3b027248eeee47da4ddbaf9e0049217f52e92797462bd890fc274672e05c98f2c82970d640084781334aae0f940", + "51d7db01aaa0d937a9fd7c8c7381445a14d8fa61f43347af5460d7cd8fda9904509ecee77082ce088f7c19d5a00e955eeef8df6fa41686abc1030c2d76807733", + "1f76cab834e222bd2546efa7e073425680ab88df186ff41327d3e40770129b00b57b95a440570659a440a3e4771465022a8e67af86bdf2d0990c54e7bb87ff9a", + "c23588c23ee76093419d07b27c6df5922a03ac58f96c53671456a7d1bdbf560ec492fc87d5ec2a1b185ca5a40541fdef0b1e128fd5c2380c888bfa924711bcab", + "3ed249c6932d076e1a2f6916975914b14e8c739da00992358b8f37d3e790650691b4768f8e556d78f4bdcb9a13b6f6066fe81d3134ae965dc48cd0785b3af2b8", + "288cbfd923cb286d48c084555b5bdd06c05e92fb81acdb45271367f57515380e053d9c00c81e1331c06ab50087be8cfc7dc11691b132614474f1aa9c2503cccd", + "e5cd03eb4cc456e11bc36724b558873df0045729b22d8b748360067a7770ac02053d9c00c81e1331c06ab50087be8cfc7dc11691b132614474f1aa9c2503cccd", + "2cf7ed8b163f5af960d2fc62e1883aa422a6090736b4f18a5456ddcaf78ede0c053d9c00c81e1331c06ab50087be8cfc7dc11691b132614474f1aa9c2503cccd" + }; + + private readonly string[] BlindedPubKeys = new string[] { + "1fc1fa4465bd9d4956fdbdc9d3acb3c7019bb8d5606b951c2e1dfe0b42eaeb41", + "1cbbd4a88ce8f165447f159d9f628ada18674158c4f7c5ead44ce8eb0fa6eb7e", + "c5419ad133ffde7e0ac882055d942f582054132b092de377d587435722deb028", + "3e08d0dc291066272e313014bfac4d39ad84aa93c038478a58011f431648105f", + "59381f06acb6bf1389ba305f70874eed3e0f2ab57cdb7bc69ed59a9b8899ff4d", + "2b946a484344eb1c17c89dd8b04196a84f3b7222c876a07a4cece85f676f87d9", + "c6b585129b135f8769df2eba987e76e089e80ba3a2a6729134d3b28008ac098e", + "0eefdc795b59cabbc194c6174e34ba9451e8355108520554ec285acabebb34ac", + "312404d06a0a9de489904b18d5233e83a50b225977fa8734f2c897a73c067952", + "952a908a4a9e0e5176a2549f8f328955aca6817a9fdc59e3acec5dec50838108" + }; + + [Test] + public void CanCalculateBlindedKeys () + { + for (int i = 0; i < SecKeys.Length; i++) + { + var pubKey = Hex.ToByteArray(PubKeys[i]); + var secKey = Hex.ToByteArray(SecKeys[i]); + var blindingFactor = Hex.ToByteArray(BlindingFactors[i]); + var expectedBlindedPubKey = Hex.ToByteArray(BlindedPubKeys[i]); + var expectedBlindedSecKey = Hex.ToByteArray(BlindedSecKeys[i]); + + var calculatedBlindedPubKey = + HiddenServicesCipher.CalculateBlindedPublicKey(blindingFactor, pubKey); + + CollectionAssert.AreEqual(expectedBlindedPubKey, calculatedBlindedPubKey, "Blinded public key swas invalid"); + + var calculatedBlindedSecKey = + HiddenServicesCipher.CalculateExpandedBlindedPrivateKey(blindingFactor, secKey); + + CollectionAssert.AreEqual(expectedBlindedSecKey, calculatedBlindedSecKey, "Blinded secret key was invalid"); + } + } + } +} diff --git a/NOnion.Tests/NOnion.Tests.csproj b/NOnion.Tests/NOnion.Tests.csproj index 3be8df35..3e29c1dd 100644 --- a/NOnion.Tests/NOnion.Tests.csproj +++ b/NOnion.Tests/NOnion.Tests.csproj @@ -10,10 +10,10 @@ - + diff --git a/NOnion.sln b/NOnion.sln index cc13a908..807f771f 100644 --- a/NOnion.sln +++ b/NOnion.sln @@ -1,32 +1,39 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31205.134 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33414.496 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NOnion.Tests", "NOnion.Tests\NOnion.Tests.csproj", "{CC516495-9231-43D0-B555-6DD65302A669}" EndProject Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "NOnion", "NOnion\NOnion.fsproj", "{AC5695A4-E36E-423E-8E7C-C11906FEDD71}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Chaos.NaCl-Portable", "Chaos.NaCl\Chaos.NaCl\Chaos.NaCl-Portable.csproj", "{E11D558C-0653-4D68-9C88-8AEF7970DA65}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BouncyCastle.Crypto", "bc-csharp\crypto\src\BouncyCastle.Crypto.csproj", "{C905A231-7C2E-4250-8CAF-ADE4D6F286B8}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Publish|Any CPU = Publish|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {CC516495-9231-43D0-B555-6DD65302A669}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CC516495-9231-43D0-B555-6DD65302A669}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CC516495-9231-43D0-B555-6DD65302A669}.Publish|Any CPU.ActiveCfg = Release|Any CPU + {CC516495-9231-43D0-B555-6DD65302A669}.Publish|Any CPU.Build.0 = Release|Any CPU {CC516495-9231-43D0-B555-6DD65302A669}.Release|Any CPU.ActiveCfg = Release|Any CPU {CC516495-9231-43D0-B555-6DD65302A669}.Release|Any CPU.Build.0 = Release|Any CPU {AC5695A4-E36E-423E-8E7C-C11906FEDD71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AC5695A4-E36E-423E-8E7C-C11906FEDD71}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AC5695A4-E36E-423E-8E7C-C11906FEDD71}.Publish|Any CPU.ActiveCfg = Release|Any CPU + {AC5695A4-E36E-423E-8E7C-C11906FEDD71}.Publish|Any CPU.Build.0 = Release|Any CPU {AC5695A4-E36E-423E-8E7C-C11906FEDD71}.Release|Any CPU.ActiveCfg = Release|Any CPU {AC5695A4-E36E-423E-8E7C-C11906FEDD71}.Release|Any CPU.Build.0 = Release|Any CPU - {E11D558C-0653-4D68-9C88-8AEF7970DA65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E11D558C-0653-4D68-9C88-8AEF7970DA65}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E11D558C-0653-4D68-9C88-8AEF7970DA65}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E11D558C-0653-4D68-9C88-8AEF7970DA65}.Release|Any CPU.Build.0 = Release|Any CPU + {C905A231-7C2E-4250-8CAF-ADE4D6F286B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C905A231-7C2E-4250-8CAF-ADE4D6F286B8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C905A231-7C2E-4250-8CAF-ADE4D6F286B8}.Publish|Any CPU.ActiveCfg = Publish|Any CPU + {C905A231-7C2E-4250-8CAF-ADE4D6F286B8}.Publish|Any CPU.Build.0 = Publish|Any CPU + {C905A231-7C2E-4250-8CAF-ADE4D6F286B8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C905A231-7C2E-4250-8CAF-ADE4D6F286B8}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/NOnion/Crypto/HiddenServicesCipher.fs b/NOnion/Crypto/HiddenServicesCipher.fs index 202c61bb..f48a9437 100644 --- a/NOnion/Crypto/HiddenServicesCipher.fs +++ b/NOnion/Crypto/HiddenServicesCipher.fs @@ -6,7 +6,7 @@ open Org.BouncyCastle.Crypto.Agreement open Org.BouncyCastle.Crypto.Digests open Org.BouncyCastle.Crypto.Parameters open Org.BouncyCastle.Crypto.Signers -open Chaos.NaCl +open Org.BouncyCastle.Math.EC.Rfc8032 open NOnion open NOnion.Utility @@ -47,7 +47,7 @@ module HiddenServicesCipher = let output = Array.zeroCreate length digestEngine.BlockUpdate(data, 0, data.Length) - digestEngine.DoFinal(output, 0, length) |> ignore + digestEngine.OutputFinal(output, 0, length) |> ignore output let CalculateBlindingFactor @@ -84,12 +84,14 @@ module HiddenServicesCipher = (blindingFactor: array) (publicKey: array) = + let publicKeySize = 32 + let output = Array.zeroCreate publicKeySize - Ed25519Clamp blindingFactor + if Ed25519.BlindPublicKey(publicKey, 0, blindingFactor, 0, output, 0) then + output + else + failwith "CalculateBlindedPublicKey: key blinding failed." - match Ed25519.CalculateBlindedPublicKey(publicKey, blindingFactor) with - | true, output -> output - | false, _ -> failwith "can't calculate blinded public key" let CalculateExpandedBlindedPrivateKey (blindingFactor: array) @@ -104,17 +106,14 @@ module HiddenServicesCipher = Ed25519Clamp blindingFactor Ed25519Clamp expandedMasterPrivateKey - match - Ed25519.CalculateBlindedPrivateKey - ( - expandedMasterPrivateKey, - blindingFactor, - "Derive temporary signing key hash input" - ) - with - | true, output -> output - | false, _ -> failwith "can't calculate blinded private key" + Ed25519.BlindPrivateKey( + expandedMasterPrivateKey, + 0, + blindingFactor, + 0, + "Derive temporary signing key hash input" + ) let BuildBlindedPublicKey (periodNumber: uint64, periodLength: uint64) diff --git a/NOnion/NOnion.fsproj b/NOnion/NOnion.fsproj index 50428413..32bad981 100644 --- a/NOnion/NOnion.fsproj +++ b/NOnion/NOnion.fsproj @@ -92,14 +92,13 @@ - - + diff --git a/NOnion/Services/TorServiceClient.fs b/NOnion/Services/TorServiceClient.fs index 0627f858..3a3750b8 100644 --- a/NOnion/Services/TorServiceClient.fs +++ b/NOnion/Services/TorServiceClient.fs @@ -123,8 +123,8 @@ type TorServiceClient = with | :? NOnionException -> - // Using micro descriptors means we might use servers that are hibernating or etc - // so we need to be able to try multiple servers to receive the descriptor. + // Using micro descriptors means we might use servers that are hibernating or etc + // so we need to be able to try multiple servers to receive the descriptor. return! downloadDescriptor responsibleDirs } diff --git a/NOnion/Services/TorServiceHost.fs b/NOnion/Services/TorServiceHost.fs index e190013f..db1903de 100644 --- a/NOnion/Services/TorServiceHost.fs +++ b/NOnion/Services/TorServiceHost.fs @@ -9,12 +9,11 @@ open System.Text open System.Threading open FSharpx.Collections -open Chaos.NaCl open Org.BouncyCastle.Crypto open Org.BouncyCastle.Crypto.Parameters open Org.BouncyCastle.Crypto.Generators -open Org.BouncyCastle.Crypto.Signers open Org.BouncyCastle.Security +open Org.BouncyCastle.Math.EC.Rfc8032 open NOnion open NOnion.Cells.Relay @@ -541,17 +540,11 @@ type TorServiceHost let encKeyCert = let convertedX25519Key = - match - Ed25519.Ed25519PublicKeyFromCurve25519 - ( - encKeyBytes, - false - ) - with - | true, output -> output - | false, _ -> - failwith - "Should not happen, Ed25519PublicKeyFromCurve25519 will never return false" + Ed25519.Ed25519PublicKeyFromCurve25519( + encKeyBytes, + 0, + false + ) Certificate.CreateNew CertType.IntroPointEncKeySignedByDescriptorSigningKey diff --git a/NOnion/Utility/CertificateUtil.fs b/NOnion/Utility/CertificateUtil.fs index b4327b88..afa6ef49 100644 --- a/NOnion/Utility/CertificateUtil.fs +++ b/NOnion/Utility/CertificateUtil.fs @@ -4,9 +4,9 @@ namespace NOnion.Utility open System open System.IO -open Chaos.NaCl open Org.BouncyCastle.Crypto.Signers open Org.BouncyCastle.Crypto.Parameters +open Org.BouncyCastle.Math.EC.Rfc8032 open NOnion @@ -118,14 +118,17 @@ type Certificate = signer.GenerateSignature() elif signingPrivateKey.Length = 64 then - //Expanded private key, we have to sign with Chaos.NaCl let signature = Array.zeroCreate 64 - Ed25519.SignWithPrehashedPrivateKey( - ArraySegment signature, - ArraySegment unsignedCertificateBytes, - ArraySegment signingPrivateKey, - ArraySegment signingPublicKey + Ed25519.SignByExtendedKey( + signingPrivateKey, + signingPublicKey, + 0, + unsignedCertificateBytes, + 0, + unsignedCertificateBytes.Length, + signature, + 0 ) signature @@ -179,7 +182,7 @@ type Certificate = if not(verifier.VerifySignature self.Signature) then failwith "Invalid certificate" | None -> () - //TODO: validate datetime + //TODO: validate datetime member self.ToBytes(ignoreSig: bool) = Array.concat diff --git a/NOnion/Utility/PemUtility.fs b/NOnion/Utility/PemUtility.fs index eca0f7b9..dc2a2d41 100644 --- a/NOnion/Utility/PemUtility.fs +++ b/NOnion/Utility/PemUtility.fs @@ -10,13 +10,13 @@ open Org.BouncyCastle.Security module PemUtility = let GetRsaKeyParametersFromPem(pem: string) = use stringReader = new StringReader(pem) - let pemReader = PemReader stringReader + use pemReader = new PemReader(stringReader) let publicKey = pemReader.ReadObject() :?> AsymmetricKeyParameter publicKey :?> RsaKeyParameters let GetRsaParametersFromPem(pem: string) = use stringReader = new StringReader(pem) - let pemReader = PemReader stringReader + use pemReader = new PemReader(stringReader) let publicKey = pemReader.ReadObject() :?> AsymmetricKeyParameter let rsaParams = @@ -26,5 +26,5 @@ module PemUtility = let PemToByteArray(pem: string) = use stringReader = new StringReader(pem) - let pemReader = PemReader stringReader + use pemReader = new PemReader(stringReader) pemReader.ReadPemObject().Content diff --git a/bc-csharp b/bc-csharp new file mode 160000 index 00000000..7aad2dd6 --- /dev/null +++ b/bc-csharp @@ -0,0 +1 @@ +Subproject commit 7aad2dd655d90c5cbf8b429b1420d592de21387a